diff --git a/docgen/missing_device_images.ts b/docgen/missing_device_images.ts index f6d428795a785..87cf696b44199 100644 --- a/docgen/missing_device_images.ts +++ b/docgen/missing_device_images.ts @@ -4,8 +4,6 @@ import { imageBaseDir } from "./constants"; import * as path from "path"; import * as fs from "fs"; import * as gis from 'async-g-i-s'; -import * as httpsClient from 'https'; -import * as httpClient from 'http'; import * as easyimage from 'easyimage'; import {execSync} from 'child_process'; @@ -24,13 +22,10 @@ export async function getMissing(): Promise<{image: string, model: string, vendo } export async function downloadImage(url: string, path: string) { - const client = url.startsWith('https') ? httpsClient : httpClient; - return new Promise((r) => { - client.get(url, (res) => { - res.pipe(fs.createWriteStream(path)); - r(); - }); - }); + execSync(`curl ${url} -o ${path}`); + if (!fs.existsSync(path)) { + throw new Error('failed'); + } } export async function ensurePngWithoutBackground(imagePath: string) { @@ -40,9 +35,7 @@ export async function ensurePngWithoutBackground(imagePath: string) { fs.rmSync(imagePath); imagePath = imagePathPng; } - const imagePathBackground = `${imagePath}.background.png` - fs.renameSync(imagePath, imagePathBackground); - execSync(`rembg i ${imagePathBackground} ${imagePath}`); + // execSync(`transparent-background --source ${imagePath} --dest ${path.parse(imagePath).dir}`); return imagePath; } @@ -57,26 +50,27 @@ export async function downloadMissing() { const query = `${definition.model} ${definition.vendor}`; console.log(`Querying '${query}'`); // @ts-expect-error - const images: {url: string}[] = (await gis(`${definition.model} ${definition.vendor}`)).slice(0, 5); + const images: {url: string}[] = (await gis(`${definition.model} ${definition.vendor}`)) + .filter((r) => r.url.endsWith('.webp') || r.url.endsWith('.jpg') || r.url.endsWith('.jpeg') || r.url.endsWith('.png')).slice(0, 5); for (const image of images) { let imagePath = path.join(missingImagesPath, `${path.parse(path.basename(definition.image)).name}_${images.indexOf(image)}${path.extname(image.url)}`); try { // Download await downloadImage(image.url, imagePath); - // Convert to png - imagePath = await ensurePngWithoutBackground(imagePath); - - // Make sqaure + // Make square const info = await easyimage.info(imagePath); if (info.height !== info.width) { const size = Math.max(info.height, info.width); await easyimage.execute('convert', [imagePath, '-resize', `${size}x${size}`, '-gravity', 'center', '-extent', `${size}x${size}`, imagePath]) } + + // Convert to png + imagePath = await ensurePngWithoutBackground(imagePath); } catch (error) { console.error(`Failed to handle '${imagePath}' (${error}), removing...`); - fs.rmSync(imagePath); + if (fs.existsSync(imagePath)) fs.rmSync(imagePath); } } } @@ -94,7 +88,11 @@ async function moveMissing() { if (!match) throw new Error(`Failed to match '${name}'`) const target = path.join(imageBaseDir, `${match[1]}.png`); fs.copyFileSync(source, target); - const size = 512; + const info = await easyimage.info(target); + if (info.height !== info.width) { + throw new Error(`${file} is not a square`) + } + const size = info.height >= 512 ? 512 : 150; await easyimage.resize({width: size, height: size, src: target, dst: target}); } catch (error) { console.error(`Failed to handle '${file}' (${error})`) @@ -115,4 +113,4 @@ if (require.main === module) { throw new Error(`Unsupported option ${arg}`); } } )(); -} +} \ No newline at end of file diff --git a/docs/advanced/support-new-devices/01_support_new_devices.md b/docs/advanced/support-new-devices/01_support_new_devices.md index fc42f6b99e2c4..4ac6e14edbb2e 100755 --- a/docs/advanced/support-new-devices/01_support_new_devices.md +++ b/docs/advanced/support-new-devices/01_support_new_devices.md @@ -138,7 +138,7 @@ If none of the existing converters fit you can add custom ones, an external conv To make sure a picture is available for this device on the supported devices page and in the frontend: 1. Clone [zigbee2mqtt.io](https://github.com/Koenkk/zigbee2mqtt.io) -2. Add a device picture (`.jpg`, 150x150) to `public/images/devices`. +2. Add a device picture (`.png`, 512x512, transparent background) to `public/images/devices`. Use the [Adobe Express Remove Background tool](https://new.express.adobe.com/tools/remove-background) to make the background transparent. 3. ***Optional:*** Add a markdown file for your device to `docs/devices`, use the `model` property of your definition as the filename. Most of the contents of this file will be auto-generated through docgen but you can add your own notes in a notes section. Do not use h1 or h2 heading within "## Notes"-Section. >> \
>> \## Notes
diff --git a/public/images/devices/0140302.png b/public/images/devices/0140302.png index dfb9d1ff8e064..f57582c6e8600 100644 Binary files a/public/images/devices/0140302.png and b/public/images/devices/0140302.png differ diff --git a/public/images/devices/014G2461.png b/public/images/devices/014G2461.png index 4ad649005baf3..9f0a061adf580 100644 Binary files a/public/images/devices/014G2461.png and b/public/images/devices/014G2461.png differ diff --git a/public/images/devices/020B0B.png b/public/images/devices/020B0B.png index 4c1b7b5481ce7..580c989603e81 100644 Binary files a/public/images/devices/020B0B.png and b/public/images/devices/020B0B.png differ diff --git a/public/images/devices/02973.B.png b/public/images/devices/02973.B.png index ffb45e5786141..010fc92ac9ed9 100644 Binary files a/public/images/devices/02973.B.png and b/public/images/devices/02973.B.png differ diff --git a/public/images/devices/03981.png b/public/images/devices/03981.png index 94fd8444a90de..071b9ca0ced9a 100644 Binary files a/public/images/devices/03981.png and b/public/images/devices/03981.png differ diff --git a/public/images/devices/0402946.png b/public/images/devices/0402946.png index 3ffc0dcf1b9c1..8905a91d32a34 100644 Binary files a/public/images/devices/0402946.png and b/public/images/devices/0402946.png differ diff --git a/public/images/devices/046677476816.png b/public/images/devices/046677476816.png index b6a00f53051ee..ae9ce355e3be7 100644 Binary files a/public/images/devices/046677476816.png and b/public/images/devices/046677476816.png differ diff --git a/public/images/devices/046677551780.png b/public/images/devices/046677551780.png index 1a72d532f8496..1ce3abf57e684 100644 Binary files a/public/images/devices/046677551780.png and b/public/images/devices/046677551780.png differ diff --git a/public/images/devices/046677552343.png b/public/images/devices/046677552343.png index 478cb97c84b03..e8e2f875e95fe 100644 Binary files a/public/images/devices/046677552343.png and b/public/images/devices/046677552343.png differ diff --git a/public/images/devices/046677562229.png b/public/images/devices/046677562229.png index cac9d556b6cbc..df8e7559d3bfa 100644 Binary files a/public/images/devices/046677562229.png and b/public/images/devices/046677562229.png differ diff --git a/public/images/devices/046677577957.png b/public/images/devices/046677577957.png index 25094f77a7fb8..e4526b3eb74dd 100644 Binary files a/public/images/devices/046677577957.png and b/public/images/devices/046677577957.png differ diff --git a/public/images/devices/046677578138.png b/public/images/devices/046677578138.png index 9129afb61c4b8..2de811e1ad52b 100644 Binary files a/public/images/devices/046677578138.png and b/public/images/devices/046677578138.png differ diff --git a/public/images/devices/046677803087.png b/public/images/devices/046677803087.png index cf10014caada3..16d094c76c0af 100644 Binary files a/public/images/devices/046677803087.png and b/public/images/devices/046677803087.png differ diff --git a/public/images/devices/064873.png b/public/images/devices/064873.png index e116b80578a34..fc7e62e65c845 100644 Binary files a/public/images/devices/064873.png and b/public/images/devices/064873.png differ diff --git a/public/images/devices/064882.png b/public/images/devices/064882.png index dc57b98515031..ccde3e244ddea 100644 Binary files a/public/images/devices/064882.png and b/public/images/devices/064882.png differ diff --git a/public/images/devices/067646.png b/public/images/devices/067646.png index 57347e3d8aa55..f2b6b655b1034 100644 Binary files a/public/images/devices/067646.png and b/public/images/devices/067646.png differ diff --git a/public/images/devices/067694.png b/public/images/devices/067694.png index 342b20462286a..a10662bbc92b1 100644 Binary files a/public/images/devices/067694.png and b/public/images/devices/067694.png differ diff --git a/public/images/devices/067766.png b/public/images/devices/067766.png index 552c63e394015..a35ee3894ecc6 100644 Binary files a/public/images/devices/067766.png and b/public/images/devices/067766.png differ diff --git a/public/images/devices/067772.png b/public/images/devices/067772.png index 4e7512e71d3f7..aadb935d21bcc 100644 Binary files a/public/images/devices/067772.png and b/public/images/devices/067772.png differ diff --git a/public/images/devices/067775-741811.png b/public/images/devices/067775-741811.png index ecf99a26cd776..2fb66b0e01722 100644 Binary files a/public/images/devices/067775-741811.png and b/public/images/devices/067775-741811.png differ diff --git a/public/images/devices/067776A.png b/public/images/devices/067776A.png index 6b0a1f1404307..0b7aa8100a3e0 100644 Binary files a/public/images/devices/067776A.png and b/public/images/devices/067776A.png differ diff --git a/public/images/devices/067776_inverted.png b/public/images/devices/067776_inverted.png index 6b0a1f1404307..0b7aa8100a3e0 100644 Binary files a/public/images/devices/067776_inverted.png and b/public/images/devices/067776_inverted.png differ diff --git a/public/images/devices/07001L-07005B.png b/public/images/devices/07001L-07005B.png index 9dc4b5d83ccf1..5db49600abd1b 100644 Binary files a/public/images/devices/07001L-07005B.png and b/public/images/devices/07001L-07005B.png differ diff --git a/public/images/devices/07004D-07005L.png b/public/images/devices/07004D-07005L.png index f0e2878bc6b01..2534fa07493d1 100644 Binary files a/public/images/devices/07004D-07005L.png and b/public/images/devices/07004D-07005L.png differ diff --git a/public/images/devices/07008L.png b/public/images/devices/07008L.png index 5de4b59b72a72..9a3a475ceb8df 100644 Binary files a/public/images/devices/07008L.png and b/public/images/devices/07008L.png differ diff --git a/public/images/devices/07042L.png b/public/images/devices/07042L.png index 0d02abea61f21..cb57e5da92283 100644 Binary files a/public/images/devices/07042L.png and b/public/images/devices/07042L.png differ diff --git a/public/images/devices/07043M.png b/public/images/devices/07043M.png index cd41d1d4da352..44da7329431d6 100644 Binary files a/public/images/devices/07043M.png and b/public/images/devices/07043M.png differ diff --git a/public/images/devices/07045L.png b/public/images/devices/07045L.png index e4870e1b54d49..10eda996ca111 100644 Binary files a/public/images/devices/07045L.png and b/public/images/devices/07045L.png differ diff --git a/public/images/devices/07046L.png b/public/images/devices/07046L.png index 07f763a9fcc5d..5cde94ded0fa4 100644 Binary files a/public/images/devices/07046L.png and b/public/images/devices/07046L.png differ diff --git a/public/images/devices/07047L.png b/public/images/devices/07047L.png index cd41d1d4da352..44da7329431d6 100644 Binary files a/public/images/devices/07047L.png and b/public/images/devices/07047L.png differ diff --git a/public/images/devices/07048L.png b/public/images/devices/07048L.png index a5b49279a06c6..96b137dd75b02 100644 Binary files a/public/images/devices/07048L.png and b/public/images/devices/07048L.png differ diff --git a/public/images/devices/07073L.png b/public/images/devices/07073L.png index 728e5b197d44f..0802e89cb2638 100644 Binary files a/public/images/devices/07073L.png and b/public/images/devices/07073L.png differ diff --git a/public/images/devices/07088L.png b/public/images/devices/07088L.png index 0a77cf5ad105f..d3ada8baeb62a 100644 Binary files a/public/images/devices/07088L.png and b/public/images/devices/07088L.png differ diff --git a/public/images/devices/07089L.png b/public/images/devices/07089L.png index 58edf9b7bd988..aaae082fd25cd 100644 Binary files a/public/images/devices/07089L.png and b/public/images/devices/07089L.png differ diff --git a/public/images/devices/07115L.png b/public/images/devices/07115L.png index a744f369d1b43..65a7833a114c0 100644 Binary files a/public/images/devices/07115L.png and b/public/images/devices/07115L.png differ diff --git a/public/images/devices/07502L.png b/public/images/devices/07502L.png index 3bae0e3c4a357..fcc80762a491d 100644 Binary files a/public/images/devices/07502L.png and b/public/images/devices/07502L.png differ diff --git a/public/images/devices/07703L.png b/public/images/devices/07703L.png index 958fd129bce8e..0dbe90ea68917 100644 Binary files a/public/images/devices/07703L.png and b/public/images/devices/07703L.png differ diff --git a/public/images/devices/07732L.png b/public/images/devices/07732L.png index cc0d0e8009403..89352df6f6a52 100644 Binary files a/public/images/devices/07732L.png and b/public/images/devices/07732L.png differ diff --git a/public/images/devices/07743L.png b/public/images/devices/07743L.png index 5023663bdd688..222c9a2edea70 100644 Binary files a/public/images/devices/07743L.png and b/public/images/devices/07743L.png differ diff --git a/public/images/devices/100.001.96.png b/public/images/devices/100.001.96.png index e74df3986c02e..079c14d7ceba0 100644 Binary files a/public/images/devices/100.001.96.png and b/public/images/devices/100.001.96.png differ diff --git a/public/images/devices/100.075.74.png b/public/images/devices/100.075.74.png index 1ebfaf6729a83..a1c66c493b86c 100644 Binary files a/public/images/devices/100.075.74.png and b/public/images/devices/100.075.74.png differ diff --git a/public/images/devices/100.110.51.png b/public/images/devices/100.110.51.png index 136cf25c8855b..7bdcc83a58d00 100644 Binary files a/public/images/devices/100.110.51.png and b/public/images/devices/100.110.51.png differ diff --git a/public/images/devices/100.425.90.png b/public/images/devices/100.425.90.png index d7d34745e7caa..3f971f6adba43 100644 Binary files a/public/images/devices/100.425.90.png and b/public/images/devices/100.425.90.png differ diff --git a/public/images/devices/100.462.31.png b/public/images/devices/100.462.31.png index 119e0f27bc4b5..c2e3666e657c4 100644 Binary files a/public/images/devices/100.462.31.png and b/public/images/devices/100.462.31.png differ diff --git a/public/images/devices/100.491.61.png b/public/images/devices/100.491.61.png index ebf13806c1650..cca36b2a3866f 100644 Binary files a/public/images/devices/100.491.61.png and b/public/images/devices/100.491.61.png differ diff --git a/public/images/devices/10011722.png b/public/images/devices/10011722.png index 49edf2b796c70..f220cb6222933 100644 Binary files a/public/images/devices/10011722.png and b/public/images/devices/10011722.png differ diff --git a/public/images/devices/10011723.png b/public/images/devices/10011723.png index fd4192ba41589..ca8430c844954 100644 Binary files a/public/images/devices/10011723.png and b/public/images/devices/10011723.png differ diff --git a/public/images/devices/10011724.png b/public/images/devices/10011724.png index 012e10b0c8b72..c041206b857ef 100644 Binary files a/public/images/devices/10011724.png and b/public/images/devices/10011724.png differ diff --git a/public/images/devices/10011725.png b/public/images/devices/10011725.png index e6e9e6acb78fc..f57e64ad4c23f 100644 Binary files a/public/images/devices/10011725.png and b/public/images/devices/10011725.png differ diff --git a/public/images/devices/1001248.png b/public/images/devices/1001248.png index e1207f3e93a4f..9b3190fdad394 100644 Binary files a/public/images/devices/1001248.png and b/public/images/devices/1001248.png differ diff --git a/public/images/devices/1001923.png b/public/images/devices/1001923.png index 2cf08f0c32b70..ac6627453e125 100644 Binary files a/public/images/devices/1001923.png and b/public/images/devices/1001923.png differ diff --git a/public/images/devices/1002994.png b/public/images/devices/1002994.png index 29a3bc9d7f8c0..0472ab763d05f 100644 Binary files a/public/images/devices/1002994.png and b/public/images/devices/1002994.png differ diff --git a/public/images/devices/1005005194831629.png b/public/images/devices/1005005194831629.png index 2aa50c355a627..63581909763f7 100644 Binary files a/public/images/devices/1005005194831629.png and b/public/images/devices/1005005194831629.png differ diff --git a/public/images/devices/10297665.png b/public/images/devices/10297665.png index bb3dc69ab15a7..2187947c46f01 100644 Binary files a/public/images/devices/10297665.png and b/public/images/devices/10297665.png differ diff --git a/public/images/devices/10297666.png b/public/images/devices/10297666.png index 1eb95822fcd3c..e46b8389102f0 100644 Binary files a/public/images/devices/10297666.png and b/public/images/devices/10297666.png differ diff --git a/public/images/devices/10297667.png b/public/images/devices/10297667.png index 1cde9f743aa0e..67d62416e0021 100644 Binary files a/public/images/devices/10297667.png and b/public/images/devices/10297667.png differ diff --git a/public/images/devices/106-03.png b/public/images/devices/106-03.png index 85341d1cc2b39..35e518ddffeb9 100644 Binary files a/public/images/devices/106-03.png and b/public/images/devices/106-03.png differ diff --git a/public/images/devices/11830304.png b/public/images/devices/11830304.png index b95c6946a42e0..51db06f22f859 100644 Binary files a/public/images/devices/11830304.png and b/public/images/devices/11830304.png differ diff --git a/public/images/devices/120112.png b/public/images/devices/120112.png index 69b3d443c2040..45a18a84d1e12 100644 Binary files a/public/images/devices/120112.png and b/public/images/devices/120112.png differ diff --git a/public/images/devices/12031.png b/public/images/devices/12031.png index f07578508980a..b305ce1ce7c8f 100644 Binary files a/public/images/devices/12031.png and b/public/images/devices/12031.png differ diff --git a/public/images/devices/12050.png b/public/images/devices/12050.png index 3fded96f708c3..a69f05e84de49 100644 Binary files a/public/images/devices/12050.png and b/public/images/devices/12050.png differ diff --git a/public/images/devices/12126.png b/public/images/devices/12126.png index aad6cab8481ec..51c118e232c6a 100644 Binary files a/public/images/devices/12126.png and b/public/images/devices/12126.png differ diff --git a/public/images/devices/12127.png b/public/images/devices/12127.png index 2aa259e462db6..41a5351839139 100644 Binary files a/public/images/devices/12127.png and b/public/images/devices/12127.png differ diff --git a/public/images/devices/12242.png b/public/images/devices/12242.png index e8b45d6f832d6..0eb96dfe15b25 100644 Binary files a/public/images/devices/12242.png and b/public/images/devices/12242.png differ diff --git a/public/images/devices/122576.png b/public/images/devices/122576.png index ebf430e6b0304..5398b3d725c9f 100644 Binary files a/public/images/devices/122576.png and b/public/images/devices/122576.png differ diff --git a/public/images/devices/12501.png b/public/images/devices/12501.png index 8ceeea342756d..b37522b89fab1 100644 Binary files a/public/images/devices/12501.png and b/public/images/devices/12501.png differ diff --git a/public/images/devices/12AB.png b/public/images/devices/12AB.png index 1a580536f82ba..008deec11a7da 100644 Binary files a/public/images/devices/12AB.png and b/public/images/devices/12AB.png differ diff --git a/public/images/devices/1402755.png b/public/images/devices/1402755.png index 83115935f234e..a0a7fe6ffae5f 100644 Binary files a/public/images/devices/1402755.png and b/public/images/devices/1402755.png differ diff --git a/public/images/devices/1402769.png b/public/images/devices/1402769.png index a474ae33e7751..8accd8c1a8a48 100644 Binary files a/public/images/devices/1402769.png and b/public/images/devices/1402769.png differ diff --git a/public/images/devices/14147206L.png b/public/images/devices/14147206L.png index b389226af9136..e95631f32d95e 100644 Binary files a/public/images/devices/14147206L.png and b/public/images/devices/14147206L.png differ diff --git a/public/images/devices/14148906L.png b/public/images/devices/14148906L.png index f8cf84beee8b6..3e9d6ea7d405c 100644 Binary files a/public/images/devices/14148906L.png and b/public/images/devices/14148906L.png differ diff --git a/public/images/devices/14149505L-14149506L_1.png b/public/images/devices/14149505L-14149506L_1.png index ce20143080c0b..143eb9f032f3f 100644 Binary files a/public/images/devices/14149505L-14149506L_1.png and b/public/images/devices/14149505L-14149506L_1.png differ diff --git a/public/images/devices/14149505L-14149506L_2.png b/public/images/devices/14149505L-14149506L_2.png index ce20143080c0b..143eb9f032f3f 100644 Binary files a/public/images/devices/14149505L-14149506L_2.png and b/public/images/devices/14149505L-14149506L_2.png differ diff --git a/public/images/devices/14153806L.png b/public/images/devices/14153806L.png index 7d51934592004..aac87905b9618 100644 Binary files a/public/images/devices/14153806L.png and b/public/images/devices/14153806L.png differ diff --git a/public/images/devices/14153905L.png b/public/images/devices/14153905L.png index 649aabbac0fc9..23c51fb8e1c04 100644 Binary files a/public/images/devices/14153905L.png and b/public/images/devices/14153905L.png differ diff --git a/public/images/devices/14156408L.png b/public/images/devices/14156408L.png index 30cfb336063de..9e02f62337159 100644 Binary files a/public/images/devices/14156408L.png and b/public/images/devices/14156408L.png differ diff --git a/public/images/devices/14156506L.png b/public/images/devices/14156506L.png index f8cf84beee8b6..3e9d6ea7d405c 100644 Binary files a/public/images/devices/14156506L.png and b/public/images/devices/14156506L.png differ diff --git a/public/images/devices/14158704L.png b/public/images/devices/14158704L.png index dc709b3a5d81a..d397809323e27 100644 Binary files a/public/images/devices/14158704L.png and b/public/images/devices/14158704L.png differ diff --git a/public/images/devices/14158804L.png b/public/images/devices/14158804L.png index 50be6114c7227..62ed9c2d09d17 100644 Binary files a/public/images/devices/14158804L.png and b/public/images/devices/14158804L.png differ diff --git a/public/images/devices/141L100RC.png b/public/images/devices/141L100RC.png index 21719f8cdf9ab..1cddf1c648760 100644 Binary files a/public/images/devices/141L100RC.png and b/public/images/devices/141L100RC.png differ diff --git a/public/images/devices/14592.0.png b/public/images/devices/14592.0.png index f9566fc873f7e..be7e412e20e3c 100644 Binary files a/public/images/devices/14592.0.png and b/public/images/devices/14592.0.png differ diff --git a/public/images/devices/14593.png b/public/images/devices/14593.png index 93007bbd8bc7a..bec263cda6390 100644 Binary files a/public/images/devices/14593.png and b/public/images/devices/14593.png differ diff --git a/public/images/devices/14594.png b/public/images/devices/14594.png index e0af5ac6627dc..418ae0865597a 100644 Binary files a/public/images/devices/14594.png and b/public/images/devices/14594.png differ diff --git a/public/images/devices/15090054.png b/public/images/devices/15090054.png index bd8f46d7df72a..7f4dfbde96406 100644 Binary files a/public/images/devices/15090054.png and b/public/images/devices/15090054.png differ diff --git a/public/images/devices/151570.png b/public/images/devices/151570.png index 5201857912484..258691c53ff51 100644 Binary files a/public/images/devices/151570.png and b/public/images/devices/151570.png differ diff --git a/public/images/devices/158-01.png b/public/images/devices/158-01.png index 50ee4010a8f08..0d098d678122d 100644 Binary files a/public/images/devices/158-01.png and b/public/images/devices/158-01.png differ diff --git a/public/images/devices/160-01.png b/public/images/devices/160-01.png index 34dabf5126a73..5ffb653abf782 100644 Binary files a/public/images/devices/160-01.png and b/public/images/devices/160-01.png differ diff --git a/public/images/devices/1613V.png b/public/images/devices/1613V.png index e407a1e57df34..db6f5162108c0 100644 Binary files a/public/images/devices/1613V.png and b/public/images/devices/1613V.png differ diff --git a/public/images/devices/1740193P0.png b/public/images/devices/1740193P0.png index 1fd7a8f35818f..c6d3f28ba916e 100644 Binary files a/public/images/devices/1740193P0.png and b/public/images/devices/1740193P0.png differ diff --git a/public/images/devices/1740293P0.png b/public/images/devices/1740293P0.png index 8397c59806f1b..54c3df41362b5 100644 Binary files a/public/images/devices/1740293P0.png and b/public/images/devices/1740293P0.png differ diff --git a/public/images/devices/1741530P7.png b/public/images/devices/1741530P7.png index 6d9ae57623a9a..bc76605828be6 100644 Binary files a/public/images/devices/1741530P7.png and b/public/images/devices/1741530P7.png differ diff --git a/public/images/devices/1741730V7.png b/public/images/devices/1741730V7.png index 6d9ae57623a9a..bc76605828be6 100644 Binary files a/public/images/devices/1741730V7.png and b/public/images/devices/1741730V7.png differ diff --git a/public/images/devices/1741830P7.png b/public/images/devices/1741830P7.png index 57c85692e43f9..80c54b4e736ea 100644 Binary files a/public/images/devices/1741830P7.png and b/public/images/devices/1741830P7.png differ diff --git a/public/images/devices/1741930V7.png b/public/images/devices/1741930V7.png index ead1d514832e8..2fd2ddf089fec 100644 Binary files a/public/images/devices/1741930V7.png and b/public/images/devices/1741930V7.png differ diff --git a/public/images/devices/1742030P7.png b/public/images/devices/1742030P7.png index ead1d514832e8..2fd2ddf089fec 100644 Binary files a/public/images/devices/1742030P7.png and b/public/images/devices/1742030P7.png differ diff --git a/public/images/devices/1742330P7.png b/public/images/devices/1742330P7.png index 4836a6f25103e..026e513e9abb6 100644 Binary files a/public/images/devices/1742330P7.png and b/public/images/devices/1742330P7.png differ diff --git a/public/images/devices/1742830P7.png b/public/images/devices/1742830P7.png index 6d9ae57623a9a..bc76605828be6 100644 Binary files a/public/images/devices/1742830P7.png and b/public/images/devices/1742830P7.png differ diff --git a/public/images/devices/1742930P7.png b/public/images/devices/1742930P7.png index 443234da4e0e2..3597252f2933f 100644 Binary files a/public/images/devices/1742930P7.png and b/public/images/devices/1742930P7.png differ diff --git a/public/images/devices/1743030P7.png b/public/images/devices/1743030P7.png index 907ebfd5bf3c8..4a37ca88e5993 100644 Binary files a/public/images/devices/1743030P7.png and b/public/images/devices/1743030P7.png differ diff --git a/public/images/devices/1743130P7.png b/public/images/devices/1743130P7.png index 367ee8a5cd3b9..b485d079ae94e 100644 Binary files a/public/images/devices/1743130P7.png and b/public/images/devices/1743130P7.png differ diff --git a/public/images/devices/1743230P7.png b/public/images/devices/1743230P7.png index e13f89f95a8b7..e8b21ffa7deef 100644 Binary files a/public/images/devices/1743230P7.png and b/public/images/devices/1743230P7.png differ diff --git a/public/images/devices/1743430P7.png b/public/images/devices/1743430P7.png index 80202cce8cccc..88f9fb8909264 100644 Binary files a/public/images/devices/1743430P7.png and b/public/images/devices/1743430P7.png differ diff --git a/public/images/devices/17435-30-P7.png b/public/images/devices/17435-30-P7.png index 2ff3d6178750a..047ce5b868c41 100644 Binary files a/public/images/devices/17435-30-P7.png and b/public/images/devices/17435-30-P7.png differ diff --git a/public/images/devices/17436-30-P7.png b/public/images/devices/17436-30-P7.png index b73bee9c809c2..02b5951067f6e 100644 Binary files a/public/images/devices/17436-30-P7.png and b/public/images/devices/17436-30-P7.png differ diff --git a/public/images/devices/1743730P7.png b/public/images/devices/1743730P7.png index 96a2a4e017d2b..d671ed7a7a9b8 100644 Binary files a/public/images/devices/1743730P7.png and b/public/images/devices/1743730P7.png differ diff --git a/public/images/devices/1743830P7.png b/public/images/devices/1743830P7.png index c4cab91891621..e65975eb51508 100644 Binary files a/public/images/devices/1743830P7.png and b/public/images/devices/1743830P7.png differ diff --git a/public/images/devices/1743830V7.png b/public/images/devices/1743830V7.png index a21b71830bd77..c512c6a583b1e 100644 Binary files a/public/images/devices/1743830V7.png and b/public/images/devices/1743830V7.png differ diff --git a/public/images/devices/1743930P7.png b/public/images/devices/1743930P7.png index 0d0f59d9154b1..83929d34c0f4b 100644 Binary files a/public/images/devices/1743930P7.png and b/public/images/devices/1743930P7.png differ diff --git a/public/images/devices/1744130P7.png b/public/images/devices/1744130P7.png index 205d6a3a258c3..9a521e3a4c178 100644 Binary files a/public/images/devices/1744130P7.png and b/public/images/devices/1744130P7.png differ diff --git a/public/images/devices/1745130P7.png b/public/images/devices/1745130P7.png index f47a03c56e847..d58660ad69017 100644 Binary files a/public/images/devices/1745130P7.png and b/public/images/devices/1745130P7.png differ diff --git a/public/images/devices/1745430P7.png b/public/images/devices/1745430P7.png index 35fedd983d0e2..2a612e9bfaa17 100644 Binary files a/public/images/devices/1745430P7.png and b/public/images/devices/1745430P7.png differ diff --git a/public/images/devices/1745530P7.png b/public/images/devices/1745530P7.png index 51e3d8510037c..9ed51b799b827 100644 Binary files a/public/images/devices/1745530P7.png and b/public/images/devices/1745530P7.png differ diff --git a/public/images/devices/1745630P7.png b/public/images/devices/1745630P7.png index dd0c2c413f202..3561206fa6e34 100644 Binary files a/public/images/devices/1745630P7.png and b/public/images/devices/1745630P7.png differ diff --git a/public/images/devices/1745730V7.png b/public/images/devices/1745730V7.png index 0c25396de3565..166e829570208 100644 Binary files a/public/images/devices/1745730V7.png and b/public/images/devices/1745730V7.png differ diff --git a/public/images/devices/1745930P7.png b/public/images/devices/1745930P7.png index 8ceb679cc1c85..3feda55d953d6 100644 Binary files a/public/images/devices/1745930P7.png and b/public/images/devices/1745930P7.png differ diff --git a/public/images/devices/1746130P7.png b/public/images/devices/1746130P7.png index 6ccdcd375ca17..473676e87b375 100644 Binary files a/public/images/devices/1746130P7.png and b/public/images/devices/1746130P7.png differ diff --git a/public/images/devices/1746230V7.png b/public/images/devices/1746230V7.png index 1a3e2b455bdae..cbce853896556 100644 Binary files a/public/images/devices/1746230V7.png and b/public/images/devices/1746230V7.png differ diff --git a/public/images/devices/1746330P7.png b/public/images/devices/1746330P7.png index 09bc5b47e739d..c48bbd660f811 100644 Binary files a/public/images/devices/1746330P7.png and b/public/images/devices/1746330P7.png differ diff --git a/public/images/devices/1746430P7.png b/public/images/devices/1746430P7.png index 106a4827e84c3..42822acb1a7b6 100644 Binary files a/public/images/devices/1746430P7.png and b/public/images/devices/1746430P7.png differ diff --git a/public/images/devices/1746447P7.png b/public/images/devices/1746447P7.png index 561179543479a..92e4da55c39f6 100644 Binary files a/public/images/devices/1746447P7.png and b/public/images/devices/1746447P7.png differ diff --git a/public/images/devices/1746530P7.png b/public/images/devices/1746530P7.png index 7258feaaf8253..d5152e7ac13b3 100644 Binary files a/public/images/devices/1746530P7.png and b/public/images/devices/1746530P7.png differ diff --git a/public/images/devices/1746547P7.png b/public/images/devices/1746547P7.png index 16efe2d36a826..b4aa5307f4335 100644 Binary files a/public/images/devices/1746547P7.png and b/public/images/devices/1746547P7.png differ diff --git a/public/images/devices/1746630P7.png b/public/images/devices/1746630P7.png index 2515807d317c9..50887f3366e84 100644 Binary files a/public/images/devices/1746630P7.png and b/public/images/devices/1746630P7.png differ diff --git a/public/images/devices/1746630V7.png b/public/images/devices/1746630V7.png index 4a78594798e6c..e3703f4d15e80 100644 Binary files a/public/images/devices/1746630V7.png and b/public/images/devices/1746630V7.png differ diff --git a/public/images/devices/1746730V7.png b/public/images/devices/1746730V7.png index 6d9ae57623a9a..bc76605828be6 100644 Binary files a/public/images/devices/1746730V7.png and b/public/images/devices/1746730V7.png differ diff --git a/public/images/devices/199182.png b/public/images/devices/199182.png index 61c62241d59dc..5dbc9d1fea96c 100644 Binary files a/public/images/devices/199182.png and b/public/images/devices/199182.png differ diff --git a/public/images/devices/19DZT.png b/public/images/devices/19DZT.png index 6e3d85559767e..edb79a028b56b 100644 Binary files a/public/images/devices/19DZT.png and b/public/images/devices/19DZT.png differ diff --git a/public/images/devices/1GNNTS.png b/public/images/devices/1GNNTS.png index 9277a1dd67998..bb5700dfc539c 100644 Binary files a/public/images/devices/1GNNTS.png and b/public/images/devices/1GNNTS.png differ diff --git a/public/images/devices/200106V3.png b/public/images/devices/200106V3.png index 35fd753ac2dda..7148dda10c631 100644 Binary files a/public/images/devices/200106V3.png and b/public/images/devices/200106V3.png differ diff --git a/public/images/devices/200403V2-B.png b/public/images/devices/200403V2-B.png index 99fabc515ff99..77e7e642c9a30 100644 Binary files a/public/images/devices/200403V2-B.png and b/public/images/devices/200403V2-B.png differ diff --git a/public/images/devices/2189-1-xx.png b/public/images/devices/2189-1-xx.png index 195776500298d..01f591859142d 100644 Binary files a/public/images/devices/2189-1-xx.png and b/public/images/devices/2189-1-xx.png differ diff --git a/public/images/devices/22670.png b/public/images/devices/22670.png index f7ac37faea2f0..a93e6f3a9c43b 100644 Binary files a/public/images/devices/22670.png and b/public/images/devices/22670.png differ diff --git a/public/images/devices/2430-100.png b/public/images/devices/2430-100.png index 8725d24ed0696..8d60660c4b974 100644 Binary files a/public/images/devices/2430-100.png and b/public/images/devices/2430-100.png differ diff --git a/public/images/devices/2435-10.png b/public/images/devices/2435-10.png index cc1198241ae35..18a314c5a696b 100644 Binary files a/public/images/devices/2435-10.png and b/public/images/devices/2435-10.png differ diff --git a/public/images/devices/27087-03.png b/public/images/devices/27087-03.png index 35f73575ccdf3..9c6be0e6013f2 100644 Binary files a/public/images/devices/27087-03.png and b/public/images/devices/27087-03.png differ diff --git a/public/images/devices/291.52.png b/public/images/devices/291.52.png index 54efef5709e65..b40385b78f8f9 100644 Binary files a/public/images/devices/291.52.png and b/public/images/devices/291.52.png differ diff --git a/public/images/devices/29165.png b/public/images/devices/29165.png index a4f77ebcae201..d86ec4223cf1d 100644 Binary files a/public/images/devices/29165.png and b/public/images/devices/29165.png differ diff --git a/public/images/devices/2AJZ4KPDR.png b/public/images/devices/2AJZ4KPDR.png index 6c7798bd7c852..18e7d8c7174ab 100644 Binary files a/public/images/devices/2AJZ4KPDR.png and b/public/images/devices/2AJZ4KPDR.png differ diff --git a/public/images/devices/2AJZ4KPFT.png b/public/images/devices/2AJZ4KPFT.png index b7f9971af3673..c8ff4f93d2ffe 100644 Binary files a/public/images/devices/2AJZ4KPFT.png and b/public/images/devices/2AJZ4KPFT.png differ diff --git a/public/images/devices/2AJZ4KPKEY.png b/public/images/devices/2AJZ4KPKEY.png index f7086063c0237..b36c4ba8fa2ec 100644 Binary files a/public/images/devices/2AJZ4KPKEY.png and b/public/images/devices/2AJZ4KPKEY.png differ diff --git a/public/images/devices/2CH-ZG-BOX-RELAY.png b/public/images/devices/2CH-ZG-BOX-RELAY.png index 33649fdefbd65..6b027d5aad91b 100644 Binary files a/public/images/devices/2CH-ZG-BOX-RELAY.png and b/public/images/devices/2CH-ZG-BOX-RELAY.png differ diff --git a/public/images/devices/3004482-3137308-3137309.png b/public/images/devices/3004482-3137308-3137309.png index 2298f3c9bd7df..bf40616d247a0 100644 Binary files a/public/images/devices/3004482-3137308-3137309.png and b/public/images/devices/3004482-3137308-3137309.png differ diff --git a/public/images/devices/3025CSGZ.png b/public/images/devices/3025CSGZ.png index 3c8d0758b97ba..2f9ef05c8b85c 100644 Binary files a/public/images/devices/3025CSGZ.png and b/public/images/devices/3025CSGZ.png differ diff --git a/public/images/devices/303-0136.png b/public/images/devices/303-0136.png index 76b9514aec231..314959a18c185 100644 Binary files a/public/images/devices/303-0136.png and b/public/images/devices/303-0136.png differ diff --git a/public/images/devices/3115331PH.png b/public/images/devices/3115331PH.png index b40d5efaeca43..6406aea72b39a 100644 Binary files a/public/images/devices/3115331PH.png and b/public/images/devices/3115331PH.png differ diff --git a/public/images/devices/3156105.png b/public/images/devices/3156105.png index ed7ee85dcc3c8..825436376c3e0 100644 Binary files a/public/images/devices/3156105.png and b/public/images/devices/3156105.png differ diff --git a/public/images/devices/3157100.png b/public/images/devices/3157100.png index 78f67cb2f72c0..60a1d1ba0d5ca 100644 Binary files a/public/images/devices/3157100.png and b/public/images/devices/3157100.png differ diff --git a/public/images/devices/316GLEDRF.png b/public/images/devices/316GLEDRF.png index eb00ef3c72152..a1f2241f84828 100644 Binary files a/public/images/devices/316GLEDRF.png and b/public/images/devices/316GLEDRF.png differ diff --git a/public/images/devices/3200-de.png b/public/images/devices/3200-de.png index 4ae0266530759..ea037231e7fc5 100644 Binary files a/public/images/devices/3200-de.png and b/public/images/devices/3200-de.png differ diff --git a/public/images/devices/3200-fr.png b/public/images/devices/3200-fr.png index 7a52641daa7d7..c9b7861bc1b0a 100644 Binary files a/public/images/devices/3200-fr.png and b/public/images/devices/3200-fr.png differ diff --git a/public/images/devices/3210-L.png b/public/images/devices/3210-L.png index a73e2c5950ece..7158e543316cc 100644 Binary files a/public/images/devices/3210-L.png and b/public/images/devices/3210-L.png differ diff --git a/public/images/devices/3216131P5.png b/public/images/devices/3216131P5.png index 29178409708f2..dd18b4aa9543c 100644 Binary files a/public/images/devices/3216131P5.png and b/public/images/devices/3216131P5.png differ diff --git a/public/images/devices/3216131P6.png b/public/images/devices/3216131P6.png index d0288bd5fe1e2..35ed796f34c0c 100644 Binary files a/public/images/devices/3216131P6.png and b/public/images/devices/3216131P6.png differ diff --git a/public/images/devices/3216231P5.png b/public/images/devices/3216231P5.png index 29178409708f2..dd18b4aa9543c 100644 Binary files a/public/images/devices/3216231P5.png and b/public/images/devices/3216231P5.png differ diff --git a/public/images/devices/3216231P6.png b/public/images/devices/3216231P6.png index bfffd29011345..27a6b1ab73242 100644 Binary files a/public/images/devices/3216231P6.png and b/public/images/devices/3216231P6.png differ diff --git a/public/images/devices/3216331P5.png b/public/images/devices/3216331P5.png index 4025e2b2587a5..03ec18b17abce 100644 Binary files a/public/images/devices/3216331P5.png and b/public/images/devices/3216331P5.png differ diff --git a/public/images/devices/3216331P6.png b/public/images/devices/3216331P6.png index 2fb00d1d6e942..d67ea0495bddb 100644 Binary files a/public/images/devices/3216331P6.png and b/public/images/devices/3216331P6.png differ diff --git a/public/images/devices/3216431P5.png b/public/images/devices/3216431P5.png index c6b78acb93c36..a470e59ae2dcd 100644 Binary files a/public/images/devices/3216431P5.png and b/public/images/devices/3216431P5.png differ diff --git a/public/images/devices/3216431P6.png b/public/images/devices/3216431P6.png index c6b78acb93c36..a470e59ae2dcd 100644 Binary files a/public/images/devices/3216431P6.png and b/public/images/devices/3216431P6.png differ diff --git a/public/images/devices/322054.png b/public/images/devices/322054.png index 2dc9ba345c6e5..e96687da8cb16 100644 Binary files a/public/images/devices/322054.png and b/public/images/devices/322054.png differ diff --git a/public/images/devices/324131092621.png b/public/images/devices/324131092621.png index 3ce02dc0717e6..79ddff8ed5da6 100644 Binary files a/public/images/devices/324131092621.png and b/public/images/devices/324131092621.png differ diff --git a/public/images/devices/3261030P6.png b/public/images/devices/3261030P6.png index 659719e18da84..5f6ab32089b90 100644 Binary files a/public/images/devices/3261030P6.png and b/public/images/devices/3261030P6.png differ diff --git a/public/images/devices/3261030P7.png b/public/images/devices/3261030P7.png index 0515d293f4f2c..14536fd337253 100644 Binary files a/public/images/devices/3261030P7.png and b/public/images/devices/3261030P7.png differ diff --git a/public/images/devices/3261031P6.png b/public/images/devices/3261031P6.png index 89cbd370a1d25..ec48a3d0e8132 100644 Binary files a/public/images/devices/3261031P6.png and b/public/images/devices/3261031P6.png differ diff --git a/public/images/devices/3261048P6.png b/public/images/devices/3261048P6.png index e3d35196adb03..34e6dbebdd9d3 100644 Binary files a/public/images/devices/3261048P6.png and b/public/images/devices/3261048P6.png differ diff --git a/public/images/devices/3261330P6.png b/public/images/devices/3261330P6.png index 6435383b78223..3f4379559695a 100644 Binary files a/public/images/devices/3261330P6.png and b/public/images/devices/3261330P6.png differ diff --git a/public/images/devices/3261331P6.png b/public/images/devices/3261331P6.png index 55815a650a9b9..69b42c6e97207 100644 Binary files a/public/images/devices/3261331P6.png and b/public/images/devices/3261331P6.png differ diff --git a/public/images/devices/3261331P7.png b/public/images/devices/3261331P7.png index a695e3b5d9003..397482f6458ee 100644 Binary files a/public/images/devices/3261331P7.png and b/public/images/devices/3261331P7.png differ diff --git a/public/images/devices/3261348P6.png b/public/images/devices/3261348P6.png index a182477e8d131..34fa129b4f1aa 100644 Binary files a/public/images/devices/3261348P6.png and b/public/images/devices/3261348P6.png differ diff --git a/public/images/devices/3300-P.png b/public/images/devices/3300-P.png index 49647d4e70f11..0d33072b5efd0 100644 Binary files a/public/images/devices/3300-P.png and b/public/images/devices/3300-P.png differ diff --git a/public/images/devices/3300-S.png b/public/images/devices/3300-S.png index bec2b74cb8990..57cd266f2c435 100644 Binary files a/public/images/devices/3300-S.png and b/public/images/devices/3300-S.png differ diff --git a/public/images/devices/3305-S.png b/public/images/devices/3305-S.png index a80b2e531eec8..d3d4ca085ee21 100644 Binary files a/public/images/devices/3305-S.png and b/public/images/devices/3305-S.png differ diff --git a/public/images/devices/3306431P7.png b/public/images/devices/3306431P7.png index 05313084a7020..f3e91c1723136 100644 Binary files a/public/images/devices/3306431P7.png and b/public/images/devices/3306431P7.png differ diff --git a/public/images/devices/3308431.png b/public/images/devices/3308431.png index b552fc71d9369..8546474e6f3f8 100644 Binary files a/public/images/devices/3308431.png and b/public/images/devices/3308431.png differ diff --git a/public/images/devices/3310-G.png b/public/images/devices/3310-G.png index 4611cc3f29e37..7e90f2f1a5b75 100644 Binary files a/public/images/devices/3310-G.png and b/public/images/devices/3310-G.png differ diff --git a/public/images/devices/3310-S.png b/public/images/devices/3310-S.png index 4a9e5edd1f054..b2eafdaffa3e9 100644 Binary files a/public/images/devices/3310-S.png and b/public/images/devices/3310-S.png differ diff --git a/public/images/devices/3315-G.png b/public/images/devices/3315-G.png index c4cdd61bc6ed4..fc0d8f35cf7fc 100644 Binary files a/public/images/devices/3315-G.png and b/public/images/devices/3315-G.png differ diff --git a/public/images/devices/3315-L.png b/public/images/devices/3315-L.png index b242233a4e1b3..6333f52677a23 100644 Binary files a/public/images/devices/3315-L.png and b/public/images/devices/3315-L.png differ diff --git a/public/images/devices/3315-S.png b/public/images/devices/3315-S.png index b242233a4e1b3..6333f52677a23 100644 Binary files a/public/images/devices/3315-S.png and b/public/images/devices/3315-S.png differ diff --git a/public/images/devices/3320-L.png b/public/images/devices/3320-L.png index 8ab619c4e501c..1ed4b58b63b67 100644 Binary files a/public/images/devices/3320-L.png and b/public/images/devices/3320-L.png differ diff --git a/public/images/devices/3321-S.png b/public/images/devices/3321-S.png index 880c62d959c54..4776b8e985406 100644 Binary files a/public/images/devices/3321-S.png and b/public/images/devices/3321-S.png differ diff --git a/public/images/devices/3323-G.png b/public/images/devices/3323-G.png index bdd2a7f023633..39a4abc2a48f6 100644 Binary files a/public/images/devices/3323-G.png and b/public/images/devices/3323-G.png differ diff --git a/public/images/devices/3325-S.png b/public/images/devices/3325-S.png index 2343ae0ac9c2a..83edbc5e58052 100644 Binary files a/public/images/devices/3325-S.png and b/public/images/devices/3325-S.png differ diff --git a/public/images/devices/3326-L.png b/public/images/devices/3326-L.png index 5ae5eded05f5b..43d5a61a8ee73 100644 Binary files a/public/images/devices/3326-L.png and b/public/images/devices/3326-L.png differ diff --git a/public/images/devices/3328-G.png b/public/images/devices/3328-G.png index 711309bc83f15..75539e9ecf974 100644 Binary files a/public/images/devices/3328-G.png and b/public/images/devices/3328-G.png differ diff --git a/public/images/devices/33943-33944-33946.png b/public/images/devices/33943-33944-33946.png index 845ef3cbf7370..3146f52223d56 100644 Binary files a/public/images/devices/33943-33944-33946.png and b/public/images/devices/33943-33944-33946.png differ diff --git a/public/images/devices/33951-33948.png b/public/images/devices/33951-33948.png index ea6cd80783cfb..ed3bfb1cb9945 100644 Binary files a/public/images/devices/33951-33948.png and b/public/images/devices/33951-33948.png differ diff --git a/public/images/devices/33952.png b/public/images/devices/33952.png index dc82e683ab0c7..8c3e6cd2bc571 100644 Binary files a/public/images/devices/33952.png and b/public/images/devices/33952.png differ diff --git a/public/images/devices/33955.png b/public/images/devices/33955.png index 93442f129c52d..19e8cb1349c71 100644 Binary files a/public/images/devices/33955.png and b/public/images/devices/33955.png differ diff --git a/public/images/devices/33957.png b/public/images/devices/33957.png index bea4a7f4f5ed9..d659dcdd1e63f 100644 Binary files a/public/images/devices/33957.png and b/public/images/devices/33957.png differ diff --git a/public/images/devices/3400-D.png b/public/images/devices/3400-D.png index f132a609c502c..6b5707be5236b 100644 Binary files a/public/images/devices/3400-D.png and b/public/images/devices/3400-D.png differ diff --git a/public/images/devices/3402831P7.png b/public/images/devices/3402831P7.png index 00c999bcc60e4..56cfc935886e0 100644 Binary files a/public/images/devices/3402831P7.png and b/public/images/devices/3402831P7.png differ diff --git a/public/images/devices/3417511P9.png b/public/images/devices/3417511P9.png index ab9abe0bad979..d716d27c5d706 100644 Binary files a/public/images/devices/3417511P9.png and b/public/images/devices/3417511P9.png differ diff --git a/public/images/devices/3417711P6.png b/public/images/devices/3417711P6.png index b00894709cd7b..1cb3e7756edff 100644 Binary files a/public/images/devices/3417711P6.png and b/public/images/devices/3417711P6.png differ diff --git a/public/images/devices/3417831P6.png b/public/images/devices/3417831P6.png index 8443cec913d53..2399678cce835 100644 Binary files a/public/images/devices/3417831P6.png and b/public/images/devices/3417831P6.png differ diff --git a/public/images/devices/3417931P6.png b/public/images/devices/3417931P6.png index 1c656fd89bc7c..5d02f9c12edf1 100644 Binary files a/public/images/devices/3417931P6.png and b/public/images/devices/3417931P6.png differ diff --git a/public/images/devices/3418131P6.png b/public/images/devices/3418131P6.png index 4fbf9dbaf847b..8f3084e1d65e5 100644 Binary files a/public/images/devices/3418131P6.png and b/public/images/devices/3418131P6.png differ diff --git a/public/images/devices/3418331P6.png b/public/images/devices/3418331P6.png index 5e9b27ab812b2..aba75cd584760 100644 Binary files a/public/images/devices/3418331P6.png and b/public/images/devices/3418331P6.png differ diff --git a/public/images/devices/3418411P6.png b/public/images/devices/3418411P6.png index 15504c0ae27da..d40d69a9c758a 100644 Binary files a/public/images/devices/3418411P6.png and b/public/images/devices/3418411P6.png differ diff --git a/public/images/devices/3418631P6.png b/public/images/devices/3418631P6.png index 3d90c93bf7e7c..9cf847907f139 100644 Binary files a/public/images/devices/3418631P6.png and b/public/images/devices/3418631P6.png differ diff --git a/public/images/devices/3418931P6.png b/public/images/devices/3418931P6.png index c22bfab792aec..31c9b9fc54bf1 100644 Binary files a/public/images/devices/3418931P6.png and b/public/images/devices/3418931P6.png differ diff --git a/public/images/devices/3420-G.png b/public/images/devices/3420-G.png index 878b20a854ee6..97eceacde1838 100644 Binary files a/public/images/devices/3420-G.png and b/public/images/devices/3420-G.png differ diff --git a/public/images/devices/3435011P7.png b/public/images/devices/3435011P7.png index afbe40e09df61..cf7e067829cd6 100644 Binary files a/public/images/devices/3435011P7.png and b/public/images/devices/3435011P7.png differ diff --git a/public/images/devices/3435731P7.png b/public/images/devices/3435731P7.png index 7b276a8f157fa..3e6236c51fdb1 100644 Binary files a/public/images/devices/3435731P7.png and b/public/images/devices/3435731P7.png differ diff --git a/public/images/devices/3450-L.png b/public/images/devices/3450-L.png index 79897c7fd6e7e..67e9b2b866edf 100644 Binary files a/public/images/devices/3450-L.png and b/public/images/devices/3450-L.png differ diff --git a/public/images/devices/3460-L.png b/public/images/devices/3460-L.png index 22969dac5ce43..4fc21892d0d80 100644 Binary files a/public/images/devices/3460-L.png and b/public/images/devices/3460-L.png differ diff --git a/public/images/devices/35104001.png b/public/images/devices/35104001.png index 6bc34836ac141..a2830e72dbdab 100644 Binary files a/public/images/devices/35104001.png and b/public/images/devices/35104001.png differ diff --git a/public/images/devices/35144001.png b/public/images/devices/35144001.png index 26c550aca6249..094df682f900b 100644 Binary files a/public/images/devices/35144001.png and b/public/images/devices/35144001.png differ diff --git a/public/images/devices/368308_2010.png b/public/images/devices/368308_2010.png index 784a419f3f388..b30c32a6d98d2 100644 Binary files a/public/images/devices/368308_2010.png and b/public/images/devices/368308_2010.png differ diff --git a/public/images/devices/37022173.png b/public/images/devices/37022173.png index 4c94c554d34e0..7ef5c801f3b14 100644 Binary files a/public/images/devices/37022173.png and b/public/images/devices/37022173.png differ diff --git a/public/images/devices/37022454.png b/public/images/devices/37022454.png index c6696c9ed302e..c6919c20295ae 100644 Binary files a/public/images/devices/37022454.png and b/public/images/devices/37022454.png differ diff --git a/public/images/devices/37022463.png b/public/images/devices/37022463.png index 4cec6427003c0..9ee17f1f09a62 100644 Binary files a/public/images/devices/37022463.png and b/public/images/devices/37022463.png differ diff --git a/public/images/devices/37022474.png b/public/images/devices/37022474.png index 1a55b47e2a64b..ac1c4e2c1e49a 100644 Binary files a/public/images/devices/37022474.png and b/public/images/devices/37022474.png differ diff --git a/public/images/devices/37022483.png b/public/images/devices/37022483.png index 65fa9925a3ee1..97991e4d2d582 100644 Binary files a/public/images/devices/37022483.png and b/public/images/devices/37022483.png differ diff --git a/public/images/devices/37022493.png b/public/images/devices/37022493.png index e299b21b58921..cbb73155d4008 100644 Binary files a/public/images/devices/37022493.png and b/public/images/devices/37022493.png differ diff --git a/public/images/devices/37022714.png b/public/images/devices/37022714.png index bc5a886652fe2..7d0ed826d3ffb 100644 Binary files a/public/images/devices/37022714.png and b/public/images/devices/37022714.png differ diff --git a/public/images/devices/371000001.png b/public/images/devices/371000001.png index d41d12dee9988..72437e1000185 100644 Binary files a/public/images/devices/371000001.png and b/public/images/devices/371000001.png differ diff --git a/public/images/devices/371000002.png b/public/images/devices/371000002.png index 494d56a86e65e..59562c60a838c 100644 Binary files a/public/images/devices/371000002.png and b/public/images/devices/371000002.png differ diff --git a/public/images/devices/371232040.png b/public/images/devices/371232040.png index 5df2e854d917a..d941def847080 100644 Binary files a/public/images/devices/371232040.png and b/public/images/devices/371232040.png differ diff --git a/public/images/devices/378RT.png b/public/images/devices/378RT.png index a6049a55f0b70..b8539dc6e644f 100644 Binary files a/public/images/devices/378RT.png and b/public/images/devices/378RT.png differ diff --git a/public/images/devices/3802960.png b/public/images/devices/3802960.png index 8289c8fe87d71..83571857309ba 100644 Binary files a/public/images/devices/3802960.png and b/public/images/devices/3802960.png differ diff --git a/public/images/devices/3802961.png b/public/images/devices/3802961.png index 61decae42ae47..bc8a0623466c6 100644 Binary files a/public/images/devices/3802961.png and b/public/images/devices/3802961.png differ diff --git a/public/images/devices/3802962.png b/public/images/devices/3802962.png index 1a36dd126c004..fde50c32ee65a 100644 Binary files a/public/images/devices/3802962.png and b/public/images/devices/3802962.png differ diff --git a/public/images/devices/3802963.png b/public/images/devices/3802963.png index b04881dbf4b0f..d0a110c6d7645 100644 Binary files a/public/images/devices/3802963.png and b/public/images/devices/3802963.png differ diff --git a/public/images/devices/3802964.png b/public/images/devices/3802964.png index c336cb6a07cf3..9646453e6b6ae 100644 Binary files a/public/images/devices/3802964.png and b/public/images/devices/3802964.png differ diff --git a/public/images/devices/3802965.png b/public/images/devices/3802965.png index 0a6bf56c6e855..163096ad04f6d 100644 Binary files a/public/images/devices/3802965.png and b/public/images/devices/3802965.png differ diff --git a/public/images/devices/3802966.png b/public/images/devices/3802966.png index 21e336c7762f1..9bcc4c9c1c734 100644 Binary files a/public/images/devices/3802966.png and b/public/images/devices/3802966.png differ diff --git a/public/images/devices/3802967.png b/public/images/devices/3802967.png index 932f35b046956..f838073c46eaa 100644 Binary files a/public/images/devices/3802967.png and b/public/images/devices/3802967.png differ diff --git a/public/images/devices/399629_2110.png b/public/images/devices/399629_2110.png index 64bb2fa815852..1b11c96fa206e 100644 Binary files a/public/images/devices/399629_2110.png and b/public/images/devices/399629_2110.png differ diff --git a/public/images/devices/3A12S-15.png b/public/images/devices/3A12S-15.png index e40d342e535de..bcf5158c61b32 100644 Binary files a/public/images/devices/3A12S-15.png and b/public/images/devices/3A12S-15.png differ diff --git a/public/images/devices/3RDS17BZ.png b/public/images/devices/3RDS17BZ.png index 957d61be38842..6e81a2a10b638 100644 Binary files a/public/images/devices/3RDS17BZ.png and b/public/images/devices/3RDS17BZ.png differ diff --git a/public/images/devices/3RMS16BZ.png b/public/images/devices/3RMS16BZ.png index 1c97310b3c533..a92c555203e4c 100644 Binary files a/public/images/devices/3RMS16BZ.png and b/public/images/devices/3RMS16BZ.png differ diff --git a/public/images/devices/3RSB015BZ.png b/public/images/devices/3RSB015BZ.png index e58acb48aa317..f7dc8c455a073 100644 Binary files a/public/images/devices/3RSB015BZ.png and b/public/images/devices/3RSB015BZ.png differ diff --git a/public/images/devices/3RSB22BZ.png b/public/images/devices/3RSB22BZ.png index b3f2f82acb69c..a153215a6b235 100644 Binary files a/public/images/devices/3RSB22BZ.png and b/public/images/devices/3RSB22BZ.png differ diff --git a/public/images/devices/3RSL011Z.png b/public/images/devices/3RSL011Z.png index 9bcc49a816591..a0f9828084976 100644 Binary files a/public/images/devices/3RSL011Z.png and b/public/images/devices/3RSL011Z.png differ diff --git a/public/images/devices/3RSL012Z.png b/public/images/devices/3RSL012Z.png index 4b9a3f47a2160..53de2c8f51415 100644 Binary files a/public/images/devices/3RSL012Z.png and b/public/images/devices/3RSL012Z.png differ diff --git a/public/images/devices/3RSP019BZ.png b/public/images/devices/3RSP019BZ.png index 43d28a94488dd..49da1f33c31f0 100644 Binary files a/public/images/devices/3RSP019BZ.png and b/public/images/devices/3RSP019BZ.png differ diff --git a/public/images/devices/3RSS007Z.png b/public/images/devices/3RSS007Z.png index c01d7e651cd6c..33bb1157d23e4 100644 Binary files a/public/images/devices/3RSS007Z.png and b/public/images/devices/3RSS007Z.png differ diff --git a/public/images/devices/3RSS008Z.png b/public/images/devices/3RSS008Z.png index c01d7e651cd6c..33bb1157d23e4 100644 Binary files a/public/images/devices/3RSS008Z.png and b/public/images/devices/3RSS008Z.png differ diff --git a/public/images/devices/3RSS009Z.png b/public/images/devices/3RSS009Z.png index 827d3f12ab64b..2a50547d54a0b 100644 Binary files a/public/images/devices/3RSS009Z.png and b/public/images/devices/3RSS009Z.png differ diff --git a/public/images/devices/3RTHS0224BZ.png b/public/images/devices/3RTHS0224BZ.png index e8caf797768eb..40211a1c55cf9 100644 Binary files a/public/images/devices/3RTHS0224BZ.png and b/public/images/devices/3RTHS0224BZ.png differ diff --git a/public/images/devices/3RTHS24BZ.png b/public/images/devices/3RTHS24BZ.png index efc6635a2ff5e..db2706a5a7a7e 100644 Binary files a/public/images/devices/3RTHS24BZ.png and b/public/images/devices/3RTHS24BZ.png differ diff --git a/public/images/devices/3RVS01031Z.png b/public/images/devices/3RVS01031Z.png index b0c5615211be0..eb0338e19044c 100644 Binary files a/public/images/devices/3RVS01031Z.png and b/public/images/devices/3RVS01031Z.png differ diff --git a/public/images/devices/3RWS18BZ.png b/public/images/devices/3RWS18BZ.png index f2182d51c9175..e963f485a3a5e 100644 Binary files a/public/images/devices/3RWS18BZ.png and b/public/images/devices/3RWS18BZ.png differ diff --git a/public/images/devices/4000116784070.png b/public/images/devices/4000116784070.png index a1c77b23c911f..7819b105d4163 100644 Binary files a/public/images/devices/4000116784070.png and b/public/images/devices/4000116784070.png differ diff --git a/public/images/devices/4023330P6.png b/public/images/devices/4023330P6.png index c8d31454b5bf5..e9f519a291cbe 100644 Binary files a/public/images/devices/4023330P6.png and b/public/images/devices/4023330P6.png differ diff --git a/public/images/devices/4023330P7.png b/public/images/devices/4023330P7.png index a4314db4578ab..8fb3286d240cc 100644 Binary files a/public/images/devices/4023330P7.png and b/public/images/devices/4023330P7.png differ diff --git a/public/images/devices/4023331P6.png b/public/images/devices/4023331P6.png index 504a2b2e3666f..bb3ab2acf3a32 100644 Binary files a/public/images/devices/4023331P6.png and b/public/images/devices/4023331P6.png differ diff --git a/public/images/devices/4033930P6.png b/public/images/devices/4033930P6.png index 7359c6737493e..b71ebfeafb1e2 100644 Binary files a/public/images/devices/4033930P6.png and b/public/images/devices/4033930P6.png differ diff --git a/public/images/devices/4033930P7.png b/public/images/devices/4033930P7.png index d82ea247ef3cf..b435c00a49ddf 100644 Binary files a/public/images/devices/4033930P7.png and b/public/images/devices/4033930P7.png differ diff --git a/public/images/devices/4034030P6.png b/public/images/devices/4034030P6.png index abafb101f9ef4..2909fbc04c11f 100644 Binary files a/public/images/devices/4034030P6.png and b/public/images/devices/4034030P6.png differ diff --git a/public/images/devices/4034031P6.png b/public/images/devices/4034031P6.png index 32639002413fc..92210ad8704c5 100644 Binary files a/public/images/devices/4034031P6.png and b/public/images/devices/4034031P6.png differ diff --git a/public/images/devices/4034031P7.png b/public/images/devices/4034031P7.png index 931b29c1144be..dfd7b0aaa3c0f 100644 Binary files a/public/images/devices/4034031P7.png and b/public/images/devices/4034031P7.png differ diff --git a/public/images/devices/404000-404005-404012-404019.png b/public/images/devices/404000-404005-404012-404019.png index e62ded5173826..0dea05699cd78 100644 Binary files a/public/images/devices/404000-404005-404012-404019.png and b/public/images/devices/404000-404005-404012-404019.png differ diff --git a/public/images/devices/404001.png b/public/images/devices/404001.png index 96bf19a5bdb5c..e06bae4417b30 100644 Binary files a/public/images/devices/404001.png and b/public/images/devices/404001.png differ diff --git a/public/images/devices/404002.png b/public/images/devices/404002.png index e806e3eade489..f77fd3f3cb61b 100644 Binary files a/public/images/devices/404002.png and b/public/images/devices/404002.png differ diff --git a/public/images/devices/404006-404008-404004.png b/public/images/devices/404006-404008-404004.png index 9c594e7aab3b4..228b6f4153e74 100644 Binary files a/public/images/devices/404006-404008-404004.png and b/public/images/devices/404006-404008-404004.png differ diff --git a/public/images/devices/404017.png b/public/images/devices/404017.png index 0dc3c82788884..6880ffdd18a39 100644 Binary files a/public/images/devices/404017.png and b/public/images/devices/404017.png differ diff --git a/public/images/devices/404021.png b/public/images/devices/404021.png index 162f70b7e7634..2e292e938ec27 100644 Binary files a/public/images/devices/404021.png and b/public/images/devices/404021.png differ diff --git a/public/images/devices/404022-404049C.png b/public/images/devices/404022-404049C.png index 0a50695c73c95..cdd48b39a05ec 100644 Binary files a/public/images/devices/404022-404049C.png and b/public/images/devices/404022-404049C.png differ diff --git a/public/images/devices/404023.png b/public/images/devices/404023.png index 7c989254dcf04..396a15dd924e3 100644 Binary files a/public/images/devices/404023.png and b/public/images/devices/404023.png differ diff --git a/public/images/devices/404024.png b/public/images/devices/404024.png index 6d6f305ab7d18..ffbf82d98f7fa 100644 Binary files a/public/images/devices/404024.png and b/public/images/devices/404024.png differ diff --git a/public/images/devices/404028-44435.png b/public/images/devices/404028-44435.png index 83c3cd7c840e1..f37d272d74a45 100644 Binary files a/public/images/devices/404028-44435.png and b/public/images/devices/404028-44435.png differ diff --git a/public/images/devices/404031.png b/public/images/devices/404031.png index 92f27947add9c..27f412a0020ce 100644 Binary files a/public/images/devices/404031.png and b/public/images/devices/404031.png differ diff --git a/public/images/devices/404036-45327-45317-45328.png b/public/images/devices/404036-45327-45317-45328.png index 97eaf88b35dde..d2a8df83496d2 100644 Binary files a/public/images/devices/404036-45327-45317-45328.png and b/public/images/devices/404036-45327-45317-45328.png differ diff --git a/public/images/devices/404037-404038.png b/public/images/devices/404037-404038.png index 797914c3e19c2..d4cb4cf09af5a 100644 Binary files a/public/images/devices/404037-404038.png and b/public/images/devices/404037-404038.png differ diff --git a/public/images/devices/404049D.png b/public/images/devices/404049D.png index c303237ee784a..12698a0e52567 100644 Binary files a/public/images/devices/404049D.png and b/public/images/devices/404049D.png differ diff --git a/public/images/devices/404062.png b/public/images/devices/404062.png index 79df2ed83399b..9c308db0aceb7 100644 Binary files a/public/images/devices/404062.png and b/public/images/devices/404062.png differ diff --git a/public/images/devices/404065.png b/public/images/devices/404065.png index d604482e4a223..a85d41bbe26d3 100644 Binary files a/public/images/devices/404065.png and b/public/images/devices/404065.png differ diff --git a/public/images/devices/4040B.png b/public/images/devices/4040B.png index 4f5d4d36bcfbb..799e36d4bbd7f 100644 Binary files a/public/images/devices/4040B.png and b/public/images/devices/4040B.png differ diff --git a/public/images/devices/4052899926110.png b/public/images/devices/4052899926110.png index ba01c36d8cd3e..37aac52fd2a5e 100644 Binary files a/public/images/devices/4052899926110.png and b/public/images/devices/4052899926110.png differ diff --git a/public/images/devices/4052899926127.png b/public/images/devices/4052899926127.png index e46cdfa9f2280..a79d6239b0683 100644 Binary files a/public/images/devices/4052899926127.png and b/public/images/devices/4052899926127.png differ diff --git a/public/images/devices/4052899926158.png b/public/images/devices/4052899926158.png index 2ac43f5b40f6d..87350ea57a6b3 100644 Binary files a/public/images/devices/4052899926158.png and b/public/images/devices/4052899926158.png differ diff --git a/public/images/devices/4058075036147.png b/public/images/devices/4058075036147.png index 5f238a9e6db5c..4d32f26c22f13 100644 Binary files a/public/images/devices/4058075036147.png and b/public/images/devices/4058075036147.png differ diff --git a/public/images/devices/4058075036185.png b/public/images/devices/4058075036185.png index c50a7b8861789..720192f1e6bca 100644 Binary files a/public/images/devices/4058075036185.png and b/public/images/devices/4058075036185.png differ diff --git a/public/images/devices/4058075047853.png b/public/images/devices/4058075047853.png index 72828a351d6e6..06b0d3cd0cbbd 100644 Binary files a/public/images/devices/4058075047853.png and b/public/images/devices/4058075047853.png differ diff --git a/public/images/devices/4058075148338.png b/public/images/devices/4058075148338.png index 7a47c2fe951d7..fa5b65a250d9c 100644 Binary files a/public/images/devices/4058075148338.png and b/public/images/devices/4058075148338.png differ diff --git a/public/images/devices/4058075168572.png b/public/images/devices/4058075168572.png index 1992af8cd997b..afbd7bac460c4 100644 Binary files a/public/images/devices/4058075168572.png and b/public/images/devices/4058075168572.png differ diff --git a/public/images/devices/4058075173989.png b/public/images/devices/4058075173989.png index fa2b4f74ad505..8040a6ad2871d 100644 Binary files a/public/images/devices/4058075173989.png and b/public/images/devices/4058075173989.png differ diff --git a/public/images/devices/4058075181472.png b/public/images/devices/4058075181472.png index 4e38177961697..a1bbb43f025bf 100644 Binary files a/public/images/devices/4058075181472.png and b/public/images/devices/4058075181472.png differ diff --git a/public/images/devices/4058075208339.png b/public/images/devices/4058075208339.png index 92c343e08183f..8da0a1f06828f 100644 Binary files a/public/images/devices/4058075208339.png and b/public/images/devices/4058075208339.png differ diff --git a/public/images/devices/4058075208353.png b/public/images/devices/4058075208353.png index fddb9217d4fb0..353de5f5d6de2 100644 Binary files a/public/images/devices/4058075208353.png and b/public/images/devices/4058075208353.png differ diff --git a/public/images/devices/4058075208360.png b/public/images/devices/4058075208360.png index 8d6a921a136db..dfc5e7abfe57f 100644 Binary files a/public/images/devices/4058075208360.png and b/public/images/devices/4058075208360.png differ diff --git a/public/images/devices/4058075208384.png b/public/images/devices/4058075208384.png index 06f96a514547e..8107af9017b16 100644 Binary files a/public/images/devices/4058075208384.png and b/public/images/devices/4058075208384.png differ diff --git a/public/images/devices/4058075208391.png b/public/images/devices/4058075208391.png index 348709f07b8b0..41fbf01a2d448 100644 Binary files a/public/images/devices/4058075208391.png and b/public/images/devices/4058075208391.png differ diff --git a/public/images/devices/4058075208414.png b/public/images/devices/4058075208414.png index 97f471e156d2f..a47469734f633 100644 Binary files a/public/images/devices/4058075208414.png and b/public/images/devices/4058075208414.png differ diff --git a/public/images/devices/4058075208421.png b/public/images/devices/4058075208421.png index 30d17d4c5106e..00e562919d870 100644 Binary files a/public/images/devices/4058075208421.png and b/public/images/devices/4058075208421.png differ diff --git a/public/images/devices/4058075485174.png b/public/images/devices/4058075485174.png index 0d3c868e7288e..43d863b7c1cc1 100644 Binary files a/public/images/devices/4058075485174.png and b/public/images/devices/4058075485174.png differ diff --git a/public/images/devices/4058075728981.png b/public/images/devices/4058075728981.png index 1beac8dd8e9bf..433af7157c2e6 100644 Binary files a/public/images/devices/4058075728981.png and b/public/images/devices/4058075728981.png differ diff --git a/public/images/devices/4058075729001.png b/public/images/devices/4058075729001.png index ee009ebd10ad7..4dc3407a2c6a5 100644 Binary files a/public/images/devices/4058075729001.png and b/public/images/devices/4058075729001.png differ diff --git a/public/images/devices/4058075729063.png b/public/images/devices/4058075729063.png index f14d0db989f05..d347072c43cde 100644 Binary files a/public/images/devices/4058075729063.png and b/public/images/devices/4058075729063.png differ diff --git a/public/images/devices/4058075729100.png b/public/images/devices/4058075729100.png index b8987cd4d42fb..a4d3476d01012 100644 Binary files a/public/images/devices/4058075729100.png and b/public/images/devices/4058075729100.png differ diff --git a/public/images/devices/4058075729124.png b/public/images/devices/4058075729124.png index 23fa1cd43b856..34a129d6bba06 100644 Binary files a/public/images/devices/4058075729124.png and b/public/images/devices/4058075729124.png differ diff --git a/public/images/devices/4058075729148.png b/public/images/devices/4058075729148.png index ba352b4dcedfa..92a12fc43a489 100644 Binary files a/public/images/devices/4058075729148.png and b/public/images/devices/4058075729148.png differ diff --git a/public/images/devices/4058075729186.png b/public/images/devices/4058075729186.png index 22909128cf5de..e8e8d0217093e 100644 Binary files a/public/images/devices/4058075729186.png and b/public/images/devices/4058075729186.png differ diff --git a/public/images/devices/4058075729209.png b/public/images/devices/4058075729209.png index 46aa3fcfad39f..d142d3b800f93 100644 Binary files a/public/images/devices/4058075729209.png and b/public/images/devices/4058075729209.png differ diff --git a/public/images/devices/4058075729223.png b/public/images/devices/4058075729223.png index eefcacbb874cd..06a5867adcf8f 100644 Binary files a/public/images/devices/4058075729223.png and b/public/images/devices/4058075729223.png differ diff --git a/public/images/devices/4058075729247.png b/public/images/devices/4058075729247.png index 3ace523bbc7fc..0fafe81f7a377 100644 Binary files a/public/images/devices/4058075729247.png and b/public/images/devices/4058075729247.png differ diff --git a/public/images/devices/4058075729261.png b/public/images/devices/4058075729261.png index 289db4e8d39ba..b0c723006a9a4 100644 Binary files a/public/images/devices/4058075729261.png and b/public/images/devices/4058075729261.png differ diff --git a/public/images/devices/4058075729285.png b/public/images/devices/4058075729285.png index e84ada5a8faad..f0b90480c0ba0 100644 Binary files a/public/images/devices/4058075729285.png and b/public/images/devices/4058075729285.png differ diff --git a/public/images/devices/4058075729308.png b/public/images/devices/4058075729308.png index ef0f2a39085db..cb709b2e19a4d 100644 Binary files a/public/images/devices/4058075729308.png and b/public/images/devices/4058075729308.png differ diff --git a/public/images/devices/4058075729322.png b/public/images/devices/4058075729322.png index 2228fc9fba52a..5321a4010811d 100644 Binary files a/public/images/devices/4058075729322.png and b/public/images/devices/4058075729322.png differ diff --git a/public/images/devices/4058075816459.png b/public/images/devices/4058075816459.png index 62e3a68eba8ff..8cd4413442a70 100644 Binary files a/public/images/devices/4058075816459.png and b/public/images/devices/4058075816459.png differ diff --git a/public/images/devices/4058075816718.png b/public/images/devices/4058075816718.png index cac25addbe58e..b24fe6010b8c0 100644 Binary files a/public/images/devices/4058075816718.png and b/public/images/devices/4058075816718.png differ diff --git a/public/images/devices/4058075816732.png b/public/images/devices/4058075816732.png index 2f227d82ae270..a6cbac5832e5e 100644 Binary files a/public/images/devices/4058075816732.png and b/public/images/devices/4058075816732.png differ diff --git a/public/images/devices/4058075816794.png b/public/images/devices/4058075816794.png index adbb097b1aa20..5518a9a2eef45 100644 Binary files a/public/images/devices/4058075816794.png and b/public/images/devices/4058075816794.png differ diff --git a/public/images/devices/4062172044776_1.png b/public/images/devices/4062172044776_1.png index af67a4cee8d60..26d70627acab6 100644 Binary files a/public/images/devices/4062172044776_1.png and b/public/images/devices/4062172044776_1.png differ diff --git a/public/images/devices/4062172044776_2.png b/public/images/devices/4062172044776_2.png index af67a4cee8d60..26d70627acab6 100644 Binary files a/public/images/devices/4062172044776_2.png and b/public/images/devices/4062172044776_2.png differ diff --git a/public/images/devices/4062172044776_3.png b/public/images/devices/4062172044776_3.png index af67a4cee8d60..26d70627acab6 100644 Binary files a/public/images/devices/4062172044776_3.png and b/public/images/devices/4062172044776_3.png differ diff --git a/public/images/devices/4062172044776_4.png b/public/images/devices/4062172044776_4.png index af67a4cee8d60..26d70627acab6 100644 Binary files a/public/images/devices/4062172044776_4.png and b/public/images/devices/4062172044776_4.png differ diff --git a/public/images/devices/4076130P6.png b/public/images/devices/4076130P6.png index 3da38b145deb4..2a54fa0ac2bd0 100644 Binary files a/public/images/devices/4076130P6.png and b/public/images/devices/4076130P6.png differ diff --git a/public/images/devices/4076131P6.png b/public/images/devices/4076131P6.png index 3b69e9060427f..18eebc86da19c 100644 Binary files a/public/images/devices/4076131P6.png and b/public/images/devices/4076131P6.png differ diff --git a/public/images/devices/4080148P7.png b/public/images/devices/4080148P7.png index de56e50a55d84..db1f63bf6811c 100644 Binary files a/public/images/devices/4080148P7.png and b/public/images/devices/4080148P7.png differ diff --git a/public/images/devices/4080148P9.png b/public/images/devices/4080148P9.png index 0e0e70bc95a64..a8dea8357a84b 100644 Binary files a/public/images/devices/4080148P9.png and b/public/images/devices/4080148P9.png differ diff --git a/public/images/devices/4080148U9.png b/public/images/devices/4080148U9.png index ff7da4171f430..2583d70afa080 100644 Binary files a/public/images/devices/4080148U9.png and b/public/images/devices/4080148U9.png differ diff --git a/public/images/devices/4080248P7.png b/public/images/devices/4080248P7.png index ebd284ee9bc1a..7f893f488e8e5 100644 Binary files a/public/images/devices/4080248P7.png and b/public/images/devices/4080248P7.png differ diff --git a/public/images/devices/4080248P9.png b/public/images/devices/4080248P9.png index fe48cdc0e861b..1801e28fefd19 100644 Binary files a/public/images/devices/4080248P9.png and b/public/images/devices/4080248P9.png differ diff --git a/public/images/devices/4080248U9.png b/public/images/devices/4080248U9.png index e16e19865683b..0c5391a0cf8cb 100644 Binary files a/public/images/devices/4080248U9.png and b/public/images/devices/4080248U9.png differ diff --git a/public/images/devices/4090130P7.png b/public/images/devices/4090130P7.png index 787ef9294f55c..708de39ba52b5 100644 Binary files a/public/images/devices/4090130P7.png and b/public/images/devices/4090130P7.png differ diff --git a/public/images/devices/4090130P9.png b/public/images/devices/4090130P9.png index 7b4c1475c17ea..17c4ec10b651a 100644 Binary files a/public/images/devices/4090130P9.png and b/public/images/devices/4090130P9.png differ diff --git a/public/images/devices/4090230P9.png b/public/images/devices/4090230P9.png index c0c7b3c3d0895..d66a1bc5fc19e 100644 Binary files a/public/images/devices/4090230P9.png and b/public/images/devices/4090230P9.png differ diff --git a/public/images/devices/4090231P9.png b/public/images/devices/4090231P9.png index 8d70613dd2f02..ec7a4248b0375 100644 Binary files a/public/images/devices/4090231P9.png and b/public/images/devices/4090231P9.png differ diff --git a/public/images/devices/4090330P9.png b/public/images/devices/4090330P9.png index 337b0e59f40c1..4d346e4441919 100644 Binary files a/public/images/devices/4090330P9.png and b/public/images/devices/4090330P9.png differ diff --git a/public/images/devices/4090331P9.png b/public/images/devices/4090331P9.png index d2658c60dd05c..6588f1b852b44 100644 Binary files a/public/images/devices/4090331P9.png and b/public/images/devices/4090331P9.png differ diff --git a/public/images/devices/4090431P9.png b/public/images/devices/4090431P9.png index f7ea3d4495c00..10660f4654577 100644 Binary files a/public/images/devices/4090431P9.png and b/public/images/devices/4090431P9.png differ diff --git a/public/images/devices/4090531P7.png b/public/images/devices/4090531P7.png index 900ed2cfc497d..55aa6f4044a9e 100644 Binary files a/public/images/devices/4090531P7.png and b/public/images/devices/4090531P7.png differ diff --git a/public/images/devices/4090531P9.png b/public/images/devices/4090531P9.png index 5350701a8c6ec..b5191d455ed81 100644 Binary files a/public/images/devices/4090531P9.png and b/public/images/devices/4090531P9.png differ diff --git a/public/images/devices/4090631P7.png b/public/images/devices/4090631P7.png index 7f4e250e1cfc4..4288b16fbc25f 100644 Binary files a/public/images/devices/4090631P7.png and b/public/images/devices/4090631P7.png differ diff --git a/public/images/devices/4090631P9.png b/public/images/devices/4090631P9.png index 4d8e639043b84..fa1c4087930ff 100644 Binary files a/public/images/devices/4090631P9.png and b/public/images/devices/4090631P9.png differ diff --git a/public/images/devices/4096730P6.png b/public/images/devices/4096730P6.png index 128562b4a4d09..478cf7767cf12 100644 Binary files a/public/images/devices/4096730P6.png and b/public/images/devices/4096730P6.png differ diff --git a/public/images/devices/4096730U7.png b/public/images/devices/4096730U7.png index 128562b4a4d09..478cf7767cf12 100644 Binary files a/public/images/devices/4096730U7.png and b/public/images/devices/4096730U7.png differ diff --git a/public/images/devices/4098430P7.png b/public/images/devices/4098430P7.png index f9571051005f5..39c1fbea27496 100644 Binary files a/public/images/devices/4098430P7.png and b/public/images/devices/4098430P7.png differ diff --git a/public/images/devices/40ZH-O.png b/public/images/devices/40ZH-O.png index e89e938cf3cf8..81cc37fcf6552 100644 Binary files a/public/images/devices/40ZH-O.png and b/public/images/devices/40ZH-O.png differ diff --git a/public/images/devices/4100448U9.png b/public/images/devices/4100448U9.png index 56aa9c91c0e82..1629833fd3046 100644 Binary files a/public/images/devices/4100448U9.png and b/public/images/devices/4100448U9.png differ diff --git a/public/images/devices/412015.png b/public/images/devices/412015.png index a2f7f2da6d5ca..aab9b33093457 100644 Binary files a/public/images/devices/412015.png and b/public/images/devices/412015.png differ diff --git a/public/images/devices/412170.png b/public/images/devices/412170.png index 2420826d57f44..e18271128c122 100644 Binary files a/public/images/devices/412170.png and b/public/images/devices/412170.png differ diff --git a/public/images/devices/412171.png b/public/images/devices/412171.png index 4e17362a76c16..54af6e4644f16 100644 Binary files a/public/images/devices/412171.png and b/public/images/devices/412171.png differ diff --git a/public/images/devices/412172.png b/public/images/devices/412172.png index 585649fcc337e..d9b2a97565707 100644 Binary files a/public/images/devices/412172.png and b/public/images/devices/412172.png differ diff --git a/public/images/devices/412173.png b/public/images/devices/412173.png index 0d18f91225b79..f78d241559cc3 100644 Binary files a/public/images/devices/412173.png and b/public/images/devices/412173.png differ diff --git a/public/images/devices/4137.png b/public/images/devices/4137.png index 50c146182f76d..34862bcc0aad6 100644 Binary files a/public/images/devices/4137.png and b/public/images/devices/4137.png differ diff --git a/public/images/devices/41E10PBSWMZ-VW.png b/public/images/devices/41E10PBSWMZ-VW.png index f83e665ac565c..6b180cb1623b7 100644 Binary files a/public/images/devices/41E10PBSWMZ-VW.png and b/public/images/devices/41E10PBSWMZ-VW.png differ diff --git a/public/images/devices/41E2PBSWMZ-356PB2MBTZ.png b/public/images/devices/41E2PBSWMZ-356PB2MBTZ.png index 34278fda803ee..c138d37186b12 100644 Binary files a/public/images/devices/41E2PBSWMZ-356PB2MBTZ.png and b/public/images/devices/41E2PBSWMZ-356PB2MBTZ.png differ diff --git a/public/images/devices/41EPBDWCLMZ-354PBDMBTZ.png b/public/images/devices/41EPBDWCLMZ-354PBDMBTZ.png index caf51df838b11..fb9010e486841 100644 Binary files a/public/images/devices/41EPBDWCLMZ-354PBDMBTZ.png and b/public/images/devices/41EPBDWCLMZ-354PBDMBTZ.png differ diff --git a/public/images/devices/42-032.png b/public/images/devices/42-032.png index dea2c409e123a..2df0149506bdc 100644 Binary files a/public/images/devices/42-032.png and b/public/images/devices/42-032.png differ diff --git a/public/images/devices/4200-C.png b/public/images/devices/4200-C.png index b2915b5e5d2f6..e43ac5a233bbc 100644 Binary files a/public/images/devices/4200-C.png and b/public/images/devices/4200-C.png differ diff --git a/public/images/devices/421782.png b/public/images/devices/421782.png index 3f1b6c6311efe..1306699915a19 100644 Binary files a/public/images/devices/421782.png and b/public/images/devices/421782.png differ diff --git a/public/images/devices/421786.png b/public/images/devices/421786.png index 0f9a6649c4f11..7d4cf5aac0ca3 100644 Binary files a/public/images/devices/421786.png and b/public/images/devices/421786.png differ diff --git a/public/images/devices/421792.png b/public/images/devices/421792.png index 56138a20127b4..e561fd2164e2c 100644 Binary files a/public/images/devices/421792.png and b/public/images/devices/421792.png differ diff --git a/public/images/devices/4256050-RZHAC.png b/public/images/devices/4256050-RZHAC.png index 564412c9f47b5..b32a70b639474 100644 Binary files a/public/images/devices/4256050-RZHAC.png and b/public/images/devices/4256050-RZHAC.png differ diff --git a/public/images/devices/4256050-ZHAC.png b/public/images/devices/4256050-ZHAC.png index 564412c9f47b5..b32a70b639474 100644 Binary files a/public/images/devices/4256050-ZHAC.png and b/public/images/devices/4256050-ZHAC.png differ diff --git a/public/images/devices/4256251-RZHAC.png b/public/images/devices/4256251-RZHAC.png index baacde564bec7..985eabdaf0aeb 100644 Binary files a/public/images/devices/4256251-RZHAC.png and b/public/images/devices/4256251-RZHAC.png differ diff --git a/public/images/devices/4257050-RZHAC.png b/public/images/devices/4257050-RZHAC.png index a1c6015ef5f7c..b9779d045e64b 100644 Binary files a/public/images/devices/4257050-RZHAC.png and b/public/images/devices/4257050-RZHAC.png differ diff --git a/public/images/devices/4257050-ZHAC.png b/public/images/devices/4257050-ZHAC.png index de7f64584d72b..01ed1fd062cc1 100644 Binary files a/public/images/devices/4257050-ZHAC.png and b/public/images/devices/4257050-ZHAC.png differ diff --git a/public/images/devices/43023.png b/public/images/devices/43023.png index 3a56cd7f3fd55..59ad13e892489 100644 Binary files a/public/images/devices/43023.png and b/public/images/devices/43023.png differ diff --git a/public/images/devices/43076.png b/public/images/devices/43076.png index 50a9e9cf9251b..c745cd368cbc1 100644 Binary files a/public/images/devices/43076.png and b/public/images/devices/43076.png differ diff --git a/public/images/devices/43078.png b/public/images/devices/43078.png index 50a9e9cf9251b..c745cd368cbc1 100644 Binary files a/public/images/devices/43078.png and b/public/images/devices/43078.png differ diff --git a/public/images/devices/43080.png b/public/images/devices/43080.png index 2528ca70e7489..5c0c334929aa4 100644 Binary files a/public/images/devices/43080.png and b/public/images/devices/43080.png differ diff --git a/public/images/devices/43082.png b/public/images/devices/43082.png index 9ead497e2de4f..2adf820d27ee7 100644 Binary files a/public/images/devices/43082.png and b/public/images/devices/43082.png differ diff --git a/public/images/devices/43084.png b/public/images/devices/43084.png index 1b678a0cbe5f5..baf00aaa1cf39 100644 Binary files a/public/images/devices/43084.png and b/public/images/devices/43084.png differ diff --git a/public/images/devices/43090.png b/public/images/devices/43090.png index 1e520880d8eda..8835236a8e8c3 100644 Binary files a/public/images/devices/43090.png and b/public/images/devices/43090.png differ diff --git a/public/images/devices/43094.png b/public/images/devices/43094.png index 48770742de837..85008b15a7643 100644 Binary files a/public/images/devices/43094.png and b/public/images/devices/43094.png differ diff --git a/public/images/devices/43095.png b/public/images/devices/43095.png index a91ade4410efd..e326928ce43d9 100644 Binary files a/public/images/devices/43095.png and b/public/images/devices/43095.png differ diff --git a/public/images/devices/43096.png b/public/images/devices/43096.png index acbc89e65ce1d..8c662f9a1311c 100644 Binary files a/public/images/devices/43096.png and b/public/images/devices/43096.png differ diff --git a/public/images/devices/43100.png b/public/images/devices/43100.png index 35bd746445549..f7f60e467a947 100644 Binary files a/public/images/devices/43100.png and b/public/images/devices/43100.png differ diff --git a/public/images/devices/43102.png b/public/images/devices/43102.png index 29e1050671c42..2ec58ec7a1dd0 100644 Binary files a/public/images/devices/43102.png and b/public/images/devices/43102.png differ diff --git a/public/images/devices/43109.png b/public/images/devices/43109.png index 50a9e9cf9251b..d4cd33744ed02 100644 Binary files a/public/images/devices/43109.png and b/public/images/devices/43109.png differ diff --git a/public/images/devices/43113.png b/public/images/devices/43113.png index 2528ca70e7489..5c0c334929aa4 100644 Binary files a/public/images/devices/43113.png and b/public/images/devices/43113.png differ diff --git a/public/images/devices/43132.png b/public/images/devices/43132.png index 0a888dfe978ad..ea1efafc3013a 100644 Binary files a/public/images/devices/43132.png and b/public/images/devices/43132.png differ diff --git a/public/images/devices/433714.png b/public/images/devices/433714.png index 021e213076955..f81001a41d161 100644 Binary files a/public/images/devices/433714.png and b/public/images/devices/433714.png differ diff --git a/public/images/devices/44435.png b/public/images/devices/44435.png index 55abcb843c040..3916ad99b1665 100644 Binary files a/public/images/devices/44435.png and b/public/images/devices/44435.png differ diff --git a/public/images/devices/4500990.png b/public/images/devices/4500990.png index dc60c212a1c07..55ac02e5bbabb 100644 Binary files a/public/images/devices/4500990.png and b/public/images/devices/4500990.png differ diff --git a/public/images/devices/4500991.png b/public/images/devices/4500991.png index dec89934b5bfd..2158a7e1efb5e 100644 Binary files a/public/images/devices/4500991.png and b/public/images/devices/4500991.png differ diff --git a/public/images/devices/4500992.png b/public/images/devices/4500992.png index 385a7e1b6f915..f7709d051c97b 100644 Binary files a/public/images/devices/4500992.png and b/public/images/devices/4500992.png differ diff --git a/public/images/devices/4500993.png b/public/images/devices/4500993.png index 0958dd33fd0ae..9ea88982cc2bc 100644 Binary files a/public/images/devices/4500993.png and b/public/images/devices/4500993.png differ diff --git a/public/images/devices/4500994.png b/public/images/devices/4500994.png index 042ed04c22691..b52b515f2e62a 100644 Binary files a/public/images/devices/4500994.png and b/public/images/devices/4500994.png differ diff --git a/public/images/devices/4503748C6.png b/public/images/devices/4503748C6.png index cb0081956535c..cf909fb184c78 100644 Binary files a/public/images/devices/4503748C6.png and b/public/images/devices/4503748C6.png differ diff --git a/public/images/devices/4503848C5.png b/public/images/devices/4503848C5.png index e53d253a6bd89..3317ea7768b24 100644 Binary files a/public/images/devices/4503848C5.png and b/public/images/devices/4503848C5.png differ diff --git a/public/images/devices/4505748C5.png b/public/images/devices/4505748C5.png index 1cedcf15dc14e..49ab35313d3eb 100644 Binary files a/public/images/devices/4505748C5.png and b/public/images/devices/4505748C5.png differ diff --git a/public/images/devices/4507748C5.png b/public/images/devices/4507748C5.png index c208dbe7d0d2c..7e10dd30a7582 100644 Binary files a/public/images/devices/4507748C5.png and b/public/images/devices/4507748C5.png differ diff --git a/public/images/devices/4512700.png b/public/images/devices/4512700.png index 02c0dd41f84c3..cd3a558476107 100644 Binary files a/public/images/devices/4512700.png and b/public/images/devices/4512700.png differ diff --git a/public/images/devices/4512701.png b/public/images/devices/4512701.png index 53ab0b20adfb5..eb0312bf7c67a 100644 Binary files a/public/images/devices/4512701.png and b/public/images/devices/4512701.png differ diff --git a/public/images/devices/4512702.png b/public/images/devices/4512702.png index cf165750c05ed..c50866a3c4ddc 100644 Binary files a/public/images/devices/4512702.png and b/public/images/devices/4512702.png differ diff --git a/public/images/devices/4512703.png b/public/images/devices/4512703.png index 94e4e2b2d4a0b..7b54b12d92a1e 100644 Binary files a/public/images/devices/4512703.png and b/public/images/devices/4512703.png differ diff --git a/public/images/devices/4512704.png b/public/images/devices/4512704.png index 629647223c6a7..ae9922c8f6a64 100644 Binary files a/public/images/devices/4512704.png and b/public/images/devices/4512704.png differ diff --git a/public/images/devices/4512705.png b/public/images/devices/4512705.png index 8df4dd64a2012..4baa5f627ad25 100644 Binary files a/public/images/devices/4512705.png and b/public/images/devices/4512705.png differ diff --git a/public/images/devices/4512706.png b/public/images/devices/4512706.png index d3d6177b1e8a1..e72c44ae0aed3 100644 Binary files a/public/images/devices/4512706.png and b/public/images/devices/4512706.png differ diff --git a/public/images/devices/4512708.png b/public/images/devices/4512708.png index 452cff3300bbf..ac9a396e04382 100644 Binary files a/public/images/devices/4512708.png and b/public/images/devices/4512708.png differ diff --git a/public/images/devices/4512719.png b/public/images/devices/4512719.png index 019d2526c3ca3..6a57081557fb5 100644 Binary files a/public/images/devices/4512719.png and b/public/images/devices/4512719.png differ diff --git a/public/images/devices/4512721.png b/public/images/devices/4512721.png index ab972f821334f..05cecf947086a 100644 Binary files a/public/images/devices/4512721.png and b/public/images/devices/4512721.png differ diff --git a/public/images/devices/4512726.png b/public/images/devices/4512726.png index d5cfd053c6397..de7909b2a0026 100644 Binary files a/public/images/devices/4512726.png and b/public/images/devices/4512726.png differ diff --git a/public/images/devices/4512729.png b/public/images/devices/4512729.png index f0726f49c6cf4..7cfe512e328a7 100644 Binary files a/public/images/devices/4512729.png and b/public/images/devices/4512729.png differ diff --git a/public/images/devices/4512733.png b/public/images/devices/4512733.png index b36ab87e0c142..89a0bfc83d2ae 100644 Binary files a/public/images/devices/4512733.png and b/public/images/devices/4512733.png differ diff --git a/public/images/devices/4512737-4512738.png b/public/images/devices/4512737-4512738.png index 8e848e524e2e1..58cfc4e403c7e 100644 Binary files a/public/images/devices/4512737-4512738.png and b/public/images/devices/4512737-4512738.png differ diff --git a/public/images/devices/4512749.png b/public/images/devices/4512749.png index e02d9ee14d668..e6d72d69590fc 100644 Binary files a/public/images/devices/4512749.png and b/public/images/devices/4512749.png differ diff --git a/public/images/devices/4512751.png b/public/images/devices/4512751.png index 421df973f1e9d..618b3e039f089 100644 Binary files a/public/images/devices/4512751.png and b/public/images/devices/4512751.png differ diff --git a/public/images/devices/4512763.png b/public/images/devices/4512763.png index e8200e9b5fdf9..e4e340518edce 100644 Binary files a/public/images/devices/4512763.png and b/public/images/devices/4512763.png differ diff --git a/public/images/devices/4512767.png b/public/images/devices/4512767.png index 23ee1ae478d62..a8461511ce574 100644 Binary files a/public/images/devices/4512767.png and b/public/images/devices/4512767.png differ diff --git a/public/images/devices/4512770.png b/public/images/devices/4512770.png index 67dafd1a80888..0e396b9872e0d 100644 Binary files a/public/images/devices/4512770.png and b/public/images/devices/4512770.png differ diff --git a/public/images/devices/4512771.png b/public/images/devices/4512771.png index 96726e8c774c3..42cfdd65aaaf7 100644 Binary files a/public/images/devices/4512771.png and b/public/images/devices/4512771.png differ diff --git a/public/images/devices/4512772.png b/public/images/devices/4512772.png index db108f8f76470..f1af9fd516978 100644 Binary files a/public/images/devices/4512772.png and b/public/images/devices/4512772.png differ diff --git a/public/images/devices/4512773.png b/public/images/devices/4512773.png index 55d49acd95707..3af746d6af7dc 100644 Binary files a/public/images/devices/4512773.png and b/public/images/devices/4512773.png differ diff --git a/public/images/devices/4523430.png b/public/images/devices/4523430.png index efade53f66d14..347294cafc1f6 100644 Binary files a/public/images/devices/4523430.png and b/public/images/devices/4523430.png differ diff --git a/public/images/devices/45391.png b/public/images/devices/45391.png index 0dc3c82788884..ad50d5a8657da 100644 Binary files a/public/images/devices/45391.png and b/public/images/devices/45391.png differ diff --git a/public/images/devices/45727.png b/public/images/devices/45727.png index 28ef5feb8fccb..041d20a871ae4 100644 Binary files a/public/images/devices/45727.png and b/public/images/devices/45727.png differ diff --git a/public/images/devices/45728.png b/public/images/devices/45728.png index a48f264a24b2f..668fe6c9ca36f 100644 Binary files a/public/images/devices/45728.png and b/public/images/devices/45728.png differ diff --git a/public/images/devices/45730.png b/public/images/devices/45730.png index 36466035a4185..9484eeb4ac3c7 100644 Binary files a/public/images/devices/45730.png and b/public/images/devices/45730.png differ diff --git a/public/images/devices/45852GE.png b/public/images/devices/45852GE.png index e1f0a4f3fa963..267f0ae652001 100644 Binary files a/public/images/devices/45852GE.png and b/public/images/devices/45852GE.png differ diff --git a/public/images/devices/45853GE.png b/public/images/devices/45853GE.png index 2b945ff4d250d..f3077c684bc06 100644 Binary files a/public/images/devices/45853GE.png and b/public/images/devices/45853GE.png differ diff --git a/public/images/devices/45856GE.png b/public/images/devices/45856GE.png index b22b1eda6eed0..4d1a77ddaddfc 100644 Binary files a/public/images/devices/45856GE.png and b/public/images/devices/45856GE.png differ diff --git a/public/images/devices/45857GE.png b/public/images/devices/45857GE.png index 44c33bd0d6a28..f0d9dee4d963d 100644 Binary files a/public/images/devices/45857GE.png and b/public/images/devices/45857GE.png differ diff --git a/public/images/devices/464800.png b/public/images/devices/464800.png index 83fd14390cb09..19a369dd0f7fb 100644 Binary files a/public/images/devices/464800.png and b/public/images/devices/464800.png differ diff --git a/public/images/devices/4655BC0-R.png b/public/images/devices/4655BC0-R.png index 7af41b90439e7..dc13b792321cd 100644 Binary files a/public/images/devices/4655BC0-R.png and b/public/images/devices/4655BC0-R.png differ diff --git a/public/images/devices/4713406.png b/public/images/devices/4713406.png index fa4cdcd7b9d05..4ab43a9c9ce5b 100644 Binary files a/public/images/devices/4713406.png and b/public/images/devices/4713406.png differ diff --git a/public/images/devices/4713407.png b/public/images/devices/4713407.png index 507236b445583..8953dfe0ff7a6 100644 Binary files a/public/images/devices/4713407.png and b/public/images/devices/4713407.png differ diff --git a/public/images/devices/484719.png b/public/images/devices/484719.png index 24856adacc7e2..16e997fed6e69 100644 Binary files a/public/images/devices/484719.png and b/public/images/devices/484719.png differ diff --git a/public/images/devices/500.44.png b/public/images/devices/500.44.png index 20d017c5280e7..9ea45f24e635e 100644 Binary files a/public/images/devices/500.44.png and b/public/images/devices/500.44.png differ diff --git a/public/images/devices/500.45.png b/public/images/devices/500.45.png index 53f26e8d1491b..90b99fd178757 100644 Binary files a/public/images/devices/500.45.png and b/public/images/devices/500.45.png differ diff --git a/public/images/devices/500.47.png b/public/images/devices/500.47.png index 48aebbf70323e..b47f2a7836391 100644 Binary files a/public/images/devices/500.47.png and b/public/images/devices/500.47.png differ diff --git a/public/images/devices/500.48.png b/public/images/devices/500.48.png index a927c8752a6b5..f371081769df2 100644 Binary files a/public/images/devices/500.48.png and b/public/images/devices/500.48.png differ diff --git a/public/images/devices/500.67.png b/public/images/devices/500.67.png index abe972cd6508a..69dce6adc0fe2 100644 Binary files a/public/images/devices/500.67.png and b/public/images/devices/500.67.png differ diff --git a/public/images/devices/50043.png b/public/images/devices/50043.png index 6bb01cd0bf883..7d6a1558223bf 100644 Binary files a/public/images/devices/50043.png and b/public/images/devices/50043.png differ diff --git a/public/images/devices/50044-50045.png b/public/images/devices/50044-50045.png index 6f658a1f22137..b9dd01b0d5361 100644 Binary files a/public/images/devices/50044-50045.png and b/public/images/devices/50044-50045.png differ diff --git a/public/images/devices/50049-500.63.png b/public/images/devices/50049-500.63.png index 72f3bf80a7cba..0e47326bdcbd4 100644 Binary files a/public/images/devices/50049-500.63.png and b/public/images/devices/50049-500.63.png differ diff --git a/public/images/devices/50064.png b/public/images/devices/50064.png index 4b0d6a399c2be..a82a2964b9db7 100644 Binary files a/public/images/devices/50064.png and b/public/images/devices/50064.png differ diff --git a/public/images/devices/501.31.png b/public/images/devices/501.31.png index 496f24cec65d2..d798fb3f7f3c4 100644 Binary files a/public/images/devices/501.31.png and b/public/images/devices/501.31.png differ diff --git a/public/images/devices/501.34.png b/public/images/devices/501.34.png index 8dbb204669463..2a796ed847fcd 100644 Binary files a/public/images/devices/501.34.png and b/public/images/devices/501.34.png differ diff --git a/public/images/devices/50208693.png b/public/images/devices/50208693.png index 71fcbd9d13f2d..5fb6f23d57994 100644 Binary files a/public/images/devices/50208693.png and b/public/images/devices/50208693.png differ diff --git a/public/images/devices/50208702.png b/public/images/devices/50208702.png index 9c0b9b46888ff..e951803462cfb 100644 Binary files a/public/images/devices/50208702.png and b/public/images/devices/50208702.png differ diff --git a/public/images/devices/5041131P9.png b/public/images/devices/5041131P9.png index 0aa95ed54011c..f321c06773113 100644 Binary files a/public/images/devices/5041131P9.png and b/public/images/devices/5041131P9.png differ diff --git a/public/images/devices/5042131P9.png b/public/images/devices/5042131P9.png index 10f8893a0bc6a..71a7899ec8423 100644 Binary files a/public/images/devices/5042131P9.png and b/public/images/devices/5042131P9.png differ diff --git a/public/images/devices/5045131P7.png b/public/images/devices/5045131P7.png index 766e4898a23c1..bf8ac705056b7 100644 Binary files a/public/images/devices/5045131P7.png and b/public/images/devices/5045131P7.png differ diff --git a/public/images/devices/5045148P7.png b/public/images/devices/5045148P7.png index 00e735572d0a9..7c96ced2a61c0 100644 Binary files a/public/images/devices/5045148P7.png and b/public/images/devices/5045148P7.png differ diff --git a/public/images/devices/5047130P9.png b/public/images/devices/5047130P9.png index 4cc9eb4117e57..a0b0c16b5c4c7 100644 Binary files a/public/images/devices/5047130P9.png and b/public/images/devices/5047130P9.png differ diff --git a/public/images/devices/5047131P8.png b/public/images/devices/5047131P8.png index 1abd3b12c59ba..cfeb985458a53 100644 Binary files a/public/images/devices/5047131P8.png and b/public/images/devices/5047131P8.png differ diff --git a/public/images/devices/5047131P9.png b/public/images/devices/5047131P9.png index 18f34ad5df497..5a7fd82b3da25 100644 Binary files a/public/images/devices/5047131P9.png and b/public/images/devices/5047131P9.png differ diff --git a/public/images/devices/5047230P6.png b/public/images/devices/5047230P6.png index 13fc8eb53955c..18d534a7650d3 100644 Binary files a/public/images/devices/5047230P6.png and b/public/images/devices/5047230P6.png differ diff --git a/public/images/devices/5047231P6.png b/public/images/devices/5047231P6.png index 3ddab6c52bb0a..4306919514b6d 100644 Binary files a/public/images/devices/5047231P6.png and b/public/images/devices/5047231P6.png differ diff --git a/public/images/devices/5047331P6.png b/public/images/devices/5047331P6.png index 05c879736f667..7e10cd9757f31 100644 Binary files a/public/images/devices/5047331P6.png and b/public/images/devices/5047331P6.png differ diff --git a/public/images/devices/5047430P6.png b/public/images/devices/5047430P6.png index 34e951e55875f..c34d798aa43df 100644 Binary files a/public/images/devices/5047430P6.png and b/public/images/devices/5047430P6.png differ diff --git a/public/images/devices/5055131P7.png b/public/images/devices/5055131P7.png index e921308f8caf7..7b9019f0485bb 100644 Binary files a/public/images/devices/5055131P7.png and b/public/images/devices/5055131P7.png differ diff --git a/public/images/devices/5055148P7.png b/public/images/devices/5055148P7.png index d439d8b9e1a27..0c7425f7de9be 100644 Binary files a/public/images/devices/5055148P7.png and b/public/images/devices/5055148P7.png differ diff --git a/public/images/devices/5060730P7.png b/public/images/devices/5060730P7.png index a11a072bb5cab..eca1158e85eb3 100644 Binary files a/public/images/devices/5060730P7.png and b/public/images/devices/5060730P7.png differ diff --git a/public/images/devices/5060731P7.png b/public/images/devices/5060731P7.png index b3f3656276036..90d8497c523a0 100644 Binary files a/public/images/devices/5060731P7.png and b/public/images/devices/5060731P7.png differ diff --git a/public/images/devices/5060830P7.png b/public/images/devices/5060830P7.png index cda7501c45015..27195dcef940d 100644 Binary files a/public/images/devices/5060830P7.png and b/public/images/devices/5060830P7.png differ diff --git a/public/images/devices/5060831P7.png b/public/images/devices/5060831P7.png index 1cfe89b833353..9299a8aaa8e82 100644 Binary files a/public/images/devices/5060831P7.png and b/public/images/devices/5060831P7.png differ diff --git a/public/images/devices/5060930P7.png b/public/images/devices/5060930P7.png index aed01361d9813..c5576c4237972 100644 Binary files a/public/images/devices/5060930P7.png and b/public/images/devices/5060930P7.png differ diff --git a/public/images/devices/5060931P7.png b/public/images/devices/5060931P7.png index efc572e8433ed..a2e71110ecd45 100644 Binary files a/public/images/devices/5060931P7.png and b/public/images/devices/5060931P7.png differ diff --git a/public/images/devices/5061030P7.png b/public/images/devices/5061030P7.png index a1061bd20fe66..3d25ca25977bb 100644 Binary files a/public/images/devices/5061030P7.png and b/public/images/devices/5061030P7.png differ diff --git a/public/images/devices/5061031P7.png b/public/images/devices/5061031P7.png index 25a91d3e7f00f..785bcf35d13e8 100644 Binary files a/public/images/devices/5061031P7.png and b/public/images/devices/5061031P7.png differ diff --git a/public/images/devices/5062131P7.png b/public/images/devices/5062131P7.png index 9a3738bb55cf2..e242f901f54cc 100644 Binary files a/public/images/devices/5062131P7.png and b/public/images/devices/5062131P7.png differ diff --git a/public/images/devices/5062148P7.png b/public/images/devices/5062148P7.png index 9f4a730990fd3..f984b31710198 100644 Binary files a/public/images/devices/5062148P7.png and b/public/images/devices/5062148P7.png differ diff --git a/public/images/devices/5062231P7.png b/public/images/devices/5062231P7.png index 85987f6438520..addffcef6442f 100644 Binary files a/public/images/devices/5062231P7.png and b/public/images/devices/5062231P7.png differ diff --git a/public/images/devices/5062248P7.png b/public/images/devices/5062248P7.png index cdcb38816fa5d..1f82354422055 100644 Binary files a/public/images/devices/5062248P7.png and b/public/images/devices/5062248P7.png differ diff --git a/public/images/devices/5062331P7.png b/public/images/devices/5062331P7.png index 5d7e6c152e051..10104a2cf2fba 100644 Binary files a/public/images/devices/5062331P7.png and b/public/images/devices/5062331P7.png differ diff --git a/public/images/devices/5062348P7.png b/public/images/devices/5062348P7.png index e4f2c7da22465..bf27d38cb7f72 100644 Binary files a/public/images/devices/5062348P7.png and b/public/images/devices/5062348P7.png differ diff --git a/public/images/devices/5062431P7.png b/public/images/devices/5062431P7.png index 23a7108fc99a6..54304ae3fb889 100644 Binary files a/public/images/devices/5062431P7.png and b/public/images/devices/5062431P7.png differ diff --git a/public/images/devices/5062448P7.png b/public/images/devices/5062448P7.png index 67430ed7e7df3..53b85e55a2356 100644 Binary files a/public/images/devices/5062448P7.png and b/public/images/devices/5062448P7.png differ diff --git a/public/images/devices/5063130P7.png b/public/images/devices/5063130P7.png index c9f58e9d55d0e..ece5902b2aded 100644 Binary files a/public/images/devices/5063130P7.png and b/public/images/devices/5063130P7.png differ diff --git a/public/images/devices/5063131P7.png b/public/images/devices/5063131P7.png index d5358af61c0e5..a83b1f6d252c0 100644 Binary files a/public/images/devices/5063131P7.png and b/public/images/devices/5063131P7.png differ diff --git a/public/images/devices/5063230P7.png b/public/images/devices/5063230P7.png index 971c94116ecbb..0fb57ab551036 100644 Binary files a/public/images/devices/5063230P7.png and b/public/images/devices/5063230P7.png differ diff --git a/public/images/devices/5063231P7.png b/public/images/devices/5063231P7.png index 8e8117e26d860..0edf0c69a1bf1 100644 Binary files a/public/images/devices/5063231P7.png and b/public/images/devices/5063231P7.png differ diff --git a/public/images/devices/5063330P7.png b/public/images/devices/5063330P7.png index 12612ab34879d..a33fdce80bbe2 100644 Binary files a/public/images/devices/5063330P7.png and b/public/images/devices/5063330P7.png differ diff --git a/public/images/devices/5063331P7.png b/public/images/devices/5063331P7.png index a7fbd510eae74..b550c246cf7bd 100644 Binary files a/public/images/devices/5063331P7.png and b/public/images/devices/5063331P7.png differ diff --git a/public/images/devices/5063430P7.png b/public/images/devices/5063430P7.png index 2aa9e56ad5be5..bd04abdc0b067 100644 Binary files a/public/images/devices/5063430P7.png and b/public/images/devices/5063430P7.png differ diff --git a/public/images/devices/5063431P7.png b/public/images/devices/5063431P7.png index 4d158ea1d7aef..3e047b7a8b65d 100644 Binary files a/public/images/devices/5063431P7.png and b/public/images/devices/5063431P7.png differ diff --git a/public/images/devices/511.000.png b/public/images/devices/511.000.png index eaef5326e5f5b..3130071ac3a4d 100644 Binary files a/public/images/devices/511.000.png and b/public/images/devices/511.000.png differ diff --git a/public/images/devices/511.010.png b/public/images/devices/511.010.png index ec088d592c5b1..ce60269a19e1c 100644 Binary files a/public/images/devices/511.010.png and b/public/images/devices/511.010.png differ diff --git a/public/images/devices/511.012.png b/public/images/devices/511.012.png index 69dd5bfdaee83..8d254b6ef0fb6 100644 Binary files a/public/images/devices/511.012.png and b/public/images/devices/511.012.png differ diff --git a/public/images/devices/511.040.png b/public/images/devices/511.040.png index 1a6fdbe5b4c78..1cdeb5f073b8e 100644 Binary files a/public/images/devices/511.040.png and b/public/images/devices/511.040.png differ diff --git a/public/images/devices/511.050.png b/public/images/devices/511.050.png index e90c9be3ba9be..f15433c692268 100644 Binary files a/public/images/devices/511.050.png and b/public/images/devices/511.050.png differ diff --git a/public/images/devices/511.10.png b/public/images/devices/511.10.png index bc54eafd9cc22..bc3e05b2b0a52 100644 Binary files a/public/images/devices/511.10.png and b/public/images/devices/511.10.png differ diff --git a/public/images/devices/511.201.png b/public/images/devices/511.201.png index cadb13bb61229..721dca7128b76 100644 Binary files a/public/images/devices/511.201.png and b/public/images/devices/511.201.png differ diff --git a/public/images/devices/511.202.png b/public/images/devices/511.202.png index 971e54d883c5b..66ee7dcdb46b5 100644 Binary files a/public/images/devices/511.202.png and b/public/images/devices/511.202.png differ diff --git a/public/images/devices/511.324.png b/public/images/devices/511.324.png index bf1bc3bb19764..a18e282c5a582 100644 Binary files a/public/images/devices/511.324.png and b/public/images/devices/511.324.png differ diff --git a/public/images/devices/511.344.png b/public/images/devices/511.344.png index 84a2fd23fe33f..c5654df7d9d8f 100644 Binary files a/public/images/devices/511.344.png and b/public/images/devices/511.344.png differ diff --git a/public/images/devices/511.524.png b/public/images/devices/511.524.png index dfb8f002bd982..851febfee55db 100644 Binary files a/public/images/devices/511.524.png and b/public/images/devices/511.524.png differ diff --git a/public/images/devices/511.541.png b/public/images/devices/511.541.png index 1a69f41bb262d..f026ebc5be962 100644 Binary files a/public/images/devices/511.541.png and b/public/images/devices/511.541.png differ diff --git a/public/images/devices/511.544.png b/public/images/devices/511.544.png index fe6bb03f5d30e..e85152f981db1 100644 Binary files a/public/images/devices/511.544.png and b/public/images/devices/511.544.png differ diff --git a/public/images/devices/511.557.png b/public/images/devices/511.557.png index 816852f2df9d7..cc7fe68b758cf 100644 Binary files a/public/images/devices/511.557.png and b/public/images/devices/511.557.png differ diff --git a/public/images/devices/5110.40.png b/public/images/devices/5110.40.png index aad88446136ce..da008b2bd33b2 100644 Binary files a/public/images/devices/5110.40.png and b/public/images/devices/5110.40.png differ diff --git a/public/images/devices/5110131H5.png b/public/images/devices/5110131H5.png index d80617abf1460..4dd5e781bf9f3 100644 Binary files a/public/images/devices/5110131H5.png and b/public/images/devices/5110131H5.png differ diff --git a/public/images/devices/5110731H5.png b/public/images/devices/5110731H5.png index b0534350a22f6..c6ad672d55298 100644 Binary files a/public/images/devices/5110731H5.png and b/public/images/devices/5110731H5.png differ diff --git a/public/images/devices/5111531H5.png b/public/images/devices/5111531H5.png index 5164314998d7a..e0e390e5c348d 100644 Binary files a/public/images/devices/5111531H5.png and b/public/images/devices/5111531H5.png differ diff --git a/public/images/devices/5112.80.png b/public/images/devices/5112.80.png index d4848966b41b2..7312e0f69b867 100644 Binary files a/public/images/devices/5112.80.png and b/public/images/devices/5112.80.png differ diff --git a/public/images/devices/5120.1100.png b/public/images/devices/5120.1100.png index af3532fd9852d..28bb387ef14bb 100644 Binary files a/public/images/devices/5120.1100.png and b/public/images/devices/5120.1100.png differ diff --git a/public/images/devices/5120.1110.png b/public/images/devices/5120.1110.png index c4e0fd6fecfb1..2dcaf8c8db633 100644 Binary files a/public/images/devices/5120.1110.png and b/public/images/devices/5120.1110.png differ diff --git a/public/images/devices/5120.1200.png b/public/images/devices/5120.1200.png index de4af2aecf623..938040a3f6cc0 100644 Binary files a/public/images/devices/5120.1200.png and b/public/images/devices/5120.1200.png differ diff --git a/public/images/devices/5120.1210.png b/public/images/devices/5120.1210.png index de4af2aecf623..938040a3f6cc0 100644 Binary files a/public/images/devices/5120.1210.png and b/public/images/devices/5120.1210.png differ diff --git a/public/images/devices/5128.10.png b/public/images/devices/5128.10.png index 45397cf704650..ed208c463e7a4 100644 Binary files a/public/images/devices/5128.10.png and b/public/images/devices/5128.10.png differ diff --git a/public/images/devices/5309030P9.png b/public/images/devices/5309030P9.png index 504870615fac2..caca826ac85fb 100644 Binary files a/public/images/devices/5309030P9.png and b/public/images/devices/5309030P9.png differ diff --git a/public/images/devices/5309031P8.png b/public/images/devices/5309031P8.png index 9a3738bb55cf2..e242f901f54cc 100644 Binary files a/public/images/devices/5309031P8.png and b/public/images/devices/5309031P8.png differ diff --git a/public/images/devices/5309230P6.png b/public/images/devices/5309230P6.png index 86af5384c3041..f7d5cf3b7a916 100644 Binary files a/public/images/devices/5309230P6.png and b/public/images/devices/5309230P6.png differ diff --git a/public/images/devices/5309331P6.png b/public/images/devices/5309331P6.png index a10cdf6677bda..5863961d33593 100644 Binary files a/public/images/devices/5309331P6.png and b/public/images/devices/5309331P6.png differ diff --git a/public/images/devices/53170161.png b/public/images/devices/53170161.png index c6ead0e9a94b4..5bdeb1a593510 100644 Binary files a/public/images/devices/53170161.png and b/public/images/devices/53170161.png differ diff --git a/public/images/devices/540139X.png b/public/images/devices/540139X.png index 20a86c3adc65a..8afc16d6f7fe7 100644 Binary files a/public/images/devices/540139X.png and b/public/images/devices/540139X.png differ diff --git a/public/images/devices/5412748727364.png b/public/images/devices/5412748727364.png index a6c8b0a972e55..67dfd40466b7d 100644 Binary files a/public/images/devices/5412748727364.png and b/public/images/devices/5412748727364.png differ diff --git a/public/images/devices/5412748727371.png b/public/images/devices/5412748727371.png index ae1dc18e3db89..e3214cd16df9f 100644 Binary files a/public/images/devices/5412748727371.png and b/public/images/devices/5412748727371.png differ diff --git a/public/images/devices/5412748727388.png b/public/images/devices/5412748727388.png index 2b3ea981122f3..d14c3fca50641 100644 Binary files a/public/images/devices/5412748727388.png and b/public/images/devices/5412748727388.png differ diff --git a/public/images/devices/5412748727395.png b/public/images/devices/5412748727395.png index 912b9add3463a..c1e7eddbeeb94 100644 Binary files a/public/images/devices/5412748727395.png and b/public/images/devices/5412748727395.png differ diff --git a/public/images/devices/5412748727401.png b/public/images/devices/5412748727401.png index d0b7517d3bc1d..3c9198db3df00 100644 Binary files a/public/images/devices/5412748727401.png and b/public/images/devices/5412748727401.png differ diff --git a/public/images/devices/5412748727432.png b/public/images/devices/5412748727432.png index 7b0eca434e390..50db776a83963 100644 Binary files a/public/images/devices/5412748727432.png and b/public/images/devices/5412748727432.png differ diff --git a/public/images/devices/545D6102.png b/public/images/devices/545D6102.png index 18491ade76880..7eeabd4cb90de 100644 Binary files a/public/images/devices/545D6102.png and b/public/images/devices/545D6102.png differ diff --git a/public/images/devices/545D6115.png b/public/images/devices/545D6115.png index 6fa7df0c2c3cd..c50aa60f878db 100644 Binary files a/public/images/devices/545D6115.png and b/public/images/devices/545D6115.png differ diff --git a/public/images/devices/545D6306.png b/public/images/devices/545D6306.png index 40fece042d367..cf1bbebedd3db 100644 Binary files a/public/images/devices/545D6306.png and b/public/images/devices/545D6306.png differ diff --git a/public/images/devices/545D6514.png b/public/images/devices/545D6514.png index 0f0d81a30ea4b..ea9730b0d94a9 100644 Binary files a/public/images/devices/545D6514.png and b/public/images/devices/545D6514.png differ diff --git a/public/images/devices/54668161.png b/public/images/devices/54668161.png index c2ad4d36d2b92..e3336f3919b25 100644 Binary files a/public/images/devices/54668161.png and b/public/images/devices/54668161.png differ diff --git a/public/images/devices/548727.png b/public/images/devices/548727.png index f4f5fd9b4e5d6..929045a208bce 100644 Binary files a/public/images/devices/548727.png and b/public/images/devices/548727.png differ diff --git a/public/images/devices/550D6001.png b/public/images/devices/550D6001.png index 61c2ca918f55b..cfdef73ebe622 100644 Binary files a/public/images/devices/550D6001.png and b/public/images/devices/550D6001.png differ diff --git a/public/images/devices/552-720X4.png b/public/images/devices/552-720X4.png index 1a79e1b4ed479..9bc1b9d88ef9c 100644 Binary files a/public/images/devices/552-720X4.png and b/public/images/devices/552-720X4.png differ diff --git a/public/images/devices/552-721X2.png b/public/images/devices/552-721X2.png index 442c3a79a3564..afb2ef4955658 100644 Binary files a/public/images/devices/552-721X2.png and b/public/images/devices/552-721X2.png differ diff --git a/public/images/devices/552-72201.png b/public/images/devices/552-72201.png index 103cafb134c74..1455655b76e6c 100644 Binary files a/public/images/devices/552-72201.png and b/public/images/devices/552-72201.png differ diff --git a/public/images/devices/552-72301.png b/public/images/devices/552-72301.png index 5a0a468823a56..5ec42957b9cd0 100644 Binary files a/public/images/devices/552-72301.png and b/public/images/devices/552-72301.png differ diff --git a/public/images/devices/552-80401.png b/public/images/devices/552-80401.png index 95eebbca1c4d2..d435773c498fa 100644 Binary files a/public/images/devices/552-80401.png and b/public/images/devices/552-80401.png differ diff --git a/public/images/devices/552-80698.png b/public/images/devices/552-80698.png index 966df456c2c17..6ae580ce0d932 100644 Binary files a/public/images/devices/552-80698.png and b/public/images/devices/552-80698.png differ diff --git a/public/images/devices/5633030P6.png b/public/images/devices/5633030P6.png index 8a7f9ff775a7c..ea7b2da66134d 100644 Binary files a/public/images/devices/5633030P6.png and b/public/images/devices/5633030P6.png differ diff --git a/public/images/devices/5633031P9.png b/public/images/devices/5633031P9.png index 5831dcd7e1504..0b642ff3407b6 100644 Binary files a/public/images/devices/5633031P9.png and b/public/images/devices/5633031P9.png differ diff --git a/public/images/devices/57004000.png b/public/images/devices/57004000.png index a6cda562dd3e4..34dce48ade766 100644 Binary files a/public/images/devices/57004000.png and b/public/images/devices/57004000.png differ diff --git a/public/images/devices/57005000.png b/public/images/devices/57005000.png index 67d2d1a903e7f..45ec3d5744389 100644 Binary files a/public/images/devices/57005000.png and b/public/images/devices/57005000.png differ diff --git a/public/images/devices/57008000.png b/public/images/devices/57008000.png index 7fed1041e221a..b725771ec053e 100644 Binary files a/public/images/devices/57008000.png and b/public/images/devices/57008000.png differ diff --git a/public/images/devices/578526.png b/public/images/devices/578526.png index 0f040c6b85295..bfe947f840fca 100644 Binary files a/public/images/devices/578526.png and b/public/images/devices/578526.png differ diff --git a/public/images/devices/579573.png b/public/images/devices/579573.png index 86b2e37071cb1..ed69e9d21697c 100644 Binary files a/public/images/devices/579573.png and b/public/images/devices/579573.png differ diff --git a/public/images/devices/5900131C5.png b/public/images/devices/5900131C5.png index d40929bbc7212..f2990ca360607 100644 Binary files a/public/images/devices/5900131C5.png and b/public/images/devices/5900131C5.png differ diff --git a/public/images/devices/595UGR22.png b/public/images/devices/595UGR22.png index 526dc986c5874..8e44532654fe5 100644 Binary files a/public/images/devices/595UGR22.png and b/public/images/devices/595UGR22.png differ diff --git a/public/images/devices/5995111U5.png b/public/images/devices/5995111U5.png index 48d5e14606fe8..cfac139583a62 100644 Binary files a/public/images/devices/5995111U5.png and b/public/images/devices/5995111U5.png differ diff --git a/public/images/devices/5996311U5.png b/public/images/devices/5996311U5.png index 72f4007c0a52e..bc7443039424a 100644 Binary files a/public/images/devices/5996311U5.png and b/public/images/devices/5996311U5.png differ diff --git a/public/images/devices/5996411U5.png b/public/images/devices/5996411U5.png index 72f4007c0a52e..bc7443039424a 100644 Binary files a/public/images/devices/5996411U5.png and b/public/images/devices/5996411U5.png differ diff --git a/public/images/devices/5996511U5.png b/public/images/devices/5996511U5.png index 5ff952b1f5c4d..4ca25d7223c49 100644 Binary files a/public/images/devices/5996511U5.png and b/public/images/devices/5996511U5.png differ diff --git a/public/images/devices/5996611U5.png b/public/images/devices/5996611U5.png index 3e9dc0e4e6932..582be53ccbe49 100644 Binary files a/public/images/devices/5996611U5.png and b/public/images/devices/5996611U5.png differ diff --git a/public/images/devices/5AA-SS-ZA-H0.png b/public/images/devices/5AA-SS-ZA-H0.png index c166716c8f666..ecd4773fb8592 100644 Binary files a/public/images/devices/5AA-SS-ZA-H0.png and b/public/images/devices/5AA-SS-ZA-H0.png differ diff --git a/public/images/devices/6109231C5.png b/public/images/devices/6109231C5.png index 6804276b5b876..44f5fab608af5 100644 Binary files a/public/images/devices/6109231C5.png and b/public/images/devices/6109231C5.png differ diff --git a/public/images/devices/6109331C5.png b/public/images/devices/6109331C5.png index d628c3efd6c45..86215ef6e22f2 100644 Binary files a/public/images/devices/6109331C5.png and b/public/images/devices/6109331C5.png differ diff --git a/public/images/devices/66492-001.png b/public/images/devices/66492-001.png index 0f979868e6343..aafe726443000 100644 Binary files a/public/images/devices/66492-001.png and b/public/images/devices/66492-001.png differ diff --git a/public/images/devices/6717-84.png b/public/images/devices/6717-84.png index 3e04353dcc573..137e47ea2b24c 100644 Binary files a/public/images/devices/6717-84.png and b/public/images/devices/6717-84.png differ diff --git a/public/images/devices/67200BL.png b/public/images/devices/67200BL.png index 80547614bd509..1abd0a6da6d8c 100644 Binary files a/public/images/devices/67200BL.png and b/public/images/devices/67200BL.png differ diff --git a/public/images/devices/6735-6736-6737.png b/public/images/devices/6735-6736-6737.png index 43a1d5b6d3b67..94581655a578a 100644 Binary files a/public/images/devices/6735-6736-6737.png and b/public/images/devices/6735-6736-6737.png differ diff --git a/public/images/devices/676-00301024955Z.png b/public/images/devices/676-00301024955Z.png index 06c6133c164fe..78fc8bfa813ba 100644 Binary files a/public/images/devices/676-00301024955Z.png and b/public/images/devices/676-00301024955Z.png differ diff --git a/public/images/devices/6ARCZABZH.png b/public/images/devices/6ARCZABZH.png index 2dfa331e0bc8c..62a14375e541c 100644 Binary files a/public/images/devices/6ARCZABZH.png and b/public/images/devices/6ARCZABZH.png differ diff --git a/public/images/devices/6xy-M350ST-W1Z.png b/public/images/devices/6xy-M350ST-W1Z.png index 24dd8ccd2b389..6e1e7d798ecfd 100644 Binary files a/public/images/devices/6xy-M350ST-W1Z.png and b/public/images/devices/6xy-M350ST-W1Z.png differ diff --git a/public/images/devices/701721.png b/public/images/devices/701721.png index eb7844ccecf69..755372cb11101 100644 Binary files a/public/images/devices/701721.png and b/public/images/devices/701721.png differ diff --git a/public/images/devices/70552.png b/public/images/devices/70552.png index bbb584a7e7d30..1bf841c43b69e 100644 Binary files a/public/images/devices/70552.png and b/public/images/devices/70552.png differ diff --git a/public/images/devices/7099860PH.png b/public/images/devices/7099860PH.png index 6de271613faf5..5ec72d60ec695 100644 Binary files a/public/images/devices/7099860PH.png and b/public/images/devices/7099860PH.png differ diff --git a/public/images/devices/7099930PH.png b/public/images/devices/7099930PH.png index 13b7d37a366ff..904d7f9e811bd 100644 Binary files a/public/images/devices/7099930PH.png and b/public/images/devices/7099930PH.png differ diff --git a/public/images/devices/71150.png b/public/images/devices/71150.png index 26445c85b631c..f590a883df4d4 100644 Binary files a/public/images/devices/71150.png and b/public/images/devices/71150.png differ diff --git a/public/images/devices/7121131PU-7120031PH-7120131PH-7120231PU.png b/public/images/devices/7121131PU-7120031PH-7120131PH-7120231PU.png index c880d10885ec3..8f9dbc4cf4eef 100644 Binary files a/public/images/devices/7121131PU-7120031PH-7120131PH-7120231PU.png and b/public/images/devices/7121131PU-7120031PH-7120131PH-7120231PU.png differ diff --git a/public/images/devices/7146060PH.png b/public/images/devices/7146060PH.png index 00da69b048f05..33e20f9f2f5e4 100644 Binary files a/public/images/devices/7146060PH.png and b/public/images/devices/7146060PH.png differ diff --git a/public/images/devices/71831.png b/public/images/devices/71831.png index 7cdc9f98c8e79..8a9caf96d6aa2 100644 Binary files a/public/images/devices/71831.png and b/public/images/devices/71831.png differ diff --git a/public/images/devices/7199960PH.png b/public/images/devices/7199960PH.png index 6cea1aa1a834c..fced658b72a6a 100644 Binary files a/public/images/devices/7199960PH.png and b/public/images/devices/7199960PH.png differ diff --git a/public/images/devices/72567.png b/public/images/devices/72567.png index cee74187700e6..18a08da9b34e6 100644 Binary files a/public/images/devices/72567.png and b/public/images/devices/72567.png differ diff --git a/public/images/devices/72569.png b/public/images/devices/72569.png index d329e5bada13b..9f68ebd9f40bf 100644 Binary files a/public/images/devices/72569.png and b/public/images/devices/72569.png differ diff --git a/public/images/devices/72922-A.png b/public/images/devices/72922-A.png index c32930401d65f..23035e82d2540 100644 Binary files a/public/images/devices/72922-A.png and b/public/images/devices/72922-A.png differ diff --git a/public/images/devices/7299355PH.png b/public/images/devices/7299355PH.png index 2c013e964ee16..69201892c40eb 100644 Binary files a/public/images/devices/7299355PH.png and b/public/images/devices/7299355PH.png differ diff --git a/public/images/devices/7299760PH.png b/public/images/devices/7299760PH.png index 98fbcce507d22..698514074ed33 100644 Binary files a/public/images/devices/7299760PH.png and b/public/images/devices/7299760PH.png differ diff --git a/public/images/devices/73693.png b/public/images/devices/73693.png index b9d47edf92cd6..fd0829179f986 100644 Binary files a/public/images/devices/73693.png and b/public/images/devices/73693.png differ diff --git a/public/images/devices/73699.png b/public/images/devices/73699.png index 6e803e252183e..f7fe3aa88552c 100644 Binary files a/public/images/devices/73699.png and b/public/images/devices/73699.png differ diff --git a/public/images/devices/73739.png b/public/images/devices/73739.png index 8342d0083aabb..dc1dd84a67ac6 100644 Binary files a/public/images/devices/73739.png and b/public/images/devices/73739.png differ diff --git a/public/images/devices/73740.png b/public/images/devices/73740.png index 2df85cebb8f9b..100dc2c42ffa3 100644 Binary files a/public/images/devices/73740.png and b/public/images/devices/73740.png differ diff --git a/public/images/devices/73741.png b/public/images/devices/73741.png index 76993c2342afb..d0316d9bff93f 100644 Binary files a/public/images/devices/73741.png and b/public/images/devices/73741.png differ diff --git a/public/images/devices/73741_LIGHTIFY.png b/public/images/devices/73741_LIGHTIFY.png index 76993c2342afb..d0316d9bff93f 100644 Binary files a/public/images/devices/73741_LIGHTIFY.png and b/public/images/devices/73741_LIGHTIFY.png differ diff --git a/public/images/devices/73742.png b/public/images/devices/73742.png index aa2f1ebed565c..fe7611f790974 100644 Binary files a/public/images/devices/73742.png and b/public/images/devices/73742.png differ diff --git a/public/images/devices/73743.png b/public/images/devices/73743.png index fe28c0902734b..c8a9c27cc33cc 100644 Binary files a/public/images/devices/73743.png and b/public/images/devices/73743.png differ diff --git a/public/images/devices/73773.png b/public/images/devices/73773.png index 481f2d7dcd915..901000a524bdc 100644 Binary files a/public/images/devices/73773.png and b/public/images/devices/73773.png differ diff --git a/public/images/devices/73807.png b/public/images/devices/73807.png index e432abea8011a..cbfca3b4b3423 100644 Binary files a/public/images/devices/73807.png and b/public/images/devices/73807.png differ diff --git a/public/images/devices/73889.png b/public/images/devices/73889.png index 25333a87e7078..fe48ff3b5ba69 100644 Binary files a/public/images/devices/73889.png and b/public/images/devices/73889.png differ diff --git a/public/images/devices/74282.png b/public/images/devices/74282.png index 913100c1b6485..02183b92da3cf 100644 Binary files a/public/images/devices/74282.png and b/public/images/devices/74282.png differ diff --git a/public/images/devices/74283.png b/public/images/devices/74283.png index 2dbc083d1424b..ff6eb09f4e2e9 100644 Binary files a/public/images/devices/74283.png and b/public/images/devices/74283.png differ diff --git a/public/images/devices/74388.png b/public/images/devices/74388.png index 69b8904db4c9c..58e222b05c49e 100644 Binary files a/public/images/devices/74388.png and b/public/images/devices/74388.png differ diff --git a/public/images/devices/74580.png b/public/images/devices/74580.png index c75acef1426d7..883dbd3b3da11 100644 Binary files a/public/images/devices/74580.png and b/public/images/devices/74580.png differ diff --git a/public/images/devices/74696.png b/public/images/devices/74696.png index 7098994f0efed..30f6b84dead1e 100644 Binary files a/public/images/devices/74696.png and b/public/images/devices/74696.png differ diff --git a/public/images/devices/752189.png b/public/images/devices/752189.png index 820993d063396..10ef1c9a11763 100644 Binary files a/public/images/devices/752189.png and b/public/images/devices/752189.png differ diff --git a/public/images/devices/7531609.png b/public/images/devices/7531609.png index 609aa4b64d570..6a07e670d5941 100644 Binary files a/public/images/devices/7531609.png and b/public/images/devices/7531609.png differ diff --git a/public/images/devices/75541.png b/public/images/devices/75541.png index f73e07acbc485..d2d7c6adbe2d2 100644 Binary files a/public/images/devices/75541.png and b/public/images/devices/75541.png differ diff --git a/public/images/devices/75564.png b/public/images/devices/75564.png index 2737e25788b6d..45195ea8da561 100644 Binary files a/public/images/devices/75564.png and b/public/images/devices/75564.png differ diff --git a/public/images/devices/755WSA.png b/public/images/devices/755WSA.png new file mode 100644 index 0000000000000..a28f5f46196af Binary files /dev/null and b/public/images/devices/755WSA.png differ diff --git a/public/images/devices/7602031N6.png b/public/images/devices/7602031N6.png index f9faa9d6779fb..2460a98b01050 100644 Binary files a/public/images/devices/7602031N6.png and b/public/images/devices/7602031N6.png differ diff --git a/public/images/devices/7602031P7.png b/public/images/devices/7602031P7.png index 4df47394486a9..1c7d8ba06fe03 100644 Binary files a/public/images/devices/7602031P7.png and b/public/images/devices/7602031P7.png differ diff --git a/public/images/devices/7A-SS-ZABC-H0.png b/public/images/devices/7A-SS-ZABC-H0.png index 0d22e6fa2ec4e..6dfec8b768f6b 100644 Binary files a/public/images/devices/7A-SS-ZABC-H0.png and b/public/images/devices/7A-SS-ZABC-H0.png differ diff --git a/public/images/devices/7ZA-A806ST-Q1R.png b/public/images/devices/7ZA-A806ST-Q1R.png index 57d39bb40e6cb..c24cac5f79a40 100644 Binary files a/public/images/devices/7ZA-A806ST-Q1R.png and b/public/images/devices/7ZA-A806ST-Q1R.png differ diff --git a/public/images/devices/800094.png b/public/images/devices/800094.png index 68b5dec1ba172..8ddc853612aa3 100644 Binary files a/public/images/devices/800094.png and b/public/images/devices/800094.png differ diff --git a/public/images/devices/801480.png b/public/images/devices/801480.png index 45a2f8860b657..bfd76f27a23cc 100644 Binary files a/public/images/devices/801480.png and b/public/images/devices/801480.png differ diff --git a/public/images/devices/809WZT.png b/public/images/devices/809WZT.png index e05b15e7c95a9..82cba69300492 100644 Binary files a/public/images/devices/809WZT.png and b/public/images/devices/809WZT.png differ diff --git a/public/images/devices/81809-81813.png b/public/images/devices/81809-81813.png index 38b5a28f60147..2f0ee8f945b5c 100644 Binary files a/public/images/devices/81809-81813.png and b/public/images/devices/81809-81813.png differ diff --git a/public/images/devices/81809FBA.png b/public/images/devices/81809FBA.png index 49887b28ccd96..b6ec550481b6a 100644 Binary files a/public/images/devices/81809FBA.png and b/public/images/devices/81809FBA.png differ diff --git a/public/images/devices/81810.png b/public/images/devices/81810.png index 8e50179e7994f..2f2385580f2e1 100644 Binary files a/public/images/devices/81810.png and b/public/images/devices/81810.png differ diff --git a/public/images/devices/81812-81814.png b/public/images/devices/81812-81814.png index b5f84170579be..281f021f7ddb8 100644 Binary files a/public/images/devices/81812-81814.png and b/public/images/devices/81812-81814.png differ diff --git a/public/images/devices/81825.png b/public/images/devices/81825.png index 1cc82ce32f4d2..93b2ddf0a1f6c 100644 Binary files a/public/images/devices/81825.png and b/public/images/devices/81825.png differ diff --git a/public/images/devices/81848.png b/public/images/devices/81848.png index c20f223bf4526..0159fafa857c7 100644 Binary files a/public/images/devices/81848.png and b/public/images/devices/81848.png differ diff --git a/public/images/devices/81849.png b/public/images/devices/81849.png index eb922c2dbcc70..bed8cdb0aab4c 100644 Binary files a/public/images/devices/81849.png and b/public/images/devices/81849.png differ diff --git a/public/images/devices/81855.png b/public/images/devices/81855.png index af49160d9a190..44053fe6ac254 100644 Binary files a/public/images/devices/81855.png and b/public/images/devices/81855.png differ diff --git a/public/images/devices/81863.png b/public/images/devices/81863.png index b1a7609e7798c..020344a6eef54 100644 Binary files a/public/images/devices/81863.png and b/public/images/devices/81863.png differ diff --git a/public/images/devices/81895.png b/public/images/devices/81895.png index 7e6a52e4c72e0..574889972138f 100644 Binary files a/public/images/devices/81895.png and b/public/images/devices/81895.png differ diff --git a/public/images/devices/8718696153055.png b/public/images/devices/8718696153055.png index f779c21c7b1ff..5fe941de824b9 100644 Binary files a/public/images/devices/8718696153055.png and b/public/images/devices/8718696153055.png differ diff --git a/public/images/devices/8718696153062.png b/public/images/devices/8718696153062.png index e8d2177ec26dd..1f8d58567f328 100644 Binary files a/public/images/devices/8718696153062.png and b/public/images/devices/8718696153062.png differ diff --git a/public/images/devices/8718696166079.png b/public/images/devices/8718696166079.png index 1132e120c5a04..efbe2ad3e30cb 100644 Binary files a/public/images/devices/8718696166079.png and b/public/images/devices/8718696166079.png differ diff --git a/public/images/devices/8718696167991.png b/public/images/devices/8718696167991.png index ead1d514832e8..2fd2ddf089fec 100644 Binary files a/public/images/devices/8718696167991.png and b/public/images/devices/8718696167991.png differ diff --git a/public/images/devices/8718696170557.png b/public/images/devices/8718696170557.png index 96a2a4e017d2b..d671ed7a7a9b8 100644 Binary files a/public/images/devices/8718696170557.png and b/public/images/devices/8718696170557.png differ diff --git a/public/images/devices/8718696170625.png b/public/images/devices/8718696170625.png index 9437ee567bff3..43f937651e993 100644 Binary files a/public/images/devices/8718696170625.png and b/public/images/devices/8718696170625.png differ diff --git a/public/images/devices/8718696170656.png b/public/images/devices/8718696170656.png index 5d13cfe0ac313..34d79ff2273a1 100644 Binary files a/public/images/devices/8718696170656.png and b/public/images/devices/8718696170656.png differ diff --git a/public/images/devices/8718696174548.png b/public/images/devices/8718696174548.png index 805e54777c4b3..f58ee3b235ac8 100644 Binary files a/public/images/devices/8718696174548.png and b/public/images/devices/8718696174548.png differ diff --git a/public/images/devices/8718696175798.png b/public/images/devices/8718696175798.png index 529bc9a300cab..b5468a4d675e3 100644 Binary files a/public/images/devices/8718696175798.png and b/public/images/devices/8718696175798.png differ diff --git a/public/images/devices/8718696449691.png b/public/images/devices/8718696449691.png index 0a0cbae1aa8a5..67a009be4da3a 100644 Binary files a/public/images/devices/8718696449691.png and b/public/images/devices/8718696449691.png differ diff --git a/public/images/devices/8718696485880.png b/public/images/devices/8718696485880.png index a29bf46142ded..1469acd411069 100644 Binary files a/public/images/devices/8718696485880.png and b/public/images/devices/8718696485880.png differ diff --git a/public/images/devices/8718696548738.png b/public/images/devices/8718696548738.png index 6fbca325efa90..e96aec721e36f 100644 Binary files a/public/images/devices/8718696548738.png and b/public/images/devices/8718696548738.png differ diff --git a/public/images/devices/8718696598283.png b/public/images/devices/8718696598283.png index 2b9a9a6c05c11..31a80fb94158f 100644 Binary files a/public/images/devices/8718696598283.png and b/public/images/devices/8718696598283.png differ diff --git a/public/images/devices/8718696695203.png b/public/images/devices/8718696695203.png index 789948f22758d..5ea5854b72ef3 100644 Binary files a/public/images/devices/8718696695203.png and b/public/images/devices/8718696695203.png differ diff --git a/public/images/devices/8718696743133.png b/public/images/devices/8718696743133.png index b1c4e719c41cd..d1c91a22afea3 100644 Binary files a/public/images/devices/8718696743133.png and b/public/images/devices/8718696743133.png differ diff --git a/public/images/devices/8718699673147.png b/public/images/devices/8718699673147.png index 52d21fa0b73df..6a7d86929f66e 100644 Binary files a/public/images/devices/8718699673147.png and b/public/images/devices/8718699673147.png differ diff --git a/public/images/devices/8718699688820.png b/public/images/devices/8718699688820.png index 389f88d6d5ca3..7aa65b6fb80bd 100644 Binary files a/public/images/devices/8718699688820.png and b/public/images/devices/8718699688820.png differ diff --git a/public/images/devices/8718699688882.png b/public/images/devices/8718699688882.png index e87e32493782b..2180ae876c95c 100644 Binary files a/public/images/devices/8718699688882.png and b/public/images/devices/8718699688882.png differ diff --git a/public/images/devices/8718699689308.png b/public/images/devices/8718699689308.png index de42430b64cb0..84f1b8671d7e3 100644 Binary files a/public/images/devices/8718699689308.png and b/public/images/devices/8718699689308.png differ diff --git a/public/images/devices/8718699693985.png b/public/images/devices/8718699693985.png index e103de9eca1ac..4781f0a5666b4 100644 Binary files a/public/images/devices/8718699693985.png and b/public/images/devices/8718699693985.png differ diff --git a/public/images/devices/8718699703424.png b/public/images/devices/8718699703424.png index 14eec12055cd1..764fe9d889938 100644 Binary files a/public/images/devices/8718699703424.png and b/public/images/devices/8718699703424.png differ diff --git a/public/images/devices/8718801528204.png b/public/images/devices/8718801528204.png index 21b22a813118e..6f5c6386118eb 100644 Binary files a/public/images/devices/8718801528204.png and b/public/images/devices/8718801528204.png differ diff --git a/public/images/devices/8718801528273.png b/public/images/devices/8718801528273.png index ce544a215e7c6..3bba757f1159e 100644 Binary files a/public/images/devices/8718801528273.png and b/public/images/devices/8718801528273.png differ diff --git a/public/images/devices/8719514279131.png b/public/images/devices/8719514279131.png index 986aae609d815..2bf792942e97a 100644 Binary files a/public/images/devices/8719514279131.png and b/public/images/devices/8719514279131.png differ diff --git a/public/images/devices/8719514279155.png b/public/images/devices/8719514279155.png index fb0381334c998..d890776e6b8f7 100644 Binary files a/public/images/devices/8719514279155.png and b/public/images/devices/8719514279155.png differ diff --git a/public/images/devices/8719514279193.png b/public/images/devices/8719514279193.png index 63ac1ff4ae2ab..5237f72e9ea6c 100644 Binary files a/public/images/devices/8719514279193.png and b/public/images/devices/8719514279193.png differ diff --git a/public/images/devices/8719514301443.png b/public/images/devices/8719514301443.png index 8d4f68ea6bdfe..75a58a97d444b 100644 Binary files a/public/images/devices/8719514301443.png and b/public/images/devices/8719514301443.png differ diff --git a/public/images/devices/8719514301481.png b/public/images/devices/8719514301481.png index 292b780b20e9d..973f7a5602630 100644 Binary files a/public/images/devices/8719514301481.png and b/public/images/devices/8719514301481.png differ diff --git a/public/images/devices/8719514301542.png b/public/images/devices/8719514301542.png index ccd5370f50c92..bcf5122a0fbef 100644 Binary files a/public/images/devices/8719514301542.png and b/public/images/devices/8719514301542.png differ diff --git a/public/images/devices/8719514302235.png b/public/images/devices/8719514302235.png index 6ccf2237f4f7f..7453e5742013b 100644 Binary files a/public/images/devices/8719514302235.png and b/public/images/devices/8719514302235.png differ diff --git a/public/images/devices/8719514328242.png b/public/images/devices/8719514328242.png index b61c795a43ad1..a6128ad925a0e 100644 Binary files a/public/images/devices/8719514328242.png and b/public/images/devices/8719514328242.png differ diff --git a/public/images/devices/8719514338142.png b/public/images/devices/8719514338142.png index ab66ed1e5f6a3..e6e3cb8114609 100644 Binary files a/public/images/devices/8719514338142.png and b/public/images/devices/8719514338142.png differ diff --git a/public/images/devices/871951433908.png b/public/images/devices/871951433908.png index e49a9215eb32e..be0c285149f6c 100644 Binary files a/public/images/devices/871951433908.png and b/public/images/devices/871951433908.png differ diff --git a/public/images/devices/8719514339125.png b/public/images/devices/8719514339125.png index 248e8b7c1f57b..1187ea30d4899 100644 Binary files a/public/images/devices/8719514339125.png and b/public/images/devices/8719514339125.png differ diff --git a/public/images/devices/8719514339163.png b/public/images/devices/8719514339163.png index 7bff1d1fe7fb2..5ac964e758f47 100644 Binary files a/public/images/devices/8719514339163.png and b/public/images/devices/8719514339163.png differ diff --git a/public/images/devices/8719514342361.png b/public/images/devices/8719514342361.png index 36a59a6410d63..731f02dc7e40d 100644 Binary files a/public/images/devices/8719514342361.png and b/public/images/devices/8719514342361.png differ diff --git a/public/images/devices/8719514344723.png b/public/images/devices/8719514344723.png index bec5196a21a18..ec3235e34c135 100644 Binary files a/public/images/devices/8719514344723.png and b/public/images/devices/8719514344723.png differ diff --git a/public/images/devices/8719514382350.png b/public/images/devices/8719514382350.png index bec5196a21a18..ec3235e34c135 100644 Binary files a/public/images/devices/8719514382350.png and b/public/images/devices/8719514382350.png differ diff --git a/public/images/devices/8719514392830.png b/public/images/devices/8719514392830.png index 074dda5e46379..bc90230c90551 100644 Binary files a/public/images/devices/8719514392830.png and b/public/images/devices/8719514392830.png differ diff --git a/public/images/devices/8719514440937-8719514440999.png b/public/images/devices/8719514440937-8719514440999.png index 8bc6f603093e1..70bf755b974d6 100644 Binary files a/public/images/devices/8719514440937-8719514440999.png and b/public/images/devices/8719514440937-8719514440999.png differ diff --git a/public/images/devices/8719514491106.png b/public/images/devices/8719514491106.png index b74532ab60b38..85f7396434643 100644 Binary files a/public/images/devices/8719514491106.png and b/public/images/devices/8719514491106.png differ diff --git a/public/images/devices/8840100H.png b/public/images/devices/8840100H.png index f9b1a34abfa2a..8b07dbb2de4b3 100644 Binary files a/public/images/devices/8840100H.png and b/public/images/devices/8840100H.png differ diff --git a/public/images/devices/8850100.png b/public/images/devices/8850100.png index 5d740b5a8d14f..b89ff91d9c8f0 100644 Binary files a/public/images/devices/8850100.png and b/public/images/devices/8850100.png differ diff --git a/public/images/devices/89665.png b/public/images/devices/89665.png index af9311b0ca8c0..91d0b20d13c3c 100644 Binary files a/public/images/devices/89665.png and b/public/images/devices/89665.png differ diff --git a/public/images/devices/899WZ.png b/public/images/devices/899WZ.png index ff6bd6f3911bd..015da81236852 100644 Binary files a/public/images/devices/899WZ.png and b/public/images/devices/899WZ.png differ diff --git a/public/images/devices/8A-SS-BA-H0.png b/public/images/devices/8A-SS-BA-H0.png index fb9317f086af3..5cb2c2b12c37f 100644 Binary files a/public/images/devices/8A-SS-BA-H0.png and b/public/images/devices/8A-SS-BA-H0.png differ diff --git a/public/images/devices/900008-WW.png b/public/images/devices/900008-WW.png index 9b3fe133c9178..9a8fd8182232d 100644 Binary files a/public/images/devices/900008-WW.png and b/public/images/devices/900008-WW.png differ diff --git a/public/images/devices/900024-12253.png b/public/images/devices/900024-12253.png index 2306c461bc17e..baee8670edbb8 100644 Binary files a/public/images/devices/900024-12253.png and b/public/images/devices/900024-12253.png differ diff --git a/public/images/devices/900091.png b/public/images/devices/900091.png index ee64faf8cd413..bb4e3f5f5fe23 100644 Binary files a/public/images/devices/900091.png and b/public/images/devices/900091.png differ diff --git a/public/images/devices/90504044.png b/public/images/devices/90504044.png index 825faee5f0c4d..227e37535ec0a 100644 Binary files a/public/images/devices/90504044.png and b/public/images/devices/90504044.png differ diff --git a/public/images/devices/91004.png b/public/images/devices/91004.png index 976a0ac051aaf..9dae210b0da44 100644 Binary files a/public/images/devices/91004.png and b/public/images/devices/91004.png differ diff --git a/public/images/devices/9133.png b/public/images/devices/9133.png index d2692dc9d337f..11a436319d184 100644 Binary files a/public/images/devices/9133.png and b/public/images/devices/9133.png differ diff --git a/public/images/devices/9134.png b/public/images/devices/9134.png index 53b1f49ff438c..759f82a3c0a43 100644 Binary files a/public/images/devices/9134.png and b/public/images/devices/9134.png differ diff --git a/public/images/devices/9135.png b/public/images/devices/9135.png index c9c3bef1de9c8..7685d28b7476c 100644 Binary files a/public/images/devices/9135.png and b/public/images/devices/9135.png differ diff --git a/public/images/devices/915005106701.png b/public/images/devices/915005106701.png index 18ae754371eac..6f211b5fa4eef 100644 Binary files a/public/images/devices/915005106701.png and b/public/images/devices/915005106701.png differ diff --git a/public/images/devices/915005587401.png b/public/images/devices/915005587401.png index 8a087b6acd610..3035d8d805991 100644 Binary files a/public/images/devices/915005587401.png and b/public/images/devices/915005587401.png differ diff --git a/public/images/devices/915005733701.png b/public/images/devices/915005733701.png index 5d31f407e2ffa..4cee5e6c63c6d 100644 Binary files a/public/images/devices/915005733701.png and b/public/images/devices/915005733701.png differ diff --git a/public/images/devices/915005986901.png b/public/images/devices/915005986901.png index 84faff20940fa..2116a4ab9f3d8 100644 Binary files a/public/images/devices/915005986901.png and b/public/images/devices/915005986901.png differ diff --git a/public/images/devices/915005987001.png b/public/images/devices/915005987001.png index 46305746a9038..a122e19051acc 100644 Binary files a/public/images/devices/915005987001.png and b/public/images/devices/915005987001.png differ diff --git a/public/images/devices/915005987101.png b/public/images/devices/915005987101.png index b5717c6ed5a7c..a26964e105cf6 100644 Binary files a/public/images/devices/915005987101.png and b/public/images/devices/915005987101.png differ diff --git a/public/images/devices/915005987601.png b/public/images/devices/915005987601.png index d57d07abdaa9b..9adc51b3ac64e 100644 Binary files a/public/images/devices/915005987601.png and b/public/images/devices/915005987601.png differ diff --git a/public/images/devices/915005987701.png b/public/images/devices/915005987701.png index eeaa8b038dcf2..10ca874ba734c 100644 Binary files a/public/images/devices/915005987701.png and b/public/images/devices/915005987701.png differ diff --git a/public/images/devices/915005987901.png b/public/images/devices/915005987901.png index 08628dcf38f2b..9c12369d1d773 100644 Binary files a/public/images/devices/915005987901.png and b/public/images/devices/915005987901.png differ diff --git a/public/images/devices/915005988101.png b/public/images/devices/915005988101.png index 64fe6b446c0bf..db659d80f857b 100644 Binary files a/public/images/devices/915005988101.png and b/public/images/devices/915005988101.png differ diff --git a/public/images/devices/915005996401.png b/public/images/devices/915005996401.png index 5def4a66a6f8f..b9f0664d9c4db 100644 Binary files a/public/images/devices/915005996401.png and b/public/images/devices/915005996401.png differ diff --git a/public/images/devices/915005996601.png b/public/images/devices/915005996601.png index 4cac7267978b8..b47647bd76be7 100644 Binary files a/public/images/devices/915005996601.png and b/public/images/devices/915005996601.png differ diff --git a/public/images/devices/915005996701.png b/public/images/devices/915005996701.png index 398424b258e77..e9d76848ebfd7 100644 Binary files a/public/images/devices/915005996701.png and b/public/images/devices/915005996701.png differ diff --git a/public/images/devices/915005996901.png b/public/images/devices/915005996901.png index 79bed10711c49..d9f473917a9c0 100644 Binary files a/public/images/devices/915005996901.png and b/public/images/devices/915005996901.png differ diff --git a/public/images/devices/915005997001.png b/public/images/devices/915005997001.png index 3c4b881670a24..7c9ad4f2db2a2 100644 Binary files a/public/images/devices/915005997001.png and b/public/images/devices/915005997001.png differ diff --git a/public/images/devices/915005997301.png b/public/images/devices/915005997301.png index aed3ab9af746a..03a8bb3b05aa9 100644 Binary files a/public/images/devices/915005997301.png and b/public/images/devices/915005997301.png differ diff --git a/public/images/devices/915005997501.png b/public/images/devices/915005997501.png index 7e7feae3378ac..db7f0391aa4fa 100644 Binary files a/public/images/devices/915005997501.png and b/public/images/devices/915005997501.png differ diff --git a/public/images/devices/915005997601.png b/public/images/devices/915005997601.png index b1a5db36dc1cb..b250f59b593a2 100644 Binary files a/public/images/devices/915005997601.png and b/public/images/devices/915005997601.png differ diff --git a/public/images/devices/915005997701.png b/public/images/devices/915005997701.png index e6c14ad4e7908..69869c9197d3c 100644 Binary files a/public/images/devices/915005997701.png and b/public/images/devices/915005997701.png differ diff --git a/public/images/devices/915005997801.png b/public/images/devices/915005997801.png index f0a831127d504..08a567da2f251 100644 Binary files a/public/images/devices/915005997801.png and b/public/images/devices/915005997801.png differ diff --git a/public/images/devices/915005997901.png b/public/images/devices/915005997901.png index 6e696c1a40549..ab8c9f9de999b 100644 Binary files a/public/images/devices/915005997901.png and b/public/images/devices/915005997901.png differ diff --git a/public/images/devices/915005998001.png b/public/images/devices/915005998001.png index 321a13a10aaca..5fca7d434e129 100644 Binary files a/public/images/devices/915005998001.png and b/public/images/devices/915005998001.png differ diff --git a/public/images/devices/915005998101.png b/public/images/devices/915005998101.png index 65e7396e28523..c3b114bec5e61 100644 Binary files a/public/images/devices/915005998101.png and b/public/images/devices/915005998101.png differ diff --git a/public/images/devices/915005998201.png b/public/images/devices/915005998201.png index 984d2ec389565..39f007a4f394e 100644 Binary files a/public/images/devices/915005998201.png and b/public/images/devices/915005998201.png differ diff --git a/public/images/devices/929.60.png b/public/images/devices/929.60.png index 3273aed0e2c3c..66dfc76b52457 100644 Binary files a/public/images/devices/929.60.png and b/public/images/devices/929.60.png differ diff --git a/public/images/devices/929.63.png b/public/images/devices/929.63.png index 76b22164a18ac..8ea87fe10f367 100644 Binary files a/public/images/devices/929.63.png and b/public/images/devices/929.63.png differ diff --git a/public/images/devices/929.66.png b/public/images/devices/929.66.png index 475a4e1df1692..966a646dba0c5 100644 Binary files a/public/images/devices/929.66.png and b/public/images/devices/929.66.png differ diff --git a/public/images/devices/9290002579A.png b/public/images/devices/9290002579A.png index 843718d2832b9..44a56b2f078e0 100644 Binary files a/public/images/devices/9290002579A.png and b/public/images/devices/9290002579A.png differ diff --git a/public/images/devices/9290002617.png b/public/images/devices/9290002617.png index a29bf46142ded..1469acd411069 100644 Binary files a/public/images/devices/9290002617.png and b/public/images/devices/9290002617.png differ diff --git a/public/images/devices/9290011370.png b/public/images/devices/9290011370.png index 7359730bb3952..ff81ba03e7ad3 100644 Binary files a/public/images/devices/9290011370.png and b/public/images/devices/9290011370.png differ diff --git a/public/images/devices/9290011370B.png b/public/images/devices/9290011370B.png index 6c5b990c5214d..2d57932ffd298 100644 Binary files a/public/images/devices/9290011370B.png and b/public/images/devices/9290011370B.png differ diff --git a/public/images/devices/9290011998B.png b/public/images/devices/9290011998B.png index ff0b978d84a70..25fc4c6f2d346 100644 Binary files a/public/images/devices/9290011998B.png and b/public/images/devices/9290011998B.png differ diff --git a/public/images/devices/9290012573A.png b/public/images/devices/9290012573A.png index ba91f7fd3850f..0f19cc62c5d3a 100644 Binary files a/public/images/devices/9290012573A.png and b/public/images/devices/9290012573A.png differ diff --git a/public/images/devices/9290018187B.png b/public/images/devices/9290018187B.png index 76099a62bae71..f8badd32c7ed3 100644 Binary files a/public/images/devices/9290018187B.png and b/public/images/devices/9290018187B.png differ diff --git a/public/images/devices/9290018189.png b/public/images/devices/9290018189.png index ec3cd30d11fbf..543fd28507dfb 100644 Binary files a/public/images/devices/9290018189.png and b/public/images/devices/9290018189.png differ diff --git a/public/images/devices/9290018194.png b/public/images/devices/9290018194.png index 80a5117b32035..b7a90a8d2ad3f 100644 Binary files a/public/images/devices/9290018194.png and b/public/images/devices/9290018194.png differ diff --git a/public/images/devices/9290018195.png b/public/images/devices/9290018195.png index dd349f0f8eccd..5f85b410843b8 100644 Binary files a/public/images/devices/9290018195.png and b/public/images/devices/9290018195.png differ diff --git a/public/images/devices/9290018215.png b/public/images/devices/9290018215.png index c999f83c60f56..938d784c2bfe7 100644 Binary files a/public/images/devices/9290018215.png and b/public/images/devices/9290018215.png differ diff --git a/public/images/devices/9290018216.png b/public/images/devices/9290018216.png index a305cd65ea86a..1b9436300b8e0 100644 Binary files a/public/images/devices/9290018216.png and b/public/images/devices/9290018216.png differ diff --git a/public/images/devices/929001821618.png b/public/images/devices/929001821618.png index eef32f2911307..2667f81f05183 100644 Binary files a/public/images/devices/929001821618.png and b/public/images/devices/929001821618.png differ diff --git a/public/images/devices/9290018217.png b/public/images/devices/9290018217.png index c8364a473b5c4..615dcf26bd8da 100644 Binary files a/public/images/devices/9290018217.png and b/public/images/devices/9290018217.png differ diff --git a/public/images/devices/9290018609.png b/public/images/devices/9290018609.png index 8bb066da9c684..8109938b6fd1a 100644 Binary files a/public/images/devices/9290018609.png and b/public/images/devices/9290018609.png differ diff --git a/public/images/devices/929001953101.png b/public/images/devices/929001953101.png index ab04bafd88308..60b6fcc03ba72 100644 Binary files a/public/images/devices/929001953101.png and b/public/images/devices/929001953101.png differ diff --git a/public/images/devices/9290019532.png b/public/images/devices/9290019532.png index ab04bafd88308..60b6fcc03ba72 100644 Binary files a/public/images/devices/9290019532.png and b/public/images/devices/9290019532.png differ diff --git a/public/images/devices/9290019533.png b/public/images/devices/9290019533.png index 4ec7ca4481604..5bd2e49fa002e 100644 Binary files a/public/images/devices/9290019533.png and b/public/images/devices/9290019533.png differ diff --git a/public/images/devices/929001953301.png b/public/images/devices/929001953301.png index 1b960c232b104..cddb06b6e4f81 100644 Binary files a/public/images/devices/929001953301.png and b/public/images/devices/929001953301.png differ diff --git a/public/images/devices/9290019534.png b/public/images/devices/9290019534.png index c2bfe0cc0abcf..cce3cffabbeee 100644 Binary files a/public/images/devices/9290019534.png and b/public/images/devices/9290019534.png differ diff --git a/public/images/devices/9290019536.png b/public/images/devices/9290019536.png index 79817e51d68bb..2e3dd69cc21b2 100644 Binary files a/public/images/devices/9290019536.png and b/public/images/devices/9290019536.png differ diff --git a/public/images/devices/929002039801.png b/public/images/devices/929002039801.png index 91a0a7549a5a8..478cce789aa30 100644 Binary files a/public/images/devices/929002039801.png and b/public/images/devices/929002039801.png differ diff --git a/public/images/devices/9290020399.png b/public/images/devices/9290020399.png index 533e2047cdfe6..98843fe186ef1 100644 Binary files a/public/images/devices/9290020399.png and b/public/images/devices/9290020399.png differ diff --git a/public/images/devices/9290020400.png b/public/images/devices/9290020400.png index c6ff4efe2970a..87f184f87fd0c 100644 Binary files a/public/images/devices/9290020400.png and b/public/images/devices/9290020400.png differ diff --git a/public/images/devices/9290022166.png b/public/images/devices/9290022166.png index 7cf99f611c4c9..ecd5f84ed7657 100644 Binary files a/public/images/devices/9290022166.png and b/public/images/devices/9290022166.png differ diff --git a/public/images/devices/9290022167.png b/public/images/devices/9290022167.png index db2e24dcf25ea..3209069d0dab6 100644 Binary files a/public/images/devices/9290022167.png and b/public/images/devices/9290022167.png differ diff --git a/public/images/devices/9290022169.png b/public/images/devices/9290022169.png index cdc124844b346..0eedf3a14024b 100644 Binary files a/public/images/devices/9290022169.png and b/public/images/devices/9290022169.png differ diff --git a/public/images/devices/9290022266A.png b/public/images/devices/9290022266A.png index 98a01a7483f04..cc8590627ec3d 100644 Binary files a/public/images/devices/9290022266A.png and b/public/images/devices/9290022266A.png differ diff --git a/public/images/devices/9290022267.png b/public/images/devices/9290022267.png index f6f6b5d7f5faf..e424139ddcfef 100644 Binary files a/public/images/devices/9290022267.png and b/public/images/devices/9290022267.png differ diff --git a/public/images/devices/9290022267A.png b/public/images/devices/9290022267A.png index f6f6b5d7f5faf..e424139ddcfef 100644 Binary files a/public/images/devices/9290022267A.png and b/public/images/devices/9290022267A.png differ diff --git a/public/images/devices/9290022268.png b/public/images/devices/9290022268.png index e978894e720e2..4af0e09a3400e 100644 Binary files a/public/images/devices/9290022268.png and b/public/images/devices/9290022268.png differ diff --git a/public/images/devices/929002240401.png b/public/images/devices/929002240401.png index f68613d2065fd..824d341274708 100644 Binary files a/public/images/devices/929002240401.png and b/public/images/devices/929002240401.png differ diff --git a/public/images/devices/9290022408.png b/public/images/devices/9290022408.png index b084e58d74887..9c31c74ae0096 100644 Binary files a/public/images/devices/9290022408.png and b/public/images/devices/9290022408.png differ diff --git a/public/images/devices/9290022411.png b/public/images/devices/9290022411.png index c440c277030cc..c271cd66766ad 100644 Binary files a/public/images/devices/9290022411.png and b/public/images/devices/9290022411.png differ diff --git a/public/images/devices/929002241201.png b/public/images/devices/929002241201.png index 9932262a4582f..9c51f63f3756c 100644 Binary files a/public/images/devices/929002241201.png and b/public/images/devices/929002241201.png differ diff --git a/public/images/devices/9290022415.png b/public/images/devices/9290022415.png index cfe84ed23b3f0..ebc0ba7eb86af 100644 Binary files a/public/images/devices/9290022415.png and b/public/images/devices/9290022415.png differ diff --git a/public/images/devices/929002277501.png b/public/images/devices/929002277501.png index 119ce3e6dafce..10273a5008e35 100644 Binary files a/public/images/devices/929002277501.png and b/public/images/devices/929002277501.png differ diff --git a/public/images/devices/9290022890.png b/public/images/devices/9290022890.png index 16719d8b870b8..3dede50c59cb6 100644 Binary files a/public/images/devices/9290022890.png and b/public/images/devices/9290022890.png differ diff --git a/public/images/devices/9290022891.png b/public/images/devices/9290022891.png index 9e40b665cddde..afd2750eba024 100644 Binary files a/public/images/devices/9290022891.png and b/public/images/devices/9290022891.png differ diff --git a/public/images/devices/929002294101.png b/public/images/devices/929002294101.png index 8a54aef12ea6e..cd2ddd0a27018 100644 Binary files a/public/images/devices/929002294101.png and b/public/images/devices/929002294101.png differ diff --git a/public/images/devices/929002294102.png b/public/images/devices/929002294102.png index 7064f3c05be3f..c5ef42bbccecc 100644 Binary files a/public/images/devices/929002294102.png and b/public/images/devices/929002294102.png differ diff --git a/public/images/devices/929002294203.png b/public/images/devices/929002294203.png index a5948e2712269..dee8dc529b33c 100644 Binary files a/public/images/devices/929002294203.png and b/public/images/devices/929002294203.png differ diff --git a/public/images/devices/9290022943.png b/public/images/devices/9290022943.png index 0b3d34d034a68..096cf6e35b813 100644 Binary files a/public/images/devices/9290022943.png and b/public/images/devices/9290022943.png differ diff --git a/public/images/devices/9290022944.png b/public/images/devices/9290022944.png index bbb90db30787a..cab660e98f219 100644 Binary files a/public/images/devices/9290022944.png and b/public/images/devices/9290022944.png differ diff --git a/public/images/devices/9290023349.png b/public/images/devices/9290023349.png index 80bffd0b08af4..93c1b9c0551b5 100644 Binary files a/public/images/devices/9290023349.png and b/public/images/devices/9290023349.png differ diff --git a/public/images/devices/929002335001.png b/public/images/devices/929002335001.png index 60c73f3102a86..ee93e00d53a65 100644 Binary files a/public/images/devices/929002335001.png and b/public/images/devices/929002335001.png differ diff --git a/public/images/devices/9290023351.png b/public/images/devices/9290023351.png index 659c88df3f663..b9f3e8ef6d7ea 100644 Binary files a/public/images/devices/9290023351.png and b/public/images/devices/9290023351.png differ diff --git a/public/images/devices/929002335105.png b/public/images/devices/929002335105.png index 3050735648fb8..cc5642ef5b0f0 100644 Binary files a/public/images/devices/929002335105.png and b/public/images/devices/929002335105.png differ diff --git a/public/images/devices/929002375901.png b/public/images/devices/929002375901.png index 367686f015143..0d9b7e7c27b13 100644 Binary files a/public/images/devices/929002375901.png and b/public/images/devices/929002375901.png differ diff --git a/public/images/devices/929002376001.png b/public/images/devices/929002376001.png index 0e2cc7d65ce1c..68c47e74fd342 100644 Binary files a/public/images/devices/929002376001.png and b/public/images/devices/929002376001.png differ diff --git a/public/images/devices/929002376101.png b/public/images/devices/929002376101.png index d8b528cb3152e..3f0574b1e96bb 100644 Binary files a/public/images/devices/929002376101.png and b/public/images/devices/929002376101.png differ diff --git a/public/images/devices/929002376201.png b/public/images/devices/929002376201.png index 6af7e3eea0dc7..c99a71147fded 100644 Binary files a/public/images/devices/929002376201.png and b/public/images/devices/929002376201.png differ diff --git a/public/images/devices/929002376301.png b/public/images/devices/929002376301.png index 4ae3df14b478a..b39afdd989850 100644 Binary files a/public/images/devices/929002376301.png and b/public/images/devices/929002376301.png differ diff --git a/public/images/devices/929002376401.png b/public/images/devices/929002376401.png index 420799c5935a0..ac89611e94e39 100644 Binary files a/public/images/devices/929002376401.png and b/public/images/devices/929002376401.png differ diff --git a/public/images/devices/929002376501.png b/public/images/devices/929002376501.png index df293411dc05d..67f4073673e95 100644 Binary files a/public/images/devices/929002376501.png and b/public/images/devices/929002376501.png differ diff --git a/public/images/devices/929002376701.png b/public/images/devices/929002376701.png index 482f0f44dc5c6..d3102f66126e0 100644 Binary files a/public/images/devices/929002376701.png and b/public/images/devices/929002376701.png differ diff --git a/public/images/devices/929002376703.png b/public/images/devices/929002376703.png index 9ebb802afb1cf..7855aa5d6bc85 100644 Binary files a/public/images/devices/929002376703.png and b/public/images/devices/929002376703.png differ diff --git a/public/images/devices/929002376801.png b/public/images/devices/929002376801.png index 0ee8e7b92aeb5..077f84de51c7d 100644 Binary files a/public/images/devices/929002376801.png and b/public/images/devices/929002376801.png differ diff --git a/public/images/devices/929002398602.png b/public/images/devices/929002398602.png index 40655e8e9be3a..68b802e24c45f 100644 Binary files a/public/images/devices/929002398602.png and b/public/images/devices/929002398602.png differ diff --git a/public/images/devices/929002401201.png b/public/images/devices/929002401201.png index df8dd74ac9945..d083729f2ea9d 100644 Binary files a/public/images/devices/929002401201.png and b/public/images/devices/929002401201.png differ diff --git a/public/images/devices/929002422702.png b/public/images/devices/929002422702.png index 8c88a2c7ea942..9e349096d5695 100644 Binary files a/public/images/devices/929002422702.png and b/public/images/devices/929002422702.png differ diff --git a/public/images/devices/929002422801.png b/public/images/devices/929002422801.png index 9c0ab13572841..9527914a81d38 100644 Binary files a/public/images/devices/929002422801.png and b/public/images/devices/929002422801.png differ diff --git a/public/images/devices/929002422901.png b/public/images/devices/929002422901.png index 1a17df7750413..b9dde89423c4c 100644 Binary files a/public/images/devices/929002422901.png and b/public/images/devices/929002422901.png differ diff --git a/public/images/devices/9290024406.png b/public/images/devices/9290024406.png index 95afbc64df2eb..a0e0f9d2b164f 100644 Binary files a/public/images/devices/9290024406.png and b/public/images/devices/9290024406.png differ diff --git a/public/images/devices/9290024426.png b/public/images/devices/9290024426.png index b7fa9b57001dd..5debd34f466e5 100644 Binary files a/public/images/devices/9290024426.png and b/public/images/devices/9290024426.png differ diff --git a/public/images/devices/92900244777.png b/public/images/devices/92900244777.png index cc77bda037fa9..bd282d378291b 100644 Binary files a/public/images/devices/92900244777.png and b/public/images/devices/92900244777.png differ diff --git a/public/images/devices/929002459201.png b/public/images/devices/929002459201.png index 5eec29c07f598..f3df4c12efeb3 100644 Binary files a/public/images/devices/929002459201.png and b/public/images/devices/929002459201.png differ diff --git a/public/images/devices/9290024683.png b/public/images/devices/9290024683.png index 6fbca325efa90..e96aec721e36f 100644 Binary files a/public/images/devices/9290024683.png and b/public/images/devices/9290024683.png differ diff --git a/public/images/devices/9290024684.png b/public/images/devices/9290024684.png index df8144743a600..fe085d9176f99 100644 Binary files a/public/images/devices/9290024684.png and b/public/images/devices/9290024684.png differ diff --git a/public/images/devices/9290024687.png b/public/images/devices/9290024687.png index 7ab4dfafa4ee0..7be54784af7f4 100644 Binary files a/public/images/devices/9290024687.png and b/public/images/devices/9290024687.png differ diff --git a/public/images/devices/9290024688.png b/public/images/devices/9290024688.png index c145fd19e880c..08042cdf7f341 100644 Binary files a/public/images/devices/9290024688.png and b/public/images/devices/9290024688.png differ diff --git a/public/images/devices/9290024689.png b/public/images/devices/9290024689.png index 93cd7c83888a6..ac502ec92445b 100644 Binary files a/public/images/devices/9290024689.png and b/public/images/devices/9290024689.png differ diff --git a/public/images/devices/9290024691.png b/public/images/devices/9290024691.png index 6cd412fe42339..c914cf57c0d31 100644 Binary files a/public/images/devices/9290024691.png and b/public/images/devices/9290024691.png differ diff --git a/public/images/devices/9290024691A.png b/public/images/devices/9290024691A.png index 6cd412fe42339..c914cf57c0d31 100644 Binary files a/public/images/devices/9290024691A.png and b/public/images/devices/9290024691A.png differ diff --git a/public/images/devices/929002469202.png b/public/images/devices/929002469202.png index 6f342448c3b8a..2dfddaa2b9bb0 100644 Binary files a/public/images/devices/929002469202.png and b/public/images/devices/929002469202.png differ diff --git a/public/images/devices/9290024693.png b/public/images/devices/9290024693.png index 64e343a35b08f..a9952c4fb7ec7 100644 Binary files a/public/images/devices/9290024693.png and b/public/images/devices/9290024693.png differ diff --git a/public/images/devices/929002471601.png b/public/images/devices/929002471601.png index 759653f3702aa..a57d8aadea49d 100644 Binary files a/public/images/devices/929002471601.png and b/public/images/devices/929002471601.png differ diff --git a/public/images/devices/9290024717.png b/public/images/devices/9290024717.png index 93bca3343abfe..de206850f49b4 100644 Binary files a/public/images/devices/9290024717.png and b/public/images/devices/9290024717.png differ diff --git a/public/images/devices/929002471901.png b/public/images/devices/929002471901.png index 56fb6c1bde13e..1283b4a85faa1 100644 Binary files a/public/images/devices/929002471901.png and b/public/images/devices/929002471901.png differ diff --git a/public/images/devices/929002477901.png b/public/images/devices/929002477901.png index dba1c8908ed11..b694ea9c969bf 100644 Binary files a/public/images/devices/929002477901.png and b/public/images/devices/929002477901.png differ diff --git a/public/images/devices/9290024782.png b/public/images/devices/9290024782.png index cfe84ed23b3f0..ebc0ba7eb86af 100644 Binary files a/public/images/devices/9290024782.png and b/public/images/devices/9290024782.png differ diff --git a/public/images/devices/9290024783.png b/public/images/devices/9290024783.png index f0217f360b452..ca4a0d8787eb3 100644 Binary files a/public/images/devices/9290024783.png and b/public/images/devices/9290024783.png differ diff --git a/public/images/devices/929002478401.png b/public/images/devices/929002478401.png index c73c04c6ce94a..7174d2f99c193 100644 Binary files a/public/images/devices/929002478401.png and b/public/images/devices/929002478401.png differ diff --git a/public/images/devices/9290024785.png b/public/images/devices/9290024785.png index cfe84ed23b3f0..ebc0ba7eb86af 100644 Binary files a/public/images/devices/9290024785.png and b/public/images/devices/9290024785.png differ diff --git a/public/images/devices/9290024796.png b/public/images/devices/9290024796.png index 3d21223f571a5..307948ee56574 100644 Binary files a/public/images/devices/9290024796.png and b/public/images/devices/9290024796.png differ diff --git a/public/images/devices/9290024896.png b/public/images/devices/9290024896.png index ba91f7fd3850f..0f19cc62c5d3a 100644 Binary files a/public/images/devices/9290024896.png and b/public/images/devices/9290024896.png differ diff --git a/public/images/devices/929002966401.png b/public/images/devices/929002966401.png index d1b103aeed40e..530f8ed2448d4 100644 Binary files a/public/images/devices/929002966401.png and b/public/images/devices/929002966401.png differ diff --git a/public/images/devices/929002966501.png b/public/images/devices/929002966501.png index 29ab4d587c058..4f6940b55e0d1 100644 Binary files a/public/images/devices/929002966501.png and b/public/images/devices/929002966501.png differ diff --git a/public/images/devices/9290029808.png b/public/images/devices/9290029808.png index 8f6615a3d4edb..ce5ef9313299c 100644 Binary files a/public/images/devices/9290029808.png and b/public/images/devices/9290029808.png differ diff --git a/public/images/devices/929002980901.png b/public/images/devices/929002980901.png index 49222c9daaa56..65651c1c6ace6 100644 Binary files a/public/images/devices/929002980901.png and b/public/images/devices/929002980901.png differ diff --git a/public/images/devices/929002994901.png b/public/images/devices/929002994901.png index 483c150f02fa8..f426aaf78b7ac 100644 Binary files a/public/images/devices/929002994901.png and b/public/images/devices/929002994901.png differ diff --git a/public/images/devices/929003017102.png b/public/images/devices/929003017102.png index e780bb60af518..827d1e95c3199 100644 Binary files a/public/images/devices/929003017102.png and b/public/images/devices/929003017102.png differ diff --git a/public/images/devices/9290030211.png b/public/images/devices/9290030211.png index 6a99efc460380..f254c528f259c 100644 Binary files a/public/images/devices/9290030211.png and b/public/images/devices/9290030211.png differ diff --git a/public/images/devices/929003045201.png b/public/images/devices/929003045201.png index 89e19b3a2fff9..d11431e96fef7 100644 Binary files a/public/images/devices/929003045201.png and b/public/images/devices/929003045201.png differ diff --git a/public/images/devices/929003045301.png b/public/images/devices/929003045301.png index 00c2194323294..88afee3f22b71 100644 Binary files a/public/images/devices/929003045301.png and b/public/images/devices/929003045301.png differ diff --git a/public/images/devices/929003045401.png b/public/images/devices/929003045401.png index 5d4b82d1df84f..16ccac1274b91 100644 Binary files a/public/images/devices/929003045401.png and b/public/images/devices/929003045401.png differ diff --git a/public/images/devices/929003045501.png b/public/images/devices/929003045501.png index 65117a569067a..421a04a0b5d1c 100644 Binary files a/public/images/devices/929003045501.png and b/public/images/devices/929003045501.png differ diff --git a/public/images/devices/929003045901.png b/public/images/devices/929003045901.png index 132bada143922..b883a9f168edc 100644 Binary files a/public/images/devices/929003045901.png and b/public/images/devices/929003045901.png differ diff --git a/public/images/devices/929003046201.png b/public/images/devices/929003046201.png index f468c99d1d685..4d791454d998b 100644 Binary files a/public/images/devices/929003046201.png and b/public/images/devices/929003046201.png differ diff --git a/public/images/devices/929003047001.png b/public/images/devices/929003047001.png index b00f6fc825bee..83e67e64051e1 100644 Binary files a/public/images/devices/929003047001.png and b/public/images/devices/929003047001.png differ diff --git a/public/images/devices/929003047101.png b/public/images/devices/929003047101.png index 0aa95ed54011c..f321c06773113 100644 Binary files a/public/images/devices/929003047101.png and b/public/images/devices/929003047101.png differ diff --git a/public/images/devices/929003047401.png b/public/images/devices/929003047401.png index 70acd8d08afb5..5e30c5f3175f0 100644 Binary files a/public/images/devices/929003047401.png and b/public/images/devices/929003047401.png differ diff --git a/public/images/devices/929003047501.png b/public/images/devices/929003047501.png index f504fa06d3fe5..1112bbba26dfd 100644 Binary files a/public/images/devices/929003047501.png and b/public/images/devices/929003047501.png differ diff --git a/public/images/devices/929003047601.png b/public/images/devices/929003047601.png index 95afbc64df2eb..a0e0f9d2b164f 100644 Binary files a/public/images/devices/929003047601.png and b/public/images/devices/929003047601.png differ diff --git a/public/images/devices/929003050601.png b/public/images/devices/929003050601.png index 5fdd288ececbe..a31893b8b375f 100644 Binary files a/public/images/devices/929003050601.png and b/public/images/devices/929003050601.png differ diff --git a/public/images/devices/9290030509.png b/public/images/devices/9290030509.png index 5fdd288ececbe..a31893b8b375f 100644 Binary files a/public/images/devices/9290030509.png and b/public/images/devices/9290030509.png differ diff --git a/public/images/devices/9290030517.png b/public/images/devices/9290030517.png index cc77bda037fa9..bd282d378291b 100644 Binary files a/public/images/devices/9290030517.png and b/public/images/devices/9290030517.png differ diff --git a/public/images/devices/929003052601.png b/public/images/devices/929003052601.png index aca9f5fbca389..ac917fb4f13e8 100644 Binary files a/public/images/devices/929003052601.png and b/public/images/devices/929003052601.png differ diff --git a/public/images/devices/929003052901.png b/public/images/devices/929003052901.png index a237ca6ba76cc..08483f925a1ae 100644 Binary files a/public/images/devices/929003052901.png and b/public/images/devices/929003052901.png differ diff --git a/public/images/devices/929003053001.png b/public/images/devices/929003053001.png index c42dd53f7154b..fdb3f1f508b38 100644 Binary files a/public/images/devices/929003053001.png and b/public/images/devices/929003053001.png differ diff --git a/public/images/devices/929003054001.png b/public/images/devices/929003054001.png index 604b8b2d16868..95bce23fa16c3 100644 Binary files a/public/images/devices/929003054001.png and b/public/images/devices/929003054001.png differ diff --git a/public/images/devices/929003054101.png b/public/images/devices/929003054101.png index 7b9328831542b..3578bd519ebc8 100644 Binary files a/public/images/devices/929003054101.png and b/public/images/devices/929003054101.png differ diff --git a/public/images/devices/929003054301.png b/public/images/devices/929003054301.png index 10b50b2efc163..e481c88988726 100644 Binary files a/public/images/devices/929003054301.png and b/public/images/devices/929003054301.png differ diff --git a/public/images/devices/929003054501.png b/public/images/devices/929003054501.png index 5e191cdbb05eb..3429424489b43 100644 Binary files a/public/images/devices/929003054501.png and b/public/images/devices/929003054501.png differ diff --git a/public/images/devices/929003054601.png b/public/images/devices/929003054601.png index 4b2b87e1926fc..34e592fb3c035 100644 Binary files a/public/images/devices/929003054601.png and b/public/images/devices/929003054601.png differ diff --git a/public/images/devices/929003054701.png b/public/images/devices/929003054701.png index 2a38cc45172ca..4095890f9f8fc 100644 Binary files a/public/images/devices/929003054701.png and b/public/images/devices/929003054701.png differ diff --git a/public/images/devices/929003054801.png b/public/images/devices/929003054801.png index c8d31454b5bf5..e9f519a291cbe 100644 Binary files a/public/images/devices/929003054801.png and b/public/images/devices/929003054801.png differ diff --git a/public/images/devices/929003055201.png b/public/images/devices/929003055201.png index 9665f245833e9..f9d1bf82b5c54 100644 Binary files a/public/images/devices/929003055201.png and b/public/images/devices/929003055201.png differ diff --git a/public/images/devices/929003055501.png b/public/images/devices/929003055501.png index 6435383b78223..3f4379559695a 100644 Binary files a/public/images/devices/929003055501.png and b/public/images/devices/929003055501.png differ diff --git a/public/images/devices/929003055801.png b/public/images/devices/929003055801.png index 8390cd8b3052e..4227b0b3a9fab 100644 Binary files a/public/images/devices/929003055801.png and b/public/images/devices/929003055801.png differ diff --git a/public/images/devices/929003055901.png b/public/images/devices/929003055901.png index 30443def376b7..df5007248d0b9 100644 Binary files a/public/images/devices/929003055901.png and b/public/images/devices/929003055901.png differ diff --git a/public/images/devices/929003056001.png b/public/images/devices/929003056001.png index b00894709cd7b..1cb3e7756edff 100644 Binary files a/public/images/devices/929003056001.png and b/public/images/devices/929003056001.png differ diff --git a/public/images/devices/929003056901.png b/public/images/devices/929003056901.png index 80d48d2fb034b..2e95ccd49822e 100644 Binary files a/public/images/devices/929003056901.png and b/public/images/devices/929003056901.png differ diff --git a/public/images/devices/9290030674.png b/public/images/devices/9290030674.png index b494ed9a19116..1f9f42eebe1fb 100644 Binary files a/public/images/devices/9290030674.png and b/public/images/devices/9290030674.png differ diff --git a/public/images/devices/9290030675.png b/public/images/devices/9290030675.png index c6f6e7d0642ca..cee34ea7cf63e 100644 Binary files a/public/images/devices/9290030675.png and b/public/images/devices/9290030675.png differ diff --git a/public/images/devices/929003074801.png b/public/images/devices/929003074801.png index c6bf18e3e1533..4008657b33c89 100644 Binary files a/public/images/devices/929003074801.png and b/public/images/devices/929003074801.png differ diff --git a/public/images/devices/929003098601.png b/public/images/devices/929003098601.png index 94866c020b9a0..12db9ac9e4faf 100644 Binary files a/public/images/devices/929003098601.png and b/public/images/devices/929003098601.png differ diff --git a/public/images/devices/929003099001.png b/public/images/devices/929003099001.png index f5e931dc0b303..11ce0f0d3534f 100644 Binary files a/public/images/devices/929003099001.png and b/public/images/devices/929003099001.png differ diff --git a/public/images/devices/929003099101.png b/public/images/devices/929003099101.png index 5d36f04bc38ba..116100aae9993 100644 Binary files a/public/images/devices/929003099101.png and b/public/images/devices/929003099101.png differ diff --git a/public/images/devices/929003099301.png b/public/images/devices/929003099301.png index cb14df42e7e2d..9c5090dcadd48 100644 Binary files a/public/images/devices/929003099301.png and b/public/images/devices/929003099301.png differ diff --git a/public/images/devices/929003115801.png b/public/images/devices/929003115801.png index 8765ac1b521bb..24c41499149f7 100644 Binary files a/public/images/devices/929003115801.png and b/public/images/devices/929003115801.png differ diff --git a/public/images/devices/929003116201.png b/public/images/devices/929003116201.png index 6f9397086976f..f889df516c951 100644 Binary files a/public/images/devices/929003116201.png and b/public/images/devices/929003116201.png differ diff --git a/public/images/devices/929003117101.png b/public/images/devices/929003117101.png index dc1a163695399..1b5286d7b531e 100644 Binary files a/public/images/devices/929003117101.png and b/public/images/devices/929003117101.png differ diff --git a/public/images/devices/929003117201.png b/public/images/devices/929003117201.png index 6ea90ce9dece9..df2b053e6118a 100644 Binary files a/public/images/devices/929003117201.png and b/public/images/devices/929003117201.png differ diff --git a/public/images/devices/929003117301.png b/public/images/devices/929003117301.png index 9d681d162582c..8b812a0a5c78e 100644 Binary files a/public/images/devices/929003117301.png and b/public/images/devices/929003117301.png differ diff --git a/public/images/devices/929003117401.png b/public/images/devices/929003117401.png index b3213737aafb1..9a0e6760fc1f1 100644 Binary files a/public/images/devices/929003117401.png and b/public/images/devices/929003117401.png differ diff --git a/public/images/devices/929003117701.png b/public/images/devices/929003117701.png index 71676bf845769..536803ebf89b0 100644 Binary files a/public/images/devices/929003117701.png and b/public/images/devices/929003117701.png differ diff --git a/public/images/devices/929003117801.png b/public/images/devices/929003117801.png index 1eee47c90291d..cddddd6436a87 100644 Binary files a/public/images/devices/929003117801.png and b/public/images/devices/929003117801.png differ diff --git a/public/images/devices/929003128501.png b/public/images/devices/929003128501.png index 253564ad1694d..15417b67da8bc 100644 Binary files a/public/images/devices/929003128501.png and b/public/images/devices/929003128501.png differ diff --git a/public/images/devices/929003128601.png b/public/images/devices/929003128601.png index 2f779655d856e..f9fa479c0cb81 100644 Binary files a/public/images/devices/929003128601.png and b/public/images/devices/929003128601.png differ diff --git a/public/images/devices/929003128801.png b/public/images/devices/929003128801.png index 2f779655d856e..f9fa479c0cb81 100644 Binary files a/public/images/devices/929003128801.png and b/public/images/devices/929003128801.png differ diff --git a/public/images/devices/929003128901.png b/public/images/devices/929003128901.png index 2f779655d856e..f9fa479c0cb81 100644 Binary files a/public/images/devices/929003128901.png and b/public/images/devices/929003128901.png differ diff --git a/public/images/devices/929003129001.png b/public/images/devices/929003129001.png index 2f779655d856e..f9fa479c0cb81 100644 Binary files a/public/images/devices/929003129001.png and b/public/images/devices/929003129001.png differ diff --git a/public/images/devices/9290031345.png b/public/images/devices/9290031345.png index a5c52d73aefb3..fc9f797e8162f 100644 Binary files a/public/images/devices/9290031345.png and b/public/images/devices/9290031345.png differ diff --git a/public/images/devices/9290031346.png b/public/images/devices/9290031346.png index a5c52d73aefb3..fc9f797e8162f 100644 Binary files a/public/images/devices/9290031346.png and b/public/images/devices/9290031346.png differ diff --git a/public/images/devices/9290031451.png b/public/images/devices/9290031451.png index 4f2ae8d2488cf..c501e8d7a8757 100644 Binary files a/public/images/devices/9290031451.png and b/public/images/devices/9290031451.png differ diff --git a/public/images/devices/9290031452.png b/public/images/devices/9290031452.png index fe41b6c1b00e3..84c28d3439113 100644 Binary files a/public/images/devices/9290031452.png and b/public/images/devices/9290031452.png differ diff --git a/public/images/devices/929003516101.png b/public/images/devices/929003516101.png index af997e3254fd3..31a6d24219f07 100644 Binary files a/public/images/devices/929003516101.png and b/public/images/devices/929003516101.png differ diff --git a/public/images/devices/929003521401.png b/public/images/devices/929003521401.png index 2f779655d856e..f9fa479c0cb81 100644 Binary files a/public/images/devices/929003521401.png and b/public/images/devices/929003521401.png differ diff --git a/public/images/devices/929003521601.png b/public/images/devices/929003521601.png index 2f779655d856e..f9fa479c0cb81 100644 Binary files a/public/images/devices/929003521601.png and b/public/images/devices/929003521601.png differ diff --git a/public/images/devices/929003531702.png b/public/images/devices/929003531702.png index 9992f6063abc9..7e12b1dd16277 100644 Binary files a/public/images/devices/929003531702.png and b/public/images/devices/929003531702.png differ diff --git a/public/images/devices/929003535301.png b/public/images/devices/929003535301.png index a531bdcadc120..0325a551f19aa 100644 Binary files a/public/images/devices/929003535301.png and b/public/images/devices/929003535301.png differ diff --git a/public/images/devices/929003598001.png b/public/images/devices/929003598001.png index 705a4083d0187..1d6569a4eb36e 100644 Binary files a/public/images/devices/929003598001.png and b/public/images/devices/929003598001.png differ diff --git a/public/images/devices/9290036744.png b/public/images/devices/9290036744.png index b7a04393c77bf..808ee36c03d30 100644 Binary files a/public/images/devices/9290036744.png and b/public/images/devices/9290036744.png differ diff --git a/public/images/devices/93999.png b/public/images/devices/93999.png index 3c16eda01a257..66e2f13308804 100644 Binary files a/public/images/devices/93999.png and b/public/images/devices/93999.png differ diff --git a/public/images/devices/94191.png b/public/images/devices/94191.png index 9162c4d1d0041..d6cbe680d70cd 100644 Binary files a/public/images/devices/94191.png and b/public/images/devices/94191.png differ diff --git a/public/images/devices/948.47-29165.png b/public/images/devices/948.47-29165.png index 8b36da8b29a65..53bda635fe2ec 100644 Binary files a/public/images/devices/948.47-29165.png and b/public/images/devices/948.47-29165.png differ diff --git a/public/images/devices/98423051.png b/public/images/devices/98423051.png index d1c99d60f47d1..253bcf4833328 100644 Binary files a/public/images/devices/98423051.png and b/public/images/devices/98423051.png differ diff --git a/public/images/devices/98425031.png b/public/images/devices/98425031.png index 1842a94922440..29b13128a5e7f 100644 Binary files a/public/images/devices/98425031.png and b/public/images/devices/98425031.png differ diff --git a/public/images/devices/99100-006.png b/public/images/devices/99100-006.png index dac832fd59feb..00b692f5dbd38 100644 Binary files a/public/images/devices/99100-006.png and b/public/images/devices/99100-006.png differ diff --git a/public/images/devices/99100-045.png b/public/images/devices/99100-045.png index 42867d16778bf..ed0c033cd8b9e 100644 Binary files a/public/images/devices/99100-045.png and b/public/images/devices/99100-045.png differ diff --git a/public/images/devices/99120-021.png b/public/images/devices/99120-021.png index 2b7380f20c6bf..42cad15116c11 100644 Binary files a/public/images/devices/99120-021.png and b/public/images/devices/99120-021.png differ diff --git a/public/images/devices/99140-002.png b/public/images/devices/99140-002.png index d41f64603403d..78a993070feaa 100644 Binary files a/public/images/devices/99140-002.png and b/public/images/devices/99140-002.png differ diff --git a/public/images/devices/99140-031.png b/public/images/devices/99140-031.png index e1ab2609c63a1..fa4bfb9595ece 100644 Binary files a/public/images/devices/99140-031.png and b/public/images/devices/99140-031.png differ diff --git a/public/images/devices/99140-139.png b/public/images/devices/99140-139.png index b8c6e81df4ee2..22c989cfbaff0 100644 Binary files a/public/images/devices/99140-139.png and b/public/images/devices/99140-139.png differ diff --git a/public/images/devices/99432.png b/public/images/devices/99432.png index 64827d92df1b3..b21c2293ba2a8 100644 Binary files a/public/images/devices/99432.png and b/public/images/devices/99432.png differ diff --git a/public/images/devices/9CZA-A806ST-Q1A.png b/public/images/devices/9CZA-A806ST-Q1A.png index 29a4066135c80..a65c69d76700f 100644 Binary files a/public/images/devices/9CZA-A806ST-Q1A.png and b/public/images/devices/9CZA-A806ST-Q1A.png differ diff --git a/public/images/devices/9CZA-A806ST-Q1Z.png b/public/images/devices/9CZA-A806ST-Q1Z.png index 29a4066135c80..a65c69d76700f 100644 Binary files a/public/images/devices/9CZA-A806ST-Q1Z.png and b/public/images/devices/9CZA-A806ST-Q1Z.png differ diff --git a/public/images/devices/9CZA-G1521-Q1A.png b/public/images/devices/9CZA-G1521-Q1A.png index 5e0ee261bb911..42aab2a584fce 100644 Binary files a/public/images/devices/9CZA-G1521-Q1A.png and b/public/images/devices/9CZA-G1521-Q1A.png differ diff --git a/public/images/devices/9CZA-M350ST-Q1A.png b/public/images/devices/9CZA-M350ST-Q1A.png index 632611317c277..b6657d5740ccf 100644 Binary files a/public/images/devices/9CZA-M350ST-Q1A.png and b/public/images/devices/9CZA-M350ST-Q1A.png differ diff --git a/public/images/devices/9CZA-P470T-A1A.png b/public/images/devices/9CZA-P470T-A1A.png index bfb7fcd67191f..d110595a35e76 100644 Binary files a/public/images/devices/9CZA-P470T-A1A.png and b/public/images/devices/9CZA-P470T-A1A.png differ diff --git a/public/images/devices/9GED18000-009.png b/public/images/devices/9GED18000-009.png index f28206c9287c6..7e1ceaab1ed64 100644 Binary files a/public/images/devices/9GED18000-009.png and b/public/images/devices/9GED18000-009.png differ diff --git a/public/images/devices/9GED21500-005.png b/public/images/devices/9GED21500-005.png index f8ca9f1265da6..7f839ad42e6c0 100644 Binary files a/public/images/devices/9GED21500-005.png and b/public/images/devices/9GED21500-005.png differ diff --git a/public/images/devices/A1Z.png b/public/images/devices/A1Z.png index 46e46e006995f..b701f291c2aa3 100644 Binary files a/public/images/devices/A1Z.png and b/public/images/devices/A1Z.png differ diff --git a/public/images/devices/A4Z.png b/public/images/devices/A4Z.png index 0b203bb2c64f2..2d46e4a3260de 100644 Binary files a/public/images/devices/A4Z.png and b/public/images/devices/A4Z.png differ diff --git a/public/images/devices/A806S-Q1G.png b/public/images/devices/A806S-Q1G.png index bb2162dde2b8d..2940cc52a8fad 100644 Binary files a/public/images/devices/A806S-Q1G.png and b/public/images/devices/A806S-Q1G.png differ diff --git a/public/images/devices/A806S-Q1R.png b/public/images/devices/A806S-Q1R.png index 260305b9e6d76..8c1539d2e1e55 100644 Binary files a/public/images/devices/A806S-Q1R.png and b/public/images/devices/A806S-Q1R.png differ diff --git a/public/images/devices/A9A19A60WESDZ02.png b/public/images/devices/A9A19A60WESDZ02.png index 6e24163267c83..7f8bbfa535b14 100644 Binary files a/public/images/devices/A9A19A60WESDZ02.png and b/public/images/devices/A9A19A60WESDZ02.png differ diff --git a/public/images/devices/A9BR3065WESDZ02.png b/public/images/devices/A9BR3065WESDZ02.png index 2184c645b90aa..2d567d584b239 100644 Binary files a/public/images/devices/A9BR3065WESDZ02.png and b/public/images/devices/A9BR3065WESDZ02.png differ diff --git a/public/images/devices/A9MEM1570.png b/public/images/devices/A9MEM1570.png index e29c22371e57b..2b1a38f2dcca9 100644 Binary files a/public/images/devices/A9MEM1570.png and b/public/images/devices/A9MEM1570.png differ diff --git a/public/images/devices/AA68199.png b/public/images/devices/AA68199.png index b095e9cda4380..82cfe98af652c 100644 Binary files a/public/images/devices/AA68199.png and b/public/images/devices/AA68199.png differ diff --git a/public/images/devices/AA69697.png b/public/images/devices/AA69697.png index 9d2e3982294d8..ee32483a360e0 100644 Binary files a/public/images/devices/AA69697.png and b/public/images/devices/AA69697.png differ diff --git a/public/images/devices/AA70155.png b/public/images/devices/AA70155.png index 242d630f9eaec..2408c1be130d2 100644 Binary files a/public/images/devices/AA70155.png and b/public/images/devices/AA70155.png differ diff --git a/public/images/devices/AAZ012040042.png b/public/images/devices/AAZ012040042.png index c1dec6eb17fee..314b7375ef844 100644 Binary files a/public/images/devices/AAZ012040042.png and b/public/images/devices/AAZ012040042.png differ diff --git a/public/images/devices/AB3257001NJ.png b/public/images/devices/AB3257001NJ.png index 9e2ba63367849..a1b71683924f5 100644 Binary files a/public/images/devices/AB3257001NJ.png and b/public/images/devices/AB3257001NJ.png differ diff --git a/public/images/devices/AB32840.png b/public/images/devices/AB32840.png index c658f374d2853..32a3bea8fbd32 100644 Binary files a/public/images/devices/AB32840.png and b/public/images/devices/AB32840.png differ diff --git a/public/images/devices/AB35996.png b/public/images/devices/AB35996.png index 0ff0049c1e2f6..e5cd8764fcc5e 100644 Binary files a/public/images/devices/AB35996.png and b/public/images/devices/AB35996.png differ diff --git a/public/images/devices/AB401130055.png b/public/images/devices/AB401130055.png index c2f6b45159393..1165d655ce326 100644 Binary files a/public/images/devices/AB401130055.png and b/public/images/devices/AB401130055.png differ diff --git a/public/images/devices/AC01353010G.png b/public/images/devices/AC01353010G.png index d1f3933f2aceb..1c0a3944785c7 100644 Binary files a/public/images/devices/AC01353010G.png and b/public/images/devices/AC01353010G.png differ diff --git a/public/images/devices/AC0251100NJ-AC0251600NJ-AC0251700NJ.png b/public/images/devices/AC0251100NJ-AC0251600NJ-AC0251700NJ.png index f225de7555f4b..a8ad8316b31dd 100644 Binary files a/public/images/devices/AC0251100NJ-AC0251600NJ-AC0251700NJ.png and b/public/images/devices/AC0251100NJ-AC0251600NJ-AC0251700NJ.png differ diff --git a/public/images/devices/AC0363900NJ.png b/public/images/devices/AC0363900NJ.png index 3ce53ff7d49f9..161e62ace30e4 100644 Binary files a/public/images/devices/AC0363900NJ.png and b/public/images/devices/AC0363900NJ.png differ diff --git a/public/images/devices/AC03641.png b/public/images/devices/AC03641.png index b8466b4e7439c..967dd96ecfad4 100644 Binary files a/public/images/devices/AC03641.png and b/public/images/devices/AC03641.png differ diff --git a/public/images/devices/AC03642.png b/public/images/devices/AC03642.png index 21f1f43b4b8ed..f98dcf4ac59ed 100644 Binary files a/public/images/devices/AC03642.png and b/public/images/devices/AC03642.png differ diff --git a/public/images/devices/AC03645.png b/public/images/devices/AC03645.png index cba2b7fe4aaed..050f5d5174693 100644 Binary files a/public/images/devices/AC03645.png and b/public/images/devices/AC03645.png differ diff --git a/public/images/devices/AC03647.png b/public/images/devices/AC03647.png index fcd75d3125a1c..5ff39824a30e3 100644 Binary files a/public/images/devices/AC03647.png and b/public/images/devices/AC03647.png differ diff --git a/public/images/devices/AC03648.png b/public/images/devices/AC03648.png index 621a74139695c..b8a0637dc004d 100644 Binary files a/public/images/devices/AC03648.png and b/public/images/devices/AC03648.png differ diff --git a/public/images/devices/AC08559.png b/public/images/devices/AC08559.png index 70e3e79e948c3..1e9307e03b1a5 100644 Binary files a/public/images/devices/AC08559.png and b/public/images/devices/AC08559.png differ diff --git a/public/images/devices/AC08560-DIM.png b/public/images/devices/AC08560-DIM.png index 70e3e79e948c3..1e9307e03b1a5 100644 Binary files a/public/images/devices/AC08560-DIM.png and b/public/images/devices/AC08560-DIM.png differ diff --git a/public/images/devices/AC08560.png b/public/images/devices/AC08560.png index 70e3e79e948c3..1e9307e03b1a5 100644 Binary files a/public/images/devices/AC08560.png and b/public/images/devices/AC08560.png differ diff --git a/public/images/devices/AC08562.png b/public/images/devices/AC08562.png index 70f5964fc33b1..4b9e421e3a92c 100644 Binary files a/public/images/devices/AC08562.png and b/public/images/devices/AC08562.png differ diff --git a/public/images/devices/AC10691.png b/public/images/devices/AC10691.png index 93444ebe168fe..ad0cc154dfb4c 100644 Binary files a/public/images/devices/AC10691.png and b/public/images/devices/AC10691.png differ diff --git a/public/images/devices/AC10786-DIM.png b/public/images/devices/AC10786-DIM.png index f9b7ebe797993..bc0f7e2206bfb 100644 Binary files a/public/images/devices/AC10786-DIM.png and b/public/images/devices/AC10786-DIM.png differ diff --git a/public/images/devices/AC10787.png b/public/images/devices/AC10787.png index c59e8039353d4..ffd0fff573676 100644 Binary files a/public/images/devices/AC10787.png and b/public/images/devices/AC10787.png differ diff --git a/public/images/devices/AC16381.png b/public/images/devices/AC16381.png index 1087a7198a39b..582a5afdf05c2 100644 Binary files a/public/images/devices/AC16381.png and b/public/images/devices/AC16381.png differ diff --git a/public/images/devices/AC201.png b/public/images/devices/AC201.png index 3fcdcf1e6d44e..d191d7f8b9156 100644 Binary files a/public/images/devices/AC201.png and b/public/images/devices/AC201.png differ diff --git a/public/images/devices/AC23684.png b/public/images/devices/AC23684.png index 69772133d130a..85efd5ffd2cb0 100644 Binary files a/public/images/devices/AC23684.png and b/public/images/devices/AC23684.png differ diff --git a/public/images/devices/AC25697.png b/public/images/devices/AC25697.png index d78e8efb74007..264902632d9e2 100644 Binary files a/public/images/devices/AC25697.png and b/public/images/devices/AC25697.png differ diff --git a/public/images/devices/AC25702.png b/public/images/devices/AC25702.png index d0a90f7fb2938..7901da039a3c5 100644 Binary files a/public/images/devices/AC25702.png and b/public/images/devices/AC25702.png differ diff --git a/public/images/devices/AC25704.png b/public/images/devices/AC25704.png index 2dc4c0498a353..4de192dbe494e 100644 Binary files a/public/images/devices/AC25704.png and b/public/images/devices/AC25704.png differ diff --git a/public/images/devices/AC26940-AC31266.png b/public/images/devices/AC26940-AC31266.png index 618fe90542687..93fdd7f145519 100644 Binary files a/public/images/devices/AC26940-AC31266.png and b/public/images/devices/AC26940-AC31266.png differ diff --git a/public/images/devices/AC33898.png b/public/images/devices/AC33898.png index 06f96a514547e..8107af9017b16 100644 Binary files a/public/images/devices/AC33898.png and b/public/images/devices/AC33898.png differ diff --git a/public/images/devices/AC33901.png b/public/images/devices/AC33901.png index 2dc4c0498a353..4de192dbe494e 100644 Binary files a/public/images/devices/AC33901.png and b/public/images/devices/AC33901.png differ diff --git a/public/images/devices/AC33903.png b/public/images/devices/AC33903.png index 59bebf3a0998f..645dd23632399 100644 Binary files a/public/images/devices/AC33903.png and b/public/images/devices/AC33903.png differ diff --git a/public/images/devices/AC33905.png b/public/images/devices/AC33905.png index 70ed3c82d5c3a..f2f24cfb8b55c 100644 Binary files a/public/images/devices/AC33905.png and b/public/images/devices/AC33905.png differ diff --git a/public/images/devices/AC33906.png b/public/images/devices/AC33906.png index 5dd19bd84acf6..140eb8922b7db 100644 Binary files a/public/images/devices/AC33906.png and b/public/images/devices/AC33906.png differ diff --git a/public/images/devices/AE-260.png b/public/images/devices/AE-260.png index 3dae06268f791..188cca4ac938f 100644 Binary files a/public/images/devices/AE-260.png and b/public/images/devices/AE-260.png differ diff --git a/public/images/devices/AE-280-C.png b/public/images/devices/AE-280-C.png index 8f49f304286ad..d62c8afce3df8 100644 Binary files a/public/images/devices/AE-280-C.png and b/public/images/devices/AE-280-C.png differ diff --git a/public/images/devices/AIRAM-CTR.U.png b/public/images/devices/AIRAM-CTR.U.png index cf752947b6613..e4ba2953e39c6 100644 Binary files a/public/images/devices/AIRAM-CTR.U.png and b/public/images/devices/AIRAM-CTR.U.png differ diff --git a/public/images/devices/AJ_RGBCCT_CTRL.png b/public/images/devices/AJ_RGBCCT_CTRL.png index 1b83cd9b5dba2..e86307af4671f 100644 Binary files a/public/images/devices/AJ_RGBCCT_CTRL.png and b/public/images/devices/AJ_RGBCCT_CTRL.png differ diff --git a/public/images/devices/AJ_ZB_GU10.png b/public/images/devices/AJ_ZB_GU10.png index bda16f9983875..379cb71a46492 100644 Binary files a/public/images/devices/AJ_ZB_GU10.png and b/public/images/devices/AJ_ZB_GU10.png differ diff --git a/public/images/devices/AJ_ZIGPROA60.png b/public/images/devices/AJ_ZIGPROA60.png index 69b3fa5720b25..8e08c98bb3485 100644 Binary files a/public/images/devices/AJ_ZIGPROA60.png and b/public/images/devices/AJ_ZIGPROA60.png differ diff --git a/public/images/devices/AL-PIR02.png b/public/images/devices/AL-PIR02.png index 652739cf60c50..3bbb49de95e70 100644 Binary files a/public/images/devices/AL-PIR02.png and b/public/images/devices/AL-PIR02.png differ diff --git a/public/images/devices/AL8RGB13W-AP.png b/public/images/devices/AL8RGB13W-AP.png index 57e69dbdd46fd..1d7a9328fdd90 100644 Binary files a/public/images/devices/AL8RGB13W-AP.png and b/public/images/devices/AL8RGB13W-AP.png differ diff --git a/public/images/devices/AL8TC13W-AP.png b/public/images/devices/AL8TC13W-AP.png index 4b66a69a9343c..f64d690295d52 100644 Binary files a/public/images/devices/AL8TC13W-AP.png and b/public/images/devices/AL8TC13W-AP.png differ diff --git a/public/images/devices/ALCANTARA2.png b/public/images/devices/ALCANTARA2.png index 70c01c02dd927..fa3e1e751a83d 100644 Binary files a/public/images/devices/ALCANTARA2.png and b/public/images/devices/ALCANTARA2.png differ diff --git a/public/images/devices/AM25.png b/public/images/devices/AM25.png index 4ba7bca975847..47f91584797a5 100644 Binary files a/public/images/devices/AM25.png and b/public/images/devices/AM25.png differ diff --git a/public/images/devices/ATMS1601Z.png b/public/images/devices/ATMS1601Z.png index 94643093d64cb..4d0e56dbf4ce2 100644 Binary files a/public/images/devices/ATMS1601Z.png and b/public/images/devices/ATMS1601Z.png differ diff --git a/public/images/devices/AU-A1GSZ9B-27.png b/public/images/devices/AU-A1GSZ9B-27.png index 8e8febb6240ae..a45ab0e5bbc38 100644 Binary files a/public/images/devices/AU-A1GSZ9B-27.png and b/public/images/devices/AU-A1GSZ9B-27.png differ diff --git a/public/images/devices/AU-A1GSZ9CX.png b/public/images/devices/AU-A1GSZ9CX.png index 631103fad9da1..a1cbdad3c37f9 100644 Binary files a/public/images/devices/AU-A1GSZ9CX.png and b/public/images/devices/AU-A1GSZ9CX.png differ diff --git a/public/images/devices/AU-A1GSZ9RGBW_HV-GSCXZB269K.png b/public/images/devices/AU-A1GSZ9RGBW_HV-GSCXZB269K.png index 10a401a4c0ab3..be67c59c75610 100644 Binary files a/public/images/devices/AU-A1GSZ9RGBW_HV-GSCXZB269K.png and b/public/images/devices/AU-A1GSZ9RGBW_HV-GSCXZB269K.png differ diff --git a/public/images/devices/AU-A1GUZB5-30.png b/public/images/devices/AU-A1GUZB5-30.png index 5e35c27bf4297..c4c855e4f8f44 100644 Binary files a/public/images/devices/AU-A1GUZB5-30.png and b/public/images/devices/AU-A1GUZB5-30.png differ diff --git a/public/images/devices/AU-A1GUZBCX5.png b/public/images/devices/AU-A1GUZBCX5.png index 4e9e4d6eafa79..09adce05c223a 100644 Binary files a/public/images/devices/AU-A1GUZBCX5.png and b/public/images/devices/AU-A1GUZBCX5.png differ diff --git a/public/images/devices/AU-A1GUZBRGBW.png b/public/images/devices/AU-A1GUZBRGBW.png index 24dd8ccd2b389..6e1e7d798ecfd 100644 Binary files a/public/images/devices/AU-A1GUZBRGBW.png and b/public/images/devices/AU-A1GUZBRGBW.png differ diff --git a/public/images/devices/AU-A1VG125Z5E-19.png b/public/images/devices/AU-A1VG125Z5E-19.png index c4e06b35ffce9..0d24d1fa6dbcf 100644 Binary files a/public/images/devices/AU-A1VG125Z5E-19.png and b/public/images/devices/AU-A1VG125Z5E-19.png differ diff --git a/public/images/devices/AU-A1VGSZ5E-19.png b/public/images/devices/AU-A1VGSZ5E-19.png index f6048fcd7b78c..c1b12019b4aa9 100644 Binary files a/public/images/devices/AU-A1VGSZ5E-19.png and b/public/images/devices/AU-A1VGSZ5E-19.png differ diff --git a/public/images/devices/AU-A1ZB2WDM.png b/public/images/devices/AU-A1ZB2WDM.png index 763656572108a..87bce7181e266 100644 Binary files a/public/images/devices/AU-A1ZB2WDM.png and b/public/images/devices/AU-A1ZB2WDM.png differ diff --git a/public/images/devices/AU-A1ZBDSS.png b/public/images/devices/AU-A1ZBDSS.png index eae5f844ce393..efc1335b90fa4 100644 Binary files a/public/images/devices/AU-A1ZBDSS.png and b/public/images/devices/AU-A1ZBDSS.png differ diff --git a/public/images/devices/AU-A1ZBDWS.png b/public/images/devices/AU-A1ZBDWS.png index 228e0a26b12e6..eb0e15a17d98f 100644 Binary files a/public/images/devices/AU-A1ZBDWS.png and b/public/images/devices/AU-A1ZBDWS.png differ diff --git a/public/images/devices/AU-A1ZBPIA.png b/public/images/devices/AU-A1ZBPIA.png index 1ad0f26e16a77..1696410810ba1 100644 Binary files a/public/images/devices/AU-A1ZBPIA.png and b/public/images/devices/AU-A1ZBPIA.png differ diff --git a/public/images/devices/AU-A1ZBPIAB.png b/public/images/devices/AU-A1ZBPIAB.png index f5ac376e8dcf1..b235c48650359 100644 Binary files a/public/images/devices/AU-A1ZBPIAB.png and b/public/images/devices/AU-A1ZBPIAB.png differ diff --git a/public/images/devices/AU-A1ZBPIRS.png b/public/images/devices/AU-A1ZBPIRS.png index 7d95180e4e5c1..4ff4e956f14c3 100644 Binary files a/public/images/devices/AU-A1ZBPIRS.png and b/public/images/devices/AU-A1ZBPIRS.png differ diff --git a/public/images/devices/AU-A1ZBR1GW.png b/public/images/devices/AU-A1ZBR1GW.png index 1a8a5ffccfe2c..0c38d43364c9e 100644 Binary files a/public/images/devices/AU-A1ZBR1GW.png and b/public/images/devices/AU-A1ZBR1GW.png differ diff --git a/public/images/devices/AU-A1ZBR2GW.png b/public/images/devices/AU-A1ZBR2GW.png index 4c5b36b4c011f..7b8969c6a8d95 100644 Binary files a/public/images/devices/AU-A1ZBR2GW.png and b/public/images/devices/AU-A1ZBR2GW.png differ diff --git a/public/images/devices/AU-A1ZBRC.png b/public/images/devices/AU-A1ZBRC.png index b5c64d78317be..cb7e505ab42ed 100644 Binary files a/public/images/devices/AU-A1ZBRC.png and b/public/images/devices/AU-A1ZBRC.png differ diff --git a/public/images/devices/AU-A1ZBSCRGBCX.png b/public/images/devices/AU-A1ZBSCRGBCX.png index 3001e23229057..b116f4506480b 100644 Binary files a/public/images/devices/AU-A1ZBSCRGBCX.png and b/public/images/devices/AU-A1ZBSCRGBCX.png differ diff --git a/public/images/devices/AV2010-14.png b/public/images/devices/AV2010-14.png index 1e3b45ae39eae..2df4a534789f7 100644 Binary files a/public/images/devices/AV2010-14.png and b/public/images/devices/AV2010-14.png differ diff --git a/public/images/devices/AV2010-16.png b/public/images/devices/AV2010-16.png index 5859500ebf796..fc9f17fa4e01b 100644 Binary files a/public/images/devices/AV2010-16.png and b/public/images/devices/AV2010-16.png differ diff --git a/public/images/devices/AV2010-18.png b/public/images/devices/AV2010-18.png index 5859500ebf796..fc9f17fa4e01b 100644 Binary files a/public/images/devices/AV2010-18.png and b/public/images/devices/AV2010-18.png differ diff --git a/public/images/devices/AV2010-21A.png b/public/images/devices/AV2010-21A.png index 2c0fb4b378d3a..6ef3c59400d82 100644 Binary files a/public/images/devices/AV2010-21A.png and b/public/images/devices/AV2010-21A.png differ diff --git a/public/images/devices/AV2010-21B.png b/public/images/devices/AV2010-21B.png index 1459dcde6b133..0142f921bab41 100644 Binary files a/public/images/devices/AV2010-21B.png and b/public/images/devices/AV2010-21B.png differ diff --git a/public/images/devices/AV2010-21C.png b/public/images/devices/AV2010-21C.png index 2355989e1e971..f7312aa82cd76 100644 Binary files a/public/images/devices/AV2010-21C.png and b/public/images/devices/AV2010-21C.png differ diff --git a/public/images/devices/AV2010-22.png b/public/images/devices/AV2010-22.png index c64096864681f..0ee9e1169326e 100644 Binary files a/public/images/devices/AV2010-22.png and b/public/images/devices/AV2010-22.png differ diff --git a/public/images/devices/AV2010-22A.png b/public/images/devices/AV2010-22A.png index c3d7a36b6f3a1..3816864d52730 100644 Binary files a/public/images/devices/AV2010-22A.png and b/public/images/devices/AV2010-22A.png differ diff --git a/public/images/devices/AV2010-22B.png b/public/images/devices/AV2010-22B.png index 0f4b2975d911e..af16af5949e83 100644 Binary files a/public/images/devices/AV2010-22B.png and b/public/images/devices/AV2010-22B.png differ diff --git a/public/images/devices/AV2010-23.png b/public/images/devices/AV2010-23.png index 8bb69190a853c..5e4826371bd5e 100644 Binary files a/public/images/devices/AV2010-23.png and b/public/images/devices/AV2010-23.png differ diff --git a/public/images/devices/AV2010-24.png b/public/images/devices/AV2010-24.png index a2700b3f65e81..d08d59fe9b974 100644 Binary files a/public/images/devices/AV2010-24.png and b/public/images/devices/AV2010-24.png differ diff --git a/public/images/devices/AV2010-24A.png b/public/images/devices/AV2010-24A.png index 7149cd205206d..e1474812aa5ce 100644 Binary files a/public/images/devices/AV2010-24A.png and b/public/images/devices/AV2010-24A.png differ diff --git a/public/images/devices/AV2010-25.png b/public/images/devices/AV2010-25.png index 533cef4c37b55..3986fbb0eedfb 100644 Binary files a/public/images/devices/AV2010-25.png and b/public/images/devices/AV2010-25.png differ diff --git a/public/images/devices/AV2010-26.png b/public/images/devices/AV2010-26.png index 29d47efb71e2a..8ea0ce5499dcd 100644 Binary files a/public/images/devices/AV2010-26.png and b/public/images/devices/AV2010-26.png differ diff --git a/public/images/devices/AV2010-28.png b/public/images/devices/AV2010-28.png index 501b44cf51cd4..52836dc13673c 100644 Binary files a/public/images/devices/AV2010-28.png and b/public/images/devices/AV2010-28.png differ diff --git a/public/images/devices/AV2010-29.png b/public/images/devices/AV2010-29.png index 72e33a7fd13a3..b04fc75d97150 100644 Binary files a/public/images/devices/AV2010-29.png and b/public/images/devices/AV2010-29.png differ diff --git a/public/images/devices/AV2010-29A.png b/public/images/devices/AV2010-29A.png index 7840d5f7427b6..818dcb61f4b3c 100644 Binary files a/public/images/devices/AV2010-29A.png and b/public/images/devices/AV2010-29A.png differ diff --git a/public/images/devices/AV2010-33.png b/public/images/devices/AV2010-33.png index e5b98136393e9..887f4a4b11d9f 100644 Binary files a/public/images/devices/AV2010-33.png and b/public/images/devices/AV2010-33.png differ diff --git a/public/images/devices/AV2010-34.png b/public/images/devices/AV2010-34.png index e9b8dfa7632ba..eb7f8b95d0f60 100644 Binary files a/public/images/devices/AV2010-34.png and b/public/images/devices/AV2010-34.png differ diff --git a/public/images/devices/AV2010-37.png b/public/images/devices/AV2010-37.png index ee095354339f6..deef8953d6c24 100644 Binary files a/public/images/devices/AV2010-37.png and b/public/images/devices/AV2010-37.png differ diff --git a/public/images/devices/AX_Valve_Controller.png b/public/images/devices/AX_Valve_Controller.png index 23a517b8fddba..93279942124f2 100644 Binary files a/public/images/devices/AX_Valve_Controller.png and b/public/images/devices/AX_Valve_Controller.png differ diff --git a/public/images/devices/AX_Water_Sensor.png b/public/images/devices/AX_Water_Sensor.png index 42458e4e35037..5f0138983e856 100644 Binary files a/public/images/devices/AX_Water_Sensor.png and b/public/images/devices/AX_Water_Sensor.png differ diff --git a/public/images/devices/Aj_Zigbee_Led_Strip.png b/public/images/devices/Aj_Zigbee_Led_Strip.png index 02706ca3da6e2..15a4d8eef15f9 100644 Binary files a/public/images/devices/Aj_Zigbee_Led_Strip.png and b/public/images/devices/Aj_Zigbee_Led_Strip.png differ diff --git a/public/images/devices/B00TN589ZG.png b/public/images/devices/B00TN589ZG.png index 67464e54f705d..22af9fe205fcb 100644 Binary files a/public/images/devices/B00TN589ZG.png and b/public/images/devices/B00TN589ZG.png differ diff --git a/public/images/devices/B01M7Y8BP9.png b/public/images/devices/B01M7Y8BP9.png index 03a6d4e308a6a..d0b898819f391 100644 Binary files a/public/images/devices/B01M7Y8BP9.png and b/public/images/devices/B01M7Y8BP9.png differ diff --git a/public/images/devices/B07KG5KF5R.png b/public/images/devices/B07KG5KF5R.png index 465d806737228..cbde737d3d38d 100644 Binary files a/public/images/devices/B07KG5KF5R.png and b/public/images/devices/B07KG5KF5R.png differ diff --git a/public/images/devices/B09M3R35GC.png b/public/images/devices/B09M3R35GC.png index 5d5010c2b1d62..efe20c08d4c0c 100644 Binary files a/public/images/devices/B09M3R35GC.png and b/public/images/devices/B09M3R35GC.png differ diff --git a/public/images/devices/B1027EB0Z01.png b/public/images/devices/B1027EB0Z01.png index 36ec67c0bc6e4..0a1b7b855f525 100644 Binary files a/public/images/devices/B1027EB0Z01.png and b/public/images/devices/B1027EB0Z01.png differ diff --git a/public/images/devices/B1027EB0Z02.png b/public/images/devices/B1027EB0Z02.png index 36ec67c0bc6e4..0a1b7b855f525 100644 Binary files a/public/images/devices/B1027EB0Z02.png and b/public/images/devices/B1027EB0Z02.png differ diff --git a/public/images/devices/BCM100D.png b/public/images/devices/BCM100D.png index dec760f9adda0..efe20c08d4c0c 100644 Binary files a/public/images/devices/BCM100D.png and b/public/images/devices/BCM100D.png differ diff --git a/public/images/devices/BD05C-FL-21-G-ENK.png b/public/images/devices/BD05C-FL-21-G-ENK.png index 857a5a47a9208..d4619da47c47a 100644 Binary files a/public/images/devices/BD05C-FL-21-G-ENK.png and b/public/images/devices/BD05C-FL-21-G-ENK.png differ diff --git a/public/images/devices/BDHM8E27W70-I1.png b/public/images/devices/BDHM8E27W70-I1.png index 01c54b7fb0905..dd062b25a1eb1 100644 Binary files a/public/images/devices/BDHM8E27W70-I1.png and b/public/images/devices/BDHM8E27W70-I1.png differ diff --git a/public/images/devices/BDS03G1.png b/public/images/devices/BDS03G1.png index 3f0bbbcdd491e..32be0e8172e90 100644 Binary files a/public/images/devices/BDS03G1.png and b/public/images/devices/BDS03G1.png differ diff --git a/public/images/devices/BE-220.png b/public/images/devices/BE-220.png index d0b559f0f98ed..347795d2d13c7 100644 Binary files a/public/images/devices/BE-220.png and b/public/images/devices/BE-220.png differ diff --git a/public/images/devices/BE468.png b/public/images/devices/BE468.png index c9985c1ddc66e..303ed0d13f3a2 100644 Binary files a/public/images/devices/BE468.png and b/public/images/devices/BE468.png differ diff --git a/public/images/devices/BF-263.png b/public/images/devices/BF-263.png index e75014a1c3f3b..a29d1acc83fa8 100644 Binary files a/public/images/devices/BF-263.png and b/public/images/devices/BF-263.png differ diff --git a/public/images/devices/BF-265.png b/public/images/devices/BF-265.png index 105357acaefd1..2060724df34de 100644 Binary files a/public/images/devices/BF-265.png and b/public/images/devices/BF-265.png differ diff --git a/public/images/devices/BHT-002-BHT-006.png b/public/images/devices/BHT-002-BHT-006.png index ced2f4f0fcdbd..427d669899a17 100644 Binary files a/public/images/devices/BHT-002-BHT-006.png and b/public/images/devices/BHT-002-BHT-006.png differ diff --git a/public/images/devices/BHT-002-GCLZB.png b/public/images/devices/BHT-002-GCLZB.png index ced2f4f0fcdbd..427d669899a17 100644 Binary files a/public/images/devices/BHT-002-GCLZB.png and b/public/images/devices/BHT-002-GCLZB.png differ diff --git a/public/images/devices/BHT-006GBZB.png b/public/images/devices/BHT-006GBZB.png index 99d5364c7cd73..f458713e20b79 100644 Binary files a/public/images/devices/BHT-006GBZB.png and b/public/images/devices/BHT-006GBZB.png differ diff --git a/public/images/devices/BN-600078.png b/public/images/devices/BN-600078.png index 6b8fff6167ba1..faacb1cc44312 100644 Binary files a/public/images/devices/BN-600078.png and b/public/images/devices/BN-600078.png differ diff --git a/public/images/devices/BN-600110.png b/public/images/devices/BN-600110.png index 2d31dbadf320d..03d5cc43fb68c 100644 Binary files a/public/images/devices/BN-600110.png and b/public/images/devices/BN-600110.png differ diff --git a/public/images/devices/BPU3.png b/public/images/devices/BPU3.png index 6599eef49bcac..1450521e9e81a 100644 Binary files a/public/images/devices/BPU3.png and b/public/images/devices/BPU3.png differ diff --git a/public/images/devices/BRHM8E27W70-I1.png b/public/images/devices/BRHM8E27W70-I1.png index d873dda3f3c02..1d4134c2baab9 100644 Binary files a/public/images/devices/BRHM8E27W70-I1.png and b/public/images/devices/BRHM8E27W70-I1.png differ diff --git a/public/images/devices/BRI4P.png b/public/images/devices/BRI4P.png index 1442650aa8bdd..a9631e664dbb0 100644 Binary files a/public/images/devices/BRI4P.png and b/public/images/devices/BRI4P.png differ diff --git a/public/images/devices/BRT-100-TRV.png b/public/images/devices/BRT-100-TRV.png index 3efef64ce95c9..7f01a22ce1886 100644 Binary files a/public/images/devices/BRT-100-TRV.png and b/public/images/devices/BRT-100-TRV.png differ diff --git a/public/images/devices/BSD29-BSD59.png b/public/images/devices/BSD29-BSD59.png index 55a3eeaf47a38..e8af9690cff94 100644 Binary files a/public/images/devices/BSD29-BSD59.png and b/public/images/devices/BSD29-BSD59.png differ diff --git a/public/images/devices/BSD29_1.png b/public/images/devices/BSD29_1.png index 55a3eeaf47a38..e8af9690cff94 100644 Binary files a/public/images/devices/BSD29_1.png and b/public/images/devices/BSD29_1.png differ diff --git a/public/images/devices/BSEED_TS0601_cover.png b/public/images/devices/BSEED_TS0601_cover.png index 77d3c91f7b0e6..dc6aa206d3fbe 100644 Binary files a/public/images/devices/BSEED_TS0601_cover.png and b/public/images/devices/BSEED_TS0601_cover.png differ diff --git a/public/images/devices/BSEN-C2.png b/public/images/devices/BSEN-C2.png index c1a692903ff27..663d2a3c1cda1 100644 Binary files a/public/images/devices/BSEN-C2.png and b/public/images/devices/BSEN-C2.png differ diff --git a/public/images/devices/BSM-300ZB.png b/public/images/devices/BSM-300ZB.png index ef445e7394b63..57abcba8dbdd8 100644 Binary files a/public/images/devices/BSM-300ZB.png and b/public/images/devices/BSM-300ZB.png differ diff --git a/public/images/devices/BSP-EZ2.png b/public/images/devices/BSP-EZ2.png index 9dbe76ea95814..04cd82074bd8c 100644 Binary files a/public/images/devices/BSP-EZ2.png and b/public/images/devices/BSP-EZ2.png differ diff --git a/public/images/devices/BSP-FZ2.png b/public/images/devices/BSP-FZ2.png index 58d87d967aa3c..53c37539c99e0 100644 Binary files a/public/images/devices/BSP-FZ2.png and b/public/images/devices/BSP-FZ2.png differ diff --git a/public/images/devices/BSP-GZ2.png b/public/images/devices/BSP-GZ2.png index 1773b3a51f77c..e685bfae0c6f2 100644 Binary files a/public/images/devices/BSP-GZ2.png and b/public/images/devices/BSP-GZ2.png differ diff --git a/public/images/devices/BT400B.png b/public/images/devices/BT400B.png index ef153bc734c3a..c15a0781e0935 100644 Binary files a/public/images/devices/BT400B.png and b/public/images/devices/BT400B.png differ diff --git a/public/images/devices/BTH-RA.png b/public/images/devices/BTH-RA.png index cc552ab2aeb49..62492da5a4385 100644 Binary files a/public/images/devices/BTH-RA.png and b/public/images/devices/BTH-RA.png differ diff --git a/public/images/devices/BTH-RM230Z.png b/public/images/devices/BTH-RM230Z.png index 9205ca495229c..ca0181c5a5508 100644 Binary files a/public/images/devices/BTH-RM230Z.png and b/public/images/devices/BTH-RM230Z.png differ diff --git a/public/images/devices/BW-IS2.png b/public/images/devices/BW-IS2.png index 5c1c28dbc6b10..42be94b2ab0f9 100644 Binary files a/public/images/devices/BW-IS2.png and b/public/images/devices/BW-IS2.png differ diff --git a/public/images/devices/BW-IS3.png b/public/images/devices/BW-IS3.png index 96f8c1c292615..e6eb90bc1f295 100644 Binary files a/public/images/devices/BW-IS3.png and b/public/images/devices/BW-IS3.png differ diff --git a/public/images/devices/BW-SHP13.png b/public/images/devices/BW-SHP13.png index 6284c21938794..df2f1aac54d3d 100644 Binary files a/public/images/devices/BW-SHP13.png and b/public/images/devices/BW-SHP13.png differ diff --git a/public/images/devices/BW-SS7_1gang.png b/public/images/devices/BW-SS7_1gang.png index 2a541bab1716e..bb6edc1048a67 100644 Binary files a/public/images/devices/BW-SS7_1gang.png and b/public/images/devices/BW-SS7_1gang.png differ diff --git a/public/images/devices/BW-SS7_2gang.png b/public/images/devices/BW-SS7_2gang.png index ab73ea3ea17fb..9cd02f0616a56 100644 Binary files a/public/images/devices/BW-SS7_2gang.png and b/public/images/devices/BW-SS7_2gang.png differ diff --git a/public/images/devices/BY-165.png b/public/images/devices/BY-165.png index 4af7652f70eb5..86acecee7efcd 100644 Binary files a/public/images/devices/BY-165.png and b/public/images/devices/BY-165.png differ diff --git a/public/images/devices/BY-178-T.png b/public/images/devices/BY-178-T.png index f21e1a96fc58f..c768708c6fb78 100644 Binary files a/public/images/devices/BY-178-T.png and b/public/images/devices/BY-178-T.png differ diff --git a/public/images/devices/BY-185-C.png b/public/images/devices/BY-185-C.png index 178a1a6fb30ad..01f2d23d8903d 100644 Binary files a/public/images/devices/BY-185-C.png and b/public/images/devices/BY-185-C.png differ diff --git a/public/images/devices/BY-266.png b/public/images/devices/BY-266.png index 4af7652f70eb5..86acecee7efcd 100644 Binary files a/public/images/devices/BY-266.png and b/public/images/devices/BY-266.png differ diff --git a/public/images/devices/BY-285-C.png b/public/images/devices/BY-285-C.png index 995c5b6717dfd..f742f719f3f80 100644 Binary files a/public/images/devices/BY-285-C.png and b/public/images/devices/BY-285-C.png differ diff --git a/public/images/devices/BY-286-C.png b/public/images/devices/BY-286-C.png index 95044f22bd603..f19beaca86dff 100644 Binary files a/public/images/devices/BY-286-C.png and b/public/images/devices/BY-286-C.png differ diff --git a/public/images/devices/C0040000.png b/public/images/devices/C0040000.png index 43bfba5adcb23..1f08d79d41d02 100644 Binary files a/public/images/devices/C0040000.png and b/public/images/devices/C0040000.png differ diff --git a/public/images/devices/C10-3E-1.2.png b/public/images/devices/C10-3E-1.2.png index aee9f7fb776b5..8dff25bea4a59 100644 Binary files a/public/images/devices/C10-3E-1.2.png and b/public/images/devices/C10-3E-1.2.png differ diff --git a/public/images/devices/C204.png b/public/images/devices/C204.png index e2f1a7ea9875e..bb10ff1d92321 100644 Binary files a/public/images/devices/C204.png and b/public/images/devices/C204.png differ diff --git a/public/images/devices/C4.png b/public/images/devices/C4.png index fd82a7e79b186..458aeb65575a0 100644 Binary files a/public/images/devices/C4.png and b/public/images/devices/C4.png differ diff --git a/public/images/devices/C422AC11D41H140.0W.png b/public/images/devices/C422AC11D41H140.0W.png index c5e6bbee1ed72..1409979219fd6 100644 Binary files a/public/images/devices/C422AC11D41H140.0W.png and b/public/images/devices/C422AC11D41H140.0W.png differ diff --git a/public/images/devices/C422AC14D41H140.0W.png b/public/images/devices/C422AC14D41H140.0W.png index 42bde69c1321c..6cd1f629f1b61 100644 Binary files a/public/images/devices/C422AC14D41H140.0W.png and b/public/images/devices/C422AC14D41H140.0W.png differ diff --git a/public/images/devices/C5850000.png b/public/images/devices/C5850000.png index 2e65f7ebc063c..27510e439a8a8 100644 Binary files a/public/images/devices/C5850000.png and b/public/images/devices/C5850000.png differ diff --git a/public/images/devices/CB432.png b/public/images/devices/CB432.png index 447b089c57d69..9dd12ce2197b2 100644 Binary files a/public/images/devices/CB432.png and b/public/images/devices/CB432.png differ diff --git a/public/images/devices/CC2530.ROUTER.png b/public/images/devices/CC2530.ROUTER.png index b10e124251fab..8c4a914da7813 100644 Binary files a/public/images/devices/CC2530.ROUTER.png and b/public/images/devices/CC2530.ROUTER.png differ diff --git a/public/images/devices/CC2538.ROUTER.V1.png b/public/images/devices/CC2538.ROUTER.V1.png index 6eba9c2d4ccfd..089b01fc7480b 100644 Binary files a/public/images/devices/CC2538.ROUTER.V1.png and b/public/images/devices/CC2538.ROUTER.V1.png differ diff --git a/public/images/devices/CC2538.ROUTER.V2.png b/public/images/devices/CC2538.ROUTER.V2.png index 6eba9c2d4ccfd..089b01fc7480b 100644 Binary files a/public/images/devices/CC2538.ROUTER.V2.png and b/public/images/devices/CC2538.ROUTER.V2.png differ diff --git a/public/images/devices/CCB432.png b/public/images/devices/CCB432.png index 31db8249a8dca..6e3a086d26848 100644 Binary files a/public/images/devices/CCB432.png and b/public/images/devices/CCB432.png differ diff --git a/public/images/devices/CCT5010-0001.png b/public/images/devices/CCT5010-0001.png index 336f2ebf9f986..f22549c399a44 100644 Binary files a/public/images/devices/CCT5010-0001.png and b/public/images/devices/CCT5010-0001.png differ diff --git a/public/images/devices/CCT5011-0001-CCT5011-0002-MEG5011-0001.png b/public/images/devices/CCT5011-0001-CCT5011-0002-MEG5011-0001.png index 103699211f5c9..40b60909cdda5 100644 Binary files a/public/images/devices/CCT5011-0001-CCT5011-0002-MEG5011-0001.png and b/public/images/devices/CCT5011-0001-CCT5011-0002-MEG5011-0001.png differ diff --git a/public/images/devices/CCT5015-0001.png b/public/images/devices/CCT5015-0001.png index 6df398c5c571d..45abaf677a951 100644 Binary files a/public/images/devices/CCT5015-0001.png and b/public/images/devices/CCT5015-0001.png differ diff --git a/public/images/devices/CCT591011_AS.png b/public/images/devices/CCT591011_AS.png index dfdbf5379812d..0e0a43c9023dc 100644 Binary files a/public/images/devices/CCT591011_AS.png and b/public/images/devices/CCT591011_AS.png differ diff --git a/public/images/devices/CCT592011.png b/public/images/devices/CCT592011.png index 79532b7ca59f1..b019535b28cf5 100644 Binary files a/public/images/devices/CCT592011.png and b/public/images/devices/CCT592011.png differ diff --git a/public/images/devices/CCT595011.png b/public/images/devices/CCT595011.png index 262aae7c811ed..92bca4dca4f05 100644 Binary files a/public/images/devices/CCT595011.png and b/public/images/devices/CCT595011.png differ diff --git a/public/images/devices/CCT711119.png b/public/images/devices/CCT711119.png index b70a35d301e8a..3d38ac214f862 100644 Binary files a/public/images/devices/CCT711119.png and b/public/images/devices/CCT711119.png differ diff --git a/public/images/devices/CCTFR6400.png b/public/images/devices/CCTFR6400.png index 6c2751a1cac45..6aa45fab516d5 100644 Binary files a/public/images/devices/CCTFR6400.png and b/public/images/devices/CCTFR6400.png differ diff --git a/public/images/devices/CCTFR6700.png b/public/images/devices/CCTFR6700.png index 649ff5064e549..6addaa41c3d90 100644 Binary files a/public/images/devices/CCTFR6700.png and b/public/images/devices/CCTFR6700.png differ diff --git a/public/images/devices/CM001.png b/public/images/devices/CM001.png index 16f0e3223df2f..387deb9291231 100644 Binary files a/public/images/devices/CM001.png and b/public/images/devices/CM001.png differ diff --git a/public/images/devices/CM10ZW.png b/public/images/devices/CM10ZW.png index 1d1bc5b937d4d..acb05cdc3ba2f 100644 Binary files a/public/images/devices/CM10ZW.png and b/public/images/devices/CM10ZW.png differ diff --git a/public/images/devices/CMA30035.png b/public/images/devices/CMA30035.png index 7db946d8f14f4..f4deddeb5e647 100644 Binary files a/public/images/devices/CMA30035.png and b/public/images/devices/CMA30035.png differ diff --git a/public/images/devices/CMA30036.png b/public/images/devices/CMA30036.png index d45434915556b..33ff73ecf6368 100644 Binary files a/public/images/devices/CMA30036.png and b/public/images/devices/CMA30036.png differ diff --git a/public/images/devices/CMD900LE.png b/public/images/devices/CMD900LE.png index bfae9c3858b83..c738f32f2d502 100644 Binary files a/public/images/devices/CMD900LE.png and b/public/images/devices/CMD900LE.png differ diff --git a/public/images/devices/CO-8ZBS.png b/public/images/devices/CO-8ZBS.png index 259e42bcc4b4e..be0ba3cc35e07 100644 Binary files a/public/images/devices/CO-8ZBS.png and b/public/images/devices/CO-8ZBS.png differ diff --git a/public/images/devices/CP180335E-01.png b/public/images/devices/CP180335E-01.png index 4aeb0f8a0ce8b..7e35bfe77e3ae 100644 Binary files a/public/images/devices/CP180335E-01.png and b/public/images/devices/CP180335E-01.png differ diff --git a/public/images/devices/CR11S8UZ.png b/public/images/devices/CR11S8UZ.png index 2a4bab134266e..755a97377ecfd 100644 Binary files a/public/images/devices/CR11S8UZ.png and b/public/images/devices/CR11S8UZ.png differ diff --git a/public/images/devices/CR701-YZ.png b/public/images/devices/CR701-YZ.png index b0683551c86b5..bd60d4dbb623c 100644 Binary files a/public/images/devices/CR701-YZ.png and b/public/images/devices/CR701-YZ.png differ diff --git a/public/images/devices/CS-Z-CZ-2402.png b/public/images/devices/CS-Z-CZ-2402.png index ef624af3e6d07..7dd47467fffcc 100644 Binary files a/public/images/devices/CS-Z-CZ-2402.png and b/public/images/devices/CS-Z-CZ-2402.png differ diff --git a/public/images/devices/CS100.png b/public/images/devices/CS100.png index 4bc1dfeb6b36d..7026df949d2ba 100644 Binary files a/public/images/devices/CS100.png and b/public/images/devices/CS100.png differ diff --git a/public/images/devices/CSLC601-D-E.png b/public/images/devices/CSLC601-D-E.png index 89951d2b38be3..97b961b5d6279 100644 Binary files a/public/images/devices/CSLC601-D-E.png and b/public/images/devices/CSLC601-D-E.png differ diff --git a/public/images/devices/CSM-300ZB.png b/public/images/devices/CSM-300ZB.png index 89d2713dd9ee3..905b7b51db6f9 100644 Binary files a/public/images/devices/CSM-300ZB.png and b/public/images/devices/CSM-300ZB.png differ diff --git a/public/images/devices/CSM-300ZB_V2.png b/public/images/devices/CSM-300ZB_V2.png index a2ab766d7ca60..d7caa3450894d 100644 Binary files a/public/images/devices/CSM-300ZB_V2.png and b/public/images/devices/CSM-300ZB_V2.png differ diff --git a/public/images/devices/CTHS-317-ET.png b/public/images/devices/CTHS-317-ET.png index 834dcb58166de..5e84781a25309 100644 Binary files a/public/images/devices/CTHS-317-ET.png and b/public/images/devices/CTHS-317-ET.png differ diff --git a/public/images/devices/CTL-R1-TY-Zigbee.png b/public/images/devices/CTL-R1-TY-Zigbee.png index 207a97fedf876..fe7770b235add 100644 Binary files a/public/images/devices/CTL-R1-TY-Zigbee.png and b/public/images/devices/CTL-R1-TY-Zigbee.png differ diff --git a/public/images/devices/CTR.UBX.png b/public/images/devices/CTR.UBX.png index 9fec00ca4a742..3994baea98fc5 100644 Binary files a/public/images/devices/CTR.UBX.png and b/public/images/devices/CTR.UBX.png differ diff --git a/public/images/devices/CV01A.png b/public/images/devices/CV01A.png index dec760f9adda0..efe20c08d4c0c 100644 Binary files a/public/images/devices/CV01A.png and b/public/images/devices/CV01A.png differ diff --git a/public/images/devices/Co020.png b/public/images/devices/Co020.png index 50deead4c32e9..1a293541f70f7 100644 Binary files a/public/images/devices/Co020.png and b/public/images/devices/Co020.png differ diff --git a/public/images/devices/D086-ZG.png b/public/images/devices/D086-ZG.png index 0272fa53c2483..e7547938c2798 100644 Binary files a/public/images/devices/D086-ZG.png and b/public/images/devices/D086-ZG.png differ diff --git a/public/images/devices/D1.png b/public/images/devices/D1.png index 3ffa58494c9ed..40be18d0ca88a 100644 Binary files a/public/images/devices/D1.png and b/public/images/devices/D1.png differ diff --git a/public/images/devices/D1523.png b/public/images/devices/D1523.png index 62cd586afc0fb..6383acd685022 100644 Binary files a/public/images/devices/D1523.png and b/public/images/devices/D1523.png differ diff --git a/public/images/devices/D1531.png b/public/images/devices/D1531.png index b3279beb0efb7..cd5fbfbd287d9 100644 Binary files a/public/images/devices/D1531.png and b/public/images/devices/D1531.png differ diff --git a/public/images/devices/D1532.png b/public/images/devices/D1532.png index ded6bbddc49ed..9dc0a8d9487e3 100644 Binary files a/public/images/devices/D1532.png and b/public/images/devices/D1532.png differ diff --git a/public/images/devices/D1533.png b/public/images/devices/D1533.png index c81fa714b7fcb..16aff744e84d6 100644 Binary files a/public/images/devices/D1533.png and b/public/images/devices/D1533.png differ diff --git a/public/images/devices/D1542.png b/public/images/devices/D1542.png index 2db049d91f87c..1021493ad35c4 100644 Binary files a/public/images/devices/D1542.png and b/public/images/devices/D1542.png differ diff --git a/public/images/devices/D1821.png b/public/images/devices/D1821.png index baf9bd7cc7dcc..84ecc462835e8 100644 Binary files a/public/images/devices/D1821.png and b/public/images/devices/D1821.png differ diff --git a/public/images/devices/D3-DPWK-TY.png b/public/images/devices/D3-DPWK-TY.png index b47eecf5da682..817eff6332c35 100644 Binary files a/public/images/devices/D3-DPWK-TY.png and b/public/images/devices/D3-DPWK-TY.png differ diff --git a/public/images/devices/DAC2161C.png b/public/images/devices/DAC2161C.png index be2dc26c85168..5501e0754004e 100644 Binary files a/public/images/devices/DAC2161C.png and b/public/images/devices/DAC2161C.png differ diff --git a/public/images/devices/DCH-B112.png b/public/images/devices/DCH-B112.png index 6c3ea63a0ffd8..8094734f619ff 100644 Binary files a/public/images/devices/DCH-B112.png and b/public/images/devices/DCH-B112.png differ diff --git a/public/images/devices/DD10Z.png b/public/images/devices/DD10Z.png index 90379fca999d6..9d43a7b60ba27 100644 Binary files a/public/images/devices/DD10Z.png and b/public/images/devices/DD10Z.png differ diff --git a/public/images/devices/DDS238-2.png b/public/images/devices/DDS238-2.png index 7e4b9a3fffe95..7626ab4a1ae4d 100644 Binary files a/public/images/devices/DDS238-2.png and b/public/images/devices/DDS238-2.png differ diff --git a/public/images/devices/DFZ10044.png b/public/images/devices/DFZ10044.png index c4436d68bcab2..a2048cc92a105 100644 Binary files a/public/images/devices/DFZ10044.png and b/public/images/devices/DFZ10044.png differ diff --git a/public/images/devices/DG15A-1BW.png b/public/images/devices/DG15A-1BW.png index c084aa4c703ef..f8cfee1f586d8 100644 Binary files a/public/images/devices/DG15A-1BW.png and b/public/images/devices/DG15A-1BW.png differ diff --git a/public/images/devices/DG15S-1BW.png b/public/images/devices/DG15S-1BW.png index 580e1a0633a6b..80bbcfdc79f4f 100644 Binary files a/public/images/devices/DG15S-1BW.png and b/public/images/devices/DG15S-1BW.png differ diff --git a/public/images/devices/DG6HD-1BW.png b/public/images/devices/DG6HD-1BW.png index ca008dbb0d5e5..3e6084d6cbc29 100644 Binary files a/public/images/devices/DG6HD-1BW.png and b/public/images/devices/DG6HD-1BW.png differ diff --git a/public/images/devices/DIYRuZ_AirSense.png b/public/images/devices/DIYRuZ_AirSense.png index 6b49b5710ea76..2cebf4d2319d2 100644 Binary files a/public/images/devices/DIYRuZ_AirSense.png and b/public/images/devices/DIYRuZ_AirSense.png differ diff --git a/public/images/devices/DIYRuZ_Flower.png b/public/images/devices/DIYRuZ_Flower.png index 0e9a44228c190..7431e210c3b01 100644 Binary files a/public/images/devices/DIYRuZ_Flower.png and b/public/images/devices/DIYRuZ_Flower.png differ diff --git a/public/images/devices/DIYRuZ_FreePad.png b/public/images/devices/DIYRuZ_FreePad.png index 21f7e07871cba..cdd9b8190f362 100644 Binary files a/public/images/devices/DIYRuZ_FreePad.png and b/public/images/devices/DIYRuZ_FreePad.png differ diff --git a/public/images/devices/DIYRuZ_Geiger.png b/public/images/devices/DIYRuZ_Geiger.png index fae1ae6c14bc2..30c4ded3db55e 100644 Binary files a/public/images/devices/DIYRuZ_Geiger.png and b/public/images/devices/DIYRuZ_Geiger.png differ diff --git a/public/images/devices/DIYRuZ_KEYPAD20.png b/public/images/devices/DIYRuZ_KEYPAD20.png index 0a63d87ee63e8..41fe048e1c461 100644 Binary files a/public/images/devices/DIYRuZ_KEYPAD20.png and b/public/images/devices/DIYRuZ_KEYPAD20.png differ diff --git a/public/images/devices/DIYRuZ_R4_5.png b/public/images/devices/DIYRuZ_R4_5.png index 92806c908ec03..6b88204fc1da9 100644 Binary files a/public/images/devices/DIYRuZ_R4_5.png and b/public/images/devices/DIYRuZ_R4_5.png differ diff --git a/public/images/devices/DIYRuZ_R8_8.png b/public/images/devices/DIYRuZ_R8_8.png index 3ff6505bb58df..7d75bd576a7c7 100644 Binary files a/public/images/devices/DIYRuZ_R8_8.png and b/public/images/devices/DIYRuZ_R8_8.png differ diff --git a/public/images/devices/DIYRuZ_RT.png b/public/images/devices/DIYRuZ_RT.png index c2a2288e1bf24..23fd25706a774 100644 Binary files a/public/images/devices/DIYRuZ_RT.png and b/public/images/devices/DIYRuZ_RT.png differ diff --git a/public/images/devices/DIYRuZ_Zintercom.png b/public/images/devices/DIYRuZ_Zintercom.png index 0703033943eff..816b7cb65414b 100644 Binary files a/public/images/devices/DIYRuZ_Zintercom.png and b/public/images/devices/DIYRuZ_Zintercom.png differ diff --git a/public/images/devices/DIYRuZ_magnet.png b/public/images/devices/DIYRuZ_magnet.png index ec8185e02ae8c..7c59ea601d144 100644 Binary files a/public/images/devices/DIYRuZ_magnet.png and b/public/images/devices/DIYRuZ_magnet.png differ diff --git a/public/images/devices/DIYRuZ_rspm.png b/public/images/devices/DIYRuZ_rspm.png index 74a99448a974f..b314e442d0856 100644 Binary files a/public/images/devices/DIYRuZ_rspm.png and b/public/images/devices/DIYRuZ_rspm.png differ diff --git a/public/images/devices/DL-110-N.png b/public/images/devices/DL-110-N.png index eb6a177b1fdc7..553fc32d95fe6 100644 Binary files a/public/images/devices/DL-110-N.png and b/public/images/devices/DL-110-N.png differ diff --git a/public/images/devices/DL-110-W.png b/public/images/devices/DL-110-W.png index eb6a177b1fdc7..553fc32d95fe6 100644 Binary files a/public/images/devices/DL-110-W.png and b/public/images/devices/DL-110-W.png differ diff --git a/public/images/devices/DL001.png b/public/images/devices/DL001.png index cbeebd92ecf69..5533539be8da8 100644 Binary files a/public/images/devices/DL001.png and b/public/images/devices/DL001.png differ diff --git a/public/images/devices/DL15S-1BZ.png b/public/images/devices/DL15S-1BZ.png index 8b87ef71347a8..89849acb5f4bf 100644 Binary files a/public/images/devices/DL15S-1BZ.png and b/public/images/devices/DL15S-1BZ.png differ diff --git a/public/images/devices/DL41-03-10-R-ZB.png b/public/images/devices/DL41-03-10-R-ZB.png index d329223f2df58..1dfae98f65fb0 100644 Binary files a/public/images/devices/DL41-03-10-R-ZB.png and b/public/images/devices/DL41-03-10-R-ZB.png differ diff --git a/public/images/devices/DLM-300Z.png b/public/images/devices/DLM-300Z.png index 1771161c5285d..ed947178032b9 100644 Binary files a/public/images/devices/DLM-300Z.png and b/public/images/devices/DLM-300Z.png differ diff --git a/public/images/devices/DM-A60F.png b/public/images/devices/DM-A60F.png index 04673d668cc00..4550c3b84b9bb 100644 Binary files a/public/images/devices/DM-A60F.png and b/public/images/devices/DM-A60F.png differ diff --git a/public/images/devices/DM10ZW.png b/public/images/devices/DM10ZW.png index c94fc20adfc10..0835d203e0683 100644 Binary files a/public/images/devices/DM10ZW.png and b/public/images/devices/DM10ZW.png differ diff --git a/public/images/devices/DM2500ZB.png b/public/images/devices/DM2500ZB.png index 5c730f07886a5..402b997835364 100644 Binary files a/public/images/devices/DM2500ZB.png and b/public/images/devices/DM2500ZB.png differ diff --git a/public/images/devices/DMS-300ZB.png b/public/images/devices/DMS-300ZB.png index 88a8752ff38a6..d9cc9f437f99f 100644 Binary files a/public/images/devices/DMS-300ZB.png and b/public/images/devices/DMS-300ZB.png differ diff --git a/public/images/devices/DNCKATSD001.png b/public/images/devices/DNCKATSD001.png index f39dcf2b860f4..e221cc7ef2112 100644 Binary files a/public/images/devices/DNCKATSD001.png and b/public/images/devices/DNCKATSD001.png differ diff --git a/public/images/devices/DNCKATSW001.png b/public/images/devices/DNCKATSW001.png index 7981c747a311e..40a72eb690509 100644 Binary files a/public/images/devices/DNCKATSW001.png and b/public/images/devices/DNCKATSW001.png differ diff --git a/public/images/devices/DNCKATSW002.png b/public/images/devices/DNCKATSW002.png index 7981c747a311e..40a72eb690509 100644 Binary files a/public/images/devices/DNCKATSW002.png and b/public/images/devices/DNCKATSW002.png differ diff --git a/public/images/devices/DNCKATSW003.png b/public/images/devices/DNCKATSW003.png index 7981c747a311e..40a72eb690509 100644 Binary files a/public/images/devices/DNCKATSW003.png and b/public/images/devices/DNCKATSW003.png differ diff --git a/public/images/devices/DNCKATSW004.png b/public/images/devices/DNCKATSW004.png index 7981c747a311e..40a72eb690509 100644 Binary files a/public/images/devices/DNCKATSW004.png and b/public/images/devices/DNCKATSW004.png differ diff --git a/public/images/devices/DS-111.png b/public/images/devices/DS-111.png index 912ad303a233a..6f15b96ae2ea8 100644 Binary files a/public/images/devices/DS-111.png and b/public/images/devices/DS-111.png differ diff --git a/public/images/devices/DS04.png b/public/images/devices/DS04.png index cabc56b46c488..c85f06804ba95 100644 Binary files a/public/images/devices/DS04.png and b/public/images/devices/DS04.png differ diff --git a/public/images/devices/DS20Z07B.png b/public/images/devices/DS20Z07B.png index e81b3b0113b80..85431ced2564c 100644 Binary files a/public/images/devices/DS20Z07B.png and b/public/images/devices/DS20Z07B.png differ diff --git a/public/images/devices/DSM-300ZB.png b/public/images/devices/DSM-300ZB.png index 44ce8bb12c561..f9031151f8308 100644 Binary files a/public/images/devices/DSM-300ZB.png and b/public/images/devices/DSM-300ZB.png differ diff --git a/public/images/devices/DSZ01.png b/public/images/devices/DSZ01.png index 6d556afec16cf..4b1bc8f39a1a3 100644 Binary files a/public/images/devices/DSZ01.png and b/public/images/devices/DSZ01.png differ diff --git a/public/images/devices/DT82LEMA-1.2N.png b/public/images/devices/DT82LEMA-1.2N.png index dec760f9adda0..efe20c08d4c0c 100644 Binary files a/public/images/devices/DT82LEMA-1.2N.png and b/public/images/devices/DT82LEMA-1.2N.png differ diff --git a/public/images/devices/DTB190502A1.png b/public/images/devices/DTB190502A1.png index dbacf83a82f24..a315131a20c05 100644 Binary files a/public/images/devices/DTB190502A1.png and b/public/images/devices/DTB190502A1.png differ diff --git a/public/images/devices/DTZ09039.png b/public/images/devices/DTZ09039.png index 6da21d6ef27b0..d4405ec9123f4 100644 Binary files a/public/images/devices/DTZ09039.png and b/public/images/devices/DTZ09039.png differ diff --git a/public/images/devices/DWS003.png b/public/images/devices/DWS003.png index 84575637c18ed..654760fbf38aa 100644 Binary files a/public/images/devices/DWS003.png and b/public/images/devices/DWS003.png differ diff --git a/public/images/devices/DY-RQ500A.png b/public/images/devices/DY-RQ500A.png index f753868271e0a..ebb91e3522e4c 100644 Binary files a/public/images/devices/DY-RQ500A.png and b/public/images/devices/DY-RQ500A.png differ diff --git a/public/images/devices/DZ8.png b/public/images/devices/DZ8.png index 4faa079f0e7b1..920f0daf519cd 100644 Binary files a/public/images/devices/DZ8.png and b/public/images/devices/DZ8.png differ diff --git a/public/images/devices/E004006.png b/public/images/devices/E004006.png index 00c9a1bd1d437..937234905de6c 100644 Binary files a/public/images/devices/E004006.png and b/public/images/devices/E004006.png differ diff --git a/public/images/devices/E11-G13.png b/public/images/devices/E11-G13.png index 263b50637fcc8..323689fae0e21 100644 Binary files a/public/images/devices/E11-G13.png and b/public/images/devices/E11-G13.png differ diff --git a/public/images/devices/E11-G23-E11-G33.png b/public/images/devices/E11-G23-E11-G33.png index 0b4e8eefc1041..540018ad1756a 100644 Binary files a/public/images/devices/E11-G23-E11-G33.png and b/public/images/devices/E11-G23-E11-G33.png differ diff --git a/public/images/devices/E11-N13-E11-N13A-E11-N14-E11-N14A.png b/public/images/devices/E11-N13-E11-N13A-E11-N14-E11-N14A.png index e55c0dd8fbd1b..05b4932d518e9 100644 Binary files a/public/images/devices/E11-N13-E11-N13A-E11-N14-E11-N14A.png and b/public/images/devices/E11-N13-E11-N13A-E11-N14-E11-N14A.png differ diff --git a/public/images/devices/E11-N1EA.png b/public/images/devices/E11-N1EA.png index 706172e6ac9f8..660317f7aac88 100644 Binary files a/public/images/devices/E11-N1EA.png and b/public/images/devices/E11-N1EA.png differ diff --git a/public/images/devices/E11-N1G.png b/public/images/devices/E11-N1G.png index 1e5ab18a3adcb..ec7b86e2082a9 100644 Binary files a/public/images/devices/E11-N1G.png and b/public/images/devices/E11-N1G.png differ diff --git a/public/images/devices/E11-U21U31.png b/public/images/devices/E11-U21U31.png index 3c0f993e181eb..3ebac84d14a8e 100644 Binary files a/public/images/devices/E11-U21U31.png and b/public/images/devices/E11-U21U31.png differ diff --git a/public/images/devices/E11-U2E.png b/public/images/devices/E11-U2E.png index 9c759d2a4d1f2..2e4f671637c95 100644 Binary files a/public/images/devices/E11-U2E.png and b/public/images/devices/E11-U2E.png differ diff --git a/public/images/devices/E11-U3E.png b/public/images/devices/E11-U3E.png index 4e398606af488..c7da3b3314b2d 100644 Binary files a/public/images/devices/E11-U3E.png and b/public/images/devices/E11-U3E.png differ diff --git a/public/images/devices/E12-N14.png b/public/images/devices/E12-N14.png index 134871be35292..7fa13634ff154 100644 Binary files a/public/images/devices/E12-N14.png and b/public/images/devices/E12-N14.png differ diff --git a/public/images/devices/E12-N1E.png b/public/images/devices/E12-N1E.png index bed76d1ee9ca4..93013a10836d5 100644 Binary files a/public/images/devices/E12-N1E.png and b/public/images/devices/E12-N1E.png differ diff --git a/public/images/devices/E13-N11.png b/public/images/devices/E13-N11.png index 0a735873e41b6..97d3cbd7111f6 100644 Binary files a/public/images/devices/E13-N11.png and b/public/images/devices/E13-N11.png differ diff --git a/public/images/devices/E1525-E1745.png b/public/images/devices/E1525-E1745.png index 54d9aee94b34d..be26cdd0b3e16 100644 Binary files a/public/images/devices/E1525-E1745.png and b/public/images/devices/E1525-E1745.png differ diff --git a/public/images/devices/E1603-E1702-E1708.png b/public/images/devices/E1603-E1702-E1708.png index 0321058d67089..50e0a833fc9b2 100644 Binary files a/public/images/devices/E1603-E1702-E1708.png and b/public/images/devices/E1603-E1702-E1708.png differ diff --git a/public/images/devices/E1743.png b/public/images/devices/E1743.png index f76ba87aac27a..f0fa85cd67624 100644 Binary files a/public/images/devices/E1743.png and b/public/images/devices/E1743.png differ diff --git a/public/images/devices/E1744.png b/public/images/devices/E1744.png index 9b8139b250a74..b7642727c5df4 100644 Binary files a/public/images/devices/E1744.png and b/public/images/devices/E1744.png differ diff --git a/public/images/devices/E1757.png b/public/images/devices/E1757.png index f05c273fbb248..eb693581c8e8f 100644 Binary files a/public/images/devices/E1757.png and b/public/images/devices/E1757.png differ diff --git a/public/images/devices/E1766.png b/public/images/devices/E1766.png index 35f3e4c51ca36..47c54b400fb8f 100644 Binary files a/public/images/devices/E1766.png and b/public/images/devices/E1766.png differ diff --git a/public/images/devices/E1812.png b/public/images/devices/E1812.png index f4aa3421f2d1f..86e13f989918a 100644 Binary files a/public/images/devices/E1812.png and b/public/images/devices/E1812.png differ diff --git a/public/images/devices/E1836.png b/public/images/devices/E1836.png index c2d06a8c87031..4eae56cb0d22a 100644 Binary files a/public/images/devices/E1836.png and b/public/images/devices/E1836.png differ diff --git a/public/images/devices/E1841.png b/public/images/devices/E1841.png index 48133472704f3..cc4b0cc59df75 100644 Binary files a/public/images/devices/E1841.png and b/public/images/devices/E1841.png differ diff --git a/public/images/devices/E1842.png b/public/images/devices/E1842.png index 05327752d895f..e59c994ff06dc 100644 Binary files a/public/images/devices/E1842.png and b/public/images/devices/E1842.png differ diff --git a/public/images/devices/E1926.png b/public/images/devices/E1926.png index 429edd163d99b..9cd808e0a4c1f 100644 Binary files a/public/images/devices/E1926.png and b/public/images/devices/E1926.png differ diff --git a/public/images/devices/E1ACA4ABE38A.png b/public/images/devices/E1ACA4ABE38A.png index f18e1d004b966..9b641780c4549 100644 Binary files a/public/images/devices/E1ACA4ABE38A.png and b/public/images/devices/E1ACA4ABE38A.png differ diff --git a/public/images/devices/E1C-NB6.png b/public/images/devices/E1C-NB6.png index 18fc80afc6290..4980572e60eda 100644 Binary files a/public/images/devices/E1C-NB6.png and b/public/images/devices/E1C-NB6.png differ diff --git a/public/images/devices/E1C-NB7.png b/public/images/devices/E1C-NB7.png index 4cbd0e690bd66..31e23a393c5c9 100644 Binary files a/public/images/devices/E1C-NB7.png and b/public/images/devices/E1C-NB7.png differ diff --git a/public/images/devices/E1D-G73WNA.png b/public/images/devices/E1D-G73WNA.png index 2ded4d2a2fa00..f272e805b4551 100644 Binary files a/public/images/devices/E1D-G73WNA.png and b/public/images/devices/E1D-G73WNA.png differ diff --git a/public/images/devices/E1E-G7F.png b/public/images/devices/E1E-G7F.png index e3a9e2a26dcfc..65874606fb973 100644 Binary files a/public/images/devices/E1E-G7F.png and b/public/images/devices/E1E-G7F.png differ diff --git a/public/images/devices/E1F-N5E.png b/public/images/devices/E1F-N5E.png index 9b1b080956090..f2421b1a89b06 100644 Binary files a/public/images/devices/E1F-N5E.png and b/public/images/devices/E1F-N5E.png differ diff --git a/public/images/devices/E1F-N9G.png b/public/images/devices/E1F-N9G.png index 15008921887af..cc725e219d36b 100644 Binary files a/public/images/devices/E1F-N9G.png and b/public/images/devices/E1F-N9G.png differ diff --git a/public/images/devices/E1G-G8E.png b/public/images/devices/E1G-G8E.png index 147b4ed3d5378..54696755f99eb 100644 Binary files a/public/images/devices/E1G-G8E.png and b/public/images/devices/E1G-G8E.png differ diff --git a/public/images/devices/E2.png b/public/images/devices/E2.png index 96f2ecf89bf77..68fd05114e684 100644 Binary files a/public/images/devices/E2.png and b/public/images/devices/E2.png differ diff --git a/public/images/devices/E2001-E2002.png b/public/images/devices/E2001-E2002.png index 02813b9ce0440..649fcdab89948 100644 Binary files a/public/images/devices/E2001-E2002.png and b/public/images/devices/E2001-E2002.png differ diff --git a/public/images/devices/E2007.png b/public/images/devices/E2007.png index 2939bfbb41f77..2e132c0991c54 100644 Binary files a/public/images/devices/E2007.png and b/public/images/devices/E2007.png differ diff --git a/public/images/devices/E21-N13A.png b/public/images/devices/E21-N13A.png index 6e52cd6079a92..9f7d0a1261b77 100644 Binary files a/public/images/devices/E21-N13A.png and b/public/images/devices/E21-N13A.png differ diff --git a/public/images/devices/E21-N1EA.png b/public/images/devices/E21-N1EA.png index 706172e6ac9f8..660317f7aac88 100644 Binary files a/public/images/devices/E21-N1EA.png and b/public/images/devices/E21-N1EA.png differ diff --git a/public/images/devices/E2102.png b/public/images/devices/E2102.png index ff7e215ba57cd..1bd3e8eae5c8d 100644 Binary files a/public/images/devices/E2102.png and b/public/images/devices/E2102.png differ diff --git a/public/images/devices/E2103.png b/public/images/devices/E2103.png index b741da596483b..3d3e498359aae 100644 Binary files a/public/images/devices/E2103.png and b/public/images/devices/E2103.png differ diff --git a/public/images/devices/E220-KR4N0Z0-HA.png b/public/images/devices/E220-KR4N0Z0-HA.png index 5d35a06060754..4d050dd27e588 100644 Binary files a/public/images/devices/E220-KR4N0Z0-HA.png and b/public/images/devices/E220-KR4N0Z0-HA.png differ diff --git a/public/images/devices/E2D-G73.png b/public/images/devices/E2D-G73.png index 05980f946f894..8a317d6033a4d 100644 Binary files a/public/images/devices/E2D-G73.png and b/public/images/devices/E2D-G73.png differ diff --git a/public/images/devices/E4.png b/public/images/devices/E4.png index 74f31a7bd216c..8ebadf50813ea 100644 Binary files a/public/images/devices/E4.png and b/public/images/devices/E4.png differ diff --git a/public/images/devices/E5.png b/public/images/devices/E5.png index 0d3728b0ebf53..ddf8b48b80324 100644 Binary files a/public/images/devices/E5.png and b/public/images/devices/E5.png differ diff --git a/public/images/devices/E6.png b/public/images/devices/E6.png index 3f0421e0418e2..343d5484ba32c 100644 Binary files a/public/images/devices/E6.png and b/public/images/devices/E6.png differ diff --git a/public/images/devices/EAKCB-T-M-Z.png b/public/images/devices/EAKCB-T-M-Z.png index 5c4d94ce1547a..5123e562d32de 100644 Binary files a/public/images/devices/EAKCB-T-M-Z.png and b/public/images/devices/EAKCB-T-M-Z.png differ diff --git a/public/images/devices/EB-E14-FLA-CCT.png b/public/images/devices/EB-E14-FLA-CCT.png index 48ccc2bb90fe7..3152b5d8470c3 100644 Binary files a/public/images/devices/EB-E14-FLA-CCT.png and b/public/images/devices/EB-E14-FLA-CCT.png differ diff --git a/public/images/devices/EB-E14-P45-RGBW.png b/public/images/devices/EB-E14-P45-RGBW.png index bbedf19b1987e..a410422975ca4 100644 Binary files a/public/images/devices/EB-E14-P45-RGBW.png and b/public/images/devices/EB-E14-P45-RGBW.png differ diff --git a/public/images/devices/EB-E27-A60-CCT-FC.png b/public/images/devices/EB-E27-A60-CCT-FC.png index 4b89afbf0cdc7..4b2689100378e 100644 Binary files a/public/images/devices/EB-E27-A60-CCT-FC.png and b/public/images/devices/EB-E27-A60-CCT-FC.png differ diff --git a/public/images/devices/EB-E27-A60-CCT.png b/public/images/devices/EB-E27-A60-CCT.png index 8f1531d5b1b25..cc02de7b303f2 100644 Binary files a/public/images/devices/EB-E27-A60-CCT.png and b/public/images/devices/EB-E27-A60-CCT.png differ diff --git a/public/images/devices/EB-E27-A60-RGBW.png b/public/images/devices/EB-E27-A60-RGBW.png index ff0f6579b9456..1ca3a5a3be7dd 100644 Binary files a/public/images/devices/EB-E27-A60-RGBW.png and b/public/images/devices/EB-E27-A60-RGBW.png differ diff --git a/public/images/devices/EB-E27-G95-CCT-FV.png b/public/images/devices/EB-E27-G95-CCT-FV.png index a190b19430b4e..1bdf99d5c86a4 100644 Binary files a/public/images/devices/EB-E27-G95-CCT-FV.png and b/public/images/devices/EB-E27-G95-CCT-FV.png differ diff --git a/public/images/devices/EB-E27-ST64-CCT-FV.png b/public/images/devices/EB-E27-ST64-CCT-FV.png index 6f7b5891ad7fc..5408ce942bebd 100644 Binary files a/public/images/devices/EB-E27-ST64-CCT-FV.png and b/public/images/devices/EB-E27-ST64-CCT-FV.png differ diff --git a/public/images/devices/EB-GU10-MR16-CCT.png b/public/images/devices/EB-GU10-MR16-CCT.png index c7c5f7d5f73be..1d4b9f615ac9f 100644 Binary files a/public/images/devices/EB-GU10-MR16-CCT.png and b/public/images/devices/EB-GU10-MR16-CCT.png differ diff --git a/public/images/devices/EB-GU10-MR16-RGBW.png b/public/images/devices/EB-GU10-MR16-RGBW.png index 6f3ba4cb8d707..c139e0be9ce51 100644 Binary files a/public/images/devices/EB-GU10-MR16-RGBW.png and b/public/images/devices/EB-GU10-MR16-RGBW.png differ diff --git a/public/images/devices/ECW-100-A03.png b/public/images/devices/ECW-100-A03.png index f1fad5f887d23..44ff49810819d 100644 Binary files a/public/images/devices/ECW-100-A03.png and b/public/images/devices/ECW-100-A03.png differ diff --git a/public/images/devices/ED-10010.png b/public/images/devices/ED-10010.png index 381b087ccd822..7e5e24411f9fc 100644 Binary files a/public/images/devices/ED-10010.png and b/public/images/devices/ED-10010.png differ diff --git a/public/images/devices/ED-10011.png b/public/images/devices/ED-10011.png index 27eb55e9a40e5..44756fd450345 100644 Binary files a/public/images/devices/ED-10011.png and b/public/images/devices/ED-10011.png differ diff --git a/public/images/devices/ED-10012.png b/public/images/devices/ED-10012.png index 65170644793b3..302f0a2093294 100644 Binary files a/public/images/devices/ED-10012.png and b/public/images/devices/ED-10012.png differ diff --git a/public/images/devices/ED-10013.png b/public/images/devices/ED-10013.png index b1849aa671615..353686decaa40 100644 Binary files a/public/images/devices/ED-10013.png and b/public/images/devices/ED-10013.png differ diff --git a/public/images/devices/ED-10014.png b/public/images/devices/ED-10014.png index 7d1ea1d5fa46b..5c0e123c7f6f9 100644 Binary files a/public/images/devices/ED-10014.png and b/public/images/devices/ED-10014.png differ diff --git a/public/images/devices/ED-10015.png b/public/images/devices/ED-10015.png index dad0cc5ac98e5..08dd85cd71091 100644 Binary files a/public/images/devices/ED-10015.png and b/public/images/devices/ED-10015.png differ diff --git a/public/images/devices/ED-10041.png b/public/images/devices/ED-10041.png index a9287a827e146..62bc965a7a0d7 100644 Binary files a/public/images/devices/ED-10041.png and b/public/images/devices/ED-10041.png differ diff --git a/public/images/devices/ED-10042.png b/public/images/devices/ED-10042.png index b92247d1a7602..35ddd8789ff1f 100644 Binary files a/public/images/devices/ED-10042.png and b/public/images/devices/ED-10042.png differ diff --git a/public/images/devices/ED2004-012.png b/public/images/devices/ED2004-012.png index a56a3fb681e46..452e867b549d0 100644 Binary files a/public/images/devices/ED2004-012.png and b/public/images/devices/ED2004-012.png differ diff --git a/public/images/devices/EDM-1ZBA-EU.png b/public/images/devices/EDM-1ZBA-EU.png index 04c5a00be97bc..b17ed6211d165 100644 Binary files a/public/images/devices/EDM-1ZBA-EU.png and b/public/images/devices/EDM-1ZBA-EU.png differ diff --git a/public/images/devices/EDM-1ZBB-EU.png b/public/images/devices/EDM-1ZBB-EU.png index cb53bc292eb43..92d67c4df01a1 100644 Binary files a/public/images/devices/EDM-1ZBB-EU.png and b/public/images/devices/EDM-1ZBB-EU.png differ diff --git a/public/images/devices/EER40030.png b/public/images/devices/EER40030.png index 97f1d4df8f695..df88d55e78081 100644 Binary files a/public/images/devices/EER40030.png and b/public/images/devices/EER40030.png differ diff --git a/public/images/devices/EER42000.png b/public/images/devices/EER42000.png index 73cc6cf2e6e54..dc72e072e70ec 100644 Binary files a/public/images/devices/EER42000.png and b/public/images/devices/EER42000.png differ diff --git a/public/images/devices/EER50000.png b/public/images/devices/EER50000.png index b7fed41b64513..9dcfef9a83995 100644 Binary files a/public/images/devices/EER50000.png and b/public/images/devices/EER50000.png differ diff --git a/public/images/devices/EER51000.png b/public/images/devices/EER51000.png index fb098e3278b9f..4d5a94f6ae3e5 100644 Binary files a/public/images/devices/EER51000.png and b/public/images/devices/EER51000.png differ diff --git a/public/images/devices/EER53000.png b/public/images/devices/EER53000.png index 0164923b2b661..27eaff980c22b 100644 Binary files a/public/images/devices/EER53000.png and b/public/images/devices/EER53000.png differ diff --git a/public/images/devices/EFEKTA_CO2_Smart_Monitor.png b/public/images/devices/EFEKTA_CO2_Smart_Monitor.png index abfebcd1f7dba..b789cd74277f0 100644 Binary files a/public/images/devices/EFEKTA_CO2_Smart_Monitor.png and b/public/images/devices/EFEKTA_CO2_Smart_Monitor.png differ diff --git a/public/images/devices/EFEKTA_PWS.png b/public/images/devices/EFEKTA_PWS.png index a165fa7a0dc59..281eed0dd6be7 100644 Binary files a/public/images/devices/EFEKTA_PWS.png and b/public/images/devices/EFEKTA_PWS.png differ diff --git a/public/images/devices/EFEKTA_PWS_Max.png b/public/images/devices/EFEKTA_PWS_Max.png index fb1823a0e9f47..127da6b0d180b 100644 Binary files a/public/images/devices/EFEKTA_PWS_Max.png and b/public/images/devices/EFEKTA_PWS_Max.png differ diff --git a/public/images/devices/EFEKTA_PWS_MaxPro.png b/public/images/devices/EFEKTA_PWS_MaxPro.png index d587c23ba2a9b..795f38e8d6106 100644 Binary files a/public/images/devices/EFEKTA_PWS_MaxPro.png and b/public/images/devices/EFEKTA_PWS_MaxPro.png differ diff --git a/public/images/devices/EFEKTA_THP.png b/public/images/devices/EFEKTA_THP.png index 645678eee2ac2..db9230982a5ac 100644 Binary files a/public/images/devices/EFEKTA_THP.png and b/public/images/devices/EFEKTA_THP.png differ diff --git a/public/images/devices/EFEKTA_THP_LR.png b/public/images/devices/EFEKTA_THP_LR.png index bdc2add907543..da869fd3da01d 100644 Binary files a/public/images/devices/EFEKTA_THP_LR.png and b/public/images/devices/EFEKTA_THP_LR.png differ diff --git a/public/images/devices/EFEKTA_eFlower_Pro.png b/public/images/devices/EFEKTA_eFlower_Pro.png index a57dab6cfdef2..d7a7a4a1e687c 100644 Binary files a/public/images/devices/EFEKTA_eFlower_Pro.png and b/public/images/devices/EFEKTA_eFlower_Pro.png differ diff --git a/public/images/devices/EFEKTA_eON213wz.png b/public/images/devices/EFEKTA_eON213wz.png index 70e218ea1a74b..cd7a8cd5e2f75 100644 Binary files a/public/images/devices/EFEKTA_eON213wz.png and b/public/images/devices/EFEKTA_eON213wz.png differ diff --git a/public/images/devices/EFEKTA_eON213z.png b/public/images/devices/EFEKTA_eON213z.png index 6005cfd6488c9..a08f45afc6ad3 100644 Binary files a/public/images/devices/EFEKTA_eON213z.png and b/public/images/devices/EFEKTA_eON213z.png differ diff --git a/public/images/devices/EFEKTA_eON29wz.png b/public/images/devices/EFEKTA_eON29wz.png index 8954256049bf2..69f2836fe78f0 100644 Binary files a/public/images/devices/EFEKTA_eON29wz.png and b/public/images/devices/EFEKTA_eON29wz.png differ diff --git a/public/images/devices/EFEKTA_ePWS.png b/public/images/devices/EFEKTA_ePWS.png index d381e1607aa4a..6566cb5b72779 100644 Binary files a/public/images/devices/EFEKTA_ePWS.png and b/public/images/devices/EFEKTA_ePWS.png differ diff --git a/public/images/devices/EFEKTA_eTH102.png b/public/images/devices/EFEKTA_eTH102.png index 5a0c17efbe926..87c392f89eb81 100644 Binary files a/public/images/devices/EFEKTA_eTH102.png and b/public/images/devices/EFEKTA_eTH102.png differ diff --git a/public/images/devices/EFEKTA_iAQ.png b/public/images/devices/EFEKTA_iAQ.png index 6588a7908d272..989f4d5b21284 100644 Binary files a/public/images/devices/EFEKTA_iAQ.png and b/public/images/devices/EFEKTA_iAQ.png differ diff --git a/public/images/devices/EFEKTA_miniPWS.png b/public/images/devices/EFEKTA_miniPWS.png index 69da8e15daec5..ee1369064b0c1 100644 Binary files a/public/images/devices/EFEKTA_miniPWS.png and b/public/images/devices/EFEKTA_miniPWS.png differ diff --git a/public/images/devices/EFR32MG21.Router.png b/public/images/devices/EFR32MG21.Router.png index 429ab9d9d3ce0..096ac3f859322 100644 Binary files a/public/images/devices/EFR32MG21.Router.png and b/public/images/devices/EFR32MG21.Router.png differ diff --git a/public/images/devices/EKO05806.png b/public/images/devices/EKO05806.png index 4089a4ff4e362..ae2b4990bcb57 100644 Binary files a/public/images/devices/EKO05806.png and b/public/images/devices/EKO05806.png differ diff --git a/public/images/devices/EKO07259.png b/public/images/devices/EKO07259.png index 6b11ed7cc81ec..2d53d10c7de36 100644 Binary files a/public/images/devices/EKO07259.png and b/public/images/devices/EKO07259.png differ diff --git a/public/images/devices/EKO09716.png b/public/images/devices/EKO09716.png index b8e90c55fbf32..b6aa742b65226 100644 Binary files a/public/images/devices/EKO09716.png and b/public/images/devices/EKO09716.png differ diff --git a/public/images/devices/EKO09738.png b/public/images/devices/EKO09738.png index 4eb12b310812f..0d111623b8b39 100644 Binary files a/public/images/devices/EKO09738.png and b/public/images/devices/EKO09738.png differ diff --git a/public/images/devices/EMIZB-132.png b/public/images/devices/EMIZB-132.png index 05257e682785a..074f158c0702a 100644 Binary files a/public/images/devices/EMIZB-132.png and b/public/images/devices/EMIZB-132.png differ diff --git a/public/images/devices/ERS-10TZBVB-AA.png b/public/images/devices/ERS-10TZBVB-AA.png index 011b312759e20..f60fd81ed0d7b 100644 Binary files a/public/images/devices/ERS-10TZBVB-AA.png and b/public/images/devices/ERS-10TZBVB-AA.png differ diff --git a/public/images/devices/ERS-10TZBVK-AA.png b/public/images/devices/ERS-10TZBVK-AA.png index 2c9ee9796f38d..250d9ffd88529 100644 Binary files a/public/images/devices/ERS-10TZBVK-AA.png and b/public/images/devices/ERS-10TZBVK-AA.png differ diff --git a/public/images/devices/EZ200.png b/public/images/devices/EZ200.png index 47ed70f48fd3b..a4c34fd20681d 100644 Binary files a/public/images/devices/EZ200.png and b/public/images/devices/EZ200.png differ diff --git a/public/images/devices/EasyCode903G2.1.png b/public/images/devices/EasyCode903G2.1.png index 0e3982e5b96a4..2497e1a1ad8bc 100644 Binary files a/public/images/devices/EasyCode903G2.1.png and b/public/images/devices/EasyCode903G2.1.png differ diff --git a/public/images/devices/Eco-Dim.05.png b/public/images/devices/Eco-Dim.05.png index 774f203d12044..27fe8da98e779 100644 Binary files a/public/images/devices/Eco-Dim.05.png and b/public/images/devices/Eco-Dim.05.png differ diff --git a/public/images/devices/Eco-Dim.07-Eco-Dim.10.png b/public/images/devices/Eco-Dim.07-Eco-Dim.10.png index c90e28a1a6787..9cd0ece172cda 100644 Binary files a/public/images/devices/Eco-Dim.07-Eco-Dim.10.png and b/public/images/devices/Eco-Dim.07-Eco-Dim.10.png differ diff --git a/public/images/devices/F-ADT-WTR-1.png b/public/images/devices/F-ADT-WTR-1.png index 89db5305132eb..8bdaaf575d423 100644 Binary files a/public/images/devices/F-ADT-WTR-1.png and b/public/images/devices/F-ADT-WTR-1.png differ diff --git a/public/images/devices/F-APP-UK-V2.png b/public/images/devices/F-APP-UK-V2.png index ab21b89584d03..a19170807ea92 100644 Binary files a/public/images/devices/F-APP-UK-V2.png and b/public/images/devices/F-APP-UK-V2.png differ diff --git a/public/images/devices/F-MLT-US-2.png b/public/images/devices/F-MLT-US-2.png index 537778b313914..15ab73532cff6 100644 Binary files a/public/images/devices/F-MLT-US-2.png and b/public/images/devices/F-MLT-US-2.png differ diff --git a/public/images/devices/F122SB62H22A4.5W.png b/public/images/devices/F122SB62H22A4.5W.png index 1b8527efba47b..6a566e8d8adfe 100644 Binary files a/public/images/devices/F122SB62H22A4.5W.png and b/public/images/devices/F122SB62H22A4.5W.png differ diff --git a/public/images/devices/F20T60A.png b/public/images/devices/F20T60A.png index 3b17f237ec77f..5412360803f0a 100644 Binary files a/public/images/devices/F20T60A.png and b/public/images/devices/F20T60A.png differ diff --git a/public/images/devices/FB20-002.png b/public/images/devices/FB20-002.png index 78dd77ac1796b..82a3eeb3e958d 100644 Binary files a/public/images/devices/FB20-002.png and b/public/images/devices/FB20-002.png differ diff --git a/public/images/devices/FB21-001.png b/public/images/devices/FB21-001.png index bb34f4af776bf..91056a8059109 100644 Binary files a/public/images/devices/FB21-001.png and b/public/images/devices/FB21-001.png differ diff --git a/public/images/devices/FK_V02.png b/public/images/devices/FK_V02.png index 91ef8be5d156f..3b01790c514fc 100644 Binary files a/public/images/devices/FK_V02.png and b/public/images/devices/FK_V02.png differ diff --git a/public/images/devices/FL 122 C.png b/public/images/devices/FL 122 C.png index 8133d76b62ad8..8d99a605fd1ae 100644 Binary files a/public/images/devices/FL 122 C.png and b/public/images/devices/FL 122 C.png differ diff --git a/public/images/devices/FL-120-C.png b/public/images/devices/FL-120-C.png index 606f87990f6e4..2d3b665694183 100644 Binary files a/public/images/devices/FL-120-C.png and b/public/images/devices/FL-120-C.png differ diff --git a/public/images/devices/FL-130-C.png b/public/images/devices/FL-130-C.png index a9aebb80af1d9..cad18a1bb3e83 100644 Binary files a/public/images/devices/FL-130-C.png and b/public/images/devices/FL-130-C.png differ diff --git a/public/images/devices/FL-140-C.png b/public/images/devices/FL-140-C.png index 419097c92da9f..173720a597b33 100644 Binary files a/public/images/devices/FL-140-C.png and b/public/images/devices/FL-140-C.png differ diff --git a/public/images/devices/FLSZB-110.png b/public/images/devices/FLSZB-110.png index 3419cb37c0107..1f0065d1709c1 100644 Binary files a/public/images/devices/FLSZB-110.png and b/public/images/devices/FLSZB-110.png differ diff --git a/public/images/devices/FMD2C018.png b/public/images/devices/FMD2C018.png index e9b14bb33cffe..f2c54e5ca9287 100644 Binary files a/public/images/devices/FMD2C018.png and b/public/images/devices/FMD2C018.png differ diff --git a/public/images/devices/FMS2C017.png b/public/images/devices/FMS2C017.png index e71b197b40eb6..831a00bf6b59c 100644 Binary files a/public/images/devices/FMS2C017.png and b/public/images/devices/FMS2C017.png differ diff --git a/public/images/devices/FUT035Z+.png b/public/images/devices/FUT035Z+.png index 8a9b02220d96b..cda642f3e65c3 100644 Binary files a/public/images/devices/FUT035Z+.png and b/public/images/devices/FUT035Z+.png differ diff --git a/public/images/devices/FUT036Z.png b/public/images/devices/FUT036Z.png index d044490420a33..f0ac0935f6e0c 100644 Binary files a/public/images/devices/FUT036Z.png and b/public/images/devices/FUT036Z.png differ diff --git a/public/images/devices/FUT037Z.png b/public/images/devices/FUT037Z.png index 023374218b25a..d16a3f095ab3e 100644 Binary files a/public/images/devices/FUT037Z.png and b/public/images/devices/FUT037Z.png differ diff --git a/public/images/devices/FUT038Z.png b/public/images/devices/FUT038Z.png index 5235fd810a195..2784a15c95451 100644 Binary files a/public/images/devices/FUT038Z.png and b/public/images/devices/FUT038Z.png differ diff --git a/public/images/devices/FUT039Z.png b/public/images/devices/FUT039Z.png index 9b19abbbacf8a..f46380c4c4f93 100644 Binary files a/public/images/devices/FUT039Z.png and b/public/images/devices/FUT039Z.png differ diff --git a/public/images/devices/FUT066Z.png b/public/images/devices/FUT066Z.png index 3367d8790adc4..664e44a50f068 100644 Binary files a/public/images/devices/FUT066Z.png and b/public/images/devices/FUT066Z.png differ diff --git a/public/images/devices/FUT089Z.png b/public/images/devices/FUT089Z.png index 4133e8fc74a24..9e70c48eddb3f 100644 Binary files a/public/images/devices/FUT089Z.png and b/public/images/devices/FUT089Z.png differ diff --git a/public/images/devices/FUT106ZR.png b/public/images/devices/FUT106ZR.png index 573ce149150c2..b3d828c68943b 100644 Binary files a/public/images/devices/FUT106ZR.png and b/public/images/devices/FUT106ZR.png differ diff --git a/public/images/devices/FWGU10Bulb02UK.png b/public/images/devices/FWGU10Bulb02UK.png index e31aaa09984dd..482776f739af6 100644 Binary files a/public/images/devices/FWGU10Bulb02UK.png and b/public/images/devices/FWGU10Bulb02UK.png differ diff --git a/public/images/devices/FZB8708HD-S1.png b/public/images/devices/FZB8708HD-S1.png index 945b75336a247..fe3bd854e9c26 100644 Binary files a/public/images/devices/FZB8708HD-S1.png and b/public/images/devices/FZB8708HD-S1.png differ diff --git a/public/images/devices/FreePad_LeTV_8.png b/public/images/devices/FreePad_LeTV_8.png index 787fc6fa44fec..35d08fd4bf284 100644 Binary files a/public/images/devices/FreePad_LeTV_8.png and b/public/images/devices/FreePad_LeTV_8.png differ diff --git a/public/images/devices/G2015.png b/public/images/devices/G2015.png index 12c2b7076545b..dfd6ba4532e07 100644 Binary files a/public/images/devices/G2015.png and b/public/images/devices/G2015.png differ diff --git a/public/images/devices/GD-CZ-006.png b/public/images/devices/GD-CZ-006.png index daa63a5fe356d..b009b79d72542 100644 Binary files a/public/images/devices/GD-CZ-006.png and b/public/images/devices/GD-CZ-006.png differ diff --git a/public/images/devices/GD-ZCRGB012.png b/public/images/devices/GD-ZCRGB012.png index 63ff24f2db95e..f478a71f93184 100644 Binary files a/public/images/devices/GD-ZCRGB012.png and b/public/images/devices/GD-ZCRGB012.png differ diff --git a/public/images/devices/GDC311ZBQ1.png b/public/images/devices/GDC311ZBQ1.png index 9849c369ff6dc..c3b2d81fcd0cf 100644 Binary files a/public/images/devices/GDC311ZBQ1.png and b/public/images/devices/GDC311ZBQ1.png differ diff --git a/public/images/devices/GDKES-01TZXD.png b/public/images/devices/GDKES-01TZXD.png index 349669ec5a13b..c0263be9b33fc 100644 Binary files a/public/images/devices/GDKES-01TZXD.png and b/public/images/devices/GDKES-01TZXD.png differ diff --git a/public/images/devices/GDKES-02TZXD.png b/public/images/devices/GDKES-02TZXD.png index 885c48f941367..44669805ef584 100644 Binary files a/public/images/devices/GDKES-02TZXD.png and b/public/images/devices/GDKES-02TZXD.png differ diff --git a/public/images/devices/GDKES-03TZXD.png b/public/images/devices/GDKES-03TZXD.png index 7b6c71547cbc2..1c7e3e4f0394f 100644 Binary files a/public/images/devices/GDKES-03TZXD.png and b/public/images/devices/GDKES-03TZXD.png differ diff --git a/public/images/devices/GL-B-001P.png b/public/images/devices/GL-B-001P.png index d102fc252252c..60962552ee994 100644 Binary files a/public/images/devices/GL-B-001P.png and b/public/images/devices/GL-B-001P.png differ diff --git a/public/images/devices/GL-B-001Z.png b/public/images/devices/GL-B-001Z.png index a11f0c2671e75..0c12d61ae8839 100644 Binary files a/public/images/devices/GL-B-001Z.png and b/public/images/devices/GL-B-001Z.png differ diff --git a/public/images/devices/GL-B-001ZS.png b/public/images/devices/GL-B-001ZS.png index 9aa4b86ff8f12..081438bc54358 100644 Binary files a/public/images/devices/GL-B-001ZS.png and b/public/images/devices/GL-B-001ZS.png differ diff --git a/public/images/devices/GL-B-002P.png b/public/images/devices/GL-B-002P.png index 0e214e863f8a3..d950357d27501 100644 Binary files a/public/images/devices/GL-B-002P.png and b/public/images/devices/GL-B-002P.png differ diff --git a/public/images/devices/GL-B-003P.png b/public/images/devices/GL-B-003P.png index 0b12a8e2463f8..27a876bdcc639 100644 Binary files a/public/images/devices/GL-B-003P.png and b/public/images/devices/GL-B-003P.png differ diff --git a/public/images/devices/GL-B-004P.png b/public/images/devices/GL-B-004P.png index cefc3af41c614..496aad2328ec6 100644 Binary files a/public/images/devices/GL-B-004P.png and b/public/images/devices/GL-B-004P.png differ diff --git a/public/images/devices/GL-B-007P.png b/public/images/devices/GL-B-007P.png index 19728d959b8c2..c550e942cf248 100644 Binary files a/public/images/devices/GL-B-007P.png and b/public/images/devices/GL-B-007P.png differ diff --git a/public/images/devices/GL-B-007Z.png b/public/images/devices/GL-B-007Z.png index 4702441dc650b..98f96e03a0513 100644 Binary files a/public/images/devices/GL-B-007Z.png and b/public/images/devices/GL-B-007Z.png differ diff --git a/public/images/devices/GL-B-007ZS.png b/public/images/devices/GL-B-007ZS.png index da816353b247f..d8e8e3376ad02 100644 Binary files a/public/images/devices/GL-B-007ZS.png and b/public/images/devices/GL-B-007ZS.png differ diff --git a/public/images/devices/GL-B-008P.png b/public/images/devices/GL-B-008P.png index 91ab578cc506e..370ddb809794d 100644 Binary files a/public/images/devices/GL-B-008P.png and b/public/images/devices/GL-B-008P.png differ diff --git a/public/images/devices/GL-B-008Z.png b/public/images/devices/GL-B-008Z.png index 43d18edf45205..60cce5ec88009 100644 Binary files a/public/images/devices/GL-B-008Z.png and b/public/images/devices/GL-B-008Z.png differ diff --git a/public/images/devices/GL-B-008ZS.png b/public/images/devices/GL-B-008ZS.png index 72d59d3022511..e6a5dea21d4f5 100644 Binary files a/public/images/devices/GL-B-008ZS.png and b/public/images/devices/GL-B-008ZS.png differ diff --git a/public/images/devices/GL-C-003P.png b/public/images/devices/GL-C-003P.png index abba34ee233b2..4c5973a9f1c96 100644 Binary files a/public/images/devices/GL-C-003P.png and b/public/images/devices/GL-C-003P.png differ diff --git a/public/images/devices/GL-C-004P.png b/public/images/devices/GL-C-004P.png index 1ce30fa5e943e..b2de5f2324fb0 100644 Binary files a/public/images/devices/GL-C-004P.png and b/public/images/devices/GL-C-004P.png differ diff --git a/public/images/devices/GL-C-006.png b/public/images/devices/GL-C-006.png index a46f5123a6137..f17a31f075f3b 100644 Binary files a/public/images/devices/GL-C-006.png and b/public/images/devices/GL-C-006.png differ diff --git a/public/images/devices/GL-C-006P.png b/public/images/devices/GL-C-006P.png index abba34ee233b2..4c5973a9f1c96 100644 Binary files a/public/images/devices/GL-C-006P.png and b/public/images/devices/GL-C-006P.png differ diff --git a/public/images/devices/GL-C-006S.png b/public/images/devices/GL-C-006S.png index bdfc153147f1c..6ce763437f8bc 100644 Binary files a/public/images/devices/GL-C-006S.png and b/public/images/devices/GL-C-006S.png differ diff --git a/public/images/devices/GL-C-007-2ID.png b/public/images/devices/GL-C-007-2ID.png index a46f5123a6137..f17a31f075f3b 100644 Binary files a/public/images/devices/GL-C-007-2ID.png and b/public/images/devices/GL-C-007-2ID.png differ diff --git a/public/images/devices/GL-C-007S.png b/public/images/devices/GL-C-007S.png index 9766b61e69ce3..e94200d82d14a 100644 Binary files a/public/images/devices/GL-C-007S.png and b/public/images/devices/GL-C-007S.png differ diff --git a/public/images/devices/GL-C-008-1ID.png b/public/images/devices/GL-C-008-1ID.png index a93cf3bb1664b..f042435a1015e 100644 Binary files a/public/images/devices/GL-C-008-1ID.png and b/public/images/devices/GL-C-008-1ID.png differ diff --git a/public/images/devices/GL-C-008-2ID.png b/public/images/devices/GL-C-008-2ID.png index a93cf3bb1664b..f042435a1015e 100644 Binary files a/public/images/devices/GL-C-008-2ID.png and b/public/images/devices/GL-C-008-2ID.png differ diff --git a/public/images/devices/GL-C-008P.png b/public/images/devices/GL-C-008P.png index ae61e449dccb2..5cbce2360dca5 100644 Binary files a/public/images/devices/GL-C-008P.png and b/public/images/devices/GL-C-008P.png differ diff --git a/public/images/devices/GL-C-008S.png b/public/images/devices/GL-C-008S.png index a46f5123a6137..f17a31f075f3b 100644 Binary files a/public/images/devices/GL-C-008S.png and b/public/images/devices/GL-C-008S.png differ diff --git a/public/images/devices/GL-C-009.png b/public/images/devices/GL-C-009.png index a46f5123a6137..f17a31f075f3b 100644 Binary files a/public/images/devices/GL-C-009.png and b/public/images/devices/GL-C-009.png differ diff --git a/public/images/devices/GL-C-009P.png b/public/images/devices/GL-C-009P.png index 4e35bfd34835c..34c2cb3d6340c 100644 Binary files a/public/images/devices/GL-C-009P.png and b/public/images/devices/GL-C-009P.png differ diff --git a/public/images/devices/GL-C-009S.png b/public/images/devices/GL-C-009S.png index 7e0753bbf6ef7..7d6b861bb3b7d 100644 Binary files a/public/images/devices/GL-C-009S.png and b/public/images/devices/GL-C-009S.png differ diff --git a/public/images/devices/GL-D-002P.png b/public/images/devices/GL-D-002P.png index a98f897a28edc..d9d46dccd0428 100644 Binary files a/public/images/devices/GL-D-002P.png and b/public/images/devices/GL-D-002P.png differ diff --git a/public/images/devices/GL-D-003P.png b/public/images/devices/GL-D-003P.png index 953e4bd6761f8..11f341d30f44c 100644 Binary files a/public/images/devices/GL-D-003P.png and b/public/images/devices/GL-D-003P.png differ diff --git a/public/images/devices/GL-D-003Z.png b/public/images/devices/GL-D-003Z.png index 3d4fd584446ec..746785edd8ed1 100644 Binary files a/public/images/devices/GL-D-003Z.png and b/public/images/devices/GL-D-003Z.png differ diff --git a/public/images/devices/GL-D-003ZS.png b/public/images/devices/GL-D-003ZS.png index efed7e2e2c3f4..cf222b26a328e 100644 Binary files a/public/images/devices/GL-D-003ZS.png and b/public/images/devices/GL-D-003ZS.png differ diff --git a/public/images/devices/GL-D-004P.png b/public/images/devices/GL-D-004P.png index b9baef18d6ce8..707b048bc95d9 100644 Binary files a/public/images/devices/GL-D-004P.png and b/public/images/devices/GL-D-004P.png differ diff --git a/public/images/devices/GL-D-004Z.png b/public/images/devices/GL-D-004Z.png index 9b56cc67275e2..15060d470f129 100644 Binary files a/public/images/devices/GL-D-004Z.png and b/public/images/devices/GL-D-004Z.png differ diff --git a/public/images/devices/GL-D-004ZS.png b/public/images/devices/GL-D-004ZS.png index 264303ff3aa4a..8cb0d5613596b 100644 Binary files a/public/images/devices/GL-D-004ZS.png and b/public/images/devices/GL-D-004ZS.png differ diff --git a/public/images/devices/GL-D-005P.png b/public/images/devices/GL-D-005P.png index 74acaa2320081..ddfac030a9d0a 100644 Binary files a/public/images/devices/GL-D-005P.png and b/public/images/devices/GL-D-005P.png differ diff --git a/public/images/devices/GL-D-005Z.png b/public/images/devices/GL-D-005Z.png index f6e2f1913eef4..4ea737c970f2f 100644 Binary files a/public/images/devices/GL-D-005Z.png and b/public/images/devices/GL-D-005Z.png differ diff --git a/public/images/devices/GL-D-005ZS.png b/public/images/devices/GL-D-005ZS.png index 0cae59179d23e..3f56e01ee706c 100644 Binary files a/public/images/devices/GL-D-005ZS.png and b/public/images/devices/GL-D-005ZS.png differ diff --git a/public/images/devices/GL-D-006P.png b/public/images/devices/GL-D-006P.png index c979df1d2f044..9e3a478b032ce 100644 Binary files a/public/images/devices/GL-D-006P.png and b/public/images/devices/GL-D-006P.png differ diff --git a/public/images/devices/GL-D-007P.png b/public/images/devices/GL-D-007P.png index 09c5285b03e44..4f5396910b8e2 100644 Binary files a/public/images/devices/GL-D-007P.png and b/public/images/devices/GL-D-007P.png differ diff --git a/public/images/devices/GL-D-009P.png b/public/images/devices/GL-D-009P.png index addfa4f8b885f..3ff18c09dae1a 100644 Binary files a/public/images/devices/GL-D-009P.png and b/public/images/devices/GL-D-009P.png differ diff --git a/public/images/devices/GL-D-010P.png b/public/images/devices/GL-D-010P.png index 0a4c8e07a2f05..47e58889b1397 100644 Binary files a/public/images/devices/GL-D-010P.png and b/public/images/devices/GL-D-010P.png differ diff --git a/public/images/devices/GL-D-013P.png b/public/images/devices/GL-D-013P.png index 4c2881eee95d1..c948d47f46e04 100644 Binary files a/public/images/devices/GL-D-013P.png and b/public/images/devices/GL-D-013P.png differ diff --git a/public/images/devices/GL-D-015P.png b/public/images/devices/GL-D-015P.png index ff1d69cb60b44..f0ca618804d4f 100644 Binary files a/public/images/devices/GL-D-015P.png and b/public/images/devices/GL-D-015P.png differ diff --git a/public/images/devices/GL-FL-001P.png b/public/images/devices/GL-FL-001P.png index 9c453ac6d3a9b..fe7e3257af5e3 100644 Binary files a/public/images/devices/GL-FL-001P.png and b/public/images/devices/GL-FL-001P.png differ diff --git a/public/images/devices/GL-FL-004P.png b/public/images/devices/GL-FL-004P.png index f70a94128a4cf..ef2aeca33d39b 100644 Binary files a/public/images/devices/GL-FL-004P.png and b/public/images/devices/GL-FL-004P.png differ diff --git a/public/images/devices/GL-FL-004TZ.png b/public/images/devices/GL-FL-004TZ.png index a781753816f52..09db7f8033ca2 100644 Binary files a/public/images/devices/GL-FL-004TZ.png and b/public/images/devices/GL-FL-004TZ.png differ diff --git a/public/images/devices/GL-FL-004TZS.png b/public/images/devices/GL-FL-004TZS.png index cbdc0285fcc04..d6cbea84be538 100644 Binary files a/public/images/devices/GL-FL-004TZS.png and b/public/images/devices/GL-FL-004TZS.png differ diff --git a/public/images/devices/GL-FL-005P.png b/public/images/devices/GL-FL-005P.png index f70a94128a4cf..ef2aeca33d39b 100644 Binary files a/public/images/devices/GL-FL-005P.png and b/public/images/devices/GL-FL-005P.png differ diff --git a/public/images/devices/GL-FL-005TZ.png b/public/images/devices/GL-FL-005TZ.png index 7582f75e84f01..6db1185443653 100644 Binary files a/public/images/devices/GL-FL-005TZ.png and b/public/images/devices/GL-FL-005TZ.png differ diff --git a/public/images/devices/GL-FL-005TZS.png b/public/images/devices/GL-FL-005TZS.png index 2dd2cbcf525bc..8310a989cb272 100644 Binary files a/public/images/devices/GL-FL-005TZS.png and b/public/images/devices/GL-FL-005TZS.png differ diff --git a/public/images/devices/GL-FL-006P.png b/public/images/devices/GL-FL-006P.png index 027fadee2380d..38026b2ac1d33 100644 Binary files a/public/images/devices/GL-FL-006P.png and b/public/images/devices/GL-FL-006P.png differ diff --git a/public/images/devices/GL-FL-006TZ.png b/public/images/devices/GL-FL-006TZ.png index 17499f33cde24..f1efb7090d6d3 100644 Binary files a/public/images/devices/GL-FL-006TZ.png and b/public/images/devices/GL-FL-006TZ.png differ diff --git a/public/images/devices/GL-FL-006TZS.png b/public/images/devices/GL-FL-006TZS.png index 17499f33cde24..f1efb7090d6d3 100644 Binary files a/public/images/devices/GL-FL-006TZS.png and b/public/images/devices/GL-FL-006TZS.png differ diff --git a/public/images/devices/GL-G-001P.png b/public/images/devices/GL-G-001P.png index a14e184c3387a..703ffd857f762 100644 Binary files a/public/images/devices/GL-G-001P.png and b/public/images/devices/GL-G-001P.png differ diff --git a/public/images/devices/GL-G-001Z.png b/public/images/devices/GL-G-001Z.png index aa846d682d36b..485d7f5295ea2 100644 Binary files a/public/images/devices/GL-G-001Z.png and b/public/images/devices/GL-G-001Z.png differ diff --git a/public/images/devices/GL-G-001ZS.png b/public/images/devices/GL-G-001ZS.png index f07eb4b863f56..2f19d56c9b5e9 100644 Binary files a/public/images/devices/GL-G-001ZS.png and b/public/images/devices/GL-G-001ZS.png differ diff --git a/public/images/devices/GL-G-002P.png b/public/images/devices/GL-G-002P.png index 48c45b1ecbd26..b591cc3141865 100644 Binary files a/public/images/devices/GL-G-002P.png and b/public/images/devices/GL-G-002P.png differ diff --git a/public/images/devices/GL-G-003P.png b/public/images/devices/GL-G-003P.png index 5064b18edd44c..9876403e5ed9a 100644 Binary files a/public/images/devices/GL-G-003P.png and b/public/images/devices/GL-G-003P.png differ diff --git a/public/images/devices/GL-G-007Z.png b/public/images/devices/GL-G-007Z.png index 6e7f1d73eb477..716066575f0ef 100644 Binary files a/public/images/devices/GL-G-007Z.png and b/public/images/devices/GL-G-007Z.png differ diff --git a/public/images/devices/GL-G-101P.png b/public/images/devices/GL-G-101P.png index a14e184c3387a..703ffd857f762 100644 Binary files a/public/images/devices/GL-G-101P.png and b/public/images/devices/GL-G-101P.png differ diff --git a/public/images/devices/GL-H-001.png b/public/images/devices/GL-H-001.png index 792cfeb8d97d3..30235d23c9373 100644 Binary files a/public/images/devices/GL-H-001.png and b/public/images/devices/GL-H-001.png differ diff --git a/public/images/devices/GL-MC-001.png b/public/images/devices/GL-MC-001.png index 22fb15616dcd0..0419c49c019fd 100644 Binary files a/public/images/devices/GL-MC-001.png and b/public/images/devices/GL-MC-001.png differ diff --git a/public/images/devices/GL-MC-001P.png b/public/images/devices/GL-MC-001P.png index 22fb15616dcd0..0419c49c019fd 100644 Binary files a/public/images/devices/GL-MC-001P.png and b/public/images/devices/GL-MC-001P.png differ diff --git a/public/images/devices/GL-S-003Z.png b/public/images/devices/GL-S-003Z.png index 127dc67feb11b..2c90493d321fb 100644 Binary files a/public/images/devices/GL-S-003Z.png and b/public/images/devices/GL-S-003Z.png differ diff --git a/public/images/devices/GL-S-004P.png b/public/images/devices/GL-S-004P.png index b31e7c2115e7a..c9189bd98c710 100644 Binary files a/public/images/devices/GL-S-004P.png and b/public/images/devices/GL-S-004P.png differ diff --git a/public/images/devices/GL-S-004Z.png b/public/images/devices/GL-S-004Z.png index ad7826042d5d5..c4e9f301d6291 100644 Binary files a/public/images/devices/GL-S-004Z.png and b/public/images/devices/GL-S-004Z.png differ diff --git a/public/images/devices/GL-S-004ZS.png b/public/images/devices/GL-S-004ZS.png index a565e46fd8f2d..322991736f204 100644 Binary files a/public/images/devices/GL-S-004ZS.png and b/public/images/devices/GL-S-004ZS.png differ diff --git a/public/images/devices/GL-S-005Z.png b/public/images/devices/GL-S-005Z.png index 0c550adc03061..4e6967850cf3b 100644 Binary files a/public/images/devices/GL-S-005Z.png and b/public/images/devices/GL-S-005Z.png differ diff --git a/public/images/devices/GL-S-006P.png b/public/images/devices/GL-S-006P.png index 21502fbdd2072..5695e3b3a96a5 100644 Binary files a/public/images/devices/GL-S-006P.png and b/public/images/devices/GL-S-006P.png differ diff --git a/public/images/devices/GL-S-007P.png b/public/images/devices/GL-S-007P.png index 76906c3e96976..09382d6984b3c 100644 Binary files a/public/images/devices/GL-S-007P.png and b/public/images/devices/GL-S-007P.png differ diff --git a/public/images/devices/GL-S-007Z.png b/public/images/devices/GL-S-007Z.png index 189316079bc88..6d4295e77b768 100644 Binary files a/public/images/devices/GL-S-007Z.png and b/public/images/devices/GL-S-007Z.png differ diff --git a/public/images/devices/GL-S-007ZS.png b/public/images/devices/GL-S-007ZS.png index efed7e2e2c3f4..cf222b26a328e 100644 Binary files a/public/images/devices/GL-S-007ZS.png and b/public/images/devices/GL-S-007ZS.png differ diff --git a/public/images/devices/GL-S-008Z.png b/public/images/devices/GL-S-008Z.png index 8c11e6604e925..79aecaac03af1 100644 Binary files a/public/images/devices/GL-S-008Z.png and b/public/images/devices/GL-S-008Z.png differ diff --git a/public/images/devices/GL-SD-001.png b/public/images/devices/GL-SD-001.png index b931a4147e495..36817029c5092 100644 Binary files a/public/images/devices/GL-SD-001.png and b/public/images/devices/GL-SD-001.png differ diff --git a/public/images/devices/GL-SD-002.png b/public/images/devices/GL-SD-002.png index 3a8262b6717f2..d92d3be1d9587 100644 Binary files a/public/images/devices/GL-SD-002.png and b/public/images/devices/GL-SD-002.png differ diff --git a/public/images/devices/GL-SD-003P.png b/public/images/devices/GL-SD-003P.png index 50a75cdf6e648..a704557c00b2a 100644 Binary files a/public/images/devices/GL-SD-003P.png and b/public/images/devices/GL-SD-003P.png differ diff --git a/public/images/devices/GL-W-001Z.png b/public/images/devices/GL-W-001Z.png index 0fed7fb19d607..f4878643b1b35 100644 Binary files a/public/images/devices/GL-W-001Z.png and b/public/images/devices/GL-W-001Z.png differ diff --git a/public/images/devices/GLSK3ZB-1711.png b/public/images/devices/GLSK3ZB-1711.png index 3c6fe9d16a77f..08fb91c16ee8c 100644 Binary files a/public/images/devices/GLSK3ZB-1711.png and b/public/images/devices/GLSK3ZB-1711.png differ diff --git a/public/images/devices/GLSK3ZB-1712.png b/public/images/devices/GLSK3ZB-1712.png index 8351b245535c0..2fbad6b0604e0 100644 Binary files a/public/images/devices/GLSK3ZB-1712.png and b/public/images/devices/GLSK3ZB-1712.png differ diff --git a/public/images/devices/GLSK3ZB-1713.png b/public/images/devices/GLSK3ZB-1713.png index d94f9576ab3a0..c281f59a098da 100644 Binary files a/public/images/devices/GLSK3ZB-1713.png and b/public/images/devices/GLSK3ZB-1713.png differ diff --git a/public/images/devices/GLSK6ZB-1714.png b/public/images/devices/GLSK6ZB-1714.png index 616f5e143c269..2b7cd38d95f3a 100644 Binary files a/public/images/devices/GLSK6ZB-1714.png and b/public/images/devices/GLSK6ZB-1714.png differ diff --git a/public/images/devices/GLSK6ZB-1715.png b/public/images/devices/GLSK6ZB-1715.png index 528426386d4bc..29cf005225363 100644 Binary files a/public/images/devices/GLSK6ZB-1715.png and b/public/images/devices/GLSK6ZB-1715.png differ diff --git a/public/images/devices/GLSK6ZB-1716.png b/public/images/devices/GLSK6ZB-1716.png index ec08f8356c0f8..9085b1a98c74e 100644 Binary files a/public/images/devices/GLSK6ZB-1716.png and b/public/images/devices/GLSK6ZB-1716.png differ diff --git a/public/images/devices/GM46.png b/public/images/devices/GM46.png index b2c0a6183aaca..183efd87fdc7f 100644 Binary files a/public/images/devices/GM46.png and b/public/images/devices/GM46.png differ diff --git a/public/images/devices/GP-LBU019BBAWU.png b/public/images/devices/GP-LBU019BBAWU.png index 57d39bb40e6cb..c24cac5f79a40 100644 Binary files a/public/images/devices/GP-LBU019BBAWU.png and b/public/images/devices/GP-LBU019BBAWU.png differ diff --git a/public/images/devices/GP-WOU019BBDWG.png b/public/images/devices/GP-WOU019BBDWG.png index 50607bca33985..490718d5e92c8 100644 Binary files a/public/images/devices/GP-WOU019BBDWG.png and b/public/images/devices/GP-WOU019BBDWG.png differ diff --git a/public/images/devices/GPDRPLOP401100CE.png b/public/images/devices/GPDRPLOP401100CE.png index 1af3f6183d365..cda0c9b54161e 100644 Binary files a/public/images/devices/GPDRPLOP401100CE.png and b/public/images/devices/GPDRPLOP401100CE.png differ diff --git a/public/images/devices/GR-ZB01-W.png b/public/images/devices/GR-ZB01-W.png index 9c144333389d0..b8ef15a527ad6 100644 Binary files a/public/images/devices/GR-ZB01-W.png and b/public/images/devices/GR-ZB01-W.png differ diff --git a/public/images/devices/GTZ06.png b/public/images/devices/GTZ06.png index cd38223c8d00c..209236ed98c05 100644 Binary files a/public/images/devices/GTZ06.png and b/public/images/devices/GTZ06.png differ diff --git a/public/images/devices/GW003-AS-IN-TE-FC.png b/public/images/devices/GW003-AS-IN-TE-FC.png index 7a09d258a7a76..743c477312818 100644 Binary files a/public/images/devices/GW003-AS-IN-TE-FC.png and b/public/images/devices/GW003-AS-IN-TE-FC.png differ diff --git a/public/images/devices/GW01.png b/public/images/devices/GW01.png index 02a5effbd10b0..524d0a0238781 100644 Binary files a/public/images/devices/GW01.png and b/public/images/devices/GW01.png differ diff --git a/public/images/devices/GW02.png b/public/images/devices/GW02.png index 02a5effbd10b0..524d0a0238781 100644 Binary files a/public/images/devices/GW02.png and b/public/images/devices/GW02.png differ diff --git a/public/images/devices/GWA1521.png b/public/images/devices/GWA1521.png index de2603ff9fd3b..9970433ac96de 100644 Binary files a/public/images/devices/GWA1521.png and b/public/images/devices/GWA1521.png differ diff --git a/public/images/devices/GWA1522.png b/public/images/devices/GWA1522.png index 6eb10718dc2a9..8d7772ebde12f 100644 Binary files a/public/images/devices/GWA1522.png and b/public/images/devices/GWA1522.png differ diff --git a/public/images/devices/GWA1531.png b/public/images/devices/GWA1531.png index bfaf14e24f8dd..aee11e4fc70fd 100644 Binary files a/public/images/devices/GWA1531.png and b/public/images/devices/GWA1531.png differ diff --git a/public/images/devices/GWRJN5169.png b/public/images/devices/GWRJN5169.png index a2d665fb34c07..cacf480f65577 100644 Binary files a/public/images/devices/GWRJN5169.png and b/public/images/devices/GWRJN5169.png differ diff --git a/public/images/devices/Garza-Standard-A60.png b/public/images/devices/Garza-Standard-A60.png index f86663d69b196..fb0402a2f0d2a 100644 Binary files a/public/images/devices/Garza-Standard-A60.png and b/public/images/devices/Garza-Standard-A60.png differ diff --git a/public/images/devices/H1.png b/public/images/devices/H1.png index eec90a84fcfcc..04ac88ff34b65 100644 Binary files a/public/images/devices/H1.png and b/public/images/devices/H1.png differ diff --git a/public/images/devices/HA-ZM12-24-1K.png b/public/images/devices/HA-ZM12-24-1K.png index bfe680e319927..c6838947b6991 100644 Binary files a/public/images/devices/HA-ZM12-24-1K.png and b/public/images/devices/HA-ZM12-24-1K.png differ diff --git a/public/images/devices/HA-ZM12-24-mw2.png b/public/images/devices/HA-ZM12-24-mw2.png index 76c7e9d3b7372..38bfb8a780172 100644 Binary files a/public/images/devices/HA-ZM12-24-mw2.png and b/public/images/devices/HA-ZM12-24-mw2.png differ diff --git a/public/images/devices/HA-ZSM-MW2.png b/public/images/devices/HA-ZSM-MW2.png index f6f47e3fa8ed6..944911de6ff26 100644 Binary files a/public/images/devices/HA-ZSM-MW2.png and b/public/images/devices/HA-ZSM-MW2.png differ diff --git a/public/images/devices/HAL300.png b/public/images/devices/HAL300.png index ac1840f6033b0..20245c482e1a8 100644 Binary files a/public/images/devices/HAL300.png and b/public/images/devices/HAL300.png differ diff --git a/public/images/devices/HAL400.png b/public/images/devices/HAL400.png index b9c1d3f6d96e1..4cd72b4092219 100644 Binary files a/public/images/devices/HAL400.png and b/public/images/devices/HAL400.png differ diff --git a/public/images/devices/HAL500.png b/public/images/devices/HAL500.png index 612cc8f5f7323..e3af52736e27e 100644 Binary files a/public/images/devices/HAL500.png and b/public/images/devices/HAL500.png differ diff --git a/public/images/devices/HAL600.png b/public/images/devices/HAL600.png index 33a07a4ab7ebc..e2cc86fa16445 100644 Binary files a/public/images/devices/HAL600.png and b/public/images/devices/HAL600.png differ diff --git a/public/images/devices/HAL800.png b/public/images/devices/HAL800.png index 99e13af823506..24e6eb7d2f0ae 100644 Binary files a/public/images/devices/HAL800.png and b/public/images/devices/HAL800.png differ diff --git a/public/images/devices/HALIGHTDIMWWB22.png b/public/images/devices/HALIGHTDIMWWB22.png index 1790dc416f069..3dc5f14518984 100644 Binary files a/public/images/devices/HALIGHTDIMWWB22.png and b/public/images/devices/HALIGHTDIMWWB22.png differ diff --git a/public/images/devices/HALIGHTDIMWWE14.png b/public/images/devices/HALIGHTDIMWWE14.png index f1ec1428608e6..bc58e79ebba96 100644 Binary files a/public/images/devices/HALIGHTDIMWWE14.png and b/public/images/devices/HALIGHTDIMWWE14.png differ diff --git a/public/images/devices/HALIGHTDIMWWE27.png b/public/images/devices/HALIGHTDIMWWE27.png index 50a1727e238e6..da4c0809fe71c 100644 Binary files a/public/images/devices/HALIGHTDIMWWE27.png and b/public/images/devices/HALIGHTDIMWWE27.png differ diff --git a/public/images/devices/HBR2917E.png b/public/images/devices/HBR2917E.png index 4c2373ae46c6c..733052e045939 100644 Binary files a/public/images/devices/HBR2917E.png and b/public/images/devices/HBR2917E.png differ diff --git a/public/images/devices/HC-IWSWI-1.png b/public/images/devices/HC-IWSWI-1.png index 6376ab351d763..bbc0df15fa125 100644 Binary files a/public/images/devices/HC-IWSWI-1.png and b/public/images/devices/HC-IWSWI-1.png differ diff --git a/public/images/devices/HC-SLM-1.png b/public/images/devices/HC-SLM-1.png index 87a4a730d7880..4edebfa7a8bcb 100644 Binary files a/public/images/devices/HC-SLM-1.png and b/public/images/devices/HC-SLM-1.png differ diff --git a/public/images/devices/HDM40PV620.png b/public/images/devices/HDM40PV620.png index b1b191ce82f0c..71d6aa9673b72 100644 Binary files a/public/images/devices/HDM40PV620.png and b/public/images/devices/HDM40PV620.png differ diff --git a/public/images/devices/HEIMAN-M1.png b/public/images/devices/HEIMAN-M1.png index 2df15c296f954..f64320cbc4969 100644 Binary files a/public/images/devices/HEIMAN-M1.png and b/public/images/devices/HEIMAN-M1.png differ diff --git a/public/images/devices/HESZB-120.png b/public/images/devices/HESZB-120.png index c7b47aae1420c..30971379d59e2 100644 Binary files a/public/images/devices/HESZB-120.png and b/public/images/devices/HESZB-120.png differ diff --git a/public/images/devices/HG06104A.png b/public/images/devices/HG06104A.png index 356e5a1013acb..b69e5e51bd1c9 100644 Binary files a/public/images/devices/HG06104A.png and b/public/images/devices/HG06104A.png differ diff --git a/public/images/devices/HG06106A.png b/public/images/devices/HG06106A.png index ed23b3be0817f..4924c4253d6b7 100644 Binary files a/public/images/devices/HG06106A.png and b/public/images/devices/HG06106A.png differ diff --git a/public/images/devices/HG06106B.png b/public/images/devices/HG06106B.png index 88b0a0da9ae67..8f4d29ecca31d 100644 Binary files a/public/images/devices/HG06106B.png and b/public/images/devices/HG06106B.png differ diff --git a/public/images/devices/HG06106C.png b/public/images/devices/HG06106C.png index d8bc5407ded8c..91df47bafb488 100644 Binary files a/public/images/devices/HG06106C.png and b/public/images/devices/HG06106C.png differ diff --git a/public/images/devices/HG06336.png b/public/images/devices/HG06336.png index ddf2e4442f44e..7f90c2ffa71f9 100644 Binary files a/public/images/devices/HG06336.png and b/public/images/devices/HG06336.png differ diff --git a/public/images/devices/HG06337.png b/public/images/devices/HG06337.png index 4c0177ed48914..5b440d738b268 100644 Binary files a/public/images/devices/HG06337.png and b/public/images/devices/HG06337.png differ diff --git a/public/images/devices/HG06338.png b/public/images/devices/HG06338.png index 027dd7a16174b..f0bdd9844e636 100644 Binary files a/public/images/devices/HG06338.png and b/public/images/devices/HG06338.png differ diff --git a/public/images/devices/HG06462A.png b/public/images/devices/HG06462A.png index 13417d5c146f2..009a0e529f280 100644 Binary files a/public/images/devices/HG06462A.png and b/public/images/devices/HG06462A.png differ diff --git a/public/images/devices/HG06463A.png b/public/images/devices/HG06463A.png index c8d55b844a436..c4787075b9e15 100644 Binary files a/public/images/devices/HG06463A.png and b/public/images/devices/HG06463A.png differ diff --git a/public/images/devices/HG06463B.png b/public/images/devices/HG06463B.png index e45e1c6b09ae8..b2ae8a01cfff2 100644 Binary files a/public/images/devices/HG06463B.png and b/public/images/devices/HG06463B.png differ diff --git a/public/images/devices/HG06467.png b/public/images/devices/HG06467.png index fa3616e59f4fa..6f956e8af88c6 100644 Binary files a/public/images/devices/HG06467.png and b/public/images/devices/HG06467.png differ diff --git a/public/images/devices/HG06492A-HG08130A.png b/public/images/devices/HG06492A-HG08130A.png index e6e0e83759c54..23362bd53413e 100644 Binary files a/public/images/devices/HG06492A-HG08130A.png and b/public/images/devices/HG06492A-HG08130A.png differ diff --git a/public/images/devices/HG06492B.png b/public/images/devices/HG06492B.png index 55691dc3b580d..04d6c71e490e7 100644 Binary files a/public/images/devices/HG06492B.png and b/public/images/devices/HG06492B.png differ diff --git a/public/images/devices/HG06492C-HG08130C-HG09154C.png b/public/images/devices/HG06492C-HG08130C-HG09154C.png index 8e7ba498bd36a..5b43751304247 100644 Binary files a/public/images/devices/HG06492C-HG08130C-HG09154C.png and b/public/images/devices/HG06492C-HG08130C-HG09154C.png differ diff --git a/public/images/devices/HG06619.png b/public/images/devices/HG06619.png index 84fd3e02675db..32233942e242d 100644 Binary files a/public/images/devices/HG06619.png and b/public/images/devices/HG06619.png differ diff --git a/public/images/devices/HG06620.png b/public/images/devices/HG06620.png index 70144048e68f4..8b9884f3b5116 100644 Binary files a/public/images/devices/HG06620.png and b/public/images/devices/HG06620.png differ diff --git a/public/images/devices/HG07834A-HG09155A.png b/public/images/devices/HG07834A-HG09155A.png index 17f4afd2d9acd..77aa362c33840 100644 Binary files a/public/images/devices/HG07834A-HG09155A.png and b/public/images/devices/HG07834A-HG09155A.png differ diff --git a/public/images/devices/HG07834B.png b/public/images/devices/HG07834B.png index 01a88c44a795f..0e556676ae659 100644 Binary files a/public/images/devices/HG07834B.png and b/public/images/devices/HG07834B.png differ diff --git a/public/images/devices/HG07834C.png b/public/images/devices/HG07834C.png index ad3bb67c8212d..f9204208dcb70 100644 Binary files a/public/images/devices/HG07834C.png and b/public/images/devices/HG07834C.png differ diff --git a/public/images/devices/HG08007.png b/public/images/devices/HG08007.png index 1b3276eee8abe..4715ab555ef53 100644 Binary files a/public/images/devices/HG08007.png and b/public/images/devices/HG08007.png differ diff --git a/public/images/devices/HG08008.png b/public/images/devices/HG08008.png index a225d766f2e0f..0d6018f81ff59 100644 Binary files a/public/images/devices/HG08008.png and b/public/images/devices/HG08008.png differ diff --git a/public/images/devices/HG08010.png b/public/images/devices/HG08010.png index c82700b627001..96bec3f0d8e0a 100644 Binary files a/public/images/devices/HG08010.png and b/public/images/devices/HG08010.png differ diff --git a/public/images/devices/HG08131C.png b/public/images/devices/HG08131C.png index d8bc5407ded8c..91df47bafb488 100644 Binary files a/public/images/devices/HG08131C.png and b/public/images/devices/HG08131C.png differ diff --git a/public/images/devices/HG08164.png b/public/images/devices/HG08164.png index 5b608851953d7..97a344074a78b 100644 Binary files a/public/images/devices/HG08164.png and b/public/images/devices/HG08164.png differ diff --git a/public/images/devices/HG08383A.png b/public/images/devices/HG08383A.png index 8105545e1296c..dfc622b7e364b 100644 Binary files a/public/images/devices/HG08383A.png and b/public/images/devices/HG08383A.png differ diff --git a/public/images/devices/HG08383B.png b/public/images/devices/HG08383B.png index 00e76a36529f5..eee0e82ad23ee 100644 Binary files a/public/images/devices/HG08383B.png and b/public/images/devices/HG08383B.png differ diff --git a/public/images/devices/HG08633.png b/public/images/devices/HG08633.png index 6fb545655224f..6a34578d5c947 100644 Binary files a/public/images/devices/HG08633.png and b/public/images/devices/HG08633.png differ diff --git a/public/images/devices/HG08673-BS.png b/public/images/devices/HG08673-BS.png index adddc88605cfe..26b4f68d6afe4 100644 Binary files a/public/images/devices/HG08673-BS.png and b/public/images/devices/HG08673-BS.png differ diff --git a/public/images/devices/HG08673.png b/public/images/devices/HG08673.png index 407a8ffc0e1e7..f1e1dd81bd567 100644 Binary files a/public/images/devices/HG08673.png and b/public/images/devices/HG08673.png differ diff --git a/public/images/devices/HG09648.png b/public/images/devices/HG09648.png index 848a78c39be4f..fdb5f4647a307 100644 Binary files a/public/images/devices/HG09648.png and b/public/images/devices/HG09648.png differ diff --git a/public/images/devices/HGZB-01.png b/public/images/devices/HGZB-01.png index 4de8240edefaa..fa6482324066d 100644 Binary files a/public/images/devices/HGZB-01.png and b/public/images/devices/HGZB-01.png differ diff --git a/public/images/devices/HGZB-01A.png b/public/images/devices/HGZB-01A.png index 4de8240edefaa..fa6482324066d 100644 Binary files a/public/images/devices/HGZB-01A.png and b/public/images/devices/HGZB-01A.png differ diff --git a/public/images/devices/HGZB-02A.png b/public/images/devices/HGZB-02A.png index 9084ae5775081..1b088d2123942 100644 Binary files a/public/images/devices/HGZB-02A.png and b/public/images/devices/HGZB-02A.png differ diff --git a/public/images/devices/HGZB-02S.png b/public/images/devices/HGZB-02S.png index 87ccfa4f72572..ace536b6cb6ed 100644 Binary files a/public/images/devices/HGZB-02S.png and b/public/images/devices/HGZB-02S.png differ diff --git a/public/images/devices/HGZB-042.png b/public/images/devices/HGZB-042.png index 66a437b069326..9ff1685e10b8c 100644 Binary files a/public/images/devices/HGZB-042.png and b/public/images/devices/HGZB-042.png differ diff --git a/public/images/devices/HGZB-043.png b/public/images/devices/HGZB-043.png index 902ec08fd6c5a..32e3a4e6b2e55 100644 Binary files a/public/images/devices/HGZB-043.png and b/public/images/devices/HGZB-043.png differ diff --git a/public/images/devices/HGZB-045.png b/public/images/devices/HGZB-045.png index f86fe1b644c3a..b5dc896f204b0 100644 Binary files a/public/images/devices/HGZB-045.png and b/public/images/devices/HGZB-045.png differ diff --git a/public/images/devices/HGZB-04D---HGZB-4D-UK.png b/public/images/devices/HGZB-04D---HGZB-4D-UK.png index ece49a2a6a904..6dff6acf581e2 100644 Binary files a/public/images/devices/HGZB-04D---HGZB-4D-UK.png and b/public/images/devices/HGZB-04D---HGZB-4D-UK.png differ diff --git a/public/images/devices/HGZB-06A.png b/public/images/devices/HGZB-06A.png index c852c64758651..467e075407fea 100644 Binary files a/public/images/devices/HGZB-06A.png and b/public/images/devices/HGZB-06A.png differ diff --git a/public/images/devices/HGZB-07A.png b/public/images/devices/HGZB-07A.png index ff1e341c559ca..109340e7cdd6e 100644 Binary files a/public/images/devices/HGZB-07A.png and b/public/images/devices/HGZB-07A.png differ diff --git a/public/images/devices/HGZB-13A.png b/public/images/devices/HGZB-13A.png index bd9eb34b86779..af965a58ebea1 100644 Binary files a/public/images/devices/HGZB-13A.png and b/public/images/devices/HGZB-13A.png differ diff --git a/public/images/devices/HGZB-14A.png b/public/images/devices/HGZB-14A.png index 2acbe863b130b..05bc2efec4859 100644 Binary files a/public/images/devices/HGZB-14A.png and b/public/images/devices/HGZB-14A.png differ diff --git a/public/images/devices/HGZB-1S.png b/public/images/devices/HGZB-1S.png index 4a35a757514f3..965683af60bb1 100644 Binary files a/public/images/devices/HGZB-1S.png and b/public/images/devices/HGZB-1S.png differ diff --git a/public/images/devices/HGZB-20-DE.png b/public/images/devices/HGZB-20-DE.png index 86407a099017f..8c4b97d0ce03a 100644 Binary files a/public/images/devices/HGZB-20-DE.png and b/public/images/devices/HGZB-20-DE.png differ diff --git a/public/images/devices/HGZB-20-UK.png b/public/images/devices/HGZB-20-UK.png index 89a77e1f5fa13..e5cb7e1551679 100644 Binary files a/public/images/devices/HGZB-20-UK.png and b/public/images/devices/HGZB-20-UK.png differ diff --git a/public/images/devices/HGZB-20A.png b/public/images/devices/HGZB-20A.png index e95884e459603..82b0513fa9da3 100644 Binary files a/public/images/devices/HGZB-20A.png and b/public/images/devices/HGZB-20A.png differ diff --git a/public/images/devices/HGZB-41.png b/public/images/devices/HGZB-41.png index 0afcbfef1623f..4815628f20ed8 100644 Binary files a/public/images/devices/HGZB-41.png and b/public/images/devices/HGZB-41.png differ diff --git a/public/images/devices/HGZB-42-UK---HGZB-41---HGZB-41-UK.png b/public/images/devices/HGZB-42-UK---HGZB-41---HGZB-41-UK.png index b085a47980206..05e8cf6ec9288 100644 Binary files a/public/images/devices/HGZB-42-UK---HGZB-41---HGZB-41-UK.png and b/public/images/devices/HGZB-42-UK---HGZB-41---HGZB-41-UK.png differ diff --git a/public/images/devices/HGZB-42.png b/public/images/devices/HGZB-42.png index 08779d6d81a0d..a3af540efa9a8 100644 Binary files a/public/images/devices/HGZB-42.png and b/public/images/devices/HGZB-42.png differ diff --git a/public/images/devices/HGZB-43.png b/public/images/devices/HGZB-43.png index d37c7a97df24e..270dd5084a2ae 100644 Binary files a/public/images/devices/HGZB-43.png and b/public/images/devices/HGZB-43.png differ diff --git a/public/images/devices/HGZB-44.png b/public/images/devices/HGZB-44.png index 55051237d5e19..0e9fd17c2e45c 100644 Binary files a/public/images/devices/HGZB-44.png and b/public/images/devices/HGZB-44.png differ diff --git a/public/images/devices/HGZB-DLC4-N12B.png b/public/images/devices/HGZB-DLC4-N12B.png index b7ca37f6a6a7c..b5203f0b0e1e4 100644 Binary files a/public/images/devices/HGZB-DLC4-N12B.png and b/public/images/devices/HGZB-DLC4-N12B.png differ diff --git a/public/images/devices/HK-DIM-A.png b/public/images/devices/HK-DIM-A.png index 87ea6a212e9ff..b6d2d5583abe4 100644 Binary files a/public/images/devices/HK-DIM-A.png and b/public/images/devices/HK-DIM-A.png differ diff --git a/public/images/devices/HK-LN-DIM-A.png b/public/images/devices/HK-LN-DIM-A.png index 29a4518524099..966021176d99f 100644 Binary files a/public/images/devices/HK-LN-DIM-A.png and b/public/images/devices/HK-LN-DIM-A.png differ diff --git a/public/images/devices/HK-SENSOR-4IN1-A.png b/public/images/devices/HK-SENSOR-4IN1-A.png index 7bb457fee0677..3ef2cdd375195 100644 Binary files a/public/images/devices/HK-SENSOR-4IN1-A.png and b/public/images/devices/HK-SENSOR-4IN1-A.png differ diff --git a/public/images/devices/HK-ZD-CCT-A.png b/public/images/devices/HK-ZD-CCT-A.png index 44f46fc3b9b71..f3cb13b10d58a 100644 Binary files a/public/images/devices/HK-ZD-CCT-A.png and b/public/images/devices/HK-ZD-CCT-A.png differ diff --git a/public/images/devices/HLC610-Z.png b/public/images/devices/HLC610-Z.png index a90b73db1ee1d..3c16d49b0948a 100644 Binary files a/public/images/devices/HLC610-Z.png and b/public/images/devices/HLC610-Z.png differ diff --git a/public/images/devices/HLC610.png b/public/images/devices/HLC610.png index 3b2f6f02e9596..49db1ed08c7b0 100644 Binary files a/public/images/devices/HLC610.png and b/public/images/devices/HLC610.png differ diff --git a/public/images/devices/HLC614-ZLL.png b/public/images/devices/HLC614-ZLL.png index 0ba74f0c4afca..2728f1a424c0e 100644 Binary files a/public/images/devices/HLC614-ZLL.png and b/public/images/devices/HLC614-ZLL.png differ diff --git a/public/images/devices/HLC821-Z-SC.png b/public/images/devices/HLC821-Z-SC.png index 70a7cfe172204..bc6b44481dbce 100644 Binary files a/public/images/devices/HLC821-Z-SC.png and b/public/images/devices/HLC821-Z-SC.png differ diff --git a/public/images/devices/HLC833-Z-SC.png b/public/images/devices/HLC833-Z-SC.png index 2751f117c5642..c841f63b4cf81 100644 Binary files a/public/images/devices/HLC833-Z-SC.png and b/public/images/devices/HLC833-Z-SC.png differ diff --git a/public/images/devices/HLC929-Z-RGBW-4C-IA-OTA-3.0.png b/public/images/devices/HLC929-Z-RGBW-4C-IA-OTA-3.0.png index 35014cd737cf9..a5787dfa88a70 100644 Binary files a/public/images/devices/HLC929-Z-RGBW-4C-IA-OTA-3.0.png and b/public/images/devices/HLC929-Z-RGBW-4C-IA-OTA-3.0.png differ diff --git a/public/images/devices/HLD503-Z-CT.png b/public/images/devices/HLD503-Z-CT.png index 95ef019565629..cf84211f4fa12 100644 Binary files a/public/images/devices/HLD503-Z-CT.png and b/public/images/devices/HLD503-Z-CT.png differ diff --git a/public/images/devices/HLD812-Z-SC.png b/public/images/devices/HLD812-Z-SC.png index aba0a110731c3..fc31e622f486b 100644 Binary files a/public/images/devices/HLD812-Z-SC.png and b/public/images/devices/HLD812-Z-SC.png differ diff --git a/public/images/devices/HLU2909K.png b/public/images/devices/HLU2909K.png index dfde3c63f19c9..0a4ac41e2c866 100644 Binary files a/public/images/devices/HLU2909K.png and b/public/images/devices/HLU2909K.png differ diff --git a/public/images/devices/HM1RC-2-E.png b/public/images/devices/HM1RC-2-E.png index 57c0fece69171..3b7980cbaec8e 100644 Binary files a/public/images/devices/HM1RC-2-E.png and b/public/images/devices/HM1RC-2-E.png differ diff --git a/public/images/devices/HMSZB-110.png b/public/images/devices/HMSZB-110.png index 2d25cdecee20a..e304adaaac453 100644 Binary files a/public/images/devices/HMSZB-110.png and b/public/images/devices/HMSZB-110.png differ diff --git a/public/images/devices/HO-09ZB.png b/public/images/devices/HO-09ZB.png index f599b9220452b..9d43ac41b0ef2 100644 Binary files a/public/images/devices/HO-09ZB.png and b/public/images/devices/HO-09ZB.png differ diff --git a/public/images/devices/HOMA1001_CT.png b/public/images/devices/HOMA1001_CT.png index 14edd45f1135a..520fb3df82252 100644 Binary files a/public/images/devices/HOMA1001_CT.png and b/public/images/devices/HOMA1001_CT.png differ diff --git a/public/images/devices/HOMA1001_RGB.png b/public/images/devices/HOMA1001_RGB.png index 14edd45f1135a..520fb3df82252 100644 Binary files a/public/images/devices/HOMA1001_RGB.png and b/public/images/devices/HOMA1001_RGB.png differ diff --git a/public/images/devices/HOMA1001_RGBW.png b/public/images/devices/HOMA1001_RGBW.png index 14edd45f1135a..520fb3df82252 100644 Binary files a/public/images/devices/HOMA1001_RGBW.png and b/public/images/devices/HOMA1001_RGBW.png differ diff --git a/public/images/devices/HOMA1001_SC.png b/public/images/devices/HOMA1001_SC.png index 14edd45f1135a..520fb3df82252 100644 Binary files a/public/images/devices/HOMA1001_SC.png and b/public/images/devices/HOMA1001_SC.png differ diff --git a/public/images/devices/HR-C99C-Z-C045.png b/public/images/devices/HR-C99C-Z-C045.png index 7e43efd84a1b7..01446d57a3bc0 100644 Binary files a/public/images/devices/HR-C99C-Z-C045.png and b/public/images/devices/HR-C99C-Z-C045.png differ diff --git a/public/images/devices/HS1CA-E.png b/public/images/devices/HS1CA-E.png index ce51476edc9b1..adfdc3c59207e 100644 Binary files a/public/images/devices/HS1CA-E.png and b/public/images/devices/HS1CA-E.png differ diff --git a/public/images/devices/HS1CA-M.png b/public/images/devices/HS1CA-M.png index 895c11d765368..a59136429e6c7 100644 Binary files a/public/images/devices/HS1CA-M.png and b/public/images/devices/HS1CA-M.png differ diff --git a/public/images/devices/HS1CG-E.png b/public/images/devices/HS1CG-E.png index de2bebb095c4c..dbcfffa1d681e 100644 Binary files a/public/images/devices/HS1CG-E.png and b/public/images/devices/HS1CG-E.png differ diff --git a/public/images/devices/HS1CG-E_3.0.png b/public/images/devices/HS1CG-E_3.0.png index bdf6246204d6e..16a829f5ce168 100644 Binary files a/public/images/devices/HS1CG-E_3.0.png and b/public/images/devices/HS1CG-E_3.0.png differ diff --git a/public/images/devices/HS1CG-M.png b/public/images/devices/HS1CG-M.png index 58cb3a15acc10..e3e3f10bc6219 100644 Binary files a/public/images/devices/HS1CG-M.png and b/public/images/devices/HS1CG-M.png differ diff --git a/public/images/devices/HS1CG.png b/public/images/devices/HS1CG.png index 58cb3a15acc10..e3e3f10bc6219 100644 Binary files a/public/images/devices/HS1CG.png and b/public/images/devices/HS1CG.png differ diff --git a/public/images/devices/HS1CG_M.png b/public/images/devices/HS1CG_M.png index 6d0b3e42c7432..268b1d3440419 100644 Binary files a/public/images/devices/HS1CG_M.png and b/public/images/devices/HS1CG_M.png differ diff --git a/public/images/devices/HS1DS.png b/public/images/devices/HS1DS.png index 3ce244798d0c3..6a2b6c529581e 100644 Binary files a/public/images/devices/HS1DS.png and b/public/images/devices/HS1DS.png differ diff --git a/public/images/devices/HS1EB-HS1EB-E.png b/public/images/devices/HS1EB-HS1EB-E.png index 29dd22205673f..8ba3fb94624a7 100644 Binary files a/public/images/devices/HS1EB-HS1EB-E.png and b/public/images/devices/HS1EB-HS1EB-E.png differ diff --git a/public/images/devices/HS1HT-N.png b/public/images/devices/HS1HT-N.png index 907a01efc0af9..d51c12e61cc19 100644 Binary files a/public/images/devices/HS1HT-N.png and b/public/images/devices/HS1HT-N.png differ diff --git a/public/images/devices/HS1HT.png b/public/images/devices/HS1HT.png index cdf39208f24f4..d9282b8c158fc 100644 Binary files a/public/images/devices/HS1HT.png and b/public/images/devices/HS1HT.png differ diff --git a/public/images/devices/HS1MS-EF.png b/public/images/devices/HS1MS-EF.png index 83f4fedc69ab3..a34204193625d 100644 Binary files a/public/images/devices/HS1MS-EF.png and b/public/images/devices/HS1MS-EF.png differ diff --git a/public/images/devices/HS1MS-M.png b/public/images/devices/HS1MS-M.png index 7dbfa7f22425f..2fd4351c1376f 100644 Binary files a/public/images/devices/HS1MS-M.png and b/public/images/devices/HS1MS-M.png differ diff --git a/public/images/devices/HS1RC-EM.png b/public/images/devices/HS1RC-EM.png index 491059973dea6..3b90a1559cc6b 100644 Binary files a/public/images/devices/HS1RC-EM.png and b/public/images/devices/HS1RC-EM.png differ diff --git a/public/images/devices/HS1RC-N.png b/public/images/devices/HS1RC-N.png index ce7591b7f6a56..3b7980cbaec8e 100644 Binary files a/public/images/devices/HS1RC-N.png and b/public/images/devices/HS1RC-N.png differ diff --git a/public/images/devices/HS1SA.png b/public/images/devices/HS1SA.png index 15da60b5944aa..5f9bc6863191b 100644 Binary files a/public/images/devices/HS1SA.png and b/public/images/devices/HS1SA.png differ diff --git a/public/images/devices/HS1VS-EF.png b/public/images/devices/HS1VS-EF.png index f3838f3b3f878..1253c976e1cf2 100644 Binary files a/public/images/devices/HS1VS-EF.png and b/public/images/devices/HS1VS-EF.png differ diff --git a/public/images/devices/HS1VS-N.png b/public/images/devices/HS1VS-N.png index a103594c18703..68b4ffc10c919 100644 Binary files a/public/images/devices/HS1VS-N.png and b/public/images/devices/HS1VS-N.png differ diff --git a/public/images/devices/HS1WL-HS3WL.png b/public/images/devices/HS1WL-HS3WL.png index 503a899514492..3c6481c2bf97f 100644 Binary files a/public/images/devices/HS1WL-HS3WL.png and b/public/images/devices/HS1WL-HS3WL.png differ diff --git a/public/images/devices/HS2AQ-EM.png b/public/images/devices/HS2AQ-EM.png index 6efcb82ba3434..04d30d4d7e583 100644 Binary files a/public/images/devices/HS2AQ-EM.png and b/public/images/devices/HS2AQ-EM.png differ diff --git a/public/images/devices/HS2CM-N-DC.png b/public/images/devices/HS2CM-N-DC.png index 86fd11e0170c0..44d01239d9417 100644 Binary files a/public/images/devices/HS2CM-N-DC.png and b/public/images/devices/HS2CM-N-DC.png differ diff --git a/public/images/devices/HS2DB.png b/public/images/devices/HS2DB.png index aa69c8caeb570..411c29c1e4d3e 100644 Binary files a/public/images/devices/HS2DB.png and b/public/images/devices/HS2DB.png differ diff --git a/public/images/devices/HS2ESK-E.png b/public/images/devices/HS2ESK-E.png index 423afe63f48c0..cb6b363571844 100644 Binary files a/public/images/devices/HS2ESK-E.png and b/public/images/devices/HS2ESK-E.png differ diff --git a/public/images/devices/HS2IRC.png b/public/images/devices/HS2IRC.png index 888567d614a2c..2ca3c5252c218 100644 Binary files a/public/images/devices/HS2IRC.png and b/public/images/devices/HS2IRC.png differ diff --git a/public/images/devices/HS2SK.png b/public/images/devices/HS2SK.png index 053def9f45016..dec544801a112 100644 Binary files a/public/images/devices/HS2SK.png and b/public/images/devices/HS2SK.png differ diff --git a/public/images/devices/HS2SK_nxp.png b/public/images/devices/HS2SK_nxp.png index 053def9f45016..dec544801a112 100644 Binary files a/public/images/devices/HS2SK_nxp.png and b/public/images/devices/HS2SK_nxp.png differ diff --git a/public/images/devices/HS2SS-E_V03.png b/public/images/devices/HS2SS-E_V03.png index b791d4348d7ee..aded3679b77c2 100644 Binary files a/public/images/devices/HS2SS-E_V03.png and b/public/images/devices/HS2SS-E_V03.png differ diff --git a/public/images/devices/HS2SS.png b/public/images/devices/HS2SS.png index 4de2761f291d1..c1d70c5abd87a 100644 Binary files a/public/images/devices/HS2SS.png and b/public/images/devices/HS2SS.png differ diff --git a/public/images/devices/HS2SW1A-HS2SW1A-N.png b/public/images/devices/HS2SW1A-HS2SW1A-N.png index 4cb9fd30181d8..d0a82f1c6fb0e 100644 Binary files a/public/images/devices/HS2SW1A-HS2SW1A-N.png and b/public/images/devices/HS2SW1A-HS2SW1A-N.png differ diff --git a/public/images/devices/HS2SW2A-HS2SW2A-N.png b/public/images/devices/HS2SW2A-HS2SW2A-N.png index 94503d1fa0cc4..27fd73e784f23 100644 Binary files a/public/images/devices/HS2SW2A-HS2SW2A-N.png and b/public/images/devices/HS2SW2A-HS2SW2A-N.png differ diff --git a/public/images/devices/HS2SW3A-HS2SW3A-N.png b/public/images/devices/HS2SW3A-HS2SW3A-N.png index 86bf0e66ac31e..519e7f54d8640 100644 Binary files a/public/images/devices/HS2SW3A-HS2SW3A-N.png and b/public/images/devices/HS2SW3A-HS2SW3A-N.png differ diff --git a/public/images/devices/HS2WD-E.png b/public/images/devices/HS2WD-E.png index 95e079c96b004..dd7495aa25e91 100644 Binary files a/public/images/devices/HS2WD-E.png and b/public/images/devices/HS2WD-E.png differ diff --git a/public/images/devices/HS2WDS.png b/public/images/devices/HS2WDS.png index ea1bee1c69408..7794e2b17d42d 100644 Binary files a/public/images/devices/HS2WDS.png and b/public/images/devices/HS2WDS.png differ diff --git a/public/images/devices/HS2WDSC-E.png b/public/images/devices/HS2WDSC-E.png index 72b0bbc7bdeb8..0c0e76b0c23ee 100644 Binary files a/public/images/devices/HS2WDSC-E.png and b/public/images/devices/HS2WDSC-E.png differ diff --git a/public/images/devices/HS2WDSR-E.png b/public/images/devices/HS2WDSR-E.png index 32816b956b080..109acb02fbc50 100644 Binary files a/public/images/devices/HS2WDSR-E.png and b/public/images/devices/HS2WDSR-E.png differ diff --git a/public/images/devices/HS3AQ.png b/public/images/devices/HS3AQ.png index 9fa6e4ea81ced..ddb96f1d57479 100644 Binary files a/public/images/devices/HS3AQ.png and b/public/images/devices/HS3AQ.png differ diff --git a/public/images/devices/HS3CG.png b/public/images/devices/HS3CG.png index 4fe651b4b5b78..dba5409c8a44e 100644 Binary files a/public/images/devices/HS3CG.png and b/public/images/devices/HS3CG.png differ diff --git a/public/images/devices/HS3DS.png b/public/images/devices/HS3DS.png index d861063f74c68..d29e8c27456cf 100644 Binary files a/public/images/devices/HS3DS.png and b/public/images/devices/HS3DS.png differ diff --git a/public/images/devices/HS3HT.png b/public/images/devices/HS3HT.png index 16cb78e4b90d2..de5fa9284ad2a 100644 Binary files a/public/images/devices/HS3HT.png and b/public/images/devices/HS3HT.png differ diff --git a/public/images/devices/HS3MS.png b/public/images/devices/HS3MS.png index 5f2329f975760..278dcd28192aa 100644 Binary files a/public/images/devices/HS3MS.png and b/public/images/devices/HS3MS.png differ diff --git a/public/images/devices/HS3SA-HS1SA.png b/public/images/devices/HS3SA-HS1SA.png index 39eaf580b2a4d..46d3e75200a0e 100644 Binary files a/public/images/devices/HS3SA-HS1SA.png and b/public/images/devices/HS3SA-HS1SA.png differ diff --git a/public/images/devices/HSC1-WD-0.png b/public/images/devices/HSC1-WD-0.png index 60ada274f326c..eecc4dbbb7c5f 100644 Binary files a/public/images/devices/HSC1-WD-0.png and b/public/images/devices/HSC1-WD-0.png differ diff --git a/public/images/devices/HSE2905E.png b/public/images/devices/HSE2905E.png index faa6362da29ff..755b5fb4f1859 100644 Binary files a/public/images/devices/HSE2905E.png and b/public/images/devices/HSE2905E.png differ diff --git a/public/images/devices/HSE2919E.png b/public/images/devices/HSE2919E.png index 0def4a669cd8e..cee7b7ec5bb94 100644 Binary files a/public/images/devices/HSE2919E.png and b/public/images/devices/HSE2919E.png differ diff --git a/public/images/devices/HSE2927E.png b/public/images/devices/HSE2927E.png index 6443894b30089..7e1348424285e 100644 Binary files a/public/images/devices/HSE2927E.png and b/public/images/devices/HSE2927E.png differ diff --git a/public/images/devices/HSE2936T.png b/public/images/devices/HSE2936T.png index e3af53ebd1849..88bf1e704868a 100644 Binary files a/public/images/devices/HSE2936T.png and b/public/images/devices/HSE2936T.png differ diff --git a/public/images/devices/HSIO18008.png b/public/images/devices/HSIO18008.png index de2bebb095c4c..dbcfffa1d681e 100644 Binary files a/public/images/devices/HSIO18008.png and b/public/images/devices/HSIO18008.png differ diff --git a/public/images/devices/HT-08.png b/public/images/devices/HT-08.png index b7b946bf752be..6624d2a6c4c20 100644 Binary files a/public/images/devices/HT-08.png and b/public/images/devices/HT-08.png differ diff --git a/public/images/devices/HT-10.png b/public/images/devices/HT-10.png index db74cadca3a7e..0c5834c4834b9 100644 Binary files a/public/images/devices/HT-10.png and b/public/images/devices/HT-10.png differ diff --git a/public/images/devices/HT402.png b/public/images/devices/HT402.png index 6a352668ace48..d4f73899f3661 100644 Binary files a/public/images/devices/HT402.png and b/public/images/devices/HT402.png differ diff --git a/public/images/devices/HV-CE14CXZB6.png b/public/images/devices/HV-CE14CXZB6.png index e3f0f3cbd1be1..e841d29d59949 100644 Binary files a/public/images/devices/HV-CE14CXZB6.png and b/public/images/devices/HV-CE14CXZB6.png differ diff --git a/public/images/devices/HV-GSCXZB229B.png b/public/images/devices/HV-GSCXZB229B.png index c73a4c81c695b..c4bb2a2a5f30f 100644 Binary files a/public/images/devices/HV-GSCXZB229B.png and b/public/images/devices/HV-GSCXZB229B.png differ diff --git a/public/images/devices/HV-GSCXZB269.png b/public/images/devices/HV-GSCXZB269.png index 0bd040d77fd91..60abd9da64c9a 100644 Binary files a/public/images/devices/HV-GSCXZB269.png and b/public/images/devices/HV-GSCXZB269.png differ diff --git a/public/images/devices/HV-GSCXZB279_HV-GSCXZB229_HV-GSCXZB229K.png b/public/images/devices/HV-GSCXZB279_HV-GSCXZB229_HV-GSCXZB229K.png index 0cc4bbc9ac6db..ac90c4b2dccf4 100644 Binary files a/public/images/devices/HV-GSCXZB279_HV-GSCXZB229_HV-GSCXZB229K.png and b/public/images/devices/HV-GSCXZB279_HV-GSCXZB229_HV-GSCXZB229K.png differ diff --git a/public/images/devices/HV-GUCXZB5.png b/public/images/devices/HV-GUCXZB5.png index 2727d10a813b0..38e3eabc405cc 100644 Binary files a/public/images/devices/HV-GUCXZB5.png and b/public/images/devices/HV-GUCXZB5.png differ diff --git a/public/images/devices/HW500A.png b/public/images/devices/HW500A.png index 24ba5589f9e9b..7a8bed69d4688 100644 Binary files a/public/images/devices/HW500A.png and b/public/images/devices/HW500A.png differ diff --git a/public/images/devices/HY08WE.png b/public/images/devices/HY08WE.png index 70ee81f1ef0dd..520387a2035d1 100644 Binary files a/public/images/devices/HY08WE.png and b/public/images/devices/HY08WE.png differ diff --git a/public/images/devices/HY369RT.png b/public/images/devices/HY369RT.png index a6049a55f0b70..b8539dc6e644f 100644 Binary files a/public/images/devices/HY369RT.png and b/public/images/devices/HY369RT.png differ diff --git a/public/images/devices/IA-CDZFB2AA007NA-MZN-01.png b/public/images/devices/IA-CDZFB2AA007NA-MZN-01.png index 0f363b2df47b9..512da8ef88ef4 100644 Binary files a/public/images/devices/IA-CDZFB2AA007NA-MZN-01.png and b/public/images/devices/IA-CDZFB2AA007NA-MZN-01.png differ diff --git a/public/images/devices/IA-CDZFB2AA007NA-MZN-02.png b/public/images/devices/IA-CDZFB2AA007NA-MZN-02.png index a40fe50211470..40127ed648e4f 100644 Binary files a/public/images/devices/IA-CDZFB2AA007NA-MZN-02.png and b/public/images/devices/IA-CDZFB2AA007NA-MZN-02.png differ diff --git a/public/images/devices/IA-CDZOTAAA007MA-MAN.png b/public/images/devices/IA-CDZOTAAA007MA-MAN.png index 0f363b2df47b9..512da8ef88ef4 100644 Binary files a/public/images/devices/IA-CDZOTAAA007MA-MAN.png and b/public/images/devices/IA-CDZOTAAA007MA-MAN.png differ diff --git a/public/images/devices/IC-CDZFB2AC004HA-MZN.png b/public/images/devices/IC-CDZFB2AC004HA-MZN.png index 4c338a1fde89e..80dee03f21ed1 100644 Binary files a/public/images/devices/IC-CDZFB2AC004HA-MZN.png and b/public/images/devices/IC-CDZFB2AC004HA-MZN.png differ diff --git a/public/images/devices/IC-CDZFB2AC005HA-MZN.png b/public/images/devices/IC-CDZFB2AC005HA-MZN.png index 1d5b61d553727..9e212c03a945c 100644 Binary files a/public/images/devices/IC-CDZFB2AC005HA-MZN.png and b/public/images/devices/IC-CDZFB2AC005HA-MZN.png differ diff --git a/public/images/devices/ICPSHC24-10EU-IL-1.png b/public/images/devices/ICPSHC24-10EU-IL-1.png index 752aaaf31ea72..55f14935d9311 100644 Binary files a/public/images/devices/ICPSHC24-10EU-IL-1.png and b/public/images/devices/ICPSHC24-10EU-IL-1.png differ diff --git a/public/images/devices/ICPSHC24-30-IL44-1.png b/public/images/devices/ICPSHC24-30-IL44-1.png index 459a066e88eee..3200f523a46a0 100644 Binary files a/public/images/devices/ICPSHC24-30-IL44-1.png and b/public/images/devices/ICPSHC24-30-IL44-1.png differ diff --git a/public/images/devices/ICPSHC24-30EU-IL-1.png b/public/images/devices/ICPSHC24-30EU-IL-1.png index e7f581f26a2ca..be7861cb5ce2c 100644 Binary files a/public/images/devices/ICPSHC24-30EU-IL-1.png and b/public/images/devices/ICPSHC24-30EU-IL-1.png differ diff --git a/public/images/devices/ICZB-B1FC60-B3FC64-B2FC95-B2FC125.png b/public/images/devices/ICZB-B1FC60-B3FC64-B2FC95-B2FC125.png index 8f26f3b9ba43c..c36482d646d81 100644 Binary files a/public/images/devices/ICZB-B1FC60-B3FC64-B2FC95-B2FC125.png and b/public/images/devices/ICZB-B1FC60-B3FC64-B2FC95-B2FC125.png differ diff --git a/public/images/devices/ICZB-DC11.png b/public/images/devices/ICZB-DC11.png index 520bf2fb19e7a..00120e9cac7c5 100644 Binary files a/public/images/devices/ICZB-DC11.png and b/public/images/devices/ICZB-DC11.png differ diff --git a/public/images/devices/ICZB-IW11D.png b/public/images/devices/ICZB-IW11D.png index c6e82f97b01b7..5ea56db16ce9e 100644 Binary files a/public/images/devices/ICZB-IW11D.png and b/public/images/devices/ICZB-IW11D.png differ diff --git a/public/images/devices/ICZB-IW11SW.png b/public/images/devices/ICZB-IW11SW.png index f28cd5b1a5338..d2a3b61c2442e 100644 Binary files a/public/images/devices/ICZB-IW11SW.png and b/public/images/devices/ICZB-IW11SW.png differ diff --git a/public/images/devices/ICZB-KPD12.png b/public/images/devices/ICZB-KPD12.png index dce0301ec2c35..09b0f11257c29 100644 Binary files a/public/images/devices/ICZB-KPD12.png and b/public/images/devices/ICZB-KPD12.png differ diff --git a/public/images/devices/ICZB-KPD14S.png b/public/images/devices/ICZB-KPD14S.png index 15634da17fa49..f7c1434dd22d2 100644 Binary files a/public/images/devices/ICZB-KPD14S.png and b/public/images/devices/ICZB-KPD14S.png differ diff --git a/public/images/devices/ICZB-KPD18S.png b/public/images/devices/ICZB-KPD18S.png index 4a8fcbd901d72..6c27197ef7bde 100644 Binary files a/public/images/devices/ICZB-KPD18S.png and b/public/images/devices/ICZB-KPD18S.png differ diff --git a/public/images/devices/ICZB-R11D.png b/public/images/devices/ICZB-R11D.png index 892bca28b9ca8..ba9fc4804ee19 100644 Binary files a/public/images/devices/ICZB-R11D.png and b/public/images/devices/ICZB-R11D.png differ diff --git a/public/images/devices/ICZB-R12D.png b/public/images/devices/ICZB-R12D.png index 706dfffcf0cfb..8980c2f3b369c 100644 Binary files a/public/images/devices/ICZB-R12D.png and b/public/images/devices/ICZB-R12D.png differ diff --git a/public/images/devices/ICZB-RM11S.png b/public/images/devices/ICZB-RM11S.png index 7b34b8cdb5aa1..49a3ccbbb70cc 100644 Binary files a/public/images/devices/ICZB-RM11S.png and b/public/images/devices/ICZB-RM11S.png differ diff --git a/public/images/devices/ID-UK21FW09.png b/public/images/devices/ID-UK21FW09.png index 24507f1417728..cc40cc3e12467 100644 Binary files a/public/images/devices/ID-UK21FW09.png and b/public/images/devices/ID-UK21FW09.png differ diff --git a/public/images/devices/IG-CDZB2AG009RA-MZN-01.png b/public/images/devices/IG-CDZB2AG009RA-MZN-01.png index 6686c50c80fc9..95da5bf0c1358 100644 Binary files a/public/images/devices/IG-CDZB2AG009RA-MZN-01.png and b/public/images/devices/IG-CDZB2AG009RA-MZN-01.png differ diff --git a/public/images/devices/IG-CDZFB2AG010RA-MNZ.png b/public/images/devices/IG-CDZFB2AG010RA-MNZ.png index 0f363b2df47b9..512da8ef88ef4 100644 Binary files a/public/images/devices/IG-CDZFB2AG010RA-MNZ.png and b/public/images/devices/IG-CDZFB2AG010RA-MNZ.png differ diff --git a/public/images/devices/IG-CDZFB2G009RA-MZN-02.png b/public/images/devices/IG-CDZFB2G009RA-MZN-02.png index 9ace767bc547c..6d6260dbe16e2 100644 Binary files a/public/images/devices/IG-CDZFB2G009RA-MZN-02.png and b/public/images/devices/IG-CDZFB2G009RA-MZN-02.png differ diff --git a/public/images/devices/IG-CDZOTAAG014RA-MAN.png b/public/images/devices/IG-CDZOTAAG014RA-MAN.png index 8e622583ec8e7..567ae6dbffd89 100644 Binary files a/public/images/devices/IG-CDZOTAAG014RA-MAN.png and b/public/images/devices/IG-CDZOTAAG014RA-MAN.png differ diff --git a/public/images/devices/IH-K663.png b/public/images/devices/IH-K663.png index 3d7202642e1e9..4b91649b33216 100644 Binary files a/public/images/devices/IH-K663.png and b/public/images/devices/IH-K663.png differ diff --git a/public/images/devices/IH012-RT01.png b/public/images/devices/IH012-RT01.png index a27bce8255d69..222c8c1222300 100644 Binary files a/public/images/devices/IH012-RT01.png and b/public/images/devices/IH012-RT01.png differ diff --git a/public/images/devices/IL06_1.png b/public/images/devices/IL06_1.png index d45e64025de75..db0521c5439dc 100644 Binary files a/public/images/devices/IL06_1.png and b/public/images/devices/IL06_1.png differ diff --git a/public/images/devices/IM-CDZDGAAA0005KA_MAN.png b/public/images/devices/IM-CDZDGAAA0005KA_MAN.png index 22ea180a83bd2..ac815f8ceb45b 100644 Binary files a/public/images/devices/IM-CDZDGAAA0005KA_MAN.png and b/public/images/devices/IM-CDZDGAAA0005KA_MAN.png differ diff --git a/public/images/devices/IM-CDZDGAAG005KA-MZN.png b/public/images/devices/IM-CDZDGAAG005KA-MZN.png index 30f500abdd470..85f3c52015d05 100644 Binary files a/public/images/devices/IM-CDZDGAAG005KA-MZN.png and b/public/images/devices/IM-CDZDGAAG005KA-MZN.png differ diff --git a/public/images/devices/IM6001-BTP01.png b/public/images/devices/IM6001-BTP01.png index 61444c8ba3ca1..32b5a84c99373 100644 Binary files a/public/images/devices/IM6001-BTP01.png and b/public/images/devices/IM6001-BTP01.png differ diff --git a/public/images/devices/IM6001-MPP01.png b/public/images/devices/IM6001-MPP01.png index 814fb49347ef2..85d999e453413 100644 Binary files a/public/images/devices/IM6001-MPP01.png and b/public/images/devices/IM6001-MPP01.png differ diff --git a/public/images/devices/IM6001-MTP01.png b/public/images/devices/IM6001-MTP01.png index 8b0db9206d13f..b17c8882cc9e4 100644 Binary files a/public/images/devices/IM6001-MTP01.png and b/public/images/devices/IM6001-MTP01.png differ diff --git a/public/images/devices/IM6001-OTP05.png b/public/images/devices/IM6001-OTP05.png index 84fe1566d7c5d..c3b63023ecdc3 100644 Binary files a/public/images/devices/IM6001-OTP05.png and b/public/images/devices/IM6001-OTP05.png differ diff --git a/public/images/devices/IM6001-WLP01.png b/public/images/devices/IM6001-WLP01.png index f868e8d1a8083..83a3a34156ede 100644 Binary files a/public/images/devices/IM6001-WLP01.png and b/public/images/devices/IM6001-WLP01.png differ diff --git a/public/images/devices/IOMZB-110.png b/public/images/devices/IOMZB-110.png index 3c5080d8564da..c1b7c1d134717 100644 Binary files a/public/images/devices/IOMZB-110.png and b/public/images/devices/IOMZB-110.png differ diff --git a/public/images/devices/IP-CDZOTAAP005JA-MAN.png b/public/images/devices/IP-CDZOTAAP005JA-MAN.png index 1cdb796887759..6e84d9fd4089f 100644 Binary files a/public/images/devices/IP-CDZOTAAP005JA-MAN.png and b/public/images/devices/IP-CDZOTAAP005JA-MAN.png differ diff --git a/public/images/devices/ISM300Z3.png b/public/images/devices/ISM300Z3.png index 4b529e77252b1..24644e600b271 100644 Binary files a/public/images/devices/ISM300Z3.png and b/public/images/devices/ISM300Z3.png differ diff --git a/public/images/devices/IST-CDZFB2AS007NA-MZN-01.png b/public/images/devices/IST-CDZFB2AS007NA-MZN-01.png index 0f363b2df47b9..512da8ef88ef4 100644 Binary files a/public/images/devices/IST-CDZFB2AS007NA-MZN-01.png and b/public/images/devices/IST-CDZFB2AS007NA-MZN-01.png differ diff --git a/public/images/devices/ISW-ZPR1-WP13.png b/public/images/devices/ISW-ZPR1-WP13.png index 3948009f3ab94..0540db2aa13d8 100644 Binary files a/public/images/devices/ISW-ZPR1-WP13.png and b/public/images/devices/ISW-ZPR1-WP13.png differ diff --git a/public/images/devices/ITCMDR_Click.png b/public/images/devices/ITCMDR_Click.png index d12d8effcf2d7..30f3f42dbc4ed 100644 Binary files a/public/images/devices/ITCMDR_Click.png and b/public/images/devices/ITCMDR_Click.png differ diff --git a/public/images/devices/ITCMDR_Contact.png b/public/images/devices/ITCMDR_Contact.png index f75b6384e16d9..f57ba0e180542 100644 Binary files a/public/images/devices/ITCMDR_Contact.png and b/public/images/devices/ITCMDR_Contact.png differ diff --git a/public/images/devices/Icon.png b/public/images/devices/Icon.png index 1696a7c79cb0b..f230c3b9d087b 100644 Binary files a/public/images/devices/Icon.png and b/public/images/devices/Icon.png differ diff --git a/public/images/devices/InstaRemote.png b/public/images/devices/InstaRemote.png index a4d67594bec8f..93fb7add4d707 100644 Binary files a/public/images/devices/InstaRemote.png and b/public/images/devices/InstaRemote.png differ diff --git a/public/images/devices/J1.png b/public/images/devices/J1.png index a8b23beeba9dd..faa84f70072ef 100644 Binary files a/public/images/devices/J1.png and b/public/images/devices/J1.png differ diff --git a/public/images/devices/J2182548.png b/public/images/devices/J2182548.png index 4a6eb1582142d..10fb2412db686 100644 Binary files a/public/images/devices/J2182548.png and b/public/images/devices/J2182548.png differ diff --git a/public/images/devices/JM-TRH-ZGB-V1.png b/public/images/devices/JM-TRH-ZGB-V1.png index e60deb0416594..3b0b4b5e98427 100644 Binary files a/public/images/devices/JM-TRH-ZGB-V1.png and b/public/images/devices/JM-TRH-ZGB-V1.png differ diff --git a/public/images/devices/JR-ZDS01.png b/public/images/devices/JR-ZDS01.png index ab94a5993f798..5f22966b947c7 100644 Binary files a/public/images/devices/JR-ZDS01.png and b/public/images/devices/JR-ZDS01.png differ diff --git a/public/images/devices/JS-MC-SENSOR-ZB.png b/public/images/devices/JS-MC-SENSOR-ZB.png index 43d11b0c8d581..920fdef77f242 100644 Binary files a/public/images/devices/JS-MC-SENSOR-ZB.png and b/public/images/devices/JS-MC-SENSOR-ZB.png differ diff --git a/public/images/devices/JS-SLK2-ZB.png b/public/images/devices/JS-SLK2-ZB.png index 4390b73610706..d39d433df267d 100644 Binary files a/public/images/devices/JS-SLK2-ZB.png and b/public/images/devices/JS-SLK2-ZB.png differ diff --git a/public/images/devices/JW-A04-CT.png b/public/images/devices/JW-A04-CT.png index 183b785279da9..2feea43e5739c 100644 Binary files a/public/images/devices/JW-A04-CT.png and b/public/images/devices/JW-A04-CT.png differ diff --git a/public/images/devices/JZ-ZB-001.png b/public/images/devices/JZ-ZB-001.png index 6c0b8931a2676..149996ea5596a 100644 Binary files a/public/images/devices/JZ-ZB-001.png and b/public/images/devices/JZ-ZB-001.png differ diff --git a/public/images/devices/JZ-ZB-002.png b/public/images/devices/JZ-ZB-002.png index 909d24e2425df..ba6c8702b316e 100644 Binary files a/public/images/devices/JZ-ZB-002.png and b/public/images/devices/JZ-ZB-002.png differ diff --git a/public/images/devices/JZ-ZB-003.png b/public/images/devices/JZ-ZB-003.png index af13aa004680f..32f60f600f364 100644 Binary files a/public/images/devices/JZ-ZB-003.png and b/public/images/devices/JZ-ZB-003.png differ diff --git a/public/images/devices/K2RGBW01.png b/public/images/devices/K2RGBW01.png index bcc56d7e98c57..a2d9196fc4c5b 100644 Binary files a/public/images/devices/K2RGBW01.png and b/public/images/devices/K2RGBW01.png differ diff --git a/public/images/devices/K4003C-L4003C-N4003C-NT4003C.png b/public/images/devices/K4003C-L4003C-N4003C-NT4003C.png index ba5af97c6a19d..5c8a5266fd672 100644 Binary files a/public/images/devices/K4003C-L4003C-N4003C-NT4003C.png and b/public/images/devices/K4003C-L4003C-N4003C-NT4003C.png differ diff --git a/public/images/devices/K4027C-L4027C-N4027C-NT4027C.png b/public/images/devices/K4027C-L4027C-N4027C-NT4027C.png index 10a807734bc25..37be71e1456ee 100644 Binary files a/public/images/devices/K4027C-L4027C-N4027C-NT4027C.png and b/public/images/devices/K4027C-L4027C-N4027C-NT4027C.png differ diff --git a/public/images/devices/KB-B540R-ZB.png b/public/images/devices/KB-B540R-ZB.png index b678d2cd6f2f8..62f3ae97e324a 100644 Binary files a/public/images/devices/KB-B540R-ZB.png and b/public/images/devices/KB-B540R-ZB.png differ diff --git a/public/images/devices/KB-HD100-ZB.png b/public/images/devices/KB-HD100-ZB.png index 3d1f570ecf621..1ae11ad8d36c1 100644 Binary files a/public/images/devices/KB-HD100-ZB.png and b/public/images/devices/KB-HD100-ZB.png differ diff --git a/public/images/devices/KCTW1Z.png b/public/images/devices/KCTW1Z.png index 2bcd809e403ae..bd63bc0c34263 100644 Binary files a/public/images/devices/KCTW1Z.png and b/public/images/devices/KCTW1Z.png differ diff --git a/public/images/devices/KEYPAD001.png b/public/images/devices/KEYPAD001.png index a1ca00c0723d3..7ecc51ff2715a 100644 Binary files a/public/images/devices/KEYPAD001.png and b/public/images/devices/KEYPAD001.png differ diff --git a/public/images/devices/KEYZB-110.png b/public/images/devices/KEYZB-110.png index 1b5a5a4a72f98..1b6960f1643f7 100644 Binary files a/public/images/devices/KEYZB-110.png and b/public/images/devices/KEYZB-110.png differ diff --git a/public/images/devices/KK-QD-Y01w.png b/public/images/devices/KK-QD-Y01w.png index fb2558979fa9f..5742e1d12faee 100644 Binary files a/public/images/devices/KK-QD-Y01w.png and b/public/images/devices/KK-QD-Y01w.png differ diff --git a/public/images/devices/KMPCIL-tag-001.png b/public/images/devices/KMPCIL-tag-001.png index 845a4a1ef2f11..ae21ef62457ac 100644 Binary files a/public/images/devices/KMPCIL-tag-001.png and b/public/images/devices/KMPCIL-tag-001.png differ diff --git a/public/images/devices/KMPCIL_RES005.png b/public/images/devices/KMPCIL_RES005.png index c0d5e00c83ad6..6adeebf4b37f0 100644 Binary files a/public/images/devices/KMPCIL_RES005.png and b/public/images/devices/KMPCIL_RES005.png differ diff --git a/public/images/devices/KN-Z-WH1-B04.png b/public/images/devices/KN-Z-WH1-B04.png index 4127eb3ce9893..3c01a5de31add 100644 Binary files a/public/images/devices/KN-Z-WH1-B04.png and b/public/images/devices/KN-Z-WH1-B04.png differ diff --git a/public/images/devices/KOJIMA-THS-ZG-LCD.png b/public/images/devices/KOJIMA-THS-ZG-LCD.png index 59de5a07e037b..210e6301219ba 100644 Binary files a/public/images/devices/KOJIMA-THS-ZG-LCD.png and b/public/images/devices/KOJIMA-THS-ZG-LCD.png differ diff --git a/public/images/devices/KP-23EL-ZBS-ACE.png b/public/images/devices/KP-23EL-ZBS-ACE.png index 3b9f26da07893..1d678a3ad841b 100644 Binary files a/public/images/devices/KP-23EL-ZBS-ACE.png and b/public/images/devices/KP-23EL-ZBS-ACE.png differ diff --git a/public/images/devices/KS-SM001.png b/public/images/devices/KS-SM001.png index bd5d611002fcc..d9ea7b168247e 100644 Binary files a/public/images/devices/KS-SM001.png and b/public/images/devices/KS-SM001.png differ diff --git a/public/images/devices/L1(ZW).png b/public/images/devices/L1(ZW).png index da91e400ae9f9..12133473478b2 100644 Binary files a/public/images/devices/L1(ZW).png and b/public/images/devices/L1(ZW).png differ diff --git a/public/images/devices/L122AA63H11A6.5W.png b/public/images/devices/L122AA63H11A6.5W.png index 1e1cee95d2df3..dc8acbb13add7 100644 Binary files a/public/images/devices/L122AA63H11A6.5W.png and b/public/images/devices/L122AA63H11A6.5W.png differ diff --git a/public/images/devices/L122FF63H11A5.0W.png b/public/images/devices/L122FF63H11A5.0W.png index ef88abf578ff8..e5cb3ef04aec2 100644 Binary files a/public/images/devices/L122FF63H11A5.0W.png and b/public/images/devices/L122FF63H11A5.0W.png differ diff --git a/public/images/devices/L12Z.png b/public/images/devices/L12Z.png index 26e7d5240dcf5..84b03c70b326c 100644 Binary files a/public/images/devices/L12Z.png and b/public/images/devices/L12Z.png differ diff --git a/public/images/devices/L13Z.png b/public/images/devices/L13Z.png index 16e015d0256e6..e7ff599c12248 100644 Binary files a/public/images/devices/L13Z.png and b/public/images/devices/L13Z.png differ diff --git a/public/images/devices/L1529.png b/public/images/devices/L1529.png index 0a0f28f2a0069..49f88ff9809ae 100644 Binary files a/public/images/devices/L1529.png and b/public/images/devices/L1529.png differ diff --git a/public/images/devices/L1530.png b/public/images/devices/L1530.png index 8040d74e8415a..28bbb30c90582 100644 Binary files a/public/images/devices/L1530.png and b/public/images/devices/L1530.png differ diff --git a/public/images/devices/L1531.png b/public/images/devices/L1531.png index 96306c077a006..ab3175f4cca77 100644 Binary files a/public/images/devices/L1531.png and b/public/images/devices/L1531.png differ diff --git a/public/images/devices/L4411C-N4411C-NT4411C.png b/public/images/devices/L4411C-N4411C-NT4411C.png index 35b63b3f37a94..e3bc2dd83c865 100644 Binary files a/public/images/devices/L4411C-N4411C-NT4411C.png and b/public/images/devices/L4411C-N4411C-NT4411C.png differ diff --git a/public/images/devices/L4531C.png b/public/images/devices/L4531C.png index 26fb55e248bd9..42b0ef196b3b5 100644 Binary files a/public/images/devices/L4531C.png and b/public/images/devices/L4531C.png differ diff --git a/public/images/devices/LA-5KEY-RGBW.png b/public/images/devices/LA-5KEY-RGBW.png index c3a201d482c0a..d692ce7969904 100644 Binary files a/public/images/devices/LA-5KEY-RGBW.png and b/public/images/devices/LA-5KEY-RGBW.png differ diff --git a/public/images/devices/LA-GU10-RGBW.png b/public/images/devices/LA-GU10-RGBW.png index b71bf604fbe1b..5e7f4b8305df9 100644 Binary files a/public/images/devices/LA-GU10-RGBW.png and b/public/images/devices/LA-GU10-RGBW.png differ diff --git a/public/images/devices/LA-PLUG-10Amp.png b/public/images/devices/LA-PLUG-10Amp.png index 0c20ae9eebcda..9c1ff53e45029 100644 Binary files a/public/images/devices/LA-PLUG-10Amp.png and b/public/images/devices/LA-PLUG-10Amp.png differ diff --git a/public/images/devices/LCZ030.png b/public/images/devices/LCZ030.png index aeb8240be86b7..144cfb9a54742 100644 Binary files a/public/images/devices/LCZ030.png and b/public/images/devices/LCZ030.png differ diff --git a/public/images/devices/LDHD2AZW.png b/public/images/devices/LDHD2AZW.png index 60929dbe53aea..8c88298afc12b 100644 Binary files a/public/images/devices/LDHD2AZW.png and b/public/images/devices/LDHD2AZW.png differ diff --git a/public/images/devices/LDSENK01F.png b/public/images/devices/LDSENK01F.png index 0d2c2f7df3aef..5f7ab7b697251 100644 Binary files a/public/images/devices/LDSENK01F.png and b/public/images/devices/LDSENK01F.png differ diff --git a/public/images/devices/LDSENK01S.png b/public/images/devices/LDSENK01S.png index 0d2c2f7df3aef..5f7ab7b697251 100644 Binary files a/public/images/devices/LDSENK01S.png and b/public/images/devices/LDSENK01S.png differ diff --git a/public/images/devices/LDSENK02F.png b/public/images/devices/LDSENK02F.png index f04757ad7b010..06c8e26b41529 100644 Binary files a/public/images/devices/LDSENK02F.png and b/public/images/devices/LDSENK02F.png differ diff --git a/public/images/devices/LDSENK02S.png b/public/images/devices/LDSENK02S.png index f04757ad7b010..06c8e26b41529 100644 Binary files a/public/images/devices/LDSENK02S.png and b/public/images/devices/LDSENK02S.png differ diff --git a/public/images/devices/LDSENK07.png b/public/images/devices/LDSENK07.png index ec8710596d081..598678d7d9ba5 100644 Binary files a/public/images/devices/LDSENK07.png and b/public/images/devices/LDSENK07.png differ diff --git a/public/images/devices/LDSENK08.png b/public/images/devices/LDSENK08.png index 3c712cea01fd5..888a949362b80 100644 Binary files a/public/images/devices/LDSENK08.png and b/public/images/devices/LDSENK08.png differ diff --git a/public/images/devices/LDSENK09.png b/public/images/devices/LDSENK09.png index 26703718c6f74..bf634369f43c9 100644 Binary files a/public/images/devices/LDSENK09.png and b/public/images/devices/LDSENK09.png differ diff --git a/public/images/devices/LDSENK10.png b/public/images/devices/LDSENK10.png index a7179e7c108e9..878ad28507bb4 100644 Binary files a/public/images/devices/LDSENK10.png and b/public/images/devices/LDSENK10.png differ diff --git a/public/images/devices/LED1536G5.png b/public/images/devices/LED1536G5.png index 4094a2654460a..bf9a14c70c856 100644 Binary files a/public/images/devices/LED1536G5.png and b/public/images/devices/LED1536G5.png differ diff --git a/public/images/devices/LED1537R6-LED1739R5.png b/public/images/devices/LED1537R6-LED1739R5.png index e1e2aa7565b7e..f32db9c4ec324 100644 Binary files a/public/images/devices/LED1537R6-LED1739R5.png and b/public/images/devices/LED1537R6-LED1739R5.png differ diff --git a/public/images/devices/LED1545G12.png b/public/images/devices/LED1545G12.png index f92d64324f10e..0455663cca4d7 100644 Binary files a/public/images/devices/LED1545G12.png and b/public/images/devices/LED1545G12.png differ diff --git a/public/images/devices/LED1546G12.png b/public/images/devices/LED1546G12.png index ae88e165e42ce..2458991def4ac 100644 Binary files a/public/images/devices/LED1546G12.png and b/public/images/devices/LED1546G12.png differ diff --git a/public/images/devices/LED1622G12.png b/public/images/devices/LED1622G12.png index afef633ca545b..b8cbad18a0300 100644 Binary files a/public/images/devices/LED1622G12.png and b/public/images/devices/LED1622G12.png differ diff --git a/public/images/devices/LED1623G12.png b/public/images/devices/LED1623G12.png index 679fa5f57c16d..68dc4b6bd5234 100644 Binary files a/public/images/devices/LED1623G12.png and b/public/images/devices/LED1623G12.png differ diff --git a/public/images/devices/LED1649C5.png b/public/images/devices/LED1649C5.png index d43f7f8288fc1..ba513ed098e54 100644 Binary files a/public/images/devices/LED1649C5.png and b/public/images/devices/LED1649C5.png differ diff --git a/public/images/devices/LED1650R5.png b/public/images/devices/LED1650R5.png index 4c4aa3cf2df07..ba7b374301e10 100644 Binary files a/public/images/devices/LED1650R5.png and b/public/images/devices/LED1650R5.png differ diff --git a/public/images/devices/LED1732G11.png b/public/images/devices/LED1732G11.png index 25b2015ab5866..518290d2c5be1 100644 Binary files a/public/images/devices/LED1732G11.png and b/public/images/devices/LED1732G11.png differ diff --git a/public/images/devices/LED1733G7.png b/public/images/devices/LED1733G7.png index 67d24e763a60d..c274bd7285cc7 100644 Binary files a/public/images/devices/LED1733G7.png and b/public/images/devices/LED1733G7.png differ diff --git a/public/images/devices/LED1736G9.png b/public/images/devices/LED1736G9.png index 96df96c817e8f..1a27f6f83223f 100644 Binary files a/public/images/devices/LED1736G9.png and b/public/images/devices/LED1736G9.png differ diff --git a/public/images/devices/LED1738G7.png b/public/images/devices/LED1738G7.png index dca45981f987a..7f112801dc24e 100644 Binary files a/public/images/devices/LED1738G7.png and b/public/images/devices/LED1738G7.png differ diff --git a/public/images/devices/LED1836G9.png b/public/images/devices/LED1836G9.png index 4ae156a84b330..a4da2757e09f9 100644 Binary files a/public/images/devices/LED1836G9.png and b/public/images/devices/LED1836G9.png differ diff --git a/public/images/devices/LED1837R5.png b/public/images/devices/LED1837R5.png index e25f24504b529..c446474294b24 100644 Binary files a/public/images/devices/LED1837R5.png and b/public/images/devices/LED1837R5.png differ diff --git a/public/images/devices/LED1842G3.png b/public/images/devices/LED1842G3.png index d19b3be421faf..f3419e25dd33c 100644 Binary files a/public/images/devices/LED1842G3.png and b/public/images/devices/LED1842G3.png differ diff --git a/public/images/devices/LED1903C5-LED1835C6.png b/public/images/devices/LED1903C5-LED1835C6.png index bfb6fdd7199c8..243f7d34e0ba5 100644 Binary files a/public/images/devices/LED1903C5-LED1835C6.png and b/public/images/devices/LED1903C5-LED1835C6.png differ diff --git a/public/images/devices/LED1923R5-LED1925G6.png b/public/images/devices/LED1923R5-LED1925G6.png index 2db3b706c364a..6eb19623cfaaa 100644 Binary files a/public/images/devices/LED1923R5-LED1925G6.png and b/public/images/devices/LED1923R5-LED1925G6.png differ diff --git a/public/images/devices/LED1925G6.png b/public/images/devices/LED1925G6.png index 28af55e443818..d7c935818fa28 100644 Binary files a/public/images/devices/LED1925G6.png and b/public/images/devices/LED1925G6.png differ diff --git a/public/images/devices/LED1934G3_E26.png b/public/images/devices/LED1934G3_E26.png index d19b3be421faf..f3419e25dd33c 100644 Binary files a/public/images/devices/LED1934G3_E26.png and b/public/images/devices/LED1934G3_E26.png differ diff --git a/public/images/devices/LED1934G3_E27.png b/public/images/devices/LED1934G3_E27.png index d19b3be421faf..f3419e25dd33c 100644 Binary files a/public/images/devices/LED1934G3_E27.png and b/public/images/devices/LED1934G3_E27.png differ diff --git a/public/images/devices/LED1935C3.png b/public/images/devices/LED1935C3.png index 6c713b5562832..b97ab09bf600f 100644 Binary files a/public/images/devices/LED1935C3.png and b/public/images/devices/LED1935C3.png differ diff --git a/public/images/devices/LED1936G5.png b/public/images/devices/LED1936G5.png index bea02aa8bacd0..6cd21c39dd6aa 100644 Binary files a/public/images/devices/LED1936G5.png and b/public/images/devices/LED1936G5.png differ diff --git a/public/images/devices/LED1937T5_E26.png b/public/images/devices/LED1937T5_E26.png index 8c3af737c33df..e1280c9548822 100644 Binary files a/public/images/devices/LED1937T5_E26.png and b/public/images/devices/LED1937T5_E26.png differ diff --git a/public/images/devices/LED1937T5_E27.png b/public/images/devices/LED1937T5_E27.png index 8c3af737c33df..e1280c9548822 100644 Binary files a/public/images/devices/LED1937T5_E27.png and b/public/images/devices/LED1937T5_E27.png differ diff --git a/public/images/devices/LED1949C5.png b/public/images/devices/LED1949C5.png index 97d5464c39c89..65e4ef620b47f 100644 Binary files a/public/images/devices/LED1949C5.png and b/public/images/devices/LED1949C5.png differ diff --git a/public/images/devices/LED2002G5.png b/public/images/devices/LED2002G5.png index 7d2c354869925..67b81631fb5cb 100644 Binary files a/public/images/devices/LED2002G5.png and b/public/images/devices/LED2002G5.png differ diff --git a/public/images/devices/LED2003G10.png b/public/images/devices/LED2003G10.png index 66b27dcefe5c3..dcd091c0d2b68 100644 Binary files a/public/images/devices/LED2003G10.png and b/public/images/devices/LED2003G10.png differ diff --git a/public/images/devices/LED2004G8.png b/public/images/devices/LED2004G8.png index 5f10156314628..cb38f425e9060 100644 Binary files a/public/images/devices/LED2004G8.png and b/public/images/devices/LED2004G8.png differ diff --git a/public/images/devices/LED2005R5-LED2106R3.png b/public/images/devices/LED2005R5-LED2106R3.png index 0a54ef536c1ad..708bed39826d8 100644 Binary files a/public/images/devices/LED2005R5-LED2106R3.png and b/public/images/devices/LED2005R5-LED2106R3.png differ diff --git a/public/images/devices/LED2006R9.png b/public/images/devices/LED2006R9.png index 83358a727f780..9f9fe592698ce 100644 Binary files a/public/images/devices/LED2006R9.png and b/public/images/devices/LED2006R9.png differ diff --git a/public/images/devices/LED2008G3.png b/public/images/devices/LED2008G3.png index 0a1e3a20ae0d3..238fd640f23e8 100644 Binary files a/public/images/devices/LED2008G3.png and b/public/images/devices/LED2008G3.png differ diff --git a/public/images/devices/LED2009C3.png b/public/images/devices/LED2009C3.png index 6c713b5562832..b97ab09bf600f 100644 Binary files a/public/images/devices/LED2009C3.png and b/public/images/devices/LED2009C3.png differ diff --git a/public/images/devices/LED2035G10.png b/public/images/devices/LED2035G10.png index 179aee4862132..dae1b22522f15 100644 Binary files a/public/images/devices/LED2035G10.png and b/public/images/devices/LED2035G10.png differ diff --git a/public/images/devices/LED2101G4.png b/public/images/devices/LED2101G4.png index 0dcbea39a88f5..492134ea515ce 100644 Binary files a/public/images/devices/LED2101G4.png and b/public/images/devices/LED2101G4.png differ diff --git a/public/images/devices/LED2103GS.png b/public/images/devices/LED2103GS.png index b4a5b998f61c3..e063e5b643e86 100644 Binary files a/public/images/devices/LED2103GS.png and b/public/images/devices/LED2103GS.png differ diff --git a/public/images/devices/LF-AAZ012-0400-42.png b/public/images/devices/LF-AAZ012-0400-42.png index 148472209af47..b7e5170ed0b83 100644 Binary files a/public/images/devices/LF-AAZ012-0400-42.png and b/public/images/devices/LF-AAZ012-0400-42.png differ diff --git a/public/images/devices/LF-GAZ150A6250-24.png b/public/images/devices/LF-GAZ150A6250-24.png index f4d95414cd4ff..1da5b501cc644 100644 Binary files a/public/images/devices/LF-GAZ150A6250-24.png and b/public/images/devices/LF-GAZ150A6250-24.png differ diff --git a/public/images/devices/LH-09521.png b/public/images/devices/LH-09521.png index 1642b54226848..5749b01519203 100644 Binary files a/public/images/devices/LH-09521.png and b/public/images/devices/LH-09521.png differ diff --git a/public/images/devices/LH-32ZB.png b/public/images/devices/LH-32ZB.png index 0e42f071ff453..0f84ded1d6078 100644 Binary files a/public/images/devices/LH-32ZB.png and b/public/images/devices/LH-32ZB.png differ diff --git a/public/images/devices/LH-990F.png b/public/images/devices/LH-990F.png index 52009a7ef43b0..5f3e8d9fbdab5 100644 Binary files a/public/images/devices/LH-990F.png and b/public/images/devices/LH-990F.png differ diff --git a/public/images/devices/LH-990ZB.png b/public/images/devices/LH-990ZB.png index 012370b17474a..d9cb684515e5c 100644 Binary files a/public/images/devices/LH-990ZB.png and b/public/images/devices/LH-990ZB.png differ diff --git a/public/images/devices/LH-992ZB.png b/public/images/devices/LH-992ZB.png index 85b1ad3feb91b..0305ec534e931 100644 Binary files a/public/images/devices/LH-992ZB.png and b/public/images/devices/LH-992ZB.png differ diff --git a/public/images/devices/LH07321.png b/public/images/devices/LH07321.png index f0c9d5116c871..7b11da5123ace 100644 Binary files a/public/images/devices/LH07321.png and b/public/images/devices/LH07321.png differ diff --git a/public/images/devices/LKDSZ001.png b/public/images/devices/LKDSZ001.png index 7a86d893ea260..26447d114fc71 100644 Binary files a/public/images/devices/LKDSZ001.png and b/public/images/devices/LKDSZ001.png differ diff --git a/public/images/devices/LM4110-ZB.png b/public/images/devices/LM4110-ZB.png index 955f95b4ec4f7..b3483957028d4 100644 Binary files a/public/images/devices/LM4110-ZB.png and b/public/images/devices/LM4110-ZB.png differ diff --git a/public/images/devices/LS12128.png b/public/images/devices/LS12128.png index 09fdac13a8488..6f71fe8726b5b 100644 Binary files a/public/images/devices/LS12128.png and b/public/images/devices/LS12128.png differ diff --git a/public/images/devices/LS21001.png b/public/images/devices/LS21001.png index d687feb77426d..4b565063909df 100644 Binary files a/public/images/devices/LS21001.png and b/public/images/devices/LS21001.png differ diff --git a/public/images/devices/LTFY004.png b/public/images/devices/LTFY004.png index 580905abc8ab7..2e395c0626b9d 100644 Binary files a/public/images/devices/LTFY004.png and b/public/images/devices/LTFY004.png differ diff --git a/public/images/devices/LVS-SC7.png b/public/images/devices/LVS-SC7.png index 8477f7f33bdbd..6d1148f7eedf2 100644 Binary files a/public/images/devices/LVS-SC7.png and b/public/images/devices/LVS-SC7.png differ diff --git a/public/images/devices/LVS-SM10ZW.png b/public/images/devices/LVS-SM10ZW.png index e78b2926d747f..39cf74e9f87d5 100644 Binary files a/public/images/devices/LVS-SM10ZW.png and b/public/images/devices/LVS-SM10ZW.png differ diff --git a/public/images/devices/LVS-SN10ZW_SN11.png b/public/images/devices/LVS-SN10ZW_SN11.png index 0656b773350d7..77da09831abf9 100644 Binary files a/public/images/devices/LVS-SN10ZW_SN11.png and b/public/images/devices/LVS-SN10ZW_SN11.png differ diff --git a/public/images/devices/LVS-ZB15R.png b/public/images/devices/LVS-ZB15R.png index 2d5c5e25f0d04..c9a3a81fae044 100644 Binary files a/public/images/devices/LVS-ZB15R.png and b/public/images/devices/LVS-ZB15R.png differ diff --git a/public/images/devices/LVS-ZB15S.png b/public/images/devices/LVS-ZB15S.png index 5e89aba9777dc..0c09302603789 100644 Binary files a/public/images/devices/LVS-ZB15S.png and b/public/images/devices/LVS-ZB15S.png differ diff --git a/public/images/devices/LVS-ZB500D.png b/public/images/devices/LVS-ZB500D.png index 9798dc933eaad..0b80c454eccbe 100644 Binary files a/public/images/devices/LVS-ZB500D.png and b/public/images/devices/LVS-ZB500D.png differ diff --git a/public/images/devices/LWA024.png b/public/images/devices/LWA024.png index 536dc30aaf91d..3b7b13deb4868 100644 Binary files a/public/images/devices/LWA024.png and b/public/images/devices/LWA024.png differ diff --git a/public/images/devices/LWG004.png b/public/images/devices/LWG004.png index 79817e51d68bb..2e3dd69cc21b2 100644 Binary files a/public/images/devices/LWG004.png and b/public/images/devices/LWG004.png differ diff --git a/public/images/devices/LXN56-SS27LX1.1.png b/public/images/devices/LXN56-SS27LX1.1.png index 156f429a4572f..4d0259ec3aa37 100644 Binary files a/public/images/devices/LXN56-SS27LX1.1.png and b/public/images/devices/LXN56-SS27LX1.1.png differ diff --git a/public/images/devices/LXN59-2S7LX1.0.png b/public/images/devices/LXN59-2S7LX1.0.png index f937b009630d7..affaa531c50a7 100644 Binary files a/public/images/devices/LXN59-2S7LX1.0.png and b/public/images/devices/LXN59-2S7LX1.0.png differ diff --git a/public/images/devices/LXZB-02A.png b/public/images/devices/LXZB-02A.png index 860e3885b58d4..264905d31900e 100644 Binary files a/public/images/devices/LXZB-02A.png and b/public/images/devices/LXZB-02A.png differ diff --git a/public/images/devices/LY-108.png b/public/images/devices/LY-108.png index dec760f9adda0..efe20c08d4c0c 100644 Binary files a/public/images/devices/LY-108.png and b/public/images/devices/LY-108.png differ diff --git a/public/images/devices/LZL4BWHL01.png b/public/images/devices/LZL4BWHL01.png index bfed28875177f..881a7b8e4eeca 100644 Binary files a/public/images/devices/LZL4BWHL01.png and b/public/images/devices/LZL4BWHL01.png differ diff --git a/public/images/devices/LZWSM16-2.png b/public/images/devices/LZWSM16-2.png index 716c417d7b227..097deebe5b5bb 100644 Binary files a/public/images/devices/LZWSM16-2.png and b/public/images/devices/LZWSM16-2.png differ diff --git a/public/images/devices/LZWSM16-3.png b/public/images/devices/LZWSM16-3.png index b60a28ef367e8..0d706512ccae3 100644 Binary files a/public/images/devices/LZWSM16-3.png and b/public/images/devices/LZWSM16-3.png differ diff --git a/public/images/devices/LeTV.8KEY.png b/public/images/devices/LeTV.8KEY.png index e654b068aa994..c90b7125c1fa8 100644 Binary files a/public/images/devices/LeTV.8KEY.png and b/public/images/devices/LeTV.8KEY.png differ diff --git a/public/images/devices/M10Z.png b/public/images/devices/M10Z.png index e800a2bce1ec2..e815887ced6b4 100644 Binary files a/public/images/devices/M10Z.png and b/public/images/devices/M10Z.png differ diff --git a/public/images/devices/M350STW1.png b/public/images/devices/M350STW1.png index 90fc5268411e6..d44b9a868d248 100644 Binary files a/public/images/devices/M350STW1.png and b/public/images/devices/M350STW1.png differ diff --git a/public/images/devices/M415-6C.png b/public/images/devices/M415-6C.png index 30363cdcce1a4..9bab206009860 100644 Binary files a/public/images/devices/M415-6C.png and b/public/images/devices/M415-6C.png differ diff --git a/public/images/devices/M423-9E.png b/public/images/devices/M423-9E.png index b24d620eadf39..614cc6e861f64 100644 Binary files a/public/images/devices/M423-9E.png and b/public/images/devices/M423-9E.png differ diff --git a/public/images/devices/M515EGBZTN.png b/public/images/devices/M515EGBZTN.png index 05da28b28ee92..acf1ee4ac96eb 100644 Binary files a/public/images/devices/M515EGBZTN.png and b/public/images/devices/M515EGBZTN.png differ diff --git a/public/images/devices/M9-zigbee-SL.png b/public/images/devices/M9-zigbee-SL.png index 3233c5358f718..1d96b027889a9 100644 Binary files a/public/images/devices/M9-zigbee-SL.png and b/public/images/devices/M9-zigbee-SL.png differ diff --git a/public/images/devices/MAI-ZTP20.png b/public/images/devices/MAI-ZTP20.png index 26145e304d7cb..ff31256ffd218 100644 Binary files a/public/images/devices/MAI-ZTP20.png and b/public/images/devices/MAI-ZTP20.png differ diff --git a/public/images/devices/MBD-S.png b/public/images/devices/MBD-S.png index 307ab841b2b90..b2d27d704ecb9 100644 Binary files a/public/images/devices/MBD-S.png and b/public/images/devices/MBD-S.png differ diff --git a/public/images/devices/MC-02.png b/public/images/devices/MC-02.png index fd01d470a1d09..a701d3afe3e5e 100644 Binary files a/public/images/devices/MC-02.png and b/public/images/devices/MC-02.png differ diff --git a/public/images/devices/MC500A.png b/public/images/devices/MC500A.png index da6499a5e3493..15c00f87ac817 100644 Binary files a/public/images/devices/MC500A.png and b/public/images/devices/MC500A.png differ diff --git a/public/images/devices/MCT-340-E.png b/public/images/devices/MCT-340-E.png index 9e074918d247f..a5900c2ddb44f 100644 Binary files a/public/images/devices/MCT-340-E.png and b/public/images/devices/MCT-340-E.png differ diff --git a/public/images/devices/MCT-340-SMA.png b/public/images/devices/MCT-340-SMA.png index df8ee4410c12b..9dde53a34a7df 100644 Binary files a/public/images/devices/MCT-340-SMA.png and b/public/images/devices/MCT-340-SMA.png differ diff --git a/public/images/devices/MCT-350-SMA.png b/public/images/devices/MCT-350-SMA.png index f569a7f09ca33..ed04350b8563f 100644 Binary files a/public/images/devices/MCT-350-SMA.png and b/public/images/devices/MCT-350-SMA.png differ diff --git a/public/images/devices/MCT-370-SMA.png b/public/images/devices/MCT-370-SMA.png index 00d3a4f18e507..b91a10dd45926 100644 Binary files a/public/images/devices/MCT-370-SMA.png and b/public/images/devices/MCT-370-SMA.png differ diff --git a/public/images/devices/ME167.png b/public/images/devices/ME167.png index 4e4dd582fa987..83b773d84526a 100644 Binary files a/public/images/devices/ME167.png and b/public/images/devices/ME167.png differ diff --git a/public/images/devices/ME168.png b/public/images/devices/ME168.png index 41c0ac1aaa72e..029339e20e3fe 100644 Binary files a/public/images/devices/ME168.png and b/public/images/devices/ME168.png differ diff --git a/public/images/devices/MEAZON_BIZY_PLUG.png b/public/images/devices/MEAZON_BIZY_PLUG.png index 040a870a26151..69674fc4093d7 100644 Binary files a/public/images/devices/MEAZON_BIZY_PLUG.png and b/public/images/devices/MEAZON_BIZY_PLUG.png differ diff --git a/public/images/devices/MEAZON_DINRAIL.png b/public/images/devices/MEAZON_DINRAIL.png index 36b1c2ab15533..358f47c65a231 100644 Binary files a/public/images/devices/MEAZON_DINRAIL.png and b/public/images/devices/MEAZON_DINRAIL.png differ diff --git a/public/images/devices/MEG5113-0300-MEG5165-0000.png b/public/images/devices/MEG5113-0300-MEG5165-0000.png index 18d39636edab4..d3d5c4c50cd7c 100644 Binary files a/public/images/devices/MEG5113-0300-MEG5165-0000.png and b/public/images/devices/MEG5113-0300-MEG5165-0000.png differ diff --git a/public/images/devices/MEG5116-0300-MEG5171-0000.png b/public/images/devices/MEG5116-0300-MEG5171-0000.png index 18d39636edab4..d3d5c4c50cd7c 100644 Binary files a/public/images/devices/MEG5116-0300-MEG5171-0000.png and b/public/images/devices/MEG5116-0300-MEG5171-0000.png differ diff --git a/public/images/devices/MEG5161-0000.png b/public/images/devices/MEG5161-0000.png index 9a4834585e713..938fa86f172b9 100644 Binary files a/public/images/devices/MEG5161-0000.png and b/public/images/devices/MEG5161-0000.png differ diff --git a/public/images/devices/MG-AUWS01.png b/public/images/devices/MG-AUWS01.png index 317651c1387ba..5a3830d6f30b5 100644 Binary files a/public/images/devices/MG-AUWS01.png and b/public/images/devices/MG-AUWS01.png differ diff --git a/public/images/devices/MG-AUZG01.png b/public/images/devices/MG-AUZG01.png index 22c10a6b4d934..dacf05f0378da 100644 Binary files a/public/images/devices/MG-AUZG01.png and b/public/images/devices/MG-AUZG01.png differ diff --git a/public/images/devices/MINI-ZSB.png b/public/images/devices/MINI-ZSB.png index 07d2b3f57683d..821c4226a46fa 100644 Binary files a/public/images/devices/MINI-ZSB.png and b/public/images/devices/MINI-ZSB.png differ diff --git a/public/images/devices/MIR-HE200-TY.png b/public/images/devices/MIR-HE200-TY.png index 0a9a0222d1c7d..f72ef9b0b45b1 100644 Binary files a/public/images/devices/MIR-HE200-TY.png and b/public/images/devices/MIR-HE200-TY.png differ diff --git a/public/images/devices/MKS-CM-W5.png b/public/images/devices/MKS-CM-W5.png index 849c004edbbba..d8b0927a6f871 100644 Binary files a/public/images/devices/MKS-CM-W5.png and b/public/images/devices/MKS-CM-W5.png differ diff --git a/public/images/devices/ML-ST-BP-DIM.png b/public/images/devices/ML-ST-BP-DIM.png index 1df15e68f9c92..1f1d281edf2dc 100644 Binary files a/public/images/devices/ML-ST-BP-DIM.png and b/public/images/devices/ML-ST-BP-DIM.png differ diff --git a/public/images/devices/ML-ST-D200.png b/public/images/devices/ML-ST-D200.png index d4dbb9f74eed2..e57f4098af951 100644 Binary files a/public/images/devices/ML-ST-D200.png and b/public/images/devices/ML-ST-D200.png differ diff --git a/public/images/devices/MLI-404011-MLI-404049.png b/public/images/devices/MLI-404011-MLI-404049.png index 6f0bfcd027dd4..b98c1170c8152 100644 Binary files a/public/images/devices/MLI-404011-MLI-404049.png and b/public/images/devices/MLI-404011-MLI-404049.png differ diff --git a/public/images/devices/MOES_plug.png b/public/images/devices/MOES_plug.png index 1236d175f5ded..6960e4dc7c143 100644 Binary files a/public/images/devices/MOES_plug.png and b/public/images/devices/MOES_plug.png differ diff --git a/public/images/devices/MOSZB-130.png b/public/images/devices/MOSZB-130.png index dc694845dd35c..5af8cc9245592 100644 Binary files a/public/images/devices/MOSZB-130.png and b/public/images/devices/MOSZB-130.png differ diff --git a/public/images/devices/MOSZB-140.png b/public/images/devices/MOSZB-140.png index df48142952baf..74582108ff739 100644 Binary files a/public/images/devices/MOSZB-140.png and b/public/images/devices/MOSZB-140.png differ diff --git a/public/images/devices/MOSZB-141.png b/public/images/devices/MOSZB-141.png index f461aa41bd485..0696b7dceb100 100644 Binary files a/public/images/devices/MOSZB-141.png and b/public/images/devices/MOSZB-141.png differ diff --git a/public/images/devices/MOT003.png b/public/images/devices/MOT003.png index 8c82d45760f50..6ae157578a7b7 100644 Binary files a/public/images/devices/MOT003.png and b/public/images/devices/MOT003.png differ diff --git a/public/images/devices/MP-840.png b/public/images/devices/MP-840.png index c9f8d9803f2f3..80f353bf6b60d 100644 Binary files a/public/images/devices/MP-840.png and b/public/images/devices/MP-840.png differ diff --git a/public/images/devices/MP-841.png b/public/images/devices/MP-841.png index 122dfa631102e..bef683851700c 100644 Binary files a/public/images/devices/MP-841.png and b/public/images/devices/MP-841.png differ diff --git a/public/images/devices/MS-104-M.png b/public/images/devices/MS-104-M.png index 4bbf9919996e4..e2a157600b287 100644 Binary files a/public/images/devices/MS-104-M.png and b/public/images/devices/MS-104-M.png differ diff --git a/public/images/devices/MS-104B-M.png b/public/images/devices/MS-104B-M.png index 06594d939f1e6..674136f9ded97 100644 Binary files a/public/images/devices/MS-104B-M.png and b/public/images/devices/MS-104B-M.png differ diff --git a/public/images/devices/MS-104BZ.png b/public/images/devices/MS-104BZ.png index 448bb61cb98db..a61661fb66aef 100644 Binary files a/public/images/devices/MS-104BZ.png and b/public/images/devices/MS-104BZ.png differ diff --git a/public/images/devices/MS-104Z.png b/public/images/devices/MS-104Z.png index a501eaae5a686..5f3d8e42f298c 100644 Binary files a/public/images/devices/MS-104Z.png and b/public/images/devices/MS-104Z.png differ diff --git a/public/images/devices/MS-105B.png b/public/images/devices/MS-105B.png index a751586d51cb0..7e9c79c320309 100644 Binary files a/public/images/devices/MS-105B.png and b/public/images/devices/MS-105B.png differ diff --git a/public/images/devices/MS-105Z.png b/public/images/devices/MS-105Z.png index b3a548d355ae0..141008889c6dd 100644 Binary files a/public/images/devices/MS-105Z.png and b/public/images/devices/MS-105Z.png differ diff --git a/public/images/devices/MS-108ZR.png b/public/images/devices/MS-108ZR.png index 31b801b125d66..70f3220b16d86 100644 Binary files a/public/images/devices/MS-108ZR.png and b/public/images/devices/MS-108ZR.png differ diff --git a/public/images/devices/MS-20-Z.png b/public/images/devices/MS-20-Z.png index 0d1400a7505c1..b40b3f8b678fc 100644 Binary files a/public/images/devices/MS-20-Z.png and b/public/images/devices/MS-20-Z.png differ diff --git a/public/images/devices/MS-SP-LE27WRGB.png b/public/images/devices/MS-SP-LE27WRGB.png index 0b06d6f85a223..6ca2998e49bc2 100644 Binary files a/public/images/devices/MS-SP-LE27WRGB.png and b/public/images/devices/MS-SP-LE27WRGB.png differ diff --git a/public/images/devices/MS100.png b/public/images/devices/MS100.png index 306fe1a1bd564..243236a6260d9 100644 Binary files a/public/images/devices/MS100.png and b/public/images/devices/MS100.png differ diff --git a/public/images/devices/MSM-300ZB.png b/public/images/devices/MSM-300ZB.png index e8b20407e1d6d..ef387301c7d2f 100644 Binary files a/public/images/devices/MSM-300ZB.png and b/public/images/devices/MSM-300ZB.png differ diff --git a/public/images/devices/MTG075-ZB-RL.png b/public/images/devices/MTG075-ZB-RL.png index 1b9080b74cffa..c924d945f81cd 100644 Binary files a/public/images/devices/MTG075-ZB-RL.png and b/public/images/devices/MTG075-ZB-RL.png differ diff --git a/public/images/devices/MTG275-ZB-RL.png b/public/images/devices/MTG275-ZB-RL.png index ad1b071c1628c..f2c335771f6a8 100644 Binary files a/public/images/devices/MTG275-ZB-RL.png and b/public/images/devices/MTG275-ZB-RL.png differ diff --git a/public/images/devices/Mega23M12.png b/public/images/devices/Mega23M12.png index a06d9579dc8a0..b053e6ba0117c 100644 Binary files a/public/images/devices/Mega23M12.png and b/public/images/devices/Mega23M12.png differ diff --git a/public/images/devices/N20.png b/public/images/devices/N20.png index 13f8efe58e87a..9c84062870c1b 100644 Binary files a/public/images/devices/N20.png and b/public/images/devices/N20.png differ diff --git a/public/images/devices/N2G-SP.png b/public/images/devices/N2G-SP.png index c2ae1a29a820a..5f5704b9e59fe 100644 Binary files a/public/images/devices/N2G-SP.png and b/public/images/devices/N2G-SP.png differ diff --git a/public/images/devices/NAS-PD07.png b/public/images/devices/NAS-PD07.png index 6d780713d3938..eaf4dd0fb9540 100644 Binary files a/public/images/devices/NAS-PD07.png and b/public/images/devices/NAS-PD07.png differ diff --git a/public/images/devices/NB102.png b/public/images/devices/NB102.png index 26145e304d7cb..ff31256ffd218 100644 Binary files a/public/images/devices/NB102.png and b/public/images/devices/NB102.png differ diff --git a/public/images/devices/NCZ-3010.png b/public/images/devices/NCZ-3010.png index 6c52a320e77f7..22bdacf6b03b1 100644 Binary files a/public/images/devices/NCZ-3010.png and b/public/images/devices/NCZ-3010.png differ diff --git a/public/images/devices/NCZ-3011-HA.png b/public/images/devices/NCZ-3011-HA.png index f793c61b744ef..3ff70bcde9d9b 100644 Binary files a/public/images/devices/NCZ-3011-HA.png and b/public/images/devices/NCZ-3011-HA.png differ diff --git a/public/images/devices/NCZ-3041-HA.png b/public/images/devices/NCZ-3041-HA.png index ab194f31b1af4..7ebbb8f7eff77 100644 Binary files a/public/images/devices/NCZ-3041-HA.png and b/public/images/devices/NCZ-3041-HA.png differ diff --git a/public/images/devices/NCZ-3043-HA.png b/public/images/devices/NCZ-3043-HA.png index bd8223de04831..9db125253f979 100644 Binary files a/public/images/devices/NCZ-3043-HA.png and b/public/images/devices/NCZ-3043-HA.png differ diff --git a/public/images/devices/NCZ-3045-HA.png b/public/images/devices/NCZ-3045-HA.png index fe3c9f4a6a71c..8bd5ae8691dd1 100644 Binary files a/public/images/devices/NCZ-3045-HA.png and b/public/images/devices/NCZ-3045-HA.png differ diff --git a/public/images/devices/NL08-0800.png b/public/images/devices/NL08-0800.png index 5e82928bcb799..8c491c1f4296a 100644 Binary files a/public/images/devices/NL08-0800.png and b/public/images/devices/NL08-0800.png differ diff --git a/public/images/devices/NLG-CCT-light.png b/public/images/devices/NLG-CCT-light.png index 44653b0f17aa5..d1865c41aeda9 100644 Binary files a/public/images/devices/NLG-CCT-light.png and b/public/images/devices/NLG-CCT-light.png differ diff --git a/public/images/devices/NLG-RGB-TW-light.png b/public/images/devices/NLG-RGB-TW-light.png index 03013f054aae5..4bd73acbabf4e 100644 Binary files a/public/images/devices/NLG-RGB-TW-light.png and b/public/images/devices/NLG-RGB-TW-light.png differ diff --git a/public/images/devices/NLG-RGBW__light.png b/public/images/devices/NLG-RGBW__light.png index 0191af7bee8dd..a0687863d1acd 100644 Binary files a/public/images/devices/NLG-RGBW__light.png and b/public/images/devices/NLG-RGBW__light.png differ diff --git a/public/images/devices/NLG-RGBW_light.png b/public/images/devices/NLG-RGBW_light.png index 750b1e765b82d..f064ef83177a4 100644 Binary files a/public/images/devices/NLG-RGBW_light.png and b/public/images/devices/NLG-RGBW_light.png differ diff --git a/public/images/devices/NLG-TW-light.png b/public/images/devices/NLG-TW-light.png index 304a9da3f2ec7..2006576176080 100644 Binary files a/public/images/devices/NLG-TW-light.png and b/public/images/devices/NLG-TW-light.png differ diff --git a/public/images/devices/NSAV061.png b/public/images/devices/NSAV061.png index 83d0eafee0e0c..32730412352a0 100644 Binary files a/public/images/devices/NSAV061.png and b/public/images/devices/NSAV061.png differ diff --git a/public/images/devices/NUE-AUWZO2.png b/public/images/devices/NUE-AUWZO2.png index 84e5f6fb8b12b..0266b6d610011 100644 Binary files a/public/images/devices/NUE-AUWZO2.png and b/public/images/devices/NUE-AUWZO2.png differ diff --git a/public/images/devices/NUE-ZBFLB.png b/public/images/devices/NUE-ZBFLB.png index 55b54ee1c720d..7bff7990f6d35 100644 Binary files a/public/images/devices/NUE-ZBFLB.png and b/public/images/devices/NUE-ZBFLB.png differ diff --git a/public/images/devices/OFL-120-C.png b/public/images/devices/OFL-120-C.png index 58120aacd3b8c..134a686ee5ecb 100644 Binary files a/public/images/devices/OFL-120-C.png and b/public/images/devices/OFL-120-C.png differ diff --git a/public/images/devices/OFL-122-C.png b/public/images/devices/OFL-122-C.png index c85f82cc5fff4..b757533b52a22 100644 Binary files a/public/images/devices/OFL-122-C.png and b/public/images/devices/OFL-122-C.png differ diff --git a/public/images/devices/OFL-140-C.png b/public/images/devices/OFL-140-C.png index c85f82cc5fff4..b757533b52a22 100644 Binary files a/public/images/devices/OFL-140-C.png and b/public/images/devices/OFL-140-C.png differ diff --git a/public/images/devices/OFL-142-C.png b/public/images/devices/OFL-142-C.png index c85f82cc5fff4..b757533b52a22 100644 Binary files a/public/images/devices/OFL-142-C.png and b/public/images/devices/OFL-142-C.png differ diff --git a/public/images/devices/OGL-130-C.png b/public/images/devices/OGL-130-C.png index 747c22d3a3e71..7e126f067e7eb 100644 Binary files a/public/images/devices/OGL-130-C.png and b/public/images/devices/OGL-130-C.png differ diff --git a/public/images/devices/OPL-130-C.png b/public/images/devices/OPL-130-C.png index 462098e606143..bd1155647af85 100644 Binary files a/public/images/devices/OPL-130-C.png and b/public/images/devices/OPL-130-C.png differ diff --git a/public/images/devices/OR-ZB-S010-3C.png b/public/images/devices/OR-ZB-S010-3C.png index 1fa7bb7e1a06a..dd175ba8c57c3 100644 Binary files a/public/images/devices/OR-ZB-S010-3C.png and b/public/images/devices/OR-ZB-S010-3C.png differ diff --git a/public/images/devices/ORBIS-Motion-Sensor.png b/public/images/devices/ORBIS-Motion-Sensor.png index 075e6fcc2453e..a4ae6242d0fe8 100644 Binary files a/public/images/devices/ORBIS-Motion-Sensor.png and b/public/images/devices/ORBIS-Motion-Sensor.png differ diff --git a/public/images/devices/ORBIS-Vibration-Sensor.png b/public/images/devices/ORBIS-Vibration-Sensor.png index bc8d3e5cccdb7..762e0a72beb40 100644 Binary files a/public/images/devices/ORBIS-Vibration-Sensor.png and b/public/images/devices/ORBIS-Vibration-Sensor.png differ diff --git a/public/images/devices/ORBIS-Water-Sensor.png b/public/images/devices/ORBIS-Water-Sensor.png index bcd08c36207b1..50665b9a7cd97 100644 Binary files a/public/images/devices/ORBIS-Water-Sensor.png and b/public/images/devices/ORBIS-Water-Sensor.png differ diff --git a/public/images/devices/ORBIS-Windows-&-Door-Sensor.png b/public/images/devices/ORBIS-Windows-&-Door-Sensor.png index 9c0faa12f68ea..8ea46ea06e264 100644 Binary files a/public/images/devices/ORBIS-Windows-&-Door-Sensor.png and b/public/images/devices/ORBIS-Windows-&-Door-Sensor.png differ diff --git a/public/images/devices/OS600.png b/public/images/devices/OS600.png index c2000d71436d8..13f4ad9dc30f9 100644 Binary files a/public/images/devices/OS600.png and b/public/images/devices/OS600.png differ diff --git a/public/images/devices/OSL-130-C.png b/public/images/devices/OSL-130-C.png index 3c33e7f3a42fe..da4b654de6aaa 100644 Binary files a/public/images/devices/OSL-130-C.png and b/public/images/devices/OSL-130-C.png differ diff --git a/public/images/devices/OSP_210.png b/public/images/devices/OSP_210.png index dd1f52380c996..ac88ec78691e2 100644 Binary files a/public/images/devices/OSP_210.png and b/public/images/devices/OSP_210.png differ diff --git a/public/images/devices/Open-R.png b/public/images/devices/Open-R.png index 269e15e0cdf3e..cf08407e148f9 100644 Binary files a/public/images/devices/Open-R.png and b/public/images/devices/Open-R.png differ diff --git a/public/images/devices/P3Z.png b/public/images/devices/P3Z.png index 14e075502c77a..22ed39fcb92d0 100644 Binary files a/public/images/devices/P3Z.png and b/public/images/devices/P3Z.png differ diff --git a/public/images/devices/PA-44Z.png b/public/images/devices/PA-44Z.png index 1ab3914679c94..93c1842f77652 100644 Binary files a/public/images/devices/PA-44Z.png and b/public/images/devices/PA-44Z.png differ diff --git a/public/images/devices/PC321.png b/public/images/devices/PC321.png index 7d5092bea3897..e3c70ae7b281e 100644 Binary files a/public/images/devices/PC321.png and b/public/images/devices/PC321.png differ diff --git a/public/images/devices/PCT504.png b/public/images/devices/PCT504.png index 5a947d726a2b6..02070e480f2e1 100644 Binary files a/public/images/devices/PCT504.png and b/public/images/devices/PCT504.png differ diff --git a/public/images/devices/PEHWE20.png b/public/images/devices/PEHWE20.png index 9bfca1cb43137..a5f9ec1e29b9c 100644 Binary files a/public/images/devices/PEHWE20.png and b/public/images/devices/PEHWE20.png differ diff --git a/public/images/devices/PERCALE2.png b/public/images/devices/PERCALE2.png index 736b2c9a25208..eedc0c2238894 100644 Binary files a/public/images/devices/PERCALE2.png and b/public/images/devices/PERCALE2.png differ diff --git a/public/images/devices/PF-PM02D-TYZ.png b/public/images/devices/PF-PM02D-TYZ.png index 5408fae98fa39..27c79e1c42690 100644 Binary files a/public/images/devices/PF-PM02D-TYZ.png and b/public/images/devices/PF-PM02D-TYZ.png differ diff --git a/public/images/devices/PIR1-ZB.png b/public/images/devices/PIR1-ZB.png index 844095f583f20..aa7462a513c92 100644 Binary files a/public/images/devices/PIR1-ZB.png and b/public/images/devices/PIR1-ZB.png differ diff --git a/public/images/devices/PIR313-E.png b/public/images/devices/PIR313-E.png index 4315d73f03d5d..b9b438e3fb85d 100644 Binary files a/public/images/devices/PIR313-E.png and b/public/images/devices/PIR313-E.png differ diff --git a/public/images/devices/PIR323-PTH.png b/public/images/devices/PIR323-PTH.png index f394740c55cb4..8becb8a3a32f7 100644 Binary files a/public/images/devices/PIR323-PTH.png and b/public/images/devices/PIR323-PTH.png differ diff --git a/public/images/devices/PJ-MGW1203.png b/public/images/devices/PJ-MGW1203.png index 4bfad882233a9..0bac479dbe8a3 100644 Binary files a/public/images/devices/PJ-MGW1203.png and b/public/images/devices/PJ-MGW1203.png differ diff --git a/public/images/devices/PJ-ZGD01.png b/public/images/devices/PJ-ZGD01.png index 139e11d581433..23d3c5053c001 100644 Binary files a/public/images/devices/PJ-ZGD01.png and b/public/images/devices/PJ-ZGD01.png differ diff --git a/public/images/devices/PL-110.png b/public/images/devices/PL-110.png index 41c2aa88eaa52..8abb54b6ae6b2 100644 Binary files a/public/images/devices/PL-110.png and b/public/images/devices/PL-110.png differ diff --git a/public/images/devices/PL-115.png b/public/images/devices/PL-115.png index c497b80317679..91380eb44ec9d 100644 Binary files a/public/images/devices/PL-115.png and b/public/images/devices/PL-115.png differ diff --git a/public/images/devices/PLUG-EDP-RE-DY.png b/public/images/devices/PLUG-EDP-RE-DY.png index aa1ac6fb17877..02d39618be5ee 100644 Binary files a/public/images/devices/PLUG-EDP-RE-DY.png and b/public/images/devices/PLUG-EDP-RE-DY.png differ diff --git a/public/images/devices/PM-B430-ZB.png b/public/images/devices/PM-B430-ZB.png index fa95e69942379..c6588114674fd 100644 Binary files a/public/images/devices/PM-B430-ZB.png and b/public/images/devices/PM-B430-ZB.png differ diff --git a/public/images/devices/PM-B530-ZB.png b/public/images/devices/PM-B530-ZB.png index fa95e69942379..c6588114674fd 100644 Binary files a/public/images/devices/PM-B530-ZB.png and b/public/images/devices/PM-B530-ZB.png differ diff --git a/public/images/devices/PM-B540-ZB.png b/public/images/devices/PM-B540-ZB.png index 255d267a553cb..2f33705f7db64 100644 Binary files a/public/images/devices/PM-B540-ZB.png and b/public/images/devices/PM-B540-ZB.png differ diff --git a/public/images/devices/PM-C140-ZB.png b/public/images/devices/PM-C140-ZB.png index 9171df618235d..5acb7c2f6c596 100644 Binary files a/public/images/devices/PM-C140-ZB.png and b/public/images/devices/PM-C140-ZB.png differ diff --git a/public/images/devices/PM-C150-ZB.png b/public/images/devices/PM-C150-ZB.png index 9171df618235d..5acb7c2f6c596 100644 Binary files a/public/images/devices/PM-C150-ZB.png and b/public/images/devices/PM-C150-ZB.png differ diff --git a/public/images/devices/PM-S140-ZB.png b/public/images/devices/PM-S140-ZB.png index 4bbe988be2de9..13f0e24269b2c 100644 Binary files a/public/images/devices/PM-S140-ZB.png and b/public/images/devices/PM-S140-ZB.png differ diff --git a/public/images/devices/PM-S140R-ZB.png b/public/images/devices/PM-S140R-ZB.png index 4bbe988be2de9..13f0e24269b2c 100644 Binary files a/public/images/devices/PM-S140R-ZB.png and b/public/images/devices/PM-S140R-ZB.png differ diff --git a/public/images/devices/PM-S150-ZB.png b/public/images/devices/PM-S150-ZB.png index 4bbe988be2de9..13f0e24269b2c 100644 Binary files a/public/images/devices/PM-S150-ZB.png and b/public/images/devices/PM-S150-ZB.png differ diff --git a/public/images/devices/PM-S240-ZB.png b/public/images/devices/PM-S240-ZB.png index 471ad5636a8de..2b7403b6d0a58 100644 Binary files a/public/images/devices/PM-S240-ZB.png and b/public/images/devices/PM-S240-ZB.png differ diff --git a/public/images/devices/PM-S240R-ZB.png b/public/images/devices/PM-S240R-ZB.png index 471ad5636a8de..2b7403b6d0a58 100644 Binary files a/public/images/devices/PM-S240R-ZB.png and b/public/images/devices/PM-S240R-ZB.png differ diff --git a/public/images/devices/PM-S250-ZB.png b/public/images/devices/PM-S250-ZB.png index 471ad5636a8de..2b7403b6d0a58 100644 Binary files a/public/images/devices/PM-S250-ZB.png and b/public/images/devices/PM-S250-ZB.png differ diff --git a/public/images/devices/PM-S340-ZB.png b/public/images/devices/PM-S340-ZB.png index 53333cc46f15d..fec14134e3a4e 100644 Binary files a/public/images/devices/PM-S340-ZB.png and b/public/images/devices/PM-S340-ZB.png differ diff --git a/public/images/devices/PM-S340R-ZB.png b/public/images/devices/PM-S340R-ZB.png index 53333cc46f15d..fec14134e3a4e 100644 Binary files a/public/images/devices/PM-S340R-ZB.png and b/public/images/devices/PM-S340R-ZB.png differ diff --git a/public/images/devices/PM-S350-ZB.png b/public/images/devices/PM-S350-ZB.png index 53333cc46f15d..fec14134e3a4e 100644 Binary files a/public/images/devices/PM-S350-ZB.png and b/public/images/devices/PM-S350-ZB.png differ diff --git a/public/images/devices/PMM-300Z1.png b/public/images/devices/PMM-300Z1.png index 308624976961a..850ec55aa4722 100644 Binary files a/public/images/devices/PMM-300Z1.png and b/public/images/devices/PMM-300Z1.png differ diff --git a/public/images/devices/PMM-300Z2.png b/public/images/devices/PMM-300Z2.png index f9f016a0338c6..3991e79445712 100644 Binary files a/public/images/devices/PMM-300Z2.png and b/public/images/devices/PMM-300Z2.png differ diff --git a/public/images/devices/PMM-300Z3.png b/public/images/devices/PMM-300Z3.png index 8c33fa61d80d4..d434371546d95 100644 Binary files a/public/images/devices/PMM-300Z3.png and b/public/images/devices/PMM-300Z3.png differ diff --git a/public/images/devices/POTLK-WH02.png b/public/images/devices/POTLK-WH02.png index 7496e95d02ec3..198d9985295be 100644 Binary files a/public/images/devices/POTLK-WH02.png and b/public/images/devices/POTLK-WH02.png differ diff --git a/public/images/devices/PP-WHT-US.png b/public/images/devices/PP-WHT-US.png index 3571f81157f53..634d772aea59c 100644 Binary files a/public/images/devices/PP-WHT-US.png and b/public/images/devices/PP-WHT-US.png differ diff --git a/public/images/devices/PQC19-DY01.png b/public/images/devices/PQC19-DY01.png index 5f36698f38462..cf29586a49e9e 100644 Binary files a/public/images/devices/PQC19-DY01.png and b/public/images/devices/PQC19-DY01.png differ diff --git a/public/images/devices/PRL-1ZBS-12-24V.png b/public/images/devices/PRL-1ZBS-12-24V.png index 6df01058f1221..be9a8cd136346 100644 Binary files a/public/images/devices/PRL-1ZBS-12-24V.png and b/public/images/devices/PRL-1ZBS-12-24V.png differ diff --git a/public/images/devices/PRZ01.png b/public/images/devices/PRZ01.png index 8aff784be16c1..ccaabb3013b63 100644 Binary files a/public/images/devices/PRZ01.png and b/public/images/devices/PRZ01.png differ diff --git a/public/images/devices/PS-SPRZMS-SLP3.png b/public/images/devices/PS-SPRZMS-SLP3.png index 2bd16d1861fd4..cb40747260760 100644 Binary files a/public/images/devices/PS-SPRZMS-SLP3.png and b/public/images/devices/PS-SPRZMS-SLP3.png differ diff --git a/public/images/devices/PS-ZIGBEE-SMART-CONTROLER-1CH-DIMMABLE.png b/public/images/devices/PS-ZIGBEE-SMART-CONTROLER-1CH-DIMMABLE.png index 3134f6f9a9bc2..f0d2538945b3c 100644 Binary files a/public/images/devices/PS-ZIGBEE-SMART-CONTROLER-1CH-DIMMABLE.png and b/public/images/devices/PS-ZIGBEE-SMART-CONTROLER-1CH-DIMMABLE.png differ diff --git a/public/images/devices/PS600.png b/public/images/devices/PS600.png index bbbaf8029adf9..70ee1c0c16ee4 100644 Binary files a/public/images/devices/PS600.png and b/public/images/devices/PS600.png differ diff --git a/public/images/devices/PSB19-SW27.png b/public/images/devices/PSB19-SW27.png index c349dec11e76b..d7f680e1207fa 100644 Binary files a/public/images/devices/PSB19-SW27.png and b/public/images/devices/PSB19-SW27.png differ diff --git a/public/images/devices/PSBZS-A1.png b/public/images/devices/PSBZS-A1.png index a4021f7db5105..3dc80fb01a0f5 100644 Binary files a/public/images/devices/PSBZS-A1.png and b/public/images/devices/PSBZS-A1.png differ diff --git a/public/images/devices/PSE03-V1.1.0.png b/public/images/devices/PSE03-V1.1.0.png index fa8d9e73e4cab..0eb5e997b97cb 100644 Binary files a/public/images/devices/PSE03-V1.1.0.png and b/public/images/devices/PSE03-V1.1.0.png differ diff --git a/public/images/devices/PSM-29ZBSR.png b/public/images/devices/PSM-29ZBSR.png index 05c13f6e1f68d..3836d74740d18 100644 Binary files a/public/images/devices/PSM-29ZBSR.png and b/public/images/devices/PSM-29ZBSR.png differ diff --git a/public/images/devices/PSM-S1.png b/public/images/devices/PSM-S1.png index a3d59d5b3d447..1e1e3239d7e08 100644 Binary files a/public/images/devices/PSM-S1.png and b/public/images/devices/PSM-S1.png differ diff --git a/public/images/devices/PSS-23ZBS.png b/public/images/devices/PSS-23ZBS.png index 91819b607e2df..794622b91ef34 100644 Binary files a/public/images/devices/PSS-23ZBS.png and b/public/images/devices/PSS-23ZBS.png differ diff --git a/public/images/devices/PTAPT-WH02.png b/public/images/devices/PTAPT-WH02.png index 325435dbefd85..f6648c3d673ea 100644 Binary files a/public/images/devices/PTAPT-WH02.png and b/public/images/devices/PTAPT-WH02.png differ diff --git a/public/images/devices/PTM-215Z.png b/public/images/devices/PTM-215Z.png index 8050697850eec..2b4e8315fea5a 100644 Binary files a/public/images/devices/PTM-215Z.png and b/public/images/devices/PTM-215Z.png differ diff --git a/public/images/devices/PTM-215ZE.png b/public/images/devices/PTM-215ZE.png index 8050697850eec..2b4e8315fea5a 100644 Binary files a/public/images/devices/PTM-215ZE.png and b/public/images/devices/PTM-215ZE.png differ diff --git a/public/images/devices/PTM-216Z.png b/public/images/devices/PTM-216Z.png index 8050697850eec..2b4e8315fea5a 100644 Binary files a/public/images/devices/PTM-216Z.png and b/public/images/devices/PTM-216Z.png differ diff --git a/public/images/devices/QS-Zigbee-C01.png b/public/images/devices/QS-Zigbee-C01.png index 2e763dff4568c..588e343eec3e9 100644 Binary files a/public/images/devices/QS-Zigbee-C01.png and b/public/images/devices/QS-Zigbee-C01.png differ diff --git a/public/images/devices/QS-Zigbee-C03.png b/public/images/devices/QS-Zigbee-C03.png index 1c03a1af6512c..4e282bc90edfc 100644 Binary files a/public/images/devices/QS-Zigbee-C03.png and b/public/images/devices/QS-Zigbee-C03.png differ diff --git a/public/images/devices/QS-Zigbee-D02-TRIAC-2C-L.png b/public/images/devices/QS-Zigbee-D02-TRIAC-2C-L.png index bfaf9edb11ee3..000028d9e7f3b 100644 Binary files a/public/images/devices/QS-Zigbee-D02-TRIAC-2C-L.png and b/public/images/devices/QS-Zigbee-D02-TRIAC-2C-L.png differ diff --git a/public/images/devices/QS-Zigbee-D02-TRIAC-2C-LN.png b/public/images/devices/QS-Zigbee-D02-TRIAC-2C-LN.png index 2fee4fbb87336..1ea51e60d02dc 100644 Binary files a/public/images/devices/QS-Zigbee-D02-TRIAC-2C-LN.png and b/public/images/devices/QS-Zigbee-D02-TRIAC-2C-LN.png differ diff --git a/public/images/devices/QS-Zigbee-D02-TRIAC-L.png b/public/images/devices/QS-Zigbee-D02-TRIAC-L.png index f0ce1eed4a459..7d27c4bcdaf99 100644 Binary files a/public/images/devices/QS-Zigbee-D02-TRIAC-L.png and b/public/images/devices/QS-Zigbee-D02-TRIAC-L.png differ diff --git a/public/images/devices/QS-Zigbee-D02-TRIAC-LN.png b/public/images/devices/QS-Zigbee-D02-TRIAC-LN.png index ed48463ebbcdc..4d86d21fea494 100644 Binary files a/public/images/devices/QS-Zigbee-D02-TRIAC-LN.png and b/public/images/devices/QS-Zigbee-D02-TRIAC-LN.png differ diff --git a/public/images/devices/QS-Zigbee-D02-TRIAC-LN_1.png b/public/images/devices/QS-Zigbee-D02-TRIAC-LN_1.png index 1c3a0f5b77620..40e3e7a0b81d5 100644 Binary files a/public/images/devices/QS-Zigbee-D02-TRIAC-LN_1.png and b/public/images/devices/QS-Zigbee-D02-TRIAC-LN_1.png differ diff --git a/public/images/devices/QS-Zigbee-D02-TRIAC-L_1.png b/public/images/devices/QS-Zigbee-D02-TRIAC-L_1.png index f0ce1eed4a459..7d27c4bcdaf99 100644 Binary files a/public/images/devices/QS-Zigbee-D02-TRIAC-L_1.png and b/public/images/devices/QS-Zigbee-D02-TRIAC-L_1.png differ diff --git a/public/images/devices/QS-Zigbee-S04-2C-LN.png b/public/images/devices/QS-Zigbee-S04-2C-LN.png index 91599590c27b2..5eaa000330999 100644 Binary files a/public/images/devices/QS-Zigbee-S04-2C-LN.png and b/public/images/devices/QS-Zigbee-S04-2C-LN.png differ diff --git a/public/images/devices/QS-Zigbee-S05-LN.png b/public/images/devices/QS-Zigbee-S05-LN.png index f9e1721117930..241eab6976b07 100644 Binary files a/public/images/devices/QS-Zigbee-S05-LN.png and b/public/images/devices/QS-Zigbee-S05-LN.png differ diff --git a/public/images/devices/QS-Zigbee-SEC02-U.png b/public/images/devices/QS-Zigbee-SEC02-U.png index c0c2ab6097975..399fd5b4b5fcc 100644 Binary files a/public/images/devices/QS-Zigbee-SEC02-U.png and b/public/images/devices/QS-Zigbee-SEC02-U.png differ diff --git a/public/images/devices/QS-zigbee-S08-16A-RF.png b/public/images/devices/QS-zigbee-S08-16A-RF.png index 6b7193747619c..1410a7f5746ce 100644 Binary files a/public/images/devices/QS-zigbee-S08-16A-RF.png and b/public/images/devices/QS-zigbee-S08-16A-RF.png differ diff --git a/public/images/devices/QT-05M.png b/public/images/devices/QT-05M.png index 57be73af58e8e..23cf145f6ed92 100644 Binary files a/public/images/devices/QT-05M.png and b/public/images/devices/QT-05M.png differ diff --git a/public/images/devices/QT-07S.png b/public/images/devices/QT-07S.png index ca2276f7a7ceb..7f3f6d6563868 100644 Binary files a/public/images/devices/QT-07S.png and b/public/images/devices/QT-07S.png differ diff --git a/public/images/devices/QT06_1.png b/public/images/devices/QT06_1.png index 2a9943bb08fc5..f8ddfab9385d2 100644 Binary files a/public/images/devices/QT06_1.png and b/public/images/devices/QT06_1.png differ diff --git a/public/images/devices/QT06_2.png b/public/images/devices/QT06_2.png index 2a9943bb08fc5..f8ddfab9385d2 100644 Binary files a/public/images/devices/QT06_2.png and b/public/images/devices/QT06_2.png differ diff --git a/public/images/devices/QZR-ZIG2400.png b/public/images/devices/QZR-ZIG2400.png index 3e63b5f84ac87..5e8ce8aa2e656 100644 Binary files a/public/images/devices/QZR-ZIG2400.png and b/public/images/devices/QZR-ZIG2400.png differ diff --git a/public/images/devices/R0.png b/public/images/devices/R0.png index a8784b1ec626a..9cd399c5bea5a 100644 Binary files a/public/images/devices/R0.png and b/public/images/devices/R0.png differ diff --git a/public/images/devices/R11W2Z.png b/public/images/devices/R11W2Z.png index 109c445878fd7..7942da962e3d4 100644 Binary files a/public/images/devices/R11W2Z.png and b/public/images/devices/R11W2Z.png differ diff --git a/public/images/devices/R20W2Z.png b/public/images/devices/R20W2Z.png index ab0cb2164d100..60a486d04980e 100644 Binary files a/public/images/devices/R20W2Z.png and b/public/images/devices/R20W2Z.png differ diff --git a/public/images/devices/R30W3Z.png b/public/images/devices/R30W3Z.png index d2614a702dab8..61dc6930d3844 100644 Binary files a/public/images/devices/R30W3Z.png and b/public/images/devices/R30W3Z.png differ diff --git a/public/images/devices/R7048.png b/public/images/devices/R7048.png index 67f17a57264b1..a9a81a21c59e2 100644 Binary files a/public/images/devices/R7048.png and b/public/images/devices/R7048.png differ diff --git a/public/images/devices/R7049.png b/public/images/devices/R7049.png index 632d74ece3877..b9345b05e0bc1 100644 Binary files a/public/images/devices/R7049.png and b/public/images/devices/R7049.png differ diff --git a/public/images/devices/R7051.png b/public/images/devices/R7051.png index 1d95fe13773e6..ce5d74c4f5ea4 100644 Binary files a/public/images/devices/R7051.png and b/public/images/devices/R7051.png differ diff --git a/public/images/devices/R7052.png b/public/images/devices/R7052.png index 2f8d3f90822c8..27be605d85bc6 100644 Binary files a/public/images/devices/R7052.png and b/public/images/devices/R7052.png differ diff --git a/public/images/devices/R7060.png b/public/images/devices/R7060.png index c0ac2b64c32f1..8c5eb078803e2 100644 Binary files a/public/images/devices/R7060.png and b/public/images/devices/R7060.png differ diff --git a/public/images/devices/R9077.png b/public/images/devices/R9077.png index c5ff03e306337..94eba6e959cff 100644 Binary files a/public/images/devices/R9077.png and b/public/images/devices/R9077.png differ diff --git a/public/images/devices/RADON-TriTech-ZB.png b/public/images/devices/RADON-TriTech-ZB.png index 70150e84ce5ac..ddf8c15c971ab 100644 Binary files a/public/images/devices/RADON-TriTech-ZB.png and b/public/images/devices/RADON-TriTech-ZB.png differ diff --git a/public/images/devices/RAINBEE16V2.png b/public/images/devices/RAINBEE16V2.png index b14596806d474..f538d8bce71d4 100644 Binary files a/public/images/devices/RAINBEE16V2.png and b/public/images/devices/RAINBEE16V2.png differ diff --git a/public/images/devices/RB-145.png b/public/images/devices/RB-145.png index 161792674abb2..d91404de0cb99 100644 Binary files a/public/images/devices/RB-145.png and b/public/images/devices/RB-145.png differ diff --git a/public/images/devices/RB-148-T.png b/public/images/devices/RB-148-T.png index 9aea33414bb20..6a6e05fc0e8a5 100644 Binary files a/public/images/devices/RB-148-T.png and b/public/images/devices/RB-148-T.png differ diff --git a/public/images/devices/RB-162.png b/public/images/devices/RB-162.png index 5ab442a53a23a..2610970dc8634 100644 Binary files a/public/images/devices/RB-162.png and b/public/images/devices/RB-162.png differ diff --git a/public/images/devices/RB-165.png b/public/images/devices/RB-165.png index 6c924ab9610f3..f36831f664744 100644 Binary files a/public/images/devices/RB-165.png and b/public/images/devices/RB-165.png differ diff --git a/public/images/devices/RB-172-W.png b/public/images/devices/RB-172-W.png index 29902afdc44f1..4d6dc98e998ca 100644 Binary files a/public/images/devices/RB-172-W.png and b/public/images/devices/RB-172-W.png differ diff --git a/public/images/devices/RB-175-W.png b/public/images/devices/RB-175-W.png index fe875a9c87dd9..84178eb809c09 100644 Binary files a/public/images/devices/RB-175-W.png and b/public/images/devices/RB-175-W.png differ diff --git a/public/images/devices/RB-178-T.png b/public/images/devices/RB-178-T.png index 0320fc9e738c4..911de13dd928b 100644 Binary files a/public/images/devices/RB-178-T.png and b/public/images/devices/RB-178-T.png differ diff --git a/public/images/devices/RB-185-C.png b/public/images/devices/RB-185-C.png index d6869fd83b562..e68148d3fdd69 100644 Binary files a/public/images/devices/RB-185-C.png and b/public/images/devices/RB-185-C.png differ diff --git a/public/images/devices/RB-245.png b/public/images/devices/RB-245.png index 746bb755b4c71..324827919a202 100644 Binary files a/public/images/devices/RB-245.png and b/public/images/devices/RB-245.png differ diff --git a/public/images/devices/RB-248-T.png b/public/images/devices/RB-248-T.png index 6345563a8b482..67566dc40daa6 100644 Binary files a/public/images/devices/RB-248-T.png and b/public/images/devices/RB-248-T.png differ diff --git a/public/images/devices/RB-249-T.png b/public/images/devices/RB-249-T.png index 6345563a8b482..67566dc40daa6 100644 Binary files a/public/images/devices/RB-249-T.png and b/public/images/devices/RB-249-T.png differ diff --git a/public/images/devices/RB-250-C.png b/public/images/devices/RB-250-C.png index 8ea8761e37f58..ac212ee1c6c1b 100644 Binary files a/public/images/devices/RB-250-C.png and b/public/images/devices/RB-250-C.png differ diff --git a/public/images/devices/RB-251-C.png b/public/images/devices/RB-251-C.png index 0bd53c2df644e..c031a4501e340 100644 Binary files a/public/images/devices/RB-251-C.png and b/public/images/devices/RB-251-C.png differ diff --git a/public/images/devices/RB-255-C.png b/public/images/devices/RB-255-C.png index 7b658488f6f57..318553c725d64 100644 Binary files a/public/images/devices/RB-255-C.png and b/public/images/devices/RB-255-C.png differ diff --git a/public/images/devices/RB-265.png b/public/images/devices/RB-265.png index b4ef4123b3241..dc668b659c706 100644 Binary files a/public/images/devices/RB-265.png and b/public/images/devices/RB-265.png differ diff --git a/public/images/devices/RB-266.png b/public/images/devices/RB-266.png index b4ef4123b3241..dc668b659c706 100644 Binary files a/public/images/devices/RB-266.png and b/public/images/devices/RB-266.png differ diff --git a/public/images/devices/RB-278-T.png b/public/images/devices/RB-278-T.png index b4ef4123b3241..dc668b659c706 100644 Binary files a/public/images/devices/RB-278-T.png and b/public/images/devices/RB-278-T.png differ diff --git a/public/images/devices/RB-279-T.png b/public/images/devices/RB-279-T.png index b4ef4123b3241..dc668b659c706 100644 Binary files a/public/images/devices/RB-279-T.png and b/public/images/devices/RB-279-T.png differ diff --git a/public/images/devices/RB-279.png b/public/images/devices/RB-279.png index b4ef4123b3241..dc668b659c706 100644 Binary files a/public/images/devices/RB-279.png and b/public/images/devices/RB-279.png differ diff --git a/public/images/devices/RB-285-C.png b/public/images/devices/RB-285-C.png index f0cd3e974d7e3..1f67fac789f11 100644 Binary files a/public/images/devices/RB-285-C.png and b/public/images/devices/RB-285-C.png differ diff --git a/public/images/devices/RB-286-C.png b/public/images/devices/RB-286-C.png index f0cd3e974d7e3..1f67fac789f11 100644 Binary files a/public/images/devices/RB-286-C.png and b/public/images/devices/RB-286-C.png differ diff --git a/public/images/devices/RC-110.png b/public/images/devices/RC-110.png index 7eb8982281946..6598e30ae1c0a 100644 Binary files a/public/images/devices/RC-110.png and b/public/images/devices/RC-110.png differ diff --git a/public/images/devices/RC-2000WH.png b/public/images/devices/RC-2000WH.png index d559c558beb61..e3eb693edaa3d 100644 Binary files a/public/images/devices/RC-2000WH.png and b/public/images/devices/RC-2000WH.png differ diff --git a/public/images/devices/RC-250.png b/public/images/devices/RC-250.png index d920e72568d67..8afae02e15003 100644 Binary files a/public/images/devices/RC-250.png and b/public/images/devices/RC-250.png differ diff --git a/public/images/devices/RCL-110.png b/public/images/devices/RCL-110.png index 4469931791322..d93a33a8f0d85 100644 Binary files a/public/images/devices/RCL-110.png and b/public/images/devices/RCL-110.png differ diff --git a/public/images/devices/RCL-240-T.png b/public/images/devices/RCL-240-T.png index d09347c4d4a26..6f445a4817858 100644 Binary files a/public/images/devices/RCL-240-T.png and b/public/images/devices/RCL-240-T.png differ diff --git a/public/images/devices/RDCBC-Z.png b/public/images/devices/RDCBC-Z.png index eff721f3d0b00..1e5c6c81eb57a 100644 Binary files a/public/images/devices/RDCBC-Z.png and b/public/images/devices/RDCBC-Z.png differ diff --git a/public/images/devices/RE600.png b/public/images/devices/RE600.png index 5ba420b1fb167..b95439a0e583f 100644 Binary files a/public/images/devices/RE600.png and b/public/images/devices/RE600.png differ diff --git a/public/images/devices/RF-261.png b/public/images/devices/RF-261.png index 61ba1240bf678..6f4b2f7b5efb9 100644 Binary files a/public/images/devices/RF-261.png and b/public/images/devices/RF-261.png differ diff --git a/public/images/devices/RF-263.png b/public/images/devices/RF-263.png index 1690ebfebcd9a..28841ac76984d 100644 Binary files a/public/images/devices/RF-263.png and b/public/images/devices/RF-263.png differ diff --git a/public/images/devices/RF-264.png b/public/images/devices/RF-264.png index 4cef2420800f7..f2aa2eeb16c6e 100644 Binary files a/public/images/devices/RF-264.png and b/public/images/devices/RF-264.png differ diff --git a/public/images/devices/RF-265.png b/public/images/devices/RF-265.png index e3e84fd8342ab..0fa673c6b0db1 100644 Binary files a/public/images/devices/RF-265.png and b/public/images/devices/RF-265.png differ diff --git a/public/images/devices/RH3040.png b/public/images/devices/RH3040.png index df66f61d12795..e64a31d6e4fed 100644 Binary files a/public/images/devices/RH3040.png and b/public/images/devices/RH3040.png differ diff --git a/public/images/devices/RHK06.png b/public/images/devices/RHK06.png index 255739ed12d91..e02d517d512fc 100644 Binary files a/public/images/devices/RHK06.png and b/public/images/devices/RHK06.png differ diff --git a/public/images/devices/RHK07.png b/public/images/devices/RHK07.png index 43f4e0fac5821..b607ba0e9f83e 100644 Binary files a/public/images/devices/RHK07.png and b/public/images/devices/RHK07.png differ diff --git a/public/images/devices/RHK08.png b/public/images/devices/RHK08.png index f0c009d0c796d..632a484eb5961 100644 Binary files a/public/images/devices/RHK08.png and b/public/images/devices/RHK08.png differ diff --git a/public/images/devices/RHK09.png b/public/images/devices/RHK09.png index 2bf0672532ce0..93391f0bc373e 100644 Binary files a/public/images/devices/RHK09.png and b/public/images/devices/RHK09.png differ diff --git a/public/images/devices/RL460WHZHA69.png b/public/images/devices/RL460WHZHA69.png index 10972aa7f08ba..f247c8f2d3a62 100644 Binary files a/public/images/devices/RL460WHZHA69.png and b/public/images/devices/RL460WHZHA69.png differ diff --git a/public/images/devices/RL804CZB.png b/public/images/devices/RL804CZB.png index 2f7462758c506..8da23416c0a5d 100644 Binary files a/public/images/devices/RL804CZB.png and b/public/images/devices/RL804CZB.png differ diff --git a/public/images/devices/RL804QZB.png b/public/images/devices/RL804QZB.png index 2b8af75122557..ecd0bcd3c5914 100644 Binary files a/public/images/devices/RL804QZB.png and b/public/images/devices/RL804QZB.png differ diff --git a/public/images/devices/RM3250ZB.png b/public/images/devices/RM3250ZB.png index 34104dbf8fc0e..0c769bc0b69c3 100644 Binary files a/public/images/devices/RM3250ZB.png and b/public/images/devices/RM3250ZB.png differ diff --git a/public/images/devices/RMC002.png b/public/images/devices/RMC002.png index f35aaa3be7464..4e5e5fd502bc8 100644 Binary files a/public/images/devices/RMC002.png and b/public/images/devices/RMC002.png differ diff --git a/public/images/devices/ROB_200-003-0.png b/public/images/devices/ROB_200-003-0.png index b1aa2e5db6e73..a1616a0f33dac 100644 Binary files a/public/images/devices/ROB_200-003-0.png and b/public/images/devices/ROB_200-003-0.png differ diff --git a/public/images/devices/ROB_200-004-0.png b/public/images/devices/ROB_200-004-0.png index 0804f10242809..6bbba580399f4 100644 Binary files a/public/images/devices/ROB_200-004-0.png and b/public/images/devices/ROB_200-004-0.png differ diff --git a/public/images/devices/ROB_200-006-0.png b/public/images/devices/ROB_200-006-0.png index 59f711bf705c0..8a67ca12f3619 100644 Binary files a/public/images/devices/ROB_200-006-0.png and b/public/images/devices/ROB_200-006-0.png differ diff --git a/public/images/devices/ROB_200-007-0.png b/public/images/devices/ROB_200-007-0.png index b19094dcc0932..524602e1c025a 100644 Binary files a/public/images/devices/ROB_200-007-0.png and b/public/images/devices/ROB_200-007-0.png differ diff --git a/public/images/devices/ROB_200-008-0.png b/public/images/devices/ROB_200-008-0.png index 980fbbe696d0c..b2a34beb3178c 100644 Binary files a/public/images/devices/ROB_200-008-0.png and b/public/images/devices/ROB_200-008-0.png differ diff --git a/public/images/devices/ROB_200-009-0.png b/public/images/devices/ROB_200-009-0.png index 57755f42ec700..c5e19602c940c 100644 Binary files a/public/images/devices/ROB_200-009-0.png and b/public/images/devices/ROB_200-009-0.png differ diff --git a/public/images/devices/ROB_200-010-0.png b/public/images/devices/ROB_200-010-0.png index 2c44b58055f78..ae5e50483da9d 100644 Binary files a/public/images/devices/ROB_200-010-0.png and b/public/images/devices/ROB_200-010-0.png differ diff --git a/public/images/devices/ROB_200-011-0.png b/public/images/devices/ROB_200-011-0.png index 14d5a375c85c5..eb6770ec839b3 100644 Binary files a/public/images/devices/ROB_200-011-0.png and b/public/images/devices/ROB_200-011-0.png differ diff --git a/public/images/devices/ROB_200-014-0.png b/public/images/devices/ROB_200-014-0.png index 5b9238d77159f..683b5b4833877 100644 Binary files a/public/images/devices/ROB_200-014-0.png and b/public/images/devices/ROB_200-014-0.png differ diff --git a/public/images/devices/ROB_200-016-0.png b/public/images/devices/ROB_200-016-0.png index f29e9662d59fa..ab0c3af50f3eb 100644 Binary files a/public/images/devices/ROB_200-016-0.png and b/public/images/devices/ROB_200-016-0.png differ diff --git a/public/images/devices/ROB_200-017-0.png b/public/images/devices/ROB_200-017-0.png index 5b4e8e00a9f8a..a5fb9d4d1f72a 100644 Binary files a/public/images/devices/ROB_200-017-0.png and b/public/images/devices/ROB_200-017-0.png differ diff --git a/public/images/devices/ROB_200-017-1.png b/public/images/devices/ROB_200-017-1.png index a41c4a2fd287b..b74deed603fd8 100644 Binary files a/public/images/devices/ROB_200-017-1.png and b/public/images/devices/ROB_200-017-1.png differ diff --git a/public/images/devices/ROB_200-018-0.png b/public/images/devices/ROB_200-018-0.png index b5b136d7df459..1ebf473d9e4c1 100644 Binary files a/public/images/devices/ROB_200-018-0.png and b/public/images/devices/ROB_200-018-0.png differ diff --git a/public/images/devices/ROB_200-025-0.png b/public/images/devices/ROB_200-025-0.png index af2a2386fa0c8..86f06e4c3eb2a 100644 Binary files a/public/images/devices/ROB_200-025-0.png and b/public/images/devices/ROB_200-025-0.png differ diff --git a/public/images/devices/ROB_200-026-0.png b/public/images/devices/ROB_200-026-0.png index ef41d55423b25..8c895753638a5 100644 Binary files a/public/images/devices/ROB_200-026-0.png and b/public/images/devices/ROB_200-026-0.png differ diff --git a/public/images/devices/ROB_200-029-0.png b/public/images/devices/ROB_200-029-0.png index 3272df6be41d7..dd4d44c31a5cf 100644 Binary files a/public/images/devices/ROB_200-029-0.png and b/public/images/devices/ROB_200-029-0.png differ diff --git a/public/images/devices/ROB_200-030-0.png b/public/images/devices/ROB_200-030-0.png index 284589c87797b..377ed9b22ccde 100644 Binary files a/public/images/devices/ROB_200-030-0.png and b/public/images/devices/ROB_200-030-0.png differ diff --git a/public/images/devices/ROB_200-035-0.png b/public/images/devices/ROB_200-035-0.png index 1aaad5fc8fded..49f09aea96e95 100644 Binary files a/public/images/devices/ROB_200-035-0.png and b/public/images/devices/ROB_200-035-0.png differ diff --git a/public/images/devices/ROB_200-050-0.png b/public/images/devices/ROB_200-050-0.png index d36b8948e66cc..fa96b0c0a8f96 100644 Binary files a/public/images/devices/ROB_200-050-0.png and b/public/images/devices/ROB_200-050-0.png differ diff --git a/public/images/devices/ROB_200-061-0.png b/public/images/devices/ROB_200-061-0.png index 87c0145ad2df0..316c5d2fd3645 100644 Binary files a/public/images/devices/ROB_200-061-0.png and b/public/images/devices/ROB_200-061-0.png differ diff --git a/public/images/devices/RPH-E-Ctrl.png b/public/images/devices/RPH-E-Ctrl.png index 5026d65aa6d0b..e3609e3f5dc4f 100644 Binary files a/public/images/devices/RPH-E-Ctrl.png and b/public/images/devices/RPH-E-Ctrl.png differ diff --git a/public/images/devices/RR400ZB.png b/public/images/devices/RR400ZB.png index b93c24cfb55e6..ee4fe0f79efa7 100644 Binary files a/public/images/devices/RR400ZB.png and b/public/images/devices/RR400ZB.png differ diff --git a/public/images/devices/RR620ZB.png b/public/images/devices/RR620ZB.png index 3f83e543cc2f3..016dd43e2d760 100644 Binary files a/public/images/devices/RR620ZB.png and b/public/images/devices/RR620ZB.png differ diff --git a/public/images/devices/RS-122.png b/public/images/devices/RS-122.png index 7e7eaf1783ab2..406a4b1be54c3 100644 Binary files a/public/images/devices/RS-122.png and b/public/images/devices/RS-122.png differ diff --git a/public/images/devices/RS-125.png b/public/images/devices/RS-125.png index 268a3aaa668a2..0036de14fe53c 100644 Binary files a/public/images/devices/RS-125.png and b/public/images/devices/RS-125.png differ diff --git a/public/images/devices/RS-128-T.png b/public/images/devices/RS-128-T.png index 4f293b36cbb84..8a3abf0f18b72 100644 Binary files a/public/images/devices/RS-128-T.png and b/public/images/devices/RS-128-T.png differ diff --git a/public/images/devices/RS-225.png b/public/images/devices/RS-225.png index 7b5edb7d0a26a..e0e06c05dc4bc 100644 Binary files a/public/images/devices/RS-225.png and b/public/images/devices/RS-225.png differ diff --git a/public/images/devices/RS-226.png b/public/images/devices/RS-226.png index 08019bcaffb42..63e8b9454fee7 100644 Binary files a/public/images/devices/RS-226.png and b/public/images/devices/RS-226.png differ diff --git a/public/images/devices/RS-227-T.png b/public/images/devices/RS-227-T.png index 5ee41e2a8310c..03a866a4335c6 100644 Binary files a/public/images/devices/RS-227-T.png and b/public/images/devices/RS-227-T.png differ diff --git a/public/images/devices/RS-228-T.png b/public/images/devices/RS-228-T.png index 9188f7bcb0a53..0c2ca05e00b91 100644 Binary files a/public/images/devices/RS-228-T.png and b/public/images/devices/RS-228-T.png differ diff --git a/public/images/devices/RS-229-T.png b/public/images/devices/RS-229-T.png index eb6fd7b849f3c..192e953e3c4c0 100644 Binary files a/public/images/devices/RS-229-T.png and b/public/images/devices/RS-229-T.png differ diff --git a/public/images/devices/RS-230-C.png b/public/images/devices/RS-230-C.png index d1f64425106b0..1ce4cd71ccf4f 100644 Binary files a/public/images/devices/RS-230-C.png and b/public/images/devices/RS-230-C.png differ diff --git a/public/images/devices/RS-23ZBS.png b/public/images/devices/RS-23ZBS.png index e06543b5225ff..c947456517594 100644 Binary files a/public/images/devices/RS-23ZBS.png and b/public/images/devices/RS-23ZBS.png differ diff --git a/public/images/devices/RS-THP-MP-1.0.png b/public/images/devices/RS-THP-MP-1.0.png index fdd2baac3fa7f..b5f0152a00215 100644 Binary files a/public/images/devices/RS-THP-MP-1.0.png and b/public/images/devices/RS-THP-MP-1.0.png differ diff --git a/public/images/devices/RSH-HS06_1.png b/public/images/devices/RSH-HS06_1.png index bbfc8ac4a2017..f554ec877b144 100644 Binary files a/public/images/devices/RSH-HS06_1.png and b/public/images/devices/RSH-HS06_1.png differ diff --git a/public/images/devices/RSL-110.png b/public/images/devices/RSL-110.png index 55fe9fe37cead..9ea51ca4eb871 100644 Binary files a/public/images/devices/RSL-110.png and b/public/images/devices/RSL-110.png differ diff --git a/public/images/devices/RSL-115.png b/public/images/devices/RSL-115.png index f634ed47b1d65..a5f32d3ddda1a 100644 Binary files a/public/images/devices/RSL-115.png and b/public/images/devices/RSL-115.png differ diff --git a/public/images/devices/RSS-E-Ctrl.png b/public/images/devices/RSS-E-Ctrl.png index 9c1ffacfbdf38..c27079d31aee2 100644 Binary files a/public/images/devices/RSS-E-Ctrl.png and b/public/images/devices/RSS-E-Ctrl.png differ diff --git a/public/images/devices/RY-WS02Z.png b/public/images/devices/RY-WS02Z.png index c4a77c3cff573..1dcbf28cb1dc6 100644 Binary files a/public/images/devices/RY-WS02Z.png and b/public/images/devices/RY-WS02Z.png differ diff --git a/public/images/devices/S-LUX-ZB.png b/public/images/devices/S-LUX-ZB.png index a0a7d41bb2456..98e03e2c84ee8 100644 Binary files a/public/images/devices/S-LUX-ZB.png and b/public/images/devices/S-LUX-ZB.png differ diff --git a/public/images/devices/S093TH-ZG.png b/public/images/devices/S093TH-ZG.png index d82e2ca237b9e..e165a795f78ea 100644 Binary files a/public/images/devices/S093TH-ZG.png and b/public/images/devices/S093TH-ZG.png differ diff --git a/public/images/devices/S1-R.png b/public/images/devices/S1-R.png index 3b7783eb42902..cb2fdd518370f 100644 Binary files a/public/images/devices/S1-R.png and b/public/images/devices/S1-R.png differ diff --git a/public/images/devices/S1.png b/public/images/devices/S1.png index 7e3d4ac7f9b71..01b82b8c3b984 100644 Binary files a/public/images/devices/S1.png and b/public/images/devices/S1.png differ diff --git a/public/images/devices/S2.png b/public/images/devices/S2.png index c756860d3a559..d70f1842a7772 100644 Binary files a/public/images/devices/S2.png and b/public/images/devices/S2.png differ diff --git a/public/images/devices/S24013.png b/public/images/devices/S24013.png index cd96a7eec4e3e..1ed3dfd948ebd 100644 Binary files a/public/images/devices/S24013.png and b/public/images/devices/S24013.png differ diff --git a/public/images/devices/S24019.png b/public/images/devices/S24019.png index 78c35a3b7f9a7..2968be43bc9f1 100644 Binary files a/public/images/devices/S24019.png and b/public/images/devices/S24019.png differ diff --git a/public/images/devices/S32053.png b/public/images/devices/S32053.png index 2b06c67f7a504..e45b7f29a1df2 100644 Binary files a/public/images/devices/S32053.png and b/public/images/devices/S32053.png differ diff --git a/public/images/devices/S40ZBTPB.png b/public/images/devices/S40ZBTPB.png index f31c524a2f66b..9330328f0ad4a 100644 Binary files a/public/images/devices/S40ZBTPB.png and b/public/images/devices/S40ZBTPB.png differ diff --git a/public/images/devices/S4RX-110.png b/public/images/devices/S4RX-110.png index f13a33af734ab..d64d962c78348 100644 Binary files a/public/images/devices/S4RX-110.png and b/public/images/devices/S4RX-110.png differ diff --git a/public/images/devices/S520530W.png b/public/images/devices/S520530W.png index 68b1725781d57..575a54e63a1b9 100644 Binary files a/public/images/devices/S520530W.png and b/public/images/devices/S520530W.png differ diff --git a/public/images/devices/S520567.png b/public/images/devices/S520567.png index ae8fa37f4bc75..35cb13157d484 100644 Binary files a/public/images/devices/S520567.png and b/public/images/devices/S520567.png differ diff --git a/public/images/devices/S57003.png b/public/images/devices/S57003.png index 2225631553a99..ce3af356e48f7 100644 Binary files a/public/images/devices/S57003.png and b/public/images/devices/S57003.png differ diff --git a/public/images/devices/S902M-ZG.png b/public/images/devices/S902M-ZG.png index 0956211c34813..36c0c44ba94e3 100644 Binary files a/public/images/devices/S902M-ZG.png and b/public/images/devices/S902M-ZG.png differ diff --git a/public/images/devices/S9E27LED9W-RGB-Z.png b/public/images/devices/S9E27LED9W-RGB-Z.png index 2590ee988a020..885aa4e9ec193 100644 Binary files a/public/images/devices/S9E27LED9W-RGB-Z.png and b/public/images/devices/S9E27LED9W-RGB-Z.png differ diff --git a/public/images/devices/S9TSZGB.png b/public/images/devices/S9TSZGB.png index e30c794cc5b5c..ed98a21518774 100644 Binary files a/public/images/devices/S9TSZGB.png and b/public/images/devices/S9TSZGB.png differ diff --git a/public/images/devices/S9ZGBRC01.png b/public/images/devices/S9ZGBRC01.png index 20a138712694a..f760ee97899a0 100644 Binary files a/public/images/devices/S9ZGBRC01.png and b/public/images/devices/S9ZGBRC01.png differ diff --git a/public/images/devices/SA-003-Zigbee.png b/public/images/devices/SA-003-Zigbee.png index 5be2fa5de10ae..a70136f991d1f 100644 Binary files a/public/images/devices/SA-003-Zigbee.png and b/public/images/devices/SA-003-Zigbee.png differ diff --git a/public/images/devices/SA100.png b/public/images/devices/SA100.png index 4940d4ca8fabd..667bba1cba983 100644 Binary files a/public/images/devices/SA100.png and b/public/images/devices/SA100.png differ diff --git a/public/images/devices/SA12IZL.png b/public/images/devices/SA12IZL.png index 4756fd3a8d304..aeed09e82861d 100644 Binary files a/public/images/devices/SA12IZL.png and b/public/images/devices/SA12IZL.png differ diff --git a/public/images/devices/SAGE206611.png b/public/images/devices/SAGE206611.png index 971742b031cdf..6e48f573320eb 100644 Binary files a/public/images/devices/SAGE206611.png and b/public/images/devices/SAGE206611.png differ diff --git a/public/images/devices/SAGE206612.png b/public/images/devices/SAGE206612.png index 56a11098dbaa3..8e42392a17938 100644 Binary files a/public/images/devices/SAGE206612.png and b/public/images/devices/SAGE206612.png differ diff --git a/public/images/devices/SB100.png b/public/images/devices/SB100.png index 70ec916712984..8d2aa7e729663 100644 Binary files a/public/images/devices/SB100.png and b/public/images/devices/SB100.png differ diff --git a/public/images/devices/SBDV-00029.png b/public/images/devices/SBDV-00029.png index 997d08afd7d45..55722f54659bc 100644 Binary files a/public/images/devices/SBDV-00029.png and b/public/images/devices/SBDV-00029.png differ diff --git a/public/images/devices/SBDV-00030.png b/public/images/devices/SBDV-00030.png index 971af81cd414f..297f5e0ce7249 100644 Binary files a/public/images/devices/SBDV-00030.png and b/public/images/devices/SBDV-00030.png differ diff --git a/public/images/devices/SBDV-00032.png b/public/images/devices/SBDV-00032.png index 26a132b3fda7c..f41f2fedab9c1 100644 Binary files a/public/images/devices/SBDV-00032.png and b/public/images/devices/SBDV-00032.png differ diff --git a/public/images/devices/SBM01ZB.png b/public/images/devices/SBM01ZB.png index 70e8306813445..b57e50ea033a1 100644 Binary files a/public/images/devices/SBM01ZB.png and b/public/images/devices/SBM01ZB.png differ diff --git a/public/images/devices/SBM300Z1.png b/public/images/devices/SBM300Z1.png index 5e4ae91e8accb..2e8ce6c4bcf4a 100644 Binary files a/public/images/devices/SBM300Z1.png and b/public/images/devices/SBM300Z1.png differ diff --git a/public/images/devices/SBM300Z2.png b/public/images/devices/SBM300Z2.png index 893cc4d7acb96..dc08310bb71bd 100644 Binary files a/public/images/devices/SBM300Z2.png and b/public/images/devices/SBM300Z2.png differ diff --git a/public/images/devices/SBM300Z3.png b/public/images/devices/SBM300Z3.png index 24d79d81d9b54..59c5aef7610df 100644 Binary files a/public/images/devices/SBM300Z3.png and b/public/images/devices/SBM300Z3.png differ diff --git a/public/images/devices/SBM300Z4.png b/public/images/devices/SBM300Z4.png index e971a9d65342e..def17cb057717 100644 Binary files a/public/images/devices/SBM300Z4.png and b/public/images/devices/SBM300Z4.png differ diff --git a/public/images/devices/SBM300Z5.png b/public/images/devices/SBM300Z5.png index c7983aefa2762..7a5b79b65b632 100644 Binary files a/public/images/devices/SBM300Z5.png and b/public/images/devices/SBM300Z5.png differ diff --git a/public/images/devices/SBM300Z6.png b/public/images/devices/SBM300Z6.png index 9616255dd31b0..261e4fd443639 100644 Binary files a/public/images/devices/SBM300Z6.png and b/public/images/devices/SBM300Z6.png differ diff --git a/public/images/devices/SBM300ZB1.png b/public/images/devices/SBM300ZB1.png index 779eaabbf4a43..7eeffcd6dc9f8 100644 Binary files a/public/images/devices/SBM300ZB1.png and b/public/images/devices/SBM300ZB1.png differ diff --git a/public/images/devices/SBM300ZB2.png b/public/images/devices/SBM300ZB2.png index ad8058d9794c8..6a841b39948ee 100644 Binary files a/public/images/devices/SBM300ZB2.png and b/public/images/devices/SBM300ZB2.png differ diff --git a/public/images/devices/SBM300ZB3.png b/public/images/devices/SBM300ZB3.png index 9c53effa1bb75..97326c2ee84ff 100644 Binary files a/public/images/devices/SBM300ZB3.png and b/public/images/devices/SBM300ZB3.png differ diff --git a/public/images/devices/SBM300ZC1.png b/public/images/devices/SBM300ZC1.png index ee117eafa16c6..e6c47710b4834 100644 Binary files a/public/images/devices/SBM300ZC1.png and b/public/images/devices/SBM300ZC1.png differ diff --git a/public/images/devices/SBM300ZC2.png b/public/images/devices/SBM300ZC2.png index 44bd3ee82938b..3e93036941588 100644 Binary files a/public/images/devices/SBM300ZC2.png and b/public/images/devices/SBM300ZC2.png differ diff --git a/public/images/devices/SBM300ZC3.png b/public/images/devices/SBM300ZC3.png index 1742796272327..cd89164b111c3 100644 Binary files a/public/images/devices/SBM300ZC3.png and b/public/images/devices/SBM300ZC3.png differ diff --git a/public/images/devices/SBM300ZC4.png b/public/images/devices/SBM300ZC4.png index 275e8460744c1..8ee2a1df6cc38 100644 Binary files a/public/images/devices/SBM300ZC4.png and b/public/images/devices/SBM300ZC4.png differ diff --git a/public/images/devices/SC400.png b/public/images/devices/SC400.png index 9b90d35d94ae4..577ac2bbf1df0 100644 Binary files a/public/images/devices/SC400.png and b/public/images/devices/SC400.png differ diff --git a/public/images/devices/SCA01ZB.png b/public/images/devices/SCA01ZB.png index 8b62baec2918e..0c215b759e1ce 100644 Binary files a/public/images/devices/SCA01ZB.png and b/public/images/devices/SCA01ZB.png differ diff --git a/public/images/devices/SCCV2401-1.png b/public/images/devices/SCCV2401-1.png index 34124ef14a1e6..cac5f49f91a30 100644 Binary files a/public/images/devices/SCCV2401-1.png and b/public/images/devices/SCCV2401-1.png differ diff --git a/public/images/devices/SCCV2403-2.png b/public/images/devices/SCCV2403-2.png index 66650d492e7f8..9677f0fdb8158 100644 Binary files a/public/images/devices/SCCV2403-2.png and b/public/images/devices/SCCV2403-2.png differ diff --git a/public/images/devices/SCM-5ZBS.png b/public/images/devices/SCM-5ZBS.png index 0215cda39ce78..fcd49e1ffb1ee 100644 Binary files a/public/images/devices/SCM-5ZBS.png and b/public/images/devices/SCM-5ZBS.png differ diff --git a/public/images/devices/SCM-S1.png b/public/images/devices/SCM-S1.png index 8852068c3eb34..12370486ee973 100644 Binary files a/public/images/devices/SCM-S1.png and b/public/images/devices/SCM-S1.png differ diff --git a/public/images/devices/SD-8SCZBS.png b/public/images/devices/SD-8SCZBS.png index 3572bf744065c..ffafd7115c30b 100644 Binary files a/public/images/devices/SD-8SCZBS.png and b/public/images/devices/SD-8SCZBS.png differ diff --git a/public/images/devices/SDM01ZB.png b/public/images/devices/SDM01ZB.png index c71c316faecd6..41e73fa179413 100644 Binary files a/public/images/devices/SDM01ZB.png and b/public/images/devices/SDM01ZB.png differ diff --git a/public/images/devices/SDO-4-1-20.png b/public/images/devices/SDO-4-1-20.png index 6ebd62470abc2..95bc7556eeca3 100644 Binary files a/public/images/devices/SDO-4-1-20.png and b/public/images/devices/SDO-4-1-20.png differ diff --git a/public/images/devices/SE21.png b/public/images/devices/SE21.png index 2d5050645b0a7..8c30b7c64f5c6 100644 Binary files a/public/images/devices/SE21.png and b/public/images/devices/SE21.png differ diff --git a/public/images/devices/SEA801-Zigbee-SEA802-Zigbee.png b/public/images/devices/SEA801-Zigbee-SEA802-Zigbee.png index 232d38ecf0c0d..e03b4123f6bf6 100644 Binary files a/public/images/devices/SEA801-Zigbee-SEA802-Zigbee.png and b/public/images/devices/SEA801-Zigbee-SEA802-Zigbee.png differ diff --git a/public/images/devices/SEB01ZB.png b/public/images/devices/SEB01ZB.png index aad247fa820ee..48ae6dadf2cea 100644 Binary files a/public/images/devices/SEB01ZB.png and b/public/images/devices/SEB01ZB.png differ diff --git a/public/images/devices/SEHAZB-DR-SWITCH-2.png b/public/images/devices/SEHAZB-DR-SWITCH-2.png index 35f54e5a02fcf..ce30f16bf586b 100644 Binary files a/public/images/devices/SEHAZB-DR-SWITCH-2.png and b/public/images/devices/SEHAZB-DR-SWITCH-2.png differ diff --git a/public/images/devices/SFS01ZB.png b/public/images/devices/SFS01ZB.png index 5a9079a629f4f..54f24bc6ff022 100644 Binary files a/public/images/devices/SFS01ZB.png and b/public/images/devices/SFS01ZB.png differ diff --git a/public/images/devices/SG-V100-ZB.png b/public/images/devices/SG-V100-ZB.png index 6db01d734a2c9..e0155aa751bb5 100644 Binary files a/public/images/devices/SG-V100-ZB.png and b/public/images/devices/SG-V100-ZB.png differ diff --git a/public/images/devices/SGA01ZB.png b/public/images/devices/SGA01ZB.png index 882fb8e42be08..acbc3914ec1e3 100644 Binary files a/public/images/devices/SGA01ZB.png and b/public/images/devices/SGA01ZB.png differ diff --git a/public/images/devices/SGMHM-I1.png b/public/images/devices/SGMHM-I1.png index 06fa652a60679..1e91da548f5ab 100644 Binary files a/public/images/devices/SGMHM-I1.png and b/public/images/devices/SGMHM-I1.png differ diff --git a/public/images/devices/SGPHM-I1.png b/public/images/devices/SGPHM-I1.png index 835155ff79e61..c3f95d415f2f1 100644 Binary files a/public/images/devices/SGPHM-I1.png and b/public/images/devices/SGPHM-I1.png differ diff --git a/public/images/devices/SH-SC07.png b/public/images/devices/SH-SC07.png index 7393347dcccdd..eb763dc20534a 100644 Binary files a/public/images/devices/SH-SC07.png and b/public/images/devices/SH-SC07.png differ diff --git a/public/images/devices/SIN-4-1-20.png b/public/images/devices/SIN-4-1-20.png index 9802a867fda04..40bbbb58db381 100644 Binary files a/public/images/devices/SIN-4-1-20.png and b/public/images/devices/SIN-4-1-20.png differ diff --git a/public/images/devices/SIN-4-1-20_PRO.png b/public/images/devices/SIN-4-1-20_PRO.png index f6053c8b84e27..467d73ba45ab0 100644 Binary files a/public/images/devices/SIN-4-1-20_PRO.png and b/public/images/devices/SIN-4-1-20_PRO.png differ diff --git a/public/images/devices/SIN-4-2-20.png b/public/images/devices/SIN-4-2-20.png index 482f98d41b586..77855c840ac3c 100644 Binary files a/public/images/devices/SIN-4-2-20.png and b/public/images/devices/SIN-4-2-20.png differ diff --git a/public/images/devices/SIN-4-2-20_PRO.png b/public/images/devices/SIN-4-2-20_PRO.png index 5bc00a4a9f29e..a090307789f4c 100644 Binary files a/public/images/devices/SIN-4-2-20_PRO.png and b/public/images/devices/SIN-4-2-20_PRO.png differ diff --git a/public/images/devices/SIN-4-FP-20.png b/public/images/devices/SIN-4-FP-20.png index f08bcf9925a8b..dd9a09197135d 100644 Binary files a/public/images/devices/SIN-4-FP-20.png and b/public/images/devices/SIN-4-FP-20.png differ diff --git a/public/images/devices/SIN-4-RS-20-PRO.png b/public/images/devices/SIN-4-RS-20-PRO.png index 5b2b483f517d5..11d6ce2a696d0 100644 Binary files a/public/images/devices/SIN-4-RS-20-PRO.png and b/public/images/devices/SIN-4-RS-20-PRO.png differ diff --git a/public/images/devices/SIN-4-RS-20.png b/public/images/devices/SIN-4-RS-20.png index 6eb2c8ef9fcf1..098f598e3d494 100644 Binary files a/public/images/devices/SIN-4-RS-20.png and b/public/images/devices/SIN-4-RS-20.png differ diff --git a/public/images/devices/SIN-4-RS-20_LEX.png b/public/images/devices/SIN-4-RS-20_LEX.png index 788cf7dbee190..f38d0587976fd 100644 Binary files a/public/images/devices/SIN-4-RS-20_LEX.png and b/public/images/devices/SIN-4-RS-20_LEX.png differ diff --git a/public/images/devices/SIN-4-RS-20_PRO.png b/public/images/devices/SIN-4-RS-20_PRO.png index 00abe936e7d6e..45af4dd8ccfd5 100644 Binary files a/public/images/devices/SIN-4-RS-20_PRO.png and b/public/images/devices/SIN-4-RS-20_PRO.png differ diff --git a/public/images/devices/SIRZB-110.png b/public/images/devices/SIRZB-110.png index 2b98923798b00..352bc589888f1 100644 Binary files a/public/images/devices/SIRZB-110.png and b/public/images/devices/SIRZB-110.png differ diff --git a/public/images/devices/SISW01.png b/public/images/devices/SISW01.png index 894bbd97f1860..b3ddb1d87a6c9 100644 Binary files a/public/images/devices/SISW01.png and b/public/images/devices/SISW01.png differ diff --git a/public/images/devices/SK-Z802C-US.png b/public/images/devices/SK-Z802C-US.png index 4bf91d37f0775..3aaf5ed582540 100644 Binary files a/public/images/devices/SK-Z802C-US.png and b/public/images/devices/SK-Z802C-US.png differ diff --git a/public/images/devices/SKHMP30-I1.png b/public/images/devices/SKHMP30-I1.png index 8e77b57faf0b5..8c8438987ada6 100644 Binary files a/public/images/devices/SKHMP30-I1.png and b/public/images/devices/SKHMP30-I1.png differ diff --git a/public/images/devices/SKY01-TS1-101.png b/public/images/devices/SKY01-TS1-101.png index d1547529f8b30..02337f7e42b02 100644 Binary files a/public/images/devices/SKY01-TS1-101.png and b/public/images/devices/SKY01-TS1-101.png differ diff --git a/public/images/devices/SL-110-M.png b/public/images/devices/SL-110-M.png index dec2c12726dc7..80a7cab0b2c10 100644 Binary files a/public/images/devices/SL-110-M.png and b/public/images/devices/SL-110-M.png differ diff --git a/public/images/devices/SL-110-N.png b/public/images/devices/SL-110-N.png index dec2c12726dc7..80a7cab0b2c10 100644 Binary files a/public/images/devices/SL-110-N.png and b/public/images/devices/SL-110-N.png differ diff --git a/public/images/devices/SL-110-W.png b/public/images/devices/SL-110-W.png index dec2c12726dc7..80a7cab0b2c10 100644 Binary files a/public/images/devices/SL-110-W.png and b/public/images/devices/SL-110-W.png differ diff --git a/public/images/devices/SLB2.png b/public/images/devices/SLB2.png index cb9788b084e69..427e84ac93c8b 100644 Binary files a/public/images/devices/SLB2.png and b/public/images/devices/SLB2.png differ diff --git a/public/images/devices/SLR1.png b/public/images/devices/SLR1.png index c6c4f7d5f8542..c6b03f72f55b1 100644 Binary files a/public/images/devices/SLR1.png and b/public/images/devices/SLR1.png differ diff --git a/public/images/devices/SLR1b.png b/public/images/devices/SLR1b.png index e39dd46c9a1bf..1a45c09a7212d 100644 Binary files a/public/images/devices/SLR1b.png and b/public/images/devices/SLR1b.png differ diff --git a/public/images/devices/SLR1c.png b/public/images/devices/SLR1c.png index 3d07a82fa98d3..00099694143d1 100644 Binary files a/public/images/devices/SLR1c.png and b/public/images/devices/SLR1c.png differ diff --git a/public/images/devices/SLR2.png b/public/images/devices/SLR2.png index acbaf191d601b..63da5765c0eb6 100644 Binary files a/public/images/devices/SLR2.png and b/public/images/devices/SLR2.png differ diff --git a/public/images/devices/SLR2b.png b/public/images/devices/SLR2b.png index 464f98be8a290..f8b55b2171f39 100644 Binary files a/public/images/devices/SLR2b.png and b/public/images/devices/SLR2b.png differ diff --git a/public/images/devices/SLR2c.png b/public/images/devices/SLR2c.png index 626547d16fd3d..be09e0f5c0441 100644 Binary files a/public/images/devices/SLR2c.png and b/public/images/devices/SLR2c.png differ diff --git a/public/images/devices/SLS301ZB_2.png b/public/images/devices/SLS301ZB_2.png index b47de054b4b53..2927f31a03e18 100644 Binary files a/public/images/devices/SLS301ZB_2.png and b/public/images/devices/SLS301ZB_2.png differ diff --git a/public/images/devices/SLS301ZB_3.png b/public/images/devices/SLS301ZB_3.png index b47de054b4b53..2927f31a03e18 100644 Binary files a/public/images/devices/SLS301ZB_3.png and b/public/images/devices/SLS301ZB_3.png differ diff --git a/public/images/devices/SLT2.png b/public/images/devices/SLT2.png index 5a10a1a45099c..4bc5f9eb8b56a 100644 Binary files a/public/images/devices/SLT2.png and b/public/images/devices/SLT2.png differ diff --git a/public/images/devices/SLT3.png b/public/images/devices/SLT3.png index 80ff888f9f02d..943d942d8e13f 100644 Binary files a/public/images/devices/SLT3.png and b/public/images/devices/SLT3.png differ diff --git a/public/images/devices/SLT3B.png b/public/images/devices/SLT3B.png index 80ff888f9f02d..943d942d8e13f 100644 Binary files a/public/images/devices/SLT3B.png and b/public/images/devices/SLT3B.png differ diff --git a/public/images/devices/SLT3C.png b/public/images/devices/SLT3C.png index e3d47fa263297..7d1a9d5272ca3 100644 Binary files a/public/images/devices/SLT3C.png and b/public/images/devices/SLT3C.png differ diff --git a/public/images/devices/SLT6.png b/public/images/devices/SLT6.png index 369d10f8b1322..fdbb2b4edd225 100644 Binary files a/public/images/devices/SLT6.png and b/public/images/devices/SLT6.png differ diff --git a/public/images/devices/SM-0306E-2W.png b/public/images/devices/SM-0306E-2W.png index c8dc73c712c45..da1ea8cbad40e 100644 Binary files a/public/images/devices/SM-0306E-2W.png and b/public/images/devices/SM-0306E-2W.png differ diff --git a/public/images/devices/SM-1CTW-EU.png b/public/images/devices/SM-1CTW-EU.png index 86b1251d243bb..7a2cd646990f4 100644 Binary files a/public/images/devices/SM-1CTW-EU.png and b/public/images/devices/SM-1CTW-EU.png differ diff --git a/public/images/devices/SM-AZ713.png b/public/images/devices/SM-AZ713.png index 3d0b4e6dbf23f..52c862e6f2b82 100644 Binary files a/public/images/devices/SM-AZ713.png and b/public/images/devices/SM-AZ713.png differ diff --git a/public/images/devices/SM-O301-AZ.png b/public/images/devices/SM-O301-AZ.png index 4e4957a552710..d9d07f0b54472 100644 Binary files a/public/images/devices/SM-O301-AZ.png and b/public/images/devices/SM-O301-AZ.png differ diff --git a/public/images/devices/SM-SO306E-K-M.png b/public/images/devices/SM-SO306E-K-M.png index 3289ee8a3e8fb..cf2955f48026d 100644 Binary files a/public/images/devices/SM-SO306E-K-M.png and b/public/images/devices/SM-SO306E-K-M.png differ diff --git a/public/images/devices/SM-SO306EZ-10.png b/public/images/devices/SM-SO306EZ-10.png index c8dc73c712c45..a8ed7592ab069 100644 Binary files a/public/images/devices/SM-SO306EZ-10.png and b/public/images/devices/SM-SO306EZ-10.png differ diff --git a/public/images/devices/SM0201.png b/public/images/devices/SM0201.png index d3db333a73c3e..504525abd6c51 100644 Binary files a/public/images/devices/SM0201.png and b/public/images/devices/SM0201.png differ diff --git a/public/images/devices/SM0202.png b/public/images/devices/SM0202.png index 5a760a8984164..d7ab80ea84033 100644 Binary files a/public/images/devices/SM0202.png and b/public/images/devices/SM0202.png differ diff --git a/public/images/devices/SM0202_1.png b/public/images/devices/SM0202_1.png index 8de2cc16f9b92..595518ee7b088 100644 Binary files a/public/images/devices/SM0202_1.png and b/public/images/devices/SM0202_1.png differ diff --git a/public/images/devices/SM10ZW.png b/public/images/devices/SM10ZW.png index 711a23bd1c8d6..ddce19f73e944 100644 Binary files a/public/images/devices/SM10ZW.png and b/public/images/devices/SM10ZW.png differ diff --git a/public/images/devices/SM20.png b/public/images/devices/SM20.png index 29c6e7cbcabf5..d596ff9e3a284 100644 Binary files a/public/images/devices/SM20.png and b/public/images/devices/SM20.png differ diff --git a/public/images/devices/SM301Z.png b/public/images/devices/SM301Z.png index 470b71647a4f9..3e4b08b2f0e67 100644 Binary files a/public/images/devices/SM301Z.png and b/public/images/devices/SM301Z.png differ diff --git a/public/images/devices/SM308-2CH.png b/public/images/devices/SM308-2CH.png index ed4911cefb870..80a458b131055 100644 Binary files a/public/images/devices/SM308-2CH.png and b/public/images/devices/SM308-2CH.png differ diff --git a/public/images/devices/SM308-S.png b/public/images/devices/SM308-S.png index f23adb0f3d9b5..87b567947c3b7 100644 Binary files a/public/images/devices/SM308-S.png and b/public/images/devices/SM308-S.png differ diff --git a/public/images/devices/SM308.png b/public/images/devices/SM308.png index 5e2f9f5149d0b..1c7f0f2fe5cb6 100644 Binary files a/public/images/devices/SM308.png and b/public/images/devices/SM308.png differ diff --git a/public/images/devices/SM309-S.png b/public/images/devices/SM309-S.png index 10ef464c04990..1b75777c8e043 100644 Binary files a/public/images/devices/SM309-S.png and b/public/images/devices/SM309-S.png differ diff --git a/public/images/devices/SM309.png b/public/images/devices/SM309.png index 10bf0b34c4aeb..11b883db4ea92 100644 Binary files a/public/images/devices/SM309.png and b/public/images/devices/SM309.png differ diff --git a/public/images/devices/SM311.png b/public/images/devices/SM311.png index 38d5338a9cdeb..c0adc3a0c25bb 100644 Binary files a/public/images/devices/SM311.png and b/public/images/devices/SM311.png differ diff --git a/public/images/devices/SM323.png b/public/images/devices/SM323.png index 1a7bf1ea50935..b346685f16727 100644 Binary files a/public/images/devices/SM323.png and b/public/images/devices/SM323.png differ diff --git a/public/images/devices/SM324.png b/public/images/devices/SM324.png index 4926d858f2224..c537e7e974ef8 100644 Binary files a/public/images/devices/SM324.png and b/public/images/devices/SM324.png differ diff --git a/public/images/devices/SMA02P.png b/public/images/devices/SMA02P.png index 1c86975c9e40f..18a55c1d03ad1 100644 Binary files a/public/images/devices/SMA02P.png and b/public/images/devices/SMA02P.png differ diff --git a/public/images/devices/SMA03P.png b/public/images/devices/SMA03P.png index 763f23420c6b4..114e09dbdd704 100644 Binary files a/public/images/devices/SMA03P.png and b/public/images/devices/SMA03P.png differ diff --git a/public/images/devices/SMA04P.png b/public/images/devices/SMA04P.png index bebbbead7de39..8ebaf9717c6cf 100644 Binary files a/public/images/devices/SMA04P.png and b/public/images/devices/SMA04P.png differ diff --git a/public/images/devices/SMART-HEAT10.png b/public/images/devices/SMART-HEAT10.png index dd3800dba0e5c..62274b00130b1 100644 Binary files a/public/images/devices/SMART-HEAT10.png and b/public/images/devices/SMART-HEAT10.png differ diff --git a/public/images/devices/SMART-SMOKE10.png b/public/images/devices/SMART-SMOKE10.png index 83c5de7b16baf..b14003d5d3972 100644 Binary files a/public/images/devices/SMART-SMOKE10.png and b/public/images/devices/SMART-SMOKE10.png differ diff --git a/public/images/devices/SMARTZBA60RGBW.png b/public/images/devices/SMARTZBA60RGBW.png index a809ff624da5c..3d04ff9005900 100644 Binary files a/public/images/devices/SMARTZBA60RGBW.png and b/public/images/devices/SMARTZBA60RGBW.png differ diff --git a/public/images/devices/SMCL01-ZB.png b/public/images/devices/SMCL01-ZB.png index 10e8506339905..385d7c4e6bebe 100644 Binary files a/public/images/devices/SMCL01-ZB.png and b/public/images/devices/SMCL01-ZB.png differ diff --git a/public/images/devices/SMD4106W-RGB-ZB.png b/public/images/devices/SMD4106W-RGB-ZB.png index d711d4bd4863e..7160f7c730c9e 100644 Binary files a/public/images/devices/SMD4106W-RGB-ZB.png and b/public/images/devices/SMD4106W-RGB-ZB.png differ diff --git a/public/images/devices/SMD4109W-RGB-ZB.png b/public/images/devices/SMD4109W-RGB-ZB.png index e56ca98077deb..79e6a756c7c6b 100644 Binary files a/public/images/devices/SMD4109W-RGB-ZB.png and b/public/images/devices/SMD4109W-RGB-ZB.png differ diff --git a/public/images/devices/SMFL20W-ZB.png b/public/images/devices/SMFL20W-ZB.png index 233bb0b0161b6..a849d47788362 100644 Binary files a/public/images/devices/SMFL20W-ZB.png and b/public/images/devices/SMFL20W-ZB.png differ diff --git a/public/images/devices/SMHM-I1.png b/public/images/devices/SMHM-I1.png index 83f4fedc69ab3..a34204193625d 100644 Binary files a/public/images/devices/SMHM-I1.png and b/public/images/devices/SMHM-I1.png differ diff --git a/public/images/devices/SMI7040.png b/public/images/devices/SMI7040.png index 8646d138f68b9..31754e4e08951 100644 Binary files a/public/images/devices/SMI7040.png and b/public/images/devices/SMI7040.png differ diff --git a/public/images/devices/SMKG-1KNL-EU-Z.png b/public/images/devices/SMKG-1KNL-EU-Z.png index f5d57eb278891..730ff8881faaf 100644 Binary files a/public/images/devices/SMKG-1KNL-EU-Z.png and b/public/images/devices/SMKG-1KNL-EU-Z.png differ diff --git a/public/images/devices/SMKG-1KNL-US-TZB-W.png b/public/images/devices/SMKG-1KNL-US-TZB-W.png index 849c004edbbba..d8b0927a6f871 100644 Binary files a/public/images/devices/SMKG-1KNL-US-TZB-W.png and b/public/images/devices/SMKG-1KNL-US-TZB-W.png differ diff --git a/public/images/devices/SMRZB-143.png b/public/images/devices/SMRZB-143.png index 496561c7b96e8..2ad8481803a19 100644 Binary files a/public/images/devices/SMRZB-143.png and b/public/images/devices/SMRZB-143.png differ diff --git a/public/images/devices/SMRZB-332.png b/public/images/devices/SMRZB-332.png index f8965f94967f9..16f8a0d1a27f0 100644 Binary files a/public/images/devices/SMRZB-332.png and b/public/images/devices/SMRZB-332.png differ diff --git a/public/images/devices/SMSZB-120.png b/public/images/devices/SMSZB-120.png index 352b6d189a257..eeacd8d96ca4c 100644 Binary files a/public/images/devices/SMSZB-120.png and b/public/images/devices/SMSZB-120.png differ diff --git a/public/images/devices/SMT402.png b/public/images/devices/SMT402.png index 65f7f2e9bbf6b..d253faa125743 100644 Binary files a/public/images/devices/SMT402.png and b/public/images/devices/SMT402.png differ diff --git a/public/images/devices/SMT402AD.png b/public/images/devices/SMT402AD.png index b3bd4765fc76f..1f11d7dd19c61 100644 Binary files a/public/images/devices/SMT402AD.png and b/public/images/devices/SMT402AD.png differ diff --git a/public/images/devices/SN10ZW.png b/public/images/devices/SN10ZW.png index c7a828c97734c..c8811ebaf47f4 100644 Binary files a/public/images/devices/SN10ZW.png and b/public/images/devices/SN10ZW.png differ diff --git a/public/images/devices/SNTZ007.png b/public/images/devices/SNTZ007.png index ce958d2ff7fd5..bc95051c281a7 100644 Binary files a/public/images/devices/SNTZ007.png and b/public/images/devices/SNTZ007.png differ diff --git a/public/images/devices/SNTZ009.png b/public/images/devices/SNTZ009.png index bf86ddbbcd1bf..a1d88937066a2 100644 Binary files a/public/images/devices/SNTZ009.png and b/public/images/devices/SNTZ009.png differ diff --git a/public/images/devices/SNZB-01P.png b/public/images/devices/SNZB-01P.png index e8479994b9f1e..51ca6df590860 100644 Binary files a/public/images/devices/SNZB-01P.png and b/public/images/devices/SNZB-01P.png differ diff --git a/public/images/devices/SNZB-02P.png b/public/images/devices/SNZB-02P.png index 5a977169bf279..01b5d8bffe4d5 100644 Binary files a/public/images/devices/SNZB-02P.png and b/public/images/devices/SNZB-02P.png differ diff --git a/public/images/devices/SNZB-02_EFEKTA.png b/public/images/devices/SNZB-02_EFEKTA.png index 3ec97d885f234..8de2969c79e68 100644 Binary files a/public/images/devices/SNZB-02_EFEKTA.png and b/public/images/devices/SNZB-02_EFEKTA.png differ diff --git a/public/images/devices/SNZB-04P.png b/public/images/devices/SNZB-04P.png index d87c0be08cdc9..e7a5c1d3c6be9 100644 Binary files a/public/images/devices/SNZB-04P.png and b/public/images/devices/SNZB-04P.png differ diff --git a/public/images/devices/SNZB-06P.png b/public/images/devices/SNZB-06P.png index a42eb7170051c..767738205c46f 100644 Binary files a/public/images/devices/SNZB-06P.png and b/public/images/devices/SNZB-06P.png differ diff --git a/public/images/devices/SOHM-I1.png b/public/images/devices/SOHM-I1.png index e9b7455864f3b..803a013023f07 100644 Binary files a/public/images/devices/SOHM-I1.png and b/public/images/devices/SOHM-I1.png differ diff --git a/public/images/devices/SORB.png b/public/images/devices/SORB.png index 8fcfd25b5f550..1cc165cde2252 100644 Binary files a/public/images/devices/SORB.png and b/public/images/devices/SORB.png differ diff --git a/public/images/devices/SP-110.png b/public/images/devices/SP-110.png index 49d0a89634345..cd2fe0e29ab6d 100644 Binary files a/public/images/devices/SP-110.png and b/public/images/devices/SP-110.png differ diff --git a/public/images/devices/SP-120.png b/public/images/devices/SP-120.png index 91ec80788f88e..9dd8c222eda07 100644 Binary files a/public/images/devices/SP-120.png and b/public/images/devices/SP-120.png differ diff --git a/public/images/devices/SP-220.png b/public/images/devices/SP-220.png index fe9f357661517..8d2589dea02d6 100644 Binary files a/public/images/devices/SP-220.png and b/public/images/devices/SP-220.png differ diff --git a/public/images/devices/SP-222.png b/public/images/devices/SP-222.png index 1d0cd2a9c67f6..4542faf98c337 100644 Binary files a/public/images/devices/SP-222.png and b/public/images/devices/SP-222.png differ diff --git a/public/images/devices/SP-224.png b/public/images/devices/SP-224.png index 5364ba7c536e2..e9435f83f43dd 100644 Binary files a/public/images/devices/SP-224.png and b/public/images/devices/SP-224.png differ diff --git a/public/images/devices/SP-234.png b/public/images/devices/SP-234.png index a2ab71238b28c..dee588229f9f9 100644 Binary files a/public/images/devices/SP-234.png and b/public/images/devices/SP-234.png differ diff --git a/public/images/devices/SP-PS1-02.png b/public/images/devices/SP-PS1-02.png index 7ff206565b40e..6a3265d02e699 100644 Binary files a/public/images/devices/SP-PS1-02.png and b/public/images/devices/SP-PS1-02.png differ diff --git a/public/images/devices/SP-PS2-02.png b/public/images/devices/SP-PS2-02.png index 24fc0145128ec..27b65d8c835ce 100644 Binary files a/public/images/devices/SP-PS2-02.png and b/public/images/devices/SP-PS2-02.png differ diff --git a/public/images/devices/SP2600ZB.png b/public/images/devices/SP2600ZB.png index f74e36ece56dc..ec57ae26e5a2d 100644 Binary files a/public/images/devices/SP2600ZB.png and b/public/images/devices/SP2600ZB.png differ diff --git a/public/images/devices/SP2610ZB.png b/public/images/devices/SP2610ZB.png index 82de0c9beb20a..adf921d98d5e2 100644 Binary files a/public/images/devices/SP2610ZB.png and b/public/images/devices/SP2610ZB.png differ diff --git a/public/images/devices/SP600.png b/public/images/devices/SP600.png index 024b242ddf659..90588047ac92d 100644 Binary files a/public/images/devices/SP600.png and b/public/images/devices/SP600.png differ diff --git a/public/images/devices/SPE600.png b/public/images/devices/SPE600.png index 55bcbe80511bb..638f6febe514f 100644 Binary files a/public/images/devices/SPE600.png and b/public/images/devices/SPE600.png differ diff --git a/public/images/devices/SPLZB-131.png b/public/images/devices/SPLZB-131.png index 42ad091b96e16..910789211407e 100644 Binary files a/public/images/devices/SPLZB-131.png and b/public/images/devices/SPLZB-131.png differ diff --git a/public/images/devices/SPLZB-132.png b/public/images/devices/SPLZB-132.png index 6bd9757bdfc46..e8d1f71a2339f 100644 Binary files a/public/images/devices/SPLZB-132.png and b/public/images/devices/SPLZB-132.png differ diff --git a/public/images/devices/SPLZB-134.png b/public/images/devices/SPLZB-134.png index a615d6482f7fb..c82140c82706a 100644 Binary files a/public/images/devices/SPLZB-134.png and b/public/images/devices/SPLZB-134.png differ diff --git a/public/images/devices/SPLZB-141.png b/public/images/devices/SPLZB-141.png index 75236f4625917..8db8061d3fcbd 100644 Binary files a/public/images/devices/SPLZB-141.png and b/public/images/devices/SPLZB-141.png differ diff --git a/public/images/devices/SPM01-D2TZ-U01.png b/public/images/devices/SPM01-D2TZ-U01.png index 4b92d19bc148f..774f83b2a6cea 100644 Binary files a/public/images/devices/SPM01-D2TZ-U01.png and b/public/images/devices/SPM01-D2TZ-U01.png differ diff --git a/public/images/devices/SPM01-D2TZ.png b/public/images/devices/SPM01-D2TZ.png index 2d41db463ca7f..f2fcf301a03d5 100644 Binary files a/public/images/devices/SPM01-D2TZ.png and b/public/images/devices/SPM01-D2TZ.png differ diff --git a/public/images/devices/SPP02G.png b/public/images/devices/SPP02G.png index 02775dfc8a039..f67513ae48cd8 100644 Binary files a/public/images/devices/SPP02G.png and b/public/images/devices/SPP02G.png differ diff --git a/public/images/devices/SPP02GIP.png b/public/images/devices/SPP02GIP.png index ed1ac127a25a5..ec9575aef8843 100644 Binary files a/public/images/devices/SPP02GIP.png and b/public/images/devices/SPP02GIP.png differ diff --git a/public/images/devices/SPP04G.png b/public/images/devices/SPP04G.png index 07553cb985902..208a59ef78c98 100644 Binary files a/public/images/devices/SPP04G.png and b/public/images/devices/SPP04G.png differ diff --git a/public/images/devices/SPPUSB02.png b/public/images/devices/SPPUSB02.png index f193e3ab9b3fa..746e77992c740 100644 Binary files a/public/images/devices/SPPUSB02.png and b/public/images/devices/SPPUSB02.png differ diff --git a/public/images/devices/SPUSB02.png b/public/images/devices/SPUSB02.png index 2c5beaa539c65..a59edd5fac178 100644 Binary files a/public/images/devices/SPUSB02.png and b/public/images/devices/SPUSB02.png differ diff --git a/public/images/devices/SPZ01.png b/public/images/devices/SPZ01.png index afff3c054ae6b..3e3dca6b64a2b 100644 Binary files a/public/images/devices/SPZ01.png and b/public/images/devices/SPZ01.png differ diff --git a/public/images/devices/SPZB0001.png b/public/images/devices/SPZB0001.png index f8ee2ebdcf7e9..0941e730a2db5 100644 Binary files a/public/images/devices/SPZB0001.png and b/public/images/devices/SPZB0001.png differ diff --git a/public/images/devices/SR-ZG9001K12-DIM-Z4.png b/public/images/devices/SR-ZG9001K12-DIM-Z4.png index 7b34b8cdb5aa1..49a3ccbbb70cc 100644 Binary files a/public/images/devices/SR-ZG9001K12-DIM-Z4.png and b/public/images/devices/SR-ZG9001K12-DIM-Z4.png differ diff --git a/public/images/devices/SR-ZG9001K12-DIM-Z5.png b/public/images/devices/SR-ZG9001K12-DIM-Z5.png index 3c18e9f7808de..b9ea45e9721a9 100644 Binary files a/public/images/devices/SR-ZG9001K12-DIM-Z5.png and b/public/images/devices/SR-ZG9001K12-DIM-Z5.png differ diff --git a/public/images/devices/SR-ZG9001K2-DIM.png b/public/images/devices/SR-ZG9001K2-DIM.png index 28d38a37d3e13..732988ae1590a 100644 Binary files a/public/images/devices/SR-ZG9001K2-DIM.png and b/public/images/devices/SR-ZG9001K2-DIM.png differ diff --git a/public/images/devices/SR-ZG9001K2-DIM2.png b/public/images/devices/SR-ZG9001K2-DIM2.png index 32dffda979ac6..1dcd715556202 100644 Binary files a/public/images/devices/SR-ZG9001K2-DIM2.png and b/public/images/devices/SR-ZG9001K2-DIM2.png differ diff --git a/public/images/devices/SR-ZG9001K4-DIM2.png b/public/images/devices/SR-ZG9001K4-DIM2.png index 7d6d3706b7aa0..aef40c88dfbb3 100644 Binary files a/public/images/devices/SR-ZG9001K4-DIM2.png and b/public/images/devices/SR-ZG9001K4-DIM2.png differ diff --git a/public/images/devices/SR-ZG9001K8-DIM.png b/public/images/devices/SR-ZG9001K8-DIM.png index 76359ea71d926..5fe00f5b2337f 100644 Binary files a/public/images/devices/SR-ZG9001K8-DIM.png and b/public/images/devices/SR-ZG9001K8-DIM.png differ diff --git a/public/images/devices/SR-ZG9001T4-DIM-EU.png b/public/images/devices/SR-ZG9001T4-DIM-EU.png index de5352d204edf..43c3e8861e222 100644 Binary files a/public/images/devices/SR-ZG9001T4-DIM-EU.png and b/public/images/devices/SR-ZG9001T4-DIM-EU.png differ diff --git a/public/images/devices/SR-ZG9023A-EU.png b/public/images/devices/SR-ZG9023A-EU.png index d36b8948e66cc..d2d3c9acd74df 100644 Binary files a/public/images/devices/SR-ZG9023A-EU.png and b/public/images/devices/SR-ZG9023A-EU.png differ diff --git a/public/images/devices/SR-ZG9040A-S.png b/public/images/devices/SR-ZG9040A-S.png index 8544db61210e5..e634519a673cf 100644 Binary files a/public/images/devices/SR-ZG9040A-S.png and b/public/images/devices/SR-ZG9040A-S.png differ diff --git a/public/images/devices/SR-ZG9040A.png b/public/images/devices/SR-ZG9040A.png index 6a8e3f029fabe..38d8d6525eba2 100644 Binary files a/public/images/devices/SR-ZG9040A.png and b/public/images/devices/SR-ZG9040A.png differ diff --git a/public/images/devices/SR-ZG9080A.png b/public/images/devices/SR-ZG9080A.png index 4d7e6c027386e..94e0837122247 100644 Binary files a/public/images/devices/SR-ZG9080A.png and b/public/images/devices/SR-ZG9080A.png differ diff --git a/public/images/devices/SR-ZG9092A.png b/public/images/devices/SR-ZG9092A.png index bff7045d08e92..709b218803811 100644 Binary files a/public/images/devices/SR-ZG9092A.png and b/public/images/devices/SR-ZG9092A.png differ diff --git a/public/images/devices/SR-ZG9100A-S.png b/public/images/devices/SR-ZG9100A-S.png index afe1ace0ae1c2..48f2cefe08783 100644 Binary files a/public/images/devices/SR-ZG9100A-S.png and b/public/images/devices/SR-ZG9100A-S.png differ diff --git a/public/images/devices/SR-ZGP2801K-5C.png b/public/images/devices/SR-ZGP2801K-5C.png index db8b6b1a3b0a0..82d632ca85ef0 100644 Binary files a/public/images/devices/SR-ZGP2801K-5C.png and b/public/images/devices/SR-ZGP2801K-5C.png differ diff --git a/public/images/devices/SR-ZGP2801K2-DIM.png b/public/images/devices/SR-ZGP2801K2-DIM.png index ba8d088e5a70e..a827edc39a38c 100644 Binary files a/public/images/devices/SR-ZGP2801K2-DIM.png and b/public/images/devices/SR-ZGP2801K2-DIM.png differ diff --git a/public/images/devices/SR-ZGP2801K4-DIM.png b/public/images/devices/SR-ZGP2801K4-DIM.png index ccbe092c618ac..e45487f87e944 100644 Binary files a/public/images/devices/SR-ZGP2801K4-DIM.png and b/public/images/devices/SR-ZGP2801K4-DIM.png differ diff --git a/public/images/devices/SR600.png b/public/images/devices/SR600.png index 18abdfedb7066..a95570e662a97 100644 Binary files a/public/images/devices/SR600.png and b/public/images/devices/SR600.png differ diff --git a/public/images/devices/SRAC-23B-ZBSR.png b/public/images/devices/SRAC-23B-ZBSR.png index f81d5706c0c4b..6b68a61fc5d6c 100644 Binary files a/public/images/devices/SRAC-23B-ZBSR.png and b/public/images/devices/SRAC-23B-ZBSR.png differ diff --git a/public/images/devices/SRB01.png b/public/images/devices/SRB01.png index 8c85bb458bc68..a473d328890c3 100644 Binary files a/public/images/devices/SRB01.png and b/public/images/devices/SRB01.png differ diff --git a/public/images/devices/SRP-ZG9105-CC.png b/public/images/devices/SRP-ZG9105-CC.png index cf1e7dec860c7..63447e36e7d51 100644 Binary files a/public/images/devices/SRP-ZG9105-CC.png and b/public/images/devices/SRP-ZG9105-CC.png differ diff --git a/public/images/devices/SS100.png b/public/images/devices/SS100.png index 0c892376b7200..97b68c36c7cb0 100644 Binary files a/public/images/devices/SS100.png and b/public/images/devices/SS100.png differ diff --git a/public/images/devices/SS200.png b/public/images/devices/SS200.png index 96b29285e283d..1dd5af6b2d8bf 100644 Binary files a/public/images/devices/SS200.png and b/public/images/devices/SS200.png differ diff --git a/public/images/devices/SS600ZB.png b/public/images/devices/SS600ZB.png index 86f2427016fe2..bcbb410e25e8a 100644 Binary files a/public/images/devices/SS600ZB.png and b/public/images/devices/SS600ZB.png differ diff --git a/public/images/devices/SS9600ZB.png b/public/images/devices/SS9600ZB.png index b27990aa886ec..7ef4d8d20f9c1 100644 Binary files a/public/images/devices/SS9600ZB.png and b/public/images/devices/SS9600ZB.png differ diff --git a/public/images/devices/SSA01ZB.png b/public/images/devices/SSA01ZB.png index 43c9d670a170b..3988f5070ae07 100644 Binary files a/public/images/devices/SSA01ZB.png and b/public/images/devices/SSA01ZB.png differ diff --git a/public/images/devices/SSHM-I1.png b/public/images/devices/SSHM-I1.png index ea5ede2c56117..4facb6bfd0ed0 100644 Binary files a/public/images/devices/SSHM-I1.png and b/public/images/devices/SSHM-I1.png differ diff --git a/public/images/devices/SSM-U01.png b/public/images/devices/SSM-U01.png index 5f602cd18ee8c..196d1e0131a7d 100644 Binary files a/public/images/devices/SSM-U01.png and b/public/images/devices/SSM-U01.png differ diff --git a/public/images/devices/SSS401ZB.png b/public/images/devices/SSS401ZB.png index b28a4f29325c9..bf74190715179 100644 Binary files a/public/images/devices/SSS401ZB.png and b/public/images/devices/SSS401ZB.png differ diff --git a/public/images/devices/SSW01.png b/public/images/devices/SSW01.png index f2f38084335d5..022fc6940b201 100644 Binary files a/public/images/devices/SSW01.png and b/public/images/devices/SSW01.png differ diff --git a/public/images/devices/SSW01G.png b/public/images/devices/SSW01G.png index bf1330fc5d618..a237d0ff932a0 100644 Binary files a/public/images/devices/SSW01G.png and b/public/images/devices/SSW01G.png differ diff --git a/public/images/devices/SSW02G.png b/public/images/devices/SSW02G.png index 9708c96bacec1..3fdb340a4c02e 100644 Binary files a/public/images/devices/SSW02G.png and b/public/images/devices/SSW02G.png differ diff --git a/public/images/devices/SSW03G.png b/public/images/devices/SSW03G.png index 9d8b1da562614..a1334b683508f 100644 Binary files a/public/images/devices/SSW03G.png and b/public/images/devices/SSW03G.png differ diff --git a/public/images/devices/SSW04.png b/public/images/devices/SSW04.png index 7337f4c18d663..9a1f44c2692af 100644 Binary files a/public/images/devices/SSW04.png and b/public/images/devices/SSW04.png differ diff --git a/public/images/devices/SSW04G.png b/public/images/devices/SSW04G.png index 3909e5aac6125..b6ff6756ef7c1 100644 Binary files a/public/images/devices/SSW04G.png and b/public/images/devices/SSW04G.png differ diff --git a/public/images/devices/SSWD01.png b/public/images/devices/SSWD01.png index f2f38084335d5..022fc6940b201 100644 Binary files a/public/images/devices/SSWD01.png and b/public/images/devices/SSWD01.png differ diff --git a/public/images/devices/SSWF01G.png b/public/images/devices/SSWF01G.png index 1e3bd2411d94b..6ad645a0fac2a 100644 Binary files a/public/images/devices/SSWF01G.png and b/public/images/devices/SSWF01G.png differ diff --git a/public/images/devices/SSWM-DIMZ.png b/public/images/devices/SSWM-DIMZ.png index 978a66df3471f..0a0bc3168811c 100644 Binary files a/public/images/devices/SSWM-DIMZ.png and b/public/images/devices/SSWM-DIMZ.png differ diff --git a/public/images/devices/SSWRM-ZB.png b/public/images/devices/SSWRM-ZB.png index 4bea7b26ff77e..38120b0108e3f 100644 Binary files a/public/images/devices/SSWRM-ZB.png and b/public/images/devices/SSWRM-ZB.png differ diff --git a/public/images/devices/ST-110.png b/public/images/devices/ST-110.png index a51848d03d81c..871c0ac89f73c 100644 Binary files a/public/images/devices/ST-110.png and b/public/images/devices/ST-110.png differ diff --git a/public/images/devices/ST20.png b/public/images/devices/ST20.png index bd750a9331180..340625dafe638 100644 Binary files a/public/images/devices/ST20.png and b/public/images/devices/ST20.png differ diff --git a/public/images/devices/ST21.png b/public/images/devices/ST21.png index b1463ee2c3d25..d3a1d6f7ef91b 100644 Binary files a/public/images/devices/ST21.png and b/public/images/devices/ST21.png differ diff --git a/public/images/devices/ST218.png b/public/images/devices/ST218.png index 1413cc7224164..0a5781ebc91f8 100644 Binary files a/public/images/devices/ST218.png and b/public/images/devices/ST218.png differ diff --git a/public/images/devices/ST30.png b/public/images/devices/ST30.png index 999c9c85615a4..723a6e7ee627e 100644 Binary files a/public/images/devices/ST30.png and b/public/images/devices/ST30.png differ diff --git a/public/images/devices/ST8AU-CON.png b/public/images/devices/ST8AU-CON.png index d6f0945b3fbde..4034a28df271e 100644 Binary files a/public/images/devices/ST8AU-CON.png and b/public/images/devices/ST8AU-CON.png differ diff --git a/public/images/devices/STH01ZB.png b/public/images/devices/STH01ZB.png index ae946f421f16c..591752f83df40 100644 Binary files a/public/images/devices/STH01ZB.png and b/public/images/devices/STH01ZB.png differ diff --git a/public/images/devices/STHM-I1H.png b/public/images/devices/STHM-I1H.png index 8e2b3e9c7fc5e..95f0d0cad41c6 100644 Binary files a/public/images/devices/STHM-I1H.png and b/public/images/devices/STHM-I1H.png differ diff --git a/public/images/devices/STS-IRM-250.png b/public/images/devices/STS-IRM-250.png index acc530456bf2e..64bcdd5641a26 100644 Binary files a/public/images/devices/STS-IRM-250.png and b/public/images/devices/STS-IRM-250.png differ diff --git a/public/images/devices/STS-IRM-251.png b/public/images/devices/STS-IRM-251.png index acc530456bf2e..64bcdd5641a26 100644 Binary files a/public/images/devices/STS-IRM-251.png and b/public/images/devices/STS-IRM-251.png differ diff --git a/public/images/devices/STS-OUT-US-2.png b/public/images/devices/STS-OUT-US-2.png index b8a1e84f400a3..e682aabc0f3ff 100644 Binary files a/public/images/devices/STS-OUT-US-2.png and b/public/images/devices/STS-OUT-US-2.png differ diff --git a/public/images/devices/STS-PRS-251.png b/public/images/devices/STS-PRS-251.png index 5ca769ef31265..a79d1a2bbb9f2 100644 Binary files a/public/images/devices/STS-PRS-251.png and b/public/images/devices/STS-PRS-251.png differ diff --git a/public/images/devices/STS-WTR-250.png b/public/images/devices/STS-WTR-250.png index fa95eb17598fd..a114190a93233 100644 Binary files a/public/images/devices/STS-WTR-250.png and b/public/images/devices/STS-WTR-250.png differ diff --git a/public/images/devices/STSS-IRM-001.png b/public/images/devices/STSS-IRM-001.png index 7b0ef454c8cfe..1f09c482170a2 100644 Binary files a/public/images/devices/STSS-IRM-001.png and b/public/images/devices/STSS-IRM-001.png differ diff --git a/public/images/devices/STSS-MULT-001.png b/public/images/devices/STSS-MULT-001.png index 2608cb31461e3..9e6d299a4c075 100644 Binary files a/public/images/devices/STSS-MULT-001.png and b/public/images/devices/STSS-MULT-001.png differ diff --git a/public/images/devices/STSS-PRES-001.png b/public/images/devices/STSS-PRES-001.png index 2b77d32a1ce6e..08a82fd2f2d8a 100644 Binary files a/public/images/devices/STSS-PRES-001.png and b/public/images/devices/STSS-PRES-001.png differ diff --git a/public/images/devices/STZB402.png b/public/images/devices/STZB402.png index 378579663313e..b00e2b26b095a 100644 Binary files a/public/images/devices/STZB402.png and b/public/images/devices/STZB402.png differ diff --git a/public/images/devices/SV01.png b/public/images/devices/SV01.png index d755fca03056b..cf9094e7be8f6 100644 Binary files a/public/images/devices/SV01.png and b/public/images/devices/SV01.png differ diff --git a/public/images/devices/SV02.png b/public/images/devices/SV02.png index d755fca03056b..cf9094e7be8f6 100644 Binary files a/public/images/devices/SV02.png and b/public/images/devices/SV02.png differ diff --git a/public/images/devices/SW02.png b/public/images/devices/SW02.png index f0452fda0701e..4ad6d31477551 100644 Binary files a/public/images/devices/SW02.png and b/public/images/devices/SW02.png differ diff --git a/public/images/devices/SW21.png b/public/images/devices/SW21.png index fd61620ded5e3..432cac601e8da 100644 Binary files a/public/images/devices/SW21.png and b/public/images/devices/SW21.png differ diff --git a/public/images/devices/SW2500ZB.png b/public/images/devices/SW2500ZB.png index e9492e71167d2..37a68d8f8fa28 100644 Binary files a/public/images/devices/SW2500ZB.png and b/public/images/devices/SW2500ZB.png differ diff --git a/public/images/devices/SW30.png b/public/images/devices/SW30.png index 3af0544d4a52a..fd1dafdfc7de3 100644 Binary files a/public/images/devices/SW30.png and b/public/images/devices/SW30.png differ diff --git a/public/images/devices/SW600.png b/public/images/devices/SW600.png index df9e3f2c91304..eb4b7347db063 100644 Binary files a/public/images/devices/SW600.png and b/public/images/devices/SW600.png differ diff --git a/public/images/devices/SWA01ZB.png b/public/images/devices/SWA01ZB.png index 0b6f9620ad0e0..6ad25158e2955 100644 Binary files a/public/images/devices/SWA01ZB.png and b/public/images/devices/SWA01ZB.png differ diff --git a/public/images/devices/SWHM-I1.png b/public/images/devices/SWHM-I1.png index c8c11528c9607..1dd54db9ee00e 100644 Binary files a/public/images/devices/SWHM-I1.png and b/public/images/devices/SWHM-I1.png differ diff --git a/public/images/devices/SWITCH-EDP-RE-DY.png b/public/images/devices/SWITCH-EDP-RE-DY.png index 7720a37155749..f884213d3517f 100644 Binary files a/public/images/devices/SWITCH-EDP-RE-DY.png and b/public/images/devices/SWITCH-EDP-RE-DY.png differ diff --git a/public/images/devices/SWITCH-ZR02.png b/public/images/devices/SWITCH-ZR02.png index de5f877f06d46..9cbc0c0689bb5 100644 Binary files a/public/images/devices/SWITCH-ZR02.png and b/public/images/devices/SWITCH-ZR02.png differ diff --git a/public/images/devices/SWO-KEF1PA.png b/public/images/devices/SWO-KEF1PA.png index 637b7f4b7efda..a0660891c8c99 100644 Binary files a/public/images/devices/SWO-KEF1PA.png and b/public/images/devices/SWO-KEF1PA.png differ diff --git a/public/images/devices/SWO-MOS1PA.png b/public/images/devices/SWO-MOS1PA.png index 9c8acba55faa5..9a714e80b15c3 100644 Binary files a/public/images/devices/SWO-MOS1PA.png and b/public/images/devices/SWO-MOS1PA.png differ diff --git a/public/images/devices/SWO-WDS1PA.png b/public/images/devices/SWO-WDS1PA.png index 37fa288207eeb..1d01942e58f2e 100644 Binary files a/public/images/devices/SWO-WDS1PA.png and b/public/images/devices/SWO-WDS1PA.png differ diff --git a/public/images/devices/SWTZ25.png b/public/images/devices/SWTZ25.png index 4e20478e2df23..e3b533166b312 100644 Binary files a/public/images/devices/SWTZ25.png and b/public/images/devices/SWTZ25.png differ diff --git a/public/images/devices/SZ-DWS04.png b/public/images/devices/SZ-DWS04.png index 1cd89c430936e..7617c15cf0b9b 100644 Binary files a/public/images/devices/SZ-DWS04.png and b/public/images/devices/SZ-DWS04.png differ diff --git a/public/images/devices/SZ-DWS08.png b/public/images/devices/SZ-DWS08.png index 773d81377fc64..bfc5f018a61a3 100644 Binary files a/public/images/devices/SZ-DWS08.png and b/public/images/devices/SZ-DWS08.png differ diff --git a/public/images/devices/SZ-ESW01-AU.png b/public/images/devices/SZ-ESW01-AU.png index 1e9b516ccddc9..c8b4c7db76418 100644 Binary files a/public/images/devices/SZ-ESW01-AU.png and b/public/images/devices/SZ-ESW01-AU.png differ diff --git a/public/images/devices/SZ-ESW01.png b/public/images/devices/SZ-ESW01.png index d0d831391da84..619291392e385 100644 Binary files a/public/images/devices/SZ-ESW01.png and b/public/images/devices/SZ-ESW01.png differ diff --git a/public/images/devices/SZ-ESW02.png b/public/images/devices/SZ-ESW02.png index b950afad85d97..fb6d2d752b2f6 100644 Binary files a/public/images/devices/SZ-ESW02.png and b/public/images/devices/SZ-ESW02.png differ diff --git a/public/images/devices/SZ-PIR04N.png b/public/images/devices/SZ-PIR04N.png index dbdbf2020aa1a..c25b61afd4fa5 100644 Binary files a/public/images/devices/SZ-PIR04N.png and b/public/images/devices/SZ-PIR04N.png differ diff --git a/public/images/devices/SZ-SRN12N.png b/public/images/devices/SZ-SRN12N.png index 473ad8ba9292d..3249cea4986ed 100644 Binary files a/public/images/devices/SZ-SRN12N.png and b/public/images/devices/SZ-SRN12N.png differ diff --git a/public/images/devices/SZ-T04.png b/public/images/devices/SZ-T04.png index 3d26a67644d82..3262114c99f35 100644 Binary files a/public/images/devices/SZ-T04.png and b/public/images/devices/SZ-T04.png differ diff --git a/public/images/devices/T1820.png b/public/images/devices/T1820.png index 3c581c30fc927..1354e1d892347 100644 Binary files a/public/images/devices/T1820.png and b/public/images/devices/T1820.png differ diff --git a/public/images/devices/T1829.png b/public/images/devices/T1829.png index 5cdf1266eb61f..df733a710d24e 100644 Binary files a/public/images/devices/T1829.png and b/public/images/devices/T1829.png differ diff --git a/public/images/devices/T18W3Z.png b/public/images/devices/T18W3Z.png index 422784f25fc14..377834f6e734b 100644 Binary files a/public/images/devices/T18W3Z.png and b/public/images/devices/T18W3Z.png differ diff --git a/public/images/devices/T2011.png b/public/images/devices/T2011.png index b9f9e95251a08..343b88ad8b61f 100644 Binary files a/public/images/devices/T2011.png and b/public/images/devices/T2011.png differ diff --git a/public/images/devices/T2030.png b/public/images/devices/T2030.png index 656295f389072..3d55499719f60 100644 Binary files a/public/images/devices/T2030.png and b/public/images/devices/T2030.png differ diff --git a/public/images/devices/T2035.png b/public/images/devices/T2035.png index 3e30d67f51418..6bf159897923c 100644 Binary files a/public/images/devices/T2035.png and b/public/images/devices/T2035.png differ diff --git a/public/images/devices/T2037.png b/public/images/devices/T2037.png index d106f72c26cf4..84a04e3a3bef6 100644 Binary files a/public/images/devices/T2037.png and b/public/images/devices/T2037.png differ diff --git a/public/images/devices/T2106.png b/public/images/devices/T2106.png index e94dc04932d87..08504d5af5b38 100644 Binary files a/public/images/devices/T2106.png and b/public/images/devices/T2106.png differ diff --git a/public/images/devices/T21W1Z.png b/public/images/devices/T21W1Z.png index 9c56caa861c51..353bde150cd86 100644 Binary files a/public/images/devices/T21W1Z.png and b/public/images/devices/T21W1Z.png differ diff --git a/public/images/devices/T21W2Z.png b/public/images/devices/T21W2Z.png index 9727fa5d71e50..ac83fbcc0fe7b 100644 Binary files a/public/images/devices/T21W2Z.png and b/public/images/devices/T21W2Z.png differ diff --git a/public/images/devices/T30W1Z.png b/public/images/devices/T30W1Z.png index e2a628624d3b8..1da255fc92eb3 100644 Binary files a/public/images/devices/T30W1Z.png and b/public/images/devices/T30W1Z.png differ diff --git a/public/images/devices/T30W2Z.png b/public/images/devices/T30W2Z.png index c600ff5ad2e39..24cf1165d738c 100644 Binary files a/public/images/devices/T30W2Z.png and b/public/images/devices/T30W2Z.png differ diff --git a/public/images/devices/T30W3Z.png b/public/images/devices/T30W3Z.png index 289ffd97795bc..5cc9baa19363f 100644 Binary files a/public/images/devices/T30W3Z.png and b/public/images/devices/T30W3Z.png differ diff --git a/public/images/devices/T40S6Z.png b/public/images/devices/T40S6Z.png index 6b43615095a62..d311e34a0ab82 100644 Binary files a/public/images/devices/T40S6Z.png and b/public/images/devices/T40S6Z.png differ diff --git a/public/images/devices/T40W1Z.png b/public/images/devices/T40W1Z.png index f0d26c01c4c0a..b3f988ed9ce97 100644 Binary files a/public/images/devices/T40W1Z.png and b/public/images/devices/T40W1Z.png differ diff --git a/public/images/devices/T40W2Z.png b/public/images/devices/T40W2Z.png index 2c570125901a9..f3be7c5fccfe0 100644 Binary files a/public/images/devices/T40W2Z.png and b/public/images/devices/T40W2Z.png differ diff --git a/public/images/devices/T40W3Z.png b/public/images/devices/T40W3Z.png index 0ad5f17a2c297..e04eca8ce5fed 100644 Binary files a/public/images/devices/T40W3Z.png and b/public/images/devices/T40W3Z.png differ diff --git a/public/images/devices/T40W4Z.png b/public/images/devices/T40W4Z.png index f4abee88b4d64..c067ebe2fbf9c 100644 Binary files a/public/images/devices/T40W4Z.png and b/public/images/devices/T40W4Z.png differ diff --git a/public/images/devices/T41W1Z.png b/public/images/devices/T41W1Z.png index e5650a57679de..b3d2805ddf754 100644 Binary files a/public/images/devices/T41W1Z.png and b/public/images/devices/T41W1Z.png differ diff --git a/public/images/devices/T41W2Z.png b/public/images/devices/T41W2Z.png index 07dba344127b5..9197073ce62df 100644 Binary files a/public/images/devices/T41W2Z.png and b/public/images/devices/T41W2Z.png differ diff --git a/public/images/devices/T41W3Z.png b/public/images/devices/T41W3Z.png index ad7863047c77f..d2c415238297d 100644 Binary files a/public/images/devices/T41W3Z.png and b/public/images/devices/T41W3Z.png differ diff --git a/public/images/devices/TAC7361C.png b/public/images/devices/TAC7361C.png index 10d6bd779383b..62b684e9e4a84 100644 Binary files a/public/images/devices/TAC7361C.png and b/public/images/devices/TAC7361C.png differ diff --git a/public/images/devices/TAFFETAS2.png b/public/images/devices/TAFFETAS2.png index 29e2df0251569..1b40aaa803352 100644 Binary files a/public/images/devices/TAFFETAS2.png and b/public/images/devices/TAFFETAS2.png differ diff --git a/public/images/devices/TB25.png b/public/images/devices/TB25.png index f32c8417e60d9..ac55f0e944430 100644 Binary files a/public/images/devices/TB25.png and b/public/images/devices/TB25.png differ diff --git a/public/images/devices/TB26-4.png b/public/images/devices/TB26-4.png index b24dc2788bcbc..410e6560804f5 100644 Binary files a/public/images/devices/TB26-4.png and b/public/images/devices/TB26-4.png differ diff --git a/public/images/devices/TB26-6.png b/public/images/devices/TB26-6.png index 38f32471ef4a3..74da98c58786f 100644 Binary files a/public/images/devices/TB26-6.png and b/public/images/devices/TB26-6.png differ diff --git a/public/images/devices/TERNCY-DC01.png b/public/images/devices/TERNCY-DC01.png index 54f7c943910bd..620a7ea2b9a2b 100644 Binary files a/public/images/devices/TERNCY-DC01.png and b/public/images/devices/TERNCY-DC01.png differ diff --git a/public/images/devices/TERNCY-LS01.png b/public/images/devices/TERNCY-LS01.png index 4c1e96dcbb967..635d67fbb0f40 100644 Binary files a/public/images/devices/TERNCY-LS01.png and b/public/images/devices/TERNCY-LS01.png differ diff --git a/public/images/devices/TERNCY-PP01.png b/public/images/devices/TERNCY-PP01.png index 1ce198e35e64e..ab771f68ca5af 100644 Binary files a/public/images/devices/TERNCY-PP01.png and b/public/images/devices/TERNCY-PP01.png differ diff --git a/public/images/devices/TERNCY-SD01.png b/public/images/devices/TERNCY-SD01.png index 24531f1542637..9761b2a9f3117 100644 Binary files a/public/images/devices/TERNCY-SD01.png and b/public/images/devices/TERNCY-SD01.png differ diff --git a/public/images/devices/TH-T_V14.png b/public/images/devices/TH-T_V14.png index cdf39208f24f4..d9282b8c158fc 100644 Binary files a/public/images/devices/TH-T_V14.png and b/public/images/devices/TH-T_V14.png differ diff --git a/public/images/devices/TH008L10RGBCCT.png b/public/images/devices/TH008L10RGBCCT.png index b69e67c88400d..923c504014ca2 100644 Binary files a/public/images/devices/TH008L10RGBCCT.png and b/public/images/devices/TH008L10RGBCCT.png differ diff --git a/public/images/devices/TH01Z.png b/public/images/devices/TH01Z.png index 9d67fe6ef38ae..25fc1448f37eb 100644 Binary files a/public/images/devices/TH01Z.png and b/public/images/devices/TH01Z.png differ diff --git a/public/images/devices/TH02Z.png b/public/images/devices/TH02Z.png index 9ea1f737d6b8a..a01dea64ab725 100644 Binary files a/public/images/devices/TH02Z.png and b/public/images/devices/TH02Z.png differ diff --git a/public/images/devices/TH05Z.png b/public/images/devices/TH05Z.png index 1ee14471de170..086717fad6773 100644 Binary files a/public/images/devices/TH05Z.png and b/public/images/devices/TH05Z.png differ diff --git a/public/images/devices/TH1123ZB.png b/public/images/devices/TH1123ZB.png index 09a511964b1ec..a4e4d6ce1fa4d 100644 Binary files a/public/images/devices/TH1123ZB.png and b/public/images/devices/TH1123ZB.png differ diff --git a/public/images/devices/TH1124ZB-G2.png b/public/images/devices/TH1124ZB-G2.png index 248333495ec37..12721c10b7a1a 100644 Binary files a/public/images/devices/TH1124ZB-G2.png and b/public/images/devices/TH1124ZB-G2.png differ diff --git a/public/images/devices/TH1124ZB.png b/public/images/devices/TH1124ZB.png index 8fc1f12de7b2d..e847b8712b080 100644 Binary files a/public/images/devices/TH1124ZB.png and b/public/images/devices/TH1124ZB.png differ diff --git a/public/images/devices/TH1300ZB.png b/public/images/devices/TH1300ZB.png index 6ac6ba8c6b37e..717d5e119667b 100644 Binary files a/public/images/devices/TH1300ZB.png and b/public/images/devices/TH1300ZB.png differ diff --git a/public/images/devices/TH1320ZB-04.png b/public/images/devices/TH1320ZB-04.png index caeefb23f3aa9..a996a80985732 100644 Binary files a/public/images/devices/TH1320ZB-04.png and b/public/images/devices/TH1320ZB-04.png differ diff --git a/public/images/devices/TH1400ZB.png b/public/images/devices/TH1400ZB.png index 122681db7143b..578e94ac5b7fb 100644 Binary files a/public/images/devices/TH1400ZB.png and b/public/images/devices/TH1400ZB.png differ diff --git a/public/images/devices/TH1500ZB.png b/public/images/devices/TH1500ZB.png index 2d6f6b95eebeb..9dd0d4cb44a00 100644 Binary files a/public/images/devices/TH1500ZB.png and b/public/images/devices/TH1500ZB.png differ diff --git a/public/images/devices/THS317-ET.png b/public/images/devices/THS317-ET.png index 335141ba5e24c..5f4e76e1a6798 100644 Binary files a/public/images/devices/THS317-ET.png and b/public/images/devices/THS317-ET.png differ diff --git a/public/images/devices/THS317.png b/public/images/devices/THS317.png index da77da4ce5db9..887209258bf38 100644 Binary files a/public/images/devices/THS317.png and b/public/images/devices/THS317.png differ diff --git a/public/images/devices/TI0001-cover.png b/public/images/devices/TI0001-cover.png index 782140edc287f..04ebfec8a86be 100644 Binary files a/public/images/devices/TI0001-cover.png and b/public/images/devices/TI0001-cover.png differ diff --git a/public/images/devices/TI0001-curtain-switch.png b/public/images/devices/TI0001-curtain-switch.png index 95b160aeabf8f..7ca3f4f1806a9 100644 Binary files a/public/images/devices/TI0001-curtain-switch.png and b/public/images/devices/TI0001-curtain-switch.png differ diff --git a/public/images/devices/TI0001-dimmer.png b/public/images/devices/TI0001-dimmer.png index efbe78f1f33a5..0564c1057c919 100644 Binary files a/public/images/devices/TI0001-dimmer.png and b/public/images/devices/TI0001-dimmer.png differ diff --git a/public/images/devices/TI0001-socket.png b/public/images/devices/TI0001-socket.png index 5defd617a609b..e92dfb27e4f93 100644 Binary files a/public/images/devices/TI0001-socket.png and b/public/images/devices/TI0001-socket.png differ diff --git a/public/images/devices/TI0001-switch-2gang.png b/public/images/devices/TI0001-switch-2gang.png index 0aa433f6041a5..3af2b82dd9c22 100644 Binary files a/public/images/devices/TI0001-switch-2gang.png and b/public/images/devices/TI0001-switch-2gang.png differ diff --git a/public/images/devices/TI0001-switch.png b/public/images/devices/TI0001-switch.png index d30746b114d99..a9d46d8702377 100644 Binary files a/public/images/devices/TI0001-switch.png and b/public/images/devices/TI0001-switch.png differ diff --git a/public/images/devices/TI0001.png b/public/images/devices/TI0001.png index 81d1ea9101581..c1f67372d32d0 100644 Binary files a/public/images/devices/TI0001.png and b/public/images/devices/TI0001.png differ diff --git a/public/images/devices/TM-YKQ004.png b/public/images/devices/TM-YKQ004.png index e9f90413496f1..0013032d945ad 100644 Binary files a/public/images/devices/TM-YKQ004.png and b/public/images/devices/TM-YKQ004.png differ diff --git a/public/images/devices/TM001-ZA-TM081.png b/public/images/devices/TM001-ZA-TM081.png index 21b610caa66b8..42c7106835ff5 100644 Binary files a/public/images/devices/TM001-ZA-TM081.png and b/public/images/devices/TM001-ZA-TM081.png differ diff --git a/public/images/devices/TM001-ZA_TM081.png b/public/images/devices/TM001-ZA_TM081.png index ce958d2ff7fd5..bc95051c281a7 100644 Binary files a/public/images/devices/TM001-ZA_TM081.png and b/public/images/devices/TM001-ZA_TM081.png differ diff --git a/public/images/devices/TO-Q-SY1-JZT.png b/public/images/devices/TO-Q-SY1-JZT.png index 096f18941b78e..775d4539a09a1 100644 Binary files a/public/images/devices/TO-Q-SY1-JZT.png and b/public/images/devices/TO-Q-SY1-JZT.png differ diff --git a/public/images/devices/TO-Q-SY1-ZT.png b/public/images/devices/TO-Q-SY1-ZT.png index 096f18941b78e..775d4539a09a1 100644 Binary files a/public/images/devices/TO-Q-SY1-ZT.png and b/public/images/devices/TO-Q-SY1-ZT.png differ diff --git a/public/images/devices/TO-Q-SY2-163JZT.png b/public/images/devices/TO-Q-SY2-163JZT.png index f7f30d7ef8cb0..bd6f027b4e1c7 100644 Binary files a/public/images/devices/TO-Q-SY2-163JZT.png and b/public/images/devices/TO-Q-SY2-163JZT.png differ diff --git a/public/images/devices/TPZRCO2HT-Z3.png b/public/images/devices/TPZRCO2HT-Z3.png index a5e7b7d23aa22..b68456b0fa0d9 100644 Binary files a/public/images/devices/TPZRCO2HT-Z3.png and b/public/images/devices/TPZRCO2HT-Z3.png differ diff --git a/public/images/devices/TS0001.png b/public/images/devices/TS0001.png index 82854cb37d9dc..3b3a1d6566e41 100644 Binary files a/public/images/devices/TS0001.png and b/public/images/devices/TS0001.png differ diff --git a/public/images/devices/TS0001_1.png b/public/images/devices/TS0001_1.png index b919d4d489f0b..3adcc9b43f7f1 100644 Binary files a/public/images/devices/TS0001_1.png and b/public/images/devices/TS0001_1.png differ diff --git a/public/images/devices/TS0001_fingerbot_1.png b/public/images/devices/TS0001_fingerbot_1.png index 5bee899801d4a..6663990a8a578 100644 Binary files a/public/images/devices/TS0001_fingerbot_1.png and b/public/images/devices/TS0001_fingerbot_1.png differ diff --git a/public/images/devices/TS0001_power.png b/public/images/devices/TS0001_power.png index 82854cb37d9dc..3b3a1d6566e41 100644 Binary files a/public/images/devices/TS0001_power.png and b/public/images/devices/TS0001_power.png differ diff --git a/public/images/devices/TS0001_switch_1_gang.png b/public/images/devices/TS0001_switch_1_gang.png index 424ca6ddf34d6..c4d9272582a88 100644 Binary files a/public/images/devices/TS0001_switch_1_gang.png and b/public/images/devices/TS0001_switch_1_gang.png differ diff --git a/public/images/devices/TS0001_switch_module.png b/public/images/devices/TS0001_switch_module.png index 774c48d76b084..8476019a9701e 100644 Binary files a/public/images/devices/TS0001_switch_module.png and b/public/images/devices/TS0001_switch_module.png differ diff --git a/public/images/devices/TS0002.png b/public/images/devices/TS0002.png index 07d7f1b246252..ac608f9acd41b 100644 Binary files a/public/images/devices/TS0002.png and b/public/images/devices/TS0002.png differ diff --git a/public/images/devices/TS0002_power.png b/public/images/devices/TS0002_power.png index 07d7f1b246252..ac608f9acd41b 100644 Binary files a/public/images/devices/TS0002_power.png and b/public/images/devices/TS0002_power.png differ diff --git a/public/images/devices/TS0002_switch_2_gang.png b/public/images/devices/TS0002_switch_2_gang.png index 14ed48048479c..da1f040609929 100644 Binary files a/public/images/devices/TS0002_switch_2_gang.png and b/public/images/devices/TS0002_switch_2_gang.png differ diff --git a/public/images/devices/TS0002_switch_module.png b/public/images/devices/TS0002_switch_module.png index 6da2b4d601439..67dac8932ec6d 100644 Binary files a/public/images/devices/TS0002_switch_module.png and b/public/images/devices/TS0002_switch_module.png differ diff --git a/public/images/devices/TS0002_switch_module_2.png b/public/images/devices/TS0002_switch_module_2.png index 6da2b4d601439..67dac8932ec6d 100644 Binary files a/public/images/devices/TS0002_switch_module_2.png and b/public/images/devices/TS0002_switch_module_2.png differ diff --git a/public/images/devices/TS0002_switch_module_3.png b/public/images/devices/TS0002_switch_module_3.png index 31b10f6de9ffa..3994eb83c5cc0 100644 Binary files a/public/images/devices/TS0002_switch_module_3.png and b/public/images/devices/TS0002_switch_module_3.png differ diff --git a/public/images/devices/TS0003.png b/public/images/devices/TS0003.png index 77a2ef92a6ba0..9cc2777591eb7 100644 Binary files a/public/images/devices/TS0003.png and b/public/images/devices/TS0003.png differ diff --git a/public/images/devices/TS0003_switch_3_gang.png b/public/images/devices/TS0003_switch_3_gang.png index 279eb4581b24a..e601d916bd436 100644 Binary files a/public/images/devices/TS0003_switch_3_gang.png and b/public/images/devices/TS0003_switch_3_gang.png differ diff --git a/public/images/devices/TS0003_switch_module_1.png b/public/images/devices/TS0003_switch_module_1.png index 4c17cc1dbdc54..890b61937af15 100644 Binary files a/public/images/devices/TS0003_switch_module_1.png and b/public/images/devices/TS0003_switch_module_1.png differ diff --git a/public/images/devices/TS0004.png b/public/images/devices/TS0004.png index 912ad303a233a..6f15b96ae2ea8 100644 Binary files a/public/images/devices/TS0004.png and b/public/images/devices/TS0004.png differ diff --git a/public/images/devices/TS0004_1.png b/public/images/devices/TS0004_1.png index 912ad303a233a..6f15b96ae2ea8 100644 Binary files a/public/images/devices/TS0004_1.png and b/public/images/devices/TS0004_1.png differ diff --git a/public/images/devices/TS0004_switch_module.png b/public/images/devices/TS0004_switch_module.png index 9c9c78f0c8895..528c2ae074bbd 100644 Binary files a/public/images/devices/TS0004_switch_module.png and b/public/images/devices/TS0004_switch_module.png differ diff --git a/public/images/devices/TS0004_switch_module_2.png b/public/images/devices/TS0004_switch_module_2.png index 110a993c59812..341c0cafe0106 100644 Binary files a/public/images/devices/TS0004_switch_module_2.png and b/public/images/devices/TS0004_switch_module_2.png differ diff --git a/public/images/devices/TS0006.png b/public/images/devices/TS0006.png index 849c004edbbba..d8b0927a6f871 100644 Binary files a/public/images/devices/TS0006.png and b/public/images/devices/TS0006.png differ diff --git a/public/images/devices/TS0006_1.png b/public/images/devices/TS0006_1.png index 849c004edbbba..d8b0927a6f871 100644 Binary files a/public/images/devices/TS0006_1.png and b/public/images/devices/TS0006_1.png differ diff --git a/public/images/devices/TS000F_power.png b/public/images/devices/TS000F_power.png index f2fa76061cd2e..61155bfd21f18 100644 Binary files a/public/images/devices/TS000F_power.png and b/public/images/devices/TS000F_power.png differ diff --git a/public/images/devices/TS0011.png b/public/images/devices/TS0011.png index 349669ec5a13b..c0263be9b33fc 100644 Binary files a/public/images/devices/TS0011.png and b/public/images/devices/TS0011.png differ diff --git a/public/images/devices/TS0011_switch_module.png b/public/images/devices/TS0011_switch_module.png index 62f4f1b5e8078..fdfb83d4a23cf 100644 Binary files a/public/images/devices/TS0011_switch_module.png and b/public/images/devices/TS0011_switch_module.png differ diff --git a/public/images/devices/TS0012.png b/public/images/devices/TS0012.png index 885c48f941367..1c71cae67af60 100644 Binary files a/public/images/devices/TS0012.png and b/public/images/devices/TS0012.png differ diff --git a/public/images/devices/TS0012_switch_module.png b/public/images/devices/TS0012_switch_module.png index 2c32c637196b8..db1fb242be5ba 100644 Binary files a/public/images/devices/TS0012_switch_module.png and b/public/images/devices/TS0012_switch_module.png differ diff --git a/public/images/devices/TS0013.png b/public/images/devices/TS0013.png index 7b6c71547cbc2..49022226efee4 100644 Binary files a/public/images/devices/TS0013.png and b/public/images/devices/TS0013.png differ diff --git a/public/images/devices/TS0013_switch_module.png b/public/images/devices/TS0013_switch_module.png index 0cad3ebbb66ec..79afde3371544 100644 Binary files a/public/images/devices/TS0013_switch_module.png and b/public/images/devices/TS0013_switch_module.png differ diff --git a/public/images/devices/TS0014.png b/public/images/devices/TS0014.png index d31b356f06d32..e385179a9b532 100644 Binary files a/public/images/devices/TS0014.png and b/public/images/devices/TS0014.png differ diff --git a/public/images/devices/TS0041.png b/public/images/devices/TS0041.png index e30c794cc5b5c..ed98a21518774 100644 Binary files a/public/images/devices/TS0041.png and b/public/images/devices/TS0041.png differ diff --git a/public/images/devices/TS0042.png b/public/images/devices/TS0042.png index 74becffccae34..db4f611eb623e 100644 Binary files a/public/images/devices/TS0042.png and b/public/images/devices/TS0042.png differ diff --git a/public/images/devices/TS0043.png b/public/images/devices/TS0043.png index c21d657977ce5..efc6059288a06 100644 Binary files a/public/images/devices/TS0043.png and b/public/images/devices/TS0043.png differ diff --git a/public/images/devices/TS0044_1.png b/public/images/devices/TS0044_1.png index 86535a2e33574..04eb7c0ec7cc2 100644 Binary files a/public/images/devices/TS0044_1.png and b/public/images/devices/TS0044_1.png differ diff --git a/public/images/devices/TS004F.png b/public/images/devices/TS004F.png index 6ae8a66be0bfd..1249c608494da 100644 Binary files a/public/images/devices/TS004F.png and b/public/images/devices/TS004F.png differ diff --git a/public/images/devices/TS004F_6_button.png b/public/images/devices/TS004F_6_button.png index 30dfa0d03675e..d98c6dc82f3a7 100644 Binary files a/public/images/devices/TS004F_6_button.png and b/public/images/devices/TS004F_6_button.png differ diff --git a/public/images/devices/TS0101.png b/public/images/devices/TS0101.png index d7cad60fae307..6ad8bb9248275 100644 Binary files a/public/images/devices/TS0101.png and b/public/images/devices/TS0101.png differ diff --git a/public/images/devices/TS0108.png b/public/images/devices/TS0108.png index db1acd3822cdb..8ed1e2dcd412d 100644 Binary files a/public/images/devices/TS0108.png and b/public/images/devices/TS0108.png differ diff --git a/public/images/devices/TS0111.png b/public/images/devices/TS0111.png index a05ae54e81967..632a320b61fde 100644 Binary files a/public/images/devices/TS0111.png and b/public/images/devices/TS0111.png differ diff --git a/public/images/devices/TS0111_valve.png b/public/images/devices/TS0111_valve.png index 3d0b4e6dbf23f..52c862e6f2b82 100644 Binary files a/public/images/devices/TS0111_valve.png and b/public/images/devices/TS0111_valve.png differ diff --git a/public/images/devices/TS0115.png b/public/images/devices/TS0115.png index ae64a3a3dcd5c..d6d567accc64c 100644 Binary files a/public/images/devices/TS0115.png and b/public/images/devices/TS0115.png differ diff --git a/public/images/devices/TS011F_1.png b/public/images/devices/TS011F_1.png index 77a2ef92a6ba0..9cc2777591eb7 100644 Binary files a/public/images/devices/TS011F_1.png and b/public/images/devices/TS011F_1.png differ diff --git a/public/images/devices/TS011F_2_gang_2_usb_wall.png b/public/images/devices/TS011F_2_gang_2_usb_wall.png index a3615a3ae0d71..23e8ed0530ed7 100644 Binary files a/public/images/devices/TS011F_2_gang_2_usb_wall.png and b/public/images/devices/TS011F_2_gang_2_usb_wall.png differ diff --git a/public/images/devices/TS011F_2_gang_wall.png b/public/images/devices/TS011F_2_gang_wall.png index fc9d82a8c03cb..9e398175ce345 100644 Binary files a/public/images/devices/TS011F_2_gang_wall.png and b/public/images/devices/TS011F_2_gang_wall.png differ diff --git a/public/images/devices/TS011F_4.png b/public/images/devices/TS011F_4.png index a62fec1467e7d..2495d4e44b030 100644 Binary files a/public/images/devices/TS011F_4.png and b/public/images/devices/TS011F_4.png differ diff --git a/public/images/devices/TS011F_5.png b/public/images/devices/TS011F_5.png index 77a2ef92a6ba0..9cc2777591eb7 100644 Binary files a/public/images/devices/TS011F_5.png and b/public/images/devices/TS011F_5.png differ diff --git a/public/images/devices/TS011F_circuit_breaker.png b/public/images/devices/TS011F_circuit_breaker.png index 3e8fcad913264..ad78474a4bbdd 100644 Binary files a/public/images/devices/TS011F_circuit_breaker.png and b/public/images/devices/TS011F_circuit_breaker.png differ diff --git a/public/images/devices/TS011F_din_smart_relay.png b/public/images/devices/TS011F_din_smart_relay.png index e945592121aa9..f85defcdf41b2 100644 Binary files a/public/images/devices/TS011F_din_smart_relay.png and b/public/images/devices/TS011F_din_smart_relay.png differ diff --git a/public/images/devices/TS011F_din_smart_relay_polling.png b/public/images/devices/TS011F_din_smart_relay_polling.png index e945592121aa9..f85defcdf41b2 100644 Binary files a/public/images/devices/TS011F_din_smart_relay_polling.png and b/public/images/devices/TS011F_din_smart_relay_polling.png differ diff --git a/public/images/devices/TS011F_plug.png b/public/images/devices/TS011F_plug.png index 6ff0480cd7c17..b8098944e219a 100644 Binary files a/public/images/devices/TS011F_plug.png and b/public/images/devices/TS011F_plug.png differ diff --git a/public/images/devices/TS011F_plug_1.png b/public/images/devices/TS011F_plug_1.png index 6ff0480cd7c17..b8098944e219a 100644 Binary files a/public/images/devices/TS011F_plug_1.png and b/public/images/devices/TS011F_plug_1.png differ diff --git a/public/images/devices/TS011F_plug_2.png b/public/images/devices/TS011F_plug_2.png index 6ff0480cd7c17..b8098944e219a 100644 Binary files a/public/images/devices/TS011F_plug_2.png and b/public/images/devices/TS011F_plug_2.png differ diff --git a/public/images/devices/TS011F_plug_3.png b/public/images/devices/TS011F_plug_3.png index 6ff0480cd7c17..b8098944e219a 100644 Binary files a/public/images/devices/TS011F_plug_3.png and b/public/images/devices/TS011F_plug_3.png differ diff --git a/public/images/devices/TS011F_relay_switch.png b/public/images/devices/TS011F_relay_switch.png index bc297006be97d..723305126fea3 100644 Binary files a/public/images/devices/TS011F_relay_switch.png and b/public/images/devices/TS011F_relay_switch.png differ diff --git a/public/images/devices/TS011F_socket_module.png b/public/images/devices/TS011F_socket_module.png index 758d92ca709f9..b545d4dcf6f3d 100644 Binary files a/public/images/devices/TS011F_socket_module.png and b/public/images/devices/TS011F_socket_module.png differ diff --git a/public/images/devices/TS011F_switch_5_gang.png b/public/images/devices/TS011F_switch_5_gang.png index 0b2a72ef0d258..614b192995771 100644 Binary files a/public/images/devices/TS011F_switch_5_gang.png and b/public/images/devices/TS011F_switch_5_gang.png differ diff --git a/public/images/devices/TS011F_wall_outlet.png b/public/images/devices/TS011F_wall_outlet.png index 907950a270a5f..e18f9c8a3ab01 100644 Binary files a/public/images/devices/TS011F_wall_outlet.png and b/public/images/devices/TS011F_wall_outlet.png differ diff --git a/public/images/devices/TS0121_plug.png b/public/images/devices/TS0121_plug.png index 6284c21938794..df2f1aac54d3d 100644 Binary files a/public/images/devices/TS0121_plug.png and b/public/images/devices/TS0121_plug.png differ diff --git a/public/images/devices/TS0201.png b/public/images/devices/TS0201.png index 357b6188061b1..f94ec5802c8b4 100644 Binary files a/public/images/devices/TS0201.png and b/public/images/devices/TS0201.png differ diff --git a/public/images/devices/TS0202.png b/public/images/devices/TS0202.png index 5a760a8984164..d7ab80ea84033 100644 Binary files a/public/images/devices/TS0202.png and b/public/images/devices/TS0202.png differ diff --git a/public/images/devices/TS0202_1.png b/public/images/devices/TS0202_1.png index 5a760a8984164..d7ab80ea84033 100644 Binary files a/public/images/devices/TS0202_1.png and b/public/images/devices/TS0202_1.png differ diff --git a/public/images/devices/TS0202_2.png b/public/images/devices/TS0202_2.png index 2c3a48bc54922..db192a6eca0ea 100644 Binary files a/public/images/devices/TS0202_2.png and b/public/images/devices/TS0202_2.png differ diff --git a/public/images/devices/TS0204.png b/public/images/devices/TS0204.png index 4784b5c1e35f4..996b30ebee72b 100644 Binary files a/public/images/devices/TS0204.png and b/public/images/devices/TS0204.png differ diff --git a/public/images/devices/TS0205.png b/public/images/devices/TS0205.png index 8f0137dc425f2..b1a03195ca0c4 100644 Binary files a/public/images/devices/TS0205.png and b/public/images/devices/TS0205.png differ diff --git a/public/images/devices/TS0207_repeater.png b/public/images/devices/TS0207_repeater.png index 5ca098ce7e50c..3ec7f2ca35123 100644 Binary files a/public/images/devices/TS0207_repeater.png and b/public/images/devices/TS0207_repeater.png differ diff --git a/public/images/devices/TS0207_water_leak_detector.png b/public/images/devices/TS0207_water_leak_detector.png index 88d1e4a5669ef..b4edb67475b30 100644 Binary files a/public/images/devices/TS0207_water_leak_detector.png and b/public/images/devices/TS0207_water_leak_detector.png differ diff --git a/public/images/devices/TS0207_water_leak_detector_1.png b/public/images/devices/TS0207_water_leak_detector_1.png index 284352d74b861..5b1748b38ccc2 100644 Binary files a/public/images/devices/TS0207_water_leak_detector_1.png and b/public/images/devices/TS0207_water_leak_detector_1.png differ diff --git a/public/images/devices/TS0207_water_leak_detector_2.png b/public/images/devices/TS0207_water_leak_detector_2.png index 2f4f715ae4c00..f6df6cb03ef47 100644 Binary files a/public/images/devices/TS0207_water_leak_detector_2.png and b/public/images/devices/TS0207_water_leak_detector_2.png differ diff --git a/public/images/devices/TS0207_water_leak_detector_3.png b/public/images/devices/TS0207_water_leak_detector_3.png index fe2b8e4feea59..6d76be169af53 100644 Binary files a/public/images/devices/TS0207_water_leak_detector_3.png and b/public/images/devices/TS0207_water_leak_detector_3.png differ diff --git a/public/images/devices/TS0210.png b/public/images/devices/TS0210.png index 2df7bd9f08e40..f32b98daa3acc 100644 Binary files a/public/images/devices/TS0210.png and b/public/images/devices/TS0210.png differ diff --git a/public/images/devices/TS0215A_remote.png b/public/images/devices/TS0215A_remote.png index 8c9d150dd28e2..188c1c0ea8b51 100644 Binary files a/public/images/devices/TS0215A_remote.png and b/public/images/devices/TS0215A_remote.png differ diff --git a/public/images/devices/TS0215A_sos.png b/public/images/devices/TS0215A_sos.png index 6e4fc6f148253..bc6511eff66c1 100644 Binary files a/public/images/devices/TS0215A_sos.png and b/public/images/devices/TS0215A_sos.png differ diff --git a/public/images/devices/TS0216.png b/public/images/devices/TS0216.png index e00450bb5f26f..88867dc723916 100644 Binary files a/public/images/devices/TS0216.png and b/public/images/devices/TS0216.png differ diff --git a/public/images/devices/TS0218.png b/public/images/devices/TS0218.png index db9314ca507bb..5f76854da7a63 100644 Binary files a/public/images/devices/TS0218.png and b/public/images/devices/TS0218.png differ diff --git a/public/images/devices/TS0222.png b/public/images/devices/TS0222.png index eab112442cea3..a79d36062a0f6 100644 Binary files a/public/images/devices/TS0222.png and b/public/images/devices/TS0222.png differ diff --git a/public/images/devices/TS0222_temperature_humidity.png b/public/images/devices/TS0222_temperature_humidity.png index 6497f2c470a8a..e285a1658f2e3 100644 Binary files a/public/images/devices/TS0222_temperature_humidity.png and b/public/images/devices/TS0222_temperature_humidity.png differ diff --git a/public/images/devices/TS0225.png b/public/images/devices/TS0225.png index ef2cd69156459..ec3062d01bbc3 100644 Binary files a/public/images/devices/TS0225.png and b/public/images/devices/TS0225.png differ diff --git a/public/images/devices/TS0501A.png b/public/images/devices/TS0501A.png index 76acd00c623af..d8a9b56ed9250 100644 Binary files a/public/images/devices/TS0501A.png and b/public/images/devices/TS0501A.png differ diff --git a/public/images/devices/TS0501B.png b/public/images/devices/TS0501B.png index 9de2eb901c728..73b13b6f7c1fe 100644 Binary files a/public/images/devices/TS0501B.png and b/public/images/devices/TS0501B.png differ diff --git a/public/images/devices/TS0502A.png b/public/images/devices/TS0502A.png index 22f21d4df4687..27d0bc74c9781 100644 Binary files a/public/images/devices/TS0502A.png and b/public/images/devices/TS0502A.png differ diff --git a/public/images/devices/TS0502B.png b/public/images/devices/TS0502B.png index 9de2eb901c728..73b13b6f7c1fe 100644 Binary files a/public/images/devices/TS0502B.png and b/public/images/devices/TS0502B.png differ diff --git a/public/images/devices/TS0503A.png b/public/images/devices/TS0503A.png index 572b756502b40..db5c7d250d491 100644 Binary files a/public/images/devices/TS0503A.png and b/public/images/devices/TS0503A.png differ diff --git a/public/images/devices/TS0503B.png b/public/images/devices/TS0503B.png index 9de2eb901c728..73b13b6f7c1fe 100644 Binary files a/public/images/devices/TS0503B.png and b/public/images/devices/TS0503B.png differ diff --git a/public/images/devices/TS0504A.png b/public/images/devices/TS0504A.png index 572b756502b40..db5c7d250d491 100644 Binary files a/public/images/devices/TS0504A.png and b/public/images/devices/TS0504A.png differ diff --git a/public/images/devices/TS0504B.png b/public/images/devices/TS0504B.png index 9de2eb901c728..73b13b6f7c1fe 100644 Binary files a/public/images/devices/TS0504B.png and b/public/images/devices/TS0504B.png differ diff --git a/public/images/devices/TS0505A.png b/public/images/devices/TS0505A.png index da81cf19970b1..f67d2aa003e9f 100644 Binary files a/public/images/devices/TS0505A.png and b/public/images/devices/TS0505A.png differ diff --git a/public/images/devices/TS0505A_led.png b/public/images/devices/TS0505A_led.png index de4d81df708da..b26b89c2e9e23 100644 Binary files a/public/images/devices/TS0505A_led.png and b/public/images/devices/TS0505A_led.png differ diff --git a/public/images/devices/TS0505B_1.png b/public/images/devices/TS0505B_1.png index 5926d2f69f902..a650dd8b42d27 100644 Binary files a/public/images/devices/TS0505B_1.png and b/public/images/devices/TS0505B_1.png differ diff --git a/public/images/devices/TS0505B_1_1.png b/public/images/devices/TS0505B_1_1.png index 32c1de82007d2..9bf92f376579f 100644 Binary files a/public/images/devices/TS0505B_1_1.png and b/public/images/devices/TS0505B_1_1.png differ diff --git a/public/images/devices/TS0505B_1_3.png b/public/images/devices/TS0505B_1_3.png index cd512f855f917..368607d8204a1 100644 Binary files a/public/images/devices/TS0505B_1_3.png and b/public/images/devices/TS0505B_1_3.png differ diff --git a/public/images/devices/TS0505B_2.png b/public/images/devices/TS0505B_2.png index 5926d2f69f902..a650dd8b42d27 100644 Binary files a/public/images/devices/TS0505B_2.png and b/public/images/devices/TS0505B_2.png differ diff --git a/public/images/devices/TS0505B_2_1.png b/public/images/devices/TS0505B_2_1.png index 32c1de82007d2..9bf92f376579f 100644 Binary files a/public/images/devices/TS0505B_2_1.png and b/public/images/devices/TS0505B_2_1.png differ diff --git a/public/images/devices/TS0505B_2_2.png b/public/images/devices/TS0505B_2_2.png index d622aa426b433..fe9b0138e6ae1 100644 Binary files a/public/images/devices/TS0505B_2_2.png and b/public/images/devices/TS0505B_2_2.png differ diff --git a/public/images/devices/TS0601-dimmer.png b/public/images/devices/TS0601-dimmer.png index 8a559019aeae1..f1cb2a130e91d 100644 Binary files a/public/images/devices/TS0601-dimmer.png and b/public/images/devices/TS0601-dimmer.png differ diff --git a/public/images/devices/TS0601_3_phase_clamp_meter.png b/public/images/devices/TS0601_3_phase_clamp_meter.png index 7f90355340193..34f1adf1d7542 100644 Binary files a/public/images/devices/TS0601_3_phase_clamp_meter.png and b/public/images/devices/TS0601_3_phase_clamp_meter.png differ diff --git a/public/images/devices/TS0601_air_quality_sensor.png b/public/images/devices/TS0601_air_quality_sensor.png index e9e914b28de3d..01bb017096731 100644 Binary files a/public/images/devices/TS0601_air_quality_sensor.png and b/public/images/devices/TS0601_air_quality_sensor.png differ diff --git a/public/images/devices/TS0601_bidirectional_energy-meter.png b/public/images/devices/TS0601_bidirectional_energy-meter.png index ec322a1a475d9..005126b981a61 100644 Binary files a/public/images/devices/TS0601_bidirectional_energy-meter.png and b/public/images/devices/TS0601_bidirectional_energy-meter.png differ diff --git a/public/images/devices/TS0601_clamp_meter.png b/public/images/devices/TS0601_clamp_meter.png index 63b511ea7171d..598745be50ea4 100644 Binary files a/public/images/devices/TS0601_clamp_meter.png and b/public/images/devices/TS0601_clamp_meter.png differ diff --git a/public/images/devices/TS0601_co2_sensor.png b/public/images/devices/TS0601_co2_sensor.png index 5396eb577941e..9cfe39432dc9d 100644 Binary files a/public/images/devices/TS0601_co2_sensor.png and b/public/images/devices/TS0601_co2_sensor.png differ diff --git a/public/images/devices/TS0601_cover_1.png b/public/images/devices/TS0601_cover_1.png index dec760f9adda0..efe20c08d4c0c 100644 Binary files a/public/images/devices/TS0601_cover_1.png and b/public/images/devices/TS0601_cover_1.png differ diff --git a/public/images/devices/TS0601_cover_2.png b/public/images/devices/TS0601_cover_2.png index dec760f9adda0..efe20c08d4c0c 100644 Binary files a/public/images/devices/TS0601_cover_2.png and b/public/images/devices/TS0601_cover_2.png differ diff --git a/public/images/devices/TS0601_cover_3.png b/public/images/devices/TS0601_cover_3.png index dec760f9adda0..efe20c08d4c0c 100644 Binary files a/public/images/devices/TS0601_cover_3.png and b/public/images/devices/TS0601_cover_3.png differ diff --git a/public/images/devices/TS0601_cover_5.png b/public/images/devices/TS0601_cover_5.png index 6ff6f951bb64d..d0c48d839d701 100644 Binary files a/public/images/devices/TS0601_cover_5.png and b/public/images/devices/TS0601_cover_5.png differ diff --git a/public/images/devices/TS0601_cover_6.png b/public/images/devices/TS0601_cover_6.png index dec760f9adda0..efe20c08d4c0c 100644 Binary files a/public/images/devices/TS0601_cover_6.png and b/public/images/devices/TS0601_cover_6.png differ diff --git a/public/images/devices/TS0601_cover_with_1_switch.png b/public/images/devices/TS0601_cover_with_1_switch.png index 001584bf4c09f..80669476e0920 100644 Binary files a/public/images/devices/TS0601_cover_with_1_switch.png and b/public/images/devices/TS0601_cover_with_1_switch.png differ diff --git a/public/images/devices/TS0601_cover_with_2_switch.png b/public/images/devices/TS0601_cover_with_2_switch.png index 144e475424b06..6ad2f04c636b5 100644 Binary files a/public/images/devices/TS0601_cover_with_2_switch.png and b/public/images/devices/TS0601_cover_with_2_switch.png differ diff --git a/public/images/devices/TS0601_dimmer.png b/public/images/devices/TS0601_dimmer.png index 7e2389422e6c5..bd93d1e5dbd9b 100644 Binary files a/public/images/devices/TS0601_dimmer.png and b/public/images/devices/TS0601_dimmer.png differ diff --git a/public/images/devices/TS0601_dimmer_1.png b/public/images/devices/TS0601_dimmer_1.png index 7e2389422e6c5..bd93d1e5dbd9b 100644 Binary files a/public/images/devices/TS0601_dimmer_1.png and b/public/images/devices/TS0601_dimmer_1.png differ diff --git a/public/images/devices/TS0601_dimmer_2.png b/public/images/devices/TS0601_dimmer_2.png index f21b2fcb91e07..ec7b9a41a66af 100644 Binary files a/public/images/devices/TS0601_dimmer_2.png and b/public/images/devices/TS0601_dimmer_2.png differ diff --git a/public/images/devices/TS0601_dimmer_3.png b/public/images/devices/TS0601_dimmer_3.png index ba66131750da5..e9c7732d4ca7a 100644 Binary files a/public/images/devices/TS0601_dimmer_3.png and b/public/images/devices/TS0601_dimmer_3.png differ diff --git a/public/images/devices/TS0601_din.png b/public/images/devices/TS0601_din.png index acce5145bd8d4..d49fbcb1b7f51 100644 Binary files a/public/images/devices/TS0601_din.png and b/public/images/devices/TS0601_din.png differ diff --git a/public/images/devices/TS0601_din_1.png b/public/images/devices/TS0601_din_1.png index acce5145bd8d4..d49fbcb1b7f51 100644 Binary files a/public/images/devices/TS0601_din_1.png and b/public/images/devices/TS0601_din_1.png differ diff --git a/public/images/devices/TS0601_din_2.png b/public/images/devices/TS0601_din_2.png index 5001724f4982b..ed1058fb2bb48 100644 Binary files a/public/images/devices/TS0601_din_2.png and b/public/images/devices/TS0601_din_2.png differ diff --git a/public/images/devices/TS0601_gas_sensor_1.png b/public/images/devices/TS0601_gas_sensor_1.png index 8ef61c16b9701..f30b5e1feaf93 100644 Binary files a/public/images/devices/TS0601_gas_sensor_1.png and b/public/images/devices/TS0601_gas_sensor_1.png differ diff --git a/public/images/devices/TS0601_human_presence_sensor.png b/public/images/devices/TS0601_human_presence_sensor.png index 4295dad82e23e..d44abc518a348 100644 Binary files a/public/images/devices/TS0601_human_presence_sensor.png and b/public/images/devices/TS0601_human_presence_sensor.png differ diff --git a/public/images/devices/TS0601_illuminance_temperature_humidity_sensor_1.png b/public/images/devices/TS0601_illuminance_temperature_humidity_sensor_1.png index c415dbd13ac82..e7c69c7390725 100644 Binary files a/public/images/devices/TS0601_illuminance_temperature_humidity_sensor_1.png and b/public/images/devices/TS0601_illuminance_temperature_humidity_sensor_1.png differ diff --git a/public/images/devices/TS0601_light.png b/public/images/devices/TS0601_light.png index 77a2ef92a6ba0..9cc2777591eb7 100644 Binary files a/public/images/devices/TS0601_light.png and b/public/images/devices/TS0601_light.png differ diff --git a/public/images/devices/TS0601_lilistore.png b/public/images/devices/TS0601_lilistore.png index dec760f9adda0..efe20c08d4c0c 100644 Binary files a/public/images/devices/TS0601_lilistore.png and b/public/images/devices/TS0601_lilistore.png differ diff --git a/public/images/devices/TS0601_motion_sensor.png b/public/images/devices/TS0601_motion_sensor.png index 9e44783d94234..b027e0326463d 100644 Binary files a/public/images/devices/TS0601_motion_sensor.png and b/public/images/devices/TS0601_motion_sensor.png differ diff --git a/public/images/devices/TS0601_rcbo.png b/public/images/devices/TS0601_rcbo.png index cd752d7eb0f42..bb6bf54773d37 100644 Binary files a/public/images/devices/TS0601_rcbo.png and b/public/images/devices/TS0601_rcbo.png differ diff --git a/public/images/devices/TS0601_smart_CO_air_box.png b/public/images/devices/TS0601_smart_CO_air_box.png index 32a517753a5e0..d99d382e7f3ef 100644 Binary files a/public/images/devices/TS0601_smart_CO_air_box.png and b/public/images/devices/TS0601_smart_CO_air_box.png differ diff --git a/public/images/devices/TS0601_smart_air_house_keeper.png b/public/images/devices/TS0601_smart_air_house_keeper.png index 32a517753a5e0..d99d382e7f3ef 100644 Binary files a/public/images/devices/TS0601_smart_air_house_keeper.png and b/public/images/devices/TS0601_smart_air_house_keeper.png differ diff --git a/public/images/devices/TS0601_smart_human_presence_sensor.png b/public/images/devices/TS0601_smart_human_presence_sensor.png index 4295dad82e23e..d44abc518a348 100644 Binary files a/public/images/devices/TS0601_smart_human_presence_sensor.png and b/public/images/devices/TS0601_smart_human_presence_sensor.png differ diff --git a/public/images/devices/TS0601_smart_human_presence_sensor_1.png b/public/images/devices/TS0601_smart_human_presence_sensor_1.png index 87c5681ad87c9..9f1f03dcc47e0 100644 Binary files a/public/images/devices/TS0601_smart_human_presence_sensor_1.png and b/public/images/devices/TS0601_smart_human_presence_sensor_1.png differ diff --git a/public/images/devices/TS0601_smart_human_presence_sensor_2.png b/public/images/devices/TS0601_smart_human_presence_sensor_2.png index 29cedb993cad5..ca2038ba55bf0 100644 Binary files a/public/images/devices/TS0601_smart_human_presence_sensor_2.png and b/public/images/devices/TS0601_smart_human_presence_sensor_2.png differ diff --git a/public/images/devices/TS0601_smart_human_presense_sensor.png b/public/images/devices/TS0601_smart_human_presense_sensor.png index 8c16935ec0c7f..92a2b9efb55b2 100644 Binary files a/public/images/devices/TS0601_smart_human_presense_sensor.png and b/public/images/devices/TS0601_smart_human_presense_sensor.png differ diff --git a/public/images/devices/TS0601_smoke_1.png b/public/images/devices/TS0601_smoke_1.png index 5e7ba1ce8c0db..4cc07037ad2fb 100644 Binary files a/public/images/devices/TS0601_smoke_1.png and b/public/images/devices/TS0601_smoke_1.png differ diff --git a/public/images/devices/TS0601_smoke_4.png b/public/images/devices/TS0601_smoke_4.png index 0c39ba3662f2d..4f64a58738f91 100644 Binary files a/public/images/devices/TS0601_smoke_4.png and b/public/images/devices/TS0601_smoke_4.png differ diff --git a/public/images/devices/TS0601_switch.png b/public/images/devices/TS0601_switch.png index 849c004edbbba..d8b0927a6f871 100644 Binary files a/public/images/devices/TS0601_switch.png and b/public/images/devices/TS0601_switch.png differ diff --git a/public/images/devices/TS0601_switch_1_gang.png b/public/images/devices/TS0601_switch_1_gang.png index 77a2ef92a6ba0..9cc2777591eb7 100644 Binary files a/public/images/devices/TS0601_switch_1_gang.png and b/public/images/devices/TS0601_switch_1_gang.png differ diff --git a/public/images/devices/TS0601_switch_2_gang.png b/public/images/devices/TS0601_switch_2_gang.png index 79c0cf638ef26..433b5defe6029 100644 Binary files a/public/images/devices/TS0601_switch_2_gang.png and b/public/images/devices/TS0601_switch_2_gang.png differ diff --git a/public/images/devices/TS0601_switch_3_gang.png b/public/images/devices/TS0601_switch_3_gang.png index f17be020337bc..a457b6f2429db 100644 Binary files a/public/images/devices/TS0601_switch_3_gang.png and b/public/images/devices/TS0601_switch_3_gang.png differ diff --git a/public/images/devices/TS0601_switch_4_gang_1.png b/public/images/devices/TS0601_switch_4_gang_1.png index 849c004edbbba..d8b0927a6f871 100644 Binary files a/public/images/devices/TS0601_switch_4_gang_1.png and b/public/images/devices/TS0601_switch_4_gang_1.png differ diff --git a/public/images/devices/TS0601_switch_4_gang_2.png b/public/images/devices/TS0601_switch_4_gang_2.png index 875bbc3ae6600..a1eddb07c383d 100644 Binary files a/public/images/devices/TS0601_switch_4_gang_2.png and b/public/images/devices/TS0601_switch_4_gang_2.png differ diff --git a/public/images/devices/TS0601_switch_5_gang.png b/public/images/devices/TS0601_switch_5_gang.png index f506b4dcd1255..2e21a9f44da95 100644 Binary files a/public/images/devices/TS0601_switch_5_gang.png and b/public/images/devices/TS0601_switch_5_gang.png differ diff --git a/public/images/devices/TS0601_switch_8.png b/public/images/devices/TS0601_switch_8.png index 77a2ef92a6ba0..9cc2777591eb7 100644 Binary files a/public/images/devices/TS0601_switch_8.png and b/public/images/devices/TS0601_switch_8.png differ diff --git a/public/images/devices/TS0601_temperature_humidity_sensor_1.png b/public/images/devices/TS0601_temperature_humidity_sensor_1.png index 3c17b48be3e6b..b2f96d14c0681 100644 Binary files a/public/images/devices/TS0601_temperature_humidity_sensor_1.png and b/public/images/devices/TS0601_temperature_humidity_sensor_1.png differ diff --git a/public/images/devices/TS0601_temperature_humidity_sensor_2.png b/public/images/devices/TS0601_temperature_humidity_sensor_2.png index 3c17b48be3e6b..b2f96d14c0681 100644 Binary files a/public/images/devices/TS0601_temperature_humidity_sensor_2.png and b/public/images/devices/TS0601_temperature_humidity_sensor_2.png differ diff --git a/public/images/devices/TS0601_thermostat_1.png b/public/images/devices/TS0601_thermostat_1.png index b54a0dd673603..f4e398fc5da9c 100644 Binary files a/public/images/devices/TS0601_thermostat_1.png and b/public/images/devices/TS0601_thermostat_1.png differ diff --git a/public/images/devices/TS0601_thermostat_2.png b/public/images/devices/TS0601_thermostat_2.png index e148d46733592..11096884775ce 100644 Binary files a/public/images/devices/TS0601_thermostat_2.png and b/public/images/devices/TS0601_thermostat_2.png differ diff --git a/public/images/devices/TS0601_vibration_sensor.png b/public/images/devices/TS0601_vibration_sensor.png index a447bac3fc7aa..0a201659d1dd9 100644 Binary files a/public/images/devices/TS0601_vibration_sensor.png and b/public/images/devices/TS0601_vibration_sensor.png differ diff --git a/public/images/devices/TS0601_water_sensor.png b/public/images/devices/TS0601_water_sensor.png index 41112521dc520..44d68fdefa64c 100644 Binary files a/public/images/devices/TS0601_water_sensor.png and b/public/images/devices/TS0601_water_sensor.png differ diff --git a/public/images/devices/TS1101_dimmer_module_1ch.png b/public/images/devices/TS1101_dimmer_module_1ch.png index aacf06043f01e..b12300e1ab52c 100644 Binary files a/public/images/devices/TS1101_dimmer_module_1ch.png and b/public/images/devices/TS1101_dimmer_module_1ch.png differ diff --git a/public/images/devices/TS1101_dimmer_module_2ch.png b/public/images/devices/TS1101_dimmer_module_2ch.png index 3baa753d2dc24..50321afaaab43 100644 Binary files a/public/images/devices/TS1101_dimmer_module_2ch.png and b/public/images/devices/TS1101_dimmer_module_2ch.png differ diff --git a/public/images/devices/TS110E_1gang_1.png b/public/images/devices/TS110E_1gang_1.png index 3546b2d352424..105cece77343f 100644 Binary files a/public/images/devices/TS110E_1gang_1.png and b/public/images/devices/TS110E_1gang_1.png differ diff --git a/public/images/devices/TS110E_1gang_2.png b/public/images/devices/TS110E_1gang_2.png index cb548bcb9d8f0..105cece77343f 100644 Binary files a/public/images/devices/TS110E_1gang_2.png and b/public/images/devices/TS110E_1gang_2.png differ diff --git a/public/images/devices/TS110E_2gang_1.png b/public/images/devices/TS110E_2gang_1.png index 29026fcae0279..35ef9a3b22396 100644 Binary files a/public/images/devices/TS110E_2gang_1.png and b/public/images/devices/TS110E_2gang_1.png differ diff --git a/public/images/devices/TS110E_2gang_2.png b/public/images/devices/TS110E_2gang_2.png index 29026fcae0279..35ef9a3b22396 100644 Binary files a/public/images/devices/TS110E_2gang_2.png and b/public/images/devices/TS110E_2gang_2.png differ diff --git a/public/images/devices/TS130F.png b/public/images/devices/TS130F.png index 4bf91d37f0775..3aaf5ed582540 100644 Binary files a/public/images/devices/TS130F.png and b/public/images/devices/TS130F.png differ diff --git a/public/images/devices/TS130F_dual.png b/public/images/devices/TS130F_dual.png index f0c6511b56e25..6c9b816a960e4 100644 Binary files a/public/images/devices/TS130F_dual.png and b/public/images/devices/TS130F_dual.png differ diff --git a/public/images/devices/TSM-300ZB.png b/public/images/devices/TSM-300ZB.png index 72e3c45ce35a6..55fe3f4dc3086 100644 Binary files a/public/images/devices/TSM-300ZB.png and b/public/images/devices/TSM-300ZB.png differ diff --git a/public/images/devices/TT001ZAV20.png b/public/images/devices/TT001ZAV20.png index f76a69d7431b2..8492405bb98e5 100644 Binary files a/public/images/devices/TT001ZAV20.png and b/public/images/devices/TT001ZAV20.png differ diff --git a/public/images/devices/TV02-Zigbee.png b/public/images/devices/TV02-Zigbee.png index fdae25096acb0..758eeb7979ec5 100644 Binary files a/public/images/devices/TV02-Zigbee.png and b/public/images/devices/TV02-Zigbee.png differ diff --git a/public/images/devices/TW-S1.png b/public/images/devices/TW-S1.png index 29185a61fcbb8..d259081dd1b26 100644 Binary files a/public/images/devices/TW-S1.png and b/public/images/devices/TW-S1.png differ diff --git a/public/images/devices/TWV.png b/public/images/devices/TWV.png index 11441df4449c1..5c23c72cbaa33 100644 Binary files a/public/images/devices/TWV.png and b/public/images/devices/TWV.png differ diff --git a/public/images/devices/TY-04Z.png b/public/images/devices/TY-04Z.png index 73d28d88eb744..7ea1bd831f58d 100644 Binary files a/public/images/devices/TY-04Z.png and b/public/images/devices/TY-04Z.png differ diff --git a/public/images/devices/TY-12-100-400-W1Z.png b/public/images/devices/TY-12-100-400-W1Z.png index afd686c55f69e..80b9c3f4298c2 100644 Binary files a/public/images/devices/TY-12-100-400-W1Z.png and b/public/images/devices/TY-12-100-400-W1Z.png differ diff --git a/public/images/devices/TY-75-24-G2Z2.png b/public/images/devices/TY-75-24-G2Z2.png index 18f705a0330c1..7089896bc87c7 100644 Binary files a/public/images/devices/TY-75-24-G2Z2.png and b/public/images/devices/TY-75-24-G2Z2.png differ diff --git a/public/images/devices/TY-75-24-G2Z2_CCT.png b/public/images/devices/TY-75-24-G2Z2_CCT.png index ef8bed01987f7..a6ba8a9907cf9 100644 Binary files a/public/images/devices/TY-75-24-G2Z2_CCT.png and b/public/images/devices/TY-75-24-G2Z2_CCT.png differ diff --git a/public/images/devices/TY12100400W1Z.png b/public/images/devices/TY12100400W1Z.png index 9b7340408c757..cdd7a100ef415 100644 Binary files a/public/images/devices/TY12100400W1Z.png and b/public/images/devices/TY12100400W1Z.png differ diff --git a/public/images/devices/TY7524G2Z2.png b/public/images/devices/TY7524G2Z2.png index ac08758bbd0fc..0b2435e507398 100644 Binary files a/public/images/devices/TY7524G2Z2.png and b/public/images/devices/TY7524G2Z2.png differ diff --git a/public/images/devices/TYWB-4ch-RF.png b/public/images/devices/TYWB-4ch-RF.png index dc8fba6596168..67cb864b5ccc4 100644 Binary files a/public/images/devices/TYWB-4ch-RF.png and b/public/images/devices/TYWB-4ch-RF.png differ diff --git a/public/images/devices/TYZS1L.png b/public/images/devices/TYZS1L.png index 572b756502b40..db5c7d250d491 100644 Binary files a/public/images/devices/TYZS1L.png and b/public/images/devices/TYZS1L.png differ diff --git a/public/images/devices/TZSW22FW-L4.png b/public/images/devices/TZSW22FW-L4.png index d1547529f8b30..02337f7e42b02 100644 Binary files a/public/images/devices/TZSW22FW-L4.png and b/public/images/devices/TZSW22FW-L4.png differ diff --git a/public/images/devices/Touch4.png b/public/images/devices/Touch4.png index 6555faaaeeead..16c8fc9083892 100644 Binary files a/public/images/devices/Touch4.png and b/public/images/devices/Touch4.png differ diff --git a/public/images/devices/U02I007C.01.png b/public/images/devices/U02I007C.01.png index be2d69cc8e7db..c8339f04f6bb7 100644 Binary files a/public/images/devices/U02I007C.01.png and b/public/images/devices/U02I007C.01.png differ diff --git a/public/images/devices/U0565875_big.png b/public/images/devices/U0565875_big.png deleted file mode 100644 index ccb3eb8fabe62..0000000000000 Binary files a/public/images/devices/U0565875_big.png and /dev/null differ diff --git a/public/images/devices/U2-86K11ND10-ZD.png b/public/images/devices/U2-86K11ND10-ZD.png index 5807481ab7007..941f5f76a41e9 100644 Binary files a/public/images/devices/U2-86K11ND10-ZD.png and b/public/images/devices/U2-86K11ND10-ZD.png differ diff --git a/public/images/devices/U2-86K21ND10-ZD.png b/public/images/devices/U2-86K21ND10-ZD.png index 0c137388096c8..00986eb2ad588 100644 Binary files a/public/images/devices/U2-86K21ND10-ZD.png and b/public/images/devices/U2-86K21ND10-ZD.png differ diff --git a/public/images/devices/U2-86K31ND10-ZD.png b/public/images/devices/U2-86K31ND10-ZD.png index 4f5beea58725f..3c25827db02ef 100644 Binary files a/public/images/devices/U2-86K31ND10-ZD.png and b/public/images/devices/U2-86K31ND10-ZD.png differ diff --git a/public/images/devices/U201DST600ZB.png b/public/images/devices/U201DST600ZB.png index 29f44008101db..52392bd364ec0 100644 Binary files a/public/images/devices/U201DST600ZB.png and b/public/images/devices/U201DST600ZB.png differ diff --git a/public/images/devices/U201SRY2KWZB.png b/public/images/devices/U201SRY2KWZB.png index 3728be3963eb2..df8fcca2bd7c5 100644 Binary files a/public/images/devices/U201SRY2KWZB.png and b/public/images/devices/U201SRY2KWZB.png differ diff --git a/public/images/devices/U202DST600ZB.png b/public/images/devices/U202DST600ZB.png index d1de482a708a8..aadfe132fae22 100644 Binary files a/public/images/devices/U202DST600ZB.png and b/public/images/devices/U202DST600ZB.png differ diff --git a/public/images/devices/U202SRY2KWZB.png b/public/images/devices/U202SRY2KWZB.png index c385ec578612c..635b3fefcc237 100644 Binary files a/public/images/devices/U202SRY2KWZB.png and b/public/images/devices/U202SRY2KWZB.png differ diff --git a/public/images/devices/U86K31ND6.png b/public/images/devices/U86K31ND6.png index 9bef44557bb23..b97e3d74feb51 100644 Binary files a/public/images/devices/U86K31ND6.png and b/public/images/devices/U86K31ND6.png differ diff --git a/public/images/devices/U86KCJ-ZP.png b/public/images/devices/U86KCJ-ZP.png index 12dd0c5c1d200..1f862ccecff78 100644 Binary files a/public/images/devices/U86KCJ-ZP.png and b/public/images/devices/U86KCJ-ZP.png differ diff --git a/public/images/devices/U86KWF-ZPSJ.png b/public/images/devices/U86KWF-ZPSJ.png index 3b555099bc4c0..6d9dbf11daba9 100644 Binary files a/public/images/devices/U86KWF-ZPSJ.png and b/public/images/devices/U86KWF-ZPSJ.png differ diff --git a/public/images/devices/U86Z13A16-ZJH(HA).png b/public/images/devices/U86Z13A16-ZJH(HA).png index 39600a5fd1a66..24dc75855adb7 100644 Binary files a/public/images/devices/U86Z13A16-ZJH(HA).png and b/public/images/devices/U86Z13A16-ZJH(HA).png differ diff --git a/public/images/devices/UC-110.png b/public/images/devices/UC-110.png index 70288d5617693..22c76be10beca 100644 Binary files a/public/images/devices/UC-110.png and b/public/images/devices/UC-110.png differ diff --git a/public/images/devices/UFO-R11.png b/public/images/devices/UFO-R11.png index 8be039ff4bba7..fe8c6dbecad5e 100644 Binary files a/public/images/devices/UFO-R11.png and b/public/images/devices/UFO-R11.png differ diff --git a/public/images/devices/UK7004240.png b/public/images/devices/UK7004240.png index dc857e0f8121c..d59d4a6b83863 100644 Binary files a/public/images/devices/UK7004240.png and b/public/images/devices/UK7004240.png differ diff --git a/public/images/devices/UP-SA-9127D.png b/public/images/devices/UP-SA-9127D.png index a963787e1986f..7c74a4ff2bcd2 100644 Binary files a/public/images/devices/UP-SA-9127D.png and b/public/images/devices/UP-SA-9127D.png differ diff --git a/public/images/devices/USM-300ZB.png b/public/images/devices/USM-300ZB.png index ad549f1c1616a..441e7de6ad43a 100644 Binary files a/public/images/devices/USM-300ZB.png and b/public/images/devices/USM-300ZB.png differ diff --git a/public/images/devices/VA4200WZ.png b/public/images/devices/VA4200WZ.png index 6dacf7416343e..8548a450c4e05 100644 Binary files a/public/images/devices/VA4200WZ.png and b/public/images/devices/VA4200WZ.png differ diff --git a/public/images/devices/VA4201WZ.png b/public/images/devices/VA4201WZ.png index 6dacf7416343e..8548a450c4e05 100644 Binary files a/public/images/devices/VA4201WZ.png and b/public/images/devices/VA4201WZ.png differ diff --git a/public/images/devices/VR-X701U.png b/public/images/devices/VR-X701U.png index 3b3853740fd26..1e2eb1b6e9853 100644 Binary files a/public/images/devices/VR-X701U.png and b/public/images/devices/VR-X701U.png differ diff --git a/public/images/devices/VR-X712U-0013.png b/public/images/devices/VR-X712U-0013.png index 349669ec5a13b..c0263be9b33fc 100644 Binary files a/public/images/devices/VR-X712U-0013.png and b/public/images/devices/VR-X712U-0013.png differ diff --git a/public/images/devices/VZM31-SN.png b/public/images/devices/VZM31-SN.png index 2a6eba197c95d..65f1666761b6d 100644 Binary files a/public/images/devices/VZM31-SN.png and b/public/images/devices/VZM31-SN.png differ diff --git a/public/images/devices/VZM35-SN.png b/public/images/devices/VZM35-SN.png index 2a6eba197c95d..65f1666761b6d 100644 Binary files a/public/images/devices/VZM35-SN.png and b/public/images/devices/VZM35-SN.png differ diff --git a/public/images/devices/W2-Module.png b/public/images/devices/W2-Module.png index 7341675a9c33b..c855b23e17f96 100644 Binary files a/public/images/devices/W2-Module.png and b/public/images/devices/W2-Module.png differ diff --git a/public/images/devices/W40CZ.png b/public/images/devices/W40CZ.png index 8828ec16b80ff..ab76d2b3ffee4 100644 Binary files a/public/images/devices/W40CZ.png and b/public/images/devices/W40CZ.png differ diff --git a/public/images/devices/W599001.png b/public/images/devices/W599001.png index ff0cba7b5031f..35b080815f94e 100644 Binary files a/public/images/devices/W599001.png and b/public/images/devices/W599001.png differ diff --git a/public/images/devices/W599501.png b/public/images/devices/W599501.png index ff0cba7b5031f..35b080815f94e 100644 Binary files a/public/images/devices/W599501.png and b/public/images/devices/W599501.png differ diff --git a/public/images/devices/WB-MSW-ZIGBEE-v.3.png b/public/images/devices/WB-MSW-ZIGBEE-v.3.png index 8e2ab768787b7..5e4e6999af7d4 100644 Binary files a/public/images/devices/WB-MSW-ZIGBEE-v.3.png and b/public/images/devices/WB-MSW-ZIGBEE-v.3.png differ diff --git a/public/images/devices/WB-MSW-ZIGBEE-v.4.png b/public/images/devices/WB-MSW-ZIGBEE-v.4.png index 035c1f945c869..822283d911617 100644 Binary files a/public/images/devices/WB-MSW-ZIGBEE-v.4.png and b/public/images/devices/WB-MSW-ZIGBEE-v.4.png differ diff --git a/public/images/devices/WDE002334.png b/public/images/devices/WDE002334.png index a45fc37049583..1b701cf761da3 100644 Binary files a/public/images/devices/WDE002334.png and b/public/images/devices/WDE002334.png differ diff --git a/public/images/devices/WDE002386.png b/public/images/devices/WDE002386.png index 0a1b87846312c..6fd52fb1dad0c 100644 Binary files a/public/images/devices/WDE002386.png and b/public/images/devices/WDE002386.png differ diff --git a/public/images/devices/WDE002906.png b/public/images/devices/WDE002906.png index 64c2e3077398f..6a218c27893e0 100644 Binary files a/public/images/devices/WDE002906.png and b/public/images/devices/WDE002906.png differ diff --git a/public/images/devices/WF4C_WF6C.png b/public/images/devices/WF4C_WF6C.png index 16face097cd04..1f0ab4a271ed9 100644 Binary files a/public/images/devices/WF4C_WF6C.png and b/public/images/devices/WF4C_WF6C.png differ diff --git a/public/images/devices/WG001.png b/public/images/devices/WG001.png index 1829f6c8e877f..92a4823efe373 100644 Binary files a/public/images/devices/WG001.png and b/public/images/devices/WG001.png differ diff --git a/public/images/devices/WHD02.png b/public/images/devices/WHD02.png index e945031f33c44..3f1b2712042e3 100644 Binary files a/public/images/devices/WHD02.png and b/public/images/devices/WHD02.png differ diff --git a/public/images/devices/WISZB-121.png b/public/images/devices/WISZB-121.png index 0d22e2f3177bd..b752b5deb7241 100644 Binary files a/public/images/devices/WISZB-121.png and b/public/images/devices/WISZB-121.png differ diff --git a/public/images/devices/WISZB-138.png b/public/images/devices/WISZB-138.png index 439635f4443ca..f06c53b3c8b12 100644 Binary files a/public/images/devices/WISZB-138.png and b/public/images/devices/WISZB-138.png differ diff --git a/public/images/devices/WK34-EU.png b/public/images/devices/WK34-EU.png index fc0264f6195b8..8bf5a55f1a918 100644 Binary files a/public/images/devices/WK34-EU.png and b/public/images/devices/WK34-EU.png differ diff --git a/public/images/devices/WL-SD001-9W.png b/public/images/devices/WL-SD001-9W.png index c9ad8ca227753..15311cedd14a9 100644 Binary files a/public/images/devices/WL-SD001-9W.png and b/public/images/devices/WL-SD001-9W.png differ diff --git a/public/images/devices/WL4200.png b/public/images/devices/WL4200.png index 49b433cbe3f8a..d45e4dab30005 100644 Binary files a/public/images/devices/WL4200.png and b/public/images/devices/WL4200.png differ diff --git a/public/images/devices/WL4200S.png b/public/images/devices/WL4200S.png index 6ddfc5cd764ad..fda6dfa548d74 100644 Binary files a/public/images/devices/WL4200S.png and b/public/images/devices/WL4200S.png differ diff --git a/public/images/devices/WLS-100z.png b/public/images/devices/WLS-100z.png index 570c28f5ffbf4..d023fe98a26ab 100644 Binary files a/public/images/devices/WLS-100z.png and b/public/images/devices/WLS-100z.png differ diff --git a/public/images/devices/WLS-15ZBS.png b/public/images/devices/WLS-15ZBS.png index e01d1bb319bad..311650a9c18c7 100644 Binary files a/public/images/devices/WLS-15ZBS.png and b/public/images/devices/WLS-15ZBS.png differ diff --git a/public/images/devices/WLS600.png b/public/images/devices/WLS600.png index dc56aff05b9d7..ced2094787ff5 100644 Binary files a/public/images/devices/WLS600.png and b/public/images/devices/WLS600.png differ diff --git a/public/images/devices/WM25L-Z.png b/public/images/devices/WM25L-Z.png index 16c28305acebf..7eb4b09a478bc 100644 Binary files a/public/images/devices/WM25L-Z.png and b/public/images/devices/WM25L-Z.png differ diff --git a/public/images/devices/WNAL10-WNRL10.png b/public/images/devices/WNAL10-WNRL10.png index beb57f9d5d1ee..0320470d497e4 100644 Binary files a/public/images/devices/WNAL10-WNRL10.png and b/public/images/devices/WNAL10-WNRL10.png differ diff --git a/public/images/devices/WNAL50-WNRL50.png b/public/images/devices/WNAL50-WNRL50.png index 795e355552bd4..4b270a0513a29 100644 Binary files a/public/images/devices/WNAL50-WNRL50.png and b/public/images/devices/WNAL50-WNRL50.png differ diff --git a/public/images/devices/WNAL63.png b/public/images/devices/WNAL63.png index 10cbe79f996eb..e818bbda3eb08 100644 Binary files a/public/images/devices/WNAL63.png and b/public/images/devices/WNAL63.png differ diff --git a/public/images/devices/WNRR15-WNRR20.png b/public/images/devices/WNRR15-WNRR20.png index 6d69b5393ce78..e4607277a792d 100644 Binary files a/public/images/devices/WNRR15-WNRR20.png and b/public/images/devices/WNRR15-WNRR20.png differ diff --git a/public/images/devices/WP30-EU.png b/public/images/devices/WP30-EU.png index 513c61b1b7462..dcac1cc2938ca 100644 Binary files a/public/images/devices/WP30-EU.png and b/public/images/devices/WP30-EU.png differ diff --git a/public/images/devices/WP33-EU-WP34-EU.png b/public/images/devices/WP33-EU-WP34-EU.png index 5d35a06060754..4d050dd27e588 100644 Binary files a/public/images/devices/WP33-EU-WP34-EU.png and b/public/images/devices/WP33-EU-WP34-EU.png differ diff --git a/public/images/devices/WPT1.png b/public/images/devices/WPT1.png index 6656da701d3db..b7787727ee04c 100644 Binary files a/public/images/devices/WPT1.png and b/public/images/devices/WPT1.png differ diff --git a/public/images/devices/WS-15ZBS.png b/public/images/devices/WS-15ZBS.png index b4c872c27bf41..d74d5b0a197dd 100644 Binary files a/public/images/devices/WS-15ZBS.png and b/public/images/devices/WS-15ZBS.png differ diff --git a/public/images/devices/WS-20-Z.png b/public/images/devices/WS-20-Z.png index 1be50106e912c..6261abca2cf02 100644 Binary files a/public/images/devices/WS-20-Z.png and b/public/images/devices/WS-20-Z.png differ diff --git a/public/images/devices/WS-EUB1-ZG.png b/public/images/devices/WS-EUB1-ZG.png index 3dcaabd96185a..f21173e644e0e 100644 Binary files a/public/images/devices/WS-EUB1-ZG.png and b/public/images/devices/WS-EUB1-ZG.png differ diff --git a/public/images/devices/WS01.png b/public/images/devices/WS01.png index 7e3163bd68849..fba9f32056d4a 100644 Binary files a/public/images/devices/WS01.png and b/public/images/devices/WS01.png differ diff --git a/public/images/devices/WSP402.png b/public/images/devices/WSP402.png index 3ab14627e8bb9..0a148319fe4ad 100644 Binary files a/public/images/devices/WSP402.png and b/public/images/devices/WSP402.png differ diff --git a/public/images/devices/WSP404.png b/public/images/devices/WSP404.png index 3ab14627e8bb9..0a148319fe4ad 100644 Binary files a/public/images/devices/WSP404.png and b/public/images/devices/WSP404.png differ diff --git a/public/images/devices/WSZ01.png b/public/images/devices/WSZ01.png index 9bd8fd3c2814e..e9742c35f2a7d 100644 Binary files a/public/images/devices/WSZ01.png and b/public/images/devices/WSZ01.png differ diff --git a/public/images/devices/WTR-UK-V2.png b/public/images/devices/WTR-UK-V2.png index 372d61691aa53..75b531e857c9c 100644 Binary files a/public/images/devices/WTR-UK-V2.png and b/public/images/devices/WTR-UK-V2.png differ diff --git a/public/images/devices/WV704R0A0902.png b/public/images/devices/WV704R0A0902.png index 8b5aaca8a9af5..1abb87d383997 100644 Binary files a/public/images/devices/WV704R0A0902.png and b/public/images/devices/WV704R0A0902.png differ diff --git a/public/images/devices/WXKG01LM.png b/public/images/devices/WXKG01LM.png index f59bc0d77d36b..1cc1727e9096b 100644 Binary files a/public/images/devices/WXKG01LM.png and b/public/images/devices/WXKG01LM.png differ diff --git a/public/images/devices/WZ-M100-W.png b/public/images/devices/WZ-M100-W.png index 18377706312c4..ff78a0a45a4de 100644 Binary files a/public/images/devices/WZ-M100-W.png and b/public/images/devices/WZ-M100-W.png differ diff --git a/public/images/devices/WZ1.png b/public/images/devices/WZ1.png index 6ebccca4fc0ef..fc4b49585bb50 100644 Binary files a/public/images/devices/WZ1.png and b/public/images/devices/WZ1.png differ diff --git a/public/images/devices/WZ5_cct.png b/public/images/devices/WZ5_cct.png index 0810bfc8d30fd..0019f73a308c6 100644 Binary files a/public/images/devices/WZ5_cct.png and b/public/images/devices/WZ5_cct.png differ diff --git a/public/images/devices/WZ5_dim.png b/public/images/devices/WZ5_dim.png index 0810bfc8d30fd..0019f73a308c6 100644 Binary files a/public/images/devices/WZ5_dim.png and b/public/images/devices/WZ5_dim.png differ diff --git a/public/images/devices/WZ5_dim_1.png b/public/images/devices/WZ5_dim_1.png index 0810bfc8d30fd..0019f73a308c6 100644 Binary files a/public/images/devices/WZ5_dim_1.png and b/public/images/devices/WZ5_dim_1.png differ diff --git a/public/images/devices/WZ5_dim_2.png b/public/images/devices/WZ5_dim_2.png index 0810bfc8d30fd..0019f73a308c6 100644 Binary files a/public/images/devices/WZ5_dim_2.png and b/public/images/devices/WZ5_dim_2.png differ diff --git a/public/images/devices/WZ5_rgb.png b/public/images/devices/WZ5_rgb.png index 0810bfc8d30fd..0019f73a308c6 100644 Binary files a/public/images/devices/WZ5_rgb.png and b/public/images/devices/WZ5_rgb.png differ diff --git a/public/images/devices/WZ5_rgb_1.png b/public/images/devices/WZ5_rgb_1.png index 0810bfc8d30fd..0019f73a308c6 100644 Binary files a/public/images/devices/WZ5_rgb_1.png and b/public/images/devices/WZ5_rgb_1.png differ diff --git a/public/images/devices/WZ5_rgbcct.png b/public/images/devices/WZ5_rgbcct.png index 0810bfc8d30fd..0019f73a308c6 100644 Binary files a/public/images/devices/WZ5_rgbcct.png and b/public/images/devices/WZ5_rgbcct.png differ diff --git a/public/images/devices/WZ5_rgbw.png b/public/images/devices/WZ5_rgbw.png index 0810bfc8d30fd..0019f73a308c6 100644 Binary files a/public/images/devices/WZ5_rgbw.png and b/public/images/devices/WZ5_rgbw.png differ diff --git a/public/images/devices/WZB-TRVL.png b/public/images/devices/WZB-TRVL.png index 801fb23e04e2c..1b6a7c63c1abe 100644 Binary files a/public/images/devices/WZB-TRVL.png and b/public/images/devices/WZB-TRVL.png differ diff --git a/public/images/devices/X5H-GB-B.png b/public/images/devices/X5H-GB-B.png index b087495891d69..bc8ea2ff1bd1d 100644 Binary files a/public/images/devices/X5H-GB-B.png and b/public/images/devices/X5H-GB-B.png differ diff --git a/public/images/devices/X701.png b/public/images/devices/X701.png index 122aeeceb4470..44e5d0af51ce3 100644 Binary files a/public/images/devices/X701.png and b/public/images/devices/X701.png differ diff --git a/public/images/devices/X702.png b/public/images/devices/X702.png index 07d7f1b246252..ac608f9acd41b 100644 Binary files a/public/images/devices/X702.png and b/public/images/devices/X702.png differ diff --git a/public/images/devices/X702A.png b/public/images/devices/X702A.png index 2a3df4ce9ac50..4c55f89e48408 100644 Binary files a/public/images/devices/X702A.png and b/public/images/devices/X702A.png differ diff --git a/public/images/devices/X703A.png b/public/images/devices/X703A.png index 9b1f068dd065e..5c857ca5a634d 100644 Binary files a/public/images/devices/X703A.png and b/public/images/devices/X703A.png differ diff --git a/public/images/devices/X706U.png b/public/images/devices/X706U.png index d9e4e4dae724a..928af9cf64299 100644 Binary files a/public/images/devices/X706U.png and b/public/images/devices/X706U.png differ diff --git a/public/images/devices/X711A.png b/public/images/devices/X711A.png index e430f9655484b..0db817aea975a 100644 Binary files a/public/images/devices/X711A.png and b/public/images/devices/X711A.png differ diff --git a/public/images/devices/X712A.png b/public/images/devices/X712A.png index 73fe31acf1af9..bfa7a13cd08c4 100644 Binary files a/public/images/devices/X712A.png and b/public/images/devices/X712A.png differ diff --git a/public/images/devices/X713A.png b/public/images/devices/X713A.png index d3de2a178f470..6d53be62948b1 100644 Binary files a/public/images/devices/X713A.png and b/public/images/devices/X713A.png differ diff --git a/public/images/devices/XBee.png b/public/images/devices/XBee.png index cb073bd7fcd1a..2da4a25de7861 100644 Binary files a/public/images/devices/XBee.png and b/public/images/devices/XBee.png differ diff --git a/public/images/devices/XF-EU-S100-1-M.png b/public/images/devices/XF-EU-S100-1-M.png index 58fcd82e2cfbb..7c60e79180f1d 100644 Binary files a/public/images/devices/XF-EU-S100-1-M.png and b/public/images/devices/XF-EU-S100-1-M.png differ diff --git a/public/images/devices/XFY-CGQ-ZIGB.png b/public/images/devices/XFY-CGQ-ZIGB.png index fbc93fda448f9..dd58da3abf0d3 100644 Binary files a/public/images/devices/XFY-CGQ-ZIGB.png and b/public/images/devices/XFY-CGQ-ZIGB.png differ diff --git a/public/images/devices/XHK1-TC.png b/public/images/devices/XHK1-TC.png index 8862e202b029e..72f599b012334 100644 Binary files a/public/images/devices/XHK1-TC.png and b/public/images/devices/XHK1-TC.png differ diff --git a/public/images/devices/XHK1-UE.png b/public/images/devices/XHK1-UE.png index 58563d33a2438..7bf2e8ff258de 100644 Binary files a/public/images/devices/XHK1-UE.png and b/public/images/devices/XHK1-UE.png differ diff --git a/public/images/devices/XHS1-UE.png b/public/images/devices/XHS1-UE.png index 088aa37378323..b625c81ef9d40 100644 Binary files a/public/images/devices/XHS1-UE.png and b/public/images/devices/XHS1-UE.png differ diff --git a/public/images/devices/XHS2-SE.png b/public/images/devices/XHS2-SE.png index 5ef9bd90a25ac..5b427f698e92b 100644 Binary files a/public/images/devices/XHS2-SE.png and b/public/images/devices/XHS2-SE.png differ diff --git a/public/images/devices/XHS2-UE.png b/public/images/devices/XHS2-UE.png index 63e6689e6ebd3..6b937c7ff88fe 100644 Binary files a/public/images/devices/XHS2-UE.png and b/public/images/devices/XHS2-UE.png differ diff --git a/public/images/devices/XSH01B.png b/public/images/devices/XSH01B.png index 87352eb0a9d10..60a7fd04f4cee 100644 Binary files a/public/images/devices/XSH01B.png and b/public/images/devices/XSH01B.png differ diff --git a/public/images/devices/XVV-Mega23M12.png b/public/images/devices/XVV-Mega23M12.png index 17fecece69e71..cf8c9667ffd7b 100644 Binary files a/public/images/devices/XVV-Mega23M12.png and b/public/images/devices/XVV-Mega23M12.png differ diff --git a/public/images/devices/XY12S-15.png b/public/images/devices/XY12S-15.png index f990d125c99e0..296c5139ff20e 100644 Binary files a/public/images/devices/XY12S-15.png and b/public/images/devices/XY12S-15.png differ diff --git a/public/images/devices/YG400A.png b/public/images/devices/YG400A.png index c3e21f6b2ce7e..7e04aed8972bc 100644 Binary files a/public/images/devices/YG400A.png and b/public/images/devices/YG400A.png differ diff --git a/public/images/devices/YMF40A RL.png b/public/images/devices/YMF40A RL.png index 41de8eb54fab7..95973354d5b6e 100644 Binary files a/public/images/devices/YMF40A RL.png and b/public/images/devices/YMF40A RL.png differ diff --git a/public/images/devices/YRD226-246-TSDB.png b/public/images/devices/YRD226-246-TSDB.png index 52513fbfb00f5..a1922da16778b 100644 Binary files a/public/images/devices/YRD226-246-TSDB.png and b/public/images/devices/YRD226-246-TSDB.png differ diff --git a/public/images/devices/YS-MT750.png b/public/images/devices/YS-MT750.png index dec760f9adda0..efe20c08d4c0c 100644 Binary files a/public/images/devices/YS-MT750.png and b/public/images/devices/YS-MT750.png differ diff --git a/public/images/devices/YS-MT750L.png b/public/images/devices/YS-MT750L.png index dec760f9adda0..efe20c08d4c0c 100644 Binary files a/public/images/devices/YS-MT750L.png and b/public/images/devices/YS-MT750L.png differ diff --git a/public/images/devices/YSR-MINI-Z.png b/public/images/devices/YSR-MINI-Z.png index 0f9ad5a4d70a4..4cbfa4a5a2eeb 100644 Binary files a/public/images/devices/YSR-MINI-Z.png and b/public/images/devices/YSR-MINI-Z.png differ diff --git a/public/images/devices/Z01-A19NAE26.png b/public/images/devices/Z01-A19NAE26.png index ff3261122ea00..7c1a9bc1653f5 100644 Binary files a/public/images/devices/Z01-A19NAE26.png and b/public/images/devices/Z01-A19NAE26.png differ diff --git a/public/images/devices/Z01-A60EAE27.png b/public/images/devices/Z01-A60EAE27.png index c10af08fcb961..adb8b7c74ebbb 100644 Binary files a/public/images/devices/Z01-A60EAE27.png and b/public/images/devices/Z01-A60EAE27.png differ diff --git a/public/images/devices/Z01-CIA19NAE26.png b/public/images/devices/Z01-CIA19NAE26.png index 2281b8e24ec24..827b30c36182c 100644 Binary files a/public/images/devices/Z01-CIA19NAE26.png and b/public/images/devices/Z01-CIA19NAE26.png differ diff --git a/public/images/devices/Z20.png b/public/images/devices/Z20.png index b92fa593d2598..1bc4e2e3256b0 100644 Binary files a/public/images/devices/Z20.png and b/public/images/devices/Z20.png differ diff --git a/public/images/devices/Z3-1BRL.png b/public/images/devices/Z3-1BRL.png index 4ba1fad397d85..f0cb26ce3e978 100644 Binary files a/public/images/devices/Z3-1BRL.png and b/public/images/devices/Z3-1BRL.png differ diff --git a/public/images/devices/Z6.png b/public/images/devices/Z6.png index 39a0670d3e5fe..2be41125fda03 100644 Binary files a/public/images/devices/Z6.png and b/public/images/devices/Z6.png differ diff --git a/public/images/devices/Z809A.png b/public/images/devices/Z809A.png index 3e64136a5af60..8433e0dbc2877 100644 Binary files a/public/images/devices/Z809A.png and b/public/images/devices/Z809A.png differ diff --git a/public/images/devices/Z809AF.png b/public/images/devices/Z809AF.png index 867c0c049a261..da5c32bd85bdc 100644 Binary files a/public/images/devices/Z809AF.png and b/public/images/devices/Z809AF.png differ diff --git a/public/images/devices/ZA806SQ1TCF.png b/public/images/devices/ZA806SQ1TCF.png index 2cad162311cd7..9747ea9d5947c 100644 Binary files a/public/images/devices/ZA806SQ1TCF.png and b/public/images/devices/ZA806SQ1TCF.png differ diff --git a/public/images/devices/ZB-1026.png b/public/images/devices/ZB-1026.png index d27ac8f0eff56..df1c5b45f6e0d 100644 Binary files a/public/images/devices/ZB-1026.png and b/public/images/devices/ZB-1026.png differ diff --git a/public/images/devices/ZB-3009.png b/public/images/devices/ZB-3009.png index 964722c7e494b..5ec3876c0a577 100644 Binary files a/public/images/devices/ZB-3009.png and b/public/images/devices/ZB-3009.png differ diff --git a/public/images/devices/ZB-5001.png b/public/images/devices/ZB-5001.png index e7398c77231ce..f41e9ee641632 100644 Binary files a/public/images/devices/ZB-5001.png and b/public/images/devices/ZB-5001.png differ diff --git a/public/images/devices/ZB-5004.png b/public/images/devices/ZB-5004.png index 7407174bf7f2f..9c2cf47ecfd08 100644 Binary files a/public/images/devices/ZB-5004.png and b/public/images/devices/ZB-5004.png differ diff --git a/public/images/devices/ZB-5028.png b/public/images/devices/ZB-5028.png index b1a91ee1cb945..866d5962b210a 100644 Binary files a/public/images/devices/ZB-5028.png and b/public/images/devices/ZB-5028.png differ diff --git a/public/images/devices/ZB-5121.png b/public/images/devices/ZB-5121.png index ae15d5269136b..ca1daa497b0eb 100644 Binary files a/public/images/devices/ZB-5121.png and b/public/images/devices/ZB-5121.png differ diff --git a/public/images/devices/ZB-5122.png b/public/images/devices/ZB-5122.png index c4f6600dde91d..e09dd2545cd3b 100644 Binary files a/public/images/devices/ZB-5122.png and b/public/images/devices/ZB-5122.png differ diff --git a/public/images/devices/ZB-CCT_Filament.png b/public/images/devices/ZB-CCT_Filament.png index 1ffeaada26d9d..8ff12c9a0a981 100644 Binary files a/public/images/devices/ZB-CCT_Filament.png and b/public/images/devices/ZB-CCT_Filament.png differ diff --git a/public/images/devices/ZB-CL01.png b/public/images/devices/ZB-CL01.png index a21cda203cbce..0be7a4a862215 100644 Binary files a/public/images/devices/ZB-CL01.png and b/public/images/devices/ZB-CL01.png differ diff --git a/public/images/devices/ZB-LZD10-RCW.png b/public/images/devices/ZB-LZD10-RCW.png index 95a581fdedb23..3eeb6baac04a3 100644 Binary files a/public/images/devices/ZB-LZD10-RCW.png and b/public/images/devices/ZB-LZD10-RCW.png differ diff --git a/public/images/devices/ZB-RGBCW.png b/public/images/devices/ZB-RGBCW.png index dc4ced2f9e701..b885256064b96 100644 Binary files a/public/images/devices/ZB-RGBCW.png and b/public/images/devices/ZB-RGBCW.png differ diff --git a/public/images/devices/ZB-SW01.png b/public/images/devices/ZB-SW01.png index a9848f9a51bb7..5b9c9f7f1f8cd 100644 Binary files a/public/images/devices/ZB-SW01.png and b/public/images/devices/ZB-SW01.png differ diff --git a/public/images/devices/ZB-SW02.png b/public/images/devices/ZB-SW02.png index e1f11a6f0f928..afe4b76cb87da 100644 Binary files a/public/images/devices/ZB-SW02.png and b/public/images/devices/ZB-SW02.png differ diff --git a/public/images/devices/ZB-SW03.png b/public/images/devices/ZB-SW03.png index ac18680d1ad4e..7fe7f73a892a8 100644 Binary files a/public/images/devices/ZB-SW03.png and b/public/images/devices/ZB-SW03.png differ diff --git a/public/images/devices/ZB-SW04.png b/public/images/devices/ZB-SW04.png index 2ff9b72b7cf0f..7327075abebf1 100644 Binary files a/public/images/devices/ZB-SW04.png and b/public/images/devices/ZB-SW04.png differ diff --git a/public/images/devices/ZB-Sm.png b/public/images/devices/ZB-Sm.png index 83d0eafee0e0c..32730412352a0 100644 Binary files a/public/images/devices/ZB-Sm.png and b/public/images/devices/ZB-Sm.png differ diff --git a/public/images/devices/ZB-TTS01.png b/public/images/devices/ZB-TTS01.png index 2f1208aba2c09..d878b8f2e88be 100644 Binary files a/public/images/devices/ZB-TTS01.png and b/public/images/devices/ZB-TTS01.png differ diff --git a/public/images/devices/ZB003-X.png b/public/images/devices/ZB003-X.png index 40f51c3b95462..0038e72b3f835 100644 Binary files a/public/images/devices/ZB003-X.png and b/public/images/devices/ZB003-X.png differ diff --git a/public/images/devices/ZB006-X.png b/public/images/devices/ZB006-X.png index 878fa3a59cc59..ffd40708e791f 100644 Binary files a/public/images/devices/ZB006-X.png and b/public/images/devices/ZB006-X.png differ diff --git a/public/images/devices/ZB1248-10A.png b/public/images/devices/ZB1248-10A.png index 7b9c0a8ace600..a286dd85b500d 100644 Binary files a/public/images/devices/ZB1248-10A.png and b/public/images/devices/ZB1248-10A.png differ diff --git a/public/images/devices/ZB24100VS.png b/public/images/devices/ZB24100VS.png index d738bfa6896ae..6a15f33addbe7 100644 Binary files a/public/images/devices/ZB24100VS.png and b/public/images/devices/ZB24100VS.png differ diff --git a/public/images/devices/ZB250.png b/public/images/devices/ZB250.png index 449ee16ec6054..07bd35eee3ffe 100644 Binary files a/public/images/devices/ZB250.png and b/public/images/devices/ZB250.png differ diff --git a/public/images/devices/ZB3102.png b/public/images/devices/ZB3102.png index e1f0a4f3fa963..267f0ae652001 100644 Binary files a/public/images/devices/ZB3102.png and b/public/images/devices/ZB3102.png differ diff --git a/public/images/devices/ZBCurtain.png b/public/images/devices/ZBCurtain.png index d860765faec9d..90f0d403d70b0 100644 Binary files a/public/images/devices/ZBCurtain.png and b/public/images/devices/ZBCurtain.png differ diff --git a/public/images/devices/ZBDongle-E.png b/public/images/devices/ZBDongle-E.png index 7c470d96ec8b4..4376f30becbf7 100644 Binary files a/public/images/devices/ZBDongle-E.png and b/public/images/devices/ZBDongle-E.png differ diff --git a/public/images/devices/ZBHS4RGBW.png b/public/images/devices/ZBHS4RGBW.png index 0c1e9843c7cca..5fa2aabf914d0 100644 Binary files a/public/images/devices/ZBHS4RGBW.png and b/public/images/devices/ZBHS4RGBW.png differ diff --git a/public/images/devices/ZBHT-1.png b/public/images/devices/ZBHT-1.png index d930a9c252147..13b21cc5b7551 100644 Binary files a/public/images/devices/ZBHT-1.png and b/public/images/devices/ZBHT-1.png differ diff --git a/public/images/devices/ZBMINIL2.png b/public/images/devices/ZBMINIL2.png index 36c2887db2315..1346de01e4b2c 100644 Binary files a/public/images/devices/ZBMINIL2.png and b/public/images/devices/ZBMINIL2.png differ diff --git a/public/images/devices/ZBT-CCTLight-Candle0904.png b/public/images/devices/ZBT-CCTLight-Candle0904.png index a634035be7f8a..1c4baca5018a7 100644 Binary files a/public/images/devices/ZBT-CCTLight-Candle0904.png and b/public/images/devices/ZBT-CCTLight-Candle0904.png differ diff --git a/public/images/devices/ZBT-CCTLight-GLS0904.png b/public/images/devices/ZBT-CCTLight-GLS0904.png index 6c326654d0935..012a13171f1e2 100644 Binary files a/public/images/devices/ZBT-CCTLight-GLS0904.png and b/public/images/devices/ZBT-CCTLight-GLS0904.png differ diff --git a/public/images/devices/ZBT-DIMLight-GLS0800.png b/public/images/devices/ZBT-DIMLight-GLS0800.png index 3af205d35c599..ce3decce819eb 100644 Binary files a/public/images/devices/ZBT-DIMLight-GLS0800.png and b/public/images/devices/ZBT-DIMLight-GLS0800.png differ diff --git a/public/images/devices/ZBT-RGBWLight-A0000.png b/public/images/devices/ZBT-RGBWLight-A0000.png index b78b8e0b946c0..d6e15a0b94b86 100644 Binary files a/public/images/devices/ZBT-RGBWLight-A0000.png and b/public/images/devices/ZBT-RGBWLight-A0000.png differ diff --git a/public/images/devices/ZB_A60_RGBCW.png b/public/images/devices/ZB_A60_RGBCW.png index 87c16d26754c2..945d99b547856 100644 Binary files a/public/images/devices/ZB_A60_RGBCW.png and b/public/images/devices/ZB_A60_RGBCW.png differ diff --git a/public/images/devices/ZC05M.png b/public/images/devices/ZC05M.png index ddf7b38bf6146..ab65a0a18dcd2 100644 Binary files a/public/images/devices/ZC05M.png and b/public/images/devices/ZC05M.png differ diff --git a/public/images/devices/ZCC-3500.png b/public/images/devices/ZCC-3500.png index 7c651eb91c1c7..f3cbbcc393e8a 100644 Binary files a/public/images/devices/ZCC-3500.png and b/public/images/devices/ZCC-3500.png differ diff --git a/public/images/devices/ZCR1-40EM.png b/public/images/devices/ZCR1-40EM.png index acce5145bd8d4..d49fbcb1b7f51 100644 Binary files a/public/images/devices/ZCR1-40EM.png and b/public/images/devices/ZCR1-40EM.png differ diff --git a/public/images/devices/ZCTS-808.png b/public/images/devices/ZCTS-808.png index a2604107c46d4..c22e84da59ff4 100644 Binary files a/public/images/devices/ZCTS-808.png and b/public/images/devices/ZCTS-808.png differ diff --git a/public/images/devices/ZD08.png b/public/images/devices/ZD08.png index a3970d74b660e..8ea926c7a77dd 100644 Binary files a/public/images/devices/ZD08.png and b/public/images/devices/ZD08.png differ diff --git a/public/images/devices/ZFP-1A-CH.png b/public/images/devices/ZFP-1A-CH.png index b1cc4b876dc02..83c7f14fabadd 100644 Binary files a/public/images/devices/ZFP-1A-CH.png and b/public/images/devices/ZFP-1A-CH.png differ diff --git a/public/images/devices/ZFU-1D-CH.png b/public/images/devices/ZFU-1D-CH.png index b1cc4b876dc02..83c7f14fabadd 100644 Binary files a/public/images/devices/ZFU-1D-CH.png and b/public/images/devices/ZFU-1D-CH.png differ diff --git a/public/images/devices/ZG-101ZL.png b/public/images/devices/ZG-101ZL.png index 006645957a1aa..2feab13a3d25c 100644 Binary files a/public/images/devices/ZG-101ZL.png and b/public/images/devices/ZG-101ZL.png differ diff --git a/public/images/devices/ZG-102ZL.png b/public/images/devices/ZG-102ZL.png index 18fbbbeb1083f..8f28ba70cc7ff 100644 Binary files a/public/images/devices/ZG-102ZL.png and b/public/images/devices/ZG-102ZL.png differ diff --git a/public/images/devices/ZG-2002-RF.png b/public/images/devices/ZG-2002-RF.png index 753707ad8d258..e432f81621e67 100644 Binary files a/public/images/devices/ZG-2002-RF.png and b/public/images/devices/ZG-2002-RF.png differ diff --git a/public/images/devices/ZG-204ZL.png b/public/images/devices/ZG-204ZL.png index a27bce8255d69..222c8c1222300 100644 Binary files a/public/images/devices/ZG-204ZL.png and b/public/images/devices/ZG-204ZL.png differ diff --git a/public/images/devices/ZG-205-B.png b/public/images/devices/ZG-205-B.png index 3f804e6b047d6..e840e084240ab 100644 Binary files a/public/images/devices/ZG-205-B.png and b/public/images/devices/ZG-205-B.png differ diff --git a/public/images/devices/ZG-205Z-A.png b/public/images/devices/ZG-205Z-A.png index bc939a5c36737..972daf9a74335 100644 Binary files a/public/images/devices/ZG-205Z-A.png and b/public/images/devices/ZG-205Z-A.png differ diff --git a/public/images/devices/ZG-205Z.png b/public/images/devices/ZG-205Z.png index 3f804e6b047d6..e840e084240ab 100644 Binary files a/public/images/devices/ZG-205Z.png and b/public/images/devices/ZG-205Z.png differ diff --git a/public/images/devices/ZG-225Z.png b/public/images/devices/ZG-225Z.png index 19ef4169b1a99..4c37336acf1e9 100644 Binary files a/public/images/devices/ZG-225Z.png and b/public/images/devices/ZG-225Z.png differ diff --git a/public/images/devices/ZG-227Z.png b/public/images/devices/ZG-227Z.png index 9e497302a9528..46a07a8e924bd 100644 Binary files a/public/images/devices/ZG-227Z.png and b/public/images/devices/ZG-227Z.png differ diff --git a/public/images/devices/ZG-227ZL.png b/public/images/devices/ZG-227ZL.png index 97b39bb2b3b37..fefacf420a50b 100644 Binary files a/public/images/devices/ZG-227ZL.png and b/public/images/devices/ZG-227ZL.png differ diff --git a/public/images/devices/ZG102-BOX-UNIDIM.png b/public/images/devices/ZG102-BOX-UNIDIM.png index 9bb14d48e9bdb..7f9a5dd937151 100644 Binary files a/public/images/devices/ZG102-BOX-UNIDIM.png and b/public/images/devices/ZG102-BOX-UNIDIM.png differ diff --git a/public/images/devices/ZG192910-4.png b/public/images/devices/ZG192910-4.png index 12ab2914131b4..36fc3e1870744 100644 Binary files a/public/images/devices/ZG192910-4.png and b/public/images/devices/ZG192910-4.png differ diff --git a/public/images/devices/ZG2819S-CCT.png b/public/images/devices/ZG2819S-CCT.png index bf1bc3bb19764..a18e282c5a582 100644 Binary files a/public/images/devices/ZG2819S-CCT.png and b/public/images/devices/ZG2819S-CCT.png differ diff --git a/public/images/devices/ZG2835.png b/public/images/devices/ZG2835.png index 28340d096ff14..024f3007e3daf 100644 Binary files a/public/images/devices/ZG2835.png and b/public/images/devices/ZG2835.png differ diff --git a/public/images/devices/ZG2835RAC.png b/public/images/devices/ZG2835RAC.png index 38d5338a9cdeb..c0adc3a0c25bb 100644 Binary files a/public/images/devices/ZG2835RAC.png and b/public/images/devices/ZG2835RAC.png differ diff --git a/public/images/devices/ZG2858A.png b/public/images/devices/ZG2858A.png index d875325c41f87..108933e5caa6e 100644 Binary files a/public/images/devices/ZG2858A.png and b/public/images/devices/ZG2858A.png differ diff --git a/public/images/devices/ZG302-BOX-RELAY.png b/public/images/devices/ZG302-BOX-RELAY.png index 33649fdefbd65..6b027d5aad91b 100644 Binary files a/public/images/devices/ZG302-BOX-RELAY.png and b/public/images/devices/ZG302-BOX-RELAY.png differ diff --git a/public/images/devices/ZG401224.png b/public/images/devices/ZG401224.png index 2dfc3b8f29230..e695ec9c9b1fd 100644 Binary files a/public/images/devices/ZG401224.png and b/public/images/devices/ZG401224.png differ diff --git a/public/images/devices/ZG430700.png b/public/images/devices/ZG430700.png index 7d35ea0a0d4f3..5ed97a7af65af 100644 Binary files a/public/images/devices/ZG430700.png and b/public/images/devices/ZG430700.png differ diff --git a/public/images/devices/ZG50CC-CCT-DRIVER.png b/public/images/devices/ZG50CC-CCT-DRIVER.png index b5fed5fba25c0..8d3d1da8b0578 100644 Binary files a/public/images/devices/ZG50CC-CCT-DRIVER.png and b/public/images/devices/ZG50CC-CCT-DRIVER.png differ diff --git a/public/images/devices/ZG9101SAC-HP-Switch.png b/public/images/devices/ZG9101SAC-HP-Switch.png index 4591474884aa9..e92d9cdd11ff2 100644 Binary files a/public/images/devices/ZG9101SAC-HP-Switch.png and b/public/images/devices/ZG9101SAC-HP-Switch.png differ diff --git a/public/images/devices/ZG9101SAC-HP.png b/public/images/devices/ZG9101SAC-HP.png index d1ba33014c8ac..669f6a63af557 100644 Binary files a/public/images/devices/ZG9101SAC-HP.png and b/public/images/devices/ZG9101SAC-HP.png differ diff --git a/public/images/devices/ZGR904-S.png b/public/images/devices/ZGR904-S.png index b78f5e96c5f15..5207a9b54f45e 100644 Binary files a/public/images/devices/ZGR904-S.png and b/public/images/devices/ZGR904-S.png differ diff --git a/public/images/devices/ZG_LED_DRIVER42CC.png b/public/images/devices/ZG_LED_DRIVER42CC.png index 556f99be19286..021fefccaa2bc 100644 Binary files a/public/images/devices/ZG_LED_DRIVER42CC.png and b/public/images/devices/ZG_LED_DRIVER42CC.png differ diff --git a/public/images/devices/ZHEMI101.png b/public/images/devices/ZHEMI101.png index d98c48b8c1850..f92f26414e33d 100644 Binary files a/public/images/devices/ZHEMI101.png and b/public/images/devices/ZHEMI101.png differ diff --git a/public/images/devices/ZHS-15.png b/public/images/devices/ZHS-15.png index 1c67b89b4d03a..9458aca6d840d 100644 Binary files a/public/images/devices/ZHS-15.png and b/public/images/devices/ZHS-15.png differ diff --git a/public/images/devices/ZK-EU-2U.png b/public/images/devices/ZK-EU-2U.png index 0f7fbd2d9acb3..ab88b181d99b2 100644 Binary files a/public/images/devices/ZK-EU-2U.png and b/public/images/devices/ZK-EU-2U.png differ diff --git a/public/images/devices/ZK-EU.png b/public/images/devices/ZK-EU.png index e9166bc06028a..ee34d2379b768 100644 Binary files a/public/images/devices/ZK-EU.png and b/public/images/devices/ZK-EU.png differ diff --git a/public/images/devices/ZK03840.png b/public/images/devices/ZK03840.png index 87645e177835c..919e59fa2a4d9 100644 Binary files a/public/images/devices/ZK03840.png and b/public/images/devices/ZK03840.png differ diff --git a/public/images/devices/ZL00030014.png b/public/images/devices/ZL00030014.png index 6ecee0480aad2..4951864154af6 100644 Binary files a/public/images/devices/ZL00030014.png and b/public/images/devices/ZL00030014.png differ diff --git a/public/images/devices/ZL1000100-CCT-US-V1A02.png b/public/images/devices/ZL1000100-CCT-US-V1A02.png index 3346f6a5790cd..738112b08ff79 100644 Binary files a/public/images/devices/ZL1000100-CCT-US-V1A02.png and b/public/images/devices/ZL1000100-CCT-US-V1A02.png differ diff --git a/public/images/devices/ZL100010008.png b/public/images/devices/ZL100010008.png index 663479c11fd10..def3caf552751 100644 Binary files a/public/images/devices/ZL100010008.png and b/public/images/devices/ZL100010008.png differ diff --git a/public/images/devices/ZL1000400-CCT-EU-2-V1A02.png b/public/images/devices/ZL1000400-CCT-EU-2-V1A02.png index 3991933ed2875..b3ca42c0ae5d3 100644 Binary files a/public/images/devices/ZL1000400-CCT-EU-2-V1A02.png and b/public/images/devices/ZL1000400-CCT-EU-2-V1A02.png differ diff --git a/public/images/devices/ZL100050004.png b/public/images/devices/ZL100050004.png index 4d548704a57a7..d4d17ad2a5e8c 100644 Binary files a/public/images/devices/ZL100050004.png and b/public/images/devices/ZL100050004.png differ diff --git a/public/images/devices/ZL1000700-22-EU-V1A02.png b/public/images/devices/ZL1000700-22-EU-V1A02.png index 75471286a3c0c..9ec883fd37843 100644 Binary files a/public/images/devices/ZL1000700-22-EU-V1A02.png and b/public/images/devices/ZL1000700-22-EU-V1A02.png differ diff --git a/public/images/devices/ZL1000701-27-EU-V1A02.png b/public/images/devices/ZL1000701-27-EU-V1A02.png index 06e330845773c..bef5b6f1af036 100644 Binary files a/public/images/devices/ZL1000701-27-EU-V1A02.png and b/public/images/devices/ZL1000701-27-EU-V1A02.png differ diff --git a/public/images/devices/ZL13100314.png b/public/images/devices/ZL13100314.png index 862570f68cdd4..12c302c3e1c13 100644 Binary files a/public/images/devices/ZL13100314.png and b/public/images/devices/ZL13100314.png differ diff --git a/public/images/devices/ZLD-RCW_1.png b/public/images/devices/ZLD-RCW_1.png index 0b3bd81a3d840..43404724ab7a5 100644 Binary files a/public/images/devices/ZLD-RCW_1.png and b/public/images/devices/ZLD-RCW_1.png differ diff --git a/public/images/devices/ZLD-RCW_2.png b/public/images/devices/ZLD-RCW_2.png index 30da6b82c2216..4d6794c1d2ac2 100644 Binary files a/public/images/devices/ZLD-RCW_2.png and b/public/images/devices/ZLD-RCW_2.png differ diff --git a/public/images/devices/ZLED-2709.png b/public/images/devices/ZLED-2709.png index 076c68c98501d..d97bcb0d4b1b1 100644 Binary files a/public/images/devices/ZLED-2709.png and b/public/images/devices/ZLED-2709.png differ diff --git a/public/images/devices/ZLED-RGB9.png b/public/images/devices/ZLED-RGB9.png index 6d4cfc0a5416e..10ee87271bcd1 100644 Binary files a/public/images/devices/ZLED-RGB9.png and b/public/images/devices/ZLED-RGB9.png differ diff --git a/public/images/devices/ZLED-TUNE9.png b/public/images/devices/ZLED-TUNE9.png index 556191ba6088b..6001121e4aa9a 100644 Binary files a/public/images/devices/ZLED-TUNE9.png and b/public/images/devices/ZLED-TUNE9.png differ diff --git a/public/images/devices/ZLGP14-ZLGP15-ZLGP16.png b/public/images/devices/ZLGP14-ZLGP15-ZLGP16.png index 1f0ebd8600e02..733e28847f4fd 100644 Binary files a/public/images/devices/ZLGP14-ZLGP15-ZLGP16.png and b/public/images/devices/ZLGP14-ZLGP15-ZLGP16.png differ diff --git a/public/images/devices/ZLGP15.png b/public/images/devices/ZLGP15.png index 1721aa772032f..0006bb514162a 100644 Binary files a/public/images/devices/ZLGP15.png and b/public/images/devices/ZLGP15.png differ diff --git a/public/images/devices/ZLGP17-ZLGP18.png b/public/images/devices/ZLGP17-ZLGP18.png index 1226fc15f4547..097649a25dcae 100644 Binary files a/public/images/devices/ZLGP17-ZLGP18.png and b/public/images/devices/ZLGP17-ZLGP18.png differ diff --git a/public/images/devices/ZLLA5004M.png b/public/images/devices/ZLLA5004M.png index a4d67594bec8f..93fb7add4d707 100644 Binary files a/public/images/devices/ZLLA5004M.png and b/public/images/devices/ZLLA5004M.png differ diff --git a/public/images/devices/ZLLCD5004M.png b/public/images/devices/ZLLCD5004M.png index a4d67594bec8f..93fb7add4d707 100644 Binary files a/public/images/devices/ZLLCD5004M.png and b/public/images/devices/ZLLCD5004M.png differ diff --git a/public/images/devices/ZLLHS4.png b/public/images/devices/ZLLHS4.png index a4d67594bec8f..93fb7add4d707 100644 Binary files a/public/images/devices/ZLLHS4.png and b/public/images/devices/ZLLHS4.png differ diff --git a/public/images/devices/ZLLLS5004M.png b/public/images/devices/ZLLLS5004M.png index a4d67594bec8f..93fb7add4d707 100644 Binary files a/public/images/devices/ZLLLS5004M.png and b/public/images/devices/ZLLLS5004M.png differ diff --git a/public/images/devices/ZLinky_TIC.png b/public/images/devices/ZLinky_TIC.png index 21c92c6b10ad5..57aa87db5a12c 100644 Binary files a/public/images/devices/ZLinky_TIC.png and b/public/images/devices/ZLinky_TIC.png differ diff --git a/public/images/devices/ZM-35H-Q.png b/public/images/devices/ZM-35H-Q.png index a27bce8255d69..222c8c1222300 100644 Binary files a/public/images/devices/ZM-35H-Q.png and b/public/images/devices/ZM-35H-Q.png differ diff --git a/public/images/devices/ZM-CSW002-D_switch.png b/public/images/devices/ZM-CSW002-D_switch.png index 07d7f1b246252..ac608f9acd41b 100644 Binary files a/public/images/devices/ZM-CSW002-D_switch.png and b/public/images/devices/ZM-CSW002-D_switch.png differ diff --git a/public/images/devices/ZM-H7.png b/public/images/devices/ZM-H7.png index 2bd8fecc17428..31d5dd156594f 100644 Binary files a/public/images/devices/ZM-H7.png and b/public/images/devices/ZM-H7.png differ diff --git a/public/images/devices/ZM16EL-03-33.png b/public/images/devices/ZM16EL-03-33.png index b55cd9eefc2c3..c19f677ae0798 100644 Binary files a/public/images/devices/ZM16EL-03-33.png and b/public/images/devices/ZM16EL-03-33.png differ diff --git a/public/images/devices/ZM25EL.png b/public/images/devices/ZM25EL.png index f2b0b4d8a058a..4178b9fab3cf3 100644 Binary files a/public/images/devices/ZM25EL.png and b/public/images/devices/ZM25EL.png differ diff --git a/public/images/devices/ZM25RX-08-30.png b/public/images/devices/ZM25RX-08-30.png index 2645039948415..363d8c25693ea 100644 Binary files a/public/images/devices/ZM25RX-08-30.png and b/public/images/devices/ZM25RX-08-30.png differ diff --git a/public/images/devices/ZM350STW1TCF.png b/public/images/devices/ZM350STW1TCF.png index 292590df4b333..3457105c89940 100644 Binary files a/public/images/devices/ZM350STW1TCF.png and b/public/images/devices/ZM350STW1TCF.png differ diff --git a/public/images/devices/ZM79E-DT.png b/public/images/devices/ZM79E-DT.png index 36c8b340a9db2..a87f7d4bd7148 100644 Binary files a/public/images/devices/ZM79E-DT.png and b/public/images/devices/ZM79E-DT.png differ diff --git a/public/images/devices/ZM85EL-1Z.png b/public/images/devices/ZM85EL-1Z.png index 84f79f99ac264..6057e87eb2a1d 100644 Binary files a/public/images/devices/ZM85EL-1Z.png and b/public/images/devices/ZM85EL-1Z.png differ diff --git a/public/images/devices/ZM85EL-2Z.png b/public/images/devices/ZM85EL-2Z.png index 398e07a872d81..d85347b3ea200 100644 Binary files a/public/images/devices/ZM85EL-2Z.png and b/public/images/devices/ZM85EL-2Z.png differ diff --git a/public/images/devices/ZMS-102.png b/public/images/devices/ZMS-102.png index c515e43c20da5..3bdcc11af8e72 100644 Binary files a/public/images/devices/ZMS-102.png and b/public/images/devices/ZMS-102.png differ diff --git a/public/images/devices/ZMS01.png b/public/images/devices/ZMS01.png index d924d3cd73d1f..12acec7a4e073 100644 Binary files a/public/images/devices/ZMS01.png and b/public/images/devices/ZMS01.png differ diff --git a/public/images/devices/ZMS4.png b/public/images/devices/ZMS4.png index 63c72e99bf074..f0ff2094f83f0 100644 Binary files a/public/images/devices/ZMS4.png and b/public/images/devices/ZMS4.png differ diff --git a/public/images/devices/ZN-LC1E.png b/public/images/devices/ZN-LC1E.png index 28379aeeee5fb..91c8e6c36a169 100644 Binary files a/public/images/devices/ZN-LC1E.png and b/public/images/devices/ZN-LC1E.png differ diff --git a/public/images/devices/ZN231392.png b/public/images/devices/ZN231392.png index 1137bbcd19b51..aa6f2fa696780 100644 Binary files a/public/images/devices/ZN231392.png and b/public/images/devices/ZN231392.png differ diff --git a/public/images/devices/ZNCZ03LM.png b/public/images/devices/ZNCZ03LM.png index 23d7f88d5eefe..59ed9dc50a479 100644 Binary files a/public/images/devices/ZNCZ03LM.png and b/public/images/devices/ZNCZ03LM.png differ diff --git a/public/images/devices/ZNQBKG24LM.png b/public/images/devices/ZNQBKG24LM.png index b39a88109b185..8be0e9188ebc7 100644 Binary files a/public/images/devices/ZNQBKG24LM.png and b/public/images/devices/ZNQBKG24LM.png differ diff --git a/public/images/devices/ZP-LZ-FR2U.png b/public/images/devices/ZP-LZ-FR2U.png index 2a2075550450f..004d915b6b13c 100644 Binary files a/public/images/devices/ZP-LZ-FR2U.png and b/public/images/devices/ZP-LZ-FR2U.png differ diff --git a/public/images/devices/ZP01.png b/public/images/devices/ZP01.png index c0833b66e1286..4269cc36c11b6 100644 Binary files a/public/images/devices/ZP01.png and b/public/images/devices/ZP01.png differ diff --git a/public/images/devices/ZPIR-8000.png b/public/images/devices/ZPIR-8000.png index 859335dd8c28a..144565bbb155c 100644 Binary files a/public/images/devices/ZPIR-8000.png and b/public/images/devices/ZPIR-8000.png differ diff --git a/public/images/devices/ZPLUG_Boost.png b/public/images/devices/ZPLUG_Boost.png index 788b43be2d35c..d4107cad22b0e 100644 Binary files a/public/images/devices/ZPLUG_Boost.png and b/public/images/devices/ZPLUG_Boost.png differ diff --git a/public/images/devices/ZRS-SR-EUC-GY.png b/public/images/devices/ZRS-SR-EUC-GY.png index c2440602dfaab..6e2f8f83ac689 100644 Binary files a/public/images/devices/ZRS-SR-EUC-GY.png and b/public/images/devices/ZRS-SR-EUC-GY.png differ diff --git a/public/images/devices/ZS-EUB_1gang.png b/public/images/devices/ZS-EUB_1gang.png index d5d7b7a0c28ed..8d83814aa1bbe 100644 Binary files a/public/images/devices/ZS-EUB_1gang.png and b/public/images/devices/ZS-EUB_1gang.png differ diff --git a/public/images/devices/ZS-EUB_2gang.png b/public/images/devices/ZS-EUB_2gang.png index 94dc26faca397..29850f9171448 100644 Binary files a/public/images/devices/ZS-EUB_2gang.png and b/public/images/devices/ZS-EUB_2gang.png differ diff --git a/public/images/devices/ZS-EUD.png b/public/images/devices/ZS-EUD.png index d62945ac23a46..5712185f77038 100644 Binary files a/public/images/devices/ZS-EUD.png and b/public/images/devices/ZS-EUD.png differ diff --git a/public/images/devices/ZS-SR-EUD-1.png b/public/images/devices/ZS-SR-EUD-1.png index 8f6d1fe8359d4..b3acab5b8a7c0 100644 Binary files a/public/images/devices/ZS-SR-EUD-1.png and b/public/images/devices/ZS-SR-EUD-1.png differ diff --git a/public/images/devices/ZS-SR-EUD-2.png b/public/images/devices/ZS-SR-EUD-2.png index fb69974dd3d51..e86fea7f4470f 100644 Binary files a/public/images/devices/ZS-SR-EUD-2.png and b/public/images/devices/ZS-SR-EUD-2.png differ diff --git a/public/images/devices/ZS-SR-EUD-3.png b/public/images/devices/ZS-SR-EUD-3.png index 414864f1881ef..6271a2651ad2f 100644 Binary files a/public/images/devices/ZS-SR-EUD-3.png and b/public/images/devices/ZS-SR-EUD-3.png differ diff --git a/public/images/devices/ZS-TYG3-SM-21Z.png b/public/images/devices/ZS-TYG3-SM-21Z.png index e6a7257116773..7e14a99cc1293 100644 Binary files a/public/images/devices/ZS-TYG3-SM-21Z.png and b/public/images/devices/ZS-TYG3-SM-21Z.png differ diff --git a/public/images/devices/ZS-TYG3-SM-31Z.png b/public/images/devices/ZS-TYG3-SM-31Z.png index d0d8ec58431dd..43927d78489bb 100644 Binary files a/public/images/devices/ZS-TYG3-SM-31Z.png and b/public/images/devices/ZS-TYG3-SM-31Z.png differ diff --git a/public/images/devices/ZS-TYG3-SM-41Z.png b/public/images/devices/ZS-TYG3-SM-41Z.png index cca67afa71369..776c00c7fd618 100644 Binary files a/public/images/devices/ZS-TYG3-SM-41Z.png and b/public/images/devices/ZS-TYG3-SM-41Z.png differ diff --git a/public/images/devices/ZS-TYG3-SM-61Z.png b/public/images/devices/ZS-TYG3-SM-61Z.png index 7656adb3114b5..294697c100ba6 100644 Binary files a/public/images/devices/ZS-TYG3-SM-61Z.png and b/public/images/devices/ZS-TYG3-SM-61Z.png differ diff --git a/public/images/devices/ZS-US2-WH-MS.png b/public/images/devices/ZS-US2-WH-MS.png index 82a8e70dfac70..8c5dd8a793b43 100644 Binary files a/public/images/devices/ZS-US2-WH-MS.png and b/public/images/devices/ZS-US2-WH-MS.png differ diff --git a/public/images/devices/ZS057-D0Z.png b/public/images/devices/ZS057-D0Z.png index 26209173e6521..22219bc76f968 100644 Binary files a/public/images/devices/ZS057-D0Z.png and b/public/images/devices/ZS057-D0Z.png differ diff --git a/public/images/devices/ZS06.png b/public/images/devices/ZS06.png index 114a87ef889b8..ee6a55900f244 100644 Binary files a/public/images/devices/ZS06.png and b/public/images/devices/ZS06.png differ diff --git a/public/images/devices/ZS1100400-IN-V1A02.png b/public/images/devices/ZS1100400-IN-V1A02.png index aef59534c6cbe..1d2aeb521b8c9 100644 Binary files a/public/images/devices/ZS1100400-IN-V1A02.png and b/public/images/devices/ZS1100400-IN-V1A02.png differ diff --git a/public/images/devices/ZS110050078.png b/public/images/devices/ZS110050078.png index a5d7a498e6eb4..22cdb281db9d9 100644 Binary files a/public/images/devices/ZS110050078.png and b/public/images/devices/ZS110050078.png differ diff --git a/public/images/devices/ZS130000078.png b/public/images/devices/ZS130000078.png index 4cb3711c5f8d0..8b968cf5a97f2 100644 Binary files a/public/images/devices/ZS130000078.png and b/public/images/devices/ZS130000078.png differ diff --git a/public/images/devices/ZS130000178.png b/public/images/devices/ZS130000178.png index 4dc83eea8ecaf..85b8c1e2ed57e 100644 Binary files a/public/images/devices/ZS130000178.png and b/public/images/devices/ZS130000178.png differ diff --git a/public/images/devices/ZS190000118.png b/public/images/devices/ZS190000118.png index 98dd88e1524ae..39c7133628b35 100644 Binary files a/public/images/devices/ZS190000118.png and b/public/images/devices/ZS190000118.png differ diff --git a/public/images/devices/ZS230002.png b/public/images/devices/ZS230002.png index 0665e5935cbfa..9c4eba3e36d7e 100644 Binary files a/public/images/devices/ZS230002.png and b/public/images/devices/ZS230002.png differ diff --git a/public/images/devices/ZS232000178.png b/public/images/devices/ZS232000178.png index 73e67d9e46a2c..cc5e54a5edadb 100644 Binary files a/public/images/devices/ZS232000178.png and b/public/images/devices/ZS232000178.png differ diff --git a/public/images/devices/ZSDR-850.png b/public/images/devices/ZSDR-850.png index 7151b97269fef..555b0ccc6d7fd 100644 Binary files a/public/images/devices/ZSDR-850.png and b/public/images/devices/ZSDR-850.png differ diff --git a/public/images/devices/ZSQB-SMB-ZB.png b/public/images/devices/ZSQB-SMB-ZB.png index 49240422c78b3..04adaa463a43b 100644 Binary files a/public/images/devices/ZSQB-SMB-ZB.png and b/public/images/devices/ZSQB-SMB-ZB.png differ diff --git a/public/images/devices/ZSS-JM-GWM-C-MS.png b/public/images/devices/ZSS-JM-GWM-C-MS.png index ccfe3a29736c0..83078a1859b4c 100644 Binary files a/public/images/devices/ZSS-JM-GWM-C-MS.png and b/public/images/devices/ZSS-JM-GWM-C-MS.png differ diff --git a/public/images/devices/ZSS-X-GWM-C.png b/public/images/devices/ZSS-X-GWM-C.png index 0ba9884d800a2..635472b67f2c9 100644 Binary files a/public/images/devices/ZSS-X-GWM-C.png and b/public/images/devices/ZSS-X-GWM-C.png differ diff --git a/public/images/devices/ZSS-ZK-THL.png b/public/images/devices/ZSS-ZK-THL.png index 59e86aff9c1d3..a35705f3a8f07 100644 Binary files a/public/images/devices/ZSS-ZK-THL.png and b/public/images/devices/ZSS-ZK-THL.png differ diff --git a/public/images/devices/ZSTY-SM-11ZG-US-W.png b/public/images/devices/ZSTY-SM-11ZG-US-W.png index 49240422c78b3..04adaa463a43b 100644 Binary files a/public/images/devices/ZSTY-SM-11ZG-US-W.png and b/public/images/devices/ZSTY-SM-11ZG-US-W.png differ diff --git a/public/images/devices/ZSTY-SM-1CTZG-US-W.png b/public/images/devices/ZSTY-SM-1CTZG-US-W.png index deefb155e8338..0066aa148a532 100644 Binary files a/public/images/devices/ZSTY-SM-1CTZG-US-W.png and b/public/images/devices/ZSTY-SM-1CTZG-US-W.png differ diff --git a/public/images/devices/ZSTY-SM-1DMZG-EU.png b/public/images/devices/ZSTY-SM-1DMZG-EU.png index 7e2389422e6c5..bd93d1e5dbd9b 100644 Binary files a/public/images/devices/ZSTY-SM-1DMZG-EU.png and b/public/images/devices/ZSTY-SM-1DMZG-EU.png differ diff --git a/public/images/devices/ZSTY-SM-1DMZG-US-W.png b/public/images/devices/ZSTY-SM-1DMZG-US-W.png index 77c8709abfe10..1a2700dd12b99 100644 Binary files a/public/images/devices/ZSTY-SM-1DMZG-US-W.png and b/public/images/devices/ZSTY-SM-1DMZG-US-W.png differ diff --git a/public/images/devices/ZSTY-SM-1DMZG-US-W_1.png b/public/images/devices/ZSTY-SM-1DMZG-US-W_1.png index 0b6df9d666d7e..6d89aa257d5c9 100644 Binary files a/public/images/devices/ZSTY-SM-1DMZG-US-W_1.png and b/public/images/devices/ZSTY-SM-1DMZG-US-W_1.png differ diff --git a/public/images/devices/ZSTY-SM-1SRZG-EU.png b/public/images/devices/ZSTY-SM-1SRZG-EU.png index 85a0c263ea9fb..a79017d6e0866 100644 Binary files a/public/images/devices/ZSTY-SM-1SRZG-EU.png and b/public/images/devices/ZSTY-SM-1SRZG-EU.png differ diff --git a/public/images/devices/ZT-SR-EU4.png b/public/images/devices/ZT-SR-EU4.png index 6367ec8de5055..1f7d348cb46ba 100644 Binary files a/public/images/devices/ZT-SR-EU4.png and b/public/images/devices/ZT-SR-EU4.png differ diff --git a/public/images/devices/ZTH01.png b/public/images/devices/ZTH01.png index 1d0b84fdf0bb0..1b736ef3860a2 100644 Binary files a/public/images/devices/ZTH01.png and b/public/images/devices/ZTH01.png differ diff --git a/public/images/devices/ZTH02.png b/public/images/devices/ZTH02.png index 138a771f82ed6..bee59d4b520a9 100644 Binary files a/public/images/devices/ZTH02.png and b/public/images/devices/ZTH02.png differ diff --git a/public/images/devices/ZTH05.png b/public/images/devices/ZTH05.png index ae42d56697b93..f183ef71aa74c 100644 Binary files a/public/images/devices/ZTH05.png and b/public/images/devices/ZTH05.png differ diff --git a/public/images/devices/ZTH08-E.png b/public/images/devices/ZTH08-E.png index f8df86acbf38d..121328a1b3275 100644 Binary files a/public/images/devices/ZTH08-E.png and b/public/images/devices/ZTH08-E.png differ diff --git a/public/images/devices/ZTRV-ZX-TV01-MS.png b/public/images/devices/ZTRV-ZX-TV01-MS.png index 039a2b5d29d19..f7ef37569c089 100644 Binary files a/public/images/devices/ZTRV-ZX-TV01-MS.png and b/public/images/devices/ZTRV-ZX-TV01-MS.png differ diff --git a/public/images/devices/ZTS-EUR-C.png b/public/images/devices/ZTS-EUR-C.png index 9a4315a6db6a8..50a82aef043dd 100644 Binary files a/public/images/devices/ZTS-EUR-C.png and b/public/images/devices/ZTS-EUR-C.png differ diff --git a/public/images/devices/ZTS-EU_2gang.png b/public/images/devices/ZTS-EU_2gang.png index d1f36fe2b4ced..c85d9df8bcc26 100644 Binary files a/public/images/devices/ZTS-EU_2gang.png and b/public/images/devices/ZTS-EU_2gang.png differ diff --git a/public/images/devices/ZTS-EU_3gang.png b/public/images/devices/ZTS-EU_3gang.png index 414864f1881ef..96866bab1e078 100644 Binary files a/public/images/devices/ZTS-EU_3gang.png and b/public/images/devices/ZTS-EU_3gang.png differ diff --git a/public/images/devices/ZTS-EU_4gang.png b/public/images/devices/ZTS-EU_4gang.png index 129e06a3e64da..c1b7fc5e3b423 100644 Binary files a/public/images/devices/ZTS-EU_4gang.png and b/public/images/devices/ZTS-EU_4gang.png differ diff --git a/public/images/devices/ZVG1.png b/public/images/devices/ZVG1.png index 2068c6157ee4a..b39d7c3d6388f 100644 Binary files a/public/images/devices/ZVG1.png and b/public/images/devices/ZVG1.png differ diff --git a/public/images/devices/ZW-EC-01.png b/public/images/devices/ZW-EC-01.png index 86808f5d09a66..f1e06cd8d1416 100644 Binary files a/public/images/devices/ZW-EC-01.png and b/public/images/devices/ZW-EC-01.png differ diff --git a/public/images/devices/ZW-EU-4C.png b/public/images/devices/ZW-EU-4C.png index 4747adced80cd..9dd66e3133669 100644 Binary files a/public/images/devices/ZW-EU-4C.png and b/public/images/devices/ZW-EU-4C.png differ diff --git a/public/images/devices/ZWLD-100.png b/public/images/devices/ZWLD-100.png index 933be2bfef5d2..f872bb85d05fa 100644 Binary files a/public/images/devices/ZWLD-100.png and b/public/images/devices/ZWLD-100.png differ diff --git a/public/images/devices/ZWSM16-1-Zigbee.png b/public/images/devices/ZWSM16-1-Zigbee.png index c6bd06b745508..2a8cd87015372 100644 Binary files a/public/images/devices/ZWSM16-1-Zigbee.png and b/public/images/devices/ZWSM16-1-Zigbee.png differ diff --git a/public/images/devices/ZWSM16-2-Zigbee.png b/public/images/devices/ZWSM16-2-Zigbee.png index 0f06c638c4b26..d98232a1b60ab 100644 Binary files a/public/images/devices/ZWSM16-2-Zigbee.png and b/public/images/devices/ZWSM16-2-Zigbee.png differ diff --git a/public/images/devices/ZWSM16-3-Zigbee.png b/public/images/devices/ZWSM16-3-Zigbee.png index 5a962cbdc0165..271fe8ae6811b 100644 Binary files a/public/images/devices/ZWSM16-3-Zigbee.png and b/public/images/devices/ZWSM16-3-Zigbee.png differ diff --git a/public/images/devices/ZWSM16-4-Zigbee.png b/public/images/devices/ZWSM16-4-Zigbee.png index 6200c07184ec3..670614e708170 100644 Binary files a/public/images/devices/ZWSM16-4-Zigbee.png and b/public/images/devices/ZWSM16-4-Zigbee.png differ diff --git a/public/images/devices/ZWT198-ZWT100-BH.png b/public/images/devices/ZWT198-ZWT100-BH.png index 2e71192804cf8..62351882918d3 100644 Binary files a/public/images/devices/ZWT198-ZWT100-BH.png and b/public/images/devices/ZWT198-ZWT100-BH.png differ diff --git a/public/images/devices/ZWallRemote0.png b/public/images/devices/ZWallRemote0.png index 14f94d7fc7863..dece6035acd79 100644 Binary files a/public/images/devices/ZWallRemote0.png and b/public/images/devices/ZWallRemote0.png differ diff --git a/public/images/devices/ZX-5311.png b/public/images/devices/ZX-5311.png index c05767f1a9156..9120e85ee8c94 100644 Binary files a/public/images/devices/ZX-5311.png and b/public/images/devices/ZX-5311.png differ diff --git a/public/images/devices/ZXZIR-02.png b/public/images/devices/ZXZIR-02.png index 8f9e6bfd75599..f21f33a1d0abd 100644 Binary files a/public/images/devices/ZXZIR-02.png and b/public/images/devices/ZXZIR-02.png differ diff --git a/public/images/devices/ZY-M100-L.png b/public/images/devices/ZY-M100-L.png index 08d1c7836e4b1..93e158b2f05bd 100644 Binary files a/public/images/devices/ZY-M100-L.png and b/public/images/devices/ZY-M100-L.png differ diff --git a/public/images/devices/ZYA-C4-MOD-S.png b/public/images/devices/ZYA-C4-MOD-S.png index b174542b15320..ad5dea267b0c9 100644 Binary files a/public/images/devices/ZYA-C4-MOD-S.png and b/public/images/devices/ZYA-C4-MOD-S.png differ diff --git a/public/images/devices/ZYCT-202.png b/public/images/devices/ZYCT-202.png index 0329ebfbc06dd..2135c6d1322d4 100644 Binary files a/public/images/devices/ZYCT-202.png and b/public/images/devices/ZYCT-202.png differ diff --git a/public/images/devices/ZYXH.png b/public/images/devices/ZYXH.png index 6d87fc4e9f48b..c8461ab4fc5dd 100644 Binary files a/public/images/devices/ZYXH.png and b/public/images/devices/ZYXH.png differ diff --git a/public/images/devices/ZeeFlora.png b/public/images/devices/ZeeFlora.png index fe1fc79c4c25a..022b803d82e16 100644 Binary files a/public/images/devices/ZeeFlora.png and b/public/images/devices/ZeeFlora.png differ diff --git a/public/images/devices/ZigUP.png b/public/images/devices/ZigUP.png index cf44e9c6e1287..7d4afcb87ce68 100644 Binary files a/public/images/devices/ZigUP.png and b/public/images/devices/ZigUP.png differ diff --git a/public/images/devices/_TZE204_ztqnh5cg.png b/public/images/devices/_TZE204_ztqnh5cg.png index 04614469d5d6b..ff1344340d59c 100644 Binary files a/public/images/devices/_TZE204_ztqnh5cg.png and b/public/images/devices/_TZE204_ztqnh5cg.png differ diff --git a/public/images/devices/b-parasite.png b/public/images/devices/b-parasite.png index deec9af111c55..68e36880ceb88 100644 Binary files a/public/images/devices/b-parasite.png and b/public/images/devices/b-parasite.png differ diff --git a/public/images/devices/eWeLink ZB-SW05.png b/public/images/devices/eWeLink ZB-SW05.png index 3fe7fcb4dc5ba..446efec152fd9 100644 Binary files a/public/images/devices/eWeLink ZB-SW05.png and b/public/images/devices/eWeLink ZB-SW05.png differ diff --git a/public/images/devices/easyCodeTouch_v1.png b/public/images/devices/easyCodeTouch_v1.png index b2210ea50fec7..6dff6ad9faeae 100644 Binary files a/public/images/devices/easyCodeTouch_v1.png and b/public/images/devices/easyCodeTouch_v1.png differ diff --git a/public/images/devices/gq8b1uv.png b/public/images/devices/gq8b1uv.png index c85ab24046932..21ebf57eaac61 100644 Binary files a/public/images/devices/gq8b1uv.png and b/public/images/devices/gq8b1uv.png differ diff --git a/public/images/devices/iL03_1.png b/public/images/devices/iL03_1.png index f1b9fe491ebd4..726b42c6bfc99 100644 Binary files a/public/images/devices/iL03_1.png and b/public/images/devices/iL03_1.png differ diff --git a/public/images/devices/iL07_1.png b/public/images/devices/iL07_1.png index d6fb874d746f6..0c99f055a2f76 100644 Binary files a/public/images/devices/iL07_1.png and b/public/images/devices/iL07_1.png differ diff --git a/public/images/devices/is-thpl-zb.png b/public/images/devices/is-thpl-zb.png index 5f5acf10fd4c4..9de3de10460af 100644 Binary files a/public/images/devices/is-thpl-zb.png and b/public/images/devices/is-thpl-zb.png differ diff --git a/public/images/devices/mKomfy_Sensor.png b/public/images/devices/mKomfy_Sensor.png index e097309390bb6..a3680c616091b 100644 Binary files a/public/images/devices/mKomfy_Sensor.png and b/public/images/devices/mKomfy_Sensor.png differ diff --git a/public/images/devices/mStikk_Outlet.png b/public/images/devices/mStikk_Outlet.png index 477e11ccd87e0..0efa1ece7629e 100644 Binary files a/public/images/devices/mStikk_Outlet.png and b/public/images/devices/mStikk_Outlet.png differ diff --git a/public/images/devices/mSwitch_Mic.png b/public/images/devices/mSwitch_Mic.png index b1a0683d45bd1..e8a89ea59451d 100644 Binary files a/public/images/devices/mSwitch_Mic.png and b/public/images/devices/mSwitch_Mic.png differ diff --git a/public/images/devices/mTouch_Air_Sensor.png b/public/images/devices/mTouch_Air_Sensor.png index 8e95b94c09118..919c3861a87d5 100644 Binary files a/public/images/devices/mTouch_Air_Sensor.png and b/public/images/devices/mTouch_Air_Sensor.png differ diff --git a/public/images/devices/mTouch_Astro.png b/public/images/devices/mTouch_Astro.png index 22230ffd91d70..b820d9a73c11f 100644 Binary files a/public/images/devices/mTouch_Astro.png and b/public/images/devices/mTouch_Astro.png differ diff --git a/public/images/devices/mTouch_Bryter.png b/public/images/devices/mTouch_Bryter.png index f8a8877dfa081..0e7ac71e40718 100644 Binary files a/public/images/devices/mTouch_Bryter.png and b/public/images/devices/mTouch_Bryter.png differ diff --git a/public/images/devices/mTouch_Dim.png b/public/images/devices/mTouch_Dim.png index 2beb9de420b27..511afe33cf44d 100644 Binary files a/public/images/devices/mTouch_Dim.png and b/public/images/devices/mTouch_Dim.png differ diff --git a/public/images/devices/mTouch_One.png b/public/images/devices/mTouch_One.png index f3bd7e2f4ddef..6bd73844f8833 100644 Binary files a/public/images/devices/mTouch_One.png and b/public/images/devices/mTouch_One.png differ diff --git a/public/images/devices/paulmann_50122.png b/public/images/devices/paulmann_50122.png index 979e1fb979b68..93c0ab8de0bec 100644 Binary files a/public/images/devices/paulmann_50122.png and b/public/images/devices/paulmann_50122.png differ diff --git a/public/images/devices/ptvo.switch.png b/public/images/devices/ptvo.switch.png index b10e124251fab..8c4a914da7813 100644 Binary files a/public/images/devices/ptvo.switch.png and b/public/images/devices/ptvo.switch.png differ diff --git a/public/images/devices/pvto_counter_2ch.png b/public/images/devices/pvto_counter_2ch.png index d4c4642744d95..1d56c83d46596 100644 Binary files a/public/images/devices/pvto_counter_2ch.png and b/public/images/devices/pvto_counter_2ch.png differ diff --git a/public/images/devices/ti.router.png b/public/images/devices/ti.router.png index db951ee933590..7590f1352944e 100644 Binary files a/public/images/devices/ti.router.png and b/public/images/devices/ti.router.png differ diff --git a/public/images/devices/tubeszb.router.png b/public/images/devices/tubeszb.router.png index db951ee933590..7590f1352944e 100644 Binary files a/public/images/devices/tubeszb.router.png and b/public/images/devices/tubeszb.router.png differ