diff --git a/.gitignore b/.gitignore index bc434064..54f866f6 100644 --- a/.gitignore +++ b/.gitignore @@ -2,5 +2,4 @@ .local/ commit-patches/ temp_photos/ -uploads/ .env diff --git a/backend/.gitignore b/backend/.gitignore index 242ba1f0..0989bc79 100644 --- a/backend/.gitignore +++ b/backend/.gitignore @@ -46,7 +46,10 @@ build/ ### Project Specific ### src/test/ tmp/ -uploads/ +uploads/* +!uploads/avatars/ +!uploads/pets/ +!uploads/products/ ### Temp and backup files ### *.backup diff --git a/backend/src/main/resources/db/migration/V8__localize_seed_image_urls.sql b/backend/src/main/resources/db/migration/V8__localize_seed_image_urls.sql new file mode 100644 index 00000000..68c6e01e --- /dev/null +++ b/backend/src/main/resources/db/migration/V8__localize_seed_image_urls.sql @@ -0,0 +1,11 @@ +UPDATE users +SET avatarUrl = REPLACE(avatarUrl, 'https://images.petshop.local/users/', '/uploads/avatars/') +WHERE avatarUrl LIKE 'https://images.petshop.local/users/%'; + +UPDATE pet +SET imageUrl = REPLACE(imageUrl, 'https://images.petshop.local/pets/', '/uploads/pets/') +WHERE imageUrl LIKE 'https://images.petshop.local/pets/%'; + +UPDATE product +SET imageUrl = REPLACE(imageUrl, 'https://images.petshop.local/products/', '/uploads/products/') +WHERE imageUrl LIKE 'https://images.petshop.local/products/%'; diff --git a/backend/uploads/avatars/001.webp b/backend/uploads/avatars/001.webp new file mode 100644 index 00000000..c7f1714f Binary files /dev/null and b/backend/uploads/avatars/001.webp differ diff --git a/backend/uploads/avatars/002.webp b/backend/uploads/avatars/002.webp new file mode 100644 index 00000000..0415e705 Binary files /dev/null and b/backend/uploads/avatars/002.webp differ diff --git a/backend/uploads/avatars/003.webp b/backend/uploads/avatars/003.webp new file mode 100644 index 00000000..999af5e0 Binary files /dev/null and b/backend/uploads/avatars/003.webp differ diff --git a/backend/uploads/avatars/004.webp b/backend/uploads/avatars/004.webp new file mode 100644 index 00000000..e739f364 Binary files /dev/null and b/backend/uploads/avatars/004.webp differ diff --git a/backend/uploads/avatars/005.webp b/backend/uploads/avatars/005.webp new file mode 100644 index 00000000..cf53b9cc Binary files /dev/null and b/backend/uploads/avatars/005.webp differ diff --git a/backend/uploads/avatars/006.webp b/backend/uploads/avatars/006.webp new file mode 100644 index 00000000..9bbfb611 Binary files /dev/null and b/backend/uploads/avatars/006.webp differ diff --git a/backend/uploads/avatars/007.webp b/backend/uploads/avatars/007.webp new file mode 100644 index 00000000..43fe6076 Binary files /dev/null and b/backend/uploads/avatars/007.webp differ diff --git a/backend/uploads/avatars/008.webp b/backend/uploads/avatars/008.webp new file mode 100644 index 00000000..b47718dd Binary files /dev/null and b/backend/uploads/avatars/008.webp differ diff --git a/backend/uploads/avatars/009.webp b/backend/uploads/avatars/009.webp new file mode 100644 index 00000000..cda172e5 Binary files /dev/null and b/backend/uploads/avatars/009.webp differ diff --git a/backend/uploads/avatars/010.webp b/backend/uploads/avatars/010.webp new file mode 100644 index 00000000..8bb1f2b4 Binary files /dev/null and b/backend/uploads/avatars/010.webp differ diff --git a/backend/uploads/avatars/011.webp b/backend/uploads/avatars/011.webp new file mode 100644 index 00000000..8050e761 Binary files /dev/null and b/backend/uploads/avatars/011.webp differ diff --git a/backend/uploads/avatars/012.webp b/backend/uploads/avatars/012.webp new file mode 100644 index 00000000..3f7972fb Binary files /dev/null and b/backend/uploads/avatars/012.webp differ diff --git a/backend/uploads/avatars/013.webp b/backend/uploads/avatars/013.webp new file mode 100644 index 00000000..ae652e3e Binary files /dev/null and b/backend/uploads/avatars/013.webp differ diff --git a/backend/uploads/avatars/014.webp b/backend/uploads/avatars/014.webp new file mode 100644 index 00000000..bb6f3cc8 Binary files /dev/null and b/backend/uploads/avatars/014.webp differ diff --git a/backend/uploads/avatars/015.webp b/backend/uploads/avatars/015.webp new file mode 100644 index 00000000..7a89ff39 Binary files /dev/null and b/backend/uploads/avatars/015.webp differ diff --git a/backend/uploads/avatars/016.webp b/backend/uploads/avatars/016.webp new file mode 100644 index 00000000..7b3c61ba Binary files /dev/null and b/backend/uploads/avatars/016.webp differ diff --git a/backend/uploads/avatars/017.webp b/backend/uploads/avatars/017.webp new file mode 100644 index 00000000..dd561abf Binary files /dev/null and b/backend/uploads/avatars/017.webp differ diff --git a/backend/uploads/avatars/018.webp b/backend/uploads/avatars/018.webp new file mode 100644 index 00000000..ab48bf12 Binary files /dev/null and b/backend/uploads/avatars/018.webp differ diff --git a/backend/uploads/avatars/019.webp b/backend/uploads/avatars/019.webp new file mode 100644 index 00000000..052ba76a Binary files /dev/null and b/backend/uploads/avatars/019.webp differ diff --git a/backend/uploads/avatars/020.webp b/backend/uploads/avatars/020.webp new file mode 100644 index 00000000..0399188a Binary files /dev/null and b/backend/uploads/avatars/020.webp differ diff --git a/backend/uploads/avatars/021.webp b/backend/uploads/avatars/021.webp new file mode 100644 index 00000000..eb6409fe Binary files /dev/null and b/backend/uploads/avatars/021.webp differ diff --git a/backend/uploads/avatars/022.webp b/backend/uploads/avatars/022.webp new file mode 100644 index 00000000..a8823f17 Binary files /dev/null and b/backend/uploads/avatars/022.webp differ diff --git a/backend/uploads/avatars/023.webp b/backend/uploads/avatars/023.webp new file mode 100644 index 00000000..284214c0 Binary files /dev/null and b/backend/uploads/avatars/023.webp differ diff --git a/backend/uploads/avatars/024.webp b/backend/uploads/avatars/024.webp new file mode 100644 index 00000000..8c9ad2d0 Binary files /dev/null and b/backend/uploads/avatars/024.webp differ diff --git a/backend/uploads/avatars/025.webp b/backend/uploads/avatars/025.webp new file mode 100644 index 00000000..2f196a7e Binary files /dev/null and b/backend/uploads/avatars/025.webp differ diff --git a/backend/uploads/avatars/026.webp b/backend/uploads/avatars/026.webp new file mode 100644 index 00000000..a33cdaf9 Binary files /dev/null and b/backend/uploads/avatars/026.webp differ diff --git a/backend/uploads/avatars/027.webp b/backend/uploads/avatars/027.webp new file mode 100644 index 00000000..e08c3563 Binary files /dev/null and b/backend/uploads/avatars/027.webp differ diff --git a/backend/uploads/avatars/028.webp b/backend/uploads/avatars/028.webp new file mode 100644 index 00000000..7b47cb25 Binary files /dev/null and b/backend/uploads/avatars/028.webp differ diff --git a/backend/uploads/avatars/029.webp b/backend/uploads/avatars/029.webp new file mode 100644 index 00000000..f7a68ee4 Binary files /dev/null and b/backend/uploads/avatars/029.webp differ diff --git a/backend/uploads/avatars/030.webp b/backend/uploads/avatars/030.webp new file mode 100644 index 00000000..fbbe64c2 Binary files /dev/null and b/backend/uploads/avatars/030.webp differ diff --git a/backend/uploads/avatars/031.webp b/backend/uploads/avatars/031.webp new file mode 100644 index 00000000..8111ca66 Binary files /dev/null and b/backend/uploads/avatars/031.webp differ diff --git a/backend/uploads/avatars/032.webp b/backend/uploads/avatars/032.webp new file mode 100644 index 00000000..f2e3826b Binary files /dev/null and b/backend/uploads/avatars/032.webp differ diff --git a/backend/uploads/avatars/033.webp b/backend/uploads/avatars/033.webp new file mode 100644 index 00000000..a38e4d53 Binary files /dev/null and b/backend/uploads/avatars/033.webp differ diff --git a/backend/uploads/avatars/034.webp b/backend/uploads/avatars/034.webp new file mode 100644 index 00000000..4e69c5f5 Binary files /dev/null and b/backend/uploads/avatars/034.webp differ diff --git a/backend/uploads/avatars/035.webp b/backend/uploads/avatars/035.webp new file mode 100644 index 00000000..fd75c7bc Binary files /dev/null and b/backend/uploads/avatars/035.webp differ diff --git a/backend/uploads/avatars/036.webp b/backend/uploads/avatars/036.webp new file mode 100644 index 00000000..9e07d612 Binary files /dev/null and b/backend/uploads/avatars/036.webp differ diff --git a/backend/uploads/avatars/037.webp b/backend/uploads/avatars/037.webp new file mode 100644 index 00000000..003ce914 Binary files /dev/null and b/backend/uploads/avatars/037.webp differ diff --git a/backend/uploads/avatars/038.webp b/backend/uploads/avatars/038.webp new file mode 100644 index 00000000..b50c35d4 Binary files /dev/null and b/backend/uploads/avatars/038.webp differ diff --git a/backend/uploads/avatars/039.webp b/backend/uploads/avatars/039.webp new file mode 100644 index 00000000..62f94011 Binary files /dev/null and b/backend/uploads/avatars/039.webp differ diff --git a/backend/uploads/avatars/040.webp b/backend/uploads/avatars/040.webp new file mode 100644 index 00000000..db5e6d97 Binary files /dev/null and b/backend/uploads/avatars/040.webp differ diff --git a/backend/uploads/avatars/041.webp b/backend/uploads/avatars/041.webp new file mode 100644 index 00000000..03be9480 Binary files /dev/null and b/backend/uploads/avatars/041.webp differ diff --git a/backend/uploads/avatars/042.webp b/backend/uploads/avatars/042.webp new file mode 100644 index 00000000..eb6ecaed Binary files /dev/null and b/backend/uploads/avatars/042.webp differ diff --git a/backend/uploads/avatars/043.webp b/backend/uploads/avatars/043.webp new file mode 100644 index 00000000..3aa7677f Binary files /dev/null and b/backend/uploads/avatars/043.webp differ diff --git a/backend/uploads/avatars/044.webp b/backend/uploads/avatars/044.webp new file mode 100644 index 00000000..619bbabc Binary files /dev/null and b/backend/uploads/avatars/044.webp differ diff --git a/backend/uploads/avatars/045.webp b/backend/uploads/avatars/045.webp new file mode 100644 index 00000000..0a2519fb Binary files /dev/null and b/backend/uploads/avatars/045.webp differ diff --git a/backend/uploads/avatars/046.webp b/backend/uploads/avatars/046.webp new file mode 100644 index 00000000..f30b5a8c Binary files /dev/null and b/backend/uploads/avatars/046.webp differ diff --git a/backend/uploads/avatars/047.webp b/backend/uploads/avatars/047.webp new file mode 100644 index 00000000..854d8498 Binary files /dev/null and b/backend/uploads/avatars/047.webp differ diff --git a/backend/uploads/avatars/048.webp b/backend/uploads/avatars/048.webp new file mode 100644 index 00000000..f25181b8 Binary files /dev/null and b/backend/uploads/avatars/048.webp differ diff --git a/backend/uploads/avatars/049.webp b/backend/uploads/avatars/049.webp new file mode 100644 index 00000000..9d51aa1f Binary files /dev/null and b/backend/uploads/avatars/049.webp differ diff --git a/backend/uploads/avatars/050.webp b/backend/uploads/avatars/050.webp new file mode 100644 index 00000000..6b8124a5 Binary files /dev/null and b/backend/uploads/avatars/050.webp differ diff --git a/backend/uploads/avatars/051.webp b/backend/uploads/avatars/051.webp new file mode 100644 index 00000000..863026d4 Binary files /dev/null and b/backend/uploads/avatars/051.webp differ diff --git a/backend/uploads/avatars/052.webp b/backend/uploads/avatars/052.webp new file mode 100644 index 00000000..81b8367f Binary files /dev/null and b/backend/uploads/avatars/052.webp differ diff --git a/backend/uploads/avatars/053.webp b/backend/uploads/avatars/053.webp new file mode 100644 index 00000000..6f5c9e8d Binary files /dev/null and b/backend/uploads/avatars/053.webp differ diff --git a/backend/uploads/avatars/054.webp b/backend/uploads/avatars/054.webp new file mode 100644 index 00000000..0bf4afdb Binary files /dev/null and b/backend/uploads/avatars/054.webp differ diff --git a/backend/uploads/avatars/055.webp b/backend/uploads/avatars/055.webp new file mode 100644 index 00000000..46ca8b02 Binary files /dev/null and b/backend/uploads/avatars/055.webp differ diff --git a/backend/uploads/avatars/056.webp b/backend/uploads/avatars/056.webp new file mode 100644 index 00000000..a39c8017 Binary files /dev/null and b/backend/uploads/avatars/056.webp differ diff --git a/backend/uploads/avatars/057.webp b/backend/uploads/avatars/057.webp new file mode 100644 index 00000000..d49167d1 Binary files /dev/null and b/backend/uploads/avatars/057.webp differ diff --git a/backend/uploads/avatars/058.webp b/backend/uploads/avatars/058.webp new file mode 100644 index 00000000..676981ab Binary files /dev/null and b/backend/uploads/avatars/058.webp differ diff --git a/backend/uploads/avatars/059.webp b/backend/uploads/avatars/059.webp new file mode 100644 index 00000000..19a44217 Binary files /dev/null and b/backend/uploads/avatars/059.webp differ diff --git a/backend/uploads/avatars/060.webp b/backend/uploads/avatars/060.webp new file mode 100644 index 00000000..bfbff000 Binary files /dev/null and b/backend/uploads/avatars/060.webp differ diff --git a/backend/uploads/avatars/061.webp b/backend/uploads/avatars/061.webp new file mode 100644 index 00000000..2444ea30 Binary files /dev/null and b/backend/uploads/avatars/061.webp differ diff --git a/backend/uploads/avatars/062.webp b/backend/uploads/avatars/062.webp new file mode 100644 index 00000000..b88275d1 Binary files /dev/null and b/backend/uploads/avatars/062.webp differ diff --git a/backend/uploads/avatars/063.webp b/backend/uploads/avatars/063.webp new file mode 100644 index 00000000..2d177a41 Binary files /dev/null and b/backend/uploads/avatars/063.webp differ diff --git a/backend/uploads/avatars/064.webp b/backend/uploads/avatars/064.webp new file mode 100644 index 00000000..7d3e350c Binary files /dev/null and b/backend/uploads/avatars/064.webp differ diff --git a/backend/uploads/avatars/065.webp b/backend/uploads/avatars/065.webp new file mode 100644 index 00000000..aa1e955c Binary files /dev/null and b/backend/uploads/avatars/065.webp differ diff --git a/backend/uploads/avatars/066.webp b/backend/uploads/avatars/066.webp new file mode 100644 index 00000000..ae4eea9f Binary files /dev/null and b/backend/uploads/avatars/066.webp differ diff --git a/backend/uploads/avatars/067.webp b/backend/uploads/avatars/067.webp new file mode 100644 index 00000000..22419497 Binary files /dev/null and b/backend/uploads/avatars/067.webp differ diff --git a/backend/uploads/avatars/068.webp b/backend/uploads/avatars/068.webp new file mode 100644 index 00000000..60b6193a Binary files /dev/null and b/backend/uploads/avatars/068.webp differ diff --git a/backend/uploads/avatars/069.webp b/backend/uploads/avatars/069.webp new file mode 100644 index 00000000..8930f5ff Binary files /dev/null and b/backend/uploads/avatars/069.webp differ diff --git a/backend/uploads/avatars/070.webp b/backend/uploads/avatars/070.webp new file mode 100644 index 00000000..28e0089b Binary files /dev/null and b/backend/uploads/avatars/070.webp differ diff --git a/backend/uploads/avatars/071.webp b/backend/uploads/avatars/071.webp new file mode 100644 index 00000000..231c3ba7 Binary files /dev/null and b/backend/uploads/avatars/071.webp differ diff --git a/backend/uploads/avatars/072.webp b/backend/uploads/avatars/072.webp new file mode 100644 index 00000000..c948d59c Binary files /dev/null and b/backend/uploads/avatars/072.webp differ diff --git a/backend/uploads/avatars/073.webp b/backend/uploads/avatars/073.webp new file mode 100644 index 00000000..f2f213c1 Binary files /dev/null and b/backend/uploads/avatars/073.webp differ diff --git a/backend/uploads/avatars/074.webp b/backend/uploads/avatars/074.webp new file mode 100644 index 00000000..4948d52a Binary files /dev/null and b/backend/uploads/avatars/074.webp differ diff --git a/backend/uploads/avatars/075.webp b/backend/uploads/avatars/075.webp new file mode 100644 index 00000000..3262c091 Binary files /dev/null and b/backend/uploads/avatars/075.webp differ diff --git a/backend/uploads/avatars/076.webp b/backend/uploads/avatars/076.webp new file mode 100644 index 00000000..110d6971 Binary files /dev/null and b/backend/uploads/avatars/076.webp differ diff --git a/backend/uploads/avatars/077.webp b/backend/uploads/avatars/077.webp new file mode 100644 index 00000000..c19fa09a Binary files /dev/null and b/backend/uploads/avatars/077.webp differ diff --git a/backend/uploads/avatars/078.webp b/backend/uploads/avatars/078.webp new file mode 100644 index 00000000..849e4339 Binary files /dev/null and b/backend/uploads/avatars/078.webp differ diff --git a/backend/uploads/avatars/079.webp b/backend/uploads/avatars/079.webp new file mode 100644 index 00000000..11385a2b Binary files /dev/null and b/backend/uploads/avatars/079.webp differ diff --git a/backend/uploads/avatars/080.webp b/backend/uploads/avatars/080.webp new file mode 100644 index 00000000..1a3299ff Binary files /dev/null and b/backend/uploads/avatars/080.webp differ diff --git a/backend/uploads/avatars/081.webp b/backend/uploads/avatars/081.webp new file mode 100644 index 00000000..5d5066e4 Binary files /dev/null and b/backend/uploads/avatars/081.webp differ diff --git a/backend/uploads/avatars/082.webp b/backend/uploads/avatars/082.webp new file mode 100644 index 00000000..ba1c6233 Binary files /dev/null and b/backend/uploads/avatars/082.webp differ diff --git a/backend/uploads/avatars/083.webp b/backend/uploads/avatars/083.webp new file mode 100644 index 00000000..f4f8346f Binary files /dev/null and b/backend/uploads/avatars/083.webp differ diff --git a/backend/uploads/avatars/084.webp b/backend/uploads/avatars/084.webp new file mode 100644 index 00000000..fcdf8a0b Binary files /dev/null and b/backend/uploads/avatars/084.webp differ diff --git a/backend/uploads/avatars/085.webp b/backend/uploads/avatars/085.webp new file mode 100644 index 00000000..d1ef747e Binary files /dev/null and b/backend/uploads/avatars/085.webp differ diff --git a/backend/uploads/avatars/086.webp b/backend/uploads/avatars/086.webp new file mode 100644 index 00000000..9dedd650 Binary files /dev/null and b/backend/uploads/avatars/086.webp differ diff --git a/backend/uploads/avatars/087.webp b/backend/uploads/avatars/087.webp new file mode 100644 index 00000000..b1717ba5 Binary files /dev/null and b/backend/uploads/avatars/087.webp differ diff --git a/backend/uploads/avatars/088.webp b/backend/uploads/avatars/088.webp new file mode 100644 index 00000000..f3ceca9d Binary files /dev/null and b/backend/uploads/avatars/088.webp differ diff --git a/backend/uploads/avatars/089.webp b/backend/uploads/avatars/089.webp new file mode 100644 index 00000000..ba03d78d Binary files /dev/null and b/backend/uploads/avatars/089.webp differ diff --git a/backend/uploads/avatars/090.webp b/backend/uploads/avatars/090.webp new file mode 100644 index 00000000..cc609ba6 Binary files /dev/null and b/backend/uploads/avatars/090.webp differ diff --git a/backend/uploads/avatars/091.webp b/backend/uploads/avatars/091.webp new file mode 100644 index 00000000..aefb3482 Binary files /dev/null and b/backend/uploads/avatars/091.webp differ diff --git a/backend/uploads/avatars/092.webp b/backend/uploads/avatars/092.webp new file mode 100644 index 00000000..c207cfd8 Binary files /dev/null and b/backend/uploads/avatars/092.webp differ diff --git a/backend/uploads/avatars/093.webp b/backend/uploads/avatars/093.webp new file mode 100644 index 00000000..f604e882 Binary files /dev/null and b/backend/uploads/avatars/093.webp differ diff --git a/backend/uploads/avatars/094.webp b/backend/uploads/avatars/094.webp new file mode 100644 index 00000000..4338d215 Binary files /dev/null and b/backend/uploads/avatars/094.webp differ diff --git a/backend/uploads/avatars/095.webp b/backend/uploads/avatars/095.webp new file mode 100644 index 00000000..5241bfb6 Binary files /dev/null and b/backend/uploads/avatars/095.webp differ diff --git a/backend/uploads/avatars/096.webp b/backend/uploads/avatars/096.webp new file mode 100644 index 00000000..03d95d1e Binary files /dev/null and b/backend/uploads/avatars/096.webp differ diff --git a/backend/uploads/avatars/097.webp b/backend/uploads/avatars/097.webp new file mode 100644 index 00000000..6baf7962 Binary files /dev/null and b/backend/uploads/avatars/097.webp differ diff --git a/backend/uploads/avatars/098.webp b/backend/uploads/avatars/098.webp new file mode 100644 index 00000000..5c7af65a Binary files /dev/null and b/backend/uploads/avatars/098.webp differ diff --git a/backend/uploads/avatars/099.webp b/backend/uploads/avatars/099.webp new file mode 100644 index 00000000..cf5d6829 Binary files /dev/null and b/backend/uploads/avatars/099.webp differ diff --git a/backend/uploads/avatars/100.webp b/backend/uploads/avatars/100.webp new file mode 100644 index 00000000..49da3d4e Binary files /dev/null and b/backend/uploads/avatars/100.webp differ diff --git a/backend/uploads/avatars/bot.webp b/backend/uploads/avatars/bot.webp new file mode 100644 index 00000000..a92f6868 Binary files /dev/null and b/backend/uploads/avatars/bot.webp differ diff --git a/backend/uploads/pets/001.webp b/backend/uploads/pets/001.webp new file mode 100644 index 00000000..ccd88582 Binary files /dev/null and b/backend/uploads/pets/001.webp differ diff --git a/backend/uploads/pets/002.webp b/backend/uploads/pets/002.webp new file mode 100644 index 00000000..be1f7bc3 Binary files /dev/null and b/backend/uploads/pets/002.webp differ diff --git a/backend/uploads/pets/003.webp b/backend/uploads/pets/003.webp new file mode 100644 index 00000000..359974e6 Binary files /dev/null and b/backend/uploads/pets/003.webp differ diff --git a/backend/uploads/pets/004.webp b/backend/uploads/pets/004.webp new file mode 100644 index 00000000..39d34b31 Binary files /dev/null and b/backend/uploads/pets/004.webp differ diff --git a/backend/uploads/pets/005.webp b/backend/uploads/pets/005.webp new file mode 100644 index 00000000..34624a76 Binary files /dev/null and b/backend/uploads/pets/005.webp differ diff --git a/backend/uploads/pets/006.webp b/backend/uploads/pets/006.webp new file mode 100644 index 00000000..6b79b9aa Binary files /dev/null and b/backend/uploads/pets/006.webp differ diff --git a/backend/uploads/pets/007.webp b/backend/uploads/pets/007.webp new file mode 100644 index 00000000..b678783e Binary files /dev/null and b/backend/uploads/pets/007.webp differ diff --git a/backend/uploads/pets/008.webp b/backend/uploads/pets/008.webp new file mode 100644 index 00000000..cbd70aff Binary files /dev/null and b/backend/uploads/pets/008.webp differ diff --git a/backend/uploads/pets/009.webp b/backend/uploads/pets/009.webp new file mode 100644 index 00000000..ed0e9f5f Binary files /dev/null and b/backend/uploads/pets/009.webp differ diff --git a/backend/uploads/pets/010.webp b/backend/uploads/pets/010.webp new file mode 100644 index 00000000..fc11c05f Binary files /dev/null and b/backend/uploads/pets/010.webp differ diff --git a/backend/uploads/pets/011.webp b/backend/uploads/pets/011.webp new file mode 100644 index 00000000..14c0a91a Binary files /dev/null and b/backend/uploads/pets/011.webp differ diff --git a/backend/uploads/pets/012.webp b/backend/uploads/pets/012.webp new file mode 100644 index 00000000..f7f407d2 Binary files /dev/null and b/backend/uploads/pets/012.webp differ diff --git a/backend/uploads/pets/013.webp b/backend/uploads/pets/013.webp new file mode 100644 index 00000000..daf369db Binary files /dev/null and b/backend/uploads/pets/013.webp differ diff --git a/backend/uploads/pets/014.webp b/backend/uploads/pets/014.webp new file mode 100644 index 00000000..33b9ac2c Binary files /dev/null and b/backend/uploads/pets/014.webp differ diff --git a/backend/uploads/pets/015.webp b/backend/uploads/pets/015.webp new file mode 100644 index 00000000..b3354d63 Binary files /dev/null and b/backend/uploads/pets/015.webp differ diff --git a/backend/uploads/pets/016.webp b/backend/uploads/pets/016.webp new file mode 100644 index 00000000..2c21cea6 Binary files /dev/null and b/backend/uploads/pets/016.webp differ diff --git a/backend/uploads/pets/017.webp b/backend/uploads/pets/017.webp new file mode 100644 index 00000000..b04d98d3 Binary files /dev/null and b/backend/uploads/pets/017.webp differ diff --git a/backend/uploads/pets/018.webp b/backend/uploads/pets/018.webp new file mode 100644 index 00000000..e378006e Binary files /dev/null and b/backend/uploads/pets/018.webp differ diff --git a/backend/uploads/pets/019.webp b/backend/uploads/pets/019.webp new file mode 100644 index 00000000..d9335c9f Binary files /dev/null and b/backend/uploads/pets/019.webp differ diff --git a/backend/uploads/pets/020.webp b/backend/uploads/pets/020.webp new file mode 100644 index 00000000..df4f9c3f Binary files /dev/null and b/backend/uploads/pets/020.webp differ diff --git a/backend/uploads/pets/021.webp b/backend/uploads/pets/021.webp new file mode 100644 index 00000000..f9d97399 Binary files /dev/null and b/backend/uploads/pets/021.webp differ diff --git a/backend/uploads/pets/022.webp b/backend/uploads/pets/022.webp new file mode 100644 index 00000000..07695381 Binary files /dev/null and b/backend/uploads/pets/022.webp differ diff --git a/backend/uploads/pets/023.webp b/backend/uploads/pets/023.webp new file mode 100644 index 00000000..400117d4 Binary files /dev/null and b/backend/uploads/pets/023.webp differ diff --git a/backend/uploads/pets/024.webp b/backend/uploads/pets/024.webp new file mode 100644 index 00000000..b65df01e Binary files /dev/null and b/backend/uploads/pets/024.webp differ diff --git a/backend/uploads/pets/025.webp b/backend/uploads/pets/025.webp new file mode 100644 index 00000000..654875cd Binary files /dev/null and b/backend/uploads/pets/025.webp differ diff --git a/backend/uploads/pets/026.webp b/backend/uploads/pets/026.webp new file mode 100644 index 00000000..f38a3fc5 Binary files /dev/null and b/backend/uploads/pets/026.webp differ diff --git a/backend/uploads/pets/027.webp b/backend/uploads/pets/027.webp new file mode 100644 index 00000000..c124b1e5 Binary files /dev/null and b/backend/uploads/pets/027.webp differ diff --git a/backend/uploads/pets/028.webp b/backend/uploads/pets/028.webp new file mode 100644 index 00000000..4d7abc21 Binary files /dev/null and b/backend/uploads/pets/028.webp differ diff --git a/backend/uploads/pets/029.webp b/backend/uploads/pets/029.webp new file mode 100644 index 00000000..89370b50 Binary files /dev/null and b/backend/uploads/pets/029.webp differ diff --git a/backend/uploads/pets/030.webp b/backend/uploads/pets/030.webp new file mode 100644 index 00000000..fd4fe5ee Binary files /dev/null and b/backend/uploads/pets/030.webp differ diff --git a/backend/uploads/pets/031.webp b/backend/uploads/pets/031.webp new file mode 100644 index 00000000..b95424a3 Binary files /dev/null and b/backend/uploads/pets/031.webp differ diff --git a/backend/uploads/pets/032.webp b/backend/uploads/pets/032.webp new file mode 100644 index 00000000..d83942d8 Binary files /dev/null and b/backend/uploads/pets/032.webp differ diff --git a/backend/uploads/pets/033.webp b/backend/uploads/pets/033.webp new file mode 100644 index 00000000..b1b0da10 Binary files /dev/null and b/backend/uploads/pets/033.webp differ diff --git a/backend/uploads/pets/034.webp b/backend/uploads/pets/034.webp new file mode 100644 index 00000000..98011b7a Binary files /dev/null and b/backend/uploads/pets/034.webp differ diff --git a/backend/uploads/pets/035.webp b/backend/uploads/pets/035.webp new file mode 100644 index 00000000..b05934fc Binary files /dev/null and b/backend/uploads/pets/035.webp differ diff --git a/backend/uploads/pets/036.webp b/backend/uploads/pets/036.webp new file mode 100644 index 00000000..692707f7 Binary files /dev/null and b/backend/uploads/pets/036.webp differ diff --git a/backend/uploads/pets/037.webp b/backend/uploads/pets/037.webp new file mode 100644 index 00000000..5443ca8d Binary files /dev/null and b/backend/uploads/pets/037.webp differ diff --git a/backend/uploads/pets/038.webp b/backend/uploads/pets/038.webp new file mode 100644 index 00000000..d396c70f Binary files /dev/null and b/backend/uploads/pets/038.webp differ diff --git a/backend/uploads/pets/039.webp b/backend/uploads/pets/039.webp new file mode 100644 index 00000000..74b4b14f Binary files /dev/null and b/backend/uploads/pets/039.webp differ diff --git a/backend/uploads/pets/040.webp b/backend/uploads/pets/040.webp new file mode 100644 index 00000000..5d304262 Binary files /dev/null and b/backend/uploads/pets/040.webp differ diff --git a/backend/uploads/pets/041.webp b/backend/uploads/pets/041.webp new file mode 100644 index 00000000..3ccb008e Binary files /dev/null and b/backend/uploads/pets/041.webp differ diff --git a/backend/uploads/pets/042.webp b/backend/uploads/pets/042.webp new file mode 100644 index 00000000..1d76285a Binary files /dev/null and b/backend/uploads/pets/042.webp differ diff --git a/backend/uploads/pets/043.webp b/backend/uploads/pets/043.webp new file mode 100644 index 00000000..413e44f9 Binary files /dev/null and b/backend/uploads/pets/043.webp differ diff --git a/backend/uploads/pets/044.webp b/backend/uploads/pets/044.webp new file mode 100644 index 00000000..b99a611f Binary files /dev/null and b/backend/uploads/pets/044.webp differ diff --git a/backend/uploads/pets/045.webp b/backend/uploads/pets/045.webp new file mode 100644 index 00000000..3cad5e6e Binary files /dev/null and b/backend/uploads/pets/045.webp differ diff --git a/backend/uploads/pets/046.webp b/backend/uploads/pets/046.webp new file mode 100644 index 00000000..e39d1f14 Binary files /dev/null and b/backend/uploads/pets/046.webp differ diff --git a/backend/uploads/pets/047.webp b/backend/uploads/pets/047.webp new file mode 100644 index 00000000..f929a0ce Binary files /dev/null and b/backend/uploads/pets/047.webp differ diff --git a/backend/uploads/pets/048.webp b/backend/uploads/pets/048.webp new file mode 100644 index 00000000..01cc52f8 Binary files /dev/null and b/backend/uploads/pets/048.webp differ diff --git a/backend/uploads/pets/049.webp b/backend/uploads/pets/049.webp new file mode 100644 index 00000000..3cea07b5 Binary files /dev/null and b/backend/uploads/pets/049.webp differ diff --git a/backend/uploads/pets/050.webp b/backend/uploads/pets/050.webp new file mode 100644 index 00000000..079886db Binary files /dev/null and b/backend/uploads/pets/050.webp differ diff --git a/backend/uploads/pets/051.webp b/backend/uploads/pets/051.webp new file mode 100644 index 00000000..5e683607 Binary files /dev/null and b/backend/uploads/pets/051.webp differ diff --git a/backend/uploads/pets/052.webp b/backend/uploads/pets/052.webp new file mode 100644 index 00000000..6c334394 Binary files /dev/null and b/backend/uploads/pets/052.webp differ diff --git a/backend/uploads/pets/053.webp b/backend/uploads/pets/053.webp new file mode 100644 index 00000000..b9d61bbd Binary files /dev/null and b/backend/uploads/pets/053.webp differ diff --git a/backend/uploads/pets/054.webp b/backend/uploads/pets/054.webp new file mode 100644 index 00000000..ee98ced1 Binary files /dev/null and b/backend/uploads/pets/054.webp differ diff --git a/backend/uploads/pets/055.webp b/backend/uploads/pets/055.webp new file mode 100644 index 00000000..084af9a1 Binary files /dev/null and b/backend/uploads/pets/055.webp differ diff --git a/backend/uploads/pets/056.webp b/backend/uploads/pets/056.webp new file mode 100644 index 00000000..66facf07 Binary files /dev/null and b/backend/uploads/pets/056.webp differ diff --git a/backend/uploads/pets/057.webp b/backend/uploads/pets/057.webp new file mode 100644 index 00000000..4f6b3b51 Binary files /dev/null and b/backend/uploads/pets/057.webp differ diff --git a/backend/uploads/pets/058.webp b/backend/uploads/pets/058.webp new file mode 100644 index 00000000..430f5c4a Binary files /dev/null and b/backend/uploads/pets/058.webp differ diff --git a/backend/uploads/pets/059.webp b/backend/uploads/pets/059.webp new file mode 100644 index 00000000..23b0f85a Binary files /dev/null and b/backend/uploads/pets/059.webp differ diff --git a/backend/uploads/pets/060.webp b/backend/uploads/pets/060.webp new file mode 100644 index 00000000..5123f7ae Binary files /dev/null and b/backend/uploads/pets/060.webp differ diff --git a/backend/uploads/pets/061.webp b/backend/uploads/pets/061.webp new file mode 100644 index 00000000..a04e7446 Binary files /dev/null and b/backend/uploads/pets/061.webp differ diff --git a/backend/uploads/pets/062.webp b/backend/uploads/pets/062.webp new file mode 100644 index 00000000..1652a575 Binary files /dev/null and b/backend/uploads/pets/062.webp differ diff --git a/backend/uploads/pets/063.webp b/backend/uploads/pets/063.webp new file mode 100644 index 00000000..99e93a86 Binary files /dev/null and b/backend/uploads/pets/063.webp differ diff --git a/backend/uploads/pets/064.webp b/backend/uploads/pets/064.webp new file mode 100644 index 00000000..ce7e185c Binary files /dev/null and b/backend/uploads/pets/064.webp differ diff --git a/backend/uploads/pets/065.webp b/backend/uploads/pets/065.webp new file mode 100644 index 00000000..5864ca98 Binary files /dev/null and b/backend/uploads/pets/065.webp differ diff --git a/backend/uploads/pets/066.webp b/backend/uploads/pets/066.webp new file mode 100644 index 00000000..3771ccd4 Binary files /dev/null and b/backend/uploads/pets/066.webp differ diff --git a/backend/uploads/pets/067.webp b/backend/uploads/pets/067.webp new file mode 100644 index 00000000..21b2292a Binary files /dev/null and b/backend/uploads/pets/067.webp differ diff --git a/backend/uploads/pets/068.webp b/backend/uploads/pets/068.webp new file mode 100644 index 00000000..6f262352 Binary files /dev/null and b/backend/uploads/pets/068.webp differ diff --git a/backend/uploads/pets/069.webp b/backend/uploads/pets/069.webp new file mode 100644 index 00000000..107c3f49 Binary files /dev/null and b/backend/uploads/pets/069.webp differ diff --git a/backend/uploads/pets/070.webp b/backend/uploads/pets/070.webp new file mode 100644 index 00000000..21699aa4 Binary files /dev/null and b/backend/uploads/pets/070.webp differ diff --git a/backend/uploads/pets/071.webp b/backend/uploads/pets/071.webp new file mode 100644 index 00000000..ff14840a Binary files /dev/null and b/backend/uploads/pets/071.webp differ diff --git a/backend/uploads/pets/072.webp b/backend/uploads/pets/072.webp new file mode 100644 index 00000000..c730848c Binary files /dev/null and b/backend/uploads/pets/072.webp differ diff --git a/backend/uploads/pets/073.webp b/backend/uploads/pets/073.webp new file mode 100644 index 00000000..daaa276c Binary files /dev/null and b/backend/uploads/pets/073.webp differ diff --git a/backend/uploads/pets/074.webp b/backend/uploads/pets/074.webp new file mode 100644 index 00000000..23b76888 Binary files /dev/null and b/backend/uploads/pets/074.webp differ diff --git a/backend/uploads/pets/075.webp b/backend/uploads/pets/075.webp new file mode 100644 index 00000000..4262db1a Binary files /dev/null and b/backend/uploads/pets/075.webp differ diff --git a/backend/uploads/pets/076.webp b/backend/uploads/pets/076.webp new file mode 100644 index 00000000..08d5b420 Binary files /dev/null and b/backend/uploads/pets/076.webp differ diff --git a/backend/uploads/pets/077.webp b/backend/uploads/pets/077.webp new file mode 100644 index 00000000..ad03239d Binary files /dev/null and b/backend/uploads/pets/077.webp differ diff --git a/backend/uploads/pets/078.webp b/backend/uploads/pets/078.webp new file mode 100644 index 00000000..1001add1 Binary files /dev/null and b/backend/uploads/pets/078.webp differ diff --git a/backend/uploads/pets/079.webp b/backend/uploads/pets/079.webp new file mode 100644 index 00000000..e92085e1 Binary files /dev/null and b/backend/uploads/pets/079.webp differ diff --git a/backend/uploads/pets/080.webp b/backend/uploads/pets/080.webp new file mode 100644 index 00000000..bcaef257 Binary files /dev/null and b/backend/uploads/pets/080.webp differ diff --git a/backend/uploads/pets/081.webp b/backend/uploads/pets/081.webp new file mode 100644 index 00000000..6f0e0642 Binary files /dev/null and b/backend/uploads/pets/081.webp differ diff --git a/backend/uploads/pets/082.webp b/backend/uploads/pets/082.webp new file mode 100644 index 00000000..eab2b19a Binary files /dev/null and b/backend/uploads/pets/082.webp differ diff --git a/backend/uploads/pets/083.webp b/backend/uploads/pets/083.webp new file mode 100644 index 00000000..684eb290 Binary files /dev/null and b/backend/uploads/pets/083.webp differ diff --git a/backend/uploads/pets/084.webp b/backend/uploads/pets/084.webp new file mode 100644 index 00000000..4b7ff963 Binary files /dev/null and b/backend/uploads/pets/084.webp differ diff --git a/backend/uploads/pets/085.webp b/backend/uploads/pets/085.webp new file mode 100644 index 00000000..1ac48995 Binary files /dev/null and b/backend/uploads/pets/085.webp differ diff --git a/backend/uploads/pets/086.webp b/backend/uploads/pets/086.webp new file mode 100644 index 00000000..ff288d54 Binary files /dev/null and b/backend/uploads/pets/086.webp differ diff --git a/backend/uploads/pets/087.webp b/backend/uploads/pets/087.webp new file mode 100644 index 00000000..d46a1dcb Binary files /dev/null and b/backend/uploads/pets/087.webp differ diff --git a/backend/uploads/pets/088.webp b/backend/uploads/pets/088.webp new file mode 100644 index 00000000..2008bf53 Binary files /dev/null and b/backend/uploads/pets/088.webp differ diff --git a/backend/uploads/pets/089.webp b/backend/uploads/pets/089.webp new file mode 100644 index 00000000..245e35e1 Binary files /dev/null and b/backend/uploads/pets/089.webp differ diff --git a/backend/uploads/pets/090.webp b/backend/uploads/pets/090.webp new file mode 100644 index 00000000..7ad13f23 Binary files /dev/null and b/backend/uploads/pets/090.webp differ diff --git a/backend/uploads/pets/091.webp b/backend/uploads/pets/091.webp new file mode 100644 index 00000000..d81bbe09 Binary files /dev/null and b/backend/uploads/pets/091.webp differ diff --git a/backend/uploads/pets/092.webp b/backend/uploads/pets/092.webp new file mode 100644 index 00000000..14ea5315 Binary files /dev/null and b/backend/uploads/pets/092.webp differ diff --git a/backend/uploads/pets/093.webp b/backend/uploads/pets/093.webp new file mode 100644 index 00000000..c8ed2ee6 Binary files /dev/null and b/backend/uploads/pets/093.webp differ diff --git a/backend/uploads/pets/094.webp b/backend/uploads/pets/094.webp new file mode 100644 index 00000000..4a36d164 Binary files /dev/null and b/backend/uploads/pets/094.webp differ diff --git a/backend/uploads/pets/095.webp b/backend/uploads/pets/095.webp new file mode 100644 index 00000000..07abe07a Binary files /dev/null and b/backend/uploads/pets/095.webp differ diff --git a/backend/uploads/pets/096.webp b/backend/uploads/pets/096.webp new file mode 100644 index 00000000..87f17555 Binary files /dev/null and b/backend/uploads/pets/096.webp differ diff --git a/backend/uploads/pets/097.webp b/backend/uploads/pets/097.webp new file mode 100644 index 00000000..9a70552b Binary files /dev/null and b/backend/uploads/pets/097.webp differ diff --git a/backend/uploads/pets/098.webp b/backend/uploads/pets/098.webp new file mode 100644 index 00000000..12e68fb0 Binary files /dev/null and b/backend/uploads/pets/098.webp differ diff --git a/backend/uploads/pets/099.webp b/backend/uploads/pets/099.webp new file mode 100644 index 00000000..320b19a3 Binary files /dev/null and b/backend/uploads/pets/099.webp differ diff --git a/backend/uploads/pets/100.webp b/backend/uploads/pets/100.webp new file mode 100644 index 00000000..7363d204 Binary files /dev/null and b/backend/uploads/pets/100.webp differ diff --git a/backend/uploads/products/001.webp b/backend/uploads/products/001.webp new file mode 100644 index 00000000..a77c1a7f Binary files /dev/null and b/backend/uploads/products/001.webp differ diff --git a/backend/uploads/products/002.webp b/backend/uploads/products/002.webp new file mode 100644 index 00000000..e83cb558 Binary files /dev/null and b/backend/uploads/products/002.webp differ diff --git a/backend/uploads/products/003.webp b/backend/uploads/products/003.webp new file mode 100644 index 00000000..6775cd42 Binary files /dev/null and b/backend/uploads/products/003.webp differ diff --git a/backend/uploads/products/004.webp b/backend/uploads/products/004.webp new file mode 100644 index 00000000..bf82fce3 Binary files /dev/null and b/backend/uploads/products/004.webp differ diff --git a/backend/uploads/products/005.webp b/backend/uploads/products/005.webp new file mode 100644 index 00000000..15788d23 Binary files /dev/null and b/backend/uploads/products/005.webp differ diff --git a/backend/uploads/products/006.webp b/backend/uploads/products/006.webp new file mode 100644 index 00000000..3ee12fb8 Binary files /dev/null and b/backend/uploads/products/006.webp differ diff --git a/backend/uploads/products/007.webp b/backend/uploads/products/007.webp new file mode 100644 index 00000000..c6fe28b5 Binary files /dev/null and b/backend/uploads/products/007.webp differ diff --git a/backend/uploads/products/008.webp b/backend/uploads/products/008.webp new file mode 100644 index 00000000..8535d69d Binary files /dev/null and b/backend/uploads/products/008.webp differ diff --git a/backend/uploads/products/009.webp b/backend/uploads/products/009.webp new file mode 100644 index 00000000..acf2c1af Binary files /dev/null and b/backend/uploads/products/009.webp differ diff --git a/backend/uploads/products/010.webp b/backend/uploads/products/010.webp new file mode 100644 index 00000000..bb0e238b Binary files /dev/null and b/backend/uploads/products/010.webp differ diff --git a/backend/uploads/products/011.webp b/backend/uploads/products/011.webp new file mode 100644 index 00000000..ec8122c4 Binary files /dev/null and b/backend/uploads/products/011.webp differ diff --git a/backend/uploads/products/012.webp b/backend/uploads/products/012.webp new file mode 100644 index 00000000..ff2641d2 Binary files /dev/null and b/backend/uploads/products/012.webp differ diff --git a/backend/uploads/products/013.webp b/backend/uploads/products/013.webp new file mode 100644 index 00000000..5e70b2c1 Binary files /dev/null and b/backend/uploads/products/013.webp differ diff --git a/backend/uploads/products/014.webp b/backend/uploads/products/014.webp new file mode 100644 index 00000000..06ab3918 Binary files /dev/null and b/backend/uploads/products/014.webp differ diff --git a/backend/uploads/products/015.webp b/backend/uploads/products/015.webp new file mode 100644 index 00000000..c966feb9 Binary files /dev/null and b/backend/uploads/products/015.webp differ diff --git a/backend/uploads/products/016.webp b/backend/uploads/products/016.webp new file mode 100644 index 00000000..ba84a79e Binary files /dev/null and b/backend/uploads/products/016.webp differ diff --git a/backend/uploads/products/017.webp b/backend/uploads/products/017.webp new file mode 100644 index 00000000..95c20edb Binary files /dev/null and b/backend/uploads/products/017.webp differ diff --git a/backend/uploads/products/018.webp b/backend/uploads/products/018.webp new file mode 100644 index 00000000..4d80ee5a Binary files /dev/null and b/backend/uploads/products/018.webp differ diff --git a/backend/uploads/products/019.webp b/backend/uploads/products/019.webp new file mode 100644 index 00000000..0ec3b2a4 Binary files /dev/null and b/backend/uploads/products/019.webp differ diff --git a/backend/uploads/products/020.webp b/backend/uploads/products/020.webp new file mode 100644 index 00000000..3f33062d Binary files /dev/null and b/backend/uploads/products/020.webp differ diff --git a/backend/uploads/products/021.webp b/backend/uploads/products/021.webp new file mode 100644 index 00000000..9ae973ca Binary files /dev/null and b/backend/uploads/products/021.webp differ diff --git a/backend/uploads/products/022.webp b/backend/uploads/products/022.webp new file mode 100644 index 00000000..d4b076bd Binary files /dev/null and b/backend/uploads/products/022.webp differ diff --git a/backend/uploads/products/023.webp b/backend/uploads/products/023.webp new file mode 100644 index 00000000..b25ff3ec Binary files /dev/null and b/backend/uploads/products/023.webp differ diff --git a/backend/uploads/products/024.webp b/backend/uploads/products/024.webp new file mode 100644 index 00000000..75988867 Binary files /dev/null and b/backend/uploads/products/024.webp differ diff --git a/backend/uploads/products/025.webp b/backend/uploads/products/025.webp new file mode 100644 index 00000000..7aa4b93e Binary files /dev/null and b/backend/uploads/products/025.webp differ diff --git a/backend/uploads/products/026.webp b/backend/uploads/products/026.webp new file mode 100644 index 00000000..b401bbe3 Binary files /dev/null and b/backend/uploads/products/026.webp differ diff --git a/backend/uploads/products/027.webp b/backend/uploads/products/027.webp new file mode 100644 index 00000000..d5d2a797 Binary files /dev/null and b/backend/uploads/products/027.webp differ diff --git a/backend/uploads/products/028.webp b/backend/uploads/products/028.webp new file mode 100644 index 00000000..7c2d739e Binary files /dev/null and b/backend/uploads/products/028.webp differ diff --git a/backend/uploads/products/029.webp b/backend/uploads/products/029.webp new file mode 100644 index 00000000..6956e5ae Binary files /dev/null and b/backend/uploads/products/029.webp differ diff --git a/backend/uploads/products/030.webp b/backend/uploads/products/030.webp new file mode 100644 index 00000000..e25dc6ac Binary files /dev/null and b/backend/uploads/products/030.webp differ diff --git a/backend/uploads/products/031.webp b/backend/uploads/products/031.webp new file mode 100644 index 00000000..cc8e80e9 Binary files /dev/null and b/backend/uploads/products/031.webp differ diff --git a/backend/uploads/products/032.webp b/backend/uploads/products/032.webp new file mode 100644 index 00000000..ae44bf67 Binary files /dev/null and b/backend/uploads/products/032.webp differ diff --git a/backend/uploads/products/033.webp b/backend/uploads/products/033.webp new file mode 100644 index 00000000..3bbd6036 Binary files /dev/null and b/backend/uploads/products/033.webp differ diff --git a/backend/uploads/products/034.webp b/backend/uploads/products/034.webp new file mode 100644 index 00000000..9858dd89 Binary files /dev/null and b/backend/uploads/products/034.webp differ diff --git a/backend/uploads/products/035.webp b/backend/uploads/products/035.webp new file mode 100644 index 00000000..d9444061 Binary files /dev/null and b/backend/uploads/products/035.webp differ diff --git a/backend/uploads/products/036.webp b/backend/uploads/products/036.webp new file mode 100644 index 00000000..5bd3632d Binary files /dev/null and b/backend/uploads/products/036.webp differ diff --git a/backend/uploads/products/037.webp b/backend/uploads/products/037.webp new file mode 100644 index 00000000..99035bd8 Binary files /dev/null and b/backend/uploads/products/037.webp differ diff --git a/backend/uploads/products/038.webp b/backend/uploads/products/038.webp new file mode 100644 index 00000000..8cfb8230 Binary files /dev/null and b/backend/uploads/products/038.webp differ diff --git a/backend/uploads/products/039.webp b/backend/uploads/products/039.webp new file mode 100644 index 00000000..1c0ddf56 Binary files /dev/null and b/backend/uploads/products/039.webp differ diff --git a/backend/uploads/products/040.webp b/backend/uploads/products/040.webp new file mode 100644 index 00000000..117595f8 Binary files /dev/null and b/backend/uploads/products/040.webp differ diff --git a/backend/uploads/products/041.webp b/backend/uploads/products/041.webp new file mode 100644 index 00000000..57eba1fa Binary files /dev/null and b/backend/uploads/products/041.webp differ diff --git a/backend/uploads/products/042.webp b/backend/uploads/products/042.webp new file mode 100644 index 00000000..bfa2aba1 Binary files /dev/null and b/backend/uploads/products/042.webp differ diff --git a/backend/uploads/products/043.webp b/backend/uploads/products/043.webp new file mode 100644 index 00000000..226358f0 Binary files /dev/null and b/backend/uploads/products/043.webp differ diff --git a/backend/uploads/products/044.webp b/backend/uploads/products/044.webp new file mode 100644 index 00000000..f46f13b4 Binary files /dev/null and b/backend/uploads/products/044.webp differ diff --git a/backend/uploads/products/045.webp b/backend/uploads/products/045.webp new file mode 100644 index 00000000..92b348b0 Binary files /dev/null and b/backend/uploads/products/045.webp differ diff --git a/backend/uploads/products/046.webp b/backend/uploads/products/046.webp new file mode 100644 index 00000000..4f797232 Binary files /dev/null and b/backend/uploads/products/046.webp differ diff --git a/backend/uploads/products/047.webp b/backend/uploads/products/047.webp new file mode 100644 index 00000000..4b04eba5 Binary files /dev/null and b/backend/uploads/products/047.webp differ diff --git a/backend/uploads/products/048.webp b/backend/uploads/products/048.webp new file mode 100644 index 00000000..20e60743 Binary files /dev/null and b/backend/uploads/products/048.webp differ diff --git a/backend/uploads/products/049.webp b/backend/uploads/products/049.webp new file mode 100644 index 00000000..7517f9b0 Binary files /dev/null and b/backend/uploads/products/049.webp differ diff --git a/backend/uploads/products/050.webp b/backend/uploads/products/050.webp new file mode 100644 index 00000000..f3e04000 Binary files /dev/null and b/backend/uploads/products/050.webp differ diff --git a/backend/uploads/products/051.webp b/backend/uploads/products/051.webp new file mode 100644 index 00000000..59843fe7 Binary files /dev/null and b/backend/uploads/products/051.webp differ diff --git a/backend/uploads/products/052.webp b/backend/uploads/products/052.webp new file mode 100644 index 00000000..358bfdb6 Binary files /dev/null and b/backend/uploads/products/052.webp differ diff --git a/backend/uploads/products/053.webp b/backend/uploads/products/053.webp new file mode 100644 index 00000000..0be3d445 Binary files /dev/null and b/backend/uploads/products/053.webp differ diff --git a/backend/uploads/products/054.webp b/backend/uploads/products/054.webp new file mode 100644 index 00000000..d23032f5 Binary files /dev/null and b/backend/uploads/products/054.webp differ diff --git a/backend/uploads/products/055.webp b/backend/uploads/products/055.webp new file mode 100644 index 00000000..a4ceba73 Binary files /dev/null and b/backend/uploads/products/055.webp differ diff --git a/backend/uploads/products/056.webp b/backend/uploads/products/056.webp new file mode 100644 index 00000000..c33eca4a Binary files /dev/null and b/backend/uploads/products/056.webp differ diff --git a/backend/uploads/products/057.webp b/backend/uploads/products/057.webp new file mode 100644 index 00000000..57d7da86 Binary files /dev/null and b/backend/uploads/products/057.webp differ diff --git a/backend/uploads/products/058.webp b/backend/uploads/products/058.webp new file mode 100644 index 00000000..6b110093 Binary files /dev/null and b/backend/uploads/products/058.webp differ diff --git a/backend/uploads/products/059.webp b/backend/uploads/products/059.webp new file mode 100644 index 00000000..d6b84e2e Binary files /dev/null and b/backend/uploads/products/059.webp differ diff --git a/backend/uploads/products/060.webp b/backend/uploads/products/060.webp new file mode 100644 index 00000000..1fc756da Binary files /dev/null and b/backend/uploads/products/060.webp differ diff --git a/backend/uploads/products/061.webp b/backend/uploads/products/061.webp new file mode 100644 index 00000000..e9d44375 Binary files /dev/null and b/backend/uploads/products/061.webp differ diff --git a/backend/uploads/products/062.webp b/backend/uploads/products/062.webp new file mode 100644 index 00000000..3c62c0c7 Binary files /dev/null and b/backend/uploads/products/062.webp differ diff --git a/backend/uploads/products/063.webp b/backend/uploads/products/063.webp new file mode 100644 index 00000000..4ba1522f Binary files /dev/null and b/backend/uploads/products/063.webp differ diff --git a/backend/uploads/products/064.webp b/backend/uploads/products/064.webp new file mode 100644 index 00000000..b90beba7 Binary files /dev/null and b/backend/uploads/products/064.webp differ diff --git a/backend/uploads/products/065.webp b/backend/uploads/products/065.webp new file mode 100644 index 00000000..8bf0b426 Binary files /dev/null and b/backend/uploads/products/065.webp differ diff --git a/backend/uploads/products/066.webp b/backend/uploads/products/066.webp new file mode 100644 index 00000000..b7e1ddfe Binary files /dev/null and b/backend/uploads/products/066.webp differ diff --git a/backend/uploads/products/067.webp b/backend/uploads/products/067.webp new file mode 100644 index 00000000..bb361f2f Binary files /dev/null and b/backend/uploads/products/067.webp differ diff --git a/backend/uploads/products/068.webp b/backend/uploads/products/068.webp new file mode 100644 index 00000000..06064410 Binary files /dev/null and b/backend/uploads/products/068.webp differ diff --git a/backend/uploads/products/069.webp b/backend/uploads/products/069.webp new file mode 100644 index 00000000..22cceb73 Binary files /dev/null and b/backend/uploads/products/069.webp differ diff --git a/backend/uploads/products/070.webp b/backend/uploads/products/070.webp new file mode 100644 index 00000000..62054903 Binary files /dev/null and b/backend/uploads/products/070.webp differ diff --git a/backend/uploads/products/071.webp b/backend/uploads/products/071.webp new file mode 100644 index 00000000..640da88c Binary files /dev/null and b/backend/uploads/products/071.webp differ diff --git a/backend/uploads/products/072.webp b/backend/uploads/products/072.webp new file mode 100644 index 00000000..51f7fa89 Binary files /dev/null and b/backend/uploads/products/072.webp differ diff --git a/backend/uploads/products/073.webp b/backend/uploads/products/073.webp new file mode 100644 index 00000000..f07e631e Binary files /dev/null and b/backend/uploads/products/073.webp differ diff --git a/backend/uploads/products/074.webp b/backend/uploads/products/074.webp new file mode 100644 index 00000000..9a1f9009 Binary files /dev/null and b/backend/uploads/products/074.webp differ diff --git a/backend/uploads/products/075.webp b/backend/uploads/products/075.webp new file mode 100644 index 00000000..9e8c5f4b Binary files /dev/null and b/backend/uploads/products/075.webp differ diff --git a/backend/uploads/products/076.webp b/backend/uploads/products/076.webp new file mode 100644 index 00000000..f6a7ef03 Binary files /dev/null and b/backend/uploads/products/076.webp differ diff --git a/backend/uploads/products/077.webp b/backend/uploads/products/077.webp new file mode 100644 index 00000000..0aa81b00 Binary files /dev/null and b/backend/uploads/products/077.webp differ diff --git a/backend/uploads/products/078.webp b/backend/uploads/products/078.webp new file mode 100644 index 00000000..a0f729a2 Binary files /dev/null and b/backend/uploads/products/078.webp differ diff --git a/backend/uploads/products/079.webp b/backend/uploads/products/079.webp new file mode 100644 index 00000000..d0027a5f Binary files /dev/null and b/backend/uploads/products/079.webp differ diff --git a/backend/uploads/products/080.webp b/backend/uploads/products/080.webp new file mode 100644 index 00000000..3725f3d4 Binary files /dev/null and b/backend/uploads/products/080.webp differ diff --git a/backend/uploads/products/081.webp b/backend/uploads/products/081.webp new file mode 100644 index 00000000..7d4bb52f Binary files /dev/null and b/backend/uploads/products/081.webp differ diff --git a/backend/uploads/products/082.webp b/backend/uploads/products/082.webp new file mode 100644 index 00000000..39f6d0ea Binary files /dev/null and b/backend/uploads/products/082.webp differ diff --git a/backend/uploads/products/083.webp b/backend/uploads/products/083.webp new file mode 100644 index 00000000..d600462f Binary files /dev/null and b/backend/uploads/products/083.webp differ diff --git a/backend/uploads/products/084.webp b/backend/uploads/products/084.webp new file mode 100644 index 00000000..d00c2b26 Binary files /dev/null and b/backend/uploads/products/084.webp differ diff --git a/backend/uploads/products/085.webp b/backend/uploads/products/085.webp new file mode 100644 index 00000000..d9489ee0 Binary files /dev/null and b/backend/uploads/products/085.webp differ diff --git a/backend/uploads/products/086.webp b/backend/uploads/products/086.webp new file mode 100644 index 00000000..079312ab Binary files /dev/null and b/backend/uploads/products/086.webp differ diff --git a/backend/uploads/products/087.webp b/backend/uploads/products/087.webp new file mode 100644 index 00000000..4a822786 Binary files /dev/null and b/backend/uploads/products/087.webp differ diff --git a/backend/uploads/products/088.webp b/backend/uploads/products/088.webp new file mode 100644 index 00000000..d7d5553e Binary files /dev/null and b/backend/uploads/products/088.webp differ diff --git a/backend/uploads/products/089.webp b/backend/uploads/products/089.webp new file mode 100644 index 00000000..21274a49 Binary files /dev/null and b/backend/uploads/products/089.webp differ diff --git a/backend/uploads/products/090.webp b/backend/uploads/products/090.webp new file mode 100644 index 00000000..ab301a06 Binary files /dev/null and b/backend/uploads/products/090.webp differ diff --git a/backend/uploads/products/091.webp b/backend/uploads/products/091.webp new file mode 100644 index 00000000..b336a344 Binary files /dev/null and b/backend/uploads/products/091.webp differ diff --git a/backend/uploads/products/092.webp b/backend/uploads/products/092.webp new file mode 100644 index 00000000..6ef28af2 Binary files /dev/null and b/backend/uploads/products/092.webp differ diff --git a/backend/uploads/products/093.webp b/backend/uploads/products/093.webp new file mode 100644 index 00000000..73ea1e9a Binary files /dev/null and b/backend/uploads/products/093.webp differ diff --git a/backend/uploads/products/094.webp b/backend/uploads/products/094.webp new file mode 100644 index 00000000..c0a5b588 Binary files /dev/null and b/backend/uploads/products/094.webp differ diff --git a/backend/uploads/products/095.webp b/backend/uploads/products/095.webp new file mode 100644 index 00000000..81d343cb Binary files /dev/null and b/backend/uploads/products/095.webp differ diff --git a/backend/uploads/products/096.webp b/backend/uploads/products/096.webp new file mode 100644 index 00000000..50cf062a Binary files /dev/null and b/backend/uploads/products/096.webp differ diff --git a/backend/uploads/products/097.webp b/backend/uploads/products/097.webp new file mode 100644 index 00000000..574f9610 Binary files /dev/null and b/backend/uploads/products/097.webp differ diff --git a/backend/uploads/products/098.webp b/backend/uploads/products/098.webp new file mode 100644 index 00000000..a5c5cbb0 Binary files /dev/null and b/backend/uploads/products/098.webp differ diff --git a/backend/uploads/products/099.webp b/backend/uploads/products/099.webp new file mode 100644 index 00000000..8ac94f20 Binary files /dev/null and b/backend/uploads/products/099.webp differ diff --git a/backend/uploads/products/100.webp b/backend/uploads/products/100.webp new file mode 100644 index 00000000..485919c3 Binary files /dev/null and b/backend/uploads/products/100.webp differ