diff --git a/.gitignore b/.gitignore index 8dff4ab..4b22d8f 100644 --- a/.gitignore +++ b/.gitignore @@ -5,4 +5,6 @@ clear_vram.py web/js/clear_vram.js speakers *.text -web/js/*.txt \ No newline at end of file +web/js/*.txt +ScriptsPerso/ +civitai/NSFW_* \ No newline at end of file diff --git a/API_civitai.py b/API_civitai.py index 3a1c32e..a01cb81 100644 --- a/API_civitai.py +++ b/API_civitai.py @@ -14,7 +14,7 @@ import node_helpers import hashlib from folder_paths import get_filename_list, get_full_path, models_dir import nodes - + # Register the new checkpoint folder bjornulf_checkpoint_path = os.path.join(folder_paths.models_dir, "checkpoints", "Bjornulf_civitAI") os.makedirs(bjornulf_checkpoint_path, exist_ok=True) @@ -39,7 +39,9 @@ image_folders = { "lora_sdxl_1.0": os.path.join(civitai_base_path, "lora_sdxl_1.0"), "lora_sd_1.5": os.path.join(civitai_base_path, "lora_sd_1.5"), "lora_pony": os.path.join(civitai_base_path, "lora_pony"), - "lora_flux.1_d": os.path.join(civitai_base_path, "lora_flux.1_d") + "lora_flux.1_d": os.path.join(civitai_base_path, "lora_flux.1_d"), + "lora_hunyuan_video": os.path.join(civitai_base_path, "lora_hunyuan_video"), + "NSFW_lora_hunyuan_video": os.path.join(civitai_base_path, "NSFW_lora_hunyuan_video") } # Add folder paths for each image folder @@ -1653,3 +1655,146 @@ class CivitAILoraSelectorPONY: m.update(f.read()) m.update(image.encode('utf-8')) return m.digest().hex() + + + +class CivitAILoraSelectorHunyuan: + @classmethod + def INPUT_TYPES(s): + image_extensions = ('.png', '.jpg', '.jpeg', '.gif', '.webp', '.bmp') + + # Try NSFW folder first + nsfw_files = [f"NSFW_lora_hunyuan_video/{f}" for f in folder_paths.get_filename_list("NSFW_lora_hunyuan_video") + if f.lower().endswith(image_extensions)] + + # If NSFW folder is empty or doesn't exist, try regular folder + if not nsfw_files: + files = [f"lora_hunyuan_video/{f}" for f in folder_paths.get_filename_list("lora_hunyuan_video") + if f.lower().endswith(image_extensions)] + else: + files = nsfw_files + + if not files: + files = ["none"] + + + return { + "required": { + "image": (sorted(files), {"image_upload": True}), + "model": ("MODEL",), + "clip": ("CLIP",), + "strength_model": ("FLOAT", {"default": 1.0, "min": -20.0, "max": 20.0, "step": 0.01}), + "strength_clip": ("FLOAT", {"default": 1.0, "min": -20.0, "max": 20.0, "step": 0.01}), + "civitai_token": ("STRING", {"default": ""}) + }, + } + + RETURN_TYPES = ("MODEL", "CLIP", "STRING", "STRING", "STRING") + RETURN_NAMES = ("model", "clip", "name", "civitai_url", "trigger_words") + FUNCTION = "load_lora" + CATEGORY = "Bjornulf" + + def load_lora(self, image, model, clip, strength_model, strength_clip, civitai_token): + def download_file(url, destination_path, lora_name, api_token=None): + filename = f"{lora_name}.safetensors" + file_path = os.path.join(destination_path, filename) + + headers = {} + if api_token: + headers['Authorization'] = f'Bearer {api_token}' + + try: + print(f"Downloading from: {url}") + response = requests.get(url, headers=headers, stream=True) + response.raise_for_status() + + file_size = int(response.headers.get('content-length', 0)) + block_size = 8192 + downloaded = 0 + + with open(file_path, 'wb') as f: + for chunk in response.iter_content(chunk_size=block_size): + if chunk: + f.write(chunk) + downloaded += len(chunk) + + if file_size > 0: + progress = int(50 * downloaded / file_size) + bars = '=' * progress + '-' * (50 - progress) + percent = (downloaded / file_size) * 100 + print(f'\rProgress: [{bars}] {percent:.1f}%', end='') + + print(f"\nFile downloaded successfully to: {file_path}") + return file_path + + except requests.exceptions.RequestException as e: + print(f"Error downloading file: {e}") + raise + + if image == "none": + raise ValueError("No image selected") + + # Try loading NSFW JSON first, fall back to regular JSON if not found + nsfw_json_path = os.path.join(parsed_models_path, 'NSFW_parsed_lora_hunyuan_video_loras.json') + regular_json_path = os.path.join(parsed_models_path, 'parsed_lora_hunyuan_video_loras.json') + + json_path = nsfw_json_path if os.path.exists(nsfw_json_path) else regular_json_path + hunYuan = "hunyuan_video" + + with open(json_path, 'r') as f: + loras_info = json.load(f) + + image_name = os.path.basename(image) + lora_info = next((lora for lora in loras_info + if os.path.basename(lora['image_path']) == image_name), None) + + if not lora_info: + raise ValueError(f"No LoRA information found for image: {image_name}") + + lora_dir = os.path.join(folder_paths.models_dir, "loras", "Bjornulf_civitAI", hunYuan) + os.makedirs(lora_dir, exist_ok=True) + + lora_filename = f"{lora_info['name']}.safetensors" + full_lora_path = os.path.join(lora_dir, lora_filename) + + if not os.path.exists(full_lora_path): + print(f"Downloading LoRA {lora_info['name']}...") + + download_url = lora_info['download_url'] + if civitai_token: + download_url += f"?token={civitai_token}" if '?' not in download_url else f"&token={civitai_token}" + + try: + download_file(download_url, lora_dir, lora_info['name'], civitai_token) + except Exception as e: + raise ValueError(f"Failed to download LoRA: {e}") + + relative_lora_path = os.path.join("Bjornulf_civitAI", hunYuan, lora_filename) + + try: + lora_loader = nodes.LoraLoader() + model_lora, clip_lora = lora_loader.load_lora(model=model, + clip=clip, + lora_name=relative_lora_path, + strength_model=strength_model, + strength_clip=strength_clip) + except Exception as e: + raise ValueError(f"Failed to load LoRA: {e}") + + trained_words_str = ", ".join(lora_info.get('trained_words', [])) + + return (model_lora, clip_lora, lora_info['name'], f"https://civitai.com/models/{lora_info['lora_id']}", trained_words_str) + + @classmethod + def IS_CHANGED(s, image): + if image == "none": + return "" + image_path = os.path.join(civitai_base_path, image) + if not os.path.exists(image_path): + return "" + + m = hashlib.sha256() + with open(image_path, 'rb') as f: + m.update(f.read()) + m.update(image.encode('utf-8')) + return m.digest().hex() \ No newline at end of file diff --git a/README.md b/README.md index ba65699..60614a3 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# ๐Ÿ”— Comfyui : Bjornulf_custom_nodes v0.65 ๐Ÿ”— +# ๐Ÿ”— Comfyui : Bjornulf_custom_nodes v0.66 ๐Ÿ”— -A list of 116 custom nodes for Comfyui : Display, manipulate, create and edit text, images, videos, loras, generate characters and more. +A list of 119 custom nodes for Comfyui : Display, manipulate, create and edit text, images, videos, loras, generate characters and more. You can manage looping operations, generate randomized content, trigger logical conditions, pause and manually control your workflows and even work with external AI tools, like Ollama or Text To Speech. # Coffee : โ˜•โ˜•โ˜•โ˜•โ˜• 5/5 @@ -42,6 +42,7 @@ Support me and my work : โค๏ธโค๏ธโค๏ธ โค๏ธ `113.` [๐Ÿ“๐Ÿ”ช Text split in 5](#113----text-split-in-5) `115.` [๐Ÿ“ฅ Load Text From Bjornulf Folder](115----load-text-from-bjornulf-folder) `116.` [๐Ÿ“ฅ Load Text From Path](#116----load-text-from-path) +`117.` [๐Ÿ“๐Ÿ‘ˆ Line selector (๐ŸŽฒ Or random)](#) ## ๐Ÿ”ฅ Text Generator ๐Ÿ”ฅ `81.` [๐Ÿ”ฅ๐Ÿ“ Text Generator ๐Ÿ“๐Ÿ”ฅ](#81----text-generator-) @@ -97,6 +98,7 @@ Support me and my work : โค๏ธโค๏ธโค๏ธ โค๏ธ `41.` [๐ŸŽฒ Random Load checkpoint (Model Selector)](#41----random-load-checkpoint-model-selector) `48.` [๐Ÿ”€๐ŸŽฒ Text scrambler (๐Ÿง‘ Character)](#48----text-scrambler--character) `55.` [๐ŸŽฒ๐Ÿ‘‘ Random Lora Selector](#55----random-lora-selector) +`117.` [๐Ÿ“๐Ÿ‘ˆ Line selector (๐ŸŽฒ Or random)](#) ## ๐Ÿ–ผ๐Ÿ’พ Image Save ๐Ÿ’พ๐Ÿ–ผ `16.` [๐Ÿ’พ๐Ÿ–ผ๐Ÿ’ฌ Save image for Bjornulf LobeChat](#16----save-image-for-bjornulf-lobechat-for-my-custom-lobe-chat) @@ -155,6 +157,7 @@ Support me and my work : โค๏ธโค๏ธโค๏ธ โค๏ธ `103.` [๐Ÿ“ฅ๐Ÿ‘‘ Load Lora SD1.5 (+Download from CivitAi)](#103----load-lora-sd15-download-from-civitai) `104.` [๐Ÿ“ฅ๐Ÿ‘‘ Load Lora SDXL (+Download from CivitAi)](#104----load-lora-sdxl-download-from-civitai) `105.` [๐Ÿ“ฅ๐Ÿ‘‘ Load Lora Pony (+Download from CivitAi)](#105----load-lora-pony-download-from-civitai) +`119.` [๐Ÿ“ฅ๐Ÿ‘‘๐Ÿ“น Load Lora Hunyuan Video (+Download from CivitAi)](#) ## ๐Ÿ“น Video ๐Ÿ“น `20.` [๐Ÿ“น Video Ping Pong](#20----video-ping-pong) @@ -171,21 +174,24 @@ Support me and my work : โค๏ธโค๏ธโค๏ธ โค๏ธ `77.` [๐Ÿ“น๐Ÿ” Video details โš™](#77----video-details-) `78.` [๐Ÿ“นโžœ๐Ÿ“น Convert Video](#78----convert-video) `79.` [๐Ÿ“น๐Ÿ”— Concat Videos from list](#79----concat-videos-from-list) +`119.` [๐Ÿ“ฅ๐Ÿ‘‘๐Ÿ“น Load Lora Hunyuan Video (+Download from CivitAi)](#) ## ๐Ÿค– AI ๐Ÿค– `19.` [๐Ÿฆ™๐Ÿ’ฌ Ollama Talk](#19----ollama-talk) +`31.` [๐Ÿ“โžœ๐Ÿ”Š TTS - Text to Speech](#31----tts---text-to-speech-100-local-any-voice-you-want-any-language) `62.` [๐Ÿฆ™๐Ÿ‘ Ollama Vision](#62----ollama-vision) `63.` [๐Ÿฆ™ Ollama Configuration โš™](#63----ollama-configuration-) `64.` [๐Ÿฆ™ Ollama Job Selector ๐Ÿ’ผ](#64----ollama-job-selector-) `65.` [๐Ÿฆ™ Ollama Persona Selector ๐Ÿง‘](#65----ollama-persona-selector-) -`31.` [๐Ÿ“โžœ๐Ÿ”Š TTS - Text to Speech](#31----tts---text-to-speech-100-local-any-voice-you-want-any-language) `66.` [๐Ÿ”Šโžœ๐Ÿ“ STT - Speech to Text](#66----stt---speech-to-text) +`118.` [๐Ÿ”Š TTS Configuration โš™](#118) ## ๐Ÿ”Š Audio ๐Ÿ”Š `31.` [๐Ÿ“โžœ๐Ÿ”Š TTS - Text to Speech](#31----tts---text-to-speech-100-local-any-voice-you-want-any-language) `52.` [๐Ÿ”Š๐Ÿ“น Audio Video Sync](#52----audio-video-sync) `59.` [๐Ÿ“น๐Ÿ”Š Combine Video + Audio](#59----combine-video--audio) `66.` [๐Ÿ”Šโžœ๐Ÿ“ STT - Speech to Text](#66----stt---speech-to-text) +`118.` [๐Ÿ”Š TTS Configuration โš™](#118) ## ๐Ÿ’ป System ๐Ÿ’ป `34.` [๐Ÿงน Free VRAM hack](#34----free-vram-hack) @@ -353,6 +359,7 @@ cd /where/you/installed/ComfyUI && python main.py - **0.63**: delete long file, useless - **0.64**: remove "import wget", added some keywords to text generators. - **0.65**: โ—Breaking changes : Combine Text inputs are now all optional (PLease remake your nodes, sorry.) Add 6 new nodes : any2int, any2float, load text from folder, load text from path, load lora from path. Also upgraded the Save text node. +- **0.66**: Add lora hunyuan CIVIT ai + download, add TTS configuration node, edit requirements.txt # ๐Ÿ“ Nodes descriptions @@ -1641,3 +1648,35 @@ Just give the path of the file, it will recover its content. If you want, with `Load Text From Path` you can also recover the elements in "Bjornulf/Text" by just adding it: ![Load Text](screenshots/load_text_PATH.png) + +#### 117 - ๐Ÿ“๐Ÿ‘ˆ Line selector (๐ŸŽฒ Or random) + +**Description:** + +Select a line from input text. If set to 0 it will take a line at random. +If line taken at random,. it will not take a line starting with the symbol `#`. +So use that if you want to ignore a line. + +![Line Selector](screenshots/line_selector.png) + +#### 118 - ๐Ÿ”Š TTS Configuration โš™ + +**Description:** + +New optional configuration node to connect to TTS node, it can request a list of speakers for a given language and replace in the main TTS node : +- The URL. +- The language. +- The speaker. +Connect them only if you want to replace them with the one from the configuration node. + +![tts config](screenshots/tts_config.png) + +#### 119 - ๐Ÿ“ฅ๐Ÿ‘‘ Load Lora Hunyuan Video (+Download from CivitAi) + +**Description:** + +Take a CivitAI Lora to use with Hunyuan. (NSFW list not on github of course.) + +The workflow below is included : `workflows/HUNYUAN_basic_lora.json`) : + +![hunyuan lora](screenshots/hunyuan_lora.png) \ No newline at end of file diff --git a/__init__.py b/__init__.py index 45c1eb6..22568b0 100644 --- a/__init__.py +++ b/__init__.py @@ -37,7 +37,7 @@ from .random_seed_with_text import TextToStringAndSeed from .load_image_alpha import LoadImageWithTransparency from .image_mask_cutter import ImageMaskCutter from .character_description import CharacterDescriptionGenerator -from .text_to_speech import TextToSpeech +from .text_to_speech import TextToSpeech, XTTSConfig from .loop_combine_texts_by_lines import CombineTextsByLines from .free_vram_hack import FreeVRAM from .pause_resume_stop import PauseResume @@ -87,14 +87,18 @@ from .ffmpeg_convert import ConvertVideo from .text_generator import TextGenerator, TextGeneratorScene, TextGeneratorStyle, TextGeneratorCharacterFemale, TextGeneratorCharacterMale, TextGeneratorOutfitMale, TextGeneratorOutfitFemale, ListLooper, ListLooperScene, ListLooperStyle, ListLooperCharacter, ListLooperOutfitFemale, ListLooperOutfitMale, TextGeneratorCharacterPose, TextGeneratorCharacterObject, TextGeneratorCharacterCreature from .API_flux import APIGenerateFlux from .API_StableDiffusion import APIGenerateStability -from .API_civitai import APIGenerateCivitAI, APIGenerateCivitAIAddLORA, CivitAIModelSelectorPony, CivitAIModelSelectorSD15, CivitAIModelSelectorSDXL, CivitAIModelSelectorFLUX_S, CivitAIModelSelectorFLUX_D, CivitAILoraSelectorSD15, CivitAILoraSelectorSDXL, CivitAILoraSelectorPONY +from .API_civitai import APIGenerateCivitAI, APIGenerateCivitAIAddLORA, CivitAIModelSelectorPony, CivitAIModelSelectorSD15, CivitAIModelSelectorSDXL, CivitAIModelSelectorFLUX_S, CivitAIModelSelectorFLUX_D, CivitAILoraSelectorSD15, CivitAILoraSelectorSDXL, CivitAILoraSelectorPONY, CivitAILoraSelectorHunyuan from .API_falAI import APIGenerateFalAI from .latent_resolution_selector import LatentResolutionSelector from .loader_lora_with_path import LoaderLoraWithPath from .load_text import LoadTextFromFolder, LoadTextFromPath from .string_splitter import TextSplitin5 - +from .line_selector import LineSelector +# from .text_generator_t2v import TextGeneratorText2Video NODE_CLASS_MAPPINGS = { + "Bjornulf_LineSelector": LineSelector, + "Bjornulf_XTTSConfig": XTTSConfig, + # "Bjornulf_TextGeneratorText2Video": TextGeneratorText2Video, "Bjornulf_LatentResolutionSelector": LatentResolutionSelector, "Bjornulf_LoaderLoraWithPath": LoaderLoraWithPath, "Bjornulf_LoadTextFromPath": LoadTextFromPath, @@ -112,6 +116,7 @@ NODE_CLASS_MAPPINGS = { "Bjornulf_CivitAILoraSelectorSD15": CivitAILoraSelectorSD15, "Bjornulf_CivitAILoraSelectorSDXL": CivitAILoraSelectorSDXL, "Bjornulf_CivitAILoraSelectorPONY": CivitAILoraSelectorPONY, + "Bjornulf_CivitAILoraSelectorHunyuan": CivitAILoraSelectorHunyuan, # "Bjornulf_CivitAILoraSelector": CivitAILoraSelector, "Bjornulf_APIGenerateCivitAIAddLORA": APIGenerateCivitAIAddLORA, "Bjornulf_TextGenerator": TextGenerator, @@ -222,7 +227,9 @@ NODE_DISPLAY_NAME_MAPPINGS = { # "Bjornulf_ImageBlend": "๐ŸŽจ Image Blend", # "Bjornulf_APIHiResCivitAI": "๐ŸŽจโžœ๐ŸŽจ API Image hires fix (CivitAI)", # "Bjornulf_CivitAILoraSelector": "lora Civit", + "Bjornulf_LineSelector": "๐Ÿ“๐Ÿ‘ˆ Line selector (๐ŸŽฒ Or random)", "Bjornulf_LoaderLoraWithPath": "๐Ÿ“ฅ๐Ÿ‘‘ Load Lora with Path", + # "Bjornulf_TextGeneratorText2Video": "๐Ÿ”ฅ๐Ÿ“๐Ÿ“น Text Generator for text to video ๐Ÿ“น๐Ÿ“๐Ÿ”ฅ", "Bjornulf_TextSplitin5": "๐Ÿ“๐Ÿ”ช Text split in 5", "Bjornulf_LatentResolutionSelector": "๐Ÿฉท Empty Latent Selector", "Bjornulf_CivitAIModelSelectorSD15": "๐Ÿ“ฅ Load checkpoint SD1.5 (+Download from CivitAi)", @@ -233,6 +240,7 @@ NODE_DISPLAY_NAME_MAPPINGS = { "Bjornulf_CivitAILoraSelectorSD15": "๐Ÿ“ฅ๐Ÿ‘‘ Load Lora SD1.5 (+Download from CivitAi)", "Bjornulf_CivitAILoraSelectorSDXL": "๐Ÿ“ฅ๐Ÿ‘‘ Load Lora SDXL (+Download from CivitAi)", "Bjornulf_CivitAILoraSelectorPONY": "๐Ÿ“ฅ๐Ÿ‘‘ Load Lora Pony (+Download from CivitAi)", + "Bjornulf_CivitAILoraSelectorHunyuan": "๐Ÿ“ฅ๐Ÿ‘‘๐Ÿ“น Load Lora Hunyuan Video (+Download from CivitAi)", "Bjornulf_APIGenerateFalAI": "โ˜๐ŸŽจ API Image Generator (FalAI) ๐ŸŽจโ˜", "Bjornulf_APIGenerateCivitAI": "โ˜๐ŸŽจ API Image Generator (CivitAI) ๐ŸŽจโ˜", "Bjornulf_APIGenerateCivitAIAddLORA": "โ˜๐Ÿ‘‘ Add Lora (API ONLY - CivitAI) ๐Ÿ‘‘โ˜", @@ -262,6 +270,7 @@ NODE_DISPLAY_NAME_MAPPINGS = { "Bjornulf_OllamaTalk": "๐Ÿฆ™๐Ÿ’ฌ Ollama Talk", "Bjornulf_OllamaImageVision": "๐Ÿฆ™๐Ÿ‘ Ollama Vision", "Bjornulf_OllamaConfig": "๐Ÿฆ™ Ollama Configuration โš™", + "Bjornulf_XTTSConfig": "๐Ÿ”Š TTS Configuration โš™", "Bjornulf_OllamaSystemJobSelector": "๐Ÿฆ™ Ollama Job Selector ๐Ÿ‘‡", "Bjornulf_OllamaSystemPersonaSelector": "๐Ÿฆ™ Ollama Persona Selector ๐Ÿ‘‡", "Bjornulf_SpeechToText": "๐Ÿ”Šโžœ๐Ÿ“ STT - Speech to Text", diff --git a/civitai/flux.1_d/Acorn_Is_Spinning_FLUX_39630458.jpeg b/civitai/flux.1_d/Acorn_Is_Spinning_FLUX_39630458.jpeg index d901d7b..78e2a2b 100644 Binary files a/civitai/flux.1_d/Acorn_Is_Spinning_FLUX_39630458.jpeg and b/civitai/flux.1_d/Acorn_Is_Spinning_FLUX_39630458.jpeg differ diff --git a/civitai/flux.1_d/Copax_StyleMix_33174667.jpeg b/civitai/flux.1_d/Copax_StyleMix_33174667.jpeg index 8c59b32..d637dc8 100644 Binary files a/civitai/flux.1_d/Copax_StyleMix_33174667.jpeg and b/civitai/flux.1_d/Copax_StyleMix_33174667.jpeg differ diff --git a/civitai/flux.1_d/Copax_TimeLess_43942459.jpeg b/civitai/flux.1_d/Copax_TimeLess_43942459.jpeg index fd30928..5b49edf 100644 Binary files a/civitai/flux.1_d/Copax_TimeLess_43942459.jpeg and b/civitai/flux.1_d/Copax_TimeLess_43942459.jpeg differ diff --git a/civitai/flux.1_d/DEMON_CORE__SFW_NSFW__39927830.jpeg b/civitai/flux.1_d/DEMON_CORE__SFW_NSFW__39927830.jpeg index be1a587..324dba5 100644 Binary files a/civitai/flux.1_d/DEMON_CORE__SFW_NSFW__39927830.jpeg and b/civitai/flux.1_d/DEMON_CORE__SFW_NSFW__39927830.jpeg differ diff --git a/civitai/flux.1_d/FLUX.1__dev__35931538.jpeg b/civitai/flux.1_d/FLUX.1__dev__35931538.jpeg index db49472..a1b38c2 100644 Binary files a/civitai/flux.1_d/FLUX.1__dev__35931538.jpeg and b/civitai/flux.1_d/FLUX.1__dev__35931538.jpeg differ diff --git a/civitai/flux.1_d/FLUX_22496037.jpeg b/civitai/flux.1_d/FLUX_22496037.jpeg index 7cb1596..6d9d73c 100644 Binary files a/civitai/flux.1_d/FLUX_22496037.jpeg and b/civitai/flux.1_d/FLUX_22496037.jpeg differ diff --git a/civitai/flux.1_d/Flux.1-Dev_Hyper_NF4___Flux.1-Dev_BNB_NF4___Flux.1-Schnell_BNB_NF4_28351013.jpeg b/civitai/flux.1_d/Flux.1-Dev_Hyper_NF4___Flux.1-Dev_BNB_NF4___Flux.1-Schnell_BNB_NF4_28351013.jpeg index 04f04ca..d1dd6f9 100644 Binary files a/civitai/flux.1_d/Flux.1-Dev_Hyper_NF4___Flux.1-Dev_BNB_NF4___Flux.1-Schnell_BNB_NF4_28351013.jpeg and b/civitai/flux.1_d/Flux.1-Dev_Hyper_NF4___Flux.1-Dev_BNB_NF4___Flux.1-Schnell_BNB_NF4_28351013.jpeg differ diff --git a/civitai/flux.1_d/Flux_Fusion_V2__4_steps___GGUF____NF4___FP8_FP16__34324641.jpeg b/civitai/flux.1_d/Flux_Fusion_V2__4_steps___GGUF____NF4___FP8_FP16__34324641.jpeg index e0f5172..d5935a7 100644 Binary files a/civitai/flux.1_d/Flux_Fusion_V2__4_steps___GGUF____NF4___FP8_FP16__34324641.jpeg and b/civitai/flux.1_d/Flux_Fusion_V2__4_steps___GGUF____NF4___FP8_FP16__34324641.jpeg differ diff --git a/civitai/flux.1_d/Flux_Realistic_34946133.jpeg b/civitai/flux.1_d/Flux_Realistic_34946133.jpeg index 352aa11..b3c56ea 100644 Binary files a/civitai/flux.1_d/Flux_Realistic_34946133.jpeg and b/civitai/flux.1_d/Flux_Realistic_34946133.jpeg differ diff --git a/civitai/flux.1_d/Flux_Unchained_by_SCG_26124677.jpeg b/civitai/flux.1_d/Flux_Unchained_by_SCG_26124677.jpeg index 21ad2e6..956055f 100644 Binary files a/civitai/flux.1_d/Flux_Unchained_by_SCG_26124677.jpeg and b/civitai/flux.1_d/Flux_Unchained_by_SCG_26124677.jpeg differ diff --git a/civitai/flux.1_d/PixelWave_36472754.jpeg b/civitai/flux.1_d/PixelWave_36472754.jpeg index 3503fdd..eca4224 100644 Binary files a/civitai/flux.1_d/PixelWave_36472754.jpeg and b/civitai/flux.1_d/PixelWave_36472754.jpeg differ diff --git a/civitai/flux.1_d/Real_Horny_Pro_V3_36642364.jpeg b/civitai/flux.1_d/Real_Horny_Pro_V3_36642364.jpeg index 20c0db3..90ed81d 100644 Binary files a/civitai/flux.1_d/Real_Horny_Pro_V3_36642364.jpeg and b/civitai/flux.1_d/Real_Horny_Pro_V3_36642364.jpeg differ diff --git a/civitai/flux.1_d/Sexy_Toons_feat._Pipa_38378319.jpeg b/civitai/flux.1_d/Sexy_Toons_feat._Pipa_38378319.jpeg index aca254b..084ae64 100644 Binary files a/civitai/flux.1_d/Sexy_Toons_feat._Pipa_38378319.jpeg and b/civitai/flux.1_d/Sexy_Toons_feat._Pipa_38378319.jpeg differ diff --git a/civitai/flux.1_d/_Lah__Mysterious___Flux_update_30465956.jpeg b/civitai/flux.1_d/_Lah__Mysterious___Flux_update_30465956.jpeg index 6f21274..e5467b6 100644 Binary files a/civitai/flux.1_d/_Lah__Mysterious___Flux_update_30465956.jpeg and b/civitai/flux.1_d/_Lah__Mysterious___Flux_update_30465956.jpeg differ diff --git a/civitai/flux.1_d/็ปชๅ„ฟ-็บข่“ๅนปๆƒณ_Red-blue_fantasy_44214652.jpeg b/civitai/flux.1_d/็ปชๅ„ฟ-็บข่“ๅนปๆƒณ_Red-blue_fantasy_44214652.jpeg index 6da37e3..225dcd4 100644 Binary files a/civitai/flux.1_d/็ปชๅ„ฟ-็บข่“ๅนปๆƒณ_Red-blue_fantasy_44214652.jpeg and b/civitai/flux.1_d/็ปชๅ„ฟ-็บข่“ๅนปๆƒณ_Red-blue_fantasy_44214652.jpeg differ diff --git a/civitai/flux.1_s/FenrisXL___Flux_34402126.jpeg b/civitai/flux.1_s/FenrisXL___Flux_34402126.jpeg index bb22ae6..f4b5cf1 100644 Binary files a/civitai/flux.1_s/FenrisXL___Flux_34402126.jpeg and b/civitai/flux.1_s/FenrisXL___Flux_34402126.jpeg differ diff --git a/civitai/flux.1_s/WoW__XL_PD_Flux_._33921271.jpeg b/civitai/flux.1_s/WoW__XL_PD_Flux_._33921271.jpeg index c1fef06..ba45285 100644 Binary files a/civitai/flux.1_s/WoW__XL_PD_Flux_._33921271.jpeg and b/civitai/flux.1_s/WoW__XL_PD_Flux_._33921271.jpeg differ diff --git a/civitai/illustrious/CAT_-_Citron_Anime_Treasure__Illustrious___SDXL___SD1.5__41168446.jpeg b/civitai/illustrious/CAT_-_Citron_Anime_Treasure__Illustrious___SDXL___SD1.5__41168446.jpeg index 908ab96..bd3cf33 100644 Binary files a/civitai/illustrious/CAT_-_Citron_Anime_Treasure__Illustrious___SDXL___SD1.5__41168446.jpeg and b/civitai/illustrious/CAT_-_Citron_Anime_Treasure__Illustrious___SDXL___SD1.5__41168446.jpeg differ diff --git a/civitai/illustrious/Hassaku_XL__Illustrious__43400728.jpeg b/civitai/illustrious/Hassaku_XL__Illustrious__43400728.jpeg index 3cad59d..237974b 100644 Binary files a/civitai/illustrious/Hassaku_XL__Illustrious__43400728.jpeg and b/civitai/illustrious/Hassaku_XL__Illustrious__43400728.jpeg differ diff --git a/civitai/illustrious/Illustrious-XL_31462610.jpeg b/civitai/illustrious/Illustrious-XL_31462610.jpeg index 5eed34c..22e63f4 100644 Binary files a/civitai/illustrious/Illustrious-XL_31462610.jpeg and b/civitai/illustrious/Illustrious-XL_31462610.jpeg differ diff --git a/civitai/illustrious/Illustrious-XL_SmoothFT_37719733.jpeg b/civitai/illustrious/Illustrious-XL_SmoothFT_37719733.jpeg index 0d71d9d..52ecfdd 100644 Binary files a/civitai/illustrious/Illustrious-XL_SmoothFT_37719733.jpeg and b/civitai/illustrious/Illustrious-XL_SmoothFT_37719733.jpeg differ diff --git a/civitai/illustrious/Illustrious_XL_personal_merge__noob_v-pred0.5_test_merge_updated__38131610.jpeg b/civitai/illustrious/Illustrious_XL_personal_merge__noob_v-pred0.5_test_merge_updated__38131610.jpeg index 9c1e9b0..0a25d4c 100644 Binary files a/civitai/illustrious/Illustrious_XL_personal_merge__noob_v-pred0.5_test_merge_updated__38131610.jpeg and b/civitai/illustrious/Illustrious_XL_personal_merge__noob_v-pred0.5_test_merge_updated__38131610.jpeg differ diff --git a/civitai/illustrious/NTR_MIX___illustrious-XL___Noob-XL_43130515.jpeg b/civitai/illustrious/NTR_MIX___illustrious-XL___Noob-XL_43130515.jpeg index b92d79b..6578e41 100644 Binary files a/civitai/illustrious/NTR_MIX___illustrious-XL___Noob-XL_43130515.jpeg and b/civitai/illustrious/NTR_MIX___illustrious-XL___Noob-XL_43130515.jpeg differ diff --git a/civitai/illustrious/Nova_Anime_XL_40328450.jpeg b/civitai/illustrious/Nova_Anime_XL_40328450.jpeg index cc9d457..123194d 100644 Binary files a/civitai/illustrious/Nova_Anime_XL_40328450.jpeg and b/civitai/illustrious/Nova_Anime_XL_40328450.jpeg differ diff --git a/civitai/illustrious/Obsession__Illustrious-XL__44056177.jpeg b/civitai/illustrious/Obsession__Illustrious-XL__44056177.jpeg index 9396865..917facd 100644 Binary files a/civitai/illustrious/Obsession__Illustrious-XL__44056177.jpeg and b/civitai/illustrious/Obsession__Illustrious-XL__44056177.jpeg differ diff --git a/civitai/illustrious/PornMaster-Pro_่‰ฒๆƒ…ๅคงๅธˆ_42950105.jpeg b/civitai/illustrious/PornMaster-Pro_่‰ฒๆƒ…ๅคงๅธˆ_42950105.jpeg index 7a72f2f..b02c98b 100644 Binary files a/civitai/illustrious/PornMaster-Pro_่‰ฒๆƒ…ๅคงๅธˆ_42950105.jpeg and b/civitai/illustrious/PornMaster-Pro_่‰ฒๆƒ…ๅคงๅธˆ_42950105.jpeg differ diff --git a/civitai/illustrious/SilvermoonMix01-Illustrious_43022328.jpeg b/civitai/illustrious/SilvermoonMix01-Illustrious_43022328.jpeg index 8c1fd7e..e42d8cd 100644 Binary files a/civitai/illustrious/SilvermoonMix01-Illustrious_43022328.jpeg and b/civitai/illustrious/SilvermoonMix01-Illustrious_43022328.jpeg differ diff --git a/civitai/illustrious/WAI-NSFW-illustrious-SDXL_40505063.jpeg b/civitai/illustrious/WAI-NSFW-illustrious-SDXL_40505063.jpeg index 0859195..7560e8f 100644 Binary files a/civitai/illustrious/WAI-NSFW-illustrious-SDXL_40505063.jpeg and b/civitai/illustrious/WAI-NSFW-illustrious-SDXL_40505063.jpeg differ diff --git a/civitai/lora_flux.1_d/Amateur_Photography__Flux_Dev__36532454.jpeg b/civitai/lora_flux.1_d/Amateur_Photography__Flux_Dev__36532454.jpeg index 00c37a8..a67e1e1 100644 Binary files a/civitai/lora_flux.1_d/Amateur_Photography__Flux_Dev__36532454.jpeg and b/civitai/lora_flux.1_d/Amateur_Photography__Flux_Dev__36532454.jpeg differ diff --git a/civitai/lora_flux.1_d/Cyberpunk_Anime_Style_25310672.jpeg b/civitai/lora_flux.1_d/Cyberpunk_Anime_Style_25310672.jpeg index 5555df9..e1a5647 100644 Binary files a/civitai/lora_flux.1_d/Cyberpunk_Anime_Style_25310672.jpeg and b/civitai/lora_flux.1_d/Cyberpunk_Anime_Style_25310672.jpeg differ diff --git a/civitai/lora_flux.1_d/Detailed_Perfection_style_XL___F1D___SD1.5__Hands___Feet___Face___Body___All_in_one__33301077.jpeg b/civitai/lora_flux.1_d/Detailed_Perfection_style_XL___F1D___SD1.5__Hands___Feet___Face___Body___All_in_one__33301077.jpeg index 005d9cb..26ff8e2 100644 Binary files a/civitai/lora_flux.1_d/Detailed_Perfection_style_XL___F1D___SD1.5__Hands___Feet___Face___Body___All_in_one__33301077.jpeg and b/civitai/lora_flux.1_d/Detailed_Perfection_style_XL___F1D___SD1.5__Hands___Feet___Face___Body___All_in_one__33301077.jpeg differ diff --git a/civitai/lora_flux.1_d/DreamART_Style_LORA_26272318.jpeg b/civitai/lora_flux.1_d/DreamART_Style_LORA_26272318.jpeg index 86e939b..e6327f6 100644 Binary files a/civitai/lora_flux.1_d/DreamART_Style_LORA_26272318.jpeg and b/civitai/lora_flux.1_d/DreamART_Style_LORA_26272318.jpeg differ diff --git a/civitai/lora_flux.1_d/FLUX_Image_Upgrader___Detail_Maximizer___Contrast_Fix_for_low_CFG___SDXL___SD_1.5__36032393.jpeg b/civitai/lora_flux.1_d/FLUX_Image_Upgrader___Detail_Maximizer___Contrast_Fix_for_low_CFG___SDXL___SD_1.5__36032393.jpeg index afc94a0..9667e44 100644 Binary files a/civitai/lora_flux.1_d/FLUX_Image_Upgrader___Detail_Maximizer___Contrast_Fix_for_low_CFG___SDXL___SD_1.5__36032393.jpeg and b/civitai/lora_flux.1_d/FLUX_Image_Upgrader___Detail_Maximizer___Contrast_Fix_for_low_CFG___SDXL___SD_1.5__36032393.jpeg differ diff --git a/civitai/lora_flux.1_d/FLUX__FaeTastic_Details_24159332.jpeg b/civitai/lora_flux.1_d/FLUX__FaeTastic_Details_24159332.jpeg index 68d3330..d8a0cb8 100644 Binary files a/civitai/lora_flux.1_d/FLUX__FaeTastic_Details_24159332.jpeg and b/civitai/lora_flux.1_d/FLUX__FaeTastic_Details_24159332.jpeg differ diff --git a/civitai/lora_flux.1_d/Fantasy_Wizard___Witches_30785243.jpeg b/civitai/lora_flux.1_d/Fantasy_Wizard___Witches_30785243.jpeg index 72bbdc9..504ca38 100644 Binary files a/civitai/lora_flux.1_d/Fantasy_Wizard___Witches_30785243.jpeg and b/civitai/lora_flux.1_d/Fantasy_Wizard___Witches_30785243.jpeg differ diff --git a/civitai/lora_flux.1_d/Feet_XL___SD_1.5___FLUX.1-dev_41125339.jpeg b/civitai/lora_flux.1_d/Feet_XL___SD_1.5___FLUX.1-dev_41125339.jpeg index 246ceb6..465a74d 100644 Binary files a/civitai/lora_flux.1_d/Feet_XL___SD_1.5___FLUX.1-dev_41125339.jpeg and b/civitai/lora_flux.1_d/Feet_XL___SD_1.5___FLUX.1-dev_41125339.jpeg differ diff --git a/civitai/lora_flux.1_d/Flat_Colour_Anime_29267436.jpeg b/civitai/lora_flux.1_d/Flat_Colour_Anime_29267436.jpeg index 56edad0..2e0665e 100644 Binary files a/civitai/lora_flux.1_d/Flat_Colour_Anime_29267436.jpeg and b/civitai/lora_flux.1_d/Flat_Colour_Anime_29267436.jpeg differ diff --git a/civitai/lora_flux.1_d/Furry_Enhancer_43352196.jpeg b/civitai/lora_flux.1_d/Furry_Enhancer_43352196.jpeg index 2f086da..73b0129 100644 Binary files a/civitai/lora_flux.1_d/Furry_Enhancer_43352196.jpeg and b/civitai/lora_flux.1_d/Furry_Enhancer_43352196.jpeg differ diff --git a/civitai/lora_flux.1_d/Granblue_fantasy_style_26587798.jpeg b/civitai/lora_flux.1_d/Granblue_fantasy_style_26587798.jpeg index 0754198..9c45ca7 100644 Binary files a/civitai/lora_flux.1_d/Granblue_fantasy_style_26587798.jpeg and b/civitai/lora_flux.1_d/Granblue_fantasy_style_26587798.jpeg differ diff --git a/civitai/lora_flux.1_d/Graphic_portrait_28153351.jpeg b/civitai/lora_flux.1_d/Graphic_portrait_28153351.jpeg index 38e4718..3e248b4 100644 Binary files a/civitai/lora_flux.1_d/Graphic_portrait_28153351.jpeg and b/civitai/lora_flux.1_d/Graphic_portrait_28153351.jpeg differ diff --git a/civitai/lora_flux.1_d/Gundam_RX78-2_outfit_style_้ซ˜่พพRX78-2ๅค–่ง‚้ฃŽๆ ผ_27167926.jpeg b/civitai/lora_flux.1_d/Gundam_RX78-2_outfit_style_้ซ˜่พพRX78-2ๅค–่ง‚้ฃŽๆ ผ_27167926.jpeg index 4cc031b..dd3efa7 100644 Binary files a/civitai/lora_flux.1_d/Gundam_RX78-2_outfit_style_้ซ˜่พพRX78-2ๅค–่ง‚้ฃŽๆ ผ_27167926.jpeg and b/civitai/lora_flux.1_d/Gundam_RX78-2_outfit_style_้ซ˜่พพRX78-2ๅค–่ง‚้ฃŽๆ ผ_27167926.jpeg differ diff --git a/civitai/lora_flux.1_d/Hand_Detail_XL_Lora_37036908.jpeg b/civitai/lora_flux.1_d/Hand_Detail_XL_Lora_37036908.jpeg index 7711eaa..d435e6f 100644 Binary files a/civitai/lora_flux.1_d/Hand_Detail_XL_Lora_37036908.jpeg and b/civitai/lora_flux.1_d/Hand_Detail_XL_Lora_37036908.jpeg differ diff --git a/civitai/lora_flux.1_d/Hands_XL___SD_1.5___FLUX.1-dev_27706512.jpeg b/civitai/lora_flux.1_d/Hands_XL___SD_1.5___FLUX.1-dev_27706512.jpeg index 99a4e56..4a3081e 100644 Binary files a/civitai/lora_flux.1_d/Hands_XL___SD_1.5___FLUX.1-dev_27706512.jpeg and b/civitai/lora_flux.1_d/Hands_XL___SD_1.5___FLUX.1-dev_27706512.jpeg differ diff --git a/civitai/lora_flux.1_d/Hourglass_Body_Shape_SD1.5_SDXL_PONY_FLUX___olaz_33342563.jpeg b/civitai/lora_flux.1_d/Hourglass_Body_Shape_SD1.5_SDXL_PONY_FLUX___olaz_33342563.jpeg index 0aceca6..588335d 100644 Binary files a/civitai/lora_flux.1_d/Hourglass_Body_Shape_SD1.5_SDXL_PONY_FLUX___olaz_33342563.jpeg and b/civitai/lora_flux.1_d/Hourglass_Body_Shape_SD1.5_SDXL_PONY_FLUX___olaz_33342563.jpeg differ diff --git a/civitai/lora_flux.1_d/Li_Yitong_CN_actress_ๆŽไธ€ๆก_SD15___FLUX_30506936.jpeg b/civitai/lora_flux.1_d/Li_Yitong_CN_actress_ๆŽไธ€ๆก_SD15___FLUX_30506936.jpeg index b53e09e..6054fc2 100644 Binary files a/civitai/lora_flux.1_d/Li_Yitong_CN_actress_ๆŽไธ€ๆก_SD15___FLUX_30506936.jpeg and b/civitai/lora_flux.1_d/Li_Yitong_CN_actress_ๆŽไธ€ๆก_SD15___FLUX_30506936.jpeg differ diff --git a/civitai/lora_flux.1_d/Midjourney_V6.1_meets_FLUX______SDXL__35866969.jpeg b/civitai/lora_flux.1_d/Midjourney_V6.1_meets_FLUX______SDXL__35866969.jpeg index 3e25e1b..3430c40 100644 Binary files a/civitai/lora_flux.1_d/Midjourney_V6.1_meets_FLUX______SDXL__35866969.jpeg and b/civitai/lora_flux.1_d/Midjourney_V6.1_meets_FLUX______SDXL__35866969.jpeg differ diff --git a/civitai/lora_flux.1_d/PAseerๆ‰€ๅ–œ็ˆฑ็š„้ฃŽๆ ผ-moxin_assist_for_adding_colorful_33766268.jpeg b/civitai/lora_flux.1_d/PAseerๆ‰€ๅ–œ็ˆฑ็š„้ฃŽๆ ผ-moxin_assist_for_adding_colorful_33766268.jpeg index 57b72a9..8c6235c 100644 Binary files a/civitai/lora_flux.1_d/PAseerๆ‰€ๅ–œ็ˆฑ็š„้ฃŽๆ ผ-moxin_assist_for_adding_colorful_33766268.jpeg and b/civitai/lora_flux.1_d/PAseerๆ‰€ๅ–œ็ˆฑ็š„้ฃŽๆ ผ-moxin_assist_for_adding_colorful_33766268.jpeg differ diff --git a/civitai/lora_flux.1_d/Perfect_Round_Ass_SD1.5_SDXL_FLUX___olaz_39093030.jpeg b/civitai/lora_flux.1_d/Perfect_Round_Ass_SD1.5_SDXL_FLUX___olaz_39093030.jpeg index 08c4e8a..1e439f1 100644 Binary files a/civitai/lora_flux.1_d/Perfect_Round_Ass_SD1.5_SDXL_FLUX___olaz_39093030.jpeg and b/civitai/lora_flux.1_d/Perfect_Round_Ass_SD1.5_SDXL_FLUX___olaz_39093030.jpeg differ diff --git a/civitai/lora_flux.1_d/Realistic_Skin_Texture_style_XL__Detailed_Skin____SD1.5___Flux1D_41132230.jpeg b/civitai/lora_flux.1_d/Realistic_Skin_Texture_style_XL__Detailed_Skin____SD1.5___Flux1D_41132230.jpeg index 3a7fbc3..5a3f863 100644 Binary files a/civitai/lora_flux.1_d/Realistic_Skin_Texture_style_XL__Detailed_Skin____SD1.5___Flux1D_41132230.jpeg and b/civitai/lora_flux.1_d/Realistic_Skin_Texture_style_XL__Detailed_Skin____SD1.5___Flux1D_41132230.jpeg differ diff --git a/civitai/lora_flux.1_d/Retro_Anime_Flux_-_Style_27763004.jpeg b/civitai/lora_flux.1_d/Retro_Anime_Flux_-_Style_27763004.jpeg index 696eafa..7da01a6 100644 Binary files a/civitai/lora_flux.1_d/Retro_Anime_Flux_-_Style_27763004.jpeg and b/civitai/lora_flux.1_d/Retro_Anime_Flux_-_Style_27763004.jpeg differ diff --git a/civitai/lora_flux.1_d/SDXL___Flux.1_D_-_Matte__Vanta_Black_-_Experiment_27526677.jpeg b/civitai/lora_flux.1_d/SDXL___Flux.1_D_-_Matte__Vanta_Black_-_Experiment_27526677.jpeg index c7fea1d..f195ec3 100644 Binary files a/civitai/lora_flux.1_d/SDXL___Flux.1_D_-_Matte__Vanta_Black_-_Experiment_27526677.jpeg and b/civitai/lora_flux.1_d/SDXL___Flux.1_D_-_Matte__Vanta_Black_-_Experiment_27526677.jpeg differ diff --git a/civitai/lora_flux.1_d/Satoshi_Urushihara_style_27070903.jpeg b/civitai/lora_flux.1_d/Satoshi_Urushihara_style_27070903.jpeg index 6c7de1d..9741158 100644 Binary files a/civitai/lora_flux.1_d/Satoshi_Urushihara_style_27070903.jpeg and b/civitai/lora_flux.1_d/Satoshi_Urushihara_style_27070903.jpeg differ diff --git a/civitai/lora_flux.1_d/Sci-fi_Environments_27505926.jpeg b/civitai/lora_flux.1_d/Sci-fi_Environments_27505926.jpeg index c13b9c5..7504b6b 100644 Binary files a/civitai/lora_flux.1_d/Sci-fi_Environments_27505926.jpeg and b/civitai/lora_flux.1_d/Sci-fi_Environments_27505926.jpeg differ diff --git a/civitai/lora_flux.1_d/Sinfully_Stylish__dramatic_lighting__25915255.jpeg b/civitai/lora_flux.1_d/Sinfully_Stylish__dramatic_lighting__25915255.jpeg index 28fe653..a396672 100644 Binary files a/civitai/lora_flux.1_d/Sinfully_Stylish__dramatic_lighting__25915255.jpeg and b/civitai/lora_flux.1_d/Sinfully_Stylish__dramatic_lighting__25915255.jpeg differ diff --git a/civitai/lora_flux.1_d/UltraRealistic_Lora_Project_38865933.jpeg b/civitai/lora_flux.1_d/UltraRealistic_Lora_Project_38865933.jpeg index 490d832..30eeca1 100644 Binary files a/civitai/lora_flux.1_d/UltraRealistic_Lora_Project_38865933.jpeg and b/civitai/lora_flux.1_d/UltraRealistic_Lora_Project_38865933.jpeg differ diff --git a/civitai/lora_flux.1_d/Velvet_s_Mythic_Fantasy_Styles___Flux___Pony_25533323.jpeg b/civitai/lora_flux.1_d/Velvet_s_Mythic_Fantasy_Styles___Flux___Pony_25533323.jpeg index 3c50dd5..ed685f1 100644 Binary files a/civitai/lora_flux.1_d/Velvet_s_Mythic_Fantasy_Styles___Flux___Pony_25533323.jpeg and b/civitai/lora_flux.1_d/Velvet_s_Mythic_Fantasy_Styles___Flux___Pony_25533323.jpeg differ diff --git a/civitai/lora_flux.1_d/XLabs_Flux_Realism_LoRA_23346089.jpeg b/civitai/lora_flux.1_d/XLabs_Flux_Realism_LoRA_23346089.jpeg index 88cda72..1532c10 100644 Binary files a/civitai/lora_flux.1_d/XLabs_Flux_Realism_LoRA_23346089.jpeg and b/civitai/lora_flux.1_d/XLabs_Flux_Realism_LoRA_23346089.jpeg differ diff --git a/civitai/lora_flux.1_d/better_faces_cultures_sdxl_FLUX_38513472.jpeg b/civitai/lora_flux.1_d/better_faces_cultures_sdxl_FLUX_38513472.jpeg index 37fe4ec..22267ae 100644 Binary files a/civitai/lora_flux.1_d/better_faces_cultures_sdxl_FLUX_38513472.jpeg and b/civitai/lora_flux.1_d/better_faces_cultures_sdxl_FLUX_38513472.jpeg differ diff --git a/civitai/lora_flux.1_d/zyd232_s_Ink_Style_31597242.jpeg b/civitai/lora_flux.1_d/zyd232_s_Ink_Style_31597242.jpeg index 999a489..9c74186 100644 Binary files a/civitai/lora_flux.1_d/zyd232_s_Ink_Style_31597242.jpeg and b/civitai/lora_flux.1_d/zyd232_s_Ink_Style_31597242.jpeg differ diff --git a/civitai/lora_flux.1_d/ๅจœไนŒๆ–ฏๅ˜‰nwsj_realistic_31090762.jpeg b/civitai/lora_flux.1_d/ๅจœไนŒๆ–ฏๅ˜‰nwsj_realistic_31090762.jpeg index daea7b9..e340128 100644 Binary files a/civitai/lora_flux.1_d/ๅจœไนŒๆ–ฏๅ˜‰nwsj_realistic_31090762.jpeg and b/civitai/lora_flux.1_d/ๅจœไนŒๆ–ฏๅ˜‰nwsj_realistic_31090762.jpeg differ diff --git a/civitai/lora_hunyuan_video/Alanah_Pearce_-_Hunyuan_Video_Lora_51248788.jpeg b/civitai/lora_hunyuan_video/Alanah_Pearce_-_Hunyuan_Video_Lora_51248788.jpeg new file mode 100644 index 0000000..628d0d4 Binary files /dev/null and b/civitai/lora_hunyuan_video/Alanah_Pearce_-_Hunyuan_Video_Lora_51248788.jpeg differ diff --git a/civitai/lora_hunyuan_video/Alexandra_Daddario_-_Hunyuan_Video_Lora_51816846.jpeg b/civitai/lora_hunyuan_video/Alexandra_Daddario_-_Hunyuan_Video_Lora_51816846.jpeg new file mode 100644 index 0000000..9f42050 Binary files /dev/null and b/civitai/lora_hunyuan_video/Alexandra_Daddario_-_Hunyuan_Video_Lora_51816846.jpeg differ diff --git a/civitai/lora_hunyuan_video/Allison_Mack_-_Hunyuan_Video_Lora_51492013.jpeg b/civitai/lora_hunyuan_video/Allison_Mack_-_Hunyuan_Video_Lora_51492013.jpeg new file mode 100644 index 0000000..d628e51 Binary files /dev/null and b/civitai/lora_hunyuan_video/Allison_Mack_-_Hunyuan_Video_Lora_51492013.jpeg differ diff --git a/civitai/lora_hunyuan_video/Ana_De_Armas_lora_hunyuan_video_50356881.jpeg b/civitai/lora_hunyuan_video/Ana_De_Armas_lora_hunyuan_video_50356881.jpeg new file mode 100644 index 0000000..d02c40d Binary files /dev/null and b/civitai/lora_hunyuan_video/Ana_De_Armas_lora_hunyuan_video_50356881.jpeg differ diff --git a/civitai/lora_hunyuan_video/Andrea_Riseborough__from_Oblivion____Hunyuan_Video_LORA_49342846.jpeg b/civitai/lora_hunyuan_video/Andrea_Riseborough__from_Oblivion____Hunyuan_Video_LORA_49342846.jpeg new file mode 100644 index 0000000..98af3ce Binary files /dev/null and b/civitai/lora_hunyuan_video/Andrea_Riseborough__from_Oblivion____Hunyuan_Video_LORA_49342846.jpeg differ diff --git a/civitai/lora_hunyuan_video/Angela_Kinsey_Hunyuan_video_Lora_50743078.jpeg b/civitai/lora_hunyuan_video/Angela_Kinsey_Hunyuan_video_Lora_50743078.jpeg new file mode 100644 index 0000000..1cf1b02 Binary files /dev/null and b/civitai/lora_hunyuan_video/Angela_Kinsey_Hunyuan_video_Lora_50743078.jpeg differ diff --git a/civitai/lora_hunyuan_video/Angourie_Rice_-_Hunyuan_Video_Lora_51282006.jpeg b/civitai/lora_hunyuan_video/Angourie_Rice_-_Hunyuan_Video_Lora_51282006.jpeg new file mode 100644 index 0000000..cbd5682 Binary files /dev/null and b/civitai/lora_hunyuan_video/Angourie_Rice_-_Hunyuan_Video_Lora_51282006.jpeg differ diff --git a/civitai/lora_hunyuan_video/Anna_Chlumsky_Hunyuan_video_Lora_51118776.jpeg b/civitai/lora_hunyuan_video/Anna_Chlumsky_Hunyuan_video_Lora_51118776.jpeg new file mode 100644 index 0000000..d0400e6 Binary files /dev/null and b/civitai/lora_hunyuan_video/Anna_Chlumsky_Hunyuan_video_Lora_51118776.jpeg differ diff --git a/civitai/lora_hunyuan_video/Anna_Hunyuan_Lora_51250388.jpeg b/civitai/lora_hunyuan_video/Anna_Hunyuan_Lora_51250388.jpeg new file mode 100644 index 0000000..85da21d Binary files /dev/null and b/civitai/lora_hunyuan_video/Anna_Hunyuan_Lora_51250388.jpeg differ diff --git a/civitai/lora_hunyuan_video/Anne_Hathaway_-_Hunyuan_Video_Lora_51816952.jpeg b/civitai/lora_hunyuan_video/Anne_Hathaway_-_Hunyuan_Video_Lora_51816952.jpeg new file mode 100644 index 0000000..b5d9e0c Binary files /dev/null and b/civitai/lora_hunyuan_video/Anne_Hathaway_-_Hunyuan_Video_Lora_51816952.jpeg differ diff --git a/civitai/lora_hunyuan_video/Annie_Edison_from_Community__Alison_Brie____Hunyuan_Video_LORA_50979520.jpeg b/civitai/lora_hunyuan_video/Annie_Edison_from_Community__Alison_Brie____Hunyuan_Video_LORA_50979520.jpeg new file mode 100644 index 0000000..6559333 Binary files /dev/null and b/civitai/lora_hunyuan_video/Annie_Edison_from_Community__Alison_Brie____Hunyuan_Video_LORA_50979520.jpeg differ diff --git a/civitai/lora_hunyuan_video/Anya_Taylor_Joy_-_Hunyuan_Video_Lora_51298168.jpeg b/civitai/lora_hunyuan_video/Anya_Taylor_Joy_-_Hunyuan_Video_Lora_51298168.jpeg new file mode 100644 index 0000000..b0ebce8 Binary files /dev/null and b/civitai/lora_hunyuan_video/Anya_Taylor_Joy_-_Hunyuan_Video_Lora_51298168.jpeg differ diff --git a/civitai/lora_hunyuan_video/Ariana_Grande_-_Hunyuan_Video_Lora_51296793.jpeg b/civitai/lora_hunyuan_video/Ariana_Grande_-_Hunyuan_Video_Lora_51296793.jpeg new file mode 100644 index 0000000..3271450 Binary files /dev/null and b/civitai/lora_hunyuan_video/Ariana_Grande_-_Hunyuan_Video_Lora_51296793.jpeg differ diff --git a/civitai/lora_hunyuan_video/Avatar_Hunyuan_Video_LoRa_47850501.jpeg b/civitai/lora_hunyuan_video/Avatar_Hunyuan_Video_LoRa_47850501.jpeg new file mode 100644 index 0000000..0995f94 Binary files /dev/null and b/civitai/lora_hunyuan_video/Avatar_Hunyuan_Video_LoRa_47850501.jpeg differ diff --git a/civitai/lora_hunyuan_video/Baby_Sinclair__Hunyuan_Video__47729448.jpeg b/civitai/lora_hunyuan_video/Baby_Sinclair__Hunyuan_Video__47729448.jpeg new file mode 100644 index 0000000..130f2d7 Binary files /dev/null and b/civitai/lora_hunyuan_video/Baby_Sinclair__Hunyuan_Video__47729448.jpeg differ diff --git a/civitai/lora_hunyuan_video/Barbara_Palvin_-_Hunyuan_Video_Lora_51281696.jpeg b/civitai/lora_hunyuan_video/Barbara_Palvin_-_Hunyuan_Video_Lora_51281696.jpeg new file mode 100644 index 0000000..1dfd40d Binary files /dev/null and b/civitai/lora_hunyuan_video/Barbara_Palvin_-_Hunyuan_Video_Lora_51281696.jpeg differ diff --git a/civitai/lora_hunyuan_video/Belle_Delphine__Hunyuan_Video__49686175.jpeg b/civitai/lora_hunyuan_video/Belle_Delphine__Hunyuan_Video__49686175.jpeg new file mode 100644 index 0000000..03ea3ee Binary files /dev/null and b/civitai/lora_hunyuan_video/Belle_Delphine__Hunyuan_Video__49686175.jpeg differ diff --git a/civitai/lora_hunyuan_video/Billie_Eilish_-_Hunyuan_Video_Lora_51501439.jpeg b/civitai/lora_hunyuan_video/Billie_Eilish_-_Hunyuan_Video_Lora_51501439.jpeg new file mode 100644 index 0000000..e0e8729 Binary files /dev/null and b/civitai/lora_hunyuan_video/Billie_Eilish_-_Hunyuan_Video_Lora_51501439.jpeg differ diff --git a/civitai/lora_hunyuan_video/Black_Latex_-_HunYuan_47818801.jpeg b/civitai/lora_hunyuan_video/Black_Latex_-_HunYuan_47818801.jpeg new file mode 100644 index 0000000..5e363cb Binary files /dev/null and b/civitai/lora_hunyuan_video/Black_Latex_-_HunYuan_47818801.jpeg differ diff --git a/civitai/lora_hunyuan_video/Blu__Hunyuan_Video_Lora__48570554.jpeg b/civitai/lora_hunyuan_video/Blu__Hunyuan_Video_Lora__48570554.jpeg new file mode 100644 index 0000000..beb16e1 Binary files /dev/null and b/civitai/lora_hunyuan_video/Blu__Hunyuan_Video_Lora__48570554.jpeg differ diff --git a/civitai/lora_hunyuan_video/Brie_Larson_Hunyuan_video_Lora_50997833.jpeg b/civitai/lora_hunyuan_video/Brie_Larson_Hunyuan_video_Lora_50997833.jpeg new file mode 100644 index 0000000..5de856a Binary files /dev/null and b/civitai/lora_hunyuan_video/Brie_Larson_Hunyuan_video_Lora_50997833.jpeg differ diff --git a/civitai/lora_hunyuan_video/Britney_Spears_-_Hunyuan_Video_Lora_51817609.jpeg b/civitai/lora_hunyuan_video/Britney_Spears_-_Hunyuan_Video_Lora_51817609.jpeg new file mode 100644 index 0000000..8776569 Binary files /dev/null and b/civitai/lora_hunyuan_video/Britney_Spears_-_Hunyuan_Video_Lora_51817609.jpeg differ diff --git a/civitai/lora_hunyuan_video/Buratino___Co__Hunyuan_Video__49648606.jpeg b/civitai/lora_hunyuan_video/Buratino___Co__Hunyuan_Video__49648606.jpeg new file mode 100644 index 0000000..736819f Binary files /dev/null and b/civitai/lora_hunyuan_video/Buratino___Co__Hunyuan_Video__49648606.jpeg differ diff --git a/civitai/lora_hunyuan_video/Cheyenne_-_Hunyuan_Video_Lora_51090854.jpeg b/civitai/lora_hunyuan_video/Cheyenne_-_Hunyuan_Video_Lora_51090854.jpeg new file mode 100644 index 0000000..7241faa Binary files /dev/null and b/civitai/lora_hunyuan_video/Cheyenne_-_Hunyuan_Video_Lora_51090854.jpeg differ diff --git a/civitai/lora_hunyuan_video/Chloe_Grace_Moretz_-_Hunyuan_Video_Lora_51302071.jpeg b/civitai/lora_hunyuan_video/Chloe_Grace_Moretz_-_Hunyuan_Video_Lora_51302071.jpeg new file mode 100644 index 0000000..261b67b Binary files /dev/null and b/civitai/lora_hunyuan_video/Chloe_Grace_Moretz_-_Hunyuan_Video_Lora_51302071.jpeg differ diff --git a/civitai/lora_hunyuan_video/Ciri_-_The_Witcher_4__Hunyuan_Video__51409962.jpeg b/civitai/lora_hunyuan_video/Ciri_-_The_Witcher_4__Hunyuan_Video__51409962.jpeg new file mode 100644 index 0000000..10729a3 Binary files /dev/null and b/civitai/lora_hunyuan_video/Ciri_-_The_Witcher_4__Hunyuan_Video__51409962.jpeg differ diff --git a/civitai/lora_hunyuan_video/Civitai_Logo__Hunyuan_Video__50098973.jpeg b/civitai/lora_hunyuan_video/Civitai_Logo__Hunyuan_Video__50098973.jpeg new file mode 100644 index 0000000..f2e7861 Binary files /dev/null and b/civitai/lora_hunyuan_video/Civitai_Logo__Hunyuan_Video__50098973.jpeg differ diff --git a/civitai/lora_hunyuan_video/Daisy_Ridley_-_Hunyuan_Video_Lora_51515085.jpeg b/civitai/lora_hunyuan_video/Daisy_Ridley_-_Hunyuan_Video_Lora_51515085.jpeg new file mode 100644 index 0000000..c4e085a Binary files /dev/null and b/civitai/lora_hunyuan_video/Daisy_Ridley_-_Hunyuan_Video_Lora_51515085.jpeg differ diff --git a/civitai/lora_hunyuan_video/David_Hamilton_Cinematography_Style_LoRA_for_Hunyuan_video_45810615.jpeg b/civitai/lora_hunyuan_video/David_Hamilton_Cinematography_Style_LoRA_for_Hunyuan_video_45810615.jpeg new file mode 100644 index 0000000..bce2e6b Binary files /dev/null and b/civitai/lora_hunyuan_video/David_Hamilton_Cinematography_Style_LoRA_for_Hunyuan_video_45810615.jpeg differ diff --git a/civitai/lora_hunyuan_video/Dina_-_Hunyuan_Video_Lora_51079367.jpeg b/civitai/lora_hunyuan_video/Dina_-_Hunyuan_Video_Lora_51079367.jpeg new file mode 100644 index 0000000..06f559c Binary files /dev/null and b/civitai/lora_hunyuan_video/Dina_-_Hunyuan_Video_Lora_51079367.jpeg differ diff --git a/civitai/lora_hunyuan_video/Dua_Lipa_Hunyuan_Video_48740585.jpeg b/civitai/lora_hunyuan_video/Dua_Lipa_Hunyuan_Video_48740585.jpeg new file mode 100644 index 0000000..09ed6f0 Binary files /dev/null and b/civitai/lora_hunyuan_video/Dua_Lipa_Hunyuan_Video_48740585.jpeg differ diff --git a/civitai/lora_hunyuan_video/Eimi_Fukada__PonyXL_Flux_Hunyuan_Video__51633903.jpeg b/civitai/lora_hunyuan_video/Eimi_Fukada__PonyXL_Flux_Hunyuan_Video__51633903.jpeg new file mode 100644 index 0000000..5711dff Binary files /dev/null and b/civitai/lora_hunyuan_video/Eimi_Fukada__PonyXL_Flux_Hunyuan_Video__51633903.jpeg differ diff --git a/civitai/lora_hunyuan_video/Elizabeth_Olsen_Hunyuan_video_Lora_51195811.jpeg b/civitai/lora_hunyuan_video/Elizabeth_Olsen_Hunyuan_video_Lora_51195811.jpeg new file mode 100644 index 0000000..0646375 Binary files /dev/null and b/civitai/lora_hunyuan_video/Elizabeth_Olsen_Hunyuan_video_Lora_51195811.jpeg differ diff --git a/civitai/lora_hunyuan_video/Ella_Purnell_Hunyuan_video_Lora_49502572.jpeg b/civitai/lora_hunyuan_video/Ella_Purnell_Hunyuan_video_Lora_49502572.jpeg new file mode 100644 index 0000000..2ac8908 Binary files /dev/null and b/civitai/lora_hunyuan_video/Ella_Purnell_Hunyuan_video_Lora_49502572.jpeg differ diff --git a/civitai/lora_hunyuan_video/Ella_Purnell__Hunyuan_Video__51351144.jpeg b/civitai/lora_hunyuan_video/Ella_Purnell__Hunyuan_Video__51351144.jpeg new file mode 100644 index 0000000..fcb2d7e Binary files /dev/null and b/civitai/lora_hunyuan_video/Ella_Purnell__Hunyuan_Video__51351144.jpeg differ diff --git a/civitai/lora_hunyuan_video/Ellen_Page_-_Hunyuan_Video_Lora_51817961.jpeg b/civitai/lora_hunyuan_video/Ellen_Page_-_Hunyuan_Video_Lora_51817961.jpeg new file mode 100644 index 0000000..4e66666 Binary files /dev/null and b/civitai/lora_hunyuan_video/Ellen_Page_-_Hunyuan_Video_Lora_51817961.jpeg differ diff --git a/civitai/lora_hunyuan_video/Ellie_-_Hunyuan_Video_Lora_50847950.jpeg b/civitai/lora_hunyuan_video/Ellie_-_Hunyuan_Video_Lora_50847950.jpeg new file mode 100644 index 0000000..348ce8c Binary files /dev/null and b/civitai/lora_hunyuan_video/Ellie_-_Hunyuan_Video_Lora_50847950.jpeg differ diff --git a/civitai/lora_hunyuan_video/Elsa_Hunyuan_Lora_51012468.jpeg b/civitai/lora_hunyuan_video/Elsa_Hunyuan_Lora_51012468.jpeg new file mode 100644 index 0000000..b7723d3 Binary files /dev/null and b/civitai/lora_hunyuan_video/Elsa_Hunyuan_Lora_51012468.jpeg differ diff --git a/civitai/lora_hunyuan_video/Emilia_Clarke___Daenerys_Targaryen_-_HunyuanVideo_51166045.jpeg b/civitai/lora_hunyuan_video/Emilia_Clarke___Daenerys_Targaryen_-_HunyuanVideo_51166045.jpeg new file mode 100644 index 0000000..ee355bc Binary files /dev/null and b/civitai/lora_hunyuan_video/Emilia_Clarke___Daenerys_Targaryen_-_HunyuanVideo_51166045.jpeg differ diff --git a/civitai/lora_hunyuan_video/Emily_Ratajkowski_Hunyuan_video_Lora_48951329.jpeg b/civitai/lora_hunyuan_video/Emily_Ratajkowski_Hunyuan_video_Lora_48951329.jpeg new file mode 100644 index 0000000..cfbc675 Binary files /dev/null and b/civitai/lora_hunyuan_video/Emily_Ratajkowski_Hunyuan_video_Lora_48951329.jpeg differ diff --git a/civitai/lora_hunyuan_video/Emma_Hyers_-_Hunyuan_Video_Lora_50421009.jpeg b/civitai/lora_hunyuan_video/Emma_Hyers_-_Hunyuan_Video_Lora_50421009.jpeg new file mode 100644 index 0000000..dbd9cd8 Binary files /dev/null and b/civitai/lora_hunyuan_video/Emma_Hyers_-_Hunyuan_Video_Lora_50421009.jpeg differ diff --git a/civitai/lora_hunyuan_video/Emma_Watson_Hunyuan_video_Lora_49291156.jpeg b/civitai/lora_hunyuan_video/Emma_Watson_Hunyuan_video_Lora_49291156.jpeg new file mode 100644 index 0000000..3724700 Binary files /dev/null and b/civitai/lora_hunyuan_video/Emma_Watson_Hunyuan_video_Lora_49291156.jpeg differ diff --git a/civitai/lora_hunyuan_video/Evangeline_Lilly_Hunyuan_video_Lora_51779039.jpeg b/civitai/lora_hunyuan_video/Evangeline_Lilly_Hunyuan_video_Lora_51779039.jpeg new file mode 100644 index 0000000..b6afc69 Binary files /dev/null and b/civitai/lora_hunyuan_video/Evangeline_Lilly_Hunyuan_video_Lora_51779039.jpeg differ diff --git a/civitai/lora_hunyuan_video/Fat_Elvis_Hunyuan_Video_LoRA_45972230.jpeg b/civitai/lora_hunyuan_video/Fat_Elvis_Hunyuan_Video_LoRA_45972230.jpeg new file mode 100644 index 0000000..46aac9e Binary files /dev/null and b/civitai/lora_hunyuan_video/Fat_Elvis_Hunyuan_Video_LoRA_45972230.jpeg differ diff --git a/civitai/lora_hunyuan_video/Felicity_Jones_-_Hunyuan_Video_Lora_51481353.jpeg b/civitai/lora_hunyuan_video/Felicity_Jones_-_Hunyuan_Video_Lora_51481353.jpeg new file mode 100644 index 0000000..5d68293 Binary files /dev/null and b/civitai/lora_hunyuan_video/Felicity_Jones_-_Hunyuan_Video_Lora_51481353.jpeg differ diff --git a/civitai/lora_hunyuan_video/Female_-_Face_Portraits_-_Detailed_Skin_-_Hunyuan_48391997.jpeg b/civitai/lora_hunyuan_video/Female_-_Face_Portraits_-_Detailed_Skin_-_Hunyuan_48391997.jpeg new file mode 100644 index 0000000..446ccac Binary files /dev/null and b/civitai/lora_hunyuan_video/Female_-_Face_Portraits_-_Detailed_Skin_-_Hunyuan_48391997.jpeg differ diff --git a/civitai/lora_hunyuan_video/Freya_Allan_-_HunyuanVideo_50749895.jpeg b/civitai/lora_hunyuan_video/Freya_Allan_-_HunyuanVideo_50749895.jpeg new file mode 100644 index 0000000..9a19b1c Binary files /dev/null and b/civitai/lora_hunyuan_video/Freya_Allan_-_HunyuanVideo_50749895.jpeg differ diff --git a/civitai/lora_hunyuan_video/Gal_Gadot_Hunyuan_video_Lora_50965885.jpeg b/civitai/lora_hunyuan_video/Gal_Gadot_Hunyuan_video_Lora_50965885.jpeg new file mode 100644 index 0000000..100e4fa Binary files /dev/null and b/civitai/lora_hunyuan_video/Gal_Gadot_Hunyuan_video_Lora_50965885.jpeg differ diff --git a/civitai/lora_hunyuan_video/Gamora_-_Hunyuan_Video_Lora_50865955.jpeg b/civitai/lora_hunyuan_video/Gamora_-_Hunyuan_Video_Lora_50865955.jpeg new file mode 100644 index 0000000..b810768 Binary files /dev/null and b/civitai/lora_hunyuan_video/Gamora_-_Hunyuan_Video_Lora_50865955.jpeg differ diff --git a/civitai/lora_hunyuan_video/Gemma_Chan_-_Hunyuan_Video_Lora_51818154.jpeg b/civitai/lora_hunyuan_video/Gemma_Chan_-_Hunyuan_Video_Lora_51818154.jpeg new file mode 100644 index 0000000..c48a537 Binary files /dev/null and b/civitai/lora_hunyuan_video/Gemma_Chan_-_Hunyuan_Video_Lora_51818154.jpeg differ diff --git a/civitai/lora_hunyuan_video/Hailee_Steinfeld_-_Hunyuan_Video_Lora_51818142.jpeg b/civitai/lora_hunyuan_video/Hailee_Steinfeld_-_Hunyuan_Video_Lora_51818142.jpeg new file mode 100644 index 0000000..bc5fc32 Binary files /dev/null and b/civitai/lora_hunyuan_video/Hailee_Steinfeld_-_Hunyuan_Video_Lora_51818142.jpeg differ diff --git a/civitai/lora_hunyuan_video/Hakos_Baelz_Hunyuan_LoRA_48021968.jpeg b/civitai/lora_hunyuan_video/Hakos_Baelz_Hunyuan_LoRA_48021968.jpeg new file mode 100644 index 0000000..eb8340a Binary files /dev/null and b/civitai/lora_hunyuan_video/Hakos_Baelz_Hunyuan_LoRA_48021968.jpeg differ diff --git a/civitai/lora_hunyuan_video/Haley_Atwell_Hunyuan_video_Lora_51738176.jpeg b/civitai/lora_hunyuan_video/Haley_Atwell_Hunyuan_video_Lora_51738176.jpeg new file mode 100644 index 0000000..1407d62 Binary files /dev/null and b/civitai/lora_hunyuan_video/Haley_Atwell_Hunyuan_video_Lora_51738176.jpeg differ diff --git a/civitai/lora_hunyuan_video/Hera_Syndulla___Hunyuan_Video_LORA_51526974.jpeg b/civitai/lora_hunyuan_video/Hera_Syndulla___Hunyuan_Video_LORA_51526974.jpeg new file mode 100644 index 0000000..90147fd Binary files /dev/null and b/civitai/lora_hunyuan_video/Hera_Syndulla___Hunyuan_Video_LORA_51526974.jpeg differ diff --git a/civitai/lora_hunyuan_video/Himiko_Toga_-_Realistic___Animated__Hunyuan_Video__48509177.jpeg b/civitai/lora_hunyuan_video/Himiko_Toga_-_Realistic___Animated__Hunyuan_Video__48509177.jpeg new file mode 100644 index 0000000..18e472b Binary files /dev/null and b/civitai/lora_hunyuan_video/Himiko_Toga_-_Realistic___Animated__Hunyuan_Video__48509177.jpeg differ diff --git a/civitai/lora_hunyuan_video/HunyuanVideo_-_Frost_Bloom_้œœๅŽ_47393363.jpeg b/civitai/lora_hunyuan_video/HunyuanVideo_-_Frost_Bloom_้œœๅŽ_47393363.jpeg new file mode 100644 index 0000000..3ece033 Binary files /dev/null and b/civitai/lora_hunyuan_video/HunyuanVideo_-_Frost_Bloom_้œœๅŽ_47393363.jpeg differ diff --git a/civitai/lora_hunyuan_video/HunyuanVideo_-_Jenny_Lora_48868616.jpeg b/civitai/lora_hunyuan_video/HunyuanVideo_-_Jenny_Lora_48868616.jpeg new file mode 100644 index 0000000..8aa1ef0 Binary files /dev/null and b/civitai/lora_hunyuan_video/HunyuanVideo_-_Jenny_Lora_48868616.jpeg differ diff --git a/civitai/lora_hunyuan_video/HunyuanVideo_LoRA_Arcane_Jinx_45713289.jpeg b/civitai/lora_hunyuan_video/HunyuanVideo_LoRA_Arcane_Jinx_45713289.jpeg new file mode 100644 index 0000000..b5fa266 Binary files /dev/null and b/civitai/lora_hunyuan_video/HunyuanVideo_LoRA_Arcane_Jinx_45713289.jpeg differ diff --git a/civitai/lora_hunyuan_video/HunyuanVideo_Style_LoRA_-_Arcane_50998554.jpeg b/civitai/lora_hunyuan_video/HunyuanVideo_Style_LoRA_-_Arcane_50998554.jpeg new file mode 100644 index 0000000..4ab3ccb Binary files /dev/null and b/civitai/lora_hunyuan_video/HunyuanVideo_Style_LoRA_-_Arcane_50998554.jpeg differ diff --git a/civitai/lora_hunyuan_video/Hunyuan_-_Alice_Delish_Video_lora_49966631.jpeg b/civitai/lora_hunyuan_video/Hunyuan_-_Alice_Delish_Video_lora_49966631.jpeg new file mode 100644 index 0000000..3c02af8 Binary files /dev/null and b/civitai/lora_hunyuan_video/Hunyuan_-_Alice_Delish_Video_lora_49966631.jpeg differ diff --git a/civitai/lora_hunyuan_video/Hunyuan_Video_-_Alf_-_LoRA_-_1980s_television_Character_46313206.jpeg b/civitai/lora_hunyuan_video/Hunyuan_Video_-_Alf_-_LoRA_-_1980s_television_Character_46313206.jpeg new file mode 100644 index 0000000..3a64310 Binary files /dev/null and b/civitai/lora_hunyuan_video/Hunyuan_Video_-_Alf_-_LoRA_-_1980s_television_Character_46313206.jpeg differ diff --git a/civitai/lora_hunyuan_video/Hunyuan_Video_-_Arnold_Schwarzenegger_-_LoRA_45332037.jpeg b/civitai/lora_hunyuan_video/Hunyuan_Video_-_Arnold_Schwarzenegger_-_LoRA_45332037.jpeg new file mode 100644 index 0000000..54b5c92 Binary files /dev/null and b/civitai/lora_hunyuan_video/Hunyuan_Video_-_Arnold_Schwarzenegger_-_LoRA_45332037.jpeg differ diff --git a/civitai/lora_hunyuan_video/Hunyuan_Video_Lora_-_AnimeShots_47127332.jpeg b/civitai/lora_hunyuan_video/Hunyuan_Video_Lora_-_AnimeShots_47127332.jpeg new file mode 100644 index 0000000..2fad48a Binary files /dev/null and b/civitai/lora_hunyuan_video/Hunyuan_Video_Lora_-_AnimeShots_47127332.jpeg differ diff --git a/civitai/lora_hunyuan_video/Hunyuan_Video_Lora_-_Yor_46607353.jpeg b/civitai/lora_hunyuan_video/Hunyuan_Video_Lora_-_Yor_46607353.jpeg new file mode 100644 index 0000000..4b78998 Binary files /dev/null and b/civitai/lora_hunyuan_video/Hunyuan_Video_Lora_-_Yor_46607353.jpeg differ diff --git a/civitai/lora_hunyuan_video/Hunyuan_video_-_bogged_-_LoRA_45628400.jpeg b/civitai/lora_hunyuan_video/Hunyuan_video_-_bogged_-_LoRA_45628400.jpeg new file mode 100644 index 0000000..d9ebdd1 Binary files /dev/null and b/civitai/lora_hunyuan_video/Hunyuan_video_-_bogged_-_LoRA_45628400.jpeg differ diff --git a/civitai/lora_hunyuan_video/Inara__from_Firefly____Hunyuan_Video_LORA_49870409.jpeg b/civitai/lora_hunyuan_video/Inara__from_Firefly____Hunyuan_Video_LORA_49870409.jpeg new file mode 100644 index 0000000..3c137fa Binary files /dev/null and b/civitai/lora_hunyuan_video/Inara__from_Firefly____Hunyuan_Video_LORA_49870409.jpeg differ diff --git a/civitai/lora_hunyuan_video/Jenna_Fischer_Hunyuan_video_Lora_50117732.jpeg b/civitai/lora_hunyuan_video/Jenna_Fischer_Hunyuan_video_Lora_50117732.jpeg new file mode 100644 index 0000000..c0e2bd3 Binary files /dev/null and b/civitai/lora_hunyuan_video/Jenna_Fischer_Hunyuan_video_Lora_50117732.jpeg differ diff --git a/civitai/lora_hunyuan_video/Jennifer_Connelly__from_Career_Opportunities____Hunyuan_Video_LORA_49384788.jpeg b/civitai/lora_hunyuan_video/Jennifer_Connelly__from_Career_Opportunities____Hunyuan_Video_LORA_49384788.jpeg new file mode 100644 index 0000000..7aacf36 Binary files /dev/null and b/civitai/lora_hunyuan_video/Jennifer_Connelly__from_Career_Opportunities____Hunyuan_Video_LORA_49384788.jpeg differ diff --git a/civitai/lora_hunyuan_video/Jennifer_Lawrence_-_Hunyuan_video_Lora_50420359.jpeg b/civitai/lora_hunyuan_video/Jennifer_Lawrence_-_Hunyuan_video_Lora_50420359.jpeg new file mode 100644 index 0000000..fed8a52 Binary files /dev/null and b/civitai/lora_hunyuan_video/Jennifer_Lawrence_-_Hunyuan_video_Lora_50420359.jpeg differ diff --git a/civitai/lora_hunyuan_video/Jennifer_Love_Hewitt_Hunyuan_video_Lora_50295310.jpeg b/civitai/lora_hunyuan_video/Jennifer_Love_Hewitt_Hunyuan_video_Lora_50295310.jpeg new file mode 100644 index 0000000..e5cb3bb Binary files /dev/null and b/civitai/lora_hunyuan_video/Jennifer_Love_Hewitt_Hunyuan_video_Lora_50295310.jpeg differ diff --git a/civitai/lora_hunyuan_video/Jessica_Alba_-_Hunyuan_Video_Lora_51515398.jpeg b/civitai/lora_hunyuan_video/Jessica_Alba_-_Hunyuan_Video_Lora_51515398.jpeg new file mode 100644 index 0000000..903541c Binary files /dev/null and b/civitai/lora_hunyuan_video/Jessica_Alba_-_Hunyuan_Video_Lora_51515398.jpeg differ diff --git a/civitai/lora_hunyuan_video/Jessica_Chastain_-_Hunyuan_Video_Lora_51816781.jpeg b/civitai/lora_hunyuan_video/Jessica_Chastain_-_Hunyuan_Video_Lora_51816781.jpeg new file mode 100644 index 0000000..67a8e53 Binary files /dev/null and b/civitai/lora_hunyuan_video/Jessica_Chastain_-_Hunyuan_Video_Lora_51816781.jpeg differ diff --git a/civitai/lora_hunyuan_video/Joan_Holloway__Christina_Hendricks____Hunyuan_Video_LORA_48763837.jpeg b/civitai/lora_hunyuan_video/Joan_Holloway__Christina_Hendricks____Hunyuan_Video_LORA_48763837.jpeg new file mode 100644 index 0000000..1b651b3 Binary files /dev/null and b/civitai/lora_hunyuan_video/Joan_Holloway__Christina_Hendricks____Hunyuan_Video_LORA_48763837.jpeg differ diff --git a/civitai/lora_hunyuan_video/John_Wick_-_Hunyuan_Video_Lora_51066592.jpeg b/civitai/lora_hunyuan_video/John_Wick_-_Hunyuan_Video_Lora_51066592.jpeg new file mode 100644 index 0000000..cfc1b64 Binary files /dev/null and b/civitai/lora_hunyuan_video/John_Wick_-_Hunyuan_Video_Lora_51066592.jpeg differ diff --git a/civitai/lora_hunyuan_video/Judy_Hopps_HunyuanVideo_lora_51172702.jpeg b/civitai/lora_hunyuan_video/Judy_Hopps_HunyuanVideo_lora_51172702.jpeg new file mode 100644 index 0000000..1b219b8 Binary files /dev/null and b/civitai/lora_hunyuan_video/Judy_Hopps_HunyuanVideo_lora_51172702.jpeg differ diff --git a/civitai/lora_hunyuan_video/Kat_Dennings_Hunyuan_video_Lora_51147226.jpeg b/civitai/lora_hunyuan_video/Kat_Dennings_Hunyuan_video_Lora_51147226.jpeg new file mode 100644 index 0000000..a60b17d Binary files /dev/null and b/civitai/lora_hunyuan_video/Kat_Dennings_Hunyuan_video_Lora_51147226.jpeg differ diff --git a/civitai/lora_hunyuan_video/Kate_Flannery_Hunyuan_video_Lora_51567425.jpeg b/civitai/lora_hunyuan_video/Kate_Flannery_Hunyuan_video_Lora_51567425.jpeg new file mode 100644 index 0000000..82d417b Binary files /dev/null and b/civitai/lora_hunyuan_video/Kate_Flannery_Hunyuan_video_Lora_51567425.jpeg differ diff --git a/civitai/lora_hunyuan_video/Kate_Middleton_Hunyuan_video_Lora_50917147.jpeg b/civitai/lora_hunyuan_video/Kate_Middleton_Hunyuan_video_Lora_50917147.jpeg new file mode 100644 index 0000000..405f6ef Binary files /dev/null and b/civitai/lora_hunyuan_video/Kate_Middleton_Hunyuan_video_Lora_50917147.jpeg differ diff --git a/civitai/lora_hunyuan_video/Kate_Upton_-_Hunyuan_Video_Lora_51493515.jpeg b/civitai/lora_hunyuan_video/Kate_Upton_-_Hunyuan_Video_Lora_51493515.jpeg new file mode 100644 index 0000000..da28514 Binary files /dev/null and b/civitai/lora_hunyuan_video/Kate_Upton_-_Hunyuan_Video_Lora_51493515.jpeg differ diff --git a/civitai/lora_hunyuan_video/Kathryn_Newton_-_Hunyuan_Video_Lora_51481877.jpeg b/civitai/lora_hunyuan_video/Kathryn_Newton_-_Hunyuan_Video_Lora_51481877.jpeg new file mode 100644 index 0000000..036048a Binary files /dev/null and b/civitai/lora_hunyuan_video/Kathryn_Newton_-_Hunyuan_Video_Lora_51481877.jpeg differ diff --git a/civitai/lora_hunyuan_video/Katou_Megumi___hunyuan_video_46212991.jpeg b/civitai/lora_hunyuan_video/Katou_Megumi___hunyuan_video_46212991.jpeg new file mode 100644 index 0000000..4aef0a7 Binary files /dev/null and b/civitai/lora_hunyuan_video/Katou_Megumi___hunyuan_video_46212991.jpeg differ diff --git a/civitai/lora_hunyuan_video/Kaylee__from_Firefly____Hunyuan_Video_LORA_49955692.jpeg b/civitai/lora_hunyuan_video/Kaylee__from_Firefly____Hunyuan_Video_LORA_49955692.jpeg new file mode 100644 index 0000000..482f42d Binary files /dev/null and b/civitai/lora_hunyuan_video/Kaylee__from_Firefly____Hunyuan_Video_LORA_49955692.jpeg differ diff --git a/civitai/lora_hunyuan_video/Keira_Knightley_-_Hunyuan_Video_Lora_51817532.jpeg b/civitai/lora_hunyuan_video/Keira_Knightley_-_Hunyuan_Video_Lora_51817532.jpeg new file mode 100644 index 0000000..a5117d4 Binary files /dev/null and b/civitai/lora_hunyuan_video/Keira_Knightley_-_Hunyuan_Video_Lora_51817532.jpeg differ diff --git a/civitai/lora_hunyuan_video/Kendall_Jenner_-_Hunyuan_video_Lora_50417413.jpeg b/civitai/lora_hunyuan_video/Kendall_Jenner_-_Hunyuan_video_Lora_50417413.jpeg new file mode 100644 index 0000000..bff1e16 Binary files /dev/null and b/civitai/lora_hunyuan_video/Kendall_Jenner_-_Hunyuan_video_Lora_50417413.jpeg differ diff --git a/civitai/lora_hunyuan_video/Kiernan_Shipka_lora_hunyuan_video_51732889.jpeg b/civitai/lora_hunyuan_video/Kiernan_Shipka_lora_hunyuan_video_51732889.jpeg new file mode 100644 index 0000000..6996328 Binary files /dev/null and b/civitai/lora_hunyuan_video/Kiernan_Shipka_lora_hunyuan_video_51732889.jpeg differ diff --git a/civitai/lora_hunyuan_video/Kristen_Bell_Hunyuan_video_Lora_51407947.jpeg b/civitai/lora_hunyuan_video/Kristen_Bell_Hunyuan_video_Lora_51407947.jpeg new file mode 100644 index 0000000..83ee55f Binary files /dev/null and b/civitai/lora_hunyuan_video/Kristen_Bell_Hunyuan_video_Lora_51407947.jpeg differ diff --git a/civitai/lora_hunyuan_video/Kristen_Stewart_Hunyuan_Lora_50713610.jpeg b/civitai/lora_hunyuan_video/Kristen_Stewart_Hunyuan_Lora_50713610.jpeg new file mode 100644 index 0000000..6db520d Binary files /dev/null and b/civitai/lora_hunyuan_video/Kristen_Stewart_Hunyuan_Lora_50713610.jpeg differ diff --git a/civitai/lora_hunyuan_video/Kristin_Kreuk_-_Hunyuan_Video_Lora_51818095.jpeg b/civitai/lora_hunyuan_video/Kristin_Kreuk_-_Hunyuan_Video_Lora_51818095.jpeg new file mode 100644 index 0000000..c870c51 Binary files /dev/null and b/civitai/lora_hunyuan_video/Kristin_Kreuk_-_Hunyuan_Video_Lora_51818095.jpeg differ diff --git a/civitai/lora_hunyuan_video/Krysten_Ritter_-_Hunyuan_Video_Lora_51514356.jpeg b/civitai/lora_hunyuan_video/Krysten_Ritter_-_Hunyuan_Video_Lora_51514356.jpeg new file mode 100644 index 0000000..88e87c4 Binary files /dev/null and b/civitai/lora_hunyuan_video/Krysten_Ritter_-_Hunyuan_Video_Lora_51514356.jpeg differ diff --git a/civitai/lora_hunyuan_video/Lisa_Hunyuan_Lora_51193232.jpeg b/civitai/lora_hunyuan_video/Lisa_Hunyuan_Lora_51193232.jpeg new file mode 100644 index 0000000..6b90a10 Binary files /dev/null and b/civitai/lora_hunyuan_video/Lisa_Hunyuan_Lora_51193232.jpeg differ diff --git a/civitai/lora_hunyuan_video/Luna_Lovegood_Hunyuan_Lora_51002416.jpeg b/civitai/lora_hunyuan_video/Luna_Lovegood_Hunyuan_Lora_51002416.jpeg new file mode 100644 index 0000000..2b608c7 Binary files /dev/null and b/civitai/lora_hunyuan_video/Luna_Lovegood_Hunyuan_Lora_51002416.jpeg differ diff --git a/civitai/lora_hunyuan_video/Madison_Beer_-_Hunyuan_Video_Lora_51490439.jpeg b/civitai/lora_hunyuan_video/Madison_Beer_-_Hunyuan_Video_Lora_51490439.jpeg new file mode 100644 index 0000000..36d146d Binary files /dev/null and b/civitai/lora_hunyuan_video/Madison_Beer_-_Hunyuan_Video_Lora_51490439.jpeg differ diff --git a/civitai/lora_hunyuan_video/Makima_Hunyuan_Character_45045120.jpeg b/civitai/lora_hunyuan_video/Makima_Hunyuan_Character_45045120.jpeg new file mode 100644 index 0000000..4f5e4c3 Binary files /dev/null and b/civitai/lora_hunyuan_video/Makima_Hunyuan_Character_45045120.jpeg differ diff --git a/civitai/lora_hunyuan_video/Makoto_Shinkai_Anime_Style___Hunyuan_Video_49285478.jpeg b/civitai/lora_hunyuan_video/Makoto_Shinkai_Anime_Style___Hunyuan_Video_49285478.jpeg new file mode 100644 index 0000000..901396f Binary files /dev/null and b/civitai/lora_hunyuan_video/Makoto_Shinkai_Anime_Style___Hunyuan_Video_49285478.jpeg differ diff --git a/civitai/lora_hunyuan_video/Mantis_-_Hunyuan_Video_Lora_50864138.jpeg b/civitai/lora_hunyuan_video/Mantis_-_Hunyuan_Video_Lora_50864138.jpeg new file mode 100644 index 0000000..e4d9541 Binary files /dev/null and b/civitai/lora_hunyuan_video/Mantis_-_Hunyuan_Video_Lora_50864138.jpeg differ diff --git a/civitai/lora_hunyuan_video/Margot_Robbie__Hunyuan_Video__51968264.jpeg b/civitai/lora_hunyuan_video/Margot_Robbie__Hunyuan_Video__51968264.jpeg new file mode 100644 index 0000000..b75d278 Binary files /dev/null and b/civitai/lora_hunyuan_video/Margot_Robbie__Hunyuan_Video__51968264.jpeg differ diff --git a/civitai/lora_hunyuan_video/Megan_Fox_-_Hunyuan_Video_Lora_51482919.jpeg b/civitai/lora_hunyuan_video/Megan_Fox_-_Hunyuan_Video_Lora_51482919.jpeg new file mode 100644 index 0000000..e8e806a Binary files /dev/null and b/civitai/lora_hunyuan_video/Megan_Fox_-_Hunyuan_Video_Lora_51482919.jpeg differ diff --git a/civitai/lora_hunyuan_video/Megumin___hunyuan_video_49082567.jpeg b/civitai/lora_hunyuan_video/Megumin___hunyuan_video_49082567.jpeg new file mode 100644 index 0000000..521c2ac Binary files /dev/null and b/civitai/lora_hunyuan_video/Megumin___hunyuan_video_49082567.jpeg differ diff --git a/civitai/lora_hunyuan_video/Meisho_doto__umamusume__for_Hunyuan_Video_50344604.jpeg b/civitai/lora_hunyuan_video/Meisho_doto__umamusume__for_Hunyuan_Video_50344604.jpeg new file mode 100644 index 0000000..6c5fb45 Binary files /dev/null and b/civitai/lora_hunyuan_video/Meisho_doto__umamusume__for_Hunyuan_Video_50344604.jpeg differ diff --git a/civitai/lora_hunyuan_video/Melora_Hardin_Hunyuan_video_Lora_51083337.jpeg b/civitai/lora_hunyuan_video/Melora_Hardin_Hunyuan_video_Lora_51083337.jpeg new file mode 100644 index 0000000..50965ba Binary files /dev/null and b/civitai/lora_hunyuan_video/Melora_Hardin_Hunyuan_video_Lora_51083337.jpeg differ diff --git a/civitai/lora_hunyuan_video/Mila_Azul_-_HunyuanVideo_50599567.jpeg b/civitai/lora_hunyuan_video/Mila_Azul_-_HunyuanVideo_50599567.jpeg new file mode 100644 index 0000000..81cf728 Binary files /dev/null and b/civitai/lora_hunyuan_video/Mila_Azul_-_HunyuanVideo_50599567.jpeg differ diff --git a/civitai/lora_hunyuan_video/Mila_Kunis_Hunyuan_video_Lora_51557854.jpeg b/civitai/lora_hunyuan_video/Mila_Kunis_Hunyuan_video_Lora_51557854.jpeg new file mode 100644 index 0000000..7d6b8db Binary files /dev/null and b/civitai/lora_hunyuan_video/Mila_Kunis_Hunyuan_video_Lora_51557854.jpeg differ diff --git a/civitai/lora_hunyuan_video/Milana_Vayntrub_Hunyuan_video_Lora_50553513.jpeg b/civitai/lora_hunyuan_video/Milana_Vayntrub_Hunyuan_video_Lora_50553513.jpeg new file mode 100644 index 0000000..8b6f6b4 Binary files /dev/null and b/civitai/lora_hunyuan_video/Milana_Vayntrub_Hunyuan_video_Lora_50553513.jpeg differ diff --git a/civitai/lora_hunyuan_video/Miley_Cyrus_-_Hunyuan_Video_Lora_51816713.jpeg b/civitai/lora_hunyuan_video/Miley_Cyrus_-_Hunyuan_Video_Lora_51816713.jpeg new file mode 100644 index 0000000..42cfc66 Binary files /dev/null and b/civitai/lora_hunyuan_video/Miley_Cyrus_-_Hunyuan_Video_Lora_51816713.jpeg differ diff --git a/civitai/lora_hunyuan_video/Millie_Bobby_Brown_-_Hunyuan_Video_Lora_50660458.jpeg b/civitai/lora_hunyuan_video/Millie_Bobby_Brown_-_Hunyuan_Video_Lora_50660458.jpeg new file mode 100644 index 0000000..3cbe259 Binary files /dev/null and b/civitai/lora_hunyuan_video/Millie_Bobby_Brown_-_Hunyuan_Video_Lora_50660458.jpeg differ diff --git a/civitai/lora_hunyuan_video/Millie_Bobby_Brown_Hunyuan_Lora_50846964.jpeg b/civitai/lora_hunyuan_video/Millie_Bobby_Brown_Hunyuan_Lora_50846964.jpeg new file mode 100644 index 0000000..0c325af Binary files /dev/null and b/civitai/lora_hunyuan_video/Millie_Bobby_Brown_Hunyuan_Lora_50846964.jpeg differ diff --git a/civitai/lora_hunyuan_video/Minrill_Style_Animation_-_Hunyuan_Video_LoRA_50431057.jpeg b/civitai/lora_hunyuan_video/Minrill_Style_Animation_-_Hunyuan_Video_LoRA_50431057.jpeg new file mode 100644 index 0000000..59b084c Binary files /dev/null and b/civitai/lora_hunyuan_video/Minrill_Style_Animation_-_Hunyuan_Video_LoRA_50431057.jpeg differ diff --git a/civitai/lora_hunyuan_video/Miranda_Kerr_-_Hunyuan_Video_Lora_51818103.jpeg b/civitai/lora_hunyuan_video/Miranda_Kerr_-_Hunyuan_Video_Lora_51818103.jpeg new file mode 100644 index 0000000..7e71f97 Binary files /dev/null and b/civitai/lora_hunyuan_video/Miranda_Kerr_-_Hunyuan_Video_Lora_51818103.jpeg differ diff --git a/civitai/lora_hunyuan_video/Monica_s_apartment_Hunyuan_Video_lora_48673748.jpeg b/civitai/lora_hunyuan_video/Monica_s_apartment_Hunyuan_Video_lora_48673748.jpeg new file mode 100644 index 0000000..eeb474e Binary files /dev/null and b/civitai/lora_hunyuan_video/Monica_s_apartment_Hunyuan_Video_lora_48673748.jpeg differ diff --git a/civitai/lora_hunyuan_video/Nata_Lee___Natalie_Lee___NataLee_-_HunyuanVideo_50185589.jpeg b/civitai/lora_hunyuan_video/Nata_Lee___Natalie_Lee___NataLee_-_HunyuanVideo_50185589.jpeg new file mode 100644 index 0000000..6e26a21 Binary files /dev/null and b/civitai/lora_hunyuan_video/Nata_Lee___Natalie_Lee___NataLee_-_HunyuanVideo_50185589.jpeg differ diff --git a/civitai/lora_hunyuan_video/Natalia_Dyer_-_Hunyuan_Video_Lora_50659458.jpeg b/civitai/lora_hunyuan_video/Natalia_Dyer_-_Hunyuan_Video_Lora_50659458.jpeg new file mode 100644 index 0000000..1970763 Binary files /dev/null and b/civitai/lora_hunyuan_video/Natalia_Dyer_-_Hunyuan_Video_Lora_50659458.jpeg differ diff --git a/civitai/lora_hunyuan_video/Natalie_Portman_Hunyuan_Video_Lora_49741912.jpeg b/civitai/lora_hunyuan_video/Natalie_Portman_Hunyuan_Video_Lora_49741912.jpeg new file mode 100644 index 0000000..c46892b Binary files /dev/null and b/civitai/lora_hunyuan_video/Natalie_Portman_Hunyuan_Video_Lora_49741912.jpeg differ diff --git a/civitai/lora_hunyuan_video/Natsu_Dragneel_hunyuan_video_Character_Lora_by_ComfyOnline_48482826.jpeg b/civitai/lora_hunyuan_video/Natsu_Dragneel_hunyuan_video_Character_Lora_by_ComfyOnline_48482826.jpeg new file mode 100644 index 0000000..132d80b Binary files /dev/null and b/civitai/lora_hunyuan_video/Natsu_Dragneel_hunyuan_video_Character_Lora_by_ComfyOnline_48482826.jpeg differ diff --git a/civitai/lora_hunyuan_video/Nekomiya_Mana_LoRA_for_Hunyuan_Video_49092529.jpeg b/civitai/lora_hunyuan_video/Nekomiya_Mana_LoRA_for_Hunyuan_Video_49092529.jpeg new file mode 100644 index 0000000..d198557 Binary files /dev/null and b/civitai/lora_hunyuan_video/Nekomiya_Mana_LoRA_for_Hunyuan_Video_49092529.jpeg differ diff --git a/civitai/lora_hunyuan_video/Nezha_HunyuanVideo_LoRA_51746446.jpeg b/civitai/lora_hunyuan_video/Nezha_HunyuanVideo_LoRA_51746446.jpeg new file mode 100644 index 0000000..9d811ac Binary files /dev/null and b/civitai/lora_hunyuan_video/Nezha_HunyuanVideo_LoRA_51746446.jpeg differ diff --git a/civitai/lora_hunyuan_video/Nicole_Kidman_-_Hunyuan_Video_Lora_51237223.jpeg b/civitai/lora_hunyuan_video/Nicole_Kidman_-_Hunyuan_Video_Lora_51237223.jpeg new file mode 100644 index 0000000..fc5ee94 Binary files /dev/null and b/civitai/lora_hunyuan_video/Nicole_Kidman_-_Hunyuan_Video_Lora_51237223.jpeg differ diff --git a/civitai/lora_hunyuan_video/Orbit_Cam_Character_Hunyuan_Video_45235085.jpeg b/civitai/lora_hunyuan_video/Orbit_Cam_Character_Hunyuan_Video_45235085.jpeg new file mode 100644 index 0000000..fd27263 Binary files /dev/null and b/civitai/lora_hunyuan_video/Orbit_Cam_Character_Hunyuan_Video_45235085.jpeg differ diff --git a/civitai/lora_hunyuan_video/Pixel_style_hunyuan_video_model_51822477.jpeg b/civitai/lora_hunyuan_video/Pixel_style_hunyuan_video_model_51822477.jpeg new file mode 100644 index 0000000..fe7fb2b Binary files /dev/null and b/civitai/lora_hunyuan_video/Pixel_style_hunyuan_video_model_51822477.jpeg differ diff --git a/civitai/lora_hunyuan_video/Plana__blue_archive__ๆ™ฎๆ‹‰ๅจœ_Hunyuan_Video____Chenkin_48635739.jpeg b/civitai/lora_hunyuan_video/Plana__blue_archive__ๆ™ฎๆ‹‰ๅจœ_Hunyuan_Video____Chenkin_48635739.jpeg new file mode 100644 index 0000000..142f169 Binary files /dev/null and b/civitai/lora_hunyuan_video/Plana__blue_archive__ๆ™ฎๆ‹‰ๅจœ_Hunyuan_Video____Chenkin_48635739.jpeg differ diff --git a/civitai/lora_hunyuan_video/Rachel_Sennott_Hunyuan_video_Lora_51169338.jpeg b/civitai/lora_hunyuan_video/Rachel_Sennott_Hunyuan_video_Lora_51169338.jpeg new file mode 100644 index 0000000..c5d638b Binary files /dev/null and b/civitai/lora_hunyuan_video/Rachel_Sennott_Hunyuan_video_Lora_51169338.jpeg differ diff --git a/civitai/lora_hunyuan_video/Rachel_Weisz_Hunyuan_Lora_51876465.jpeg b/civitai/lora_hunyuan_video/Rachel_Weisz_Hunyuan_Lora_51876465.jpeg new file mode 100644 index 0000000..4390d60 Binary files /dev/null and b/civitai/lora_hunyuan_video/Rachel_Weisz_Hunyuan_Lora_51876465.jpeg differ diff --git a/civitai/lora_hunyuan_video/Rashida_Jones_Hunyuan_video_Lora_50965170.jpeg b/civitai/lora_hunyuan_video/Rashida_Jones_Hunyuan_video_Lora_50965170.jpeg new file mode 100644 index 0000000..99cf3b8 Binary files /dev/null and b/civitai/lora_hunyuan_video/Rashida_Jones_Hunyuan_video_Lora_50965170.jpeg differ diff --git a/civitai/lora_hunyuan_video/Rem__Re_Zero__Hunyuan_Video_Character_Lora_45263956.jpeg b/civitai/lora_hunyuan_video/Rem__Re_Zero__Hunyuan_Video_Character_Lora_45263956.jpeg new file mode 100644 index 0000000..84d1800 Binary files /dev/null and b/civitai/lora_hunyuan_video/Rem__Re_Zero__Hunyuan_Video_Character_Lora_45263956.jpeg differ diff --git a/civitai/lora_hunyuan_video/Rem_from_RE_0_for_HunyuanVideo_Realistic_and_Animated_47497967.jpeg b/civitai/lora_hunyuan_video/Rem_from_RE_0_for_HunyuanVideo_Realistic_and_Animated_47497967.jpeg new file mode 100644 index 0000000..ce9e029 Binary files /dev/null and b/civitai/lora_hunyuan_video/Rem_from_RE_0_for_HunyuanVideo_Realistic_and_Animated_47497967.jpeg differ diff --git a/civitai/lora_hunyuan_video/Renamon_Digimon_hunyuan_video_lora_51801429.jpeg b/civitai/lora_hunyuan_video/Renamon_Digimon_hunyuan_video_lora_51801429.jpeg new file mode 100644 index 0000000..f2ed866 Binary files /dev/null and b/civitai/lora_hunyuan_video/Renamon_Digimon_hunyuan_video_lora_51801429.jpeg differ diff --git a/civitai/lora_hunyuan_video/Reverse_Mermaid_Hunyuan_Video_Lora_45377336.jpeg b/civitai/lora_hunyuan_video/Reverse_Mermaid_Hunyuan_Video_Lora_45377336.jpeg new file mode 100644 index 0000000..db6d737 Binary files /dev/null and b/civitai/lora_hunyuan_video/Reverse_Mermaid_Hunyuan_Video_Lora_45377336.jpeg differ diff --git a/civitai/lora_hunyuan_video/Sadie_Sink_-_Hunyuan_Video_Lora_50658915.jpeg b/civitai/lora_hunyuan_video/Sadie_Sink_-_Hunyuan_Video_Lora_50658915.jpeg new file mode 100644 index 0000000..518a8f9 Binary files /dev/null and b/civitai/lora_hunyuan_video/Sadie_Sink_-_Hunyuan_Video_Lora_50658915.jpeg differ diff --git a/civitai/lora_hunyuan_video/Sam_Altman_-_Hunyuan_Video_Lora_51818024.jpeg b/civitai/lora_hunyuan_video/Sam_Altman_-_Hunyuan_Video_Lora_51818024.jpeg new file mode 100644 index 0000000..0cc01e0 Binary files /dev/null and b/civitai/lora_hunyuan_video/Sam_Altman_-_Hunyuan_Video_Lora_51818024.jpeg differ diff --git a/civitai/lora_hunyuan_video/Sandra_Bullock_-_Hunyuan_Video_Lora_51504118.jpeg b/civitai/lora_hunyuan_video/Sandra_Bullock_-_Hunyuan_Video_Lora_51504118.jpeg new file mode 100644 index 0000000..7104a03 Binary files /dev/null and b/civitai/lora_hunyuan_video/Sandra_Bullock_-_Hunyuan_Video_Lora_51504118.jpeg differ diff --git a/civitai/lora_hunyuan_video/Scarlett_Johansson_Hunyuan_video_Lora_48935102.jpeg b/civitai/lora_hunyuan_video/Scarlett_Johansson_Hunyuan_video_Lora_48935102.jpeg new file mode 100644 index 0000000..5c7b219 Binary files /dev/null and b/civitai/lora_hunyuan_video/Scarlett_Johansson_Hunyuan_video_Lora_48935102.jpeg differ diff --git a/civitai/lora_hunyuan_video/Selena_Gomez_Hunyuan_video_Lora_50297850.jpeg b/civitai/lora_hunyuan_video/Selena_Gomez_Hunyuan_video_Lora_50297850.jpeg new file mode 100644 index 0000000..64271f7 Binary files /dev/null and b/civitai/lora_hunyuan_video/Selena_Gomez_Hunyuan_video_Lora_50297850.jpeg differ diff --git a/civitai/lora_hunyuan_video/Shadowheart_-_Baldur_s_Gate_3__Hunyuan_Video__49582678.jpeg b/civitai/lora_hunyuan_video/Shadowheart_-_Baldur_s_Gate_3__Hunyuan_Video__49582678.jpeg new file mode 100644 index 0000000..cc572f7 Binary files /dev/null and b/civitai/lora_hunyuan_video/Shadowheart_-_Baldur_s_Gate_3__Hunyuan_Video__49582678.jpeg differ diff --git a/civitai/lora_hunyuan_video/Shiftymine_Hunyuan_video_Lora_48889933.jpeg b/civitai/lora_hunyuan_video/Shiftymine_Hunyuan_video_Lora_48889933.jpeg new file mode 100644 index 0000000..312695f Binary files /dev/null and b/civitai/lora_hunyuan_video/Shiftymine_Hunyuan_video_Lora_48889933.jpeg differ diff --git a/civitai/lora_hunyuan_video/Starlight_-_Hunyuan_video_Lora_50356124.jpeg b/civitai/lora_hunyuan_video/Starlight_-_Hunyuan_video_Lora_50356124.jpeg new file mode 100644 index 0000000..23e2e55 Binary files /dev/null and b/civitai/lora_hunyuan_video/Starlight_-_Hunyuan_video_Lora_50356124.jpeg differ diff --git a/civitai/lora_hunyuan_video/Sue__from_The_Substance____Hunyuan_Video_LORA_51898258.jpeg b/civitai/lora_hunyuan_video/Sue__from_The_Substance____Hunyuan_Video_LORA_51898258.jpeg new file mode 100644 index 0000000..f351758 Binary files /dev/null and b/civitai/lora_hunyuan_video/Sue__from_The_Substance____Hunyuan_Video_LORA_51898258.jpeg differ diff --git a/civitai/lora_hunyuan_video/Suou_Amane__Grisaia_series__HunyuanVideo_Character_LoRA_51190779.jpeg b/civitai/lora_hunyuan_video/Suou_Amane__Grisaia_series__HunyuanVideo_Character_LoRA_51190779.jpeg new file mode 100644 index 0000000..69faa99 Binary files /dev/null and b/civitai/lora_hunyuan_video/Suou_Amane__Grisaia_series__HunyuanVideo_Character_LoRA_51190779.jpeg differ diff --git a/civitai/lora_hunyuan_video/Super_Realistic_Ahegao_for_Hunyuan_Video_47865399.jpeg b/civitai/lora_hunyuan_video/Super_Realistic_Ahegao_for_Hunyuan_Video_47865399.jpeg new file mode 100644 index 0000000..2e2137c Binary files /dev/null and b/civitai/lora_hunyuan_video/Super_Realistic_Ahegao_for_Hunyuan_Video_47865399.jpeg differ diff --git a/civitai/lora_hunyuan_video/Super_Saiyan_Hunyuan_Video_Lora_45561703.jpeg b/civitai/lora_hunyuan_video/Super_Saiyan_Hunyuan_Video_Lora_45561703.jpeg new file mode 100644 index 0000000..2c55a76 Binary files /dev/null and b/civitai/lora_hunyuan_video/Super_Saiyan_Hunyuan_Video_Lora_45561703.jpeg differ diff --git a/civitai/lora_hunyuan_video/Sydney_Sweeney_Hunyuan_video_Lora_49693394.jpeg b/civitai/lora_hunyuan_video/Sydney_Sweeney_Hunyuan_video_Lora_49693394.jpeg new file mode 100644 index 0000000..16980fa Binary files /dev/null and b/civitai/lora_hunyuan_video/Sydney_Sweeney_Hunyuan_video_Lora_49693394.jpeg differ diff --git a/civitai/lora_hunyuan_video/Taylor_Swift__Hunyuan_Video__49156770.jpeg b/civitai/lora_hunyuan_video/Taylor_Swift__Hunyuan_Video__49156770.jpeg new file mode 100644 index 0000000..dd86d74 Binary files /dev/null and b/civitai/lora_hunyuan_video/Taylor_Swift__Hunyuan_Video__49156770.jpeg differ diff --git a/civitai/lora_hunyuan_video/This_Is_Fine__meme__-_Hunyuan_Video_Lora_45413866.jpeg b/civitai/lora_hunyuan_video/This_Is_Fine__meme__-_Hunyuan_Video_Lora_45413866.jpeg new file mode 100644 index 0000000..75e4d29 Binary files /dev/null and b/civitai/lora_hunyuan_video/This_Is_Fine__meme__-_Hunyuan_Video_Lora_45413866.jpeg differ diff --git a/civitai/lora_hunyuan_video/Tiffani_Thiessen_Hunyuan_video_Lora_49476998.jpeg b/civitai/lora_hunyuan_video/Tiffani_Thiessen_Hunyuan_video_Lora_49476998.jpeg new file mode 100644 index 0000000..119c7f9 Binary files /dev/null and b/civitai/lora_hunyuan_video/Tiffani_Thiessen_Hunyuan_video_Lora_49476998.jpeg differ diff --git a/civitai/lora_hunyuan_video/Tina__Cameron_Diaz__The_Mask_-_Hunyuan_Video_Lora_51250975.jpeg b/civitai/lora_hunyuan_video/Tina__Cameron_Diaz__The_Mask_-_Hunyuan_Video_Lora_51250975.jpeg new file mode 100644 index 0000000..9b69320 Binary files /dev/null and b/civitai/lora_hunyuan_video/Tina__Cameron_Diaz__The_Mask_-_Hunyuan_Video_Lora_51250975.jpeg differ diff --git a/civitai/lora_hunyuan_video/Walking_Animation_Hunyuan_Video_45192417.jpeg b/civitai/lora_hunyuan_video/Walking_Animation_Hunyuan_Video_45192417.jpeg new file mode 100644 index 0000000..dfaaf6f Binary files /dev/null and b/civitai/lora_hunyuan_video/Walking_Animation_Hunyuan_Video_45192417.jpeg differ diff --git a/civitai/lora_hunyuan_video/Wednesday_Addams_-_Hunyuan_Video_Lora_50441123.jpeg b/civitai/lora_hunyuan_video/Wednesday_Addams_-_Hunyuan_Video_Lora_50441123.jpeg new file mode 100644 index 0000000..6030bae Binary files /dev/null and b/civitai/lora_hunyuan_video/Wednesday_Addams_-_Hunyuan_Video_Lora_50441123.jpeg differ diff --git a/civitai/lora_hunyuan_video/Yoda_Hunyuan_Lora_51045357.jpeg b/civitai/lora_hunyuan_video/Yoda_Hunyuan_Lora_51045357.jpeg new file mode 100644 index 0000000..586414a Binary files /dev/null and b/civitai/lora_hunyuan_video/Yoda_Hunyuan_Lora_51045357.jpeg differ diff --git a/civitai/lora_hunyuan_video/Zendaya_-_Hunyuan_Video_Lora_51513997.jpeg b/civitai/lora_hunyuan_video/Zendaya_-_Hunyuan_Video_Lora_51513997.jpeg new file mode 100644 index 0000000..0b3db14 Binary files /dev/null and b/civitai/lora_hunyuan_video/Zendaya_-_Hunyuan_Video_Lora_51513997.jpeg differ diff --git a/civitai/lora_hunyuan_video/Zero_Suit_Samus_-_Metroid__Hunyuan_Video__49549908.jpeg b/civitai/lora_hunyuan_video/Zero_Suit_Samus_-_Metroid__Hunyuan_Video__49549908.jpeg new file mode 100644 index 0000000..f7e7b1a Binary files /dev/null and b/civitai/lora_hunyuan_video/Zero_Suit_Samus_-_Metroid__Hunyuan_Video__49549908.jpeg differ diff --git a/civitai/lora_hunyuan_video/_Groocket___Rocket_and_Groot__Hunyuan_Multi-character_Lora_51225175.jpeg b/civitai/lora_hunyuan_video/_Groocket___Rocket_and_Groot__Hunyuan_Multi-character_Lora_51225175.jpeg new file mode 100644 index 0000000..1d9c648 Binary files /dev/null and b/civitai/lora_hunyuan_video/_Groocket___Rocket_and_Groot__Hunyuan_Multi-character_Lora_51225175.jpeg differ diff --git a/civitai/lora_hunyuan_video/_Hunyuan__Nurse_Costume_49936870.jpeg b/civitai/lora_hunyuan_video/_Hunyuan__Nurse_Costume_49936870.jpeg new file mode 100644 index 0000000..ab038d6 Binary files /dev/null and b/civitai/lora_hunyuan_video/_Hunyuan__Nurse_Costume_49936870.jpeg differ diff --git a/civitai/lora_hunyuan_video/_Hunyuan__Rain_Bonnet_50191820.jpeg b/civitai/lora_hunyuan_video/_Hunyuan__Rain_Bonnet_50191820.jpeg new file mode 100644 index 0000000..ec0bc96 Binary files /dev/null and b/civitai/lora_hunyuan_video/_Hunyuan__Rain_Bonnet_50191820.jpeg differ diff --git a/civitai/lora_hunyuan_video/hunyuan_video-ๅจๅฐ”ๅฒๅฏ†ๆ–ฏ-Will-simth_50665760.jpeg b/civitai/lora_hunyuan_video/hunyuan_video-ๅจๅฐ”ๅฒๅฏ†ๆ–ฏ-Will-simth_50665760.jpeg new file mode 100644 index 0000000..68ae2bc Binary files /dev/null and b/civitai/lora_hunyuan_video/hunyuan_video-ๅจๅฐ”ๅฒๅฏ†ๆ–ฏ-Will-simth_50665760.jpeg differ diff --git a/civitai/lora_hunyuan_video/hunyuanvideo-็ฑณ็บฟ้ขๆก_50351375.jpeg b/civitai/lora_hunyuan_video/hunyuanvideo-็ฑณ็บฟ้ขๆก_50351375.jpeg new file mode 100644 index 0000000..c00ea3d Binary files /dev/null and b/civitai/lora_hunyuan_video/hunyuanvideo-็ฑณ็บฟ้ขๆก_50351375.jpeg differ diff --git a/civitai/lora_hunyuan_video/kitagawa_marin___hunyuan_video_48501199.jpeg b/civitai/lora_hunyuan_video/kitagawa_marin___hunyuan_video_48501199.jpeg new file mode 100644 index 0000000..9e92708 Binary files /dev/null and b/civitai/lora_hunyuan_video/kitagawa_marin___hunyuan_video_48501199.jpeg differ diff --git a/civitai/lora_hunyuan_video/makise_kurisu___hunyuan_video_50513678.jpeg b/civitai/lora_hunyuan_video/makise_kurisu___hunyuan_video_50513678.jpeg new file mode 100644 index 0000000..91320a8 Binary files /dev/null and b/civitai/lora_hunyuan_video/makise_kurisu___hunyuan_video_50513678.jpeg differ diff --git a/civitai/lora_hunyuan_video/mika__blue_archive____hunyuan_video_47171868.jpeg b/civitai/lora_hunyuan_video/mika__blue_archive____hunyuan_video_47171868.jpeg new file mode 100644 index 0000000..581f8d8 Binary files /dev/null and b/civitai/lora_hunyuan_video/mika__blue_archive____hunyuan_video_47171868.jpeg differ diff --git a/civitai/lora_hunyuan_video/noa__blue_archive____hunyuan_video_46631400.jpeg b/civitai/lora_hunyuan_video/noa__blue_archive____hunyuan_video_46631400.jpeg new file mode 100644 index 0000000..06a36b7 Binary files /dev/null and b/civitai/lora_hunyuan_video/noa__blue_archive____hunyuan_video_46631400.jpeg differ diff --git a/civitai/lora_hunyuan_video/noguixe_hunyuan_46847240.jpeg b/civitai/lora_hunyuan_video/noguixe_hunyuan_46847240.jpeg new file mode 100644 index 0000000..7283a4e Binary files /dev/null and b/civitai/lora_hunyuan_video/noguixe_hunyuan_46847240.jpeg differ diff --git a/civitai/lora_hunyuan_video/sonic_the_manhog_2019_lora_hunyuan_video_47788941.jpeg b/civitai/lora_hunyuan_video/sonic_the_manhog_2019_lora_hunyuan_video_47788941.jpeg new file mode 100644 index 0000000..cd506e4 Binary files /dev/null and b/civitai/lora_hunyuan_video/sonic_the_manhog_2019_lora_hunyuan_video_47788941.jpeg differ diff --git a/civitai/lora_hunyuan_video/vivziepop_style_hunyuan_video_47615402.jpeg b/civitai/lora_hunyuan_video/vivziepop_style_hunyuan_video_47615402.jpeg new file mode 100644 index 0000000..ac2e5f7 Binary files /dev/null and b/civitai/lora_hunyuan_video/vivziepop_style_hunyuan_video_47615402.jpeg differ diff --git a/civitai/lora_hunyuan_video/ๆ€ๆˆฎ้ƒฝๅธ‚Gantzไธ‹ๅนณ็Žฒ่Šฑ--realistic_Video_model_for_Hunyuan_video_50126550.jpeg b/civitai/lora_hunyuan_video/ๆ€ๆˆฎ้ƒฝๅธ‚Gantzไธ‹ๅนณ็Žฒ่Šฑ--realistic_Video_model_for_Hunyuan_video_50126550.jpeg new file mode 100644 index 0000000..8530e07 Binary files /dev/null and b/civitai/lora_hunyuan_video/ๆ€ๆˆฎ้ƒฝๅธ‚Gantzไธ‹ๅนณ็Žฒ่Šฑ--realistic_Video_model_for_Hunyuan_video_50126550.jpeg differ diff --git a/civitai/lora_pony/90s_Anime_Aesthetic_19628453.jpeg b/civitai/lora_pony/90s_Anime_Aesthetic_19628453.jpeg index 3de2c42..22b0429 100644 Binary files a/civitai/lora_pony/90s_Anime_Aesthetic_19628453.jpeg and b/civitai/lora_pony/90s_Anime_Aesthetic_19628453.jpeg differ diff --git a/civitai/lora_pony/Age_Slider_LoRA___PonyXL_SDXL_9957007.jpeg b/civitai/lora_pony/Age_Slider_LoRA___PonyXL_SDXL_9957007.jpeg index 05a145d..fa6a167 100644 Binary files a/civitai/lora_pony/Age_Slider_LoRA___PonyXL_SDXL_9957007.jpeg and b/civitai/lora_pony/Age_Slider_LoRA___PonyXL_SDXL_9957007.jpeg differ diff --git a/civitai/lora_pony/Ariel__The_Little_Mermaid__Princess_Disney_-_SD_1.5___XL_PONY_-_by_YeiyeiArt_7846210.jpeg b/civitai/lora_pony/Ariel__The_Little_Mermaid__Princess_Disney_-_SD_1.5___XL_PONY_-_by_YeiyeiArt_7846210.jpeg index b2a1c84..081be75 100644 Binary files a/civitai/lora_pony/Ariel__The_Little_Mermaid__Princess_Disney_-_SD_1.5___XL_PONY_-_by_YeiyeiArt_7846210.jpeg and b/civitai/lora_pony/Ariel__The_Little_Mermaid__Princess_Disney_-_SD_1.5___XL_PONY_-_by_YeiyeiArt_7846210.jpeg differ diff --git a/civitai/lora_pony/Ass_support_on_object_17006712.jpeg b/civitai/lora_pony/Ass_support_on_object_17006712.jpeg index 9e68264..259a653 100644 Binary files a/civitai/lora_pony/Ass_support_on_object_17006712.jpeg and b/civitai/lora_pony/Ass_support_on_object_17006712.jpeg differ diff --git a/civitai/lora_pony/BSS_-_Styles_for_Pony_43976967.jpeg b/civitai/lora_pony/BSS_-_Styles_for_Pony_43976967.jpeg index 05dcd1d..156b154 100644 Binary files a/civitai/lora_pony/BSS_-_Styles_for_Pony_43976967.jpeg and b/civitai/lora_pony/BSS_-_Styles_for_Pony_43976967.jpeg differ diff --git a/civitai/lora_pony/Backgrounds_For_Pony_14794497.jpeg b/civitai/lora_pony/Backgrounds_For_Pony_14794497.jpeg index 69c6028..9b00d8b 100644 Binary files a/civitai/lora_pony/Backgrounds_For_Pony_14794497.jpeg and b/civitai/lora_pony/Backgrounds_For_Pony_14794497.jpeg differ diff --git a/civitai/lora_pony/Basement_29875417.jpeg b/civitai/lora_pony/Basement_29875417.jpeg index a7dbe73..9c683e0 100644 Binary files a/civitai/lora_pony/Basement_29875417.jpeg and b/civitai/lora_pony/Basement_29875417.jpeg differ diff --git a/civitai/lora_pony/CAT_-_Citron_Pony_Styles_42235108.jpeg b/civitai/lora_pony/CAT_-_Citron_Pony_Styles_42235108.jpeg index 07873a6..927fa3c 100644 Binary files a/civitai/lora_pony/CAT_-_Citron_Pony_Styles_42235108.jpeg and b/civitai/lora_pony/CAT_-_Citron_Pony_Styles_42235108.jpeg differ diff --git a/civitai/lora_pony/Carrying_person___Princess_carry_17121952.jpeg b/civitai/lora_pony/Carrying_person___Princess_carry_17121952.jpeg index 434be2e..796ce78 100644 Binary files a/civitai/lora_pony/Carrying_person___Princess_carry_17121952.jpeg and b/civitai/lora_pony/Carrying_person___Princess_carry_17121952.jpeg differ diff --git a/civitai/lora_pony/Cartoon_style_15060882.jpeg b/civitai/lora_pony/Cartoon_style_15060882.jpeg index abb3c87..c25639a 100644 Binary files a/civitai/lora_pony/Cartoon_style_15060882.jpeg and b/civitai/lora_pony/Cartoon_style_15060882.jpeg differ diff --git a/civitai/lora_pony/Control_LoRA_Collection_34169534.jpeg b/civitai/lora_pony/Control_LoRA_Collection_34169534.jpeg index 07eac8a..a343707 100644 Binary files a/civitai/lora_pony/Control_LoRA_Collection_34169534.jpeg and b/civitai/lora_pony/Control_LoRA_Collection_34169534.jpeg differ diff --git a/civitai/lora_pony/D-ART____18dart5_-_Style_LoRA__Flux_Pony_Diffusion_NAI__12678594.jpeg b/civitai/lora_pony/D-ART____18dart5_-_Style_LoRA__Flux_Pony_Diffusion_NAI__12678594.jpeg index ad88615..4e7b56f 100644 Binary files a/civitai/lora_pony/D-ART____18dart5_-_Style_LoRA__Flux_Pony_Diffusion_NAI__12678594.jpeg and b/civitai/lora_pony/D-ART____18dart5_-_Style_LoRA__Flux_Pony_Diffusion_NAI__12678594.jpeg differ diff --git a/civitai/lora_pony/Detail_Slider_LoRA___PonyXL_SDXL_23721548.jpeg b/civitai/lora_pony/Detail_Slider_LoRA___PonyXL_SDXL_23721548.jpeg index e95c6e6..3f5c3b4 100644 Binary files a/civitai/lora_pony/Detail_Slider_LoRA___PonyXL_SDXL_23721548.jpeg and b/civitai/lora_pony/Detail_Slider_LoRA___PonyXL_SDXL_23721548.jpeg differ diff --git a/civitai/lora_pony/Disgusted_Face__SD_1.5__Pony____Goofy_Ai_12047698.jpeg b/civitai/lora_pony/Disgusted_Face__SD_1.5__Pony____Goofy_Ai_12047698.jpeg index a76a74a..7df481e 100644 Binary files a/civitai/lora_pony/Disgusted_Face__SD_1.5__Pony____Goofy_Ai_12047698.jpeg and b/civitai/lora_pony/Disgusted_Face__SD_1.5__Pony____Goofy_Ai_12047698.jpeg differ diff --git a/civitai/lora_pony/Doll_joints_16995010.jpeg b/civitai/lora_pony/Doll_joints_16995010.jpeg index 8477a0e..099ae7c 100644 Binary files a/civitai/lora_pony/Doll_joints_16995010.jpeg and b/civitai/lora_pony/Doll_joints_16995010.jpeg differ diff --git a/civitai/lora_pony/Elsa__Frozen__Disney_Princess__by_YeiyeiArt_9087850.jpeg b/civitai/lora_pony/Elsa__Frozen__Disney_Princess__by_YeiyeiArt_9087850.jpeg index 6b48ea3..e42afd3 100644 Binary files a/civitai/lora_pony/Elsa__Frozen__Disney_Princess__by_YeiyeiArt_9087850.jpeg and b/civitai/lora_pony/Elsa__Frozen__Disney_Princess__by_YeiyeiArt_9087850.jpeg differ diff --git a/civitai/lora_pony/Envy_Pony_Pretty_Eyes_01_-_Pretty_Anime_Eyes_9549867.jpeg b/civitai/lora_pony/Envy_Pony_Pretty_Eyes_01_-_Pretty_Anime_Eyes_9549867.jpeg index 3e5305d..548fb24 100644 Binary files a/civitai/lora_pony/Envy_Pony_Pretty_Eyes_01_-_Pretty_Anime_Eyes_9549867.jpeg and b/civitai/lora_pony/Envy_Pony_Pretty_Eyes_01_-_Pretty_Anime_Eyes_9549867.jpeg differ diff --git a/civitai/lora_pony/Eromanga_sensei__Complete_Pack_____PDXL_PonyXL__and_SD1.5_models_in_versions_10024478.jpeg b/civitai/lora_pony/Eromanga_sensei__Complete_Pack_____PDXL_PonyXL__and_SD1.5_models_in_versions_10024478.jpeg index 4b611f8..49d4366 100644 Binary files a/civitai/lora_pony/Eromanga_sensei__Complete_Pack_____PDXL_PonyXL__and_SD1.5_models_in_versions_10024478.jpeg and b/civitai/lora_pony/Eromanga_sensei__Complete_Pack_____PDXL_PonyXL__and_SD1.5_models_in_versions_10024478.jpeg differ diff --git a/civitai/lora_pony/Female_POV_34805617.jpeg b/civitai/lora_pony/Female_POV_34805617.jpeg index 7f5781f..594cd7d 100644 Binary files a/civitai/lora_pony/Female_POV_34805617.jpeg and b/civitai/lora_pony/Female_POV_34805617.jpeg differ diff --git a/civitai/lora_pony/Front-facing_Camera_Selfie_13614835.jpeg b/civitai/lora_pony/Front-facing_Camera_Selfie_13614835.jpeg index fc72fc7..113f3de 100644 Binary files a/civitai/lora_pony/Front-facing_Camera_Selfie_13614835.jpeg and b/civitai/lora_pony/Front-facing_Camera_Selfie_13614835.jpeg differ diff --git a/civitai/lora_pony/Good_Hands_for_Pony_12230717.jpeg b/civitai/lora_pony/Good_Hands_for_Pony_12230717.jpeg index fc0de3f..04f4656 100644 Binary files a/civitai/lora_pony/Good_Hands_for_Pony_12230717.jpeg and b/civitai/lora_pony/Good_Hands_for_Pony_12230717.jpeg differ diff --git a/civitai/lora_pony/Gothic_Girl_10501962.jpeg b/civitai/lora_pony/Gothic_Girl_10501962.jpeg index 0b105cd..591796a 100644 Binary files a/civitai/lora_pony/Gothic_Girl_10501962.jpeg and b/civitai/lora_pony/Gothic_Girl_10501962.jpeg differ diff --git a/civitai/lora_pony/Gwendolyn_Tennyson__Lucky_Girl__-_Ben_10_13759808.jpeg b/civitai/lora_pony/Gwendolyn_Tennyson__Lucky_Girl__-_Ben_10_13759808.jpeg index 24b94a3..0cddc92 100644 Binary files a/civitai/lora_pony/Gwendolyn_Tennyson__Lucky_Girl__-_Ben_10_13759808.jpeg and b/civitai/lora_pony/Gwendolyn_Tennyson__Lucky_Girl__-_Ben_10_13759808.jpeg differ diff --git a/civitai/lora_pony/Incase_Style__PonyXL__9456522.jpeg b/civitai/lora_pony/Incase_Style__PonyXL__9456522.jpeg index 8437f41..174b630 100644 Binary files a/civitai/lora_pony/Incase_Style__PonyXL__9456522.jpeg and b/civitai/lora_pony/Incase_Style__PonyXL__9456522.jpeg differ diff --git a/civitai/lora_pony/Jasmine__Aladdin__Disney_Princess_-_SD_1.5___XL_PONY_-_by_YeiyeiArt_7899976.jpeg b/civitai/lora_pony/Jasmine__Aladdin__Disney_Princess_-_SD_1.5___XL_PONY_-_by_YeiyeiArt_7899976.jpeg index e6fb425..e6acfc0 100644 Binary files a/civitai/lora_pony/Jasmine__Aladdin__Disney_Princess_-_SD_1.5___XL_PONY_-_by_YeiyeiArt_7899976.jpeg and b/civitai/lora_pony/Jasmine__Aladdin__Disney_Princess_-_SD_1.5___XL_PONY_-_by_YeiyeiArt_7899976.jpeg differ diff --git a/civitai/lora_pony/Kanroji_Mitsuri___Demon_Slayer____Goofy_Ai_22641921.jpeg b/civitai/lora_pony/Kanroji_Mitsuri___Demon_Slayer____Goofy_Ai_22641921.jpeg index 812dfad..a2e28a6 100644 Binary files a/civitai/lora_pony/Kanroji_Mitsuri___Demon_Slayer____Goofy_Ai_22641921.jpeg and b/civitai/lora_pony/Kanroji_Mitsuri___Demon_Slayer____Goofy_Ai_22641921.jpeg differ diff --git a/civitai/lora_pony/Krekkov_Style_8340382.jpeg b/civitai/lora_pony/Krekkov_Style_8340382.jpeg index df7ec80..bb62c88 100644 Binary files a/civitai/lora_pony/Krekkov_Style_8340382.jpeg and b/civitai/lora_pony/Krekkov_Style_8340382.jpeg differ diff --git a/civitai/lora_pony/MFCG_Style_-_PD_6924626.jpeg b/civitai/lora_pony/MFCG_Style_-_PD_6924626.jpeg index 4f3f764..7a50c32 100644 Binary files a/civitai/lora_pony/MFCG_Style_-_PD_6924626.jpeg and b/civitai/lora_pony/MFCG_Style_-_PD_6924626.jpeg differ diff --git a/civitai/lora_pony/Maid_32558955.jpeg b/civitai/lora_pony/Maid_32558955.jpeg index e46dc74..8429d73 100644 Binary files a/civitai/lora_pony/Maid_32558955.jpeg and b/civitai/lora_pony/Maid_32558955.jpeg differ diff --git a/civitai/lora_pony/Mature_Female_16577006.jpeg b/civitai/lora_pony/Mature_Female_16577006.jpeg index a4386e9..5d1cb70 100644 Binary files a/civitai/lora_pony/Mature_Female_16577006.jpeg and b/civitai/lora_pony/Mature_Female_16577006.jpeg differ diff --git a/civitai/lora_pony/Megumin__KonoSuba__7894504.jpeg b/civitai/lora_pony/Megumin__KonoSuba__7894504.jpeg index fd17bcc..14887bd 100644 Binary files a/civitai/lora_pony/Megumin__KonoSuba__7894504.jpeg and b/civitai/lora_pony/Megumin__KonoSuba__7894504.jpeg differ diff --git a/civitai/lora_pony/Minecraft_NSFW_Style_11644217.jpeg b/civitai/lora_pony/Minecraft_NSFW_Style_11644217.jpeg index a0bb6f4..66c6246 100644 Binary files a/civitai/lora_pony/Minecraft_NSFW_Style_11644217.jpeg and b/civitai/lora_pony/Minecraft_NSFW_Style_11644217.jpeg differ diff --git a/civitai/lora_pony/Modern_Anime_Screencap__Style__-_Pony_XL_9714420.jpeg b/civitai/lora_pony/Modern_Anime_Screencap__Style__-_Pony_XL_9714420.jpeg index 22666bb..66a572d 100644 Binary files a/civitai/lora_pony/Modern_Anime_Screencap__Style__-_Pony_XL_9714420.jpeg and b/civitai/lora_pony/Modern_Anime_Screencap__Style__-_Pony_XL_9714420.jpeg differ diff --git a/civitai/lora_pony/NEW_ERA___LORA___PONY_DIFFUSION_22458769.jpeg b/civitai/lora_pony/NEW_ERA___LORA___PONY_DIFFUSION_22458769.jpeg index 4c3056f..5d8be4e 100644 Binary files a/civitai/lora_pony/NEW_ERA___LORA___PONY_DIFFUSION_22458769.jpeg and b/civitai/lora_pony/NEW_ERA___LORA___PONY_DIFFUSION_22458769.jpeg differ diff --git a/civitai/lora_pony/Not_Artists_Styles_for_Pony_Diffusion_V6_XL_30898667.jpeg b/civitai/lora_pony/Not_Artists_Styles_for_Pony_Diffusion_V6_XL_30898667.jpeg index d015f18..f601e43 100644 Binary files a/civitai/lora_pony/Not_Artists_Styles_for_Pony_Diffusion_V6_XL_30898667.jpeg and b/civitai/lora_pony/Not_Artists_Styles_for_Pony_Diffusion_V6_XL_30898667.jpeg differ diff --git a/civitai/lora_pony/Ohogao_SDXL_LoRA__Pony__11464411.jpeg b/civitai/lora_pony/Ohogao_SDXL_LoRA__Pony__11464411.jpeg index 2603559..6f315b2 100644 Binary files a/civitai/lora_pony/Ohogao_SDXL_LoRA__Pony__11464411.jpeg and b/civitai/lora_pony/Ohogao_SDXL_LoRA__Pony__11464411.jpeg differ diff --git a/civitai/lora_pony/Osorubeshi_Pony_style_LORAs_33827985.jpeg b/civitai/lora_pony/Osorubeshi_Pony_style_LORAs_33827985.jpeg index ccf61e6..4960a16 100644 Binary files a/civitai/lora_pony/Osorubeshi_Pony_style_LORAs_33827985.jpeg and b/civitai/lora_pony/Osorubeshi_Pony_style_LORAs_33827985.jpeg differ diff --git a/civitai/lora_pony/PDV6XL_artist_tags_7888480.jpeg b/civitai/lora_pony/PDV6XL_artist_tags_7888480.jpeg index 66f768a..868fa01 100644 Binary files a/civitai/lora_pony/PDV6XL_artist_tags_7888480.jpeg and b/civitai/lora_pony/PDV6XL_artist_tags_7888480.jpeg differ diff --git a/civitai/lora_pony/Partially_underwater_shot___partially_submerged_13779822.jpeg b/civitai/lora_pony/Partially_underwater_shot___partially_submerged_13779822.jpeg index a2a150f..2facde8 100644 Binary files a/civitai/lora_pony/Partially_underwater_shot___partially_submerged_13779822.jpeg and b/civitai/lora_pony/Partially_underwater_shot___partially_submerged_13779822.jpeg differ diff --git a/civitai/lora_pony/Pear_-_Style_13126734.jpeg b/civitai/lora_pony/Pear_-_Style_13126734.jpeg index d13a117..7f7d422 100644 Binary files a/civitai/lora_pony/Pear_-_Style_13126734.jpeg and b/civitai/lora_pony/Pear_-_Style_13126734.jpeg differ diff --git a/civitai/lora_pony/Pony_Amateur___23989618.jpeg b/civitai/lora_pony/Pony_Amateur___23989618.jpeg index 66a2a61..86ff698 100644 Binary files a/civitai/lora_pony/Pony_Amateur___23989618.jpeg and b/civitai/lora_pony/Pony_Amateur___23989618.jpeg differ diff --git a/civitai/lora_pony/Pony_Character_Concept_Art_XL___1.5_by_creativehotia_7120986.jpeg b/civitai/lora_pony/Pony_Character_Concept_Art_XL___1.5_by_creativehotia_7120986.jpeg index eaa4f6b..50d3b09 100644 Binary files a/civitai/lora_pony/Pony_Character_Concept_Art_XL___1.5_by_creativehotia_7120986.jpeg and b/civitai/lora_pony/Pony_Character_Concept_Art_XL___1.5_by_creativehotia_7120986.jpeg differ diff --git a/civitai/lora_pony/Pony_Custom_styles_39505114.jpeg b/civitai/lora_pony/Pony_Custom_styles_39505114.jpeg index 642a096..33f45a8 100644 Binary files a/civitai/lora_pony/Pony_Custom_styles_39505114.jpeg and b/civitai/lora_pony/Pony_Custom_styles_39505114.jpeg differ diff --git a/civitai/lora_pony/Pony_Detail_Tweaker_9991726.jpeg b/civitai/lora_pony/Pony_Detail_Tweaker_9991726.jpeg index da7c75c..a5f0fdc 100644 Binary files a/civitai/lora_pony/Pony_Detail_Tweaker_9991726.jpeg and b/civitai/lora_pony/Pony_Detail_Tweaker_9991726.jpeg differ diff --git a/civitai/lora_pony/Pony_Pixel_Art_XL___1.5_By_creativehotia_6990011.jpeg b/civitai/lora_pony/Pony_Pixel_Art_XL___1.5_By_creativehotia_6990011.jpeg index e5ac7b3..4bf1d2c 100644 Binary files a/civitai/lora_pony/Pony_Pixel_Art_XL___1.5_By_creativehotia_6990011.jpeg and b/civitai/lora_pony/Pony_Pixel_Art_XL___1.5_By_creativehotia_6990011.jpeg differ diff --git a/civitai/lora_pony/Pony_XL___1.5_Helen_parr_-the_Incredibles_9100818.jpeg b/civitai/lora_pony/Pony_XL___1.5_Helen_parr_-the_Incredibles_9100818.jpeg index 2857d08..0cd5b3f 100644 Binary files a/civitai/lora_pony/Pony_XL___1.5_Helen_parr_-the_Incredibles_9100818.jpeg and b/civitai/lora_pony/Pony_XL___1.5_Helen_parr_-the_Incredibles_9100818.jpeg differ diff --git a/civitai/lora_pony/Popyay_s_Epic_Fantasy_Style___Pony___SDXL_13338632.jpeg b/civitai/lora_pony/Popyay_s_Epic_Fantasy_Style___Pony___SDXL_13338632.jpeg index d64887a..5a47186 100644 Binary files a/civitai/lora_pony/Popyay_s_Epic_Fantasy_Style___Pony___SDXL_13338632.jpeg and b/civitai/lora_pony/Popyay_s_Epic_Fantasy_Style___Pony___SDXL_13338632.jpeg differ diff --git a/civitai/lora_pony/Rapunzel__Tangled__Disney_Princess_-_SD_1.5___XL_PONY_-_by_YeiyeiArt_7897277.jpeg b/civitai/lora_pony/Rapunzel__Tangled__Disney_Princess_-_SD_1.5___XL_PONY_-_by_YeiyeiArt_7897277.jpeg index 3ef8787..dca49cb 100644 Binary files a/civitai/lora_pony/Rapunzel__Tangled__Disney_Princess_-_SD_1.5___XL_PONY_-_by_YeiyeiArt_7897277.jpeg and b/civitai/lora_pony/Rapunzel__Tangled__Disney_Princess_-_SD_1.5___XL_PONY_-_by_YeiyeiArt_7897277.jpeg differ diff --git a/civitai/lora_pony/Ratatatat74_style___Goofy_Ai_31351234.jpeg b/civitai/lora_pony/Ratatatat74_style___Goofy_Ai_31351234.jpeg index 1fef1f0..8a13b28 100644 Binary files a/civitai/lora_pony/Ratatatat74_style___Goofy_Ai_31351234.jpeg and b/civitai/lora_pony/Ratatatat74_style___Goofy_Ai_31351234.jpeg differ diff --git a/civitai/lora_pony/Re_Zero_-__characters_pack____SD_1.5__PDXL__14022598.jpeg b/civitai/lora_pony/Re_Zero_-__characters_pack____SD_1.5__PDXL__14022598.jpeg index 98f6990..5f0280c 100644 Binary files a/civitai/lora_pony/Re_Zero_-__characters_pack____SD_1.5__PDXL__14022598.jpeg and b/civitai/lora_pony/Re_Zero_-__characters_pack____SD_1.5__PDXL__14022598.jpeg differ diff --git a/civitai/lora_pony/Real_Mechanical_Parts_10427887.jpeg b/civitai/lora_pony/Real_Mechanical_Parts_10427887.jpeg index f7dd8c6..0a23da8 100644 Binary files a/civitai/lora_pony/Real_Mechanical_Parts_10427887.jpeg and b/civitai/lora_pony/Real_Mechanical_Parts_10427887.jpeg differ diff --git a/civitai/lora_pony/Realist_Beuty_Model_N_1_XL_Realistic_Pony_8833589.jpeg b/civitai/lora_pony/Realist_Beuty_Model_N_1_XL_Realistic_Pony_8833589.jpeg index 65ecf82..39991d9 100644 Binary files a/civitai/lora_pony/Realist_Beuty_Model_N_1_XL_Realistic_Pony_8833589.jpeg and b/civitai/lora_pony/Realist_Beuty_Model_N_1_XL_Realistic_Pony_8833589.jpeg differ diff --git a/civitai/lora_pony/RizDraws_-_PonyDiffusionXLV6_6302928.jpeg b/civitai/lora_pony/RizDraws_-_PonyDiffusionXLV6_6302928.jpeg index 1bd2297..9a158dd 100644 Binary files a/civitai/lora_pony/RizDraws_-_PonyDiffusionXLV6_6302928.jpeg and b/civitai/lora_pony/RizDraws_-_PonyDiffusionXLV6_6302928.jpeg differ diff --git a/civitai/lora_pony/Ryuuou_no_Oshigoto_______complete_pack_PDXL_and__SD1.5__10022623.jpeg b/civitai/lora_pony/Ryuuou_no_Oshigoto_______complete_pack_PDXL_and__SD1.5__10022623.jpeg index a13bc51..c0ab8c5 100644 Binary files a/civitai/lora_pony/Ryuuou_no_Oshigoto_______complete_pack_PDXL_and__SD1.5__10022623.jpeg and b/civitai/lora_pony/Ryuuou_no_Oshigoto_______complete_pack_PDXL_and__SD1.5__10022623.jpeg differ diff --git a/civitai/lora_pony/SOME_STYLES___PONY_34786841.jpeg b/civitai/lora_pony/SOME_STYLES___PONY_34786841.jpeg index ebaca9f..d5794d3 100644 Binary files a/civitai/lora_pony/SOME_STYLES___PONY_34786841.jpeg and b/civitai/lora_pony/SOME_STYLES___PONY_34786841.jpeg differ diff --git a/civitai/lora_pony/STYLES___PONY___ANIMAGINE_43329842.jpeg b/civitai/lora_pony/STYLES___PONY___ANIMAGINE_43329842.jpeg index 58020b0..f1e9d20 100644 Binary files a/civitai/lora_pony/STYLES___PONY___ANIMAGINE_43329842.jpeg and b/civitai/lora_pony/STYLES___PONY___ANIMAGINE_43329842.jpeg differ diff --git a/civitai/lora_pony/Shiny_Nai_style_for_pony___Goofy_AI_22495744.jpeg b/civitai/lora_pony/Shiny_Nai_style_for_pony___Goofy_AI_22495744.jpeg index 91fd4ec..de251ac 100644 Binary files a/civitai/lora_pony/Shiny_Nai_style_for_pony___Goofy_AI_22495744.jpeg and b/civitai/lora_pony/Shiny_Nai_style_for_pony___Goofy_AI_22495744.jpeg differ diff --git a/civitai/lora_pony/Sinozick_Style___Style_Lora___Pony_11362154.jpeg b/civitai/lora_pony/Sinozick_Style___Style_Lora___Pony_11362154.jpeg index 2fa3272..68f7f90 100644 Binary files a/civitai/lora_pony/Sinozick_Style___Style_Lora___Pony_11362154.jpeg and b/civitai/lora_pony/Sinozick_Style___Style_Lora___Pony_11362154.jpeg differ diff --git a/civitai/lora_pony/Slavekini__aka_Slave_Princess_Leia_Outfit_-_Clothing_from_Star_Wars__SD_1.5__Pony__and_SDXL__9017503.jpeg b/civitai/lora_pony/Slavekini__aka_Slave_Princess_Leia_Outfit_-_Clothing_from_Star_Wars__SD_1.5__Pony__and_SDXL__9017503.jpeg index d94650f..8a61519 100644 Binary files a/civitai/lora_pony/Slavekini__aka_Slave_Princess_Leia_Outfit_-_Clothing_from_Star_Wars__SD_1.5__Pony__and_SDXL__9017503.jpeg and b/civitai/lora_pony/Slavekini__aka_Slave_Princess_Leia_Outfit_-_Clothing_from_Star_Wars__SD_1.5__Pony__and_SDXL__9017503.jpeg differ diff --git a/civitai/lora_pony/Spider_Gwen___Goofy_Ai_22926978.jpeg b/civitai/lora_pony/Spider_Gwen___Goofy_Ai_22926978.jpeg index d8ee5c6..c927d09 100644 Binary files a/civitai/lora_pony/Spider_Gwen___Goofy_Ai_22926978.jpeg and b/civitai/lora_pony/Spider_Gwen___Goofy_Ai_22926978.jpeg differ diff --git a/civitai/lora_pony/Styles_For_Pony_Diffusion_V6_XL_27240302.jpeg b/civitai/lora_pony/Styles_For_Pony_Diffusion_V6_XL_27240302.jpeg index 9d309e3..aa0de8b 100644 Binary files a/civitai/lora_pony/Styles_For_Pony_Diffusion_V6_XL_27240302.jpeg and b/civitai/lora_pony/Styles_For_Pony_Diffusion_V6_XL_27240302.jpeg differ diff --git a/civitai/lora_pony/Vintage_1990s_Anime_SDXL_LoRA__Style__Pony_7419342.jpeg b/civitai/lora_pony/Vintage_1990s_Anime_SDXL_LoRA__Style__Pony_7419342.jpeg index f42947f..99f2b50 100644 Binary files a/civitai/lora_pony/Vintage_1990s_Anime_SDXL_LoRA__Style__Pony_7419342.jpeg and b/civitai/lora_pony/Vintage_1990s_Anime_SDXL_LoRA__Style__Pony_7419342.jpeg differ diff --git a/civitai/lora_pony/Vixon_s_Anime_Manga_Styles_-_Gothic_Retro_Anime_12217153.jpeg b/civitai/lora_pony/Vixon_s_Anime_Manga_Styles_-_Gothic_Retro_Anime_12217153.jpeg index e3b4c95..5b75afd 100644 Binary files a/civitai/lora_pony/Vixon_s_Anime_Manga_Styles_-_Gothic_Retro_Anime_12217153.jpeg and b/civitai/lora_pony/Vixon_s_Anime_Manga_Styles_-_Gothic_Retro_Anime_12217153.jpeg differ diff --git a/civitai/lora_pony/Vixon_s_Classic_Art_Styles_-_detailed_painting_8187577.jpeg b/civitai/lora_pony/Vixon_s_Classic_Art_Styles_-_detailed_painting_8187577.jpeg index 880ff6d..46d5df2 100644 Binary files a/civitai/lora_pony/Vixon_s_Classic_Art_Styles_-_detailed_painting_8187577.jpeg and b/civitai/lora_pony/Vixon_s_Classic_Art_Styles_-_detailed_painting_8187577.jpeg differ diff --git a/civitai/lora_pony/Vixon_s_Pony_Styles_-_Detailed_v1.0_11570071.jpeg b/civitai/lora_pony/Vixon_s_Pony_Styles_-_Detailed_v1.0_11570071.jpeg index cae18d8..e7858e5 100644 Binary files a/civitai/lora_pony/Vixon_s_Pony_Styles_-_Detailed_v1.0_11570071.jpeg and b/civitai/lora_pony/Vixon_s_Pony_Styles_-_Detailed_v1.0_11570071.jpeg differ diff --git a/civitai/lora_pony/Vixon_s_Pony_Styles_-_Dramatic_Lighting_9094697.jpeg b/civitai/lora_pony/Vixon_s_Pony_Styles_-_Dramatic_Lighting_9094697.jpeg index 9d61874..9ae93df 100644 Binary files a/civitai/lora_pony/Vixon_s_Pony_Styles_-_Dramatic_Lighting_9094697.jpeg and b/civitai/lora_pony/Vixon_s_Pony_Styles_-_Dramatic_Lighting_9094697.jpeg differ diff --git a/civitai/lora_pony/Vixon_s_Pony_Styles_-_gothic_neon_38444153.jpeg b/civitai/lora_pony/Vixon_s_Pony_Styles_-_gothic_neon_38444153.jpeg index eba60c1..4a5f82a 100644 Binary files a/civitai/lora_pony/Vixon_s_Pony_Styles_-_gothic_neon_38444153.jpeg and b/civitai/lora_pony/Vixon_s_Pony_Styles_-_gothic_neon_38444153.jpeg differ diff --git a/civitai/lora_pony/Zheng__Allurmilk__-_Style_LoRA_40355316.jpeg b/civitai/lora_pony/Zheng__Allurmilk__-_Style_LoRA_40355316.jpeg index 435284d..08a7275 100644 Binary files a/civitai/lora_pony/Zheng__Allurmilk__-_Style_LoRA_40355316.jpeg and b/civitai/lora_pony/Zheng__Allurmilk__-_Style_LoRA_40355316.jpeg differ diff --git a/civitai/lora_pony/_Blacklight__14636660.jpeg b/civitai/lora_pony/_Blacklight__14636660.jpeg index 7b73bf7..0d34705 100644 Binary files a/civitai/lora_pony/_Blacklight__14636660.jpeg and b/civitai/lora_pony/_Blacklight__14636660.jpeg differ diff --git a/civitai/lora_pony/_O.D.O.R.__-_feet_anime_pony_xl_15569740.jpeg b/civitai/lora_pony/_O.D.O.R.__-_feet_anime_pony_xl_15569740.jpeg index d7e726f..98d83cb 100644 Binary files a/civitai/lora_pony/_O.D.O.R.__-_feet_anime_pony_xl_15569740.jpeg and b/civitai/lora_pony/_O.D.O.R.__-_feet_anime_pony_xl_15569740.jpeg differ diff --git a/civitai/lora_pony/_PonyXL___1.5__Pokemon_-_Lillie_12914175.jpeg b/civitai/lora_pony/_PonyXL___1.5__Pokemon_-_Lillie_12914175.jpeg index 1155576..8df03ab 100644 Binary files a/civitai/lora_pony/_PonyXL___1.5__Pokemon_-_Lillie_12914175.jpeg and b/civitai/lora_pony/_PonyXL___1.5__Pokemon_-_Lillie_12914175.jpeg differ diff --git a/civitai/lora_pony/_Pony_All_characters__Genshin_Impact___124_characters____ๅŽŸ็ฅžๅ…จ่ง’่‰ฒ_124_ไฝ_14593091.jpeg b/civitai/lora_pony/_Pony_All_characters__Genshin_Impact___124_characters____ๅŽŸ็ฅžๅ…จ่ง’่‰ฒ_124_ไฝ_14593091.jpeg index 188dca1..cac0302 100644 Binary files a/civitai/lora_pony/_Pony_All_characters__Genshin_Impact___124_characters____ๅŽŸ็ฅžๅ…จ่ง’่‰ฒ_124_ไฝ_14593091.jpeg and b/civitai/lora_pony/_Pony_All_characters__Genshin_Impact___124_characters____ๅŽŸ็ฅžๅ…จ่ง’่‰ฒ_124_ไฝ_14593091.jpeg differ diff --git a/civitai/lora_pony/_Pony__Geekpower_AI_Styles_32989295.jpeg b/civitai/lora_pony/_Pony__Geekpower_AI_Styles_32989295.jpeg index 2562c74..f26e785 100644 Binary files a/civitai/lora_pony/_Pony__Geekpower_AI_Styles_32989295.jpeg and b/civitai/lora_pony/_Pony__Geekpower_AI_Styles_32989295.jpeg differ diff --git a/civitai/lora_pony/_SD1.5___PONY__Honkai_Star_Rail_-_Fu_Xuan___็ฌฆ็Ž„_13217969.jpeg b/civitai/lora_pony/_SD1.5___PONY__Honkai_Star_Rail_-_Fu_Xuan___็ฌฆ็Ž„_13217969.jpeg index a473e41..d22be72 100644 Binary files a/civitai/lora_pony/_SD1.5___PONY__Honkai_Star_Rail_-_Fu_Xuan___็ฌฆ็Ž„_13217969.jpeg and b/civitai/lora_pony/_SD1.5___PONY__Honkai_Star_Rail_-_Fu_Xuan___็ฌฆ็Ž„_13217969.jpeg differ diff --git a/civitai/lora_pony/_SDXL_Pony_SD1.5___Sono_Bisque_Doll_wa_Koi_wo_Suru_-_Marin_Kitagawa_15389245.jpeg b/civitai/lora_pony/_SDXL_Pony_SD1.5___Sono_Bisque_Doll_wa_Koi_wo_Suru_-_Marin_Kitagawa_15389245.jpeg index bbefb5e..42dc839 100644 Binary files a/civitai/lora_pony/_SDXL_Pony_SD1.5___Sono_Bisque_Doll_wa_Koi_wo_Suru_-_Marin_Kitagawa_15389245.jpeg and b/civitai/lora_pony/_SDXL_Pony_SD1.5___Sono_Bisque_Doll_wa_Koi_wo_Suru_-_Marin_Kitagawa_15389245.jpeg differ diff --git a/civitai/lora_pony/_Style_Pony__RELSM_-_Semi_Realism__12424338.jpeg b/civitai/lora_pony/_Style_Pony__RELSM_-_Semi_Realism__12424338.jpeg index cb968a0..41f153c 100644 Binary files a/civitai/lora_pony/_Style_Pony__RELSM_-_Semi_Realism__12424338.jpeg and b/civitai/lora_pony/_Style_Pony__RELSM_-_Semi_Realism__12424338.jpeg differ diff --git a/civitai/lora_pony/character_sheet_8576335.jpeg b/civitai/lora_pony/character_sheet_8576335.jpeg index 0b94412..3c89300 100644 Binary files a/civitai/lora_pony/character_sheet_8576335.jpeg and b/civitai/lora_pony/character_sheet_8576335.jpeg differ diff --git a/civitai/lora_sd_1.5/1990s_Anime_Style_LoRA_60529.jpeg b/civitai/lora_sd_1.5/1990s_Anime_Style_LoRA_60529.jpeg index 7688b03..ba666ef 100644 Binary files a/civitai/lora_sd_1.5/1990s_Anime_Style_LoRA_60529.jpeg and b/civitai/lora_sd_1.5/1990s_Anime_Style_LoRA_60529.jpeg differ diff --git a/civitai/lora_sd_1.5/1_mb_LORA_trained_in_5_mins_that_does_the_same_thing_as_2.5_gb_model_but_better_84808.jpeg b/civitai/lora_sd_1.5/1_mb_LORA_trained_in_5_mins_that_does_the_same_thing_as_2.5_gb_model_but_better_84808.jpeg index 06867ea..07e5528 100644 Binary files a/civitai/lora_sd_1.5/1_mb_LORA_trained_in_5_mins_that_does_the_same_thing_as_2.5_gb_model_but_better_84808.jpeg and b/civitai/lora_sd_1.5/1_mb_LORA_trained_in_5_mins_that_does_the_same_thing_as_2.5_gb_model_but_better_84808.jpeg differ diff --git a/civitai/lora_sd_1.5/20D้ป‘ไธ_185355.jpeg b/civitai/lora_sd_1.5/20D้ป‘ไธ_185355.jpeg index 8c0ea3e..b47d3cc 100644 Binary files a/civitai/lora_sd_1.5/20D้ป‘ไธ_185355.jpeg and b/civitai/lora_sd_1.5/20D้ป‘ไธ_185355.jpeg differ diff --git a/civitai/lora_sd_1.5/2B__NieR_Automata__LoRA___YorHA_edition_51748.jpeg b/civitai/lora_sd_1.5/2B__NieR_Automata__LoRA___YorHA_edition_51748.jpeg index fa999e6..ba035bc 100644 Binary files a/civitai/lora_sd_1.5/2B__NieR_Automata__LoRA___YorHA_edition_51748.jpeg and b/civitai/lora_sd_1.5/2B__NieR_Automata__LoRA___YorHA_edition_51748.jpeg differ diff --git a/civitai/lora_sd_1.5/2D_Pixel_Toolkit__2Dๅƒ็ด ๅทฅๅ…ทๅŒ…__3615077.jpeg b/civitai/lora_sd_1.5/2D_Pixel_Toolkit__2Dๅƒ็ด ๅทฅๅ…ทๅŒ…__3615077.jpeg index 9ea404b..63002ba 100644 Binary files a/civitai/lora_sd_1.5/2D_Pixel_Toolkit__2Dๅƒ็ด ๅทฅๅ…ทๅŒ…__3615077.jpeg and b/civitai/lora_sd_1.5/2D_Pixel_Toolkit__2Dๅƒ็ด ๅทฅๅ…ทๅŒ…__3615077.jpeg differ diff --git a/civitai/lora_sd_1.5/3D_CG_Style__Realistic_508199.jpeg b/civitai/lora_sd_1.5/3D_CG_Style__Realistic_508199.jpeg index 0d6f25a..b487a7f 100644 Binary files a/civitai/lora_sd_1.5/3D_CG_Style__Realistic_508199.jpeg and b/civitai/lora_sd_1.5/3D_CG_Style__Realistic_508199.jpeg differ diff --git a/civitai/lora_sd_1.5/8bitdiffuser_64x___a_perfect_pixel_art_model_19361061.jpeg b/civitai/lora_sd_1.5/8bitdiffuser_64x___a_perfect_pixel_art_model_19361061.jpeg index 19a6a6d..01836c1 100644 Binary files a/civitai/lora_sd_1.5/8bitdiffuser_64x___a_perfect_pixel_art_model_19361061.jpeg and b/civitai/lora_sd_1.5/8bitdiffuser_64x___a_perfect_pixel_art_model_19361061.jpeg differ diff --git a/civitai/lora_sd_1.5/A-Mecha_Musume_A็ด ไฝ“ๆœบๅจ˜_1165567.jpeg b/civitai/lora_sd_1.5/A-Mecha_Musume_A็ด ไฝ“ๆœบๅจ˜_1165567.jpeg index 053ca34..58a160b 100644 Binary files a/civitai/lora_sd_1.5/A-Mecha_Musume_A็ด ไฝ“ๆœบๅจ˜_1165567.jpeg and b/civitai/lora_sd_1.5/A-Mecha_Musume_A็ด ไฝ“ๆœบๅจ˜_1165567.jpeg differ diff --git a/civitai/lora_sd_1.5/AESPA_Karina_26664800.jpeg b/civitai/lora_sd_1.5/AESPA_Karina_26664800.jpeg index 2e1017c..859b5df 100644 Binary files a/civitai/lora_sd_1.5/AESPA_Karina_26664800.jpeg and b/civitai/lora_sd_1.5/AESPA_Karina_26664800.jpeg differ diff --git a/civitai/lora_sd_1.5/A_to_Zovya_RPG_Artist_s_Tools_LoRA_481408.jpeg b/civitai/lora_sd_1.5/A_to_Zovya_RPG_Artist_s_Tools_LoRA_481408.jpeg index 32a9ad9..590e45c 100644 Binary files a/civitai/lora_sd_1.5/A_to_Zovya_RPG_Artist_s_Tools_LoRA_481408.jpeg and b/civitai/lora_sd_1.5/A_to_Zovya_RPG_Artist_s_Tools_LoRA_481408.jpeg differ diff --git a/civitai/lora_sd_1.5/Add_More_Details_-_Detail_Enhancer___Tweaker__็ป†่Š‚่ฐƒๆ•ด__LoRA_995787.jpeg b/civitai/lora_sd_1.5/Add_More_Details_-_Detail_Enhancer___Tweaker__็ป†่Š‚่ฐƒๆ•ด__LoRA_995787.jpeg index 5bb29e5..cc97a10 100644 Binary files a/civitai/lora_sd_1.5/Add_More_Details_-_Detail_Enhancer___Tweaker__็ป†่Š‚่ฐƒๆ•ด__LoRA_995787.jpeg and b/civitai/lora_sd_1.5/Add_More_Details_-_Detail_Enhancer___Tweaker__็ป†่Š‚่ฐƒๆ•ด__LoRA_995787.jpeg differ diff --git a/civitai/lora_sd_1.5/Administrator__Quinella__ใ‚ขใƒ‰ใƒŸใƒ‹ใ‚นใƒˆใƒฌใƒผใ‚ฟ___Sword_Art_Online_350784.jpeg b/civitai/lora_sd_1.5/Administrator__Quinella__ใ‚ขใƒ‰ใƒŸใƒ‹ใ‚นใƒˆใƒฌใƒผใ‚ฟ___Sword_Art_Online_350784.jpeg index d012e12..fee6e01 100644 Binary files a/civitai/lora_sd_1.5/Administrator__Quinella__ใ‚ขใƒ‰ใƒŸใƒ‹ใ‚นใƒˆใƒฌใƒผใ‚ฟ___Sword_Art_Online_350784.jpeg and b/civitai/lora_sd_1.5/Administrator__Quinella__ใ‚ขใƒ‰ใƒŸใƒ‹ใ‚นใƒˆใƒฌใƒผใ‚ฟ___Sword_Art_Online_350784.jpeg differ diff --git a/civitai/lora_sd_1.5/Aerith_Gainsborough__Final_Fantasy_VII__LoRA_750661.jpeg b/civitai/lora_sd_1.5/Aerith_Gainsborough__Final_Fantasy_VII__LoRA_750661.jpeg index f8d641d..c3b3231 100644 Binary files a/civitai/lora_sd_1.5/Aerith_Gainsborough__Final_Fantasy_VII__LoRA_750661.jpeg and b/civitai/lora_sd_1.5/Aerith_Gainsborough__Final_Fantasy_VII__LoRA_750661.jpeg differ diff --git a/civitai/lora_sd_1.5/Age_Slider_2089092.jpeg b/civitai/lora_sd_1.5/Age_Slider_2089092.jpeg index d3b74f3..af80fc6 100644 Binary files a/civitai/lora_sd_1.5/Age_Slider_2089092.jpeg and b/civitai/lora_sd_1.5/Age_Slider_2089092.jpeg differ diff --git a/civitai/lora_sd_1.5/Age_Slider_LoRA__for_anime__2966370.jpeg b/civitai/lora_sd_1.5/Age_Slider_LoRA__for_anime__2966370.jpeg index a10875f..8c54a6a 100644 Binary files a/civitai/lora_sd_1.5/Age_Slider_LoRA__for_anime__2966370.jpeg and b/civitai/lora_sd_1.5/Age_Slider_LoRA__for_anime__2966370.jpeg differ diff --git a/civitai/lora_sd_1.5/Ahegao_3302205.jpeg b/civitai/lora_sd_1.5/Ahegao_3302205.jpeg index 0d0ca4d..6cb2b84 100644 Binary files a/civitai/lora_sd_1.5/Ahegao_3302205.jpeg and b/civitai/lora_sd_1.5/Ahegao_3302205.jpeg differ diff --git a/civitai/lora_sd_1.5/Ahri__League_of_Legends__LoRA_43786.jpeg b/civitai/lora_sd_1.5/Ahri__League_of_Legends__LoRA_43786.jpeg index 87d2857..6aa2536 100644 Binary files a/civitai/lora_sd_1.5/Ahri__League_of_Legends__LoRA_43786.jpeg and b/civitai/lora_sd_1.5/Ahri__League_of_Legends__LoRA_43786.jpeg differ diff --git a/civitai/lora_sd_1.5/Akemi_Takada__1980s__Style_LoRA_60853.jpeg b/civitai/lora_sd_1.5/Akemi_Takada__1980s__Style_LoRA_60853.jpeg index 42a7f63..a514e29 100644 Binary files a/civitai/lora_sd_1.5/Akemi_Takada__1980s__Style_LoRA_60853.jpeg and b/civitai/lora_sd_1.5/Akemi_Takada__1980s__Style_LoRA_60853.jpeg differ diff --git a/civitai/lora_sd_1.5/Akira_Toriyama_Style_LoRA_47116.jpeg b/civitai/lora_sd_1.5/Akira_Toriyama_Style_LoRA_47116.jpeg index 4e4a49b..1c4c2db 100644 Binary files a/civitai/lora_sd_1.5/Akira_Toriyama_Style_LoRA_47116.jpeg and b/civitai/lora_sd_1.5/Akira_Toriyama_Style_LoRA_47116.jpeg differ diff --git a/civitai/lora_sd_1.5/Alphonse__Mucha_Arkstyle_168153.jpeg b/civitai/lora_sd_1.5/Alphonse__Mucha_Arkstyle_168153.jpeg index 90f9589..49441a5 100644 Binary files a/civitai/lora_sd_1.5/Alphonse__Mucha_Arkstyle_168153.jpeg and b/civitai/lora_sd_1.5/Alphonse__Mucha_Arkstyle_168153.jpeg differ diff --git a/civitai/lora_sd_1.5/Amber__Genshin_Impact__LoRA_37939.jpeg b/civitai/lora_sd_1.5/Amber__Genshin_Impact__LoRA_37939.jpeg index 6405ba8..3b16815 100644 Binary files a/civitai/lora_sd_1.5/Amber__Genshin_Impact__LoRA_37939.jpeg and b/civitai/lora_sd_1.5/Amber__Genshin_Impact__LoRA_37939.jpeg differ diff --git a/civitai/lora_sd_1.5/Amelia_Watson__Hololive__4_outfits_2710624.jpeg b/civitai/lora_sd_1.5/Amelia_Watson__Hololive__4_outfits_2710624.jpeg index 58200d5..73b8492 100644 Binary files a/civitai/lora_sd_1.5/Amelia_Watson__Hololive__4_outfits_2710624.jpeg and b/civitai/lora_sd_1.5/Amelia_Watson__Hololive__4_outfits_2710624.jpeg differ diff --git a/civitai/lora_sd_1.5/Ancient_Chinese_architectural_style_ไธญๅ›ฝๅคๅปบ็ญ‘ๆ ทๅผ__237587.jpeg b/civitai/lora_sd_1.5/Ancient_Chinese_architectural_style_ไธญๅ›ฝๅคๅปบ็ญ‘ๆ ทๅผ__237587.jpeg index a5936ff..d4c8a6e 100644 Binary files a/civitai/lora_sd_1.5/Ancient_Chinese_architectural_style_ไธญๅ›ฝๅคๅปบ็ญ‘ๆ ทๅผ__237587.jpeg and b/civitai/lora_sd_1.5/Ancient_Chinese_architectural_style_ไธญๅ›ฝๅคๅปบ็ญ‘ๆ ทๅผ__237587.jpeg differ diff --git a/civitai/lora_sd_1.5/Android_18_ไบบ้€ ไบบ้–“18ๅท___Dragon_Ball_Z_380403.jpeg b/civitai/lora_sd_1.5/Android_18_ไบบ้€ ไบบ้–“18ๅท___Dragon_Ball_Z_380403.jpeg index f8a1ef3..849e47e 100644 Binary files a/civitai/lora_sd_1.5/Android_18_ไบบ้€ ไบบ้–“18ๅท___Dragon_Ball_Z_380403.jpeg and b/civitai/lora_sd_1.5/Android_18_ไบบ้€ ไบบ้–“18ๅท___Dragon_Ball_Z_380403.jpeg differ diff --git a/civitai/lora_sd_1.5/Angel_SleePeace_Concept_LoRA_1176335.jpeg b/civitai/lora_sd_1.5/Angel_SleePeace_Concept_LoRA_1176335.jpeg index dc99925..2710c2f 100644 Binary files a/civitai/lora_sd_1.5/Angel_SleePeace_Concept_LoRA_1176335.jpeg and b/civitai/lora_sd_1.5/Angel_SleePeace_Concept_LoRA_1176335.jpeg differ diff --git a/civitai/lora_sd_1.5/Angelic_Wairrors__Valkyrie__Paladin__Priestess__252536.jpeg b/civitai/lora_sd_1.5/Angelic_Wairrors__Valkyrie__Paladin__Priestess__252536.jpeg index 17263d7..d2dae8c 100644 Binary files a/civitai/lora_sd_1.5/Angelic_Wairrors__Valkyrie__Paladin__Priestess__252536.jpeg and b/civitai/lora_sd_1.5/Angelic_Wairrors__Valkyrie__Paladin__Priestess__252536.jpeg differ diff --git a/civitai/lora_sd_1.5/Animal_Crossing___human_style_ๅŠจ็‰ฉๆฃฎๅ‹ไผš___ไบบ็ฑป้ฃŽๆ ผ_1184738.jpeg b/civitai/lora_sd_1.5/Animal_Crossing___human_style_ๅŠจ็‰ฉๆฃฎๅ‹ไผš___ไบบ็ฑป้ฃŽๆ ผ_1184738.jpeg index cfa0bed..74ae693 100644 Binary files a/civitai/lora_sd_1.5/Animal_Crossing___human_style_ๅŠจ็‰ฉๆฃฎๅ‹ไผš___ไบบ็ฑป้ฃŽๆ ผ_1184738.jpeg and b/civitai/lora_sd_1.5/Animal_Crossing___human_style_ๅŠจ็‰ฉๆฃฎๅ‹ไผš___ไบบ็ฑป้ฃŽๆ ผ_1184738.jpeg differ diff --git a/civitai/lora_sd_1.5/Anime_Kisses_281168.jpeg b/civitai/lora_sd_1.5/Anime_Kisses_281168.jpeg index 81eccbc..51262f4 100644 Binary files a/civitai/lora_sd_1.5/Anime_Kisses_281168.jpeg and b/civitai/lora_sd_1.5/Anime_Kisses_281168.jpeg differ diff --git a/civitai/lora_sd_1.5/Anime_Lineart___Manga-like__็บฟ็จฟ_็ทš็”ป_ใƒžใƒณใ‚ฌ้ขจ_ๆผซ็”ป้ฃŽ__Style_326152.jpeg b/civitai/lora_sd_1.5/Anime_Lineart___Manga-like__็บฟ็จฟ_็ทš็”ป_ใƒžใƒณใ‚ฌ้ขจ_ๆผซ็”ป้ฃŽ__Style_326152.jpeg index e9f0ec8..47eff0c 100644 Binary files a/civitai/lora_sd_1.5/Anime_Lineart___Manga-like__็บฟ็จฟ_็ทš็”ป_ใƒžใƒณใ‚ฌ้ขจ_ๆผซ็”ป้ฃŽ__Style_326152.jpeg and b/civitai/lora_sd_1.5/Anime_Lineart___Manga-like__็บฟ็จฟ_็ทš็”ป_ใƒžใƒณใ‚ฌ้ขจ_ๆผซ็”ป้ฃŽ__Style_326152.jpeg differ diff --git a/civitai/lora_sd_1.5/Anime_Magazine_Cover_374293.jpeg b/civitai/lora_sd_1.5/Anime_Magazine_Cover_374293.jpeg index cb78dd5..72fddc2 100644 Binary files a/civitai/lora_sd_1.5/Anime_Magazine_Cover_374293.jpeg and b/civitai/lora_sd_1.5/Anime_Magazine_Cover_374293.jpeg differ diff --git a/civitai/lora_sd_1.5/Anime_Screencap_Style_LoRA_662267.jpeg b/civitai/lora_sd_1.5/Anime_Screencap_Style_LoRA_662267.jpeg index 125c869..a504ee8 100644 Binary files a/civitai/lora_sd_1.5/Anime_Screencap_Style_LoRA_662267.jpeg and b/civitai/lora_sd_1.5/Anime_Screencap_Style_LoRA_662267.jpeg differ diff --git a/civitai/lora_sd_1.5/Anime_Tarot_Card_Art_Style_LoRA__ๅก”็ฝ—็‰Œ_ใ‚ฟใƒญใƒƒใƒˆใ‚ซใƒผใƒ‰__322490.jpeg b/civitai/lora_sd_1.5/Anime_Tarot_Card_Art_Style_LoRA__ๅก”็ฝ—็‰Œ_ใ‚ฟใƒญใƒƒใƒˆใ‚ซใƒผใƒ‰__322490.jpeg index de51dcc..d6b19dd 100644 Binary files a/civitai/lora_sd_1.5/Anime_Tarot_Card_Art_Style_LoRA__ๅก”็ฝ—็‰Œ_ใ‚ฟใƒญใƒƒใƒˆใ‚ซใƒผใƒ‰__322490.jpeg and b/civitai/lora_sd_1.5/Anime_Tarot_Card_Art_Style_LoRA__ๅก”็ฝ—็‰Œ_ใ‚ฟใƒญใƒƒใƒˆใ‚ซใƒผใƒ‰__322490.jpeg differ diff --git a/civitai/lora_sd_1.5/Animix_-_Anime_Screenshot-like_Style_Mix_LoRA__ใ‚ขใƒ‹ใƒกใ‚นใ‚ฏใ‚ทใƒง้ขจ_ๅŠจ็”ปๆˆชๅ›พ้ฃŽ__318954.jpeg b/civitai/lora_sd_1.5/Animix_-_Anime_Screenshot-like_Style_Mix_LoRA__ใ‚ขใƒ‹ใƒกใ‚นใ‚ฏใ‚ทใƒง้ขจ_ๅŠจ็”ปๆˆชๅ›พ้ฃŽ__318954.jpeg index c886219..c8e0fd8 100644 Binary files a/civitai/lora_sd_1.5/Animix_-_Anime_Screenshot-like_Style_Mix_LoRA__ใ‚ขใƒ‹ใƒกใ‚นใ‚ฏใ‚ทใƒง้ขจ_ๅŠจ็”ปๆˆชๅ›พ้ฃŽ__318954.jpeg and b/civitai/lora_sd_1.5/Animix_-_Anime_Screenshot-like_Style_Mix_LoRA__ใ‚ขใƒ‹ใƒกใ‚นใ‚ฏใ‚ทใƒง้ขจ_ๅŠจ็”ปๆˆชๅ›พ้ฃŽ__318954.jpeg differ diff --git a/civitai/lora_sd_1.5/Anis__NIKKE__LoRA___2_Outfits__Sparkling_Summer_and_Default__1875688.jpeg b/civitai/lora_sd_1.5/Anis__NIKKE__LoRA___2_Outfits__Sparkling_Summer_and_Default__1875688.jpeg index 0b6aedf..2dd3b4b 100644 Binary files a/civitai/lora_sd_1.5/Anis__NIKKE__LoRA___2_Outfits__Sparkling_Summer_and_Default__1875688.jpeg and b/civitai/lora_sd_1.5/Anis__NIKKE__LoRA___2_Outfits__Sparkling_Summer_and_Default__1875688.jpeg differ diff --git a/civitai/lora_sd_1.5/Aqua__Konosuba__LoRA_62788.jpeg b/civitai/lora_sd_1.5/Aqua__Konosuba__LoRA_62788.jpeg index 45c3eae..c338fa0 100644 Binary files a/civitai/lora_sd_1.5/Aqua__Konosuba__LoRA_62788.jpeg and b/civitai/lora_sd_1.5/Aqua__Konosuba__LoRA_62788.jpeg differ diff --git a/civitai/lora_sd_1.5/Arc_en_Gowns___A_wrench_s_Gown_Collection_8431873.jpeg b/civitai/lora_sd_1.5/Arc_en_Gowns___A_wrench_s_Gown_Collection_8431873.jpeg index 8772cc9..08b242c 100644 Binary files a/civitai/lora_sd_1.5/Arc_en_Gowns___A_wrench_s_Gown_Collection_8431873.jpeg and b/civitai/lora_sd_1.5/Arc_en_Gowns___A_wrench_s_Gown_Collection_8431873.jpeg differ diff --git a/civitai/lora_sd_1.5/Arcane_Style_LoRA_79106.jpeg b/civitai/lora_sd_1.5/Arcane_Style_LoRA_79106.jpeg index 0558430..0161ab6 100644 Binary files a/civitai/lora_sd_1.5/Arcane_Style_LoRA_79106.jpeg and b/civitai/lora_sd_1.5/Arcane_Style_LoRA_79106.jpeg differ diff --git a/civitai/lora_sd_1.5/Arknights-Skadi_the_Corrupting_Heart_66204.jpeg b/civitai/lora_sd_1.5/Arknights-Skadi_the_Corrupting_Heart_66204.jpeg index 1652c51..da058a1 100644 Binary files a/civitai/lora_sd_1.5/Arknights-Skadi_the_Corrupting_Heart_66204.jpeg and b/civitai/lora_sd_1.5/Arknights-Skadi_the_Corrupting_Heart_66204.jpeg differ diff --git a/civitai/lora_sd_1.5/Arknights-Texas_the_Omertosa_323361.jpeg b/civitai/lora_sd_1.5/Arknights-Texas_the_Omertosa_323361.jpeg index ebd1b22..16ea94a 100644 Binary files a/civitai/lora_sd_1.5/Arknights-Texas_the_Omertosa_323361.jpeg and b/civitai/lora_sd_1.5/Arknights-Texas_the_Omertosa_323361.jpeg differ diff --git a/civitai/lora_sd_1.5/Armor_Suit_็›”็”ฒๅฅ—่ฃ…__LoRa_702805.jpeg b/civitai/lora_sd_1.5/Armor_Suit_็›”็”ฒๅฅ—่ฃ…__LoRa_702805.jpeg index 0ea9cf4..e8f844f 100644 Binary files a/civitai/lora_sd_1.5/Armor_Suit_็›”็”ฒๅฅ—่ฃ…__LoRa_702805.jpeg and b/civitai/lora_sd_1.5/Armor_Suit_็›”็”ฒๅฅ—่ฃ…__LoRa_702805.jpeg differ diff --git a/civitai/lora_sd_1.5/AsianMale_178496.jpeg b/civitai/lora_sd_1.5/AsianMale_178496.jpeg index 3c6fb59..7bba4f3 100644 Binary files a/civitai/lora_sd_1.5/AsianMale_178496.jpeg and b/civitai/lora_sd_1.5/AsianMale_178496.jpeg differ diff --git a/civitai/lora_sd_1.5/Asian_Cute_Face_697402.jpeg b/civitai/lora_sd_1.5/Asian_Cute_Face_697402.jpeg index 3106ee2..5eb6b38 100644 Binary files a/civitai/lora_sd_1.5/Asian_Cute_Face_697402.jpeg and b/civitai/lora_sd_1.5/Asian_Cute_Face_697402.jpeg differ diff --git a/civitai/lora_sd_1.5/Asian_girls_face_747945.jpeg b/civitai/lora_sd_1.5/Asian_girls_face_747945.jpeg index d2f5003..bb6490c 100644 Binary files a/civitai/lora_sd_1.5/Asian_girls_face_747945.jpeg and b/civitai/lora_sd_1.5/Asian_girls_face_747945.jpeg differ diff --git a/civitai/lora_sd_1.5/Asian_girls_face_V2.0_654009.jpeg b/civitai/lora_sd_1.5/Asian_girls_face_V2.0_654009.jpeg index 65142d2..dbe5e7b 100644 Binary files a/civitai/lora_sd_1.5/Asian_girls_face_V2.0_654009.jpeg and b/civitai/lora_sd_1.5/Asian_girls_face_V2.0_654009.jpeg differ diff --git a/civitai/lora_sd_1.5/Asuka_Langley_Soryu__ๆƒฃๆต_ใ‚ขใ‚นใ‚ซ_ใƒฉใƒณใ‚ฐใƒฌใƒผ__-_Neon_Genesis_Evangelion__ๆ–ฐไธ–็ด€ใ‚จใƒดใ‚กใƒณใ‚ฒใƒชใ‚ชใƒณ__3689430.jpeg b/civitai/lora_sd_1.5/Asuka_Langley_Soryu__ๆƒฃๆต_ใ‚ขใ‚นใ‚ซ_ใƒฉใƒณใ‚ฐใƒฌใƒผ__-_Neon_Genesis_Evangelion__ๆ–ฐไธ–็ด€ใ‚จใƒดใ‚กใƒณใ‚ฒใƒชใ‚ชใƒณ__3689430.jpeg index 8cd7cbe..0195fb0 100644 Binary files a/civitai/lora_sd_1.5/Asuka_Langley_Soryu__ๆƒฃๆต_ใ‚ขใ‚นใ‚ซ_ใƒฉใƒณใ‚ฐใƒฌใƒผ__-_Neon_Genesis_Evangelion__ๆ–ฐไธ–็ด€ใ‚จใƒดใ‚กใƒณใ‚ฒใƒชใ‚ชใƒณ__3689430.jpeg and b/civitai/lora_sd_1.5/Asuka_Langley_Soryu__ๆƒฃๆต_ใ‚ขใ‚นใ‚ซ_ใƒฉใƒณใ‚ฐใƒฌใƒผ__-_Neon_Genesis_Evangelion__ๆ–ฐไธ–็ด€ใ‚จใƒดใ‚กใƒณใ‚ฒใƒชใ‚ชใƒณ__3689430.jpeg differ diff --git a/civitai/lora_sd_1.5/Asuka_Langley_Souryuu_Shikinami__Evangelion__1683297.jpeg b/civitai/lora_sd_1.5/Asuka_Langley_Souryuu_Shikinami__Evangelion__1683297.jpeg index 941c47a..63b17d7 100644 Binary files a/civitai/lora_sd_1.5/Asuka_Langley_Souryuu_Shikinami__Evangelion__1683297.jpeg and b/civitai/lora_sd_1.5/Asuka_Langley_Souryuu_Shikinami__Evangelion__1683297.jpeg differ diff --git a/civitai/lora_sd_1.5/Asuna_-_LoRA_Collection_of_Trauter_s_43726.jpeg b/civitai/lora_sd_1.5/Asuna_-_LoRA_Collection_of_Trauter_s_43726.jpeg index 3daaf14..31cf0e9 100644 Binary files a/civitai/lora_sd_1.5/Asuna_-_LoRA_Collection_of_Trauter_s_43726.jpeg and b/civitai/lora_sd_1.5/Asuna_-_LoRA_Collection_of_Trauter_s_43726.jpeg differ diff --git a/civitai/lora_sd_1.5/Asuna_LoRA_42497.jpeg b/civitai/lora_sd_1.5/Asuna_LoRA_42497.jpeg index b76ffaa..29d5024 100644 Binary files a/civitai/lora_sd_1.5/Asuna_LoRA_42497.jpeg and b/civitai/lora_sd_1.5/Asuna_LoRA_42497.jpeg differ diff --git a/civitai/lora_sd_1.5/Atdan_Style_LoRA_99322.jpeg b/civitai/lora_sd_1.5/Atdan_Style_LoRA_99322.jpeg index f7b714f..c406773 100644 Binary files a/civitai/lora_sd_1.5/Atdan_Style_LoRA_99322.jpeg and b/civitai/lora_sd_1.5/Atdan_Style_LoRA_99322.jpeg differ diff --git a/civitai/lora_sd_1.5/Atomic_Heart_robot_maid_131343.jpeg b/civitai/lora_sd_1.5/Atomic_Heart_robot_maid_131343.jpeg index 3913e2a..5d95e1b 100644 Binary files a/civitai/lora_sd_1.5/Atomic_Heart_robot_maid_131343.jpeg and b/civitai/lora_sd_1.5/Atomic_Heart_robot_maid_131343.jpeg differ diff --git a/civitai/lora_sd_1.5/Auroral_Background_2389457.jpeg b/civitai/lora_sd_1.5/Auroral_Background_2389457.jpeg index ffa40c3..854597f 100644 Binary files a/civitai/lora_sd_1.5/Auroral_Background_2389457.jpeg and b/civitai/lora_sd_1.5/Auroral_Background_2389457.jpeg differ diff --git a/civitai/lora_sd_1.5/BArtstyle___Blue_Archive_Art_Style_LoRA___็ขง่“ๆกฃๆกˆ็”ป้ฃŽๆจกๅž‹___ใƒ–ใƒซใƒผใ‚ขใƒผใ‚ซใ‚คใƒ–็”ป้ขจใƒขใƒ‡ใƒซ_2825560.jpeg b/civitai/lora_sd_1.5/BArtstyle___Blue_Archive_Art_Style_LoRA___็ขง่“ๆกฃๆกˆ็”ป้ฃŽๆจกๅž‹___ใƒ–ใƒซใƒผใ‚ขใƒผใ‚ซใ‚คใƒ–็”ป้ขจใƒขใƒ‡ใƒซ_2825560.jpeg index f0c94d0..914310d 100644 Binary files a/civitai/lora_sd_1.5/BArtstyle___Blue_Archive_Art_Style_LoRA___็ขง่“ๆกฃๆกˆ็”ป้ฃŽๆจกๅž‹___ใƒ–ใƒซใƒผใ‚ขใƒผใ‚ซใ‚คใƒ–็”ป้ขจใƒขใƒ‡ใƒซ_2825560.jpeg and b/civitai/lora_sd_1.5/BArtstyle___Blue_Archive_Art_Style_LoRA___็ขง่“ๆกฃๆกˆ็”ป้ฃŽๆจกๅž‹___ใƒ–ใƒซใƒผใ‚ขใƒผใ‚ซใ‚คใƒ–็”ป้ขจใƒขใƒ‡ใƒซ_2825560.jpeg differ diff --git a/civitai/lora_sd_1.5/BDSM_-_On_a_Leash_LoRA_1300605.jpeg b/civitai/lora_sd_1.5/BDSM_-_On_a_Leash_LoRA_1300605.jpeg index bd06b0f..79e4945 100644 Binary files a/civitai/lora_sd_1.5/BDSM_-_On_a_Leash_LoRA_1300605.jpeg and b/civitai/lora_sd_1.5/BDSM_-_On_a_Leash_LoRA_1300605.jpeg differ diff --git a/civitai/lora_sd_1.5/Badass_Cars_645644.jpeg b/civitai/lora_sd_1.5/Badass_Cars_645644.jpeg index 24447b4..94eb76b 100644 Binary files a/civitai/lora_sd_1.5/Badass_Cars_645644.jpeg and b/civitai/lora_sd_1.5/Badass_Cars_645644.jpeg differ diff --git a/civitai/lora_sd_1.5/Barbara_Genshin_Impact___Character_Lora_1500_511030.jpeg b/civitai/lora_sd_1.5/Barbara_Genshin_Impact___Character_Lora_1500_511030.jpeg index cbb79df..b9b758d 100644 Binary files a/civitai/lora_sd_1.5/Barbara_Genshin_Impact___Character_Lora_1500_511030.jpeg and b/civitai/lora_sd_1.5/Barbara_Genshin_Impact___Character_Lora_1500_511030.jpeg differ diff --git a/civitai/lora_sd_1.5/Bea__Pokemon__LoRA__8_MB__100106.jpeg b/civitai/lora_sd_1.5/Bea__Pokemon__LoRA__8_MB__100106.jpeg index fe140cc..511d767 100644 Binary files a/civitai/lora_sd_1.5/Bea__Pokemon__LoRA__8_MB__100106.jpeg and b/civitai/lora_sd_1.5/Bea__Pokemon__LoRA__8_MB__100106.jpeg differ diff --git a/civitai/lora_sd_1.5/Beautifuleyeslikeness_ๆฐดๆฑชๆฑช็š„ๅคง็œผ็›2.5D_220496.jpeg b/civitai/lora_sd_1.5/Beautifuleyeslikeness_ๆฐดๆฑชๆฑช็š„ๅคง็œผ็›2.5D_220496.jpeg index 94e5584..798a79a 100644 Binary files a/civitai/lora_sd_1.5/Beautifuleyeslikeness_ๆฐดๆฑชๆฑช็š„ๅคง็œผ็›2.5D_220496.jpeg and b/civitai/lora_sd_1.5/Beautifuleyeslikeness_ๆฐดๆฑชๆฑช็š„ๅคง็œผ็›2.5D_220496.jpeg differ diff --git a/civitai/lora_sd_1.5/Belle_Delphine_482698.jpeg b/civitai/lora_sd_1.5/Belle_Delphine_482698.jpeg index c2edf09..fb1b9cc 100644 Binary files a/civitai/lora_sd_1.5/Belle_Delphine_482698.jpeg and b/civitai/lora_sd_1.5/Belle_Delphine_482698.jpeg differ diff --git a/civitai/lora_sd_1.5/BetterRamenEating_1426750.jpeg b/civitai/lora_sd_1.5/BetterRamenEating_1426750.jpeg index 422df60..7d08097 100644 Binary files a/civitai/lora_sd_1.5/BetterRamenEating_1426750.jpeg and b/civitai/lora_sd_1.5/BetterRamenEating_1426750.jpeg differ diff --git a/civitai/lora_sd_1.5/Better_Leggins_720049.jpeg b/civitai/lora_sd_1.5/Better_Leggins_720049.jpeg index fcd462a..5904634 100644 Binary files a/civitai/lora_sd_1.5/Better_Leggins_720049.jpeg and b/civitai/lora_sd_1.5/Better_Leggins_720049.jpeg differ diff --git a/civitai/lora_sd_1.5/Better_eyes_face_skin___ๆ›ดๅฅฝ็š„็œผ็›_่„ธ_็šฎ่‚ค_802676.jpeg b/civitai/lora_sd_1.5/Better_eyes_face_skin___ๆ›ดๅฅฝ็š„็œผ็›_่„ธ_็šฎ่‚ค_802676.jpeg index bb8a44b..80af948 100644 Binary files a/civitai/lora_sd_1.5/Better_eyes_face_skin___ๆ›ดๅฅฝ็š„็œผ็›_่„ธ_็šฎ่‚ค_802676.jpeg and b/civitai/lora_sd_1.5/Better_eyes_face_skin___ๆ›ดๅฅฝ็š„็œผ็›_่„ธ_็šฎ่‚ค_802676.jpeg differ diff --git a/civitai/lora_sd_1.5/Bettergun_AK47_WIP__150750.jpeg b/civitai/lora_sd_1.5/Bettergun_AK47_WIP__150750.jpeg index a619bbc..49889df 100644 Binary files a/civitai/lora_sd_1.5/Bettergun_AK47_WIP__150750.jpeg and b/civitai/lora_sd_1.5/Bettergun_AK47_WIP__150750.jpeg differ diff --git a/civitai/lora_sd_1.5/Biomechanicals__HR_Giger__328404.jpeg b/civitai/lora_sd_1.5/Biomechanicals__HR_Giger__328404.jpeg index 09559cc..ce26f89 100644 Binary files a/civitai/lora_sd_1.5/Biomechanicals__HR_Giger__328404.jpeg and b/civitai/lora_sd_1.5/Biomechanicals__HR_Giger__328404.jpeg differ diff --git a/civitai/lora_sd_1.5/Bloodstained_-_Vector___illustrative_615798.jpeg b/civitai/lora_sd_1.5/Bloodstained_-_Vector___illustrative_615798.jpeg index f22deb8..0cd3a3a 100644 Binary files a/civitai/lora_sd_1.5/Bloodstained_-_Vector___illustrative_615798.jpeg and b/civitai/lora_sd_1.5/Bloodstained_-_Vector___illustrative_615798.jpeg differ diff --git a/civitai/lora_sd_1.5/Bowsette___Character_Lora_1860_200100.jpeg b/civitai/lora_sd_1.5/Bowsette___Character_Lora_1860_200100.jpeg index 4218732..31988d2 100644 Binary files a/civitai/lora_sd_1.5/Bowsette___Character_Lora_1860_200100.jpeg and b/civitai/lora_sd_1.5/Bowsette___Character_Lora_1860_200100.jpeg differ diff --git a/civitai/lora_sd_1.5/BreakRealize_LoRA_938670.jpeg b/civitai/lora_sd_1.5/BreakRealize_LoRA_938670.jpeg index 4d4be1b..1281fb3 100644 Binary files a/civitai/lora_sd_1.5/BreakRealize_LoRA_938670.jpeg and b/civitai/lora_sd_1.5/BreakRealize_LoRA_938670.jpeg differ diff --git a/civitai/lora_sd_1.5/Brightness_Tweaker_LoRA__ไบฎๅบฆ่ฐƒๆ•ดLoRA__834619.jpeg b/civitai/lora_sd_1.5/Brightness_Tweaker_LoRA__ไบฎๅบฆ่ฐƒๆ•ดLoRA__834619.jpeg index 14192a0..cf129b0 100644 Binary files a/civitai/lora_sd_1.5/Brightness_Tweaker_LoRA__ไบฎๅบฆ่ฐƒๆ•ดLoRA__834619.jpeg and b/civitai/lora_sd_1.5/Brightness_Tweaker_LoRA__ไบฎๅบฆ่ฐƒๆ•ดLoRA__834619.jpeg differ diff --git a/civitai/lora_sd_1.5/Bronya_Zaychik__Silverwing__N-EX____Honkai_Impact_3rd___LoRA___LoCon_196033.jpeg b/civitai/lora_sd_1.5/Bronya_Zaychik__Silverwing__N-EX____Honkai_Impact_3rd___LoRA___LoCon_196033.jpeg index bf13468..e4c330a 100644 Binary files a/civitai/lora_sd_1.5/Bronya_Zaychik__Silverwing__N-EX____Honkai_Impact_3rd___LoRA___LoCon_196033.jpeg and b/civitai/lora_sd_1.5/Bronya_Zaychik__Silverwing__N-EX____Honkai_Impact_3rd___LoRA___LoCon_196033.jpeg differ diff --git a/civitai/lora_sd_1.5/Bubble_Drip_1242290.jpeg b/civitai/lora_sd_1.5/Bubble_Drip_1242290.jpeg index 9d96fd4..85b5e40 100644 Binary files a/civitai/lora_sd_1.5/Bubble_Drip_1242290.jpeg and b/civitai/lora_sd_1.5/Bubble_Drip_1242290.jpeg differ diff --git a/civitai/lora_sd_1.5/Bulma_ใƒ–ใƒซใƒž___Dragon_Ball_1123270.jpeg b/civitai/lora_sd_1.5/Bulma_ใƒ–ใƒซใƒž___Dragon_Ball_1123270.jpeg index b4e36a4..43be6a9 100644 Binary files a/civitai/lora_sd_1.5/Bulma_ใƒ–ใƒซใƒž___Dragon_Ball_1123270.jpeg and b/civitai/lora_sd_1.5/Bulma_ใƒ–ใƒซใƒž___Dragon_Ball_1123270.jpeg differ diff --git a/civitai/lora_sd_1.5/Butterfly___Flowers_Multiply_Style_1244957.jpeg b/civitai/lora_sd_1.5/Butterfly___Flowers_Multiply_Style_1244957.jpeg index a83e974..d56b5c4 100644 Binary files a/civitai/lora_sd_1.5/Butterfly___Flowers_Multiply_Style_1244957.jpeg and b/civitai/lora_sd_1.5/Butterfly___Flowers_Multiply_Style_1244957.jpeg differ diff --git a/civitai/lora_sd_1.5/Cartoony_Style_154576.jpeg b/civitai/lora_sd_1.5/Cartoony_Style_154576.jpeg index 7f7c1d3..ad7c116 100644 Binary files a/civitai/lora_sd_1.5/Cartoony_Style_154576.jpeg and b/civitai/lora_sd_1.5/Cartoony_Style_154576.jpeg differ diff --git a/civitai/lora_sd_1.5/Centaur_Concept_124177.jpeg b/civitai/lora_sd_1.5/Centaur_Concept_124177.jpeg index d83a350..6717d74 100644 Binary files a/civitai/lora_sd_1.5/Centaur_Concept_124177.jpeg and b/civitai/lora_sd_1.5/Centaur_Concept_124177.jpeg differ diff --git a/civitai/lora_sd_1.5/Chainsaw_Man__characters_pack__765812.jpeg b/civitai/lora_sd_1.5/Chainsaw_Man__characters_pack__765812.jpeg index ebe4e10..d6810f1 100644 Binary files a/civitai/lora_sd_1.5/Chainsaw_Man__characters_pack__765812.jpeg and b/civitai/lora_sd_1.5/Chainsaw_Man__characters_pack__765812.jpeg differ diff --git a/civitai/lora_sd_1.5/CharTurnerBeta_-_Lora__EXPERIMENTAL__84069.jpeg b/civitai/lora_sd_1.5/CharTurnerBeta_-_Lora__EXPERIMENTAL__84069.jpeg index 3743704..30425b1 100644 Binary files a/civitai/lora_sd_1.5/CharTurnerBeta_-_Lora__EXPERIMENTAL__84069.jpeg and b/civitai/lora_sd_1.5/CharTurnerBeta_-_Lora__EXPERIMENTAL__84069.jpeg differ diff --git a/civitai/lora_sd_1.5/Cheese_Daddy_s_Landscapes_mix_3.5_LoRA_Extract_83907.jpeg b/civitai/lora_sd_1.5/Cheese_Daddy_s_Landscapes_mix_3.5_LoRA_Extract_83907.jpeg index 37a6e54..c503fd6 100644 Binary files a/civitai/lora_sd_1.5/Cheese_Daddy_s_Landscapes_mix_3.5_LoRA_Extract_83907.jpeg and b/civitai/lora_sd_1.5/Cheese_Daddy_s_Landscapes_mix_3.5_LoRA_Extract_83907.jpeg differ diff --git a/civitai/lora_sd_1.5/Chibi_ArtStyle_1082276.jpeg b/civitai/lora_sd_1.5/Chibi_ArtStyle_1082276.jpeg index 962939e..a83291c 100644 Binary files a/civitai/lora_sd_1.5/Chibi_ArtStyle_1082276.jpeg and b/civitai/lora_sd_1.5/Chibi_ArtStyle_1082276.jpeg differ diff --git a/civitai/lora_sd_1.5/ChilloutMixss3.0_201449.jpeg b/civitai/lora_sd_1.5/ChilloutMixss3.0_201449.jpeg index ed5b8bf..da6a29f 100644 Binary files a/civitai/lora_sd_1.5/ChilloutMixss3.0_201449.jpeg and b/civitai/lora_sd_1.5/ChilloutMixss3.0_201449.jpeg differ diff --git a/civitai/lora_sd_1.5/Chinese_Dragon_ไธญๅ›ฝ้พ™_LoRa_963219.jpeg b/civitai/lora_sd_1.5/Chinese_Dragon_ไธญๅ›ฝ้พ™_LoRa_963219.jpeg index 174d81d..cc26a13 100644 Binary files a/civitai/lora_sd_1.5/Chinese_Dragon_ไธญๅ›ฝ้พ™_LoRa_963219.jpeg and b/civitai/lora_sd_1.5/Chinese_Dragon_ไธญๅ›ฝ้พ™_LoRa_963219.jpeg differ diff --git a/civitai/lora_sd_1.5/Chinese_Idol_-_YangMiๆจๅน‚_1139334.jpeg b/civitai/lora_sd_1.5/Chinese_Idol_-_YangMiๆจๅน‚_1139334.jpeg index c2edbfd..6d94c6c 100644 Binary files a/civitai/lora_sd_1.5/Chinese_Idol_-_YangMiๆจๅน‚_1139334.jpeg and b/civitai/lora_sd_1.5/Chinese_Idol_-_YangMiๆจๅน‚_1139334.jpeg differ diff --git a/civitai/lora_sd_1.5/Chinese_Mural_painting_style_ไธญๅ›ฝๅฃ็”ป้ฃŽ__798892.jpeg b/civitai/lora_sd_1.5/Chinese_Mural_painting_style_ไธญๅ›ฝๅฃ็”ป้ฃŽ__798892.jpeg index e0db36b..6c12ba7 100644 Binary files a/civitai/lora_sd_1.5/Chinese_Mural_painting_style_ไธญๅ›ฝๅฃ็”ป้ฃŽ__798892.jpeg and b/civitai/lora_sd_1.5/Chinese_Mural_painting_style_ไธญๅ›ฝๅฃ็”ป้ฃŽ__798892.jpeg differ diff --git a/civitai/lora_sd_1.5/Chinese_Style_Future_v1_1217937.jpeg b/civitai/lora_sd_1.5/Chinese_Style_Future_v1_1217937.jpeg index 19a65c6..4c5d672 100644 Binary files a/civitai/lora_sd_1.5/Chinese_Style_Future_v1_1217937.jpeg and b/civitai/lora_sd_1.5/Chinese_Style_Future_v1_1217937.jpeg differ diff --git a/civitai/lora_sd_1.5/Chitanda_Eru_ๅƒๅ็”ฐใˆใ‚‹___Hyouka_335478.jpeg b/civitai/lora_sd_1.5/Chitanda_Eru_ๅƒๅ็”ฐใˆใ‚‹___Hyouka_335478.jpeg index 4837116..dce6ada 100644 Binary files a/civitai/lora_sd_1.5/Chitanda_Eru_ๅƒๅ็”ฐใˆใ‚‹___Hyouka_335478.jpeg and b/civitai/lora_sd_1.5/Chitanda_Eru_ๅƒๅ็”ฐใˆใ‚‹___Hyouka_335478.jpeg differ diff --git a/civitai/lora_sd_1.5/Classic_Anime_Expressions_348266.jpeg b/civitai/lora_sd_1.5/Classic_Anime_Expressions_348266.jpeg index 303fb4c..10a5d6e 100644 Binary files a/civitai/lora_sd_1.5/Classic_Anime_Expressions_348266.jpeg and b/civitai/lora_sd_1.5/Classic_Anime_Expressions_348266.jpeg differ diff --git a/civitai/lora_sd_1.5/Clay_Render_Style_็™ฝๆจกๆธฒๆŸ“้ฃŽๆ ผ_1931779.jpeg b/civitai/lora_sd_1.5/Clay_Render_Style_็™ฝๆจกๆธฒๆŸ“้ฃŽๆ ผ_1931779.jpeg index 934f756..ff3c24e 100644 Binary files a/civitai/lora_sd_1.5/Clay_Render_Style_็™ฝๆจกๆธฒๆŸ“้ฃŽๆ ผ_1931779.jpeg and b/civitai/lora_sd_1.5/Clay_Render_Style_็™ฝๆจกๆธฒๆŸ“้ฃŽๆ ผ_1931779.jpeg differ diff --git a/civitai/lora_sd_1.5/Colorize_-_Slider_LoRA_2712646.jpeg b/civitai/lora_sd_1.5/Colorize_-_Slider_LoRA_2712646.jpeg index a7fc985..a882a18 100644 Binary files a/civitai/lora_sd_1.5/Colorize_-_Slider_LoRA_2712646.jpeg and b/civitai/lora_sd_1.5/Colorize_-_Slider_LoRA_2712646.jpeg differ diff --git a/civitai/lora_sd_1.5/Common_Taiwanese_Food___ๅฐ็ฃๅธธ่ฆ‹็พŽ้ฃŸ_274554.jpeg b/civitai/lora_sd_1.5/Common_Taiwanese_Food___ๅฐ็ฃๅธธ่ฆ‹็พŽ้ฃŸ_274554.jpeg index 3a936f7..6987ef0 100644 Binary files a/civitai/lora_sd_1.5/Common_Taiwanese_Food___ๅฐ็ฃๅธธ่ฆ‹็พŽ้ฃŸ_274554.jpeg and b/civitai/lora_sd_1.5/Common_Taiwanese_Food___ๅฐ็ฃๅธธ่ฆ‹็พŽ้ฃŸ_274554.jpeg differ diff --git a/civitai/lora_sd_1.5/Concept__Perfect_Eyes_1150034.jpeg b/civitai/lora_sd_1.5/Concept__Perfect_Eyes_1150034.jpeg index 82acf29..fcd5844 100644 Binary files a/civitai/lora_sd_1.5/Concept__Perfect_Eyes_1150034.jpeg and b/civitai/lora_sd_1.5/Concept__Perfect_Eyes_1150034.jpeg differ diff --git a/civitai/lora_sd_1.5/Constricted_pupils___wide-eyed_1238770.jpeg b/civitai/lora_sd_1.5/Constricted_pupils___wide-eyed_1238770.jpeg index b1459e2..7346f6f 100644 Binary files a/civitai/lora_sd_1.5/Constricted_pupils___wide-eyed_1238770.jpeg and b/civitai/lora_sd_1.5/Constricted_pupils___wide-eyed_1238770.jpeg differ diff --git a/civitai/lora_sd_1.5/ConstructionyardAI_-_konyconi_639053.jpeg b/civitai/lora_sd_1.5/ConstructionyardAI_-_konyconi_639053.jpeg index ed00d27..ba2cd64 100644 Binary files a/civitai/lora_sd_1.5/ConstructionyardAI_-_konyconi_639053.jpeg and b/civitai/lora_sd_1.5/ConstructionyardAI_-_konyconi_639053.jpeg differ diff --git a/civitai/lora_sd_1.5/Cover_Page_Layout_Graphic_design_570490.jpeg b/civitai/lora_sd_1.5/Cover_Page_Layout_Graphic_design_570490.jpeg index 63d6b57..b2c7b9c 100644 Binary files a/civitai/lora_sd_1.5/Cover_Page_Layout_Graphic_design_570490.jpeg and b/civitai/lora_sd_1.5/Cover_Page_Layout_Graphic_design_570490.jpeg differ diff --git a/civitai/lora_sd_1.5/Covering_eyes_Pose_LORA_91764.jpeg b/civitai/lora_sd_1.5/Covering_eyes_Pose_LORA_91764.jpeg index 18eba4f..fafb764 100644 Binary files a/civitai/lora_sd_1.5/Covering_eyes_Pose_LORA_91764.jpeg and b/civitai/lora_sd_1.5/Covering_eyes_Pose_LORA_91764.jpeg differ diff --git a/civitai/lora_sd_1.5/Cow_Print_and_Bikini_573703.jpeg b/civitai/lora_sd_1.5/Cow_Print_and_Bikini_573703.jpeg index 67e7d66..ba11a2e 100644 Binary files a/civitai/lora_sd_1.5/Cow_Print_and_Bikini_573703.jpeg and b/civitai/lora_sd_1.5/Cow_Print_and_Bikini_573703.jpeg differ diff --git a/civitai/lora_sd_1.5/Crazy_Expressions_1075216.jpeg b/civitai/lora_sd_1.5/Crazy_Expressions_1075216.jpeg index a2c3800..aa21e26 100644 Binary files a/civitai/lora_sd_1.5/Crazy_Expressions_1075216.jpeg and b/civitai/lora_sd_1.5/Crazy_Expressions_1075216.jpeg differ diff --git a/civitai/lora_sd_1.5/Crop_Tops_-_fC_1102550.jpeg b/civitai/lora_sd_1.5/Crop_Tops_-_fC_1102550.jpeg index ce3ef08..c625bfb 100644 Binary files a/civitai/lora_sd_1.5/Crop_Tops_-_fC_1102550.jpeg and b/civitai/lora_sd_1.5/Crop_Tops_-_fC_1102550.jpeg differ diff --git a/civitai/lora_sd_1.5/Crossed_Eyes_LoRA___Yorime___Hypnosis_94745.jpeg b/civitai/lora_sd_1.5/Crossed_Eyes_LoRA___Yorime___Hypnosis_94745.jpeg index 6db0e7d..b24233f 100644 Binary files a/civitai/lora_sd_1.5/Crossed_Eyes_LoRA___Yorime___Hypnosis_94745.jpeg and b/civitai/lora_sd_1.5/Crossed_Eyes_LoRA___Yorime___Hypnosis_94745.jpeg differ diff --git a/civitai/lora_sd_1.5/Crotchless_Pants___Crotchless_Pantyhose_ๅผ€ๆกฃ่ฃค_ๅผ€ๆกฃ่ฃค่ขœ_2499295.jpeg b/civitai/lora_sd_1.5/Crotchless_Pants___Crotchless_Pantyhose_ๅผ€ๆกฃ่ฃค_ๅผ€ๆกฃ่ฃค่ขœ_2499295.jpeg index 63079ed..a762653 100644 Binary files a/civitai/lora_sd_1.5/Crotchless_Pants___Crotchless_Pantyhose_ๅผ€ๆกฃ่ฃค_ๅผ€ๆกฃ่ฃค่ขœ_2499295.jpeg and b/civitai/lora_sd_1.5/Crotchless_Pants___Crotchless_Pantyhose_ๅผ€ๆกฃ่ฃค_ๅผ€ๆกฃ่ฃค่ขœ_2499295.jpeg differ diff --git a/civitai/lora_sd_1.5/CrystallineAI_-_konyconi_577676.jpeg b/civitai/lora_sd_1.5/CrystallineAI_-_konyconi_577676.jpeg index e175d72..ccf25ab 100644 Binary files a/civitai/lora_sd_1.5/CrystallineAI_-_konyconi_577676.jpeg and b/civitai/lora_sd_1.5/CrystallineAI_-_konyconi_577676.jpeg differ diff --git a/civitai/lora_sd_1.5/Cute_girl_mix4_244295.jpeg b/civitai/lora_sd_1.5/Cute_girl_mix4_244295.jpeg index 3569843..23e8dc5 100644 Binary files a/civitai/lora_sd_1.5/Cute_girl_mix4_244295.jpeg and b/civitai/lora_sd_1.5/Cute_girl_mix4_244295.jpeg differ diff --git a/civitai/lora_sd_1.5/Cyberhanfu_่ต›ๅšๅ›ฝ้ฃŽ_Cyber_Chinese_style_1201637.jpeg b/civitai/lora_sd_1.5/Cyberhanfu_่ต›ๅšๅ›ฝ้ฃŽ_Cyber_Chinese_style_1201637.jpeg index 33d7719..93e2722 100644 Binary files a/civitai/lora_sd_1.5/Cyberhanfu_่ต›ๅšๅ›ฝ้ฃŽ_Cyber_Chinese_style_1201637.jpeg and b/civitai/lora_sd_1.5/Cyberhanfu_่ต›ๅšๅ›ฝ้ฃŽ_Cyber_Chinese_style_1201637.jpeg differ diff --git a/civitai/lora_sd_1.5/Cyberhelmet___Wearable_LoRA_596737.jpeg b/civitai/lora_sd_1.5/Cyberhelmet___Wearable_LoRA_596737.jpeg index 1ed3cb8..efa568b 100644 Binary files a/civitai/lora_sd_1.5/Cyberhelmet___Wearable_LoRA_596737.jpeg and b/civitai/lora_sd_1.5/Cyberhelmet___Wearable_LoRA_596737.jpeg differ diff --git a/civitai/lora_sd_1.5/Cyberpunk_2077_Tarot_card_512x1024_127403.jpeg b/civitai/lora_sd_1.5/Cyberpunk_2077_Tarot_card_512x1024_127403.jpeg index 9b5fee1..f108f4f 100644 Binary files a/civitai/lora_sd_1.5/Cyberpunk_2077_Tarot_card_512x1024_127403.jpeg and b/civitai/lora_sd_1.5/Cyberpunk_2077_Tarot_card_512x1024_127403.jpeg differ diff --git a/civitai/lora_sd_1.5/C่็”ป้ฃŽ_comic_lo_takamichi_style_2598437.jpeg b/civitai/lora_sd_1.5/C่็”ป้ฃŽ_comic_lo_takamichi_style_2598437.jpeg index 463434f..2e69fbf 100644 Binary files a/civitai/lora_sd_1.5/C่็”ป้ฃŽ_comic_lo_takamichi_style_2598437.jpeg and b/civitai/lora_sd_1.5/C่็”ป้ฃŽ_comic_lo_takamichi_style_2598437.jpeg differ diff --git a/civitai/lora_sd_1.5/DDicon_lora_493709.jpeg b/civitai/lora_sd_1.5/DDicon_lora_493709.jpeg index 04ae007..69a66ea 100644 Binary files a/civitai/lora_sd_1.5/DDicon_lora_493709.jpeg and b/civitai/lora_sd_1.5/DDicon_lora_493709.jpeg differ diff --git a/civitai/lora_sd_1.5/DOA_-_Marie_Rose_3217139.jpeg b/civitai/lora_sd_1.5/DOA_-_Marie_Rose_3217139.jpeg index b273da2..411e3e3 100644 Binary files a/civitai/lora_sd_1.5/DOA_-_Marie_Rose_3217139.jpeg and b/civitai/lora_sd_1.5/DOA_-_Marie_Rose_3217139.jpeg differ diff --git a/civitai/lora_sd_1.5/Daili_188041.jpeg b/civitai/lora_sd_1.5/Daili_188041.jpeg index 98e48b9..ea9e9e3 100644 Binary files a/civitai/lora_sd_1.5/Daili_188041.jpeg and b/civitai/lora_sd_1.5/Daili_188041.jpeg differ diff --git a/civitai/lora_sd_1.5/DarkLight_22781001.jpeg b/civitai/lora_sd_1.5/DarkLight_22781001.jpeg index cda18bc..67b0817 100644 Binary files a/civitai/lora_sd_1.5/DarkLight_22781001.jpeg and b/civitai/lora_sd_1.5/DarkLight_22781001.jpeg differ diff --git a/civitai/lora_sd_1.5/Dark_Fantasy_342699.jpeg b/civitai/lora_sd_1.5/Dark_Fantasy_342699.jpeg index c2fe2ac..30c961a 100644 Binary files a/civitai/lora_sd_1.5/Dark_Fantasy_342699.jpeg and b/civitai/lora_sd_1.5/Dark_Fantasy_342699.jpeg differ diff --git a/civitai/lora_sd_1.5/Dark_Magician_Girl_LoRA_67367.jpeg b/civitai/lora_sd_1.5/Dark_Magician_Girl_LoRA_67367.jpeg index bc9b77f..f6aec95 100644 Binary files a/civitai/lora_sd_1.5/Dark_Magician_Girl_LoRA_67367.jpeg and b/civitai/lora_sd_1.5/Dark_Magician_Girl_LoRA_67367.jpeg differ diff --git a/civitai/lora_sd_1.5/Dark_dungeon_697775.jpeg b/civitai/lora_sd_1.5/Dark_dungeon_697775.jpeg index 8a9a68a..be40193 100644 Binary files a/civitai/lora_sd_1.5/Dark_dungeon_697775.jpeg and b/civitai/lora_sd_1.5/Dark_dungeon_697775.jpeg differ diff --git a/civitai/lora_sd_1.5/Darkness_ใƒ€ใ‚ฏใƒใ‚น___KONOSUBA_270329.jpeg b/civitai/lora_sd_1.5/Darkness_ใƒ€ใ‚ฏใƒใ‚น___KONOSUBA_270329.jpeg index c1801c9..8757ebd 100644 Binary files a/civitai/lora_sd_1.5/Darkness_ใƒ€ใ‚ฏใƒใ‚น___KONOSUBA_270329.jpeg and b/civitai/lora_sd_1.5/Darkness_ใƒ€ใ‚ฏใƒใ‚น___KONOSUBA_270329.jpeg differ diff --git a/civitai/lora_sd_1.5/Depth_of_Field_Slider_-_LoRA_2221968.jpeg b/civitai/lora_sd_1.5/Depth_of_Field_Slider_-_LoRA_2221968.jpeg index d4e29a2..e464068 100644 Binary files a/civitai/lora_sd_1.5/Depth_of_Field_Slider_-_LoRA_2221968.jpeg and b/civitai/lora_sd_1.5/Depth_of_Field_Slider_-_LoRA_2221968.jpeg differ diff --git a/civitai/lora_sd_1.5/Detail_Tweaker_LoRA__็ป†่Š‚่ฐƒๆ•ดLoRA__692411.jpeg b/civitai/lora_sd_1.5/Detail_Tweaker_LoRA__็ป†่Š‚่ฐƒๆ•ดLoRA__692411.jpeg index 5b57e53..e3a7be0 100644 Binary files a/civitai/lora_sd_1.5/Detail_Tweaker_LoRA__็ป†่Š‚่ฐƒๆ•ดLoRA__692411.jpeg and b/civitai/lora_sd_1.5/Detail_Tweaker_LoRA__็ป†่Š‚่ฐƒๆ•ดLoRA__692411.jpeg differ diff --git a/civitai/lora_sd_1.5/DieselpunkAI_311643.jpeg b/civitai/lora_sd_1.5/DieselpunkAI_311643.jpeg index 7e50535..428222d 100644 Binary files a/civitai/lora_sd_1.5/DieselpunkAI_311643.jpeg and b/civitai/lora_sd_1.5/DieselpunkAI_311643.jpeg differ diff --git a/civitai/lora_sd_1.5/Doll_Likeness_-_by_EDG_13648968.jpeg b/civitai/lora_sd_1.5/Doll_Likeness_-_by_EDG_13648968.jpeg index 5367602..846dd1c 100644 Binary files a/civitai/lora_sd_1.5/Doll_Likeness_-_by_EDG_13648968.jpeg and b/civitai/lora_sd_1.5/Doll_Likeness_-_by_EDG_13648968.jpeg differ diff --git a/civitai/lora_sd_1.5/Doll_style_-_Photography_art_-_Realistic_joints_doll_sd_mdd_dd_bjd_dds___ๅจƒๅจƒๆ‘„ๅฝฑ่‰บๆœฏ_383641.jpeg b/civitai/lora_sd_1.5/Doll_style_-_Photography_art_-_Realistic_joints_doll_sd_mdd_dd_bjd_dds___ๅจƒๅจƒๆ‘„ๅฝฑ่‰บๆœฏ_383641.jpeg index 42bea7a..ea49917 100644 Binary files a/civitai/lora_sd_1.5/Doll_style_-_Photography_art_-_Realistic_joints_doll_sd_mdd_dd_bjd_dds___ๅจƒๅจƒๆ‘„ๅฝฑ่‰บๆœฏ_383641.jpeg and b/civitai/lora_sd_1.5/Doll_style_-_Photography_art_-_Realistic_joints_doll_sd_mdd_dd_bjd_dds___ๅจƒๅจƒๆ‘„ๅฝฑ่‰บๆœฏ_383641.jpeg differ diff --git a/civitai/lora_sd_1.5/Don_t_Starve_Together_719557.jpeg b/civitai/lora_sd_1.5/Don_t_Starve_Together_719557.jpeg index 3879812..7ace704 100644 Binary files a/civitai/lora_sd_1.5/Don_t_Starve_Together_719557.jpeg and b/civitai/lora_sd_1.5/Don_t_Starve_Together_719557.jpeg differ diff --git a/civitai/lora_sd_1.5/DragonScaleAI_-_konyconi_784059.jpeg b/civitai/lora_sd_1.5/DragonScaleAI_-_konyconi_784059.jpeg index 4352e37..c018e3f 100644 Binary files a/civitai/lora_sd_1.5/DragonScaleAI_-_konyconi_784059.jpeg and b/civitai/lora_sd_1.5/DragonScaleAI_-_konyconi_784059.jpeg differ diff --git a/civitai/lora_sd_1.5/Drow_Concept_LoRA_1647366.jpeg b/civitai/lora_sd_1.5/Drow_Concept_LoRA_1647366.jpeg index b600610..1cc653a 100644 Binary files a/civitai/lora_sd_1.5/Drow_Concept_LoRA_1647366.jpeg and b/civitai/lora_sd_1.5/Drow_Concept_LoRA_1647366.jpeg differ diff --git a/civitai/lora_sd_1.5/Easy_sticker_915761.jpeg b/civitai/lora_sd_1.5/Easy_sticker_915761.jpeg index 0d6698d..2eb8243 100644 Binary files a/civitai/lora_sd_1.5/Easy_sticker_915761.jpeg and b/civitai/lora_sd_1.5/Easy_sticker_915761.jpeg differ diff --git a/civitai/lora_sd_1.5/Eflorescense____MON__Psychedelic_LoRA_1570405.jpeg b/civitai/lora_sd_1.5/Eflorescense____MON__Psychedelic_LoRA_1570405.jpeg index d6b4a7c..85ca54a 100644 Binary files a/civitai/lora_sd_1.5/Eflorescense____MON__Psychedelic_LoRA_1570405.jpeg and b/civitai/lora_sd_1.5/Eflorescense____MON__Psychedelic_LoRA_1570405.jpeg differ diff --git a/civitai/lora_sd_1.5/Elegant_hanfu_ruqun_style_92713.jpeg b/civitai/lora_sd_1.5/Elegant_hanfu_ruqun_style_92713.jpeg index cff71a5..4c6e514 100644 Binary files a/civitai/lora_sd_1.5/Elegant_hanfu_ruqun_style_92713.jpeg and b/civitai/lora_sd_1.5/Elegant_hanfu_ruqun_style_92713.jpeg differ diff --git a/civitai/lora_sd_1.5/Elysia_5in1_Lora_434401.jpeg b/civitai/lora_sd_1.5/Elysia_5in1_Lora_434401.jpeg index 23da19b..e713a2a 100644 Binary files a/civitai/lora_sd_1.5/Elysia_5in1_Lora_434401.jpeg and b/civitai/lora_sd_1.5/Elysia_5in1_Lora_434401.jpeg differ diff --git a/civitai/lora_sd_1.5/Emma_Watson_LoRA_180502.jpeg b/civitai/lora_sd_1.5/Emma_Watson_LoRA_180502.jpeg index a6027a7..b9ea792 100644 Binary files a/civitai/lora_sd_1.5/Emma_Watson_LoRA_180502.jpeg and b/civitai/lora_sd_1.5/Emma_Watson_LoRA_180502.jpeg differ diff --git a/civitai/lora_sd_1.5/Emotion_Sliders_1800239.jpeg b/civitai/lora_sd_1.5/Emotion_Sliders_1800239.jpeg index ee2ecb4..e332b02 100644 Binary files a/civitai/lora_sd_1.5/Emotion_Sliders_1800239.jpeg and b/civitai/lora_sd_1.5/Emotion_Sliders_1800239.jpeg differ diff --git a/civitai/lora_sd_1.5/Empty_Eyes_LoRA___Utsurome___Hypnotic_Suggestion_108534.jpeg b/civitai/lora_sd_1.5/Empty_Eyes_LoRA___Utsurome___Hypnotic_Suggestion_108534.jpeg index 6ba8c6e..44a0c4b 100644 Binary files a/civitai/lora_sd_1.5/Empty_Eyes_LoRA___Utsurome___Hypnotic_Suggestion_108534.jpeg and b/civitai/lora_sd_1.5/Empty_Eyes_LoRA___Utsurome___Hypnotic_Suggestion_108534.jpeg differ diff --git a/civitai/lora_sd_1.5/Esthetic_Urushihara_Satoshi_454414.jpeg b/civitai/lora_sd_1.5/Esthetic_Urushihara_Satoshi_454414.jpeg index 0e8c191..cb77854 100644 Binary files a/civitai/lora_sd_1.5/Esthetic_Urushihara_Satoshi_454414.jpeg and b/civitai/lora_sd_1.5/Esthetic_Urushihara_Satoshi_454414.jpeg differ diff --git a/civitai/lora_sd_1.5/Eula___Realistic_Genshin_LORA_267661.jpeg b/civitai/lora_sd_1.5/Eula___Realistic_Genshin_LORA_267661.jpeg index 212985c..08ce3d0 100644 Binary files a/civitai/lora_sd_1.5/Eula___Realistic_Genshin_LORA_267661.jpeg and b/civitai/lora_sd_1.5/Eula___Realistic_Genshin_LORA_267661.jpeg differ diff --git a/civitai/lora_sd_1.5/Eye_-_LoRa_59640.jpeg b/civitai/lora_sd_1.5/Eye_-_LoRa_59640.jpeg index ffddcb5..bc84ca4 100644 Binary files a/civitai/lora_sd_1.5/Eye_-_LoRa_59640.jpeg and b/civitai/lora_sd_1.5/Eye_-_LoRa_59640.jpeg differ diff --git a/civitai/lora_sd_1.5/EyesGen_-_Lora_-_WIP__100143.jpeg b/civitai/lora_sd_1.5/EyesGen_-_Lora_-_WIP__100143.jpeg index a0ff6ce..8bd8bf1 100644 Binary files a/civitai/lora_sd_1.5/EyesGen_-_Lora_-_WIP__100143.jpeg and b/civitai/lora_sd_1.5/EyesGen_-_Lora_-_WIP__100143.jpeg differ diff --git a/civitai/lora_sd_1.5/Fairy_Tail_Girlpack_LoRA_2266386.jpeg b/civitai/lora_sd_1.5/Fairy_Tail_Girlpack_LoRA_2266386.jpeg index a55404d..9fb8e3b 100644 Binary files a/civitai/lora_sd_1.5/Fairy_Tail_Girlpack_LoRA_2266386.jpeg and b/civitai/lora_sd_1.5/Fairy_Tail_Girlpack_LoRA_2266386.jpeg differ diff --git a/civitai/lora_sd_1.5/Fantasy_Character-_PAseer_669636.jpeg b/civitai/lora_sd_1.5/Fantasy_Character-_PAseer_669636.jpeg index 332f560..20a5178 100644 Binary files a/civitai/lora_sd_1.5/Fantasy_Character-_PAseer_669636.jpeg and b/civitai/lora_sd_1.5/Fantasy_Character-_PAseer_669636.jpeg differ diff --git a/civitai/lora_sd_1.5/Fechin_oil_painting_-_่ดนๆฌฃๆฒน็”ป_1056962.jpeg b/civitai/lora_sd_1.5/Fechin_oil_painting_-_่ดนๆฌฃๆฒน็”ป_1056962.jpeg index a5b270f..cf46975 100644 Binary files a/civitai/lora_sd_1.5/Fechin_oil_painting_-_่ดนๆฌฃๆฒน็”ป_1056962.jpeg and b/civitai/lora_sd_1.5/Fechin_oil_painting_-_่ดนๆฌฃๆฒน็”ป_1056962.jpeg differ diff --git a/civitai/lora_sd_1.5/Feet_from_below_pose_2400166.jpeg b/civitai/lora_sd_1.5/Feet_from_below_pose_2400166.jpeg index 3291443..93fdfa3 100644 Binary files a/civitai/lora_sd_1.5/Feet_from_below_pose_2400166.jpeg and b/civitai/lora_sd_1.5/Feet_from_below_pose_2400166.jpeg differ diff --git a/civitai/lora_sd_1.5/Female_Noble_Class_Hanbok_-_Korea_Clothes_343123.jpeg b/civitai/lora_sd_1.5/Female_Noble_Class_Hanbok_-_Korea_Clothes_343123.jpeg index 44cd8cb..5b9818a 100644 Binary files a/civitai/lora_sd_1.5/Female_Noble_Class_Hanbok_-_Korea_Clothes_343123.jpeg and b/civitai/lora_sd_1.5/Female_Noble_Class_Hanbok_-_Korea_Clothes_343123.jpeg differ diff --git a/civitai/lora_sd_1.5/Fern__3_Outfits____Frieren__Beyond_Journey_s_End_7936107.jpeg b/civitai/lora_sd_1.5/Fern__3_Outfits____Frieren__Beyond_Journey_s_End_7936107.jpeg index 3b3467b..84e07df 100644 Binary files a/civitai/lora_sd_1.5/Fern__3_Outfits____Frieren__Beyond_Journey_s_End_7936107.jpeg and b/civitai/lora_sd_1.5/Fern__3_Outfits____Frieren__Beyond_Journey_s_End_7936107.jpeg differ diff --git a/civitai/lora_sd_1.5/Figma_Anime_Figures_90635.jpeg b/civitai/lora_sd_1.5/Figma_Anime_Figures_90635.jpeg index 13c2810..7fe7573 100644 Binary files a/civitai/lora_sd_1.5/Figma_Anime_Figures_90635.jpeg and b/civitai/lora_sd_1.5/Figma_Anime_Figures_90635.jpeg differ diff --git a/civitai/lora_sd_1.5/Final_Fantasy_VII_Remake_Style__Unreal_Engine_4__LoRA_801106.jpeg b/civitai/lora_sd_1.5/Final_Fantasy_VII_Remake_Style__Unreal_Engine_4__LoRA_801106.jpeg index 7fc92d3..d7048bc 100644 Binary files a/civitai/lora_sd_1.5/Final_Fantasy_VII_Remake_Style__Unreal_Engine_4__LoRA_801106.jpeg and b/civitai/lora_sd_1.5/Final_Fantasy_VII_Remake_Style__Unreal_Engine_4__LoRA_801106.jpeg differ diff --git a/civitai/lora_sd_1.5/Fischl___Genshin_Impact___2in1_LoRA___LoCon_243022.jpeg b/civitai/lora_sd_1.5/Fischl___Genshin_Impact___2in1_LoRA___LoCon_243022.jpeg index d47b3bd..7e9e28a 100644 Binary files a/civitai/lora_sd_1.5/Fischl___Genshin_Impact___2in1_LoRA___LoCon_243022.jpeg and b/civitai/lora_sd_1.5/Fischl___Genshin_Impact___2in1_LoRA___LoCon_243022.jpeg differ diff --git a/civitai/lora_sd_1.5/Fishnet_Top___Goofy_Ai_2579639.jpeg b/civitai/lora_sd_1.5/Fishnet_Top___Goofy_Ai_2579639.jpeg index 352d5e8..a1ee9e9 100644 Binary files a/civitai/lora_sd_1.5/Fishnet_Top___Goofy_Ai_2579639.jpeg and b/civitai/lora_sd_1.5/Fishnet_Top___Goofy_Ai_2579639.jpeg differ diff --git a/civitai/lora_sd_1.5/Fitting_Room_1119428.jpeg b/civitai/lora_sd_1.5/Fitting_Room_1119428.jpeg index 60f9889..331d660 100644 Binary files a/civitai/lora_sd_1.5/Fitting_Room_1119428.jpeg and b/civitai/lora_sd_1.5/Fitting_Room_1119428.jpeg differ diff --git a/civitai/lora_sd_1.5/Flashlight_Photography_469901.jpeg b/civitai/lora_sd_1.5/Flashlight_Photography_469901.jpeg index 41c66ee..b1d68e8 100644 Binary files a/civitai/lora_sd_1.5/Flashlight_Photography_469901.jpeg and b/civitai/lora_sd_1.5/Flashlight_Photography_469901.jpeg differ diff --git a/civitai/lora_sd_1.5/Food_Photography__536961.jpeg b/civitai/lora_sd_1.5/Food_Photography__536961.jpeg index 882d706..7160c45 100644 Binary files a/civitai/lora_sd_1.5/Food_Photography__536961.jpeg and b/civitai/lora_sd_1.5/Food_Photography__536961.jpeg differ diff --git a/civitai/lora_sd_1.5/Formidable__Azur_Lane____ๅฏ็•_็ขง่“่ˆช็บฟ__969811.jpeg b/civitai/lora_sd_1.5/Formidable__Azur_Lane____ๅฏ็•_็ขง่“่ˆช็บฟ__969811.jpeg index 0b74ea9..eef01f1 100644 Binary files a/civitai/lora_sd_1.5/Formidable__Azur_Lane____ๅฏ็•_็ขง่“่ˆช็บฟ__969811.jpeg and b/civitai/lora_sd_1.5/Formidable__Azur_Lane____ๅฏ็•_็ขง่“่ˆช็บฟ__969811.jpeg differ diff --git a/civitai/lora_sd_1.5/Frieren__Sousou_no_Frieren__LORA_11471832.jpeg b/civitai/lora_sd_1.5/Frieren__Sousou_no_Frieren__LORA_11471832.jpeg index 3c07326..b60bc70 100644 Binary files a/civitai/lora_sd_1.5/Frieren__Sousou_no_Frieren__LORA_11471832.jpeg and b/civitai/lora_sd_1.5/Frieren__Sousou_no_Frieren__LORA_11471832.jpeg differ diff --git a/civitai/lora_sd_1.5/Frozen_-_Anna_1095680.jpeg b/civitai/lora_sd_1.5/Frozen_-_Anna_1095680.jpeg index 0bf770c..3ebd083 100644 Binary files a/civitai/lora_sd_1.5/Frozen_-_Anna_1095680.jpeg and b/civitai/lora_sd_1.5/Frozen_-_Anna_1095680.jpeg differ diff --git a/civitai/lora_sd_1.5/Frozen_-_Elsa_1192725.jpeg b/civitai/lora_sd_1.5/Frozen_-_Elsa_1192725.jpeg index c049213..8bc0701 100644 Binary files a/civitai/lora_sd_1.5/Frozen_-_Elsa_1192725.jpeg and b/civitai/lora_sd_1.5/Frozen_-_Elsa_1192725.jpeg differ diff --git a/civitai/lora_sd_1.5/Fujiwara_Chika_่—คๅŽŸๅƒ่Šฑ___Kaguya-sama_wa_Kokurasetai_17574282.jpeg b/civitai/lora_sd_1.5/Fujiwara_Chika_่—คๅŽŸๅƒ่Šฑ___Kaguya-sama_wa_Kokurasetai_17574282.jpeg index 9822b8d..fe84199 100644 Binary files a/civitai/lora_sd_1.5/Fujiwara_Chika_่—คๅŽŸๅƒ่Šฑ___Kaguya-sama_wa_Kokurasetai_17574282.jpeg and b/civitai/lora_sd_1.5/Fujiwara_Chika_่—คๅŽŸๅƒ่Šฑ___Kaguya-sama_wa_Kokurasetai_17574282.jpeg differ diff --git a/civitai/lora_sd_1.5/Full_Body_Model_Pose_699080.jpeg b/civitai/lora_sd_1.5/Full_Body_Model_Pose_699080.jpeg index aadecc8..a15dd2f 100644 Binary files a/civitai/lora_sd_1.5/Full_Body_Model_Pose_699080.jpeg and b/civitai/lora_sd_1.5/Full_Body_Model_Pose_699080.jpeg differ diff --git a/civitai/lora_sd_1.5/Funny_creatures_426724.jpeg b/civitai/lora_sd_1.5/Funny_creatures_426724.jpeg index 5b51b79..1f6038d 100644 Binary files a/civitai/lora_sd_1.5/Funny_creatures_426724.jpeg and b/civitai/lora_sd_1.5/Funny_creatures_426724.jpeg differ diff --git a/civitai/lora_sd_1.5/Futuristicbot4_1791523.jpeg b/civitai/lora_sd_1.5/Futuristicbot4_1791523.jpeg index 4248c96..4ab6331 100644 Binary files a/civitai/lora_sd_1.5/Futuristicbot4_1791523.jpeg and b/civitai/lora_sd_1.5/Futuristicbot4_1791523.jpeg differ diff --git a/civitai/lora_sd_1.5/GAME_DEV_TOOLS_03___TOPO_1561754.jpeg b/civitai/lora_sd_1.5/GAME_DEV_TOOLS_03___TOPO_1561754.jpeg index 3372854..7f862af 100644 Binary files a/civitai/lora_sd_1.5/GAME_DEV_TOOLS_03___TOPO_1561754.jpeg and b/civitai/lora_sd_1.5/GAME_DEV_TOOLS_03___TOPO_1561754.jpeg differ diff --git a/civitai/lora_sd_1.5/GHIBLI_Background_1724526.jpeg b/civitai/lora_sd_1.5/GHIBLI_Background_1724526.jpeg index 81a7211..fa26e14 100644 Binary files a/civitai/lora_sd_1.5/GHIBLI_Background_1724526.jpeg and b/civitai/lora_sd_1.5/GHIBLI_Background_1724526.jpeg differ diff --git a/civitai/lora_sd_1.5/Gal_Gadot_LoRa__94322.jpeg b/civitai/lora_sd_1.5/Gal_Gadot_LoRa__94322.jpeg index 3a73c2f..31dd278 100644 Binary files a/civitai/lora_sd_1.5/Gal_Gadot_LoRa__94322.jpeg and b/civitai/lora_sd_1.5/Gal_Gadot_LoRa__94322.jpeg differ diff --git a/civitai/lora_sd_1.5/GameIconResearch_chest_Lora_1086322.jpeg b/civitai/lora_sd_1.5/GameIconResearch_chest_Lora_1086322.jpeg index 7bc4ffa..82e0e1d 100644 Binary files a/civitai/lora_sd_1.5/GameIconResearch_chest_Lora_1086322.jpeg and b/civitai/lora_sd_1.5/GameIconResearch_chest_Lora_1086322.jpeg differ diff --git a/civitai/lora_sd_1.5/Ganyu__Genshin_Impact__-_Realistic___Anime_-_LoRA_173908.jpeg b/civitai/lora_sd_1.5/Ganyu__Genshin_Impact__-_Realistic___Anime_-_LoRA_173908.jpeg index b60bf27..f4fa3b4 100644 Binary files a/civitai/lora_sd_1.5/Ganyu__Genshin_Impact__-_Realistic___Anime_-_LoRA_173908.jpeg and b/civitai/lora_sd_1.5/Ganyu__Genshin_Impact__-_Realistic___Anime_-_LoRA_173908.jpeg differ diff --git a/civitai/lora_sd_1.5/Ganyu___Genshin_Impact_107839.jpeg b/civitai/lora_sd_1.5/Ganyu___Genshin_Impact_107839.jpeg index e88c5c6..dd85c19 100644 Binary files a/civitai/lora_sd_1.5/Ganyu___Genshin_Impact_107839.jpeg and b/civitai/lora_sd_1.5/Ganyu___Genshin_Impact_107839.jpeg differ diff --git a/civitai/lora_sd_1.5/Gawr_Gura__Hololive__6_outfits_2710188.jpeg b/civitai/lora_sd_1.5/Gawr_Gura__Hololive__6_outfits_2710188.jpeg index 04b92c7..3bfca3e 100644 Binary files a/civitai/lora_sd_1.5/Gawr_Gura__Hololive__6_outfits_2710188.jpeg and b/civitai/lora_sd_1.5/Gawr_Gura__Hololive__6_outfits_2710188.jpeg differ diff --git a/civitai/lora_sd_1.5/Genshin_Impact_All_In_One___Character_Lora_43336_1542589.jpeg b/civitai/lora_sd_1.5/Genshin_Impact_All_In_One___Character_Lora_43336_1542589.jpeg index 9a7c276..3e587e1 100644 Binary files a/civitai/lora_sd_1.5/Genshin_Impact_All_In_One___Character_Lora_43336_1542589.jpeg and b/civitai/lora_sd_1.5/Genshin_Impact_All_In_One___Character_Lora_43336_1542589.jpeg differ diff --git a/civitai/lora_sd_1.5/Genshin_Impact_Model_Style_LoRA_116483.jpeg b/civitai/lora_sd_1.5/Genshin_Impact_Model_Style_LoRA_116483.jpeg index d69728c..f12df21 100644 Binary files a/civitai/lora_sd_1.5/Genshin_Impact_Model_Style_LoRA_116483.jpeg and b/civitai/lora_sd_1.5/Genshin_Impact_Model_Style_LoRA_116483.jpeg differ diff --git a/civitai/lora_sd_1.5/Giantess___Concept_1668430.jpeg b/civitai/lora_sd_1.5/Giantess___Concept_1668430.jpeg index 7d1cec5..9f3173e 100644 Binary files a/civitai/lora_sd_1.5/Giantess___Concept_1668430.jpeg and b/civitai/lora_sd_1.5/Giantess___Concept_1668430.jpeg differ diff --git a/civitai/lora_sd_1.5/Gigachad_Diffusion_LoRa__302088.jpeg b/civitai/lora_sd_1.5/Gigachad_Diffusion_LoRa__302088.jpeg index e0febf3..88f09e8 100644 Binary files a/civitai/lora_sd_1.5/Gigachad_Diffusion_LoRa__302088.jpeg and b/civitai/lora_sd_1.5/Gigachad_Diffusion_LoRa__302088.jpeg differ diff --git a/civitai/lora_sd_1.5/GirlfriendMix_v1_564114.jpeg b/civitai/lora_sd_1.5/GirlfriendMix_v1_564114.jpeg index 8f519b0..d454b63 100644 Binary files a/civitai/lora_sd_1.5/GirlfriendMix_v1_564114.jpeg and b/civitai/lora_sd_1.5/GirlfriendMix_v1_564114.jpeg differ diff --git a/civitai/lora_sd_1.5/Girls__Frontline-OTs-14_lightning__75126.jpeg b/civitai/lora_sd_1.5/Girls__Frontline-OTs-14_lightning__75126.jpeg index b1445c9..be0302a 100644 Binary files a/civitai/lora_sd_1.5/Girls__Frontline-OTs-14_lightning__75126.jpeg and b/civitai/lora_sd_1.5/Girls__Frontline-OTs-14_lightning__75126.jpeg differ diff --git a/civitai/lora_sd_1.5/Gloomifier_slider_LECO_1749052.jpeg b/civitai/lora_sd_1.5/Gloomifier_slider_LECO_1749052.jpeg index a48c955..4538f45 100644 Binary files a/civitai/lora_sd_1.5/Gloomifier_slider_LECO_1749052.jpeg and b/civitai/lora_sd_1.5/Gloomifier_slider_LECO_1749052.jpeg differ diff --git a/civitai/lora_sd_1.5/Gloria_ใƒฆใ‚ฆใƒช___Pokemon_416245.jpeg b/civitai/lora_sd_1.5/Gloria_ใƒฆใ‚ฆใƒช___Pokemon_416245.jpeg index 1455605..e9e0026 100644 Binary files a/civitai/lora_sd_1.5/Gloria_ใƒฆใ‚ฆใƒช___Pokemon_416245.jpeg and b/civitai/lora_sd_1.5/Gloria_ใƒฆใ‚ฆใƒช___Pokemon_416245.jpeg differ diff --git a/civitai/lora_sd_1.5/GlowingRunesAI_-_konyconi_1106350.jpeg b/civitai/lora_sd_1.5/GlowingRunesAI_-_konyconi_1106350.jpeg index 6dadf73..7e0f5a3 100644 Binary files a/civitai/lora_sd_1.5/GlowingRunesAI_-_konyconi_1106350.jpeg and b/civitai/lora_sd_1.5/GlowingRunesAI_-_konyconi_1106350.jpeg differ diff --git a/civitai/lora_sd_1.5/Goblins_668627.jpeg b/civitai/lora_sd_1.5/Goblins_668627.jpeg index a8e3311..c56ab49 100644 Binary files a/civitai/lora_sd_1.5/Goblins_668627.jpeg and b/civitai/lora_sd_1.5/Goblins_668627.jpeg differ diff --git a/civitai/lora_sd_1.5/Goth_Gals_2267081.jpeg b/civitai/lora_sd_1.5/Goth_Gals_2267081.jpeg index 23d6525..306898f 100644 Binary files a/civitai/lora_sd_1.5/Goth_Gals_2267081.jpeg and b/civitai/lora_sd_1.5/Goth_Gals_2267081.jpeg differ diff --git a/civitai/lora_sd_1.5/Gothic_Punk_Girl_4342910.jpeg b/civitai/lora_sd_1.5/Gothic_Punk_Girl_4342910.jpeg index df572ed..39b81be 100644 Binary files a/civitai/lora_sd_1.5/Gothic_Punk_Girl_4342910.jpeg and b/civitai/lora_sd_1.5/Gothic_Punk_Girl_4342910.jpeg differ diff --git a/civitai/lora_sd_1.5/Gotoh_Hitori_ๅพŒ่—คใฒใจใ‚Š___Bocchi_the_Rock__530015.jpeg b/civitai/lora_sd_1.5/Gotoh_Hitori_ๅพŒ่—คใฒใจใ‚Š___Bocchi_the_Rock__530015.jpeg index 0ef3e62..beb17c8 100644 Binary files a/civitai/lora_sd_1.5/Gotoh_Hitori_ๅพŒ่—คใฒใจใ‚Š___Bocchi_the_Rock__530015.jpeg and b/civitai/lora_sd_1.5/Gotoh_Hitori_ๅพŒ่—คใฒใจใ‚Š___Bocchi_the_Rock__530015.jpeg differ diff --git a/civitai/lora_sd_1.5/Grabbing_hair_1432676.jpeg b/civitai/lora_sd_1.5/Grabbing_hair_1432676.jpeg index e5c3d25..327a242 100644 Binary files a/civitai/lora_sd_1.5/Grabbing_hair_1432676.jpeg and b/civitai/lora_sd_1.5/Grabbing_hair_1432676.jpeg differ diff --git a/civitai/lora_sd_1.5/Graphic_Novel_-_Style_437025.jpeg b/civitai/lora_sd_1.5/Graphic_Novel_-_Style_437025.jpeg index 53c5f3e..6286cc0 100644 Binary files a/civitai/lora_sd_1.5/Graphic_Novel_-_Style_437025.jpeg and b/civitai/lora_sd_1.5/Graphic_Novel_-_Style_437025.jpeg differ diff --git a/civitai/lora_sd_1.5/Graphic_design_326903.jpeg b/civitai/lora_sd_1.5/Graphic_design_326903.jpeg index 715dc32..b3a96db 100644 Binary files a/civitai/lora_sd_1.5/Graphic_design_326903.jpeg and b/civitai/lora_sd_1.5/Graphic_design_326903.jpeg differ diff --git a/civitai/lora_sd_1.5/Gym_storeroom_832379.jpeg b/civitai/lora_sd_1.5/Gym_storeroom_832379.jpeg index f7e7474..34ef3b9 100644 Binary files a/civitai/lora_sd_1.5/Gym_storeroom_832379.jpeg and b/civitai/lora_sd_1.5/Gym_storeroom_832379.jpeg differ diff --git a/civitai/lora_sd_1.5/Gyokai___ononoimoko__้ญšไป‹___ใŠใฎใฎใ„ใ‚‚ใ“__Art_Style_LoRA_135304.jpeg b/civitai/lora_sd_1.5/Gyokai___ononoimoko__้ญšไป‹___ใŠใฎใฎใ„ใ‚‚ใ“__Art_Style_LoRA_135304.jpeg index 1ef3d1f..be7949b 100644 Binary files a/civitai/lora_sd_1.5/Gyokai___ononoimoko__้ญšไป‹___ใŠใฎใฎใ„ใ‚‚ใ“__Art_Style_LoRA_135304.jpeg and b/civitai/lora_sd_1.5/Gyokai___ononoimoko__้ญšไป‹___ใŠใฎใฎใ„ใ‚‚ใ“__Art_Style_LoRA_135304.jpeg differ diff --git a/civitai/lora_sd_1.5/H_K_HK416_LoRA_152704.jpeg b/civitai/lora_sd_1.5/H_K_HK416_LoRA_152704.jpeg index 92fe9a3..e131e7e 100644 Binary files a/civitai/lora_sd_1.5/H_K_HK416_LoRA_152704.jpeg and b/civitai/lora_sd_1.5/H_K_HK416_LoRA_152704.jpeg differ diff --git a/civitai/lora_sd_1.5/Hair_Length_Slider_-_LoRA_1674079.jpeg b/civitai/lora_sd_1.5/Hair_Length_Slider_-_LoRA_1674079.jpeg index ccf9cfe..571b09f 100644 Binary files a/civitai/lora_sd_1.5/Hair_Length_Slider_-_LoRA_1674079.jpeg and b/civitai/lora_sd_1.5/Hair_Length_Slider_-_LoRA_1674079.jpeg differ diff --git a/civitai/lora_sd_1.5/Hair_Salon_-_by_EDG_971769.jpeg b/civitai/lora_sd_1.5/Hair_Salon_-_by_EDG_971769.jpeg index bc1272d..158ca22 100644 Binary files a/civitai/lora_sd_1.5/Hair_Salon_-_by_EDG_971769.jpeg and b/civitai/lora_sd_1.5/Hair_Salon_-_by_EDG_971769.jpeg differ diff --git a/civitai/lora_sd_1.5/Hair_with_scenery_reflection_725108.jpeg b/civitai/lora_sd_1.5/Hair_with_scenery_reflection_725108.jpeg index 5396d90..3f97747 100644 Binary files a/civitai/lora_sd_1.5/Hair_with_scenery_reflection_725108.jpeg and b/civitai/lora_sd_1.5/Hair_with_scenery_reflection_725108.jpeg differ diff --git a/civitai/lora_sd_1.5/Hairstyles_Collection_1283891.jpeg b/civitai/lora_sd_1.5/Hairstyles_Collection_1283891.jpeg index 2ce8046..55e7eba 100644 Binary files a/civitai/lora_sd_1.5/Hairstyles_Collection_1283891.jpeg and b/civitai/lora_sd_1.5/Hairstyles_Collection_1283891.jpeg differ diff --git a/civitai/lora_sd_1.5/Handsome_Male_2.5D_-_LORA_713313.jpeg b/civitai/lora_sd_1.5/Handsome_Male_2.5D_-_LORA_713313.jpeg index 5e8ecb9..1ab8ecf 100644 Binary files a/civitai/lora_sd_1.5/Handsome_Male_2.5D_-_LORA_713313.jpeg and b/civitai/lora_sd_1.5/Handsome_Male_2.5D_-_LORA_713313.jpeg differ diff --git a/civitai/lora_sd_1.5/Hannah_Owo_179892.jpeg b/civitai/lora_sd_1.5/Hannah_Owo_179892.jpeg index e4e05bf..342752a 100644 Binary files a/civitai/lora_sd_1.5/Hannah_Owo_179892.jpeg and b/civitai/lora_sd_1.5/Hannah_Owo_179892.jpeg differ diff --git a/civitai/lora_sd_1.5/Haruno_Sakura_77268.jpeg b/civitai/lora_sd_1.5/Haruno_Sakura_77268.jpeg index ba4f0d9..817b272 100644 Binary files a/civitai/lora_sd_1.5/Haruno_Sakura_77268.jpeg and b/civitai/lora_sd_1.5/Haruno_Sakura_77268.jpeg differ diff --git a/civitai/lora_sd_1.5/Haruno_Sakura__Naruto__LoRA_76560.jpeg b/civitai/lora_sd_1.5/Haruno_Sakura__Naruto__LoRA_76560.jpeg index 289185b..4324232 100644 Binary files a/civitai/lora_sd_1.5/Haruno_Sakura__Naruto__LoRA_76560.jpeg and b/civitai/lora_sd_1.5/Haruno_Sakura__Naruto__LoRA_76560.jpeg differ diff --git a/civitai/lora_sd_1.5/HashimotoKanna__ๆฉ‹ๆœฌ็’ฐๅฅˆ__JP_Actress_32367011.jpeg b/civitai/lora_sd_1.5/HashimotoKanna__ๆฉ‹ๆœฌ็’ฐๅฅˆ__JP_Actress_32367011.jpeg index 86df611..0986f55 100644 Binary files a/civitai/lora_sd_1.5/HashimotoKanna__ๆฉ‹ๆœฌ็’ฐๅฅˆ__JP_Actress_32367011.jpeg and b/civitai/lora_sd_1.5/HashimotoKanna__ๆฉ‹ๆœฌ็’ฐๅฅˆ__JP_Actress_32367011.jpeg differ diff --git a/civitai/lora_sd_1.5/Hatsune_Miku_ๅˆ้ŸณใƒŸใ‚ฏ___23_Outfits___Character_Lora_9289_972495.jpeg b/civitai/lora_sd_1.5/Hatsune_Miku_ๅˆ้ŸณใƒŸใ‚ฏ___23_Outfits___Character_Lora_9289_972495.jpeg index bc6e82b..f39e241 100644 Binary files a/civitai/lora_sd_1.5/Hatsune_Miku_ๅˆ้ŸณใƒŸใ‚ฏ___23_Outfits___Character_Lora_9289_972495.jpeg and b/civitai/lora_sd_1.5/Hatsune_Miku_ๅˆ้ŸณใƒŸใ‚ฏ___23_Outfits___Character_Lora_9289_972495.jpeg differ diff --git a/civitai/lora_sd_1.5/Haute_Couture_-_by_EDG_6107500.jpeg b/civitai/lora_sd_1.5/Haute_Couture_-_by_EDG_6107500.jpeg index e6fa0ab..04fd3a9 100644 Binary files a/civitai/lora_sd_1.5/Haute_Couture_-_by_EDG_6107500.jpeg and b/civitai/lora_sd_1.5/Haute_Couture_-_by_EDG_6107500.jpeg differ diff --git a/civitai/lora_sd_1.5/Haute_Couture___Pencil_Dresses_6057624.jpeg b/civitai/lora_sd_1.5/Haute_Couture___Pencil_Dresses_6057624.jpeg index 118ebed..40af32c 100644 Binary files a/civitai/lora_sd_1.5/Haute_Couture___Pencil_Dresses_6057624.jpeg and b/civitai/lora_sd_1.5/Haute_Couture___Pencil_Dresses_6057624.jpeg differ diff --git a/civitai/lora_sd_1.5/Hayasaka_Ai_ๆ—ฉๅ‚ๆ„›___Kaguya-sama_wa_Kokurasetai_1776739.jpeg b/civitai/lora_sd_1.5/Hayasaka_Ai_ๆ—ฉๅ‚ๆ„›___Kaguya-sama_wa_Kokurasetai_1776739.jpeg index 1c9a546..c20f4b1 100644 Binary files a/civitai/lora_sd_1.5/Hayasaka_Ai_ๆ—ฉๅ‚ๆ„›___Kaguya-sama_wa_Kokurasetai_1776739.jpeg and b/civitai/lora_sd_1.5/Hayasaka_Ai_ๆ—ฉๅ‚ๆ„›___Kaguya-sama_wa_Kokurasetai_1776739.jpeg differ diff --git a/civitai/lora_sd_1.5/Hayase_Nagatoro____Don_t_Toy_With_Me__Miss_Nagatoro_3530164.jpeg b/civitai/lora_sd_1.5/Hayase_Nagatoro____Don_t_Toy_With_Me__Miss_Nagatoro_3530164.jpeg index 1693b9f..14292e6 100644 Binary files a/civitai/lora_sd_1.5/Hayase_Nagatoro____Don_t_Toy_With_Me__Miss_Nagatoro_3530164.jpeg and b/civitai/lora_sd_1.5/Hayase_Nagatoro____Don_t_Toy_With_Me__Miss_Nagatoro_3530164.jpeg differ diff --git a/civitai/lora_sd_1.5/Headpat_POV___Concept_LoRA_2888602.jpeg b/civitai/lora_sd_1.5/Headpat_POV___Concept_LoRA_2888602.jpeg index 6492050..984d512 100644 Binary files a/civitai/lora_sd_1.5/Headpat_POV___Concept_LoRA_2888602.jpeg and b/civitai/lora_sd_1.5/Headpat_POV___Concept_LoRA_2888602.jpeg differ diff --git a/civitai/lora_sd_1.5/Helltaker_LoRA_143007.jpeg b/civitai/lora_sd_1.5/Helltaker_LoRA_143007.jpeg index 729e45c..77d47a0 100644 Binary files a/civitai/lora_sd_1.5/Helltaker_LoRA_143007.jpeg and b/civitai/lora_sd_1.5/Helltaker_LoRA_143007.jpeg differ diff --git a/civitai/lora_sd_1.5/High-waist_denim_shorts_1877072.jpeg b/civitai/lora_sd_1.5/High-waist_denim_shorts_1877072.jpeg index 2c10390..2493a2c 100644 Binary files a/civitai/lora_sd_1.5/High-waist_denim_shorts_1877072.jpeg and b/civitai/lora_sd_1.5/High-waist_denim_shorts_1877072.jpeg differ diff --git a/civitai/lora_sd_1.5/High-waist_jeans_1884382.jpeg b/civitai/lora_sd_1.5/High-waist_jeans_1884382.jpeg index f787eab..c581d65 100644 Binary files a/civitai/lora_sd_1.5/High-waist_jeans_1884382.jpeg and b/civitai/lora_sd_1.5/High-waist_jeans_1884382.jpeg differ diff --git a/civitai/lora_sd_1.5/Higuchi_Madoka_ๆจ‹ๅฃๅ††้ฆ™___THE_iDOLM_STER_ShinyColors_394423.jpeg b/civitai/lora_sd_1.5/Higuchi_Madoka_ๆจ‹ๅฃๅ††้ฆ™___THE_iDOLM_STER_ShinyColors_394423.jpeg index 216c0f4..b46ef40 100644 Binary files a/civitai/lora_sd_1.5/Higuchi_Madoka_ๆจ‹ๅฃๅ††้ฆ™___THE_iDOLM_STER_ShinyColors_394423.jpeg and b/civitai/lora_sd_1.5/Higuchi_Madoka_ๆจ‹ๅฃๅ††้ฆ™___THE_iDOLM_STER_ShinyColors_394423.jpeg differ diff --git a/civitai/lora_sd_1.5/Hinata_Hyuuga_LoRA_43573.jpeg b/civitai/lora_sd_1.5/Hinata_Hyuuga_LoRA_43573.jpeg index 6eea0f4..57f46ff 100644 Binary files a/civitai/lora_sd_1.5/Hinata_Hyuuga_LoRA_43573.jpeg and b/civitai/lora_sd_1.5/Hinata_Hyuuga_LoRA_43573.jpeg differ diff --git a/civitai/lora_sd_1.5/Hinata___Hinata_Hyลซga__ๆ—ฅๅ‘_ใƒ’ใƒŠใ‚ฟ______Boruto__Naruto_Next_Generations__693585.jpeg b/civitai/lora_sd_1.5/Hinata___Hinata_Hyลซga__ๆ—ฅๅ‘_ใƒ’ใƒŠใ‚ฟ______Boruto__Naruto_Next_Generations__693585.jpeg index 6512f09..16d4169 100644 Binary files a/civitai/lora_sd_1.5/Hinata___Hinata_Hyลซga__ๆ—ฅๅ‘_ใƒ’ใƒŠใ‚ฟ______Boruto__Naruto_Next_Generations__693585.jpeg and b/civitai/lora_sd_1.5/Hinata___Hinata_Hyลซga__ๆ—ฅๅ‘_ใƒ’ใƒŠใ‚ฟ______Boruto__Naruto_Next_Generations__693585.jpeg differ diff --git a/civitai/lora_sd_1.5/Hipoly_3D_Model_LoRA_485327.jpeg b/civitai/lora_sd_1.5/Hipoly_3D_Model_LoRA_485327.jpeg index adc773b..78e396f 100644 Binary files a/civitai/lora_sd_1.5/Hipoly_3D_Model_LoRA_485327.jpeg and b/civitai/lora_sd_1.5/Hipoly_3D_Model_LoRA_485327.jpeg differ diff --git a/civitai/lora_sd_1.5/HongKongDollLikeness_237682.jpeg b/civitai/lora_sd_1.5/HongKongDollLikeness_237682.jpeg index 25ca2c7..de34935 100644 Binary files a/civitai/lora_sd_1.5/HongKongDollLikeness_237682.jpeg and b/civitai/lora_sd_1.5/HongKongDollLikeness_237682.jpeg differ diff --git a/civitai/lora_sd_1.5/Honkai_Star_Rail-Bronya.Rand_193970.jpeg b/civitai/lora_sd_1.5/Honkai_Star_Rail-Bronya.Rand_193970.jpeg index 0313a60..3a735f6 100644 Binary files a/civitai/lora_sd_1.5/Honkai_Star_Rail-Bronya.Rand_193970.jpeg and b/civitai/lora_sd_1.5/Honkai_Star_Rail-Bronya.Rand_193970.jpeg differ diff --git a/civitai/lora_sd_1.5/Hoshino_Ai___ๆ˜Ÿ้‡Ž_ใ‚ขใ‚ค__Oshi_No_Ko___ๆŽจใ—ใฎๅญ_561100.jpeg b/civitai/lora_sd_1.5/Hoshino_Ai___ๆ˜Ÿ้‡Ž_ใ‚ขใ‚ค__Oshi_No_Ko___ๆŽจใ—ใฎๅญ_561100.jpeg index e1d959e..d864e48 100644 Binary files a/civitai/lora_sd_1.5/Hoshino_Ai___ๆ˜Ÿ้‡Ž_ใ‚ขใ‚ค__Oshi_No_Ko___ๆŽจใ—ใฎๅญ_561100.jpeg and b/civitai/lora_sd_1.5/Hoshino_Ai___ๆ˜Ÿ้‡Ž_ใ‚ขใ‚ค__Oshi_No_Ko___ๆŽจใ—ใฎๅญ_561100.jpeg differ diff --git a/civitai/lora_sd_1.5/Houshou_Marine__5_Outfits____Hololive_556784.jpeg b/civitai/lora_sd_1.5/Houshou_Marine__5_Outfits____Hololive_556784.jpeg index baeab42..fc12bae 100644 Binary files a/civitai/lora_sd_1.5/Houshou_Marine__5_Outfits____Hololive_556784.jpeg and b/civitai/lora_sd_1.5/Houshou_Marine__5_Outfits____Hololive_556784.jpeg differ diff --git a/civitai/lora_sd_1.5/Howls_Moving_Castle___Interior___Scenery_LoRA___Ghibli_Style___v3_211327.jpeg b/civitai/lora_sd_1.5/Howls_Moving_Castle___Interior___Scenery_LoRA___Ghibli_Style___v3_211327.jpeg index 6901ae8..37c0c81 100644 Binary files a/civitai/lora_sd_1.5/Howls_Moving_Castle___Interior___Scenery_LoRA___Ghibli_Style___v3_211327.jpeg and b/civitai/lora_sd_1.5/Howls_Moving_Castle___Interior___Scenery_LoRA___Ghibli_Style___v3_211327.jpeg differ diff --git a/civitai/lora_sd_1.5/Hu_Tao___Genshin_Impact_385577.jpeg b/civitai/lora_sd_1.5/Hu_Tao___Genshin_Impact_385577.jpeg index 0967189..17fd968 100644 Binary files a/civitai/lora_sd_1.5/Hu_Tao___Genshin_Impact_385577.jpeg and b/civitai/lora_sd_1.5/Hu_Tao___Genshin_Impact_385577.jpeg differ diff --git a/civitai/lora_sd_1.5/Hyper_detailer_3713460.jpeg b/civitai/lora_sd_1.5/Hyper_detailer_3713460.jpeg index ceb99d2..bbdec07 100644 Binary files a/civitai/lora_sd_1.5/Hyper_detailer_3713460.jpeg and b/civitai/lora_sd_1.5/Hyper_detailer_3713460.jpeg differ diff --git a/civitai/lora_sd_1.5/IU_192323.jpeg b/civitai/lora_sd_1.5/IU_192323.jpeg index 1f1c62f..f54e69b 100644 Binary files a/civitai/lora_sd_1.5/IU_192323.jpeg and b/civitai/lora_sd_1.5/IU_192323.jpeg differ diff --git a/civitai/lora_sd_1.5/Idol_costume___ๅถๅƒๆ‰“ๆญŒๆœ___ใ‚ขใ‚คใƒ‰ใƒซ่กฃ่ฃ…_12164566.jpeg b/civitai/lora_sd_1.5/Idol_costume___ๅถๅƒๆ‰“ๆญŒๆœ___ใ‚ขใ‚คใƒ‰ใƒซ่กฃ่ฃ…_12164566.jpeg index cf9946d..335acc9 100644 Binary files a/civitai/lora_sd_1.5/Idol_costume___ๅถๅƒๆ‰“ๆญŒๆœ___ใ‚ขใ‚คใƒ‰ใƒซ่กฃ่ฃ…_12164566.jpeg and b/civitai/lora_sd_1.5/Idol_costume___ๅถๅƒๆ‰“ๆญŒๆœ___ใ‚ขใ‚คใƒ‰ใƒซ่กฃ่ฃ…_12164566.jpeg differ diff --git a/civitai/lora_sd_1.5/Illyasviel_von_Einzbern_22_outfits__Fate__ไผŠ่މ้›…_22ๅฅ—ๅค–่ง‚_LoRA_606722.jpeg b/civitai/lora_sd_1.5/Illyasviel_von_Einzbern_22_outfits__Fate__ไผŠ่މ้›…_22ๅฅ—ๅค–่ง‚_LoRA_606722.jpeg index c92786e..d59c01a 100644 Binary files a/civitai/lora_sd_1.5/Illyasviel_von_Einzbern_22_outfits__Fate__ไผŠ่މ้›…_22ๅฅ—ๅค–่ง‚_LoRA_606722.jpeg and b/civitai/lora_sd_1.5/Illyasviel_von_Einzbern_22_outfits__Fate__ไผŠ่މ้›…_22ๅฅ—ๅค–่ง‚_LoRA_606722.jpeg differ diff --git a/civitai/lora_sd_1.5/Illyasviel_von_Einzbern_ใ‚คใƒชใƒคใ‚นใƒ•ใ‚ฃใƒผใƒซ_ใƒ•ใ‚ฉใƒณ_ใ‚ขใ‚คใƒณใƒ„ใƒ™ใƒซใƒณ___Fate_kaleid_liner_Prisma_Illya_2790614.jpeg b/civitai/lora_sd_1.5/Illyasviel_von_Einzbern_ใ‚คใƒชใƒคใ‚นใƒ•ใ‚ฃใƒผใƒซ_ใƒ•ใ‚ฉใƒณ_ใ‚ขใ‚คใƒณใƒ„ใƒ™ใƒซใƒณ___Fate_kaleid_liner_Prisma_Illya_2790614.jpeg index e9b1350..1a3d73a 100644 Binary files a/civitai/lora_sd_1.5/Illyasviel_von_Einzbern_ใ‚คใƒชใƒคใ‚นใƒ•ใ‚ฃใƒผใƒซ_ใƒ•ใ‚ฉใƒณ_ใ‚ขใ‚คใƒณใƒ„ใƒ™ใƒซใƒณ___Fate_kaleid_liner_Prisma_Illya_2790614.jpeg and b/civitai/lora_sd_1.5/Illyasviel_von_Einzbern_ใ‚คใƒชใƒคใ‚นใƒ•ใ‚ฃใƒผใƒซ_ใƒ•ใ‚ฉใƒณ_ใ‚ขใ‚คใƒณใƒ„ใƒ™ใƒซใƒณ___Fate_kaleid_liner_Prisma_Illya_2790614.jpeg differ diff --git a/civitai/lora_sd_1.5/Industrial_Machines_688854.jpeg b/civitai/lora_sd_1.5/Industrial_Machines_688854.jpeg index 984b736..5044aad 100644 Binary files a/civitai/lora_sd_1.5/Industrial_Machines_688854.jpeg and b/civitai/lora_sd_1.5/Industrial_Machines_688854.jpeg differ diff --git a/civitai/lora_sd_1.5/Infirmary_839351.jpeg b/civitai/lora_sd_1.5/Infirmary_839351.jpeg index ceb9075..4f22fd7 100644 Binary files a/civitai/lora_sd_1.5/Infirmary_839351.jpeg and b/civitai/lora_sd_1.5/Infirmary_839351.jpeg differ diff --git a/civitai/lora_sd_1.5/Ink_scenery___ๆฐดๅขจๅฑฑๆฐด_940385.jpeg b/civitai/lora_sd_1.5/Ink_scenery___ๆฐดๅขจๅฑฑๆฐด_940385.jpeg index a615bdd..c985188 100644 Binary files a/civitai/lora_sd_1.5/Ink_scenery___ๆฐดๅขจๅฑฑๆฐด_940385.jpeg and b/civitai/lora_sd_1.5/Ink_scenery___ๆฐดๅขจๅฑฑๆฐด_940385.jpeg differ diff --git a/civitai/lora_sd_1.5/Invisible_concept_lora_985633.jpeg b/civitai/lora_sd_1.5/Invisible_concept_lora_985633.jpeg index a0a2720..643b8ba 100644 Binary files a/civitai/lora_sd_1.5/Invisible_concept_lora_985633.jpeg and b/civitai/lora_sd_1.5/Invisible_concept_lora_985633.jpeg differ diff --git a/civitai/lora_sd_1.5/Iono___Pokemon_323131.jpeg b/civitai/lora_sd_1.5/Iono___Pokemon_323131.jpeg index 6189851..e7f00ae 100644 Binary files a/civitai/lora_sd_1.5/Iono___Pokemon_323131.jpeg and b/civitai/lora_sd_1.5/Iono___Pokemon_323131.jpeg differ diff --git a/civitai/lora_sd_1.5/Irene_212371.jpeg b/civitai/lora_sd_1.5/Irene_212371.jpeg index 312aeda..501f57c 100644 Binary files a/civitai/lora_sd_1.5/Irene_212371.jpeg and b/civitai/lora_sd_1.5/Irene_212371.jpeg differ diff --git a/civitai/lora_sd_1.5/Ishikei_็Ÿณๆต__artist__1483057.jpeg b/civitai/lora_sd_1.5/Ishikei_็Ÿณๆต__artist__1483057.jpeg index 54b9916..b92f33d 100644 Binary files a/civitai/lora_sd_1.5/Ishikei_็Ÿณๆต__artist__1483057.jpeg and b/civitai/lora_sd_1.5/Ishikei_็Ÿณๆต__artist__1483057.jpeg differ diff --git a/civitai/lora_sd_1.5/Isometric_Chinese_style_Architecture_LoRa_756196.jpeg b/civitai/lora_sd_1.5/Isometric_Chinese_style_Architecture_LoRa_756196.jpeg index 1bdc44f..4490fb9 100644 Binary files a/civitai/lora_sd_1.5/Isometric_Chinese_style_Architecture_LoRa_756196.jpeg and b/civitai/lora_sd_1.5/Isometric_Chinese_style_Architecture_LoRa_756196.jpeg differ diff --git a/civitai/lora_sd_1.5/IvoryGoldAI_-_konyconi_902428.jpeg b/civitai/lora_sd_1.5/IvoryGoldAI_-_konyconi_902428.jpeg index 907227c..0cda8de 100644 Binary files a/civitai/lora_sd_1.5/IvoryGoldAI_-_konyconi_902428.jpeg and b/civitai/lora_sd_1.5/IvoryGoldAI_-_konyconi_902428.jpeg differ diff --git a/civitai/lora_sd_1.5/JK_Style_87443.jpeg b/civitai/lora_sd_1.5/JK_Style_87443.jpeg index 6b969f2..831028a 100644 Binary files a/civitai/lora_sd_1.5/JK_Style_87443.jpeg and b/civitai/lora_sd_1.5/JK_Style_87443.jpeg differ diff --git a/civitai/lora_sd_1.5/JK_uniform_536396.jpeg b/civitai/lora_sd_1.5/JK_uniform_536396.jpeg index 4c0e334..89d69e4 100644 Binary files a/civitai/lora_sd_1.5/JK_uniform_536396.jpeg and b/civitai/lora_sd_1.5/JK_uniform_536396.jpeg differ diff --git a/civitai/lora_sd_1.5/JR_East_E235_series___train_interior_5491315.jpeg b/civitai/lora_sd_1.5/JR_East_E235_series___train_interior_5491315.jpeg index e0de106..d2d3b7c 100644 Binary files a/civitai/lora_sd_1.5/JR_East_E235_series___train_interior_5491315.jpeg and b/civitai/lora_sd_1.5/JR_East_E235_series___train_interior_5491315.jpeg differ diff --git a/civitai/lora_sd_1.5/Jang_Won-young_240111.jpeg b/civitai/lora_sd_1.5/Jang_Won-young_240111.jpeg index 8a6d662..54fbf75 100644 Binary files a/civitai/lora_sd_1.5/Jang_Won-young_240111.jpeg and b/civitai/lora_sd_1.5/Jang_Won-young_240111.jpeg differ diff --git a/civitai/lora_sd_1.5/Japan_Vibes_-_Film_color_1342154.jpeg b/civitai/lora_sd_1.5/Japan_Vibes_-_Film_color_1342154.jpeg index bec490d..a158e23 100644 Binary files a/civitai/lora_sd_1.5/Japan_Vibes_-_Film_color_1342154.jpeg and b/civitai/lora_sd_1.5/Japan_Vibes_-_Film_color_1342154.jpeg differ diff --git a/civitai/lora_sd_1.5/Japanese_coser_mix_1718304.jpeg b/civitai/lora_sd_1.5/Japanese_coser_mix_1718304.jpeg index a0920db..9a4ab07 100644 Binary files a/civitai/lora_sd_1.5/Japanese_coser_mix_1718304.jpeg and b/civitai/lora_sd_1.5/Japanese_coser_mix_1718304.jpeg differ diff --git a/civitai/lora_sd_1.5/Jennie_Blackpink_97434.jpeg b/civitai/lora_sd_1.5/Jennie_Blackpink_97434.jpeg index 2303f68..7a82344 100644 Binary files a/civitai/lora_sd_1.5/Jennie_Blackpink_97434.jpeg and b/civitai/lora_sd_1.5/Jennie_Blackpink_97434.jpeg differ diff --git a/civitai/lora_sd_1.5/Jessie_pokemon___Goofy_Ai_2371710.jpeg b/civitai/lora_sd_1.5/Jessie_pokemon___Goofy_Ai_2371710.jpeg index fd71140..e6fa95f 100644 Binary files a/civitai/lora_sd_1.5/Jessie_pokemon___Goofy_Ai_2371710.jpeg and b/civitai/lora_sd_1.5/Jessie_pokemon___Goofy_Ai_2371710.jpeg differ diff --git a/civitai/lora_sd_1.5/Jim_Lee__DC_Comics___Marvel__Style_LoRA_102779.jpeg b/civitai/lora_sd_1.5/Jim_Lee__DC_Comics___Marvel__Style_LoRA_102779.jpeg index 73e639e..059e18f 100644 Binary files a/civitai/lora_sd_1.5/Jim_Lee__DC_Comics___Marvel__Style_LoRA_102779.jpeg and b/civitai/lora_sd_1.5/Jim_Lee__DC_Comics___Marvel__Style_LoRA_102779.jpeg differ diff --git a/civitai/lora_sd_1.5/Jinx_League_of_legends_131190.jpeg b/civitai/lora_sd_1.5/Jinx_League_of_legends_131190.jpeg index 618216c..e4a6af9 100644 Binary files a/civitai/lora_sd_1.5/Jinx_League_of_legends_131190.jpeg and b/civitai/lora_sd_1.5/Jinx_League_of_legends_131190.jpeg differ diff --git a/civitai/lora_sd_1.5/Jiyeon_157861.jpeg b/civitai/lora_sd_1.5/Jiyeon_157861.jpeg index 7d2bb7c..62f8aa2 100644 Binary files a/civitai/lora_sd_1.5/Jiyeon_157861.jpeg and b/civitai/lora_sd_1.5/Jiyeon_157861.jpeg differ diff --git a/civitai/lora_sd_1.5/KIDS_ILLUSTRATION_757211.jpeg b/civitai/lora_sd_1.5/KIDS_ILLUSTRATION_757211.jpeg index 2889ed7..95aa939 100644 Binary files a/civitai/lora_sd_1.5/KIDS_ILLUSTRATION_757211.jpeg and b/civitai/lora_sd_1.5/KIDS_ILLUSTRATION_757211.jpeg differ diff --git a/civitai/lora_sd_1.5/Kabedon_POV___ๅฃใƒ‰ใƒณ___ๅฃๅ’š_113017.jpeg b/civitai/lora_sd_1.5/Kabedon_POV___ๅฃใƒ‰ใƒณ___ๅฃๅ’š_113017.jpeg index 30412b2..549fb32 100644 Binary files a/civitai/lora_sd_1.5/Kabedon_POV___ๅฃใƒ‰ใƒณ___ๅฃๅ’š_113017.jpeg and b/civitai/lora_sd_1.5/Kabedon_POV___ๅฃใƒ‰ใƒณ___ๅฃๅ’š_113017.jpeg differ diff --git a/civitai/lora_sd_1.5/Kabedon_receiver_s_POV___ๅฃใƒ‰ใƒณ___่ขซๅฃๅ’š_112947.jpeg b/civitai/lora_sd_1.5/Kabedon_receiver_s_POV___ๅฃใƒ‰ใƒณ___่ขซๅฃๅ’š_112947.jpeg index 41aa163..bad92d1 100644 Binary files a/civitai/lora_sd_1.5/Kabedon_receiver_s_POV___ๅฃใƒ‰ใƒณ___่ขซๅฃๅ’š_112947.jpeg and b/civitai/lora_sd_1.5/Kabedon_receiver_s_POV___ๅฃใƒ‰ใƒณ___่ขซๅฃๅ’š_112947.jpeg differ diff --git a/civitai/lora_sd_1.5/Kamisato_Ayaka__Springbloom_Missive____Genshin_Impact___3in1_LoRA_145276.jpeg b/civitai/lora_sd_1.5/Kamisato_Ayaka__Springbloom_Missive____Genshin_Impact___3in1_LoRA_145276.jpeg index 7a3ab4b..db89014 100644 Binary files a/civitai/lora_sd_1.5/Kamisato_Ayaka__Springbloom_Missive____Genshin_Impact___3in1_LoRA_145276.jpeg and b/civitai/lora_sd_1.5/Kamisato_Ayaka__Springbloom_Missive____Genshin_Impact___3in1_LoRA_145276.jpeg differ diff --git a/civitai/lora_sd_1.5/Kamisato_Ayaka___็ฅž้‡Œ็ถพ่ฏ__Genshin_Impact__105304.jpeg b/civitai/lora_sd_1.5/Kamisato_Ayaka___็ฅž้‡Œ็ถพ่ฏ__Genshin_Impact__105304.jpeg index fc61bd2..39ca95d 100644 Binary files a/civitai/lora_sd_1.5/Kamisato_Ayaka___็ฅž้‡Œ็ถพ่ฏ__Genshin_Impact__105304.jpeg and b/civitai/lora_sd_1.5/Kamisato_Ayaka___็ฅž้‡Œ็ถพ่ฏ__Genshin_Impact__105304.jpeg differ diff --git a/civitai/lora_sd_1.5/Kantoku_ใ‚ซใƒณใƒˆใ‚ฏ__artist__1735302.jpeg b/civitai/lora_sd_1.5/Kantoku_ใ‚ซใƒณใƒˆใ‚ฏ__artist__1735302.jpeg index ff5a120..f7f41f1 100644 Binary files a/civitai/lora_sd_1.5/Kantoku_ใ‚ซใƒณใƒˆใ‚ฏ__artist__1735302.jpeg and b/civitai/lora_sd_1.5/Kantoku_ใ‚ซใƒณใƒˆใ‚ฏ__artist__1735302.jpeg differ diff --git a/civitai/lora_sd_1.5/Karina_Makina_Lora_6883150.jpeg b/civitai/lora_sd_1.5/Karina_Makina_Lora_6883150.jpeg index d2f8c32..f8079ed 100644 Binary files a/civitai/lora_sd_1.5/Karina_Makina_Lora_6883150.jpeg and b/civitai/lora_sd_1.5/Karina_Makina_Lora_6883150.jpeg differ diff --git a/civitai/lora_sd_1.5/Kasumigaoka_Utaha_้œžใƒถไธ˜่ฉฉ็พฝ___SAEKANO_6821388.jpeg b/civitai/lora_sd_1.5/Kasumigaoka_Utaha_้œžใƒถไธ˜่ฉฉ็พฝ___SAEKANO_6821388.jpeg index 7bb60c5..8fd2a3c 100644 Binary files a/civitai/lora_sd_1.5/Kasumigaoka_Utaha_้œžใƒถไธ˜่ฉฉ็พฝ___SAEKANO_6821388.jpeg and b/civitai/lora_sd_1.5/Kasumigaoka_Utaha_้œžใƒถไธ˜่ฉฉ็พฝ___SAEKANO_6821388.jpeg differ diff --git a/civitai/lora_sd_1.5/Keqing___Genshin_Impact___3in1_LoRA___LoCon_191719.jpeg b/civitai/lora_sd_1.5/Keqing___Genshin_Impact___3in1_LoRA___LoCon_191719.jpeg index 9ea7b03..98ec3e0 100644 Binary files a/civitai/lora_sd_1.5/Keqing___Genshin_Impact___3in1_LoRA___LoCon_191719.jpeg and b/civitai/lora_sd_1.5/Keqing___Genshin_Impact___3in1_LoRA___LoCon_191719.jpeg differ diff --git a/civitai/lora_sd_1.5/Kim_Hyung-Tae_style_-_LORA_170295.jpeg b/civitai/lora_sd_1.5/Kim_Hyung-Tae_style_-_LORA_170295.jpeg index c2815d0..46e3637 100644 Binary files a/civitai/lora_sd_1.5/Kim_Hyung-Tae_style_-_LORA_170295.jpeg and b/civitai/lora_sd_1.5/Kim_Hyung-Tae_style_-_LORA_170295.jpeg differ diff --git a/civitai/lora_sd_1.5/Kitagawa_Marin_ๅ–œๅคšๅทๆตทๅคข___Sono_Bisque_Doll_wa_Koi_wo_Suru_1170580.jpeg b/civitai/lora_sd_1.5/Kitagawa_Marin_ๅ–œๅคšๅทๆตทๅคข___Sono_Bisque_Doll_wa_Koi_wo_Suru_1170580.jpeg index e1c5460..42500f3 100644 Binary files a/civitai/lora_sd_1.5/Kitagawa_Marin_ๅ–œๅคšๅทๆตทๅคข___Sono_Bisque_Doll_wa_Koi_wo_Suru_1170580.jpeg and b/civitai/lora_sd_1.5/Kitagawa_Marin_ๅ–œๅคšๅทๆตทๅคข___Sono_Bisque_Doll_wa_Koi_wo_Suru_1170580.jpeg differ diff --git a/civitai/lora_sd_1.5/Kitchen_Apron_-_Naked___Not_Naked_778390.jpeg b/civitai/lora_sd_1.5/Kitchen_Apron_-_Naked___Not_Naked_778390.jpeg index 0c679f5..c76d480 100644 Binary files a/civitai/lora_sd_1.5/Kitchen_Apron_-_Naked___Not_Naked_778390.jpeg and b/civitai/lora_sd_1.5/Kitchen_Apron_-_Naked___Not_Naked_778390.jpeg differ diff --git a/civitai/lora_sd_1.5/Kokkoro___ใ‚ณใƒƒใ‚ณใƒญ_328112.jpeg b/civitai/lora_sd_1.5/Kokkoro___ใ‚ณใƒƒใ‚ณใƒญ_328112.jpeg index c25602b..7bf7993 100644 Binary files a/civitai/lora_sd_1.5/Kokkoro___ใ‚ณใƒƒใ‚ณใƒญ_328112.jpeg and b/civitai/lora_sd_1.5/Kokkoro___ใ‚ณใƒƒใ‚ณใƒญ_328112.jpeg differ diff --git a/civitai/lora_sd_1.5/Komowata_Haruka__ใ“ใ‚‚ใ‚ใŸ้™่ฏ__Chibi_Art_Style_LoRA_141318.jpeg b/civitai/lora_sd_1.5/Komowata_Haruka__ใ“ใ‚‚ใ‚ใŸ้™่ฏ__Chibi_Art_Style_LoRA_141318.jpeg index c1c34f9..eee29c1 100644 Binary files a/civitai/lora_sd_1.5/Komowata_Haruka__ใ“ใ‚‚ใ‚ใŸ้™่ฏ__Chibi_Art_Style_LoRA_141318.jpeg and b/civitai/lora_sd_1.5/Komowata_Haruka__ใ“ใ‚‚ใ‚ใŸ้™่ฏ__Chibi_Art_Style_LoRA_141318.jpeg differ diff --git a/civitai/lora_sd_1.5/LASER_-_้•ญๅฐ„่กฃ_1286792.jpeg b/civitai/lora_sd_1.5/LASER_-_้•ญๅฐ„่กฃ_1286792.jpeg index 11bd92c..27a9184 100644 Binary files a/civitai/lora_sd_1.5/LASER_-_้•ญๅฐ„่กฃ_1286792.jpeg and b/civitai/lora_sd_1.5/LASER_-_้•ญๅฐ„่กฃ_1286792.jpeg differ diff --git a/civitai/lora_sd_1.5/LEOSAM_s_Clothing___-__Adjuster__่กฃ็‰ฉๅขž_ๅ‡__LoRA_1546057.jpeg b/civitai/lora_sd_1.5/LEOSAM_s_Clothing___-__Adjuster__่กฃ็‰ฉๅขž_ๅ‡__LoRA_1546057.jpeg index a04a902..6054e76 100644 Binary files a/civitai/lora_sd_1.5/LEOSAM_s_Clothing___-__Adjuster__่กฃ็‰ฉๅขž_ๅ‡__LoRA_1546057.jpeg and b/civitai/lora_sd_1.5/LEOSAM_s_Clothing___-__Adjuster__่กฃ็‰ฉๅขž_ๅ‡__LoRA_1546057.jpeg differ diff --git a/civitai/lora_sd_1.5/LEOSAM_s_EVA_ๆ–ฐไธ–็ด€ใ‚จใƒดใ‚กใƒณใ‚ฒใƒชใ‚ชใƒณ_ๆ–ฐไธ–็บช็ฆ้Ÿณๆˆ˜ๅฃซ_Neon_Genesis_EVANGELION_LoRA_1628232.jpeg b/civitai/lora_sd_1.5/LEOSAM_s_EVA_ๆ–ฐไธ–็ด€ใ‚จใƒดใ‚กใƒณใ‚ฒใƒชใ‚ชใƒณ_ๆ–ฐไธ–็บช็ฆ้Ÿณๆˆ˜ๅฃซ_Neon_Genesis_EVANGELION_LoRA_1628232.jpeg index c07f56a..0e3ffa4 100644 Binary files a/civitai/lora_sd_1.5/LEOSAM_s_EVA_ๆ–ฐไธ–็ด€ใ‚จใƒดใ‚กใƒณใ‚ฒใƒชใ‚ชใƒณ_ๆ–ฐไธ–็บช็ฆ้Ÿณๆˆ˜ๅฃซ_Neon_Genesis_EVANGELION_LoRA_1628232.jpeg and b/civitai/lora_sd_1.5/LEOSAM_s_EVA_ๆ–ฐไธ–็ด€ใ‚จใƒดใ‚กใƒณใ‚ฒใƒชใ‚ชใƒณ_ๆ–ฐไธ–็บช็ฆ้Ÿณๆˆ˜ๅฃซ_Neon_Genesis_EVANGELION_LoRA_1628232.jpeg differ diff --git a/civitai/lora_sd_1.5/LEOSAM_s_Instant_photo_ๆ‹็ซ‹ๅพ—_Polaroid_LoRA___LoHA_1263786.jpeg b/civitai/lora_sd_1.5/LEOSAM_s_Instant_photo_ๆ‹็ซ‹ๅพ—_Polaroid_LoRA___LoHA_1263786.jpeg index af575ba..acc0e5b 100644 Binary files a/civitai/lora_sd_1.5/LEOSAM_s_Instant_photo_ๆ‹็ซ‹ๅพ—_Polaroid_LoRA___LoHA_1263786.jpeg and b/civitai/lora_sd_1.5/LEOSAM_s_Instant_photo_ๆ‹็ซ‹ๅพ—_Polaroid_LoRA___LoHA_1263786.jpeg differ diff --git a/civitai/lora_sd_1.5/LEOSAM_s__ๆตฎไธ–็ตต_Ukiyo-e__ๅท็€ฌๅทดๆฐด_็”ป้ฃŽ_Kawase_Hasui_Painting_Style_LoRA_1231023.jpeg b/civitai/lora_sd_1.5/LEOSAM_s__ๆตฎไธ–็ตต_Ukiyo-e__ๅท็€ฌๅทดๆฐด_็”ป้ฃŽ_Kawase_Hasui_Painting_Style_LoRA_1231023.jpeg index 5457b5a..081180b 100644 Binary files a/civitai/lora_sd_1.5/LEOSAM_s__ๆตฎไธ–็ตต_Ukiyo-e__ๅท็€ฌๅทดๆฐด_็”ป้ฃŽ_Kawase_Hasui_Painting_Style_LoRA_1231023.jpeg and b/civitai/lora_sd_1.5/LEOSAM_s__ๆตฎไธ–็ตต_Ukiyo-e__ๅท็€ฌๅทดๆฐด_็”ป้ฃŽ_Kawase_Hasui_Painting_Style_LoRA_1231023.jpeg differ diff --git a/civitai/lora_sd_1.5/Latex_Dresses_Collection_By_Stable_Yogi_6214444.jpeg b/civitai/lora_sd_1.5/Latex_Dresses_Collection_By_Stable_Yogi_6214444.jpeg index 5104f7f..cf47923 100644 Binary files a/civitai/lora_sd_1.5/Latex_Dresses_Collection_By_Stable_Yogi_6214444.jpeg and b/civitai/lora_sd_1.5/Latex_Dresses_Collection_By_Stable_Yogi_6214444.jpeg differ diff --git a/civitai/lora_sd_1.5/Le_Malin__Azur_Lane___All_skins____9MB_update__762106.jpeg b/civitai/lora_sd_1.5/Le_Malin__Azur_Lane___All_skins____9MB_update__762106.jpeg index 0579d06..7c632ab 100644 Binary files a/civitai/lora_sd_1.5/Le_Malin__Azur_Lane___All_skins____9MB_update__762106.jpeg and b/civitai/lora_sd_1.5/Le_Malin__Azur_Lane___All_skins____9MB_update__762106.jpeg differ diff --git a/civitai/lora_sd_1.5/Library_bookshelf_1718042.jpeg b/civitai/lora_sd_1.5/Library_bookshelf_1718042.jpeg index a54c7fa..469074d 100644 Binary files a/civitai/lora_sd_1.5/Library_bookshelf_1718042.jpeg and b/civitai/lora_sd_1.5/Library_bookshelf_1718042.jpeg differ diff --git a/civitai/lora_sd_1.5/Light_and_Shadow_155715.jpeg b/civitai/lora_sd_1.5/Light_and_Shadow_155715.jpeg index fa7c90e..b225b1e 100644 Binary files a/civitai/lora_sd_1.5/Light_and_Shadow_155715.jpeg and b/civitai/lora_sd_1.5/Light_and_Shadow_155715.jpeg differ diff --git a/civitai/lora_sd_1.5/Liminal_Space_LoRA_806962.jpeg b/civitai/lora_sd_1.5/Liminal_Space_LoRA_806962.jpeg index 7a21b5f..b9fbaf1 100644 Binary files a/civitai/lora_sd_1.5/Liminal_Space_LoRA_806962.jpeg and b/civitai/lora_sd_1.5/Liminal_Space_LoRA_806962.jpeg differ diff --git a/civitai/lora_sd_1.5/Lisa_-_LoRA_Collection_of_Trauter_s_43708.jpeg b/civitai/lora_sd_1.5/Lisa_-_LoRA_Collection_of_Trauter_s_43708.jpeg index f65af2f..7a57ffa 100644 Binary files a/civitai/lora_sd_1.5/Lisa_-_LoRA_Collection_of_Trauter_s_43708.jpeg and b/civitai/lora_sd_1.5/Lisa_-_LoRA_Collection_of_Trauter_s_43708.jpeg differ diff --git a/civitai/lora_sd_1.5/Lisa_Blackpink_99165.jpeg b/civitai/lora_sd_1.5/Lisa_Blackpink_99165.jpeg index c045f90..0787d60 100644 Binary files a/civitai/lora_sd_1.5/Lisa_Blackpink_99165.jpeg and b/civitai/lora_sd_1.5/Lisa_Blackpink_99165.jpeg differ diff --git a/civitai/lora_sd_1.5/Lisa_For_BLCKPINK_178462.jpeg b/civitai/lora_sd_1.5/Lisa_For_BLCKPINK_178462.jpeg index b9b2038..42a9e49 100644 Binary files a/civitai/lora_sd_1.5/Lisa_For_BLCKPINK_178462.jpeg and b/civitai/lora_sd_1.5/Lisa_For_BLCKPINK_178462.jpeg differ diff --git a/civitai/lora_sd_1.5/Liu_Yifei_97115.jpeg b/civitai/lora_sd_1.5/Liu_Yifei_97115.jpeg index 4089620..9f975e1 100644 Binary files a/civitai/lora_sd_1.5/Liu_Yifei_97115.jpeg and b/civitai/lora_sd_1.5/Liu_Yifei_97115.jpeg differ diff --git a/civitai/lora_sd_1.5/Locker_room_1658318.jpeg b/civitai/lora_sd_1.5/Locker_room_1658318.jpeg index db8c6dd..66192a2 100644 Binary files a/civitai/lora_sd_1.5/Locker_room_1658318.jpeg and b/civitai/lora_sd_1.5/Locker_room_1658318.jpeg differ diff --git a/civitai/lora_sd_1.5/Looking_Disgusted__Facial_Expression__658660.jpeg b/civitai/lora_sd_1.5/Looking_Disgusted__Facial_Expression__658660.jpeg index 9bf5ff2..569cc29 100644 Binary files a/civitai/lora_sd_1.5/Looking_Disgusted__Facial_Expression__658660.jpeg and b/civitai/lora_sd_1.5/Looking_Disgusted__Facial_Expression__658660.jpeg differ diff --git a/civitai/lora_sd_1.5/Love_is_War__Kaguya-sama_wa_Kokurasetai___5_Girl_pack__Chika__Hayasaka_Ai__Miko__Kei_590948.jpeg b/civitai/lora_sd_1.5/Love_is_War__Kaguya-sama_wa_Kokurasetai___5_Girl_pack__Chika__Hayasaka_Ai__Miko__Kei_590948.jpeg index e2fa685..df38afa 100644 Binary files a/civitai/lora_sd_1.5/Love_is_War__Kaguya-sama_wa_Kokurasetai___5_Girl_pack__Chika__Hayasaka_Ai__Miko__Kei_590948.jpeg and b/civitai/lora_sd_1.5/Love_is_War__Kaguya-sama_wa_Kokurasetai___5_Girl_pack__Chika__Hayasaka_Ai__Miko__Kei_590948.jpeg differ diff --git a/civitai/lora_sd_1.5/Lucy_Heartfilia_ใƒซใƒผใ‚ทใ‚ฃ_ใƒใƒผใƒˆใƒ•ใ‚ฃใƒชใ‚ข___Fairy_Tail_1096375.jpeg b/civitai/lora_sd_1.5/Lucy_Heartfilia_ใƒซใƒผใ‚ทใ‚ฃ_ใƒใƒผใƒˆใƒ•ใ‚ฃใƒชใ‚ข___Fairy_Tail_1096375.jpeg index fed85c4..ffb8578 100644 Binary files a/civitai/lora_sd_1.5/Lucy_Heartfilia_ใƒซใƒผใ‚ทใ‚ฃ_ใƒใƒผใƒˆใƒ•ใ‚ฃใƒชใ‚ข___Fairy_Tail_1096375.jpeg and b/civitai/lora_sd_1.5/Lucy_Heartfilia_ใƒซใƒผใ‚ทใ‚ฃ_ใƒใƒผใƒˆใƒ•ใ‚ฃใƒชใ‚ข___Fairy_Tail_1096375.jpeg differ diff --git a/civitai/lora_sd_1.5/Lucy__Cyberpunk_Edgerunners__LoRA_6523817.jpeg b/civitai/lora_sd_1.5/Lucy__Cyberpunk_Edgerunners__LoRA_6523817.jpeg index 69421f7..5ee6d53 100644 Binary files a/civitai/lora_sd_1.5/Lucy__Cyberpunk_Edgerunners__LoRA_6523817.jpeg and b/civitai/lora_sd_1.5/Lucy__Cyberpunk_Edgerunners__LoRA_6523817.jpeg differ diff --git a/civitai/lora_sd_1.5/Lumine_Genshin_Impact___Character_Lora_1200_455340.jpeg b/civitai/lora_sd_1.5/Lumine_Genshin_Impact___Character_Lora_1200_455340.jpeg index db1b491..d5458ce 100644 Binary files a/civitai/lora_sd_1.5/Lumine_Genshin_Impact___Character_Lora_1200_455340.jpeg and b/civitai/lora_sd_1.5/Lumine_Genshin_Impact___Character_Lora_1200_455340.jpeg differ diff --git a/civitai/lora_sd_1.5/MIHOYO_Collection_็ฑณๅฎถๅ…จๅฎถๆกถ__Honkai_Impact_3rd___Honkai_Star_Rail___Genshin_Impact___Zenless_Zone_Zero__42011845.jpeg b/civitai/lora_sd_1.5/MIHOYO_Collection_็ฑณๅฎถๅ…จๅฎถๆกถ__Honkai_Impact_3rd___Honkai_Star_Rail___Genshin_Impact___Zenless_Zone_Zero__42011845.jpeg index df4c68a..c87880b 100644 Binary files a/civitai/lora_sd_1.5/MIHOYO_Collection_็ฑณๅฎถๅ…จๅฎถๆกถ__Honkai_Impact_3rd___Honkai_Star_Rail___Genshin_Impact___Zenless_Zone_Zero__42011845.jpeg and b/civitai/lora_sd_1.5/MIHOYO_Collection_็ฑณๅฎถๅ…จๅฎถๆกถ__Honkai_Impact_3rd___Honkai_Star_Rail___Genshin_Impact___Zenless_Zone_Zero__42011845.jpeg differ diff --git a/civitai/lora_sd_1.5/MIMI_ๅคงๅน‚ๅน‚_187753.jpeg b/civitai/lora_sd_1.5/MIMI_ๅคงๅน‚ๅน‚_187753.jpeg index d065f3b..0b22bd5 100644 Binary files a/civitai/lora_sd_1.5/MIMI_ๅคงๅน‚ๅน‚_187753.jpeg and b/civitai/lora_sd_1.5/MIMI_ๅคงๅน‚ๅน‚_187753.jpeg differ diff --git a/civitai/lora_sd_1.5/M_Pixel__ๅƒ็ด ไบบไบบ_27884248.jpeg b/civitai/lora_sd_1.5/M_Pixel__ๅƒ็ด ไบบไบบ_27884248.jpeg index 4ac0ec7..9849e7e 100644 Binary files a/civitai/lora_sd_1.5/M_Pixel__ๅƒ็ด ไบบไบบ_27884248.jpeg and b/civitai/lora_sd_1.5/M_Pixel__ๅƒ็ด ไบบไบบ_27884248.jpeg differ diff --git a/civitai/lora_sd_1.5/M_Scene_ๅก้€šๆ™ฏๆ™ฏ_814922.jpeg b/civitai/lora_sd_1.5/M_Scene_ๅก้€šๆ™ฏๆ™ฏ_814922.jpeg index cf77afa..d723c55 100644 Binary files a/civitai/lora_sd_1.5/M_Scene_ๅก้€šๆ™ฏๆ™ฏ_814922.jpeg and b/civitai/lora_sd_1.5/M_Scene_ๅก้€šๆ™ฏๆ™ฏ_814922.jpeg differ diff --git a/civitai/lora_sd_1.5/M_mini_scene_่ฟทไฝ ็›’็›’_443941.jpeg b/civitai/lora_sd_1.5/M_mini_scene_่ฟทไฝ ็›’็›’_443941.jpeg index a8e2c31..0669e05 100644 Binary files a/civitai/lora_sd_1.5/M_mini_scene_่ฟทไฝ ็›’็›’_443941.jpeg and b/civitai/lora_sd_1.5/M_mini_scene_่ฟทไฝ ็›’็›’_443941.jpeg differ diff --git a/civitai/lora_sd_1.5/M_vehicle_ๅก้€š่ฝฆ่ฝฆ_417179.jpeg b/civitai/lora_sd_1.5/M_vehicle_ๅก้€š่ฝฆ่ฝฆ_417179.jpeg index 9f33891..394f12f 100644 Binary files a/civitai/lora_sd_1.5/M_vehicle_ๅก้€š่ฝฆ่ฝฆ_417179.jpeg and b/civitai/lora_sd_1.5/M_vehicle_ๅก้€š่ฝฆ่ฝฆ_417179.jpeg differ diff --git a/civitai/lora_sd_1.5/Makima__Chainsaw_Man__LoRA_56704.jpeg b/civitai/lora_sd_1.5/Makima__Chainsaw_Man__LoRA_56704.jpeg index da93a4f..af012c8 100644 Binary files a/civitai/lora_sd_1.5/Makima__Chainsaw_Man__LoRA_56704.jpeg and b/civitai/lora_sd_1.5/Makima__Chainsaw_Man__LoRA_56704.jpeg differ diff --git a/civitai/lora_sd_1.5/Makoto_Shinkai__Your_Name___substyles__Style_LoRA_122175.jpeg b/civitai/lora_sd_1.5/Makoto_Shinkai__Your_Name___substyles__Style_LoRA_122175.jpeg index 2deee7a..6c7c16a 100644 Binary files a/civitai/lora_sd_1.5/Makoto_Shinkai__Your_Name___substyles__Style_LoRA_122175.jpeg and b/civitai/lora_sd_1.5/Makoto_Shinkai__Your_Name___substyles__Style_LoRA_122175.jpeg differ diff --git a/civitai/lora_sd_1.5/March_7th___Honkai_Star_Rail_146361.jpeg b/civitai/lora_sd_1.5/March_7th___Honkai_Star_Rail_146361.jpeg index 52e135d..e861fb8 100644 Binary files a/civitai/lora_sd_1.5/March_7th___Honkai_Star_Rail_146361.jpeg and b/civitai/lora_sd_1.5/March_7th___Honkai_Star_Rail_146361.jpeg differ diff --git a/civitai/lora_sd_1.5/Marnie_ใƒžใƒชใ‚ฃ___Pokemon_1134750.jpeg b/civitai/lora_sd_1.5/Marnie_ใƒžใƒชใ‚ฃ___Pokemon_1134750.jpeg index 0dd7570..a907b38 100644 Binary files a/civitai/lora_sd_1.5/Marnie_ใƒžใƒชใ‚ฃ___Pokemon_1134750.jpeg and b/civitai/lora_sd_1.5/Marnie_ใƒžใƒชใ‚ฃ___Pokemon_1134750.jpeg differ diff --git a/civitai/lora_sd_1.5/Matoi_Ryuuko__Kill_La_Kill__LoRA_240035.jpeg b/civitai/lora_sd_1.5/Matoi_Ryuuko__Kill_La_Kill__LoRA_240035.jpeg index c4df5ea..fd0eafb 100644 Binary files a/civitai/lora_sd_1.5/Matoi_Ryuuko__Kill_La_Kill__LoRA_240035.jpeg and b/civitai/lora_sd_1.5/Matoi_Ryuuko__Kill_La_Kill__LoRA_240035.jpeg differ diff --git a/civitai/lora_sd_1.5/Mecha_22857375.jpeg b/civitai/lora_sd_1.5/Mecha_22857375.jpeg index de1d673..9098a7f 100644 Binary files a/civitai/lora_sd_1.5/Mecha_22857375.jpeg and b/civitai/lora_sd_1.5/Mecha_22857375.jpeg differ diff --git a/civitai/lora_sd_1.5/Mecha_Armor_LoRa_1201916.jpeg b/civitai/lora_sd_1.5/Mecha_Armor_LoRa_1201916.jpeg index 28eb19e..364bd00 100644 Binary files a/civitai/lora_sd_1.5/Mecha_Armor_LoRa_1201916.jpeg and b/civitai/lora_sd_1.5/Mecha_Armor_LoRa_1201916.jpeg differ diff --git a/civitai/lora_sd_1.5/Mecha_Mix_Girl_Lora_693666.jpeg b/civitai/lora_sd_1.5/Mecha_Mix_Girl_Lora_693666.jpeg index 9c786e3..004560c 100644 Binary files a/civitai/lora_sd_1.5/Mecha_Mix_Girl_Lora_693666.jpeg and b/civitai/lora_sd_1.5/Mecha_Mix_Girl_Lora_693666.jpeg differ diff --git a/civitai/lora_sd_1.5/Mecha_Musume___Gundam___Mecha_Slider_LoRA_933600.jpeg b/civitai/lora_sd_1.5/Mecha_Musume___Gundam___Mecha_Slider_LoRA_933600.jpeg index 1727a48..59991e6 100644 Binary files a/civitai/lora_sd_1.5/Mecha_Musume___Gundam___Mecha_Slider_LoRA_933600.jpeg and b/civitai/lora_sd_1.5/Mecha_Musume___Gundam___Mecha_Slider_LoRA_933600.jpeg differ diff --git a/civitai/lora_sd_1.5/MengX_girl_Mix_2123086.jpeg b/civitai/lora_sd_1.5/MengX_girl_Mix_2123086.jpeg index 3773b0a..e07511d 100644 Binary files a/civitai/lora_sd_1.5/MengX_girl_Mix_2123086.jpeg and b/civitai/lora_sd_1.5/MengX_girl_Mix_2123086.jpeg differ diff --git a/civitai/lora_sd_1.5/Mesugaki_Expression__Pack__Concept_LoRA_2863337.jpeg b/civitai/lora_sd_1.5/Mesugaki_Expression__Pack__Concept_LoRA_2863337.jpeg index fa99587..0be16ab 100644 Binary files a/civitai/lora_sd_1.5/Mesugaki_Expression__Pack__Concept_LoRA_2863337.jpeg and b/civitai/lora_sd_1.5/Mesugaki_Expression__Pack__Concept_LoRA_2863337.jpeg differ diff --git a/civitai/lora_sd_1.5/Microdress_2706870.jpeg b/civitai/lora_sd_1.5/Microdress_2706870.jpeg index 3f35f8c..9ae6e3d 100644 Binary files a/civitai/lora_sd_1.5/Microdress_2706870.jpeg and b/civitai/lora_sd_1.5/Microdress_2706870.jpeg differ diff --git a/civitai/lora_sd_1.5/Miko_Clothes_426045.jpeg b/civitai/lora_sd_1.5/Miko_Clothes_426045.jpeg index 267e08c..aa6495b 100644 Binary files a/civitai/lora_sd_1.5/Miko_Clothes_426045.jpeg and b/civitai/lora_sd_1.5/Miko_Clothes_426045.jpeg differ diff --git a/civitai/lora_sd_1.5/Milim_Nava___Character_Lora_235_290830.jpeg b/civitai/lora_sd_1.5/Milim_Nava___Character_Lora_235_290830.jpeg index b987154..68faf31 100644 Binary files a/civitai/lora_sd_1.5/Milim_Nava___Character_Lora_235_290830.jpeg and b/civitai/lora_sd_1.5/Milim_Nava___Character_Lora_235_290830.jpeg differ diff --git a/civitai/lora_sd_1.5/Minamoto_no_Raikou__Yorimitsu__ๆบ้ ผๅ…‰___Fate_Grand_Order_961884.jpeg b/civitai/lora_sd_1.5/Minamoto_no_Raikou__Yorimitsu__ๆบ้ ผๅ…‰___Fate_Grand_Order_961884.jpeg index 831b1de..1f53cd4 100644 Binary files a/civitai/lora_sd_1.5/Minamoto_no_Raikou__Yorimitsu__ๆบ้ ผๅ…‰___Fate_Grand_Order_961884.jpeg and b/civitai/lora_sd_1.5/Minamoto_no_Raikou__Yorimitsu__ๆบ้ ผๅ…‰___Fate_Grand_Order_961884.jpeg differ diff --git a/civitai/lora_sd_1.5/Minato_Aqua_ๆนŠใ‚ใใ‚___Hololive_1349572.jpeg b/civitai/lora_sd_1.5/Minato_Aqua_ๆนŠใ‚ใใ‚___Hololive_1349572.jpeg index 0863536..fcd1446 100644 Binary files a/civitai/lora_sd_1.5/Minato_Aqua_ๆนŠใ‚ใใ‚___Hololive_1349572.jpeg and b/civitai/lora_sd_1.5/Minato_Aqua_ๆนŠใ‚ใใ‚___Hololive_1349572.jpeg differ diff --git a/civitai/lora_sd_1.5/Minimalist_Anime_Style_336272.jpeg b/civitai/lora_sd_1.5/Minimalist_Anime_Style_336272.jpeg index cfbca3c..63e2570 100644 Binary files a/civitai/lora_sd_1.5/Minimalist_Anime_Style_336272.jpeg and b/civitai/lora_sd_1.5/Minimalist_Anime_Style_336272.jpeg differ diff --git a/civitai/lora_sd_1.5/Misty__Pokemon__LoRA__8_MB__94394.jpeg b/civitai/lora_sd_1.5/Misty__Pokemon__LoRA__8_MB__94394.jpeg index 2b6cd57..dced534 100644 Binary files a/civitai/lora_sd_1.5/Misty__Pokemon__LoRA__8_MB__94394.jpeg and b/civitai/lora_sd_1.5/Misty__Pokemon__LoRA__8_MB__94394.jpeg differ diff --git a/civitai/lora_sd_1.5/Misty_ใ‚ซใ‚นใƒŸ___Pokemon_270365.jpeg b/civitai/lora_sd_1.5/Misty_ใ‚ซใ‚นใƒŸ___Pokemon_270365.jpeg index 2d47e93..5876baa 100644 Binary files a/civitai/lora_sd_1.5/Misty_ใ‚ซใ‚นใƒŸ___Pokemon_270365.jpeg and b/civitai/lora_sd_1.5/Misty_ใ‚ซใ‚นใƒŸ___Pokemon_270365.jpeg differ diff --git a/civitai/lora_sd_1.5/Mizuki_Yukikaze__Taimanin_games__1129386.jpeg b/civitai/lora_sd_1.5/Mizuki_Yukikaze__Taimanin_games__1129386.jpeg index 3cb3c58..be12b2e 100644 Binary files a/civitai/lora_sd_1.5/Mizuki_Yukikaze__Taimanin_games__1129386.jpeg and b/civitai/lora_sd_1.5/Mizuki_Yukikaze__Taimanin_games__1129386.jpeg differ diff --git a/civitai/lora_sd_1.5/Mochizuki_Kei__ๆœ›ๆœˆใ‘ใ„__Art_Style_LoRA_140167.jpeg b/civitai/lora_sd_1.5/Mochizuki_Kei__ๆœ›ๆœˆใ‘ใ„__Art_Style_LoRA_140167.jpeg index 4251de8..c2bf90c 100644 Binary files a/civitai/lora_sd_1.5/Mochizuki_Kei__ๆœ›ๆœˆใ‘ใ„__Art_Style_LoRA_140167.jpeg and b/civitai/lora_sd_1.5/Mochizuki_Kei__ๆœ›ๆœˆใ‘ใ„__Art_Style_LoRA_140167.jpeg differ diff --git a/civitai/lora_sd_1.5/Mona_-_Genshin_Impact__Character__5029346.jpeg b/civitai/lora_sd_1.5/Mona_-_Genshin_Impact__Character__5029346.jpeg index 1d2aa27..9d9653e 100644 Binary files a/civitai/lora_sd_1.5/Mona_-_Genshin_Impact__Character__5029346.jpeg and b/civitai/lora_sd_1.5/Mona_-_Genshin_Impact__Character__5029346.jpeg differ diff --git a/civitai/lora_sd_1.5/Mouth_Hold_Clothes_Lift__Concept_LoRA__935651.jpeg b/civitai/lora_sd_1.5/Mouth_Hold_Clothes_Lift__Concept_LoRA__935651.jpeg index 9546c30..dd702b4 100644 Binary files a/civitai/lora_sd_1.5/Mouth_Hold_Clothes_Lift__Concept_LoRA__935651.jpeg and b/civitai/lora_sd_1.5/Mouth_Hold_Clothes_Lift__Concept_LoRA__935651.jpeg differ diff --git a/civitai/lora_sd_1.5/Murky_s_-_Finger_in_Mouth_LoRA_225103.jpeg b/civitai/lora_sd_1.5/Murky_s_-_Finger_in_Mouth_LoRA_225103.jpeg index fd05829..3c6fb7a 100644 Binary files a/civitai/lora_sd_1.5/Murky_s_-_Finger_in_Mouth_LoRA_225103.jpeg and b/civitai/lora_sd_1.5/Murky_s_-_Finger_in_Mouth_LoRA_225103.jpeg differ diff --git a/civitai/lora_sd_1.5/Muscle_Slider_-_LoRA_2190567.jpeg b/civitai/lora_sd_1.5/Muscle_Slider_-_LoRA_2190567.jpeg index 38ce829..02d74ee 100644 Binary files a/civitai/lora_sd_1.5/Muscle_Slider_-_LoRA_2190567.jpeg and b/civitai/lora_sd_1.5/Muscle_Slider_-_LoRA_2190567.jpeg differ diff --git a/civitai/lora_sd_1.5/Muscular_Female_Variety___Concept_1468519.jpeg b/civitai/lora_sd_1.5/Muscular_Female_Variety___Concept_1468519.jpeg index 2dbde4e..5791176 100644 Binary files a/civitai/lora_sd_1.5/Muscular_Female_Variety___Concept_1468519.jpeg and b/civitai/lora_sd_1.5/Muscular_Female_Variety___Concept_1468519.jpeg differ diff --git a/civitai/lora_sd_1.5/My_Dress-Up_Darling_-_Characters___Style_4999219.jpeg b/civitai/lora_sd_1.5/My_Dress-Up_Darling_-_Characters___Style_4999219.jpeg index 5b5099f..a2b9c76 100644 Binary files a/civitai/lora_sd_1.5/My_Dress-Up_Darling_-_Characters___Style_4999219.jpeg and b/civitai/lora_sd_1.5/My_Dress-Up_Darling_-_Characters___Style_4999219.jpeg differ diff --git a/civitai/lora_sd_1.5/My_Hero_Academia__Horikoshi_Kouhei__Style_LoRA_48099.jpeg b/civitai/lora_sd_1.5/My_Hero_Academia__Horikoshi_Kouhei__Style_LoRA_48099.jpeg index 53e2ef3..e5c7598 100644 Binary files a/civitai/lora_sd_1.5/My_Hero_Academia__Horikoshi_Kouhei__Style_LoRA_48099.jpeg and b/civitai/lora_sd_1.5/My_Hero_Academia__Horikoshi_Kouhei__Style_LoRA_48099.jpeg differ diff --git a/civitai/lora_sd_1.5/Nakiri_Erina___Food_Wars_165767.jpeg b/civitai/lora_sd_1.5/Nakiri_Erina___Food_Wars_165767.jpeg index 19d99f2..6cdd9c0 100644 Binary files a/civitai/lora_sd_1.5/Nakiri_Erina___Food_Wars_165767.jpeg and b/civitai/lora_sd_1.5/Nakiri_Erina___Food_Wars_165767.jpeg differ diff --git a/civitai/lora_sd_1.5/Nami__One_Piece__Pre_and_Post_Timeskip_LoRA_187077.jpeg b/civitai/lora_sd_1.5/Nami__One_Piece__Pre_and_Post_Timeskip_LoRA_187077.jpeg index 95c16b1..d0d628c 100644 Binary files a/civitai/lora_sd_1.5/Nami__One_Piece__Pre_and_Post_Timeskip_LoRA_187077.jpeg and b/civitai/lora_sd_1.5/Nami__One_Piece__Pre_and_Post_Timeskip_LoRA_187077.jpeg differ diff --git a/civitai/lora_sd_1.5/Nanosuit_551114.jpeg b/civitai/lora_sd_1.5/Nanosuit_551114.jpeg index 29b2312..cd26250 100644 Binary files a/civitai/lora_sd_1.5/Nanosuit_551114.jpeg and b/civitai/lora_sd_1.5/Nanosuit_551114.jpeg differ diff --git a/civitai/lora_sd_1.5/Natalie_Portman_LoRa__1451528.jpeg b/civitai/lora_sd_1.5/Natalie_Portman_LoRa__1451528.jpeg index 04d655b..0c541ca 100644 Binary files a/civitai/lora_sd_1.5/Natalie_Portman_LoRa__1451528.jpeg and b/civitai/lora_sd_1.5/Natalie_Portman_LoRa__1451528.jpeg differ diff --git a/civitai/lora_sd_1.5/Nazuna_Nanakusa__Call_of_the_Night__LoRA_650808.jpeg b/civitai/lora_sd_1.5/Nazuna_Nanakusa__Call_of_the_Night__LoRA_650808.jpeg index 53d570c..6300d55 100644 Binary files a/civitai/lora_sd_1.5/Nazuna_Nanakusa__Call_of_the_Night__LoRA_650808.jpeg and b/civitai/lora_sd_1.5/Nazuna_Nanakusa__Call_of_the_Night__LoRA_650808.jpeg differ diff --git a/civitai/lora_sd_1.5/Neon_Genesis_Evangelion_1990s_Anime_Style_LoRA_652632.jpeg b/civitai/lora_sd_1.5/Neon_Genesis_Evangelion_1990s_Anime_Style_LoRA_652632.jpeg index b1270ec..7518748 100644 Binary files a/civitai/lora_sd_1.5/Neon_Genesis_Evangelion_1990s_Anime_Style_LoRA_652632.jpeg and b/civitai/lora_sd_1.5/Neon_Genesis_Evangelion_1990s_Anime_Style_LoRA_652632.jpeg differ diff --git a/civitai/lora_sd_1.5/New_Chinese_Style_Suit_ๆ–ฐไธญๅผๆœ้ฅฐ_LoRa_723676.jpeg b/civitai/lora_sd_1.5/New_Chinese_Style_Suit_ๆ–ฐไธญๅผๆœ้ฅฐ_LoRa_723676.jpeg index 15a3b33..58950da 100644 Binary files a/civitai/lora_sd_1.5/New_Chinese_Style_Suit_ๆ–ฐไธญๅผๆœ้ฅฐ_LoRa_723676.jpeg and b/civitai/lora_sd_1.5/New_Chinese_Style_Suit_ๆ–ฐไธญๅผๆœ้ฅฐ_LoRa_723676.jpeg differ diff --git a/civitai/lora_sd_1.5/Nezuko__Demon_Slayer___Kimetsu_No_Yaiba__LoRA_262965.jpeg b/civitai/lora_sd_1.5/Nezuko__Demon_Slayer___Kimetsu_No_Yaiba__LoRA_262965.jpeg index 548ba2e..2d4bea8 100644 Binary files a/civitai/lora_sd_1.5/Nezuko__Demon_Slayer___Kimetsu_No_Yaiba__LoRA_262965.jpeg and b/civitai/lora_sd_1.5/Nezuko__Demon_Slayer___Kimetsu_No_Yaiba__LoRA_262965.jpeg differ diff --git a/civitai/lora_sd_1.5/Nico_Robin__One_Piece__Pre_and_Post_Timeskip_LoRA_371379.jpeg b/civitai/lora_sd_1.5/Nico_Robin__One_Piece__Pre_and_Post_Timeskip_LoRA_371379.jpeg index 0bd6ca0..fd841e5 100644 Binary files a/civitai/lora_sd_1.5/Nico_Robin__One_Piece__Pre_and_Post_Timeskip_LoRA_371379.jpeg and b/civitai/lora_sd_1.5/Nico_Robin__One_Piece__Pre_and_Post_Timeskip_LoRA_371379.jpeg differ diff --git a/civitai/lora_sd_1.5/NijiArmor_LORA_-_suits___armors___mechas_1444249.jpeg b/civitai/lora_sd_1.5/NijiArmor_LORA_-_suits___armors___mechas_1444249.jpeg index 80a4905..3c379e0 100644 Binary files a/civitai/lora_sd_1.5/NijiArmor_LORA_-_suits___armors___mechas_1444249.jpeg and b/civitai/lora_sd_1.5/NijiArmor_LORA_-_suits___armors___mechas_1444249.jpeg differ diff --git a/civitai/lora_sd_1.5/NijiExpressive_v1_542479.jpeg b/civitai/lora_sd_1.5/NijiExpressive_v1_542479.jpeg index 796c4b7..da0b0a5 100644 Binary files a/civitai/lora_sd_1.5/NijiExpressive_v1_542479.jpeg and b/civitai/lora_sd_1.5/NijiExpressive_v1_542479.jpeg differ diff --git a/civitai/lora_sd_1.5/NijiExpressive_v2_571939.jpeg b/civitai/lora_sd_1.5/NijiExpressive_v2_571939.jpeg index 1d342ca..d5fe0d4 100644 Binary files a/civitai/lora_sd_1.5/NijiExpressive_v2_571939.jpeg and b/civitai/lora_sd_1.5/NijiExpressive_v2_571939.jpeg differ diff --git a/civitai/lora_sd_1.5/NijiMecha_-_Artstyle_LORA_782613.jpeg b/civitai/lora_sd_1.5/NijiMecha_-_Artstyle_LORA_782613.jpeg index e6704a6..4114fd5 100644 Binary files a/civitai/lora_sd_1.5/NijiMecha_-_Artstyle_LORA_782613.jpeg and b/civitai/lora_sd_1.5/NijiMecha_-_Artstyle_LORA_782613.jpeg differ diff --git a/civitai/lora_sd_1.5/Nilou___Genshin_Impact___LoRA_318576.jpeg b/civitai/lora_sd_1.5/Nilou___Genshin_Impact___LoRA_318576.jpeg index 37b2009..e8f8032 100644 Binary files a/civitai/lora_sd_1.5/Nilou___Genshin_Impact___LoRA_318576.jpeg and b/civitai/lora_sd_1.5/Nilou___Genshin_Impact___LoRA_318576.jpeg differ diff --git a/civitai/lora_sd_1.5/Ninomae_Ina_nis__Hololive__5_outfits_2685793.jpeg b/civitai/lora_sd_1.5/Ninomae_Ina_nis__Hololive__5_outfits_2685793.jpeg index a2e0c8a..54e7735 100644 Binary files a/civitai/lora_sd_1.5/Ninomae_Ina_nis__Hololive__5_outfits_2685793.jpeg and b/civitai/lora_sd_1.5/Ninomae_Ina_nis__Hololive__5_outfits_2685793.jpeg differ diff --git a/civitai/lora_sd_1.5/Normal_Korean_girl_face__Chilloutmix_base_lora_1072029.jpeg b/civitai/lora_sd_1.5/Normal_Korean_girl_face__Chilloutmix_base_lora_1072029.jpeg index b1ed19c..73c8079 100644 Binary files a/civitai/lora_sd_1.5/Normal_Korean_girl_face__Chilloutmix_base_lora_1072029.jpeg and b/civitai/lora_sd_1.5/Normal_Korean_girl_face__Chilloutmix_base_lora_1072029.jpeg differ diff --git a/civitai/lora_sd_1.5/Nou__ใฎใ†__Art_Style_LoRA_185770.jpeg b/civitai/lora_sd_1.5/Nou__ใฎใ†__Art_Style_LoRA_185770.jpeg index 4448908..9d7e30a 100644 Binary files a/civitai/lora_sd_1.5/Nou__ใฎใ†__Art_Style_LoRA_185770.jpeg and b/civitai/lora_sd_1.5/Nou__ใฎใ†__Art_Style_LoRA_185770.jpeg differ diff --git a/civitai/lora_sd_1.5/OC_515104.jpeg b/civitai/lora_sd_1.5/OC_515104.jpeg index 136c94c..f02d675 100644 Binary files a/civitai/lora_sd_1.5/OC_515104.jpeg and b/civitai/lora_sd_1.5/OC_515104.jpeg differ diff --git a/civitai/lora_sd_1.5/OC_illustration_532665.jpeg b/civitai/lora_sd_1.5/OC_illustration_532665.jpeg index 5e407db..c4d45a5 100644 Binary files a/civitai/lora_sd_1.5/OC_illustration_532665.jpeg and b/civitai/lora_sd_1.5/OC_illustration_532665.jpeg differ diff --git a/civitai/lora_sd_1.5/ORCS_851872.jpeg b/civitai/lora_sd_1.5/ORCS_851872.jpeg index 549c38b..b1f5f7f 100644 Binary files a/civitai/lora_sd_1.5/ORCS_851872.jpeg and b/civitai/lora_sd_1.5/ORCS_851872.jpeg differ diff --git a/civitai/lora_sd_1.5/Oil_painting_oil_brush_stroke__-_ๆฒน็”ป็ฌ”่งฆ_1116687.jpeg b/civitai/lora_sd_1.5/Oil_painting_oil_brush_stroke__-_ๆฒน็”ป็ฌ”่งฆ_1116687.jpeg index 3353ee8..aaf4f9c 100644 Binary files a/civitai/lora_sd_1.5/Oil_painting_oil_brush_stroke__-_ๆฒน็”ป็ฌ”่งฆ_1116687.jpeg and b/civitai/lora_sd_1.5/Oil_painting_oil_brush_stroke__-_ๆฒน็”ป็ฌ”่งฆ_1116687.jpeg differ diff --git a/civitai/lora_sd_1.5/Ojou-Sama_Pose_ๅคงๅฐๅงๅผๅงฟๅŠฟ_993772.jpeg b/civitai/lora_sd_1.5/Ojou-Sama_Pose_ๅคงๅฐๅงๅผๅงฟๅŠฟ_993772.jpeg index 34ac627..df5cab7 100644 Binary files a/civitai/lora_sd_1.5/Ojou-Sama_Pose_ๅคงๅฐๅงๅผๅงฟๅŠฟ_993772.jpeg and b/civitai/lora_sd_1.5/Ojou-Sama_Pose_ๅคงๅฐๅงๅผๅงฟๅŠฟ_993772.jpeg differ diff --git a/civitai/lora_sd_1.5/Old_Sketch_-_Style_504336.jpeg b/civitai/lora_sd_1.5/Old_Sketch_-_Style_504336.jpeg index 3327266..8a83a92 100644 Binary files a/civitai/lora_sd_1.5/Old_Sketch_-_Style_504336.jpeg and b/civitai/lora_sd_1.5/Old_Sketch_-_Style_504336.jpeg differ diff --git a/civitai/lora_sd_1.5/On_Fire_641981.jpeg b/civitai/lora_sd_1.5/On_Fire_641981.jpeg index 18ee15b..2feb9d5 100644 Binary files a/civitai/lora_sd_1.5/On_Fire_641981.jpeg and b/civitai/lora_sd_1.5/On_Fire_641981.jpeg differ diff --git a/civitai/lora_sd_1.5/One_Piece__Wano_Saga__Style_LoRA_56809.jpeg b/civitai/lora_sd_1.5/One_Piece__Wano_Saga__Style_LoRA_56809.jpeg index 381284e..c88540e 100644 Binary files a/civitai/lora_sd_1.5/One_Piece__Wano_Saga__Style_LoRA_56809.jpeg and b/civitai/lora_sd_1.5/One_Piece__Wano_Saga__Style_LoRA_56809.jpeg differ diff --git a/civitai/lora_sd_1.5/Oozora_Subaru__Hololive__all_outfits_4_4_539965.jpeg b/civitai/lora_sd_1.5/Oozora_Subaru__Hololive__all_outfits_4_4_539965.jpeg index 2cd7785..4f47711 100644 Binary files a/civitai/lora_sd_1.5/Oozora_Subaru__Hololive__all_outfits_4_4_539965.jpeg and b/civitai/lora_sd_1.5/Oozora_Subaru__Hololive__all_outfits_4_4_539965.jpeg differ diff --git a/civitai/lora_sd_1.5/Oversized_Clothing_Collection_1283845.jpeg b/civitai/lora_sd_1.5/Oversized_Clothing_Collection_1283845.jpeg index 3549cec..83eac79 100644 Binary files a/civitai/lora_sd_1.5/Oversized_Clothing_Collection_1283845.jpeg and b/civitai/lora_sd_1.5/Oversized_Clothing_Collection_1283845.jpeg differ diff --git a/civitai/lora_sd_1.5/Oversized_Sweater_Hoodie_621451.jpeg b/civitai/lora_sd_1.5/Oversized_Sweater_Hoodie_621451.jpeg index dd70ef7..f01965f 100644 Binary files a/civitai/lora_sd_1.5/Oversized_Sweater_Hoodie_621451.jpeg and b/civitai/lora_sd_1.5/Oversized_Sweater_Hoodie_621451.jpeg differ diff --git a/civitai/lora_sd_1.5/PAseer็š„ไป™ไพ ไน‹ๅขƒ__PAseer_s_Fairy_immortal_World_Review_Please_็ป™ไธชๅ้ฆˆๅ‘€_่ฐข่ฐข__836405.jpeg b/civitai/lora_sd_1.5/PAseer็š„ไป™ไพ ไน‹ๅขƒ__PAseer_s_Fairy_immortal_World_Review_Please_็ป™ไธชๅ้ฆˆๅ‘€_่ฐข่ฐข__836405.jpeg index 341287d..834174f 100644 Binary files a/civitai/lora_sd_1.5/PAseer็š„ไป™ไพ ไน‹ๅขƒ__PAseer_s_Fairy_immortal_World_Review_Please_็ป™ไธชๅ้ฆˆๅ‘€_่ฐข่ฐข__836405.jpeg and b/civitai/lora_sd_1.5/PAseer็š„ไป™ไพ ไน‹ๅขƒ__PAseer_s_Fairy_immortal_World_Review_Please_็ป™ไธชๅ้ฆˆๅ‘€_่ฐข่ฐข__836405.jpeg differ diff --git a/civitai/lora_sd_1.5/PAseer็š„ๆœ้ฅฐๅŒ…_PAseer_Clothes_Package_1279641.jpeg b/civitai/lora_sd_1.5/PAseer็š„ๆœ้ฅฐๅŒ…_PAseer_Clothes_Package_1279641.jpeg index 45a7ca2..54ea572 100644 Binary files a/civitai/lora_sd_1.5/PAseer็š„ๆœ้ฅฐๅŒ…_PAseer_Clothes_Package_1279641.jpeg and b/civitai/lora_sd_1.5/PAseer็š„ๆœ้ฅฐๅŒ…_PAseer_Clothes_Package_1279641.jpeg differ diff --git a/civitai/lora_sd_1.5/POV_Facesitting_475039.jpeg b/civitai/lora_sd_1.5/POV_Facesitting_475039.jpeg index c1281a6..0c8c519 100644 Binary files a/civitai/lora_sd_1.5/POV_Facesitting_475039.jpeg and b/civitai/lora_sd_1.5/POV_Facesitting_475039.jpeg differ diff --git a/civitai/lora_sd_1.5/Painted_Miniature_155781.jpeg b/civitai/lora_sd_1.5/Painted_Miniature_155781.jpeg index 996f0b9..10a785e 100644 Binary files a/civitai/lora_sd_1.5/Painted_Miniature_155781.jpeg and b/civitai/lora_sd_1.5/Painted_Miniature_155781.jpeg differ diff --git a/civitai/lora_sd_1.5/Pastel_color_2099410.jpeg b/civitai/lora_sd_1.5/Pastel_color_2099410.jpeg index d0dba87..6a8e5d9 100644 Binary files a/civitai/lora_sd_1.5/Pastel_color_2099410.jpeg and b/civitai/lora_sd_1.5/Pastel_color_2099410.jpeg differ diff --git a/civitai/lora_sd_1.5/Pecha_Swords_Generator_1235374.jpeg b/civitai/lora_sd_1.5/Pecha_Swords_Generator_1235374.jpeg index 2ec50e8..7f273e1 100644 Binary files a/civitai/lora_sd_1.5/Pecha_Swords_Generator_1235374.jpeg and b/civitai/lora_sd_1.5/Pecha_Swords_Generator_1235374.jpeg differ diff --git a/civitai/lora_sd_1.5/Pecorine___ใƒšใ‚ณใƒชใƒผใƒŒ_277844.jpeg b/civitai/lora_sd_1.5/Pecorine___ใƒšใ‚ณใƒชใƒผใƒŒ_277844.jpeg index d27629d..632fa76 100644 Binary files a/civitai/lora_sd_1.5/Pecorine___ใƒšใ‚ณใƒชใƒผใƒŒ_277844.jpeg and b/civitai/lora_sd_1.5/Pecorine___ใƒšใ‚ณใƒชใƒผใƒŒ_277844.jpeg differ diff --git a/civitai/lora_sd_1.5/Pelvic_Curtain_Dresses_616451.jpeg b/civitai/lora_sd_1.5/Pelvic_Curtain_Dresses_616451.jpeg index a1793e3..fb45056 100644 Binary files a/civitai/lora_sd_1.5/Pelvic_Curtain_Dresses_616451.jpeg and b/civitai/lora_sd_1.5/Pelvic_Curtain_Dresses_616451.jpeg differ diff --git a/civitai/lora_sd_1.5/People_Count_Slider_-_LoRA_1670646.jpeg b/civitai/lora_sd_1.5/People_Count_Slider_-_LoRA_1670646.jpeg index 1e4cf96..6f79e0d 100644 Binary files a/civitai/lora_sd_1.5/People_Count_Slider_-_LoRA_1670646.jpeg and b/civitai/lora_sd_1.5/People_Count_Slider_-_LoRA_1670646.jpeg differ diff --git a/civitai/lora_sd_1.5/Persona___Catherine__Soejima_Shigenori__Style_LoRA_64905.jpeg b/civitai/lora_sd_1.5/Persona___Catherine__Soejima_Shigenori__Style_LoRA_64905.jpeg index 8d91afb..98cef41 100644 Binary files a/civitai/lora_sd_1.5/Persona___Catherine__Soejima_Shigenori__Style_LoRA_64905.jpeg and b/civitai/lora_sd_1.5/Persona___Catherine__Soejima_Shigenori__Style_LoRA_64905.jpeg differ diff --git a/civitai/lora_sd_1.5/Pig_man_851992.jpeg b/civitai/lora_sd_1.5/Pig_man_851992.jpeg index 43825b6..389eabd 100644 Binary files a/civitai/lora_sd_1.5/Pig_man_851992.jpeg and b/civitai/lora_sd_1.5/Pig_man_851992.jpeg differ diff --git a/civitai/lora_sd_1.5/Planet_Simulator_Lora_766031.jpeg b/civitai/lora_sd_1.5/Planet_Simulator_Lora_766031.jpeg index 135b439..0d561c5 100644 Binary files a/civitai/lora_sd_1.5/Planet_Simulator_Lora_766031.jpeg and b/civitai/lora_sd_1.5/Planet_Simulator_Lora_766031.jpeg differ diff --git a/civitai/lora_sd_1.5/Plug_Gag_1260066.jpeg b/civitai/lora_sd_1.5/Plug_Gag_1260066.jpeg index 3e684ec..fb3fa18 100644 Binary files a/civitai/lora_sd_1.5/Plug_Gag_1260066.jpeg and b/civitai/lora_sd_1.5/Plug_Gag_1260066.jpeg differ diff --git a/civitai/lora_sd_1.5/Pokemon_LoRA__Ken_Sugimori_Style_for_Fakemon_and_Characters__1102353.jpeg b/civitai/lora_sd_1.5/Pokemon_LoRA__Ken_Sugimori_Style_for_Fakemon_and_Characters__1102353.jpeg index fad5a78..3216bef 100644 Binary files a/civitai/lora_sd_1.5/Pokemon_LoRA__Ken_Sugimori_Style_for_Fakemon_and_Characters__1102353.jpeg and b/civitai/lora_sd_1.5/Pokemon_LoRA__Ken_Sugimori_Style_for_Fakemon_and_Characters__1102353.jpeg differ diff --git a/civitai/lora_sd_1.5/Pop_Up_Parade__Anime_Figures__Figurines___Style__946124.jpeg b/civitai/lora_sd_1.5/Pop_Up_Parade__Anime_Figures__Figurines___Style__946124.jpeg index a3abe95..9ed041d 100644 Binary files a/civitai/lora_sd_1.5/Pop_Up_Parade__Anime_Figures__Figurines___Style__946124.jpeg and b/civitai/lora_sd_1.5/Pop_Up_Parade__Anime_Figures__Figurines___Style__946124.jpeg differ diff --git a/civitai/lora_sd_1.5/Pose_LORA_Peeking_Out___ๅงฟๅŠฟ_ๆŽขๅ‡บ่บซๅญ_527046.jpeg b/civitai/lora_sd_1.5/Pose_LORA_Peeking_Out___ๅงฟๅŠฟ_ๆŽขๅ‡บ่บซๅญ_527046.jpeg index 146786a..669ed3b 100644 Binary files a/civitai/lora_sd_1.5/Pose_LORA_Peeking_Out___ๅงฟๅŠฟ_ๆŽขๅ‡บ่บซๅญ_527046.jpeg and b/civitai/lora_sd_1.5/Pose_LORA_Peeking_Out___ๅงฟๅŠฟ_ๆŽขๅ‡บ่บซๅญ_527046.jpeg differ diff --git a/civitai/lora_sd_1.5/Pov_hands___torso_grab_2344081.jpeg b/civitai/lora_sd_1.5/Pov_hands___torso_grab_2344081.jpeg index be14e74..e950e82 100644 Binary files a/civitai/lora_sd_1.5/Pov_hands___torso_grab_2344081.jpeg and b/civitai/lora_sd_1.5/Pov_hands___torso_grab_2344081.jpeg differ diff --git a/civitai/lora_sd_1.5/Priest_-_Dragon_Quest_III__285377.jpeg b/civitai/lora_sd_1.5/Priest_-_Dragon_Quest_III__285377.jpeg index f783af4..45bb159 100644 Binary files a/civitai/lora_sd_1.5/Priest_-_Dragon_Quest_III__285377.jpeg and b/civitai/lora_sd_1.5/Priest_-_Dragon_Quest_III__285377.jpeg differ diff --git a/civitai/lora_sd_1.5/Princess_Zelda_LoRA_46912.jpeg b/civitai/lora_sd_1.5/Princess_Zelda_LoRA_46912.jpeg index 17f0d3d..d0748da 100644 Binary files a/civitai/lora_sd_1.5/Princess_Zelda_LoRA_46912.jpeg and b/civitai/lora_sd_1.5/Princess_Zelda_LoRA_46912.jpeg differ diff --git a/civitai/lora_sd_1.5/Product_Design__Elegant_minimalism-eddiemauro__LORA_1707275.jpeg b/civitai/lora_sd_1.5/Product_Design__Elegant_minimalism-eddiemauro__LORA_1707275.jpeg index ff5fea5..ee5728d 100644 Binary files a/civitai/lora_sd_1.5/Product_Design__Elegant_minimalism-eddiemauro__LORA_1707275.jpeg and b/civitai/lora_sd_1.5/Product_Design__Elegant_minimalism-eddiemauro__LORA_1707275.jpeg differ diff --git a/civitai/lora_sd_1.5/PromptsGirl_393496.jpeg b/civitai/lora_sd_1.5/PromptsGirl_393496.jpeg index 38962b7..0342b06 100644 Binary files a/civitai/lora_sd_1.5/PromptsGirl_393496.jpeg and b/civitai/lora_sd_1.5/PromptsGirl_393496.jpeg differ diff --git a/civitai/lora_sd_1.5/Public_restroom_792723.jpeg b/civitai/lora_sd_1.5/Public_restroom_792723.jpeg index 807f47c..fc2f0b6 100644 Binary files a/civitai/lora_sd_1.5/Public_restroom_792723.jpeg and b/civitai/lora_sd_1.5/Public_restroom_792723.jpeg differ diff --git a/civitai/lora_sd_1.5/Punk___rock___gothic_aesthethics_1838904.jpeg b/civitai/lora_sd_1.5/Punk___rock___gothic_aesthethics_1838904.jpeg index 332e0df..c000578 100644 Binary files a/civitai/lora_sd_1.5/Punk___rock___gothic_aesthethics_1838904.jpeg and b/civitai/lora_sd_1.5/Punk___rock___gothic_aesthethics_1838904.jpeg differ diff --git a/civitai/lora_sd_1.5/Purah__The_Legend_of_Zelda__Tears_of_the_Kingdom__LoRA_1068398.jpeg b/civitai/lora_sd_1.5/Purah__The_Legend_of_Zelda__Tears_of_the_Kingdom__LoRA_1068398.jpeg index 0f189f1..ea1e25b 100644 Binary files a/civitai/lora_sd_1.5/Purah__The_Legend_of_Zelda__Tears_of_the_Kingdom__LoRA_1068398.jpeg and b/civitai/lora_sd_1.5/Purah__The_Legend_of_Zelda__Tears_of_the_Kingdom__LoRA_1068398.jpeg differ diff --git a/civitai/lora_sd_1.5/Pyra___Mythra___Pneuma__Xenoblade__LoRA_51346.jpeg b/civitai/lora_sd_1.5/Pyra___Mythra___Pneuma__Xenoblade__LoRA_51346.jpeg index cdc1450..8e83dd1 100644 Binary files a/civitai/lora_sd_1.5/Pyra___Mythra___Pneuma__Xenoblade__LoRA_51346.jpeg and b/civitai/lora_sd_1.5/Pyra___Mythra___Pneuma__Xenoblade__LoRA_51346.jpeg differ diff --git a/civitai/lora_sd_1.5/Rage_Unleashed_1695148.jpeg b/civitai/lora_sd_1.5/Rage_Unleashed_1695148.jpeg index b9f98dc..bda7b38 100644 Binary files a/civitai/lora_sd_1.5/Rage_Unleashed_1695148.jpeg and b/civitai/lora_sd_1.5/Rage_Unleashed_1695148.jpeg differ diff --git a/civitai/lora_sd_1.5/Raiden_Shogun_-_LoRA_Collection_of_Trauter_s_44164.jpeg b/civitai/lora_sd_1.5/Raiden_Shogun_-_LoRA_Collection_of_Trauter_s_44164.jpeg index 2054d52..6e72d87 100644 Binary files a/civitai/lora_sd_1.5/Raiden_Shogun_-_LoRA_Collection_of_Trauter_s_44164.jpeg and b/civitai/lora_sd_1.5/Raiden_Shogun_-_LoRA_Collection_of_Trauter_s_44164.jpeg differ diff --git a/civitai/lora_sd_1.5/Raiden_Shogun_Genshin_Impact___Character_Lora_1200_511308.jpeg b/civitai/lora_sd_1.5/Raiden_Shogun_Genshin_Impact___Character_Lora_1200_511308.jpeg index dcaeeab..b1d3afb 100644 Binary files a/civitai/lora_sd_1.5/Raiden_Shogun_Genshin_Impact___Character_Lora_1200_511308.jpeg and b/civitai/lora_sd_1.5/Raiden_Shogun_Genshin_Impact___Character_Lora_1200_511308.jpeg differ diff --git a/civitai/lora_sd_1.5/Raiden_Shogun___Realistic_Genshin_LORA_208805.jpeg b/civitai/lora_sd_1.5/Raiden_Shogun___Realistic_Genshin_LORA_208805.jpeg index d96e8b0..3cebc5a 100644 Binary files a/civitai/lora_sd_1.5/Raiden_Shogun___Realistic_Genshin_LORA_208805.jpeg and b/civitai/lora_sd_1.5/Raiden_Shogun___Realistic_Genshin_LORA_208805.jpeg differ diff --git a/civitai/lora_sd_1.5/ReaLora_Realistic_skin_texture__16520231.jpeg b/civitai/lora_sd_1.5/ReaLora_Realistic_skin_texture__16520231.jpeg index 110b65a..7f025d9 100644 Binary files a/civitai/lora_sd_1.5/ReaLora_Realistic_skin_texture__16520231.jpeg and b/civitai/lora_sd_1.5/ReaLora_Realistic_skin_texture__16520231.jpeg differ diff --git a/civitai/lora_sd_1.5/Rei_Ayanami__Evangelion__LoRA_265486.jpeg b/civitai/lora_sd_1.5/Rei_Ayanami__Evangelion__LoRA_265486.jpeg index 59b9853..135e1b9 100644 Binary files a/civitai/lora_sd_1.5/Rei_Ayanami__Evangelion__LoRA_265486.jpeg and b/civitai/lora_sd_1.5/Rei_Ayanami__Evangelion__LoRA_265486.jpeg differ diff --git a/civitai/lora_sd_1.5/Rias_Gremory_ใƒชใ‚ขใ‚น_ใ‚ฐใƒฌใƒขใƒชใƒผ___High_School_D_D_242635.jpeg b/civitai/lora_sd_1.5/Rias_Gremory_ใƒชใ‚ขใ‚น_ใ‚ฐใƒฌใƒขใƒชใƒผ___High_School_D_D_242635.jpeg index c00a5e1..fc42350 100644 Binary files a/civitai/lora_sd_1.5/Rias_Gremory_ใƒชใ‚ขใ‚น_ใ‚ฐใƒฌใƒขใƒชใƒผ___High_School_D_D_242635.jpeg and b/civitai/lora_sd_1.5/Rias_Gremory_ใƒชใ‚ขใ‚น_ใ‚ฐใƒฌใƒขใƒชใƒผ___High_School_D_D_242635.jpeg differ diff --git a/civitai/lora_sd_1.5/Rosa_ใƒกใ‚ค___Pokemon_1508597.jpeg b/civitai/lora_sd_1.5/Rosa_ใƒกใ‚ค___Pokemon_1508597.jpeg index edb2bec..7b068c3 100644 Binary files a/civitai/lora_sd_1.5/Rosa_ใƒกใ‚ค___Pokemon_1508597.jpeg and b/civitai/lora_sd_1.5/Rosa_ใƒกใ‚ค___Pokemon_1508597.jpeg differ diff --git a/civitai/lora_sd_1.5/Roxy_Migurdia_LoRA_123802.jpeg b/civitai/lora_sd_1.5/Roxy_Migurdia_LoRA_123802.jpeg index 48c30af..347230d 100644 Binary files a/civitai/lora_sd_1.5/Roxy_Migurdia_LoRA_123802.jpeg and b/civitai/lora_sd_1.5/Roxy_Migurdia_LoRA_123802.jpeg differ diff --git a/civitai/lora_sd_1.5/SXZ_Niji_Render___Style_for_Luma___910361.jpeg b/civitai/lora_sd_1.5/SXZ_Niji_Render___Style_for_Luma___910361.jpeg index a69e26d..e6bb0ea 100644 Binary files a/civitai/lora_sd_1.5/SXZ_Niji_Render___Style_for_Luma___910361.jpeg and b/civitai/lora_sd_1.5/SXZ_Niji_Render___Style_for_Luma___910361.jpeg differ diff --git a/civitai/lora_sd_1.5/SXZ_Pixel_Bringer___Style___1752463.jpeg b/civitai/lora_sd_1.5/SXZ_Pixel_Bringer___Style___1752463.jpeg index 9af7b03..5ec86c1 100644 Binary files a/civitai/lora_sd_1.5/SXZ_Pixel_Bringer___Style___1752463.jpeg and b/civitai/lora_sd_1.5/SXZ_Pixel_Bringer___Style___1752463.jpeg differ diff --git a/civitai/lora_sd_1.5/SXZ_WoW_Icons___Concept___564370.jpeg b/civitai/lora_sd_1.5/SXZ_WoW_Icons___Concept___564370.jpeg index 0237373..b107991 100644 Binary files a/civitai/lora_sd_1.5/SXZ_WoW_Icons___Concept___564370.jpeg and b/civitai/lora_sd_1.5/SXZ_WoW_Icons___Concept___564370.jpeg differ diff --git a/civitai/lora_sd_1.5/Saika_Kawakita_233656.jpeg b/civitai/lora_sd_1.5/Saika_Kawakita_233656.jpeg index 1af855c..a540553 100644 Binary files a/civitai/lora_sd_1.5/Saika_Kawakita_233656.jpeg and b/civitai/lora_sd_1.5/Saika_Kawakita_233656.jpeg differ diff --git a/civitai/lora_sd_1.5/Sailor_Jupiter_ใ‚ปใƒผใƒฉใƒผใ‚ธใƒฅใƒ”ใ‚ฟใƒผ___Sailor_Moon_1053143.jpeg b/civitai/lora_sd_1.5/Sailor_Jupiter_ใ‚ปใƒผใƒฉใƒผใ‚ธใƒฅใƒ”ใ‚ฟใƒผ___Sailor_Moon_1053143.jpeg index 00f0c3f..1af049c 100644 Binary files a/civitai/lora_sd_1.5/Sailor_Jupiter_ใ‚ปใƒผใƒฉใƒผใ‚ธใƒฅใƒ”ใ‚ฟใƒผ___Sailor_Moon_1053143.jpeg and b/civitai/lora_sd_1.5/Sailor_Jupiter_ใ‚ปใƒผใƒฉใƒผใ‚ธใƒฅใƒ”ใ‚ฟใƒผ___Sailor_Moon_1053143.jpeg differ diff --git a/civitai/lora_sd_1.5/Sailor_Mars_ใ‚ปใƒผใƒฉใƒผใƒžใƒผใ‚บ___Sailor_Moon_853339.jpeg b/civitai/lora_sd_1.5/Sailor_Mars_ใ‚ปใƒผใƒฉใƒผใƒžใƒผใ‚บ___Sailor_Moon_853339.jpeg index 018ae9c..891b4fb 100644 Binary files a/civitai/lora_sd_1.5/Sailor_Mars_ใ‚ปใƒผใƒฉใƒผใƒžใƒผใ‚บ___Sailor_Moon_853339.jpeg and b/civitai/lora_sd_1.5/Sailor_Mars_ใ‚ปใƒผใƒฉใƒผใƒžใƒผใ‚บ___Sailor_Moon_853339.jpeg differ diff --git a/civitai/lora_sd_1.5/Sailor_Mercury_ใ‚ปใƒผใƒฉใƒผใƒžใƒผใ‚ญใƒฅใƒชใƒผ___Sailor_Moon_651229.jpeg b/civitai/lora_sd_1.5/Sailor_Mercury_ใ‚ปใƒผใƒฉใƒผใƒžใƒผใ‚ญใƒฅใƒชใƒผ___Sailor_Moon_651229.jpeg index 6d83e57..15bc06a 100644 Binary files a/civitai/lora_sd_1.5/Sailor_Mercury_ใ‚ปใƒผใƒฉใƒผใƒžใƒผใ‚ญใƒฅใƒชใƒผ___Sailor_Moon_651229.jpeg and b/civitai/lora_sd_1.5/Sailor_Mercury_ใ‚ปใƒผใƒฉใƒผใƒžใƒผใ‚ญใƒฅใƒชใƒผ___Sailor_Moon_651229.jpeg differ diff --git a/civitai/lora_sd_1.5/Sailor_Moon__1992_Anime___Style__1051438.jpeg b/civitai/lora_sd_1.5/Sailor_Moon__1992_Anime___Style__1051438.jpeg index 89b0acc..060e7c8 100644 Binary files a/civitai/lora_sd_1.5/Sailor_Moon__1992_Anime___Style__1051438.jpeg and b/civitai/lora_sd_1.5/Sailor_Moon__1992_Anime___Style__1051438.jpeg differ diff --git a/civitai/lora_sd_1.5/Sailor_Moon__Tsukino_Usagi__ใ‚ปใƒผใƒฉใƒผใƒ ใƒผใƒณ__ๆœˆ้‡Žใ†ใ•ใŽ____Sailor_Moon_1837705.jpeg b/civitai/lora_sd_1.5/Sailor_Moon__Tsukino_Usagi__ใ‚ปใƒผใƒฉใƒผใƒ ใƒผใƒณ__ๆœˆ้‡Žใ†ใ•ใŽ____Sailor_Moon_1837705.jpeg index 1033506..2afa03a 100644 Binary files a/civitai/lora_sd_1.5/Sailor_Moon__Tsukino_Usagi__ใ‚ปใƒผใƒฉใƒผใƒ ใƒผใƒณ__ๆœˆ้‡Žใ†ใ•ใŽ____Sailor_Moon_1837705.jpeg and b/civitai/lora_sd_1.5/Sailor_Moon__Tsukino_Usagi__ใ‚ปใƒผใƒฉใƒผใƒ ใƒผใƒณ__ๆœˆ้‡Žใ†ใ•ใŽ____Sailor_Moon_1837705.jpeg differ diff --git a/civitai/lora_sd_1.5/Sailor_Venus_ใ‚ปใƒผใƒฉใƒผใƒดใ‚ฃใƒผใƒŠใ‚น___Sailor_Moon_852924.jpeg b/civitai/lora_sd_1.5/Sailor_Venus_ใ‚ปใƒผใƒฉใƒผใƒดใ‚ฃใƒผใƒŠใ‚น___Sailor_Moon_852924.jpeg index 10dfc2f..cdde200 100644 Binary files a/civitai/lora_sd_1.5/Sailor_Venus_ใ‚ปใƒผใƒฉใƒผใƒดใ‚ฃใƒผใƒŠใ‚น___Sailor_Moon_852924.jpeg and b/civitai/lora_sd_1.5/Sailor_Venus_ใ‚ปใƒผใƒฉใƒผใƒดใ‚ฃใƒผใƒŠใ‚น___Sailor_Moon_852924.jpeg differ diff --git a/civitai/lora_sd_1.5/Sakura___Sakura_Haruno__ๆ˜ฅ้‡Ž_ใ‚ตใ‚ฏใƒฉ______Boruto__Naruto_Next_Generations__628463.jpeg b/civitai/lora_sd_1.5/Sakura___Sakura_Haruno__ๆ˜ฅ้‡Ž_ใ‚ตใ‚ฏใƒฉ______Boruto__Naruto_Next_Generations__628463.jpeg index 35b9423..139685e 100644 Binary files a/civitai/lora_sd_1.5/Sakura___Sakura_Haruno__ๆ˜ฅ้‡Ž_ใ‚ตใ‚ฏใƒฉ______Boruto__Naruto_Next_Generations__628463.jpeg and b/civitai/lora_sd_1.5/Sakura___Sakura_Haruno__ๆ˜ฅ้‡Ž_ใ‚ตใ‚ฏใƒฉ______Boruto__Naruto_Next_Generations__628463.jpeg differ diff --git a/civitai/lora_sd_1.5/SamDoesArts__Sam_Yang__Style_LoRA__73379.jpeg b/civitai/lora_sd_1.5/SamDoesArts__Sam_Yang__Style_LoRA__73379.jpeg index fb89444..c256e5b 100644 Binary files a/civitai/lora_sd_1.5/SamDoesArts__Sam_Yang__Style_LoRA__73379.jpeg and b/civitai/lora_sd_1.5/SamDoesArts__Sam_Yang__Style_LoRA__73379.jpeg differ diff --git a/civitai/lora_sd_1.5/Samus_Aran__Metroid__LoRA_974613.jpeg b/civitai/lora_sd_1.5/Samus_Aran__Metroid__LoRA_974613.jpeg index b330850..020d6b7 100644 Binary files a/civitai/lora_sd_1.5/Samus_Aran__Metroid__LoRA_974613.jpeg and b/civitai/lora_sd_1.5/Samus_Aran__Metroid__LoRA_974613.jpeg differ diff --git a/civitai/lora_sd_1.5/Sandwiched___between_two_-_concept_851930.jpeg b/civitai/lora_sd_1.5/Sandwiched___between_two_-_concept_851930.jpeg index 3d8ac50..1a7b08d 100644 Binary files a/civitai/lora_sd_1.5/Sandwiched___between_two_-_concept_851930.jpeg and b/civitai/lora_sd_1.5/Sandwiched___between_two_-_concept_851930.jpeg differ diff --git a/civitai/lora_sd_1.5/Sangonomiya_Kokomi___Genshin_Impact___LoRA_320863.jpeg b/civitai/lora_sd_1.5/Sangonomiya_Kokomi___Genshin_Impact___LoRA_320863.jpeg index 8af4f56..69e6f11 100644 Binary files a/civitai/lora_sd_1.5/Sangonomiya_Kokomi___Genshin_Impact___LoRA_320863.jpeg and b/civitai/lora_sd_1.5/Sangonomiya_Kokomi___Genshin_Impact___LoRA_320863.jpeg differ diff --git a/civitai/lora_sd_1.5/Satono_Diamond__umamusume__168545.jpeg b/civitai/lora_sd_1.5/Satono_Diamond__umamusume__168545.jpeg index 0b8df60..6b19cae 100644 Binary files a/civitai/lora_sd_1.5/Satono_Diamond__umamusume__168545.jpeg and b/civitai/lora_sd_1.5/Satono_Diamond__umamusume__168545.jpeg differ diff --git a/civitai/lora_sd_1.5/Scarlett_Johansson_LoRa__83726.jpeg b/civitai/lora_sd_1.5/Scarlett_Johansson_LoRa__83726.jpeg index d9ccbce..625a7d5 100644 Binary files a/civitai/lora_sd_1.5/Scarlett_Johansson_LoRa__83726.jpeg and b/civitai/lora_sd_1.5/Scarlett_Johansson_LoRa__83726.jpeg differ diff --git a/civitai/lora_sd_1.5/Scene_Emo_Aesthetic__2010___388119.jpeg b/civitai/lora_sd_1.5/Scene_Emo_Aesthetic__2010___388119.jpeg index c3f7a09..d34584a 100644 Binary files a/civitai/lora_sd_1.5/Scene_Emo_Aesthetic__2010___388119.jpeg and b/civitai/lora_sd_1.5/Scene_Emo_Aesthetic__2010___388119.jpeg differ diff --git a/civitai/lora_sd_1.5/School_gate_background_943839.jpeg b/civitai/lora_sd_1.5/School_gate_background_943839.jpeg index bd19354..b9c4abd 100644 Binary files a/civitai/lora_sd_1.5/School_gate_background_943839.jpeg and b/civitai/lora_sd_1.5/School_gate_background_943839.jpeg differ diff --git a/civitai/lora_sd_1.5/School_gym_1737898.jpeg b/civitai/lora_sd_1.5/School_gym_1737898.jpeg index 24b799c..984fb29 100644 Binary files a/civitai/lora_sd_1.5/School_gym_1737898.jpeg and b/civitai/lora_sd_1.5/School_gym_1737898.jpeg differ diff --git a/civitai/lora_sd_1.5/School_rooftop_831010.jpeg b/civitai/lora_sd_1.5/School_rooftop_831010.jpeg index 6d2b2dd..ae49f06 100644 Binary files a/civitai/lora_sd_1.5/School_rooftop_831010.jpeg and b/civitai/lora_sd_1.5/School_rooftop_831010.jpeg differ diff --git a/civitai/lora_sd_1.5/Sexy___mirror_selfie_903723.jpeg b/civitai/lora_sd_1.5/Sexy___mirror_selfie_903723.jpeg index 031c866..e33595b 100644 Binary files a/civitai/lora_sd_1.5/Sexy___mirror_selfie_903723.jpeg and b/civitai/lora_sd_1.5/Sexy___mirror_selfie_903723.jpeg differ diff --git a/civitai/lora_sd_1.5/Sexy_clothing_collection_8841647.jpeg b/civitai/lora_sd_1.5/Sexy_clothing_collection_8841647.jpeg index ae760dc..e8d473b 100644 Binary files a/civitai/lora_sd_1.5/Sexy_clothing_collection_8841647.jpeg and b/civitai/lora_sd_1.5/Sexy_clothing_collection_8841647.jpeg differ diff --git a/civitai/lora_sd_1.5/Shadowed_Elegance___Cursed_beauty_style_LoRA_1601137.jpeg b/civitai/lora_sd_1.5/Shadowed_Elegance___Cursed_beauty_style_LoRA_1601137.jpeg index 83f9215..fb103ac 100644 Binary files a/civitai/lora_sd_1.5/Shadowed_Elegance___Cursed_beauty_style_LoRA_1601137.jpeg and b/civitai/lora_sd_1.5/Shadowed_Elegance___Cursed_beauty_style_LoRA_1601137.jpeg differ diff --git a/civitai/lora_sd_1.5/Shadowheart_-_Baldurs_Gate_3_-_SD1.5_LORA_3464985.jpeg b/civitai/lora_sd_1.5/Shadowheart_-_Baldurs_Gate_3_-_SD1.5_LORA_3464985.jpeg index 10aa143..1253971 100644 Binary files a/civitai/lora_sd_1.5/Shadowheart_-_Baldurs_Gate_3_-_SD1.5_LORA_3464985.jpeg and b/civitai/lora_sd_1.5/Shadowheart_-_Baldurs_Gate_3_-_SD1.5_LORA_3464985.jpeg differ diff --git a/civitai/lora_sd_1.5/Shanzhagao_ๅฑฑๆฅ‚็ณ•___Some_sort_of_style_Lora_458117.jpeg b/civitai/lora_sd_1.5/Shanzhagao_ๅฑฑๆฅ‚็ณ•___Some_sort_of_style_Lora_458117.jpeg index 1e4855d..e54a8a8 100644 Binary files a/civitai/lora_sd_1.5/Shanzhagao_ๅฑฑๆฅ‚็ณ•___Some_sort_of_style_Lora_458117.jpeg and b/civitai/lora_sd_1.5/Shanzhagao_ๅฑฑๆฅ‚็ณ•___Some_sort_of_style_Lora_458117.jpeg differ diff --git a/civitai/lora_sd_1.5/Sharpness_Tweaker_LoRA__้”ๅบฆ่ฐƒๆ•ดLoRA__851665.jpeg b/civitai/lora_sd_1.5/Sharpness_Tweaker_LoRA__้”ๅบฆ่ฐƒๆ•ดLoRA__851665.jpeg index 23df6e5..783ebd1 100644 Binary files a/civitai/lora_sd_1.5/Sharpness_Tweaker_LoRA__้”ๅบฆ่ฐƒๆ•ดLoRA__851665.jpeg and b/civitai/lora_sd_1.5/Sharpness_Tweaker_LoRA__้”ๅบฆ่ฐƒๆ•ดLoRA__851665.jpeg differ diff --git a/civitai/lora_sd_1.5/Shenhe_-_LoRA_Collection_of_Trauter_s_44166.jpeg b/civitai/lora_sd_1.5/Shenhe_-_LoRA_Collection_of_Trauter_s_44166.jpeg index 8a1cdea..f156c61 100644 Binary files a/civitai/lora_sd_1.5/Shenhe_-_LoRA_Collection_of_Trauter_s_44166.jpeg and b/civitai/lora_sd_1.5/Shenhe_-_LoRA_Collection_of_Trauter_s_44166.jpeg differ diff --git a/civitai/lora_sd_1.5/Shinjo_Akane_ๆ–ฐๆกใ‚ขใ‚ซใƒ___SSSS.GRIDMAN___GRIDMAN_UNIVERSE_1363331.jpeg b/civitai/lora_sd_1.5/Shinjo_Akane_ๆ–ฐๆกใ‚ขใ‚ซใƒ___SSSS.GRIDMAN___GRIDMAN_UNIVERSE_1363331.jpeg index 18493ef..fe54806 100644 Binary files a/civitai/lora_sd_1.5/Shinjo_Akane_ๆ–ฐๆกใ‚ขใ‚ซใƒ___SSSS.GRIDMAN___GRIDMAN_UNIVERSE_1363331.jpeg and b/civitai/lora_sd_1.5/Shinjo_Akane_ๆ–ฐๆกใ‚ขใ‚ซใƒ___SSSS.GRIDMAN___GRIDMAN_UNIVERSE_1363331.jpeg differ diff --git a/civitai/lora_sd_1.5/Shinobu_Kochou__Demon_Slayer__LoRA_63779.jpeg b/civitai/lora_sd_1.5/Shinobu_Kochou__Demon_Slayer__LoRA_63779.jpeg index ba10ac7..6d21822 100644 Binary files a/civitai/lora_sd_1.5/Shinobu_Kochou__Demon_Slayer__LoRA_63779.jpeg and b/civitai/lora_sd_1.5/Shinobu_Kochou__Demon_Slayer__LoRA_63779.jpeg differ diff --git a/civitai/lora_sd_1.5/Shirt_Tug_Pose__LORA__86755.jpeg b/civitai/lora_sd_1.5/Shirt_Tug_Pose__LORA__86755.jpeg index 5213b4c..576906f 100644 Binary files a/civitai/lora_sd_1.5/Shirt_Tug_Pose__LORA__86755.jpeg and b/civitai/lora_sd_1.5/Shirt_Tug_Pose__LORA__86755.jpeg differ diff --git a/civitai/lora_sd_1.5/Shokuhou_Misaki_้ฃŸ่œ‚ๆ“็ฅˆ___Toaru_Kagaku_no_Railgun_1363461.jpeg b/civitai/lora_sd_1.5/Shokuhou_Misaki_้ฃŸ่œ‚ๆ“็ฅˆ___Toaru_Kagaku_no_Railgun_1363461.jpeg index 1ac0569..0c3905b 100644 Binary files a/civitai/lora_sd_1.5/Shokuhou_Misaki_้ฃŸ่œ‚ๆ“็ฅˆ___Toaru_Kagaku_no_Railgun_1363461.jpeg and b/civitai/lora_sd_1.5/Shokuhou_Misaki_้ฃŸ่œ‚ๆ“็ฅˆ___Toaru_Kagaku_no_Railgun_1363461.jpeg differ diff --git a/civitai/lora_sd_1.5/Shuten_Douji__Fate_Grand_Order__536198.jpeg b/civitai/lora_sd_1.5/Shuten_Douji__Fate_Grand_Order__536198.jpeg index 09ee82b..346165b 100644 Binary files a/civitai/lora_sd_1.5/Shuten_Douji__Fate_Grand_Order__536198.jpeg and b/civitai/lora_sd_1.5/Shuten_Douji__Fate_Grand_Order__536198.jpeg differ diff --git a/civitai/lora_sd_1.5/Side_View_Perspective_838633.jpeg b/civitai/lora_sd_1.5/Side_View_Perspective_838633.jpeg index ea5f71b..e1a1bb0 100644 Binary files a/civitai/lora_sd_1.5/Side_View_Perspective_838633.jpeg and b/civitai/lora_sd_1.5/Side_View_Perspective_838633.jpeg differ diff --git a/civitai/lora_sd_1.5/Sister_Claire_ใ‚ทใ‚นใ‚ฟใƒผ_ใ‚ฏใƒฌใ‚ข___Nijisanji_10003860.jpeg b/civitai/lora_sd_1.5/Sister_Claire_ใ‚ทใ‚นใ‚ฟใƒผ_ใ‚ฏใƒฌใ‚ข___Nijisanji_10003860.jpeg index ff97682..e05916a 100644 Binary files a/civitai/lora_sd_1.5/Sister_Claire_ใ‚ทใ‚นใ‚ฟใƒผ_ใ‚ฏใƒฌใ‚ข___Nijisanji_10003860.jpeg and b/civitai/lora_sd_1.5/Sister_Claire_ใ‚ทใ‚นใ‚ฟใƒผ_ใ‚ฏใƒฌใ‚ข___Nijisanji_10003860.jpeg differ diff --git a/civitai/lora_sd_1.5/Skin___Hands__male_female__from_Polyhedron_1657179.jpeg b/civitai/lora_sd_1.5/Skin___Hands__male_female__from_Polyhedron_1657179.jpeg index a59e251..0407427 100644 Binary files a/civitai/lora_sd_1.5/Skin___Hands__male_female__from_Polyhedron_1657179.jpeg and b/civitai/lora_sd_1.5/Skin___Hands__male_female__from_Polyhedron_1657179.jpeg differ diff --git a/civitai/lora_sd_1.5/Snake_coiling_749596.jpeg b/civitai/lora_sd_1.5/Snake_coiling_749596.jpeg index 269fc00..9fd0e09 100644 Binary files a/civitai/lora_sd_1.5/Snake_coiling_749596.jpeg and b/civitai/lora_sd_1.5/Snake_coiling_749596.jpeg differ diff --git a/civitai/lora_sd_1.5/Spider_web_1113231.jpeg b/civitai/lora_sd_1.5/Spider_web_1113231.jpeg index 7b5fc6d..c9be308 100644 Binary files a/civitai/lora_sd_1.5/Spider_web_1113231.jpeg and b/civitai/lora_sd_1.5/Spider_web_1113231.jpeg differ diff --git a/civitai/lora_sd_1.5/Sport_Uniforms_Collection_1272097.jpeg b/civitai/lora_sd_1.5/Sport_Uniforms_Collection_1272097.jpeg index 3b94a36..820b549 100644 Binary files a/civitai/lora_sd_1.5/Sport_Uniforms_Collection_1272097.jpeg and b/civitai/lora_sd_1.5/Sport_Uniforms_Collection_1272097.jpeg differ diff --git a/civitai/lora_sd_1.5/Squeezer_-_Experimental_587193.jpeg b/civitai/lora_sd_1.5/Squeezer_-_Experimental_587193.jpeg index f0a36a8..00799d4 100644 Binary files a/civitai/lora_sd_1.5/Squeezer_-_Experimental_587193.jpeg and b/civitai/lora_sd_1.5/Squeezer_-_Experimental_587193.jpeg differ diff --git a/civitai/lora_sd_1.5/Standing_Full_Body_with_Background_Style_LoRA__ๅธฆ่ƒŒๆ™ฏ็ซ‹็ป˜_่ƒŒๆ™ฏไป˜ใ็ซ‹ใก็ตต__212087.jpeg b/civitai/lora_sd_1.5/Standing_Full_Body_with_Background_Style_LoRA__ๅธฆ่ƒŒๆ™ฏ็ซ‹็ป˜_่ƒŒๆ™ฏไป˜ใ็ซ‹ใก็ตต__212087.jpeg index 5476690..0ee6a4b 100644 Binary files a/civitai/lora_sd_1.5/Standing_Full_Body_with_Background_Style_LoRA__ๅธฆ่ƒŒๆ™ฏ็ซ‹็ป˜_่ƒŒๆ™ฏไป˜ใ็ซ‹ใก็ตต__212087.jpeg and b/civitai/lora_sd_1.5/Standing_Full_Body_with_Background_Style_LoRA__ๅธฆ่ƒŒๆ™ฏ็ซ‹็ป˜_่ƒŒๆ™ฏไป˜ใ็ซ‹ใก็ตต__212087.jpeg differ diff --git a/civitai/lora_sd_1.5/Standing_split_pose_968279.jpeg b/civitai/lora_sd_1.5/Standing_split_pose_968279.jpeg index 7e8139d..1b278b8 100644 Binary files a/civitai/lora_sd_1.5/Standing_split_pose_968279.jpeg and b/civitai/lora_sd_1.5/Standing_split_pose_968279.jpeg differ diff --git a/civitai/lora_sd_1.5/SteampunkAI__10MB__LoRA_extraction_270799.jpeg b/civitai/lora_sd_1.5/SteampunkAI__10MB__LoRA_extraction_270799.jpeg index f9da542..c82041d 100644 Binary files a/civitai/lora_sd_1.5/SteampunkAI__10MB__LoRA_extraction_270799.jpeg and b/civitai/lora_sd_1.5/SteampunkAI__10MB__LoRA_extraction_270799.jpeg differ diff --git a/civitai/lora_sd_1.5/Stone_Statue_LoRA_695940.jpeg b/civitai/lora_sd_1.5/Stone_Statue_LoRA_695940.jpeg index f9170c2..3440285 100644 Binary files a/civitai/lora_sd_1.5/Stone_Statue_LoRA_695940.jpeg and b/civitai/lora_sd_1.5/Stone_Statue_LoRA_695940.jpeg differ diff --git a/civitai/lora_sd_1.5/Studio_Ghibli_Style_LoRA_71811.jpeg b/civitai/lora_sd_1.5/Studio_Ghibli_Style_LoRA_71811.jpeg index f713eeb..974b661 100644 Binary files a/civitai/lora_sd_1.5/Studio_Ghibli_Style_LoRA_71811.jpeg and b/civitai/lora_sd_1.5/Studio_Ghibli_Style_LoRA_71811.jpeg differ diff --git a/civitai/lora_sd_1.5/Style_-_Jelly___425911.jpeg b/civitai/lora_sd_1.5/Style_-_Jelly___425911.jpeg index d182aa3..220a885 100644 Binary files a/civitai/lora_sd_1.5/Style_-_Jelly___425911.jpeg and b/civitai/lora_sd_1.5/Style_-_Jelly___425911.jpeg differ diff --git a/civitai/lora_sd_1.5/Stylized_3D_Model_LoRA_485405.jpeg b/civitai/lora_sd_1.5/Stylized_3D_Model_LoRA_485405.jpeg index 4e9653b..f2b11cb 100644 Binary files a/civitai/lora_sd_1.5/Stylized_3D_Model_LoRA_485405.jpeg and b/civitai/lora_sd_1.5/Stylized_3D_Model_LoRA_485405.jpeg differ diff --git a/civitai/lora_sd_1.5/Sugar_Water_Style_828786.jpeg b/civitai/lora_sd_1.5/Sugar_Water_Style_828786.jpeg index 5a6bb83..762085c 100644 Binary files a/civitai/lora_sd_1.5/Sugar_Water_Style_828786.jpeg and b/civitai/lora_sd_1.5/Sugar_Water_Style_828786.jpeg differ diff --git a/civitai/lora_sd_1.5/Sun_and_Shadow_223029.jpeg b/civitai/lora_sd_1.5/Sun_and_Shadow_223029.jpeg index 0f69d9c..75b2791 100644 Binary files a/civitai/lora_sd_1.5/Sun_and_Shadow_223029.jpeg and b/civitai/lora_sd_1.5/Sun_and_Shadow_223029.jpeg differ diff --git a/civitai/lora_sd_1.5/Surprised_eyes___้ฉšใ„ใŸ็›ฎ_4899712.jpeg b/civitai/lora_sd_1.5/Surprised_eyes___้ฉšใ„ใŸ็›ฎ_4899712.jpeg index bcc8748..abf023a 100644 Binary files a/civitai/lora_sd_1.5/Surprised_eyes___้ฉšใ„ใŸ็›ฎ_4899712.jpeg and b/civitai/lora_sd_1.5/Surprised_eyes___้ฉšใ„ใŸ็›ฎ_4899712.jpeg differ diff --git a/civitai/lora_sd_1.5/Suzumiya_Haruhi_ๆถผๅฎฎใƒใƒซใƒ’___Suzumiya_Haruhi_Series_296093.jpeg b/civitai/lora_sd_1.5/Suzumiya_Haruhi_ๆถผๅฎฎใƒใƒซใƒ’___Suzumiya_Haruhi_Series_296093.jpeg index a994ebb..c5e01ab 100644 Binary files a/civitai/lora_sd_1.5/Suzumiya_Haruhi_ๆถผๅฎฎใƒใƒซใƒ’___Suzumiya_Haruhi_Series_296093.jpeg and b/civitai/lora_sd_1.5/Suzumiya_Haruhi_ๆถผๅฎฎใƒใƒซใƒ’___Suzumiya_Haruhi_Series_296093.jpeg differ diff --git a/civitai/lora_sd_1.5/Suzy_224164.jpeg b/civitai/lora_sd_1.5/Suzy_224164.jpeg index 0d61bfa..0ca21a0 100644 Binary files a/civitai/lora_sd_1.5/Suzy_224164.jpeg and b/civitai/lora_sd_1.5/Suzy_224164.jpeg differ diff --git a/civitai/lora_sd_1.5/Sword_Art_Online_-_Girlpack_LoRA__40__3309629.jpeg b/civitai/lora_sd_1.5/Sword_Art_Online_-_Girlpack_LoRA__40__3309629.jpeg index 41694f3..0eeba04 100644 Binary files a/civitai/lora_sd_1.5/Sword_Art_Online_-_Girlpack_LoRA__40__3309629.jpeg and b/civitai/lora_sd_1.5/Sword_Art_Online_-_Girlpack_LoRA__40__3309629.jpeg differ diff --git a/civitai/lora_sd_1.5/TOKIAME_style__thick_outlines__LORA_53181.jpeg b/civitai/lora_sd_1.5/TOKIAME_style__thick_outlines__LORA_53181.jpeg index 857fd80..265c960 100644 Binary files a/civitai/lora_sd_1.5/TOKIAME_style__thick_outlines__LORA_53181.jpeg and b/civitai/lora_sd_1.5/TOKIAME_style__thick_outlines__LORA_53181.jpeg differ diff --git a/civitai/lora_sd_1.5/TWbabe_512803.jpeg b/civitai/lora_sd_1.5/TWbabe_512803.jpeg index 6e5be69..b6f3ceb 100644 Binary files a/civitai/lora_sd_1.5/TWbabe_512803.jpeg and b/civitai/lora_sd_1.5/TWbabe_512803.jpeg differ diff --git a/civitai/lora_sd_1.5/Tae_Takemi___Persona_5_1146420.jpeg b/civitai/lora_sd_1.5/Tae_Takemi___Persona_5_1146420.jpeg index bb3818c..104d824 100644 Binary files a/civitai/lora_sd_1.5/Tae_Takemi___Persona_5_1146420.jpeg and b/civitai/lora_sd_1.5/Tae_Takemi___Persona_5_1146420.jpeg differ diff --git a/civitai/lora_sd_1.5/Takeuchi_Takashi__Fate___Tsukihime__Style_LoRA_83673.jpeg b/civitai/lora_sd_1.5/Takeuchi_Takashi__Fate___Tsukihime__Style_LoRA_83673.jpeg index d1ed23e..864d139 100644 Binary files a/civitai/lora_sd_1.5/Takeuchi_Takashi__Fate___Tsukihime__Style_LoRA_83673.jpeg and b/civitai/lora_sd_1.5/Takeuchi_Takashi__Fate___Tsukihime__Style_LoRA_83673.jpeg differ diff --git a/civitai/lora_sd_1.5/Tangbohu_Line_Tweaker_LoRA__ๅ”ไผฏ่™Žๅ‹พ็บฟ่ฐƒๆ•ดLoRA__933861.jpeg b/civitai/lora_sd_1.5/Tangbohu_Line_Tweaker_LoRA__ๅ”ไผฏ่™Žๅ‹พ็บฟ่ฐƒๆ•ดLoRA__933861.jpeg index d145e71..30855a3 100644 Binary files a/civitai/lora_sd_1.5/Tangbohu_Line_Tweaker_LoRA__ๅ”ไผฏ่™Žๅ‹พ็บฟ่ฐƒๆ•ดLoRA__933861.jpeg and b/civitai/lora_sd_1.5/Tangbohu_Line_Tweaker_LoRA__ๅ”ไผฏ่™Žๅ‹พ็บฟ่ฐƒๆ•ดLoRA__933861.jpeg differ diff --git a/civitai/lora_sd_1.5/Tarot_Cards__Rider-Waite__763126.jpeg b/civitai/lora_sd_1.5/Tarot_Cards__Rider-Waite__763126.jpeg index 5c817b2..8a5ec8b 100644 Binary files a/civitai/lora_sd_1.5/Tarot_Cards__Rider-Waite__763126.jpeg and b/civitai/lora_sd_1.5/Tarot_Cards__Rider-Waite__763126.jpeg differ diff --git a/civitai/lora_sd_1.5/Tears_of_the_Kingdom_-_Princess_Zelda_836171.jpeg b/civitai/lora_sd_1.5/Tears_of_the_Kingdom_-_Princess_Zelda_836171.jpeg index 8221b8a..83fb302 100644 Binary files a/civitai/lora_sd_1.5/Tears_of_the_Kingdom_-_Princess_Zelda_836171.jpeg and b/civitai/lora_sd_1.5/Tears_of_the_Kingdom_-_Princess_Zelda_836171.jpeg differ diff --git a/civitai/lora_sd_1.5/Techpunk_Mask___Wearable_LoRA_422878.jpeg b/civitai/lora_sd_1.5/Techpunk_Mask___Wearable_LoRA_422878.jpeg index 64d5a6c..1ad56ca 100644 Binary files a/civitai/lora_sd_1.5/Techpunk_Mask___Wearable_LoRA_422878.jpeg and b/civitai/lora_sd_1.5/Techpunk_Mask___Wearable_LoRA_422878.jpeg differ diff --git a/civitai/lora_sd_1.5/Tennis_Outfit_727113.jpeg b/civitai/lora_sd_1.5/Tennis_Outfit_727113.jpeg index d0289b8..393c78b 100644 Binary files a/civitai/lora_sd_1.5/Tennis_Outfit_727113.jpeg and b/civitai/lora_sd_1.5/Tennis_Outfit_727113.jpeg differ diff --git a/civitai/lora_sd_1.5/Terada_Tera__ๅฏบ็”ฐใฆใ‚‰__Art_Style_LoRA_187362.jpeg b/civitai/lora_sd_1.5/Terada_Tera__ๅฏบ็”ฐใฆใ‚‰__Art_Style_LoRA_187362.jpeg index 375ceee..bc338d8 100644 Binary files a/civitai/lora_sd_1.5/Terada_Tera__ๅฏบ็”ฐใฆใ‚‰__Art_Style_LoRA_187362.jpeg and b/civitai/lora_sd_1.5/Terada_Tera__ๅฏบ็”ฐใฆใ‚‰__Art_Style_LoRA_187362.jpeg differ diff --git a/civitai/lora_sd_1.5/Tetsuya_Nomura__Kingdom_Hearts___Final_Fantasy__Style_LoRA_816284.jpeg b/civitai/lora_sd_1.5/Tetsuya_Nomura__Kingdom_Hearts___Final_Fantasy__Style_LoRA_816284.jpeg index 0e84645..c7abf5a 100644 Binary files a/civitai/lora_sd_1.5/Tetsuya_Nomura__Kingdom_Hearts___Final_Fantasy__Style_LoRA_816284.jpeg and b/civitai/lora_sd_1.5/Tetsuya_Nomura__Kingdom_Hearts___Final_Fantasy__Style_LoRA_816284.jpeg differ diff --git a/civitai/lora_sd_1.5/Texture_illustration_1473913.jpeg b/civitai/lora_sd_1.5/Texture_illustration_1473913.jpeg index 5d81f17..74cbaf1 100644 Binary files a/civitai/lora_sd_1.5/Texture_illustration_1473913.jpeg and b/civitai/lora_sd_1.5/Texture_illustration_1473913.jpeg differ diff --git a/civitai/lora_sd_1.5/Thai_High_school_uniform_1471793.jpeg b/civitai/lora_sd_1.5/Thai_High_school_uniform_1471793.jpeg index 6b50c2c..d44ac85 100644 Binary files a/civitai/lora_sd_1.5/Thai_High_school_uniform_1471793.jpeg and b/civitai/lora_sd_1.5/Thai_High_school_uniform_1471793.jpeg differ diff --git a/civitai/lora_sd_1.5/Thai_university_uniform_639332.jpeg b/civitai/lora_sd_1.5/Thai_university_uniform_639332.jpeg index 76f3d4a..0a223c5 100644 Binary files a/civitai/lora_sd_1.5/Thai_university_uniform_639332.jpeg and b/civitai/lora_sd_1.5/Thai_university_uniform_639332.jpeg differ diff --git a/civitai/lora_sd_1.5/The_Legend_of_Zelda__Breath_of_the_Wild_Style_LoRA_636742.jpeg b/civitai/lora_sd_1.5/The_Legend_of_Zelda__Breath_of_the_Wild_Style_LoRA_636742.jpeg index ea02afa..e4f0e4e 100644 Binary files a/civitai/lora_sd_1.5/The_Legend_of_Zelda__Breath_of_the_Wild_Style_LoRA_636742.jpeg and b/civitai/lora_sd_1.5/The_Legend_of_Zelda__Breath_of_the_Wild_Style_LoRA_636742.jpeg differ diff --git a/civitai/lora_sd_1.5/The_forest_light_1756823.jpeg b/civitai/lora_sd_1.5/The_forest_light_1756823.jpeg index 82569ea..6e8edb7 100644 Binary files a/civitai/lora_sd_1.5/The_forest_light_1756823.jpeg and b/civitai/lora_sd_1.5/The_forest_light_1756823.jpeg differ diff --git a/civitai/lora_sd_1.5/Thicker_Lines_Anime_Style_LoRA_Mix_165044.jpeg b/civitai/lora_sd_1.5/Thicker_Lines_Anime_Style_LoRA_Mix_165044.jpeg index 379db38..bc8306d 100644 Binary files a/civitai/lora_sd_1.5/Thicker_Lines_Anime_Style_LoRA_Mix_165044.jpeg and b/civitai/lora_sd_1.5/Thicker_Lines_Anime_Style_LoRA_Mix_165044.jpeg differ diff --git a/civitai/lora_sd_1.5/Thin_round_glasses_321699.jpeg b/civitai/lora_sd_1.5/Thin_round_glasses_321699.jpeg index 8e913ce..081ccbf 100644 Binary files a/civitai/lora_sd_1.5/Thin_round_glasses_321699.jpeg and b/civitai/lora_sd_1.5/Thin_round_glasses_321699.jpeg differ diff --git a/civitai/lora_sd_1.5/Three_Sided_View_LoRA_161120.jpeg b/civitai/lora_sd_1.5/Three_Sided_View_LoRA_161120.jpeg index 9516739..d59ec2a 100644 Binary files a/civitai/lora_sd_1.5/Three_Sided_View_LoRA_161120.jpeg and b/civitai/lora_sd_1.5/Three_Sided_View_LoRA_161120.jpeg differ diff --git a/civitai/lora_sd_1.5/TifOseMix_251643.jpeg b/civitai/lora_sd_1.5/TifOseMix_251643.jpeg index b99821c..d0effa4 100644 Binary files a/civitai/lora_sd_1.5/TifOseMix_251643.jpeg and b/civitai/lora_sd_1.5/TifOseMix_251643.jpeg differ diff --git a/civitai/lora_sd_1.5/Tifa_Lockhart__All_Outfits__LoRA_65659.jpeg b/civitai/lora_sd_1.5/Tifa_Lockhart__All_Outfits__LoRA_65659.jpeg index c37cc92..25b63df 100644 Binary files a/civitai/lora_sd_1.5/Tifa_Lockhart__All_Outfits__LoRA_65659.jpeg and b/civitai/lora_sd_1.5/Tifa_Lockhart__All_Outfits__LoRA_65659.jpeg differ diff --git a/civitai/lora_sd_1.5/Tifa_Lockhart_ใƒ†ใ‚ฃใƒ•ใ‚ก_ใƒญใƒƒใ‚ฏใƒใƒผใƒˆ__Final_Fantasy_VII__LoRA___11_Outfits_5853445.jpeg b/civitai/lora_sd_1.5/Tifa_Lockhart_ใƒ†ใ‚ฃใƒ•ใ‚ก_ใƒญใƒƒใ‚ฏใƒใƒผใƒˆ__Final_Fantasy_VII__LoRA___11_Outfits_5853445.jpeg index 9fe10fc..937f654 100644 Binary files a/civitai/lora_sd_1.5/Tifa_Lockhart_ใƒ†ใ‚ฃใƒ•ใ‚ก_ใƒญใƒƒใ‚ฏใƒใƒผใƒˆ__Final_Fantasy_VII__LoRA___11_Outfits_5853445.jpeg and b/civitai/lora_sd_1.5/Tifa_Lockhart_ใƒ†ใ‚ฃใƒ•ใ‚ก_ใƒญใƒƒใ‚ฏใƒใƒผใƒˆ__Final_Fantasy_VII__LoRA___11_Outfits_5853445.jpeg differ diff --git a/civitai/lora_sd_1.5/Toga_Himiko_TI_LoRA_129169.jpeg b/civitai/lora_sd_1.5/Toga_Himiko_TI_LoRA_129169.jpeg index 850717a..3e873d6 100644 Binary files a/civitai/lora_sd_1.5/Toga_Himiko_TI_LoRA_129169.jpeg and b/civitai/lora_sd_1.5/Toga_Himiko_TI_LoRA_129169.jpeg differ diff --git a/civitai/lora_sd_1.5/Torino_Aqua_Style_LoRA_105403.jpeg b/civitai/lora_sd_1.5/Torino_Aqua_Style_LoRA_105403.jpeg index 032f8d4..f56341a 100644 Binary files a/civitai/lora_sd_1.5/Torino_Aqua_Style_LoRA_105403.jpeg and b/civitai/lora_sd_1.5/Torino_Aqua_Style_LoRA_105403.jpeg differ diff --git a/civitai/lora_sd_1.5/Traditional_Maid_Dress_299086.jpeg b/civitai/lora_sd_1.5/Traditional_Maid_Dress_299086.jpeg index 6723454..a429e16 100644 Binary files a/civitai/lora_sd_1.5/Traditional_Maid_Dress_299086.jpeg and b/civitai/lora_sd_1.5/Traditional_Maid_Dress_299086.jpeg differ diff --git a/civitai/lora_sd_1.5/Tsunade_-__Naruto_1236239.jpeg b/civitai/lora_sd_1.5/Tsunade_-__Naruto_1236239.jpeg index 78a9baa..586b4e1 100644 Binary files a/civitai/lora_sd_1.5/Tsunade_-__Naruto_1236239.jpeg and b/civitai/lora_sd_1.5/Tsunade_-__Naruto_1236239.jpeg differ diff --git a/civitai/lora_sd_1.5/Tsunade__Naruto__LoRA_283679.jpeg b/civitai/lora_sd_1.5/Tsunade__Naruto__LoRA_283679.jpeg index 63790cf..c592403 100644 Binary files a/civitai/lora_sd_1.5/Tsunade__Naruto__LoRA_283679.jpeg and b/civitai/lora_sd_1.5/Tsunade__Naruto__LoRA_283679.jpeg differ diff --git a/civitai/lora_sd_1.5/Twitch_Emotes_LORA_241442.jpeg b/civitai/lora_sd_1.5/Twitch_Emotes_LORA_241442.jpeg index 8b378a6..5b52959 100644 Binary files a/civitai/lora_sd_1.5/Twitch_Emotes_LORA_241442.jpeg and b/civitai/lora_sd_1.5/Twitch_Emotes_LORA_241442.jpeg differ diff --git a/civitai/lora_sd_1.5/Urban_Samurai___v0.14___Clothing_LoRA_313048.jpeg b/civitai/lora_sd_1.5/Urban_Samurai___v0.14___Clothing_LoRA_313048.jpeg index 67c612b..7809845 100644 Binary files a/civitai/lora_sd_1.5/Urban_Samurai___v0.14___Clothing_LoRA_313048.jpeg and b/civitai/lora_sd_1.5/Urban_Samurai___v0.14___Clothing_LoRA_313048.jpeg differ diff --git a/civitai/lora_sd_1.5/Urushihara_Satoshi_ใ†ใ‚‹ใ—ๅŽŸๆ™บๅฟ—_ๆผ†ๅŽŸๆ™บๅฟ—__Langrisser___ๆขฆๅนปๆจกๆ‹Ÿๆˆ˜___ใƒ•ใƒญใƒณใƒˆใ‚คใƒŽใ‚ปใƒณใƒˆ___Front_Innocent__-_Artist_Style_2492319.jpeg b/civitai/lora_sd_1.5/Urushihara_Satoshi_ใ†ใ‚‹ใ—ๅŽŸๆ™บๅฟ—_ๆผ†ๅŽŸๆ™บๅฟ—__Langrisser___ๆขฆๅนปๆจกๆ‹Ÿๆˆ˜___ใƒ•ใƒญใƒณใƒˆใ‚คใƒŽใ‚ปใƒณใƒˆ___Front_Innocent__-_Artist_Style_2492319.jpeg index d6a1e96..bd78aef 100644 Binary files a/civitai/lora_sd_1.5/Urushihara_Satoshi_ใ†ใ‚‹ใ—ๅŽŸๆ™บๅฟ—_ๆผ†ๅŽŸๆ™บๅฟ—__Langrisser___ๆขฆๅนปๆจกๆ‹Ÿๆˆ˜___ใƒ•ใƒญใƒณใƒˆใ‚คใƒŽใ‚ปใƒณใƒˆ___Front_Innocent__-_Artist_Style_2492319.jpeg and b/civitai/lora_sd_1.5/Urushihara_Satoshi_ใ†ใ‚‹ใ—ๅŽŸๆ™บๅฟ—_ๆผ†ๅŽŸๆ™บๅฟ—__Langrisser___ๆขฆๅนปๆจกๆ‹Ÿๆˆ˜___ใƒ•ใƒญใƒณใƒˆใ‚คใƒŽใ‚ปใƒณใƒˆ___Front_Innocent__-_Artist_Style_2492319.jpeg differ diff --git a/civitai/lora_sd_1.5/Vector_illustration_3167199.jpeg b/civitai/lora_sd_1.5/Vector_illustration_3167199.jpeg index cccb32b..202ce9f 100644 Binary files a/civitai/lora_sd_1.5/Vector_illustration_3167199.jpeg and b/civitai/lora_sd_1.5/Vector_illustration_3167199.jpeg differ diff --git a/civitai/lora_sd_1.5/Videl_ใƒ“ใƒผใƒ‡ใƒซ___Dragon_Ball_Z_502497.jpeg b/civitai/lora_sd_1.5/Videl_ใƒ“ใƒผใƒ‡ใƒซ___Dragon_Ball_Z_502497.jpeg index 8dfc8ab..3190148 100644 Binary files a/civitai/lora_sd_1.5/Videl_ใƒ“ใƒผใƒ‡ใƒซ___Dragon_Ball_Z_502497.jpeg and b/civitai/lora_sd_1.5/Videl_ใƒ“ใƒผใƒ‡ใƒซ___Dragon_Ball_Z_502497.jpeg differ diff --git a/civitai/lora_sd_1.5/Vivid_Impactful_Style__Yoneyama_Mai__็ฑณๅฑฑ_่ˆž___Style_Likeness__-_LoRA_LoCon_376140.jpeg b/civitai/lora_sd_1.5/Vivid_Impactful_Style__Yoneyama_Mai__็ฑณๅฑฑ_่ˆž___Style_Likeness__-_LoRA_LoCon_376140.jpeg index 0c2d754..f62203c 100644 Binary files a/civitai/lora_sd_1.5/Vivid_Impactful_Style__Yoneyama_Mai__็ฑณๅฑฑ_่ˆž___Style_Likeness__-_LoRA_LoCon_376140.jpeg and b/civitai/lora_sd_1.5/Vivid_Impactful_Style__Yoneyama_Mai__็ฑณๅฑฑ_่ˆž___Style_Likeness__-_LoRA_LoCon_376140.jpeg differ diff --git a/civitai/lora_sd_1.5/Volley_Uniform_744012.jpeg b/civitai/lora_sd_1.5/Volley_Uniform_744012.jpeg index f72051e..778fef7 100644 Binary files a/civitai/lora_sd_1.5/Volley_Uniform_744012.jpeg and b/civitai/lora_sd_1.5/Volley_Uniform_744012.jpeg differ diff --git a/civitai/lora_sd_1.5/Vox_Machina_Style_LoRA_688196.jpeg b/civitai/lora_sd_1.5/Vox_Machina_Style_LoRA_688196.jpeg index 634169d..d097d42 100644 Binary files a/civitai/lora_sd_1.5/Vox_Machina_Style_LoRA_688196.jpeg and b/civitai/lora_sd_1.5/Vox_Machina_Style_LoRA_688196.jpeg differ diff --git a/civitai/lora_sd_1.5/WLOP_Style_LoRA_765072.jpeg b/civitai/lora_sd_1.5/WLOP_Style_LoRA_765072.jpeg index b13fedc..bb28d34 100644 Binary files a/civitai/lora_sd_1.5/WLOP_Style_LoRA_765072.jpeg and b/civitai/lora_sd_1.5/WLOP_Style_LoRA_765072.jpeg differ diff --git a/civitai/lora_sd_1.5/WRAV_EIMI_ๆทฑxxxใฟ_1349228.jpeg b/civitai/lora_sd_1.5/WRAV_EIMI_ๆทฑxxxใฟ_1349228.jpeg index a23cf91..08f8b5c 100644 Binary files a/civitai/lora_sd_1.5/WRAV_EIMI_ๆทฑxxxใฟ_1349228.jpeg and b/civitai/lora_sd_1.5/WRAV_EIMI_ๆทฑxxxใฟ_1349228.jpeg differ diff --git a/civitai/lora_sd_1.5/WRAV_YUA_ไธ‰xxไบœ_1066338.jpeg b/civitai/lora_sd_1.5/WRAV_YUA_ไธ‰xxไบœ_1066338.jpeg index 2224165..d133181 100644 Binary files a/civitai/lora_sd_1.5/WRAV_YUA_ไธ‰xxไบœ_1066338.jpeg and b/civitai/lora_sd_1.5/WRAV_YUA_ไธ‰xxไบœ_1066338.jpeg differ diff --git a/civitai/lora_sd_1.5/Waist_Slider__Microwaist____็ป†่…ฐ_1832170.jpeg b/civitai/lora_sd_1.5/Waist_Slider__Microwaist____็ป†่…ฐ_1832170.jpeg index 2f17e8d..c5d9a3a 100644 Binary files a/civitai/lora_sd_1.5/Waist_Slider__Microwaist____็ป†่…ฐ_1832170.jpeg and b/civitai/lora_sd_1.5/Waist_Slider__Microwaist____็ป†่…ฐ_1832170.jpeg differ diff --git a/civitai/lora_sd_1.5/Warhammer_40K_Sisters_of_Battle_122908.jpeg b/civitai/lora_sd_1.5/Warhammer_40K_Sisters_of_Battle_122908.jpeg index 96e2016..b2f5641 100644 Binary files a/civitai/lora_sd_1.5/Warhammer_40K_Sisters_of_Battle_122908.jpeg and b/civitai/lora_sd_1.5/Warhammer_40K_Sisters_of_Battle_122908.jpeg differ diff --git a/civitai/lora_sd_1.5/Wedding_Princess_Dress_524831.jpeg b/civitai/lora_sd_1.5/Wedding_Princess_Dress_524831.jpeg index ba13c86..3c0d1b8 100644 Binary files a/civitai/lora_sd_1.5/Wedding_Princess_Dress_524831.jpeg and b/civitai/lora_sd_1.5/Wedding_Princess_Dress_524831.jpeg differ diff --git a/civitai/lora_sd_1.5/Werewolf_693348.jpeg b/civitai/lora_sd_1.5/Werewolf_693348.jpeg index 4773890..25aa36d 100644 Binary files a/civitai/lora_sd_1.5/Werewolf_693348.jpeg and b/civitai/lora_sd_1.5/Werewolf_693348.jpeg differ diff --git a/civitai/lora_sd_1.5/XSArchi_127ๆ–ฐ็ง‘ๅนปNeo_Sci-Fi_1347346.jpeg b/civitai/lora_sd_1.5/XSArchi_127ๆ–ฐ็ง‘ๅนปNeo_Sci-Fi_1347346.jpeg index aca1f15..d12f6c1 100644 Binary files a/civitai/lora_sd_1.5/XSArchi_127ๆ–ฐ็ง‘ๅนปNeo_Sci-Fi_1347346.jpeg and b/civitai/lora_sd_1.5/XSArchi_127ๆ–ฐ็ง‘ๅนปNeo_Sci-Fi_1347346.jpeg differ diff --git a/civitai/lora_sd_1.5/XSarchitectural-19Houseplan_361944.jpeg b/civitai/lora_sd_1.5/XSarchitectural-19Houseplan_361944.jpeg index 21f88c1..7f67c2d 100644 Binary files a/civitai/lora_sd_1.5/XSarchitectural-19Houseplan_361944.jpeg and b/civitai/lora_sd_1.5/XSarchitectural-19Houseplan_361944.jpeg differ diff --git a/civitai/lora_sd_1.5/XSarchitectural-21Futuretechnologycity_375514.jpeg b/civitai/lora_sd_1.5/XSarchitectural-21Futuretechnologycity_375514.jpeg index 6ffae08..164832e 100644 Binary files a/civitai/lora_sd_1.5/XSarchitectural-21Futuretechnologycity_375514.jpeg and b/civitai/lora_sd_1.5/XSarchitectural-21Futuretechnologycity_375514.jpeg differ diff --git a/civitai/lora_sd_1.5/XSarchitectural-7Modern_interior_345106.jpeg b/civitai/lora_sd_1.5/XSarchitectural-7Modern_interior_345106.jpeg index 13987e2..e48742c 100644 Binary files a/civitai/lora_sd_1.5/XSarchitectural-7Modern_interior_345106.jpeg and b/civitai/lora_sd_1.5/XSarchitectural-7Modern_interior_345106.jpeg differ diff --git a/civitai/lora_sd_1.5/XXMix9_v20LoRa_651513.jpeg b/civitai/lora_sd_1.5/XXMix9_v20LoRa_651513.jpeg index 5bb2dbc..8e6d411 100644 Binary files a/civitai/lora_sd_1.5/XXMix9_v20LoRa_651513.jpeg and b/civitai/lora_sd_1.5/XXMix9_v20LoRa_651513.jpeg differ diff --git a/civitai/lora_sd_1.5/XiShi_s_fmvp_skin_in_Honor_of_Kings_219559.jpeg b/civitai/lora_sd_1.5/XiShi_s_fmvp_skin_in_Honor_of_Kings_219559.jpeg index 530ccb8..b6ff9c0 100644 Binary files a/civitai/lora_sd_1.5/XiShi_s_fmvp_skin_in_Honor_of_Kings_219559.jpeg and b/civitai/lora_sd_1.5/XiShi_s_fmvp_skin_in_Honor_of_Kings_219559.jpeg differ diff --git a/civitai/lora_sd_1.5/Xiaorouseeu___ๅฐๆŸ”SeeU_-_Chinese_cosplayer_and_influencer_9190466.jpeg b/civitai/lora_sd_1.5/Xiaorouseeu___ๅฐๆŸ”SeeU_-_Chinese_cosplayer_and_influencer_9190466.jpeg index 3533d8a..f25ed04 100644 Binary files a/civitai/lora_sd_1.5/Xiaorouseeu___ๅฐๆŸ”SeeU_-_Chinese_cosplayer_and_influencer_9190466.jpeg and b/civitai/lora_sd_1.5/Xiaorouseeu___ๅฐๆŸ”SeeU_-_Chinese_cosplayer_and_influencer_9190466.jpeg differ diff --git a/civitai/lora_sd_1.5/Yae_Miko___Realistic_Genshin_LORA_173273.jpeg b/civitai/lora_sd_1.5/Yae_Miko___Realistic_Genshin_LORA_173273.jpeg index 83fb3ca..82c55e7 100644 Binary files a/civitai/lora_sd_1.5/Yae_Miko___Realistic_Genshin_LORA_173273.jpeg and b/civitai/lora_sd_1.5/Yae_Miko___Realistic_Genshin_LORA_173273.jpeg differ diff --git a/civitai/lora_sd_1.5/Yamanaka_Ino__Naruto__173215.jpeg b/civitai/lora_sd_1.5/Yamanaka_Ino__Naruto__173215.jpeg index 2204ed7..a2ad078 100644 Binary files a/civitai/lora_sd_1.5/Yamanaka_Ino__Naruto__173215.jpeg and b/civitai/lora_sd_1.5/Yamanaka_Ino__Naruto__173215.jpeg differ diff --git a/civitai/lora_sd_1.5/Yeji_Itzy_106888.jpeg b/civitai/lora_sd_1.5/Yeji_Itzy_106888.jpeg index 6048e00..dc76236 100644 Binary files a/civitai/lora_sd_1.5/Yeji_Itzy_106888.jpeg and b/civitai/lora_sd_1.5/Yeji_Itzy_106888.jpeg differ diff --git a/civitai/lora_sd_1.5/Yelan_-_LoRA_Collection_of_Trauter_s_44178.jpeg b/civitai/lora_sd_1.5/Yelan_-_LoRA_Collection_of_Trauter_s_44178.jpeg index 3a7a2be..6880b5b 100644 Binary files a/civitai/lora_sd_1.5/Yelan_-_LoRA_Collection_of_Trauter_s_44178.jpeg and b/civitai/lora_sd_1.5/Yelan_-_LoRA_Collection_of_Trauter_s_44178.jpeg differ diff --git a/civitai/lora_sd_1.5/Yoga_Pants___olaz_1956456.jpeg b/civitai/lora_sd_1.5/Yoga_Pants___olaz_1956456.jpeg index c603506..b555e81 100644 Binary files a/civitai/lora_sd_1.5/Yoga_Pants___olaz_1956456.jpeg and b/civitai/lora_sd_1.5/Yoga_Pants___olaz_1956456.jpeg differ diff --git a/civitai/lora_sd_1.5/Yoimiya_Genshin_Impact___Character_Lora_1378_519516.jpeg b/civitai/lora_sd_1.5/Yoimiya_Genshin_Impact___Character_Lora_1378_519516.jpeg index c1912e9..45b68c8 100644 Binary files a/civitai/lora_sd_1.5/Yoimiya_Genshin_Impact___Character_Lora_1378_519516.jpeg and b/civitai/lora_sd_1.5/Yoimiya_Genshin_Impact___Character_Lora_1378_519516.jpeg differ diff --git a/civitai/lora_sd_1.5/Yoji_Shinkawa_Style_LoRA_142110.jpeg b/civitai/lora_sd_1.5/Yoji_Shinkawa_Style_LoRA_142110.jpeg index c0e6df3..3bfbb0c 100644 Binary files a/civitai/lora_sd_1.5/Yoji_Shinkawa_Style_LoRA_142110.jpeg and b/civitai/lora_sd_1.5/Yoji_Shinkawa_Style_LoRA_142110.jpeg differ diff --git a/civitai/lora_sd_1.5/Yoneyama_Mai_Style_295352.jpeg b/civitai/lora_sd_1.5/Yoneyama_Mai_Style_295352.jpeg index eb925bc..43a8707 100644 Binary files a/civitai/lora_sd_1.5/Yoneyama_Mai_Style_295352.jpeg and b/civitai/lora_sd_1.5/Yoneyama_Mai_Style_295352.jpeg differ diff --git a/civitai/lora_sd_1.5/Yor_Briar__Spy_x_Family__LoRA_81097.jpeg b/civitai/lora_sd_1.5/Yor_Briar__Spy_x_Family__LoRA_81097.jpeg index c6a0488..bbbeb8b 100644 Binary files a/civitai/lora_sd_1.5/Yor_Briar__Spy_x_Family__LoRA_81097.jpeg and b/civitai/lora_sd_1.5/Yor_Briar__Spy_x_Family__LoRA_81097.jpeg differ diff --git a/civitai/lora_sd_1.5/Yor_Briar___Realistic__LORA_263517.jpeg b/civitai/lora_sd_1.5/Yor_Briar___Realistic__LORA_263517.jpeg index f99895f..6c00e15 100644 Binary files a/civitai/lora_sd_1.5/Yor_Briar___Realistic__LORA_263517.jpeg and b/civitai/lora_sd_1.5/Yor_Briar___Realistic__LORA_263517.jpeg differ diff --git a/civitai/lora_sd_1.5/Yor_Forger__Yor_Briar__ใƒจใƒซ_ใƒ•ใ‚ฉใƒผใ‚ธใƒฃใƒผ__ใƒจใƒซ_ใƒ–ใƒฉใ‚คใ‚ข____SPY___FAMILY_1739531.jpeg b/civitai/lora_sd_1.5/Yor_Forger__Yor_Briar__ใƒจใƒซ_ใƒ•ใ‚ฉใƒผใ‚ธใƒฃใƒผ__ใƒจใƒซ_ใƒ–ใƒฉใ‚คใ‚ข____SPY___FAMILY_1739531.jpeg index 584f86c..360f6f2 100644 Binary files a/civitai/lora_sd_1.5/Yor_Forger__Yor_Briar__ใƒจใƒซ_ใƒ•ใ‚ฉใƒผใ‚ธใƒฃใƒผ__ใƒจใƒซ_ใƒ–ใƒฉใ‚คใ‚ข____SPY___FAMILY_1739531.jpeg and b/civitai/lora_sd_1.5/Yor_Forger__Yor_Briar__ใƒจใƒซ_ใƒ•ใ‚ฉใƒผใ‚ธใƒฃใƒผ__ใƒจใƒซ_ใƒ–ใƒฉใ‚คใ‚ข____SPY___FAMILY_1739531.jpeg differ diff --git a/civitai/lora_sd_1.5/Yoshitaka_Amano_Style_LoRA_698760.jpeg b/civitai/lora_sd_1.5/Yoshitaka_Amano_Style_LoRA_698760.jpeg index c7103c1..7d39648 100644 Binary files a/civitai/lora_sd_1.5/Yoshitaka_Amano_Style_LoRA_698760.jpeg and b/civitai/lora_sd_1.5/Yoshitaka_Amano_Style_LoRA_698760.jpeg differ diff --git a/civitai/lora_sd_1.5/Yurisa_Lora_346264.jpeg b/civitai/lora_sd_1.5/Yurisa_Lora_346264.jpeg index d403266..7527d37 100644 Binary files a/civitai/lora_sd_1.5/Yurisa_Lora_346264.jpeg and b/civitai/lora_sd_1.5/Yurisa_Lora_346264.jpeg differ diff --git a/civitai/lora_sd_1.5/Yuuki_Asuna_็ตๅŸŽๆ˜Žๆ—ฅๅฅˆ___Sword_Art_Online_2406501.jpeg b/civitai/lora_sd_1.5/Yuuki_Asuna_็ตๅŸŽๆ˜Žๆ—ฅๅฅˆ___Sword_Art_Online_2406501.jpeg index f47aa44..4205254 100644 Binary files a/civitai/lora_sd_1.5/Yuuki_Asuna_็ตๅŸŽๆ˜Žๆ—ฅๅฅˆ___Sword_Art_Online_2406501.jpeg and b/civitai/lora_sd_1.5/Yuuki_Asuna_็ตๅŸŽๆ˜Žๆ—ฅๅฅˆ___Sword_Art_Online_2406501.jpeg differ diff --git a/civitai/lora_sd_1.5/Zero_Two__DARLING_in_the_FRANXX__LoRA_125497.jpeg b/civitai/lora_sd_1.5/Zero_Two__DARLING_in_the_FRANXX__LoRA_125497.jpeg index d1dec7c..82b7907 100644 Binary files a/civitai/lora_sd_1.5/Zero_Two__DARLING_in_the_FRANXX__LoRA_125497.jpeg and b/civitai/lora_sd_1.5/Zero_Two__DARLING_in_the_FRANXX__LoRA_125497.jpeg differ diff --git a/civitai/lora_sd_1.5/Zhao_Jinmai__Chinese_actress__340466.jpeg b/civitai/lora_sd_1.5/Zhao_Jinmai__Chinese_actress__340466.jpeg index 7cd676c..f20b5b8 100644 Binary files a/civitai/lora_sd_1.5/Zhao_Jinmai__Chinese_actress__340466.jpeg and b/civitai/lora_sd_1.5/Zhao_Jinmai__Chinese_actress__340466.jpeg differ diff --git a/civitai/lora_sd_1.5/Zombies_718772.jpeg b/civitai/lora_sd_1.5/Zombies_718772.jpeg index 3d201fd..1a7ce1b 100644 Binary files a/civitai/lora_sd_1.5/Zombies_718772.jpeg and b/civitai/lora_sd_1.5/Zombies_718772.jpeg differ diff --git a/civitai/lora_sd_1.5/Zoom_Slider_-_LoRA_1680148.jpeg b/civitai/lora_sd_1.5/Zoom_Slider_-_LoRA_1680148.jpeg index c9562d6..94719cf 100644 Binary files a/civitai/lora_sd_1.5/Zoom_Slider_-_LoRA_1680148.jpeg and b/civitai/lora_sd_1.5/Zoom_Slider_-_LoRA_1680148.jpeg differ diff --git a/civitai/lora_sd_1.5/Zovya_s_Wet_Hair_488681.jpeg b/civitai/lora_sd_1.5/Zovya_s_Wet_Hair_488681.jpeg index 7b4b00f..8f1016a 100644 Binary files a/civitai/lora_sd_1.5/Zovya_s_Wet_Hair_488681.jpeg and b/civitai/lora_sd_1.5/Zovya_s_Wet_Hair_488681.jpeg differ diff --git a/civitai/lora_sd_1.5/_Art_Style_ChiChi_Style_364334.jpeg b/civitai/lora_sd_1.5/_Art_Style_ChiChi_Style_364334.jpeg index 93d255c..8ab40e8 100644 Binary files a/civitai/lora_sd_1.5/_Art_Style_ChiChi_Style_364334.jpeg and b/civitai/lora_sd_1.5/_Art_Style_ChiChi_Style_364334.jpeg differ diff --git a/civitai/lora_sd_1.5/_Art_Style_Maidoll_Style_364300.jpeg b/civitai/lora_sd_1.5/_Art_Style_Maidoll_Style_364300.jpeg index 2de2f4d..527597a 100644 Binary files a/civitai/lora_sd_1.5/_Art_Style_Maidoll_Style_364300.jpeg and b/civitai/lora_sd_1.5/_Art_Style_Maidoll_Style_364300.jpeg differ diff --git a/civitai/lora_sd_1.5/_Blue_Archive_Emoji_style_515320.jpeg b/civitai/lora_sd_1.5/_Blue_Archive_Emoji_style_515320.jpeg index d339765..6d286f9 100644 Binary files a/civitai/lora_sd_1.5/_Blue_Archive_Emoji_style_515320.jpeg and b/civitai/lora_sd_1.5/_Blue_Archive_Emoji_style_515320.jpeg differ diff --git a/civitai/lora_sd_1.5/_Character_Akiryo_s_Mai_1594517.jpeg b/civitai/lora_sd_1.5/_Character_Akiryo_s_Mai_1594517.jpeg index bf97002..1e5af0b 100644 Binary files a/civitai/lora_sd_1.5/_Character_Akiryo_s_Mai_1594517.jpeg and b/civitai/lora_sd_1.5/_Character_Akiryo_s_Mai_1594517.jpeg differ diff --git a/civitai/lora_sd_1.5/_Character_Kafka__Honkai__Star_Rail__3096004.jpeg b/civitai/lora_sd_1.5/_Character_Kafka__Honkai__Star_Rail__3096004.jpeg index 5343168..18d84f0 100644 Binary files a/civitai/lora_sd_1.5/_Character_Kafka__Honkai__Star_Rail__3096004.jpeg and b/civitai/lora_sd_1.5/_Character_Kafka__Honkai__Star_Rail__3096004.jpeg differ diff --git a/civitai/lora_sd_1.5/_Character___Art_Style_Fashion_Girl_6966259.jpeg b/civitai/lora_sd_1.5/_Character___Art_Style_Fashion_Girl_6966259.jpeg index e2ccf05..7aca679 100644 Binary files a/civitai/lora_sd_1.5/_Character___Art_Style_Fashion_Girl_6966259.jpeg and b/civitai/lora_sd_1.5/_Character___Art_Style_Fashion_Girl_6966259.jpeg differ diff --git a/civitai/lora_sd_1.5/_Character_alice__nikke__185348.jpeg b/civitai/lora_sd_1.5/_Character_alice__nikke__185348.jpeg index d13abb7..f9eb013 100644 Binary files a/civitai/lora_sd_1.5/_Character_alice__nikke__185348.jpeg and b/civitai/lora_sd_1.5/_Character_alice__nikke__185348.jpeg differ diff --git a/civitai/lora_sd_1.5/_Concept_Blank_eyes_Hypnosis_ๅ‚ฌ็œ _Mind_control_459571.jpeg b/civitai/lora_sd_1.5/_Concept_Blank_eyes_Hypnosis_ๅ‚ฌ็œ _Mind_control_459571.jpeg index 0b1b7b5..7d9cc88 100644 Binary files a/civitai/lora_sd_1.5/_Concept_Blank_eyes_Hypnosis_ๅ‚ฌ็œ _Mind_control_459571.jpeg and b/civitai/lora_sd_1.5/_Concept_Blank_eyes_Hypnosis_ๅ‚ฌ็œ _Mind_control_459571.jpeg differ diff --git a/civitai/lora_sd_1.5/_Concept_Carried_Breast_Rest_ๆ‰˜็‰ฉๆญ‡่ƒธ_727254.jpeg b/civitai/lora_sd_1.5/_Concept_Carried_Breast_Rest_ๆ‰˜็‰ฉๆญ‡่ƒธ_727254.jpeg index fdf9457..bc3da8d 100644 Binary files a/civitai/lora_sd_1.5/_Concept_Carried_Breast_Rest_ๆ‰˜็‰ฉๆญ‡่ƒธ_727254.jpeg and b/civitai/lora_sd_1.5/_Concept_Carried_Breast_Rest_ๆ‰˜็‰ฉๆญ‡่ƒธ_727254.jpeg differ diff --git a/civitai/lora_sd_1.5/_Concept_Cultivation_Tank_Stasis_Tank_ๅŸนๅ…ป็ฝ_ๅŸนๅ…ป็ผธ_238396.jpeg b/civitai/lora_sd_1.5/_Concept_Cultivation_Tank_Stasis_Tank_ๅŸนๅ…ป็ฝ_ๅŸนๅ…ป็ผธ_238396.jpeg index a5acf8c..2df01e3 100644 Binary files a/civitai/lora_sd_1.5/_Concept_Cultivation_Tank_Stasis_Tank_ๅŸนๅ…ป็ฝ_ๅŸนๅ…ป็ผธ_238396.jpeg and b/civitai/lora_sd_1.5/_Concept_Cultivation_Tank_Stasis_Tank_ๅŸนๅ…ป็ฝ_ๅŸนๅ…ป็ผธ_238396.jpeg differ diff --git a/civitai/lora_sd_1.5/_Concept_Delivery_In_Box_่ฃ…็ฎฑ_111823.jpeg b/civitai/lora_sd_1.5/_Concept_Delivery_In_Box_่ฃ…็ฎฑ_111823.jpeg index 4782cd9..952a14a 100644 Binary files a/civitai/lora_sd_1.5/_Concept_Delivery_In_Box_่ฃ…็ฎฑ_111823.jpeg and b/civitai/lora_sd_1.5/_Concept_Delivery_In_Box_่ฃ…็ฎฑ_111823.jpeg differ diff --git a/civitai/lora_sd_1.5/_Concept_Liquid_Clothes_Liquid_Dress_ๆฐด่ฃ™_2275514.jpeg b/civitai/lora_sd_1.5/_Concept_Liquid_Clothes_Liquid_Dress_ๆฐด่ฃ™_2275514.jpeg index 17c13d6..da2c335 100644 Binary files a/civitai/lora_sd_1.5/_Concept_Liquid_Clothes_Liquid_Dress_ๆฐด่ฃ™_2275514.jpeg and b/civitai/lora_sd_1.5/_Concept_Liquid_Clothes_Liquid_Dress_ๆฐด่ฃ™_2275514.jpeg differ diff --git a/civitai/lora_sd_1.5/_Costume_Better_Ghost_Costume_ๆ›ดๅฅฝ็š„ๅนฝ็ต่ฃ…_734819.jpeg b/civitai/lora_sd_1.5/_Costume_Better_Ghost_Costume_ๆ›ดๅฅฝ็š„ๅนฝ็ต่ฃ…_734819.jpeg index b493444..f59277e 100644 Binary files a/civitai/lora_sd_1.5/_Costume_Better_Ghost_Costume_ๆ›ดๅฅฝ็š„ๅนฝ็ต่ฃ…_734819.jpeg and b/civitai/lora_sd_1.5/_Costume_Better_Ghost_Costume_ๆ›ดๅฅฝ็š„ๅนฝ็ต่ฃ…_734819.jpeg differ diff --git a/civitai/lora_sd_1.5/_Costume_Greek_Clothes_ๅธŒ่…Šๅผ็™ฝ่ข_959149.jpeg b/civitai/lora_sd_1.5/_Costume_Greek_Clothes_ๅธŒ่…Šๅผ็™ฝ่ข_959149.jpeg index 09e34e4..c4bb0da 100644 Binary files a/civitai/lora_sd_1.5/_Costume_Greek_Clothes_ๅธŒ่…Šๅผ็™ฝ่ข_959149.jpeg and b/civitai/lora_sd_1.5/_Costume_Greek_Clothes_ๅธŒ่…Šๅผ็™ฝ่ข_959149.jpeg differ diff --git a/civitai/lora_sd_1.5/_Expression______Smug_้›Œๅฐ้ฌผใฎ็ฌ‘_1245093.jpeg b/civitai/lora_sd_1.5/_Expression______Smug_้›Œๅฐ้ฌผใฎ็ฌ‘_1245093.jpeg index 3bd66ae..06745ce 100644 Binary files a/civitai/lora_sd_1.5/_Expression______Smug_้›Œๅฐ้ฌผใฎ็ฌ‘_1245093.jpeg and b/civitai/lora_sd_1.5/_Expression______Smug_้›Œๅฐ้ฌผใฎ็ฌ‘_1245093.jpeg differ diff --git a/civitai/lora_sd_1.5/_FireVFX_-_Create_more_consistent_fire_253215.jpeg b/civitai/lora_sd_1.5/_FireVFX_-_Create_more_consistent_fire_253215.jpeg index b6b8ac2..dd21127 100644 Binary files a/civitai/lora_sd_1.5/_FireVFX_-_Create_more_consistent_fire_253215.jpeg and b/civitai/lora_sd_1.5/_FireVFX_-_Create_more_consistent_fire_253215.jpeg differ diff --git a/civitai/lora_sd_1.5/_LoCon_LoRA__Airconditioner_็ฉบ่ฐƒ_Style_300969.jpeg b/civitai/lora_sd_1.5/_LoCon_LoRA__Airconditioner_็ฉบ่ฐƒ_Style_300969.jpeg index 21f03e3..8e9738c 100644 Binary files a/civitai/lora_sd_1.5/_LoCon_LoRA__Airconditioner_็ฉบ่ฐƒ_Style_300969.jpeg and b/civitai/lora_sd_1.5/_LoCon_LoRA__Airconditioner_็ฉบ่ฐƒ_Style_300969.jpeg differ diff --git a/civitai/lora_sd_1.5/_LoCon_LoRA__Nardack_Style_197537.jpeg b/civitai/lora_sd_1.5/_LoCon_LoRA__Nardack_Style_197537.jpeg index 252a39f..67be2e6 100644 Binary files a/civitai/lora_sd_1.5/_LoCon_LoRA__Nardack_Style_197537.jpeg and b/civitai/lora_sd_1.5/_LoCon_LoRA__Nardack_Style_197537.jpeg differ diff --git a/civitai/lora_sd_1.5/_LoCon_LoRA__Octans_ๅ…ซๅˆ†ๅ„€_Style_772026.jpeg b/civitai/lora_sd_1.5/_LoCon_LoRA__Octans_ๅ…ซๅˆ†ๅ„€_Style_772026.jpeg index b8d0473..93c8a17 100644 Binary files a/civitai/lora_sd_1.5/_LoCon_LoRA__Octans_ๅ…ซๅˆ†ๅ„€_Style_772026.jpeg and b/civitai/lora_sd_1.5/_LoCon_LoRA__Octans_ๅ…ซๅˆ†ๅ„€_Style_772026.jpeg differ diff --git a/civitai/lora_sd_1.5/_LoRA__Jellyfish_forest___ๆฐดๆœˆๆฃฎ__ใใ‚‰ใ’ใ‚‚ใ‚Š_Concept__With_dropout___noise_version__1486390.jpeg b/civitai/lora_sd_1.5/_LoRA__Jellyfish_forest___ๆฐดๆœˆๆฃฎ__ใใ‚‰ใ’ใ‚‚ใ‚Š_Concept__With_dropout___noise_version__1486390.jpeg index 3aeb762..83828a9 100644 Binary files a/civitai/lora_sd_1.5/_LoRA__Jellyfish_forest___ๆฐดๆœˆๆฃฎ__ใใ‚‰ใ’ใ‚‚ใ‚Š_Concept__With_dropout___noise_version__1486390.jpeg and b/civitai/lora_sd_1.5/_LoRA__Jellyfish_forest___ๆฐดๆœˆๆฃฎ__ใใ‚‰ใ’ใ‚‚ใ‚Š_Concept__With_dropout___noise_version__1486390.jpeg differ diff --git a/civitai/lora_sd_1.5/_LoRA_ๅœฐ้›ท็ณป_้‡็”ฃๅž‹ใƒ•ใ‚กใƒƒใ‚ทใƒงใƒณ___landmine_girl_fashion___ๅœฐ้›ท็ณป้‡ไบง็ณปๅฆนๅญ_376040.jpeg b/civitai/lora_sd_1.5/_LoRA_ๅœฐ้›ท็ณป_้‡็”ฃๅž‹ใƒ•ใ‚กใƒƒใ‚ทใƒงใƒณ___landmine_girl_fashion___ๅœฐ้›ท็ณป้‡ไบง็ณปๅฆนๅญ_376040.jpeg index c0347a4..763d75b 100644 Binary files a/civitai/lora_sd_1.5/_LoRA_ๅœฐ้›ท็ณป_้‡็”ฃๅž‹ใƒ•ใ‚กใƒƒใ‚ทใƒงใƒณ___landmine_girl_fashion___ๅœฐ้›ท็ณป้‡ไบง็ณปๅฆนๅญ_376040.jpeg and b/civitai/lora_sd_1.5/_LoRA_ๅœฐ้›ท็ณป_้‡็”ฃๅž‹ใƒ•ใ‚กใƒƒใ‚ทใƒงใƒณ___landmine_girl_fashion___ๅœฐ้›ท็ณป้‡ไบง็ณปๅฆนๅญ_376040.jpeg differ diff --git a/civitai/lora_sd_1.5/_LuisaP__Pixel_art_LORA_122633.jpeg b/civitai/lora_sd_1.5/_LuisaP__Pixel_art_LORA_122633.jpeg index 69a404a..f92d3e2 100644 Binary files a/civitai/lora_sd_1.5/_LuisaP__Pixel_art_LORA_122633.jpeg and b/civitai/lora_sd_1.5/_LuisaP__Pixel_art_LORA_122633.jpeg differ diff --git a/civitai/lora_sd_1.5/_Muggle_Lora_Escalatorview_ๆ‰ถๆขฏ่ง†่ง’_1717785.jpeg b/civitai/lora_sd_1.5/_Muggle_Lora_Escalatorview_ๆ‰ถๆขฏ่ง†่ง’_1717785.jpeg index a0e5f0d..2bb0557 100644 Binary files a/civitai/lora_sd_1.5/_Muggle_Lora_Escalatorview_ๆ‰ถๆขฏ่ง†่ง’_1717785.jpeg and b/civitai/lora_sd_1.5/_Muggle_Lora_Escalatorview_ๆ‰ถๆขฏ่ง†่ง’_1717785.jpeg differ diff --git a/civitai/lora_sd_1.5/_Muggle_Lora_Nightclub_Girls_Crazy_Party_Girls_944659.jpeg b/civitai/lora_sd_1.5/_Muggle_Lora_Nightclub_Girls_Crazy_Party_Girls_944659.jpeg index 4efd99c..66b1a4c 100644 Binary files a/civitai/lora_sd_1.5/_Muggle_Lora_Nightclub_Girls_Crazy_Party_Girls_944659.jpeg and b/civitai/lora_sd_1.5/_Muggle_Lora_Nightclub_Girls_Crazy_Party_Girls_944659.jpeg differ diff --git a/civitai/lora_sd_1.5/_Muggle_Lora_Open_Coat_้•ฟๆฌพ้ฃŽ่กฃๅค–ๅฅ—_1718415.jpeg b/civitai/lora_sd_1.5/_Muggle_Lora_Open_Coat_้•ฟๆฌพ้ฃŽ่กฃๅค–ๅฅ—_1718415.jpeg index 3de4332..0587f6c 100644 Binary files a/civitai/lora_sd_1.5/_Muggle_Lora_Open_Coat_้•ฟๆฌพ้ฃŽ่กฃๅค–ๅฅ—_1718415.jpeg and b/civitai/lora_sd_1.5/_Muggle_Lora_Open_Coat_้•ฟๆฌพ้ฃŽ่กฃๅค–ๅฅ—_1718415.jpeg differ diff --git a/civitai/lora_sd_1.5/_Muggle_Lora_Real_Fitting_room_selfie_็œŸๅฎž่ฏ•่กฃ้—ด่‡ชๆ‹_937616.jpeg b/civitai/lora_sd_1.5/_Muggle_Lora_Real_Fitting_room_selfie_็œŸๅฎž่ฏ•่กฃ้—ด่‡ชๆ‹_937616.jpeg index 01688a0..0e76e02 100644 Binary files a/civitai/lora_sd_1.5/_Muggle_Lora_Real_Fitting_room_selfie_็œŸๅฎž่ฏ•่กฃ้—ด่‡ชๆ‹_937616.jpeg and b/civitai/lora_sd_1.5/_Muggle_Lora_Real_Fitting_room_selfie_็œŸๅฎž่ฏ•่กฃ้—ด่‡ชๆ‹_937616.jpeg differ diff --git a/civitai/lora_sd_1.5/_Muggle_Lora_S-shape_body_slider_่บซๆ่ฐƒ่Š‚ๅ™จ_2213014.jpeg b/civitai/lora_sd_1.5/_Muggle_Lora_S-shape_body_slider_่บซๆ่ฐƒ่Š‚ๅ™จ_2213014.jpeg index 4b32b5c..9bb7c82 100644 Binary files a/civitai/lora_sd_1.5/_Muggle_Lora_S-shape_body_slider_่บซๆ่ฐƒ่Š‚ๅ™จ_2213014.jpeg and b/civitai/lora_sd_1.5/_Muggle_Lora_S-shape_body_slider_่บซๆ่ฐƒ่Š‚ๅ™จ_2213014.jpeg differ diff --git a/civitai/lora_sd_1.5/_Muggle_Lora_by_large_window_french_windowLora_่ฝๅœฐ็ช—_ๆณ•ๅผๅคง็ช—ๆˆท_1118871.jpeg b/civitai/lora_sd_1.5/_Muggle_Lora_by_large_window_french_windowLora_่ฝๅœฐ็ช—_ๆณ•ๅผๅคง็ช—ๆˆท_1118871.jpeg index e883782..1636d33 100644 Binary files a/civitai/lora_sd_1.5/_Muggle_Lora_by_large_window_french_windowLora_่ฝๅœฐ็ช—_ๆณ•ๅผๅคง็ช—ๆˆท_1118871.jpeg and b/civitai/lora_sd_1.5/_Muggle_Lora_by_large_window_french_windowLora_่ฝๅœฐ็ช—_ๆณ•ๅผๅคง็ช—ๆˆท_1118871.jpeg differ diff --git a/civitai/lora_sd_1.5/_Muggle_Lora_car_inside_shotgun_girl_passenger_seat_POV_่ฝฆๅ†…ๅ‰ฏ้ฉพ้ฉถๅฅณๅ‹_็”ทๅ‹่ง†่ง’__1161912.jpeg b/civitai/lora_sd_1.5/_Muggle_Lora_car_inside_shotgun_girl_passenger_seat_POV_่ฝฆๅ†…ๅ‰ฏ้ฉพ้ฉถๅฅณๅ‹_็”ทๅ‹่ง†่ง’__1161912.jpeg index bc3e66b..cad21f5 100644 Binary files a/civitai/lora_sd_1.5/_Muggle_Lora_car_inside_shotgun_girl_passenger_seat_POV_่ฝฆๅ†…ๅ‰ฏ้ฉพ้ฉถๅฅณๅ‹_็”ทๅ‹่ง†่ง’__1161912.jpeg and b/civitai/lora_sd_1.5/_Muggle_Lora_car_inside_shotgun_girl_passenger_seat_POV_่ฝฆๅ†…ๅ‰ฏ้ฉพ้ฉถๅฅณๅ‹_็”ทๅ‹่ง†่ง’__1161912.jpeg differ diff --git a/civitai/lora_sd_1.5/_N_SFW_Filter___Slider___Tool_LoRA_3914594.jpeg b/civitai/lora_sd_1.5/_N_SFW_Filter___Slider___Tool_LoRA_3914594.jpeg index 8fdf025..9b4ce39 100644 Binary files a/civitai/lora_sd_1.5/_N_SFW_Filter___Slider___Tool_LoRA_3914594.jpeg and b/civitai/lora_sd_1.5/_N_SFW_Filter___Slider___Tool_LoRA_3914594.jpeg differ diff --git a/civitai/lora_sd_1.5/_POV_Arm_Support_and_From_Below_่ขซๅŽ‹่ง†่ง’_505737.jpeg b/civitai/lora_sd_1.5/_POV_Arm_Support_and_From_Below_่ขซๅŽ‹่ง†่ง’_505737.jpeg index b144d62..03b07e0 100644 Binary files a/civitai/lora_sd_1.5/_POV_Arm_Support_and_From_Below_่ขซๅŽ‹่ง†่ง’_505737.jpeg and b/civitai/lora_sd_1.5/_POV_Arm_Support_and_From_Below_่ขซๅŽ‹่ง†่ง’_505737.jpeg differ diff --git a/civitai/lora_sd_1.5/_SD_1.5__Maid_costume___ๅฅณไป†่ฃ…_2402679.jpeg b/civitai/lora_sd_1.5/_SD_1.5__Maid_costume___ๅฅณไป†่ฃ…_2402679.jpeg index f9f1ab5..bf207a9 100644 Binary files a/civitai/lora_sd_1.5/_SD_1.5__Maid_costume___ๅฅณไป†่ฃ…_2402679.jpeg and b/civitai/lora_sd_1.5/_SD_1.5__Maid_costume___ๅฅณไป†่ฃ…_2402679.jpeg differ diff --git a/civitai/lora_sd_1.5/_SD_1.5__Modern_Victorian_fashion_dress___ๆด›ไธฝๅก”่ฃ™ๅญ___ใƒญใƒชใƒผใ‚ฟ_ใƒ‰ใƒฌใ‚น_Vol.1_3038414.jpeg b/civitai/lora_sd_1.5/_SD_1.5__Modern_Victorian_fashion_dress___ๆด›ไธฝๅก”่ฃ™ๅญ___ใƒญใƒชใƒผใ‚ฟ_ใƒ‰ใƒฌใ‚น_Vol.1_3038414.jpeg index e715be8..9d6968e 100644 Binary files a/civitai/lora_sd_1.5/_SD_1.5__Modern_Victorian_fashion_dress___ๆด›ไธฝๅก”่ฃ™ๅญ___ใƒญใƒชใƒผใ‚ฟ_ใƒ‰ใƒฌใ‚น_Vol.1_3038414.jpeg and b/civitai/lora_sd_1.5/_SD_1.5__Modern_Victorian_fashion_dress___ๆด›ไธฝๅก”่ฃ™ๅญ___ใƒญใƒชใƒผใ‚ฟ_ใƒ‰ใƒฌใ‚น_Vol.1_3038414.jpeg differ diff --git a/civitai/lora_sd_1.5/_SD_1.5__Sweet_style_dress___็”œ็พŽ้ฃŽ่ฃ™ๅญ_1671686.jpeg b/civitai/lora_sd_1.5/_SD_1.5__Sweet_style_dress___็”œ็พŽ้ฃŽ่ฃ™ๅญ_1671686.jpeg index de1e8d0..eab7be5 100644 Binary files a/civitai/lora_sd_1.5/_SD_1.5__Sweet_style_dress___็”œ็พŽ้ฃŽ่ฃ™ๅญ_1671686.jpeg and b/civitai/lora_sd_1.5/_SD_1.5__Sweet_style_dress___็”œ็พŽ้ฃŽ่ฃ™ๅญ_1671686.jpeg differ diff --git a/civitai/lora_sd_1.5/_Tsumasaky__C.C._-_Code_Geass_810205.jpeg b/civitai/lora_sd_1.5/_Tsumasaky__C.C._-_Code_Geass_810205.jpeg index a1f3e37..ceeedc9 100644 Binary files a/civitai/lora_sd_1.5/_Tsumasaky__C.C._-_Code_Geass_810205.jpeg and b/civitai/lora_sd_1.5/_Tsumasaky__C.C._-_Code_Geass_810205.jpeg differ diff --git a/civitai/lora_sd_1.5/_Tsumasaky__Nilou_-_Genshin_Impact_LoRA_841344.jpeg b/civitai/lora_sd_1.5/_Tsumasaky__Nilou_-_Genshin_Impact_LoRA_841344.jpeg index b223f3b..0885a4a 100644 Binary files a/civitai/lora_sd_1.5/_Tsumasaky__Nilou_-_Genshin_Impact_LoRA_841344.jpeg and b/civitai/lora_sd_1.5/_Tsumasaky__Nilou_-_Genshin_Impact_LoRA_841344.jpeg differ diff --git a/civitai/lora_sd_1.5/_WaterVFX_-_Create_more_consistent_water_-_WIP_123300.jpeg b/civitai/lora_sd_1.5/_WaterVFX_-_Create_more_consistent_water_-_WIP_123300.jpeg index ca3227c..2280d3b 100644 Binary files a/civitai/lora_sd_1.5/_WaterVFX_-_Create_more_consistent_water_-_WIP_123300.jpeg and b/civitai/lora_sd_1.5/_WaterVFX_-_Create_more_consistent_water_-_WIP_123300.jpeg differ diff --git a/civitai/lora_sd_1.5/_chibi__Q็‰ˆ่ง’่‰ฒ--_niji้ฃŽๆ ผๅกๅ“‡ไผŠ_1534172.jpeg b/civitai/lora_sd_1.5/_chibi__Q็‰ˆ่ง’่‰ฒ--_niji้ฃŽๆ ผๅกๅ“‡ไผŠ_1534172.jpeg index 9ae5b20..fcb107f 100644 Binary files a/civitai/lora_sd_1.5/_chibi__Q็‰ˆ่ง’่‰ฒ--_niji้ฃŽๆ ผๅกๅ“‡ไผŠ_1534172.jpeg and b/civitai/lora_sd_1.5/_chibi__Q็‰ˆ่ง’่‰ฒ--_niji้ฃŽๆ ผๅกๅ“‡ไผŠ_1534172.jpeg differ diff --git a/civitai/lora_sd_1.5/_neon_CyberpunkAI_-_konyconi_920410.jpeg b/civitai/lora_sd_1.5/_neon_CyberpunkAI_-_konyconi_920410.jpeg index baa352f..586c0a7 100644 Binary files a/civitai/lora_sd_1.5/_neon_CyberpunkAI_-_konyconi_920410.jpeg and b/civitai/lora_sd_1.5/_neon_CyberpunkAI_-_konyconi_920410.jpeg differ diff --git a/civitai/lora_sd_1.5/ass_size_control_1887100.jpeg b/civitai/lora_sd_1.5/ass_size_control_1887100.jpeg index 46572ed..7fd7432 100644 Binary files a/civitai/lora_sd_1.5/ass_size_control_1887100.jpeg and b/civitai/lora_sd_1.5/ass_size_control_1887100.jpeg differ diff --git a/civitai/lora_sd_1.5/bdsm_chained_up___้”้“พ1_1622438.jpeg b/civitai/lora_sd_1.5/bdsm_chained_up___้”้“พ1_1622438.jpeg index 92a8eb9..7768633 100644 Binary files a/civitai/lora_sd_1.5/bdsm_chained_up___้”้“พ1_1622438.jpeg and b/civitai/lora_sd_1.5/bdsm_chained_up___้”้“พ1_1622438.jpeg differ diff --git a/civitai/lora_sd_1.5/blindbox_ๅคงๆฆ‚ๆ˜ฏ็›ฒ็›’_375791.jpeg b/civitai/lora_sd_1.5/blindbox_ๅคงๆฆ‚ๆ˜ฏ็›ฒ็›’_375791.jpeg index 1930d39..59dbe7b 100644 Binary files a/civitai/lora_sd_1.5/blindbox_ๅคงๆฆ‚ๆ˜ฏ็›ฒ็›’_375791.jpeg and b/civitai/lora_sd_1.5/blindbox_ๅคงๆฆ‚ๆ˜ฏ็›ฒ็›’_375791.jpeg differ diff --git a/civitai/lora_sd_1.5/body_size_control_6176401.jpeg b/civitai/lora_sd_1.5/body_size_control_6176401.jpeg index 8ede29b..7be7281 100644 Binary files a/civitai/lora_sd_1.5/body_size_control_6176401.jpeg and b/civitai/lora_sd_1.5/body_size_control_6176401.jpeg differ diff --git a/civitai/lora_sd_1.5/breast_size_slider_2164413.jpeg b/civitai/lora_sd_1.5/breast_size_slider_2164413.jpeg index a394ee2..22c7f00 100644 Binary files a/civitai/lora_sd_1.5/breast_size_slider_2164413.jpeg and b/civitai/lora_sd_1.5/breast_size_slider_2164413.jpeg differ diff --git a/civitai/lora_sd_1.5/character_sheet___turnaround__Front-Side-Back__1439269.jpeg b/civitai/lora_sd_1.5/character_sheet___turnaround__Front-Side-Back__1439269.jpeg index 5f3f320..898279e 100644 Binary files a/civitai/lora_sd_1.5/character_sheet___turnaround__Front-Side-Back__1439269.jpeg and b/civitai/lora_sd_1.5/character_sheet___turnaround__Front-Side-Back__1439269.jpeg differ diff --git a/civitai/lora_sd_1.5/chibi_comic_style_Q็‰ˆๅฐๆผซ็”ป_1890688.jpeg b/civitai/lora_sd_1.5/chibi_comic_style_Q็‰ˆๅฐๆผซ็”ป_1890688.jpeg index 156c72f..d638196 100644 Binary files a/civitai/lora_sd_1.5/chibi_comic_style_Q็‰ˆๅฐๆผซ็”ป_1890688.jpeg and b/civitai/lora_sd_1.5/chibi_comic_style_Q็‰ˆๅฐๆผซ็”ป_1890688.jpeg differ diff --git a/civitai/lora_sd_1.5/chinese_dragon-ไธญๅ›ฝ้พ™__Chinese_Loong-Eastern_Dragon_1340777.jpeg b/civitai/lora_sd_1.5/chinese_dragon-ไธญๅ›ฝ้พ™__Chinese_Loong-Eastern_Dragon_1340777.jpeg index 691181f..ae1a244 100644 Binary files a/civitai/lora_sd_1.5/chinese_dragon-ไธญๅ›ฝ้พ™__Chinese_Loong-Eastern_Dragon_1340777.jpeg and b/civitai/lora_sd_1.5/chinese_dragon-ไธญๅ›ฝ้พ™__Chinese_Loong-Eastern_Dragon_1340777.jpeg differ diff --git a/civitai/lora_sd_1.5/chinese_style_illustration_-_ๅ›ฝ้ฃŽๆ’็”ป_1098575.jpeg b/civitai/lora_sd_1.5/chinese_style_illustration_-_ๅ›ฝ้ฃŽๆ’็”ป_1098575.jpeg index ced1a1c..8e43bca 100644 Binary files a/civitai/lora_sd_1.5/chinese_style_illustration_-_ๅ›ฝ้ฃŽๆ’็”ป_1098575.jpeg and b/civitai/lora_sd_1.5/chinese_style_illustration_-_ๅ›ฝ้ฃŽๆ’็”ป_1098575.jpeg differ diff --git a/civitai/lora_sd_1.5/clothes_Transparent_raincoat_419238.jpeg b/civitai/lora_sd_1.5/clothes_Transparent_raincoat_419238.jpeg index a3dd254..3d8e2de 100644 Binary files a/civitai/lora_sd_1.5/clothes_Transparent_raincoat_419238.jpeg and b/civitai/lora_sd_1.5/clothes_Transparent_raincoat_419238.jpeg differ diff --git a/civitai/lora_sd_1.5/cn_girl_ycy_125414.jpeg b/civitai/lora_sd_1.5/cn_girl_ycy_125414.jpeg index d8d8295..a49a085 100644 Binary files a/civitai/lora_sd_1.5/cn_girl_ycy_125414.jpeg and b/civitai/lora_sd_1.5/cn_girl_ycy_125414.jpeg differ diff --git a/civitai/lora_sd_1.5/concept_Bags_under_eyes_dark_circles__419279.jpeg b/civitai/lora_sd_1.5/concept_Bags_under_eyes_dark_circles__419279.jpeg index 7847ebe..d00a7d0 100644 Binary files a/civitai/lora_sd_1.5/concept_Bags_under_eyes_dark_circles__419279.jpeg and b/civitai/lora_sd_1.5/concept_Bags_under_eyes_dark_circles__419279.jpeg differ diff --git a/civitai/lora_sd_1.5/concept_Colored_inner_hair_302194.jpeg b/civitai/lora_sd_1.5/concept_Colored_inner_hair_302194.jpeg index 72d2aa2..cf2d891 100644 Binary files a/civitai/lora_sd_1.5/concept_Colored_inner_hair_302194.jpeg and b/civitai/lora_sd_1.5/concept_Colored_inner_hair_302194.jpeg differ diff --git a/civitai/lora_sd_1.5/concept_Head-mounted_display_447756.jpeg b/civitai/lora_sd_1.5/concept_Head-mounted_display_447756.jpeg index b15eea3..d038913 100644 Binary files a/civitai/lora_sd_1.5/concept_Head-mounted_display_447756.jpeg and b/civitai/lora_sd_1.5/concept_Head-mounted_display_447756.jpeg differ diff --git a/civitai/lora_sd_1.5/concept_Loong_china_dragon_eastern_dragon_ไธญๅ›ฝ้พ™_385407.jpeg b/civitai/lora_sd_1.5/concept_Loong_china_dragon_eastern_dragon_ไธญๅ›ฝ้พ™_385407.jpeg index 338b6e0..e528e3a 100644 Binary files a/civitai/lora_sd_1.5/concept_Loong_china_dragon_eastern_dragon_ไธญๅ›ฝ้พ™_385407.jpeg and b/civitai/lora_sd_1.5/concept_Loong_china_dragon_eastern_dragon_ไธญๅ›ฝ้พ™_385407.jpeg differ diff --git a/civitai/lora_sd_1.5/concept_holographic_clothing_้•ญๅฐ„ๆœ่ฃ…_203617.jpeg b/civitai/lora_sd_1.5/concept_holographic_clothing_้•ญๅฐ„ๆœ่ฃ…_203617.jpeg index ffc53fa..d5dca50 100644 Binary files a/civitai/lora_sd_1.5/concept_holographic_clothing_้•ญๅฐ„ๆœ่ฃ…_203617.jpeg and b/civitai/lora_sd_1.5/concept_holographic_clothing_้•ญๅฐ„ๆœ่ฃ…_203617.jpeg differ diff --git a/civitai/lora_sd_1.5/disgust__facial_expression__269326.jpeg b/civitai/lora_sd_1.5/disgust__facial_expression__269326.jpeg index 1bc1e47..fa3c51e 100644 Binary files a/civitai/lora_sd_1.5/disgust__facial_expression__269326.jpeg and b/civitai/lora_sd_1.5/disgust__facial_expression__269326.jpeg differ diff --git a/civitai/lora_sd_1.5/double_v_concept_519009.jpeg b/civitai/lora_sd_1.5/double_v_concept_519009.jpeg index 0395d35..a64a216 100644 Binary files a/civitai/lora_sd_1.5/double_v_concept_519009.jpeg and b/civitai/lora_sd_1.5/double_v_concept_519009.jpeg differ diff --git a/civitai/lora_sd_1.5/dunhuang_ๆ•ฆ็…Œ__693925.jpeg b/civitai/lora_sd_1.5/dunhuang_ๆ•ฆ็…Œ__693925.jpeg index 45d0b07..bd2e16f 100644 Binary files a/civitai/lora_sd_1.5/dunhuang_ๆ•ฆ็…Œ__693925.jpeg and b/civitai/lora_sd_1.5/dunhuang_ๆ•ฆ็…Œ__693925.jpeg differ diff --git a/civitai/lora_sd_1.5/epiCRealLife_Enhancer_2377820.jpeg b/civitai/lora_sd_1.5/epiCRealLife_Enhancer_2377820.jpeg index ca5ab04..cb956dd 100644 Binary files a/civitai/lora_sd_1.5/epiCRealLife_Enhancer_2377820.jpeg and b/civitai/lora_sd_1.5/epiCRealLife_Enhancer_2377820.jpeg differ diff --git a/civitai/lora_sd_1.5/epiCRealismHelper_1584450.jpeg b/civitai/lora_sd_1.5/epiCRealismHelper_1584450.jpeg index c39f8dc..5d01861 100644 Binary files a/civitai/lora_sd_1.5/epiCRealismHelper_1584450.jpeg and b/civitai/lora_sd_1.5/epiCRealismHelper_1584450.jpeg differ diff --git a/civitai/lora_sd_1.5/epi_noiseoffset_167154.jpeg b/civitai/lora_sd_1.5/epi_noiseoffset_167154.jpeg index 3502642..84b00dd 100644 Binary files a/civitai/lora_sd_1.5/epi_noiseoffset_167154.jpeg and b/civitai/lora_sd_1.5/epi_noiseoffset_167154.jpeg differ diff --git a/civitai/lora_sd_1.5/fishnet_collection_3049973.jpeg b/civitai/lora_sd_1.5/fishnet_collection_3049973.jpeg index 363e867..aa2666c 100644 Binary files a/civitai/lora_sd_1.5/fishnet_collection_3049973.jpeg and b/civitai/lora_sd_1.5/fishnet_collection_3049973.jpeg differ diff --git a/civitai/lora_sd_1.5/flat2_980802.jpeg b/civitai/lora_sd_1.5/flat2_980802.jpeg index 1d35f91..9765a06 100644 Binary files a/civitai/lora_sd_1.5/flat2_980802.jpeg and b/civitai/lora_sd_1.5/flat2_980802.jpeg differ diff --git a/civitai/lora_sd_1.5/flat_illustration_249378.jpeg b/civitai/lora_sd_1.5/flat_illustration_249378.jpeg index 0e692ca..8ce8fcc 100644 Binary files a/civitai/lora_sd_1.5/flat_illustration_249378.jpeg and b/civitai/lora_sd_1.5/flat_illustration_249378.jpeg differ diff --git a/civitai/lora_sd_1.5/foot_up_foot_foot_focus_barefoot_1095603.jpeg b/civitai/lora_sd_1.5/foot_up_foot_foot_focus_barefoot_1095603.jpeg index 841de06..30961dd 100644 Binary files a/civitai/lora_sd_1.5/foot_up_foot_foot_focus_barefoot_1095603.jpeg and b/civitai/lora_sd_1.5/foot_up_foot_foot_focus_barefoot_1095603.jpeg differ diff --git a/civitai/lora_sd_1.5/fufu_doll__realistic_anime__294357.jpeg b/civitai/lora_sd_1.5/fufu_doll__realistic_anime__294357.jpeg index 8391cbd..ae4bb2f 100644 Binary files a/civitai/lora_sd_1.5/fufu_doll__realistic_anime__294357.jpeg and b/civitai/lora_sd_1.5/fufu_doll__realistic_anime__294357.jpeg differ diff --git a/civitai/lora_sd_1.5/game_icon_institute_ๅก้€š่กจๆƒ…ๅŒ…_1686464.jpeg b/civitai/lora_sd_1.5/game_icon_institute_ๅก้€š่กจๆƒ…ๅŒ…_1686464.jpeg index 4cce6da..7a47d9c 100644 Binary files a/civitai/lora_sd_1.5/game_icon_institute_ๅก้€š่กจๆƒ…ๅŒ…_1686464.jpeg and b/civitai/lora_sd_1.5/game_icon_institute_ๅก้€š่กจๆƒ…ๅŒ…_1686464.jpeg differ diff --git a/civitai/lora_sd_1.5/hairdetailer_981554.jpeg b/civitai/lora_sd_1.5/hairdetailer_981554.jpeg index 78bf738..ec67765 100644 Binary files a/civitai/lora_sd_1.5/hairdetailer_981554.jpeg and b/civitai/lora_sd_1.5/hairdetailer_981554.jpeg differ diff --git a/civitai/lora_sd_1.5/hanfu_ๆฑ‰ๆœ_592643.jpeg b/civitai/lora_sd_1.5/hanfu_ๆฑ‰ๆœ_592643.jpeg index 9f962cc..f45d5d8 100644 Binary files a/civitai/lora_sd_1.5/hanfu_ๆฑ‰ๆœ_592643.jpeg and b/civitai/lora_sd_1.5/hanfu_ๆฑ‰ๆœ_592643.jpeg differ diff --git a/civitai/lora_sd_1.5/ins_style_still_life_simple_background_็ฎ€็บฆ้™็‰ฉ_665580.jpeg b/civitai/lora_sd_1.5/ins_style_still_life_simple_background_็ฎ€็บฆ้™็‰ฉ_665580.jpeg index fabc478..27b4055 100644 Binary files a/civitai/lora_sd_1.5/ins_style_still_life_simple_background_็ฎ€็บฆ้™็‰ฉ_665580.jpeg and b/civitai/lora_sd_1.5/ins_style_still_life_simple_background_็ฎ€็บฆ้™็‰ฉ_665580.jpeg differ diff --git a/civitai/lora_sd_1.5/kCuteCreatures_-_konyconi_715990.jpeg b/civitai/lora_sd_1.5/kCuteCreatures_-_konyconi_715990.jpeg index 00ba887..c0c2cd8 100644 Binary files a/civitai/lora_sd_1.5/kCuteCreatures_-_konyconi_715990.jpeg and b/civitai/lora_sd_1.5/kCuteCreatures_-_konyconi_715990.jpeg differ diff --git a/civitai/lora_sd_1.5/kMechAnimal_-_konyconi_764392.jpeg b/civitai/lora_sd_1.5/kMechAnimal_-_konyconi_764392.jpeg index 072dade..4ba5d02 100644 Binary files a/civitai/lora_sd_1.5/kMechAnimal_-_konyconi_764392.jpeg and b/civitai/lora_sd_1.5/kMechAnimal_-_konyconi_764392.jpeg differ diff --git a/civitai/lora_sd_1.5/kVoidEnergy_-_konyconi_719657.jpeg b/civitai/lora_sd_1.5/kVoidEnergy_-_konyconi_719657.jpeg index ecf0a5e..44ddcd4 100644 Binary files a/civitai/lora_sd_1.5/kVoidEnergy_-_konyconi_719657.jpeg and b/civitai/lora_sd_1.5/kVoidEnergy_-_konyconi_719657.jpeg differ diff --git a/civitai/lora_sd_1.5/klee___genshin_impact_____59183.jpeg b/civitai/lora_sd_1.5/klee___genshin_impact_____59183.jpeg index ba6fda1..4a65e93 100644 Binary files a/civitai/lora_sd_1.5/klee___genshin_impact_____59183.jpeg and b/civitai/lora_sd_1.5/klee___genshin_impact_____59183.jpeg differ diff --git a/civitai/lora_sd_1.5/mugshot_lora_215791.jpeg b/civitai/lora_sd_1.5/mugshot_lora_215791.jpeg index f7eed74..b323a2d 100644 Binary files a/civitai/lora_sd_1.5/mugshot_lora_215791.jpeg and b/civitai/lora_sd_1.5/mugshot_lora_215791.jpeg differ diff --git a/civitai/lora_sd_1.5/multiple_views_1217198.jpeg b/civitai/lora_sd_1.5/multiple_views_1217198.jpeg index 30faaea..0da087a 100644 Binary files a/civitai/lora_sd_1.5/multiple_views_1217198.jpeg and b/civitai/lora_sd_1.5/multiple_views_1217198.jpeg differ diff --git a/civitai/lora_sd_1.5/niji_-_flat_illustration_1547823.jpeg b/civitai/lora_sd_1.5/niji_-_flat_illustration_1547823.jpeg index 329a7dc..d464ddc 100644 Binary files a/civitai/lora_sd_1.5/niji_-_flat_illustration_1547823.jpeg and b/civitai/lora_sd_1.5/niji_-_flat_illustration_1547823.jpeg differ diff --git a/civitai/lora_sd_1.5/niji_-_handdraw_minimalist_lineart_1445322.jpeg b/civitai/lora_sd_1.5/niji_-_handdraw_minimalist_lineart_1445322.jpeg index a2fd196..330dd0d 100644 Binary files a/civitai/lora_sd_1.5/niji_-_handdraw_minimalist_lineart_1445322.jpeg and b/civitai/lora_sd_1.5/niji_-_handdraw_minimalist_lineart_1445322.jpeg differ diff --git a/civitai/lora_sd_1.5/nurse_uniform_487932.jpeg b/civitai/lora_sd_1.5/nurse_uniform_487932.jpeg index 6381f1c..a50e136 100644 Binary files a/civitai/lora_sd_1.5/nurse_uniform_487932.jpeg and b/civitai/lora_sd_1.5/nurse_uniform_487932.jpeg differ diff --git a/civitai/lora_sd_1.5/open_mouth_pain_screaming_shouting_angry_expressions___็ต้ญ‚ๅคงๅซ_ๆ€’ๅผ_ๅฐ–ๅซ_็—›่‹ฆ_1354495.jpeg b/civitai/lora_sd_1.5/open_mouth_pain_screaming_shouting_angry_expressions___็ต้ญ‚ๅคงๅซ_ๆ€’ๅผ_ๅฐ–ๅซ_็—›่‹ฆ_1354495.jpeg index d938e65..65a03ca 100644 Binary files a/civitai/lora_sd_1.5/open_mouth_pain_screaming_shouting_angry_expressions___็ต้ญ‚ๅคงๅซ_ๆ€’ๅผ_ๅฐ–ๅซ_็—›่‹ฆ_1354495.jpeg and b/civitai/lora_sd_1.5/open_mouth_pain_screaming_shouting_angry_expressions___็ต้ญ‚ๅคงๅซ_ๆ€’ๅผ_ๅฐ–ๅซ_็—›่‹ฆ_1354495.jpeg differ diff --git a/civitai/lora_sd_1.5/pose_selfie_2581570.jpeg b/civitai/lora_sd_1.5/pose_selfie_2581570.jpeg index bdd2893..ffc8b51 100644 Binary files a/civitai/lora_sd_1.5/pose_selfie_2581570.jpeg and b/civitai/lora_sd_1.5/pose_selfie_2581570.jpeg differ diff --git a/civitai/lora_sd_1.5/pov_across_table_concept_549531.jpeg b/civitai/lora_sd_1.5/pov_across_table_concept_549531.jpeg index f7ed3a5..7e2b38b 100644 Binary files a/civitai/lora_sd_1.5/pov_across_table_concept_549531.jpeg and b/civitai/lora_sd_1.5/pov_across_table_concept_549531.jpeg differ diff --git a/civitai/lora_sd_1.5/ratatatat74_Style_LoRA_44571.jpeg b/civitai/lora_sd_1.5/ratatatat74_Style_LoRA_44571.jpeg index 00bcbac..d073f58 100644 Binary files a/civitai/lora_sd_1.5/ratatatat74_Style_LoRA_44571.jpeg and b/civitai/lora_sd_1.5/ratatatat74_Style_LoRA_44571.jpeg differ diff --git a/civitai/lora_sd_1.5/sciamano240_Style_LoRA_66610.jpeg b/civitai/lora_sd_1.5/sciamano240_Style_LoRA_66610.jpeg index 8fd4b13..a2e2aa7 100644 Binary files a/civitai/lora_sd_1.5/sciamano240_Style_LoRA_66610.jpeg and b/civitai/lora_sd_1.5/sciamano240_Style_LoRA_66610.jpeg differ diff --git a/civitai/lora_sd_1.5/see-through_control_1871433.jpeg b/civitai/lora_sd_1.5/see-through_control_1871433.jpeg index af1e49c..dbef0ca 100644 Binary files a/civitai/lora_sd_1.5/see-through_control_1871433.jpeg and b/civitai/lora_sd_1.5/see-through_control_1871433.jpeg differ diff --git a/civitai/lora_sd_1.5/simple_chibi_artstyle_1141910.jpeg b/civitai/lora_sd_1.5/simple_chibi_artstyle_1141910.jpeg index a7608aa..79ed05d 100644 Binary files a/civitai/lora_sd_1.5/simple_chibi_artstyle_1141910.jpeg and b/civitai/lora_sd_1.5/simple_chibi_artstyle_1141910.jpeg differ diff --git a/civitai/lora_sd_1.5/sketch_anime_pose_็ด ไฝ“ไบบๅถ็”ป้ฃŽ_1492802.jpeg b/civitai/lora_sd_1.5/sketch_anime_pose_็ด ไฝ“ไบบๅถ็”ป้ฃŽ_1492802.jpeg index 44e348e..e06d91c 100644 Binary files a/civitai/lora_sd_1.5/sketch_anime_pose_็ด ไฝ“ไบบๅถ็”ป้ฃŽ_1492802.jpeg and b/civitai/lora_sd_1.5/sketch_anime_pose_็ด ไฝ“ไบบๅถ็”ป้ฃŽ_1492802.jpeg differ diff --git a/civitai/lora_sd_1.5/slim_tall__-__plump_short_1653157.jpeg b/civitai/lora_sd_1.5/slim_tall__-__plump_short_1653157.jpeg index a976849..0b20d20 100644 Binary files a/civitai/lora_sd_1.5/slim_tall__-__plump_short_1653157.jpeg and b/civitai/lora_sd_1.5/slim_tall__-__plump_short_1653157.jpeg differ diff --git a/civitai/lora_sd_1.5/soulcard_810217.jpeg b/civitai/lora_sd_1.5/soulcard_810217.jpeg index efb623e..5afff8f 100644 Binary files a/civitai/lora_sd_1.5/soulcard_810217.jpeg and b/civitai/lora_sd_1.5/soulcard_810217.jpeg differ diff --git a/civitai/lora_sd_1.5/super_low_angle_from_below___่ถ…็บงไฝŽ่ง†่ง’_1417356.jpeg b/civitai/lora_sd_1.5/super_low_angle_from_below___่ถ…็บงไฝŽ่ง†่ง’_1417356.jpeg index 545e444..1ab8b69 100644 Binary files a/civitai/lora_sd_1.5/super_low_angle_from_below___่ถ…็บงไฝŽ่ง†่ง’_1417356.jpeg and b/civitai/lora_sd_1.5/super_low_angle_from_below___่ถ…็บงไฝŽ่ง†่ง’_1417356.jpeg differ diff --git a/civitai/lora_sd_1.5/tohsaka_rin__fate__่ฟœๅ‚ๅ‡›_fgo_135354.jpeg b/civitai/lora_sd_1.5/tohsaka_rin__fate__่ฟœๅ‚ๅ‡›_fgo_135354.jpeg index 90b0180..e7a4b0b 100644 Binary files a/civitai/lora_sd_1.5/tohsaka_rin__fate__่ฟœๅ‚ๅ‡›_fgo_135354.jpeg and b/civitai/lora_sd_1.5/tohsaka_rin__fate__่ฟœๅ‚ๅ‡›_fgo_135354.jpeg differ diff --git a/civitai/lora_sd_1.5/tutu_s_HiSilk__Aurora_5D_Black_Pantyhose____ๅ›พๅ›พ็š„ๅ—จไธ_ๆžๅ…‰5D้ป‘่‰ฒ่ฟž่ฃค่ขœ____ใƒใƒฅใƒใƒฅใฎใƒใ‚คใ‚ทใƒซใ‚ฏ_ใ‚ชใƒผใƒญใƒฉ5D้ป’่‰ฒใ‚ฟใ‚คใƒ„__5871963.jpeg b/civitai/lora_sd_1.5/tutu_s_HiSilk__Aurora_5D_Black_Pantyhose____ๅ›พๅ›พ็š„ๅ—จไธ_ๆžๅ…‰5D้ป‘่‰ฒ่ฟž่ฃค่ขœ____ใƒใƒฅใƒใƒฅใฎใƒใ‚คใ‚ทใƒซใ‚ฏ_ใ‚ชใƒผใƒญใƒฉ5D้ป’่‰ฒใ‚ฟใ‚คใƒ„__5871963.jpeg index 06f6319..be552d5 100644 Binary files a/civitai/lora_sd_1.5/tutu_s_HiSilk__Aurora_5D_Black_Pantyhose____ๅ›พๅ›พ็š„ๅ—จไธ_ๆžๅ…‰5D้ป‘่‰ฒ่ฟž่ฃค่ขœ____ใƒใƒฅใƒใƒฅใฎใƒใ‚คใ‚ทใƒซใ‚ฏ_ใ‚ชใƒผใƒญใƒฉ5D้ป’่‰ฒใ‚ฟใ‚คใƒ„__5871963.jpeg and b/civitai/lora_sd_1.5/tutu_s_HiSilk__Aurora_5D_Black_Pantyhose____ๅ›พๅ›พ็š„ๅ—จไธ_ๆžๅ…‰5D้ป‘่‰ฒ่ฟž่ฃค่ขœ____ใƒใƒฅใƒใƒฅใฎใƒใ‚คใ‚ทใƒซใ‚ฏ_ใ‚ชใƒผใƒญใƒฉ5D้ป’่‰ฒใ‚ฟใ‚คใƒ„__5871963.jpeg differ diff --git a/civitai/lora_sd_1.5/tutu_s_cyberpunk___ๅ›พๅ›พ็š„ๆœ‹ๅ…‹ๆœบๅจ˜___ใƒ‘ใƒณใ‚ฏใ‚นใ‚ฟใ‚คใƒซใฎใƒกใ‚ซใƒ‹ใ‚ซใƒซใ‚ฌใƒผใƒซ_1152032.jpeg b/civitai/lora_sd_1.5/tutu_s_cyberpunk___ๅ›พๅ›พ็š„ๆœ‹ๅ…‹ๆœบๅจ˜___ใƒ‘ใƒณใ‚ฏใ‚นใ‚ฟใ‚คใƒซใฎใƒกใ‚ซใƒ‹ใ‚ซใƒซใ‚ฌใƒผใƒซ_1152032.jpeg index 9e6f2c1..b16a129 100644 Binary files a/civitai/lora_sd_1.5/tutu_s_cyberpunk___ๅ›พๅ›พ็š„ๆœ‹ๅ…‹ๆœบๅจ˜___ใƒ‘ใƒณใ‚ฏใ‚นใ‚ฟใ‚คใƒซใฎใƒกใ‚ซใƒ‹ใ‚ซใƒซใ‚ฌใƒผใƒซ_1152032.jpeg and b/civitai/lora_sd_1.5/tutu_s_cyberpunk___ๅ›พๅ›พ็š„ๆœ‹ๅ…‹ๆœบๅจ˜___ใƒ‘ใƒณใ‚ฏใ‚นใ‚ฟใ‚คใƒซใฎใƒกใ‚ซใƒ‹ใ‚ซใƒซใ‚ฌใƒผใƒซ_1152032.jpeg differ diff --git a/civitai/lora_sd_1.5/wowifier_1086319.jpeg b/civitai/lora_sd_1.5/wowifier_1086319.jpeg index 7e4d236..c934e58 100644 Binary files a/civitai/lora_sd_1.5/wowifier_1086319.jpeg and b/civitai/lora_sd_1.5/wowifier_1086319.jpeg differ diff --git a/civitai/lora_sd_1.5/yami_3_in_one__To_Love_Ru_Darkness___้‡‘่‰ฒใฎ้—‡__ไธ‰ๅˆไธ€__ToLoveใ‚‹_ๅ‡บๅŒ…็Ž‹ๅฅณ__761815.jpeg b/civitai/lora_sd_1.5/yami_3_in_one__To_Love_Ru_Darkness___้‡‘่‰ฒใฎ้—‡__ไธ‰ๅˆไธ€__ToLoveใ‚‹_ๅ‡บๅŒ…็Ž‹ๅฅณ__761815.jpeg index 614d55a..65459ae 100644 Binary files a/civitai/lora_sd_1.5/yami_3_in_one__To_Love_Ru_Darkness___้‡‘่‰ฒใฎ้—‡__ไธ‰ๅˆไธ€__ToLoveใ‚‹_ๅ‡บๅŒ…็Ž‹ๅฅณ__761815.jpeg and b/civitai/lora_sd_1.5/yami_3_in_one__To_Love_Ru_Darkness___้‡‘่‰ฒใฎ้—‡__ไธ‰ๅˆไธ€__ToLoveใ‚‹_ๅ‡บๅŒ…็Ž‹ๅฅณ__761815.jpeg differ diff --git a/civitai/lora_sd_1.5/zhouzhou_149630.jpeg b/civitai/lora_sd_1.5/zhouzhou_149630.jpeg index 1b2c28a..1417f14 100644 Binary files a/civitai/lora_sd_1.5/zhouzhou_149630.jpeg and b/civitai/lora_sd_1.5/zhouzhou_149630.jpeg differ diff --git a/civitai/lora_sd_1.5/zyd232_s_Chinese_Girl_LORA_-_SD1.5_875371.jpeg b/civitai/lora_sd_1.5/zyd232_s_Chinese_Girl_LORA_-_SD1.5_875371.jpeg index 37aca2c..cd34f20 100644 Binary files a/civitai/lora_sd_1.5/zyd232_s_Chinese_Girl_LORA_-_SD1.5_875371.jpeg and b/civitai/lora_sd_1.5/zyd232_s_Chinese_Girl_LORA_-_SD1.5_875371.jpeg differ diff --git a/civitai/lora_sd_1.5/ไธ‰ๅ›ฝ_The_Three_Kingdoms_541764.jpeg b/civitai/lora_sd_1.5/ไธ‰ๅ›ฝ_The_Three_Kingdoms_541764.jpeg index 3ab6b5d..c0d5b43 100644 Binary files a/civitai/lora_sd_1.5/ไธ‰ๅ›ฝ_The_Three_Kingdoms_541764.jpeg and b/civitai/lora_sd_1.5/ไธ‰ๅ›ฝ_The_Three_Kingdoms_541764.jpeg differ diff --git a/civitai/lora_sd_1.5/ไธๆ˜ฏ้’่Šฑ็“ท-ๆœบ็”ฒ_173127.jpeg b/civitai/lora_sd_1.5/ไธๆ˜ฏ้’่Šฑ็“ท-ๆœบ็”ฒ_173127.jpeg index c964c05..c82f573 100644 Binary files a/civitai/lora_sd_1.5/ไธๆ˜ฏ้’่Šฑ็“ท-ๆœบ็”ฒ_173127.jpeg and b/civitai/lora_sd_1.5/ไธๆ˜ฏ้’่Šฑ็“ท-ๆœบ็”ฒ_173127.jpeg differ diff --git a/civitai/lora_sd_1.5/ไธœๆ–นๅทจ้พ™_Oriental_giant_dragon_977417.jpeg b/civitai/lora_sd_1.5/ไธœๆ–นๅทจ้พ™_Oriental_giant_dragon_977417.jpeg index 2659555..1ca24e1 100644 Binary files a/civitai/lora_sd_1.5/ไธœๆ–นๅทจ้พ™_Oriental_giant_dragon_977417.jpeg and b/civitai/lora_sd_1.5/ไธœๆ–นๅทจ้พ™_Oriental_giant_dragon_977417.jpeg differ diff --git a/civitai/lora_sd_1.5/ไนŸ่ฎธๆ˜ฏ่‚šๅ…œ_belly_wrap_A_kind_of_Chinese_ancient_women_s_underwear_294973.jpeg b/civitai/lora_sd_1.5/ไนŸ่ฎธๆ˜ฏ่‚šๅ…œ_belly_wrap_A_kind_of_Chinese_ancient_women_s_underwear_294973.jpeg index 237fe26..e034259 100644 Binary files a/civitai/lora_sd_1.5/ไนŸ่ฎธๆ˜ฏ่‚šๅ…œ_belly_wrap_A_kind_of_Chinese_ancient_women_s_underwear_294973.jpeg and b/civitai/lora_sd_1.5/ไนŸ่ฎธๆ˜ฏ่‚šๅ…œ_belly_wrap_A_kind_of_Chinese_ancient_women_s_underwear_294973.jpeg differ diff --git a/civitai/lora_sd_1.5/ไพ ๅฅณ_Chinese_swordswoman__ๅ›ฝ้ฃŽ_LORA_1119690.jpeg b/civitai/lora_sd_1.5/ไพ ๅฅณ_Chinese_swordswoman__ๅ›ฝ้ฃŽ_LORA_1119690.jpeg index 8a40307..8597323 100644 Binary files a/civitai/lora_sd_1.5/ไพ ๅฅณ_Chinese_swordswoman__ๅ›ฝ้ฃŽ_LORA_1119690.jpeg and b/civitai/lora_sd_1.5/ไพ ๅฅณ_Chinese_swordswoman__ๅ›ฝ้ฃŽ_LORA_1119690.jpeg differ diff --git a/civitai/lora_sd_1.5/ๅ’ธ้ฑผmix่ฐƒๆ–™ๅŒ…-DLC_for_fish_mix-23-3-14ๆ›ดๆ–ฐ_248070.jpeg b/civitai/lora_sd_1.5/ๅ’ธ้ฑผmix่ฐƒๆ–™ๅŒ…-DLC_for_fish_mix-23-3-14ๆ›ดๆ–ฐ_248070.jpeg index fc2d6f9..b3b5ed0 100644 Binary files a/civitai/lora_sd_1.5/ๅ’ธ้ฑผmix่ฐƒๆ–™ๅŒ…-DLC_for_fish_mix-23-3-14ๆ›ดๆ–ฐ_248070.jpeg and b/civitai/lora_sd_1.5/ๅ’ธ้ฑผmix่ฐƒๆ–™ๅŒ…-DLC_for_fish_mix-23-3-14ๆ›ดๆ–ฐ_248070.jpeg differ diff --git a/civitai/lora_sd_1.5/ๅ›ฝ้ฃŽ-ๅƒๆ™ฏ็ป˜qianjinghui_526693.jpeg b/civitai/lora_sd_1.5/ๅ›ฝ้ฃŽ-ๅƒๆ™ฏ็ป˜qianjinghui_526693.jpeg index 5048651..bbe86ed 100644 Binary files a/civitai/lora_sd_1.5/ๅ›ฝ้ฃŽ-ๅƒๆ™ฏ็ป˜qianjinghui_526693.jpeg and b/civitai/lora_sd_1.5/ๅ›ฝ้ฃŽ-ๅƒๆ™ฏ็ป˜qianjinghui_526693.jpeg differ diff --git a/civitai/lora_sd_1.5/ๅขจๅฟƒ_MoXin_212957.jpeg b/civitai/lora_sd_1.5/ๅขจๅฟƒ_MoXin_212957.jpeg index fd836d0..6b52a52 100644 Binary files a/civitai/lora_sd_1.5/ๅขจๅฟƒ_MoXin_212957.jpeg and b/civitai/lora_sd_1.5/ๅขจๅฟƒ_MoXin_212957.jpeg differ diff --git a/civitai/lora_sd_1.5/ๅญฆๆ กใฎ็”ทๅญใƒˆใ‚คใƒฌ_Boys__restroom_in_a_Japanese_high_school_109376.jpeg b/civitai/lora_sd_1.5/ๅญฆๆ กใฎ็”ทๅญใƒˆใ‚คใƒฌ_Boys__restroom_in_a_Japanese_high_school_109376.jpeg index e07311c..a223b8f 100644 Binary files a/civitai/lora_sd_1.5/ๅญฆๆ กใฎ็”ทๅญใƒˆใ‚คใƒฌ_Boys__restroom_in_a_Japanese_high_school_109376.jpeg and b/civitai/lora_sd_1.5/ๅญฆๆ กใฎ็”ทๅญใƒˆใ‚คใƒฌ_Boys__restroom_in_a_Japanese_high_school_109376.jpeg differ diff --git a/civitai/lora_sd_1.5/ๅฐไบบไนฆ_่ฟž็Žฏ็”ป__xiaorenshu_282059.jpeg b/civitai/lora_sd_1.5/ๅฐไบบไนฆ_่ฟž็Žฏ็”ป__xiaorenshu_282059.jpeg index a82a5f1..4f59cf4 100644 Binary files a/civitai/lora_sd_1.5/ๅฐไบบไนฆ_่ฟž็Žฏ็”ป__xiaorenshu_282059.jpeg and b/civitai/lora_sd_1.5/ๅฐไบบไนฆ_่ฟž็Žฏ็”ป__xiaorenshu_282059.jpeg differ diff --git a/civitai/lora_sd_1.5/ๅฐ่ฑš่ฑš้ผ _Lora_177611.jpeg b/civitai/lora_sd_1.5/ๅฐ่ฑš่ฑš้ผ _Lora_177611.jpeg index 928b750..5686606 100644 Binary files a/civitai/lora_sd_1.5/ๅฐ่ฑš่ฑš้ผ _Lora_177611.jpeg and b/civitai/lora_sd_1.5/ๅฐ่ฑš่ฑš้ผ _Lora_177611.jpeg differ diff --git a/civitai/lora_sd_1.5/ๅนปๅ…‰็‰็’ƒ_Phantasmal_Luminous__The_Radiance_of_Rainbow_Dispersion_2893420.jpeg b/civitai/lora_sd_1.5/ๅนปๅ…‰็‰็’ƒ_Phantasmal_Luminous__The_Radiance_of_Rainbow_Dispersion_2893420.jpeg index b0eb5ac..fc87f42 100644 Binary files a/civitai/lora_sd_1.5/ๅนปๅ…‰็‰็’ƒ_Phantasmal_Luminous__The_Radiance_of_Rainbow_Dispersion_2893420.jpeg and b/civitai/lora_sd_1.5/ๅนปๅ…‰็‰็’ƒ_Phantasmal_Luminous__The_Radiance_of_Rainbow_Dispersion_2893420.jpeg differ diff --git a/civitai/lora_sd_1.5/ๅปบ็ญ‘ๅ›พ็บธ___Architectural_drawings_195645.jpeg b/civitai/lora_sd_1.5/ๅปบ็ญ‘ๅ›พ็บธ___Architectural_drawings_195645.jpeg index abe064c..e58533b 100644 Binary files a/civitai/lora_sd_1.5/ๅปบ็ญ‘ๅ›พ็บธ___Architectural_drawings_195645.jpeg and b/civitai/lora_sd_1.5/ๅปบ็ญ‘ๅ›พ็บธ___Architectural_drawings_195645.jpeg differ diff --git a/civitai/lora_sd_1.5/ๅผ ๅจœ่‹ฑ_hina_i_am_young22_130131.jpeg b/civitai/lora_sd_1.5/ๅผ ๅจœ่‹ฑ_hina_i_am_young22_130131.jpeg index aac45c1..7bb3a90 100644 Binary files a/civitai/lora_sd_1.5/ๅผ ๅจœ่‹ฑ_hina_i_am_young22_130131.jpeg and b/civitai/lora_sd_1.5/ๅผ ๅจœ่‹ฑ_hina_i_am_young22_130131.jpeg differ diff --git a/civitai/lora_sd_1.5/ๅพกๆฐด_v3_1630707.jpeg b/civitai/lora_sd_1.5/ๅพกๆฐด_v3_1630707.jpeg index 9f04d82..d908906 100644 Binary files a/civitai/lora_sd_1.5/ๅพกๆฐด_v3_1630707.jpeg and b/civitai/lora_sd_1.5/ๅพกๆฐด_v3_1630707.jpeg differ diff --git a/civitai/lora_sd_1.5/ๆ‰‹็ป˜้ฃŽๆ ผhand-drawn_art_2729554.jpeg b/civitai/lora_sd_1.5/ๆ‰‹็ป˜้ฃŽๆ ผhand-drawn_art_2729554.jpeg index 689022d..0e4ddd4 100644 Binary files a/civitai/lora_sd_1.5/ๆ‰‹็ป˜้ฃŽๆ ผhand-drawn_art_2729554.jpeg and b/civitai/lora_sd_1.5/ๆ‰‹็ป˜้ฃŽๆ ผhand-drawn_art_2729554.jpeg differ diff --git a/civitai/lora_sd_1.5/ๆ—ฅๆœฌใฎไฝๅฎ…ใฎใŠ้ขจๅ‘‚_Modern_OFURO_in_Japanese_Houses_SD15_3594942.jpeg b/civitai/lora_sd_1.5/ๆ—ฅๆœฌใฎไฝๅฎ…ใฎใŠ้ขจๅ‘‚_Modern_OFURO_in_Japanese_Houses_SD15_3594942.jpeg index f10508b..9f009d7 100644 Binary files a/civitai/lora_sd_1.5/ๆ—ฅๆœฌใฎไฝๅฎ…ใฎใŠ้ขจๅ‘‚_Modern_OFURO_in_Japanese_Houses_SD15_3594942.jpeg and b/civitai/lora_sd_1.5/ๆ—ฅๆœฌใฎไฝๅฎ…ใฎใŠ้ขจๅ‘‚_Modern_OFURO_in_Japanese_Houses_SD15_3594942.jpeg differ diff --git a/civitai/lora_sd_1.5/ๆ—ถๅฐšๆ‘„ๅฝฑ_้ฃŽๆ ผ___Fashion_Magazine_-_Style_514433.jpeg b/civitai/lora_sd_1.5/ๆ—ถๅฐšๆ‘„ๅฝฑ_้ฃŽๆ ผ___Fashion_Magazine_-_Style_514433.jpeg index 4d45b7f..b88ece0 100644 Binary files a/civitai/lora_sd_1.5/ๆ—ถๅฐšๆ‘„ๅฝฑ_้ฃŽๆ ผ___Fashion_Magazine_-_Style_514433.jpeg and b/civitai/lora_sd_1.5/ๆ—ถๅฐšๆ‘„ๅฝฑ_้ฃŽๆ ผ___Fashion_Magazine_-_Style_514433.jpeg differ diff --git a/civitai/lora_sd_1.5/ๆ™–ๆ˜ _Enhanced_Backlighting_434169.jpeg b/civitai/lora_sd_1.5/ๆ™–ๆ˜ _Enhanced_Backlighting_434169.jpeg index 06a0d72..67b5d41 100644 Binary files a/civitai/lora_sd_1.5/ๆ™–ๆ˜ _Enhanced_Backlighting_434169.jpeg and b/civitai/lora_sd_1.5/ๆ™–ๆ˜ _Enhanced_Backlighting_434169.jpeg differ diff --git a/civitai/lora_sd_1.5/ๆœบๆขฐไน‰ไฝ“_้ฃŽๆ ผ____Scifi_Prosthesis_-_Style_LoCon___LoRA_293963.jpeg b/civitai/lora_sd_1.5/ๆœบๆขฐไน‰ไฝ“_้ฃŽๆ ผ____Scifi_Prosthesis_-_Style_LoCon___LoRA_293963.jpeg index 7950ee1..1808130 100644 Binary files a/civitai/lora_sd_1.5/ๆœบๆขฐไน‰ไฝ“_้ฃŽๆ ผ____Scifi_Prosthesis_-_Style_LoCon___LoRA_293963.jpeg and b/civitai/lora_sd_1.5/ๆœบๆขฐไน‰ไฝ“_้ฃŽๆ ผ____Scifi_Prosthesis_-_Style_LoCon___LoRA_293963.jpeg differ diff --git a/civitai/lora_sd_1.5/ๆžไน่ฟชๆ–ฏ็ง‘_้ฃŽๆ ผ____Disco_Elysium_-_Style_LoRA_198304.jpeg b/civitai/lora_sd_1.5/ๆžไน่ฟชๆ–ฏ็ง‘_้ฃŽๆ ผ____Disco_Elysium_-_Style_LoRA_198304.jpeg index 9bdc590..b8bf807 100644 Binary files a/civitai/lora_sd_1.5/ๆžไน่ฟชๆ–ฏ็ง‘_้ฃŽๆ ผ____Disco_Elysium_-_Style_LoRA_198304.jpeg and b/civitai/lora_sd_1.5/ๆžไน่ฟชๆ–ฏ็ง‘_้ฃŽๆ ผ____Disco_Elysium_-_Style_LoRA_198304.jpeg differ diff --git a/civitai/lora_sd_1.5/ๆŸๅฎ้ฃŽๆฑ‰ๆœ_Sexy_underwear__HanFu__367827.jpeg b/civitai/lora_sd_1.5/ๆŸๅฎ้ฃŽๆฑ‰ๆœ_Sexy_underwear__HanFu__367827.jpeg index dcabb5f..dff0b6e 100644 Binary files a/civitai/lora_sd_1.5/ๆŸๅฎ้ฃŽๆฑ‰ๆœ_Sexy_underwear__HanFu__367827.jpeg and b/civitai/lora_sd_1.5/ๆŸๅฎ้ฃŽๆฑ‰ๆœ_Sexy_underwear__HanFu__367827.jpeg differ diff --git a/civitai/lora_sd_1.5/ๆญฆไพ _Wuxia_V2_1046173.jpeg b/civitai/lora_sd_1.5/ๆญฆไพ _Wuxia_V2_1046173.jpeg index e300ca7..8674189 100644 Binary files a/civitai/lora_sd_1.5/ๆญฆไพ _Wuxia_V2_1046173.jpeg and b/civitai/lora_sd_1.5/ๆญฆไพ _Wuxia_V2_1046173.jpeg differ diff --git a/civitai/lora_sd_1.5/ๆฒๅฝฉ_Colorwater_224275.jpeg b/civitai/lora_sd_1.5/ๆฒๅฝฉ_Colorwater_224275.jpeg index 4b3ab62..4294c3d 100644 Binary files a/civitai/lora_sd_1.5/ๆฒๅฝฉ_Colorwater_224275.jpeg and b/civitai/lora_sd_1.5/ๆฒๅฝฉ_Colorwater_224275.jpeg differ diff --git a/civitai/lora_sd_1.5/ๆณผๅขจ_ink_splash_754776.jpeg b/civitai/lora_sd_1.5/ๆณผๅขจ_ink_splash_754776.jpeg index 6a02035..62e73fd 100644 Binary files a/civitai/lora_sd_1.5/ๆณผๅขจ_ink_splash_754776.jpeg and b/civitai/lora_sd_1.5/ๆณผๅขจ_ink_splash_754776.jpeg differ diff --git a/civitai/lora_sd_1.5/ๆถ‚้ธฆๆตทๆŠฅๆผซ็”ป้ฃŽๆ ผ_Graffiti_Poster_Comic_Style_2454483.jpeg b/civitai/lora_sd_1.5/ๆถ‚้ธฆๆตทๆŠฅๆผซ็”ป้ฃŽๆ ผ_Graffiti_Poster_Comic_Style_2454483.jpeg index 8db7f70..3905f52 100644 Binary files a/civitai/lora_sd_1.5/ๆถ‚้ธฆๆตทๆŠฅๆผซ็”ป้ฃŽๆ ผ_Graffiti_Poster_Comic_Style_2454483.jpeg and b/civitai/lora_sd_1.5/ๆถ‚้ธฆๆตทๆŠฅๆผซ็”ป้ฃŽๆ ผ_Graffiti_Poster_Comic_Style_2454483.jpeg differ diff --git a/civitai/lora_sd_1.5/็Œซ็Œซ_Cute_cat__midjourney_style_cat__Lora_1333877.jpeg b/civitai/lora_sd_1.5/็Œซ็Œซ_Cute_cat__midjourney_style_cat__Lora_1333877.jpeg index 0d7ee04..5c28452 100644 Binary files a/civitai/lora_sd_1.5/็Œซ็Œซ_Cute_cat__midjourney_style_cat__Lora_1333877.jpeg and b/civitai/lora_sd_1.5/็Œซ็Œซ_Cute_cat__midjourney_style_cat__Lora_1333877.jpeg differ diff --git a/civitai/lora_sd_1.5/็™พ่Šฑ็ผญไนฑ_midjourney_ไบŒๆฌกๅ…ƒ_midjourney_anime_style_Lora_1309436.jpeg b/civitai/lora_sd_1.5/็™พ่Šฑ็ผญไนฑ_midjourney_ไบŒๆฌกๅ…ƒ_midjourney_anime_style_Lora_1309436.jpeg index 6072562..9c9292b 100644 Binary files a/civitai/lora_sd_1.5/็™พ่Šฑ็ผญไนฑ_midjourney_ไบŒๆฌกๅ…ƒ_midjourney_anime_style_Lora_1309436.jpeg and b/civitai/lora_sd_1.5/็™พ่Šฑ็ผญไนฑ_midjourney_ไบŒๆฌกๅ…ƒ_midjourney_anime_style_Lora_1309436.jpeg differ diff --git a/civitai/lora_sd_1.5/็ฉบๆฐ”ๅฃไบค_air_oral_sex_้€ๆ˜Žใƒ•ใ‚งใƒฉ_ใƒ•ใ‚งใƒฉ็ด ๆŒฏใ‚Š_2152024.jpeg b/civitai/lora_sd_1.5/็ฉบๆฐ”ๅฃไบค_air_oral_sex_้€ๆ˜Žใƒ•ใ‚งใƒฉ_ใƒ•ใ‚งใƒฉ็ด ๆŒฏใ‚Š_2152024.jpeg index b56e9f1..ca499bf 100644 Binary files a/civitai/lora_sd_1.5/็ฉบๆฐ”ๅฃไบค_air_oral_sex_้€ๆ˜Žใƒ•ใ‚งใƒฉ_ใƒ•ใ‚งใƒฉ็ด ๆŒฏใ‚Š_2152024.jpeg and b/civitai/lora_sd_1.5/็ฉบๆฐ”ๅฃไบค_air_oral_sex_้€ๆ˜Žใƒ•ใ‚งใƒฉ_ใƒ•ใ‚งใƒฉ็ด ๆŒฏใ‚Š_2152024.jpeg differ diff --git a/civitai/lora_sd_1.5/็ซ–็€ๆ‚ฌ็ฉบๆ†็ป‘_suspension_hanging_ๅŠใ‚Š_3016113.jpeg b/civitai/lora_sd_1.5/็ซ–็€ๆ‚ฌ็ฉบๆ†็ป‘_suspension_hanging_ๅŠใ‚Š_3016113.jpeg index 697a3f9..569c3f9 100644 Binary files a/civitai/lora_sd_1.5/็ซ–็€ๆ‚ฌ็ฉบๆ†็ป‘_suspension_hanging_ๅŠใ‚Š_3016113.jpeg and b/civitai/lora_sd_1.5/็ซ–็€ๆ‚ฌ็ฉบๆ†็ป‘_suspension_hanging_ๅŠใ‚Š_3016113.jpeg differ diff --git a/civitai/lora_sd_1.5/็บฟๆก้€Ÿๅ†™้ฃŽๆ ผ___pen_sketch_style_417030.jpeg b/civitai/lora_sd_1.5/็บฟๆก้€Ÿๅ†™้ฃŽๆ ผ___pen_sketch_style_417030.jpeg index 736f208..67419a0 100644 Binary files a/civitai/lora_sd_1.5/็บฟๆก้€Ÿๅ†™้ฃŽๆ ผ___pen_sketch_style_417030.jpeg and b/civitai/lora_sd_1.5/็บฟๆก้€Ÿๅ†™้ฃŽๆ ผ___pen_sketch_style_417030.jpeg differ diff --git a/civitai/lora_sd_1.5/่Šฑๆƒณๅฎน_Chinese_style_ๅค้ฃŽ_ไธญๅ›ฝ้ขจใงใ™_Lora_1129641.jpeg b/civitai/lora_sd_1.5/่Šฑๆƒณๅฎน_Chinese_style_ๅค้ฃŽ_ไธญๅ›ฝ้ขจใงใ™_Lora_1129641.jpeg index 43a0450..e21e83e 100644 Binary files a/civitai/lora_sd_1.5/่Šฑๆƒณๅฎน_Chinese_style_ๅค้ฃŽ_ไธญๅ›ฝ้ขจใงใ™_Lora_1129641.jpeg and b/civitai/lora_sd_1.5/่Šฑๆƒณๅฎน_Chinese_style_ๅค้ฃŽ_ไธญๅ›ฝ้ขจใงใ™_Lora_1129641.jpeg differ diff --git a/civitai/lora_sd_1.5/่Šณ่ฒ_flowergirl_274902.jpeg b/civitai/lora_sd_1.5/่Šณ่ฒ_flowergirl_274902.jpeg index 12c90a9..3cc59f2 100644 Binary files a/civitai/lora_sd_1.5/่Šณ่ฒ_flowergirl_274902.jpeg and b/civitai/lora_sd_1.5/่Šณ่ฒ_flowergirl_274902.jpeg differ diff --git a/civitai/lora_sd_1.5/่‹—ๆ—ๆœ่ฃ…___Hmong_costume_318887.jpeg b/civitai/lora_sd_1.5/่‹—ๆ—ๆœ่ฃ…___Hmong_costume_318887.jpeg index 2312d93..ac01d28 100644 Binary files a/civitai/lora_sd_1.5/่‹—ๆ—ๆœ่ฃ…___Hmong_costume_318887.jpeg and b/civitai/lora_sd_1.5/่‹—ๆ—ๆœ่ฃ…___Hmong_costume_318887.jpeg differ diff --git a/civitai/lora_sd_1.5/้Š€็‹ผ_-_Silver_Wolf___Honkai__Star_Rail_-_ๅดฉๅฃŠใ‚นใ‚ฟใƒผใƒฌใ‚คใƒซ_1784369.jpeg b/civitai/lora_sd_1.5/้Š€็‹ผ_-_Silver_Wolf___Honkai__Star_Rail_-_ๅดฉๅฃŠใ‚นใ‚ฟใƒผใƒฌใ‚คใƒซ_1784369.jpeg index 2e8026d..43432da 100644 Binary files a/civitai/lora_sd_1.5/้Š€็‹ผ_-_Silver_Wolf___Honkai__Star_Rail_-_ๅดฉๅฃŠใ‚นใ‚ฟใƒผใƒฌใ‚คใƒซ_1784369.jpeg and b/civitai/lora_sd_1.5/้Š€็‹ผ_-_Silver_Wolf___Honkai__Star_Rail_-_ๅดฉๅฃŠใ‚นใ‚ฟใƒผใƒฌใ‚คใƒซ_1784369.jpeg differ diff --git a/civitai/lora_sd_1.5/้ฑผๅญ้…ฑ_Fish_Lora_139437.jpeg b/civitai/lora_sd_1.5/้ฑผๅญ้…ฑ_Fish_Lora_139437.jpeg index 4811058..deb57e8 100644 Binary files a/civitai/lora_sd_1.5/้ฑผๅญ้…ฑ_Fish_Lora_139437.jpeg and b/civitai/lora_sd_1.5/้ฑผๅญ้…ฑ_Fish_Lora_139437.jpeg differ diff --git a/civitai/lora_sdxl_1.0/Aesthetic_Anime_LoRA_6328373.jpeg b/civitai/lora_sdxl_1.0/Aesthetic_Anime_LoRA_6328373.jpeg index aae9927..9aceebb 100644 Binary files a/civitai/lora_sdxl_1.0/Aesthetic_Anime_LoRA_6328373.jpeg and b/civitai/lora_sdxl_1.0/Aesthetic_Anime_LoRA_6328373.jpeg differ diff --git a/civitai/lora_sdxl_1.0/All_Disney_Princess_XL_LoRA_Model_from_Ralph_Breaks_the_Internet_4058459.jpeg b/civitai/lora_sdxl_1.0/All_Disney_Princess_XL_LoRA_Model_from_Ralph_Breaks_the_Internet_4058459.jpeg index 254ce14..48870b8 100644 Binary files a/civitai/lora_sdxl_1.0/All_Disney_Princess_XL_LoRA_Model_from_Ralph_Breaks_the_Internet_4058459.jpeg and b/civitai/lora_sdxl_1.0/All_Disney_Princess_XL_LoRA_Model_from_Ralph_Breaks_the_Internet_4058459.jpeg differ diff --git a/civitai/lora_sdxl_1.0/Alphonse_Mucha_Style_2321034.jpeg b/civitai/lora_sdxl_1.0/Alphonse_Mucha_Style_2321034.jpeg index 140c11b..fd42a50 100644 Binary files a/civitai/lora_sdxl_1.0/Alphonse_Mucha_Style_2321034.jpeg and b/civitai/lora_sdxl_1.0/Alphonse_Mucha_Style_2321034.jpeg differ diff --git a/civitai/lora_sdxl_1.0/Better_Faces_LoRA_6525174.jpeg b/civitai/lora_sdxl_1.0/Better_Faces_LoRA_6525174.jpeg index e9d9145..a79c055 100644 Binary files a/civitai/lora_sdxl_1.0/Better_Faces_LoRA_6525174.jpeg and b/civitai/lora_sdxl_1.0/Better_Faces_LoRA_6525174.jpeg differ diff --git a/civitai/lora_sdxl_1.0/Cinematic_Shot__11368089.jpeg b/civitai/lora_sdxl_1.0/Cinematic_Shot__11368089.jpeg index aa78e51..e82096f 100644 Binary files a/civitai/lora_sdxl_1.0/Cinematic_Shot__11368089.jpeg and b/civitai/lora_sdxl_1.0/Cinematic_Shot__11368089.jpeg differ diff --git a/civitai/lora_sdxl_1.0/ClassipeintXL__oil_paint___oil_painting_style__6998858.jpeg b/civitai/lora_sdxl_1.0/ClassipeintXL__oil_paint___oil_painting_style__6998858.jpeg index e0605fd..aafcefb 100644 Binary files a/civitai/lora_sdxl_1.0/ClassipeintXL__oil_paint___oil_painting_style__6998858.jpeg and b/civitai/lora_sdxl_1.0/ClassipeintXL__oil_paint___oil_painting_style__6998858.jpeg differ diff --git a/civitai/lora_sdxl_1.0/Concept__Perfect_Eyes_1797816.jpeg b/civitai/lora_sdxl_1.0/Concept__Perfect_Eyes_1797816.jpeg index 0f07543..5ac1ebe 100644 Binary files a/civitai/lora_sdxl_1.0/Concept__Perfect_Eyes_1797816.jpeg and b/civitai/lora_sdxl_1.0/Concept__Perfect_Eyes_1797816.jpeg differ diff --git a/civitai/lora_sdxl_1.0/Detail_Tweaker_XL_1917130.jpeg b/civitai/lora_sdxl_1.0/Detail_Tweaker_XL_1917130.jpeg index a3e7e66..48ec1b7 100644 Binary files a/civitai/lora_sdxl_1.0/Detail_Tweaker_XL_1917130.jpeg and b/civitai/lora_sdxl_1.0/Detail_Tweaker_XL_1917130.jpeg differ diff --git a/civitai/lora_sdxl_1.0/DetailedEyes_XL_2148743.jpeg b/civitai/lora_sdxl_1.0/DetailedEyes_XL_2148743.jpeg index b92bfce..29af008 100644 Binary files a/civitai/lora_sdxl_1.0/DetailedEyes_XL_2148743.jpeg and b/civitai/lora_sdxl_1.0/DetailedEyes_XL_2148743.jpeg differ diff --git a/civitai/lora_sdxl_1.0/Detailers_By_Stable_Yogi_40642030.jpeg b/civitai/lora_sdxl_1.0/Detailers_By_Stable_Yogi_40642030.jpeg index 8e35075..555ac2c 100644 Binary files a/civitai/lora_sdxl_1.0/Detailers_By_Stable_Yogi_40642030.jpeg and b/civitai/lora_sdxl_1.0/Detailers_By_Stable_Yogi_40642030.jpeg differ diff --git a/civitai/lora_sdxl_1.0/Dissolve_Style__LoRA_1.5_SDXL__4949284.jpeg b/civitai/lora_sdxl_1.0/Dissolve_Style__LoRA_1.5_SDXL__4949284.jpeg index 89a2b29..4053168 100644 Binary files a/civitai/lora_sdxl_1.0/Dissolve_Style__LoRA_1.5_SDXL__4949284.jpeg and b/civitai/lora_sdxl_1.0/Dissolve_Style__LoRA_1.5_SDXL__4949284.jpeg differ diff --git a/civitai/lora_sdxl_1.0/Envy_Zoom_Slider_XL_01_3949708.jpeg b/civitai/lora_sdxl_1.0/Envy_Zoom_Slider_XL_01_3949708.jpeg index 6a2e071..7d42e28 100644 Binary files a/civitai/lora_sdxl_1.0/Envy_Zoom_Slider_XL_01_3949708.jpeg and b/civitai/lora_sdxl_1.0/Envy_Zoom_Slider_XL_01_3949708.jpeg differ diff --git a/civitai/lora_sdxl_1.0/Glass_Sculptures_2837951.jpeg b/civitai/lora_sdxl_1.0/Glass_Sculptures_2837951.jpeg index 5e4b237..8263034 100644 Binary files a/civitai/lora_sdxl_1.0/Glass_Sculptures_2837951.jpeg and b/civitai/lora_sdxl_1.0/Glass_Sculptures_2837951.jpeg differ diff --git a/civitai/lora_sdxl_1.0/GlowNeon_XL_LoRA_6762990.jpeg b/civitai/lora_sdxl_1.0/GlowNeon_XL_LoRA_6762990.jpeg index 4bd369d..a7bdc6c 100644 Binary files a/civitai/lora_sdxl_1.0/GlowNeon_XL_LoRA_6762990.jpeg and b/civitai/lora_sdxl_1.0/GlowNeon_XL_LoRA_6762990.jpeg differ diff --git a/civitai/lora_sdxl_1.0/Greg_Rutkowski_Inspired_Style_LoRA__SDXL__1752535.jpeg b/civitai/lora_sdxl_1.0/Greg_Rutkowski_Inspired_Style_LoRA__SDXL__1752535.jpeg index 179466f..06c8759 100644 Binary files a/civitai/lora_sdxl_1.0/Greg_Rutkowski_Inspired_Style_LoRA__SDXL__1752535.jpeg and b/civitai/lora_sdxl_1.0/Greg_Rutkowski_Inspired_Style_LoRA__SDXL__1752535.jpeg differ diff --git a/civitai/lora_sdxl_1.0/Harrlogos_XL_-_Finally__custom_text_generation_in_SD__3423003.jpeg b/civitai/lora_sdxl_1.0/Harrlogos_XL_-_Finally__custom_text_generation_in_SD__3423003.jpeg index 6f9fa24..1392413 100644 Binary files a/civitai/lora_sdxl_1.0/Harrlogos_XL_-_Finally__custom_text_generation_in_SD__3423003.jpeg and b/civitai/lora_sdxl_1.0/Harrlogos_XL_-_Finally__custom_text_generation_in_SD__3423003.jpeg differ diff --git a/civitai/lora_sdxl_1.0/Hitori_Gotoh__Bocchi_the_Rock___2927520.jpeg b/civitai/lora_sdxl_1.0/Hitori_Gotoh__Bocchi_the_Rock___2927520.jpeg index 84f6221..b807d76 100644 Binary files a/civitai/lora_sdxl_1.0/Hitori_Gotoh__Bocchi_the_Rock___2927520.jpeg and b/civitai/lora_sdxl_1.0/Hitori_Gotoh__Bocchi_the_Rock___2927520.jpeg differ diff --git a/civitai/lora_sdxl_1.0/Ingrid__Taimanin_Series__Hell_Knight_Ingrid__NoobAI-XL__IllustriousXL____PonyXL___SD_1.5_39043944.jpeg b/civitai/lora_sdxl_1.0/Ingrid__Taimanin_Series__Hell_Knight_Ingrid__NoobAI-XL__IllustriousXL____PonyXL___SD_1.5_39043944.jpeg index 8217ea3..07a025a 100644 Binary files a/civitai/lora_sdxl_1.0/Ingrid__Taimanin_Series__Hell_Knight_Ingrid__NoobAI-XL__IllustriousXL____PonyXL___SD_1.5_39043944.jpeg and b/civitai/lora_sdxl_1.0/Ingrid__Taimanin_Series__Hell_Knight_Ingrid__NoobAI-XL__IllustriousXL____PonyXL___SD_1.5_39043944.jpeg differ diff --git a/civitai/lora_sdxl_1.0/Juggernaut_Cinematic_XL_LoRA_1844260.jpeg b/civitai/lora_sdxl_1.0/Juggernaut_Cinematic_XL_LoRA_1844260.jpeg index ba048d8..c41b60b 100644 Binary files a/civitai/lora_sdxl_1.0/Juggernaut_Cinematic_XL_LoRA_1844260.jpeg and b/civitai/lora_sdxl_1.0/Juggernaut_Cinematic_XL_LoRA_1844260.jpeg differ diff --git a/civitai/lora_sdxl_1.0/LCM-LoRA_Weights_-_Stable_Diffusion_Acceleration_Module_9026061.jpeg b/civitai/lora_sdxl_1.0/LCM-LoRA_Weights_-_Stable_Diffusion_Acceleration_Module_9026061.jpeg index 47a867a..cd691ee 100644 Binary files a/civitai/lora_sdxl_1.0/LCM-LoRA_Weights_-_Stable_Diffusion_Acceleration_Module_9026061.jpeg and b/civitai/lora_sdxl_1.0/LCM-LoRA_Weights_-_Stable_Diffusion_Acceleration_Module_9026061.jpeg differ diff --git a/civitai/lora_sdxl_1.0/LCM_TurboMix_LoRA__Only_12MB__8-step_sampling_Effect_is_superior_to_using_LCM_or_Turbo_alone___4132354.jpeg b/civitai/lora_sdxl_1.0/LCM_TurboMix_LoRA__Only_12MB__8-step_sampling_Effect_is_superior_to_using_LCM_or_Turbo_alone___4132354.jpeg index 23b7206..117fa52 100644 Binary files a/civitai/lora_sdxl_1.0/LCM_TurboMix_LoRA__Only_12MB__8-step_sampling_Effect_is_superior_to_using_LCM_or_Turbo_alone___4132354.jpeg and b/civitai/lora_sdxl_1.0/LCM_TurboMix_LoRA__Only_12MB__8-step_sampling_Effect_is_superior_to_using_LCM_or_Turbo_alone___4132354.jpeg differ diff --git a/civitai/lora_sdxl_1.0/LeLo_-_LEGO_LoRA_for_XL___SD1.5_6016204.jpeg b/civitai/lora_sdxl_1.0/LeLo_-_LEGO_LoRA_for_XL___SD1.5_6016204.jpeg index 6c7eadd..f12bfc2 100644 Binary files a/civitai/lora_sdxl_1.0/LeLo_-_LEGO_LoRA_for_XL___SD1.5_6016204.jpeg and b/civitai/lora_sdxl_1.0/LeLo_-_LEGO_LoRA_for_XL___SD1.5_6016204.jpeg differ diff --git a/civitai/lora_sdxl_1.0/LineAniRedmond-_Linear_Manga_Style_for_SD_XL_-_Anime_Style._2829304.jpeg b/civitai/lora_sdxl_1.0/LineAniRedmond-_Linear_Manga_Style_for_SD_XL_-_Anime_Style._2829304.jpeg index fa1bfbb..aad5a3e 100644 Binary files a/civitai/lora_sdxl_1.0/LineAniRedmond-_Linear_Manga_Style_for_SD_XL_-_Anime_Style._2829304.jpeg and b/civitai/lora_sdxl_1.0/LineAniRedmond-_Linear_Manga_Style_for_SD_XL_-_Anime_Style._2829304.jpeg differ diff --git a/civitai/lora_sdxl_1.0/Logo.Redmond_-_Logo_Lora_for_SD_XL_1.0_2828404.jpeg b/civitai/lora_sdxl_1.0/Logo.Redmond_-_Logo_Lora_for_SD_XL_1.0_2828404.jpeg index 3ccade9..4525f16 100644 Binary files a/civitai/lora_sdxl_1.0/Logo.Redmond_-_Logo_Lora_for_SD_XL_1.0_2828404.jpeg and b/civitai/lora_sdxl_1.0/Logo.Redmond_-_Logo_Lora_for_SD_XL_1.0_2828404.jpeg differ diff --git a/civitai/lora_sdxl_1.0/Midjourney_mimic_21727039.jpeg b/civitai/lora_sdxl_1.0/Midjourney_mimic_21727039.jpeg index ad72b52..74427c3 100644 Binary files a/civitai/lora_sdxl_1.0/Midjourney_mimic_21727039.jpeg and b/civitai/lora_sdxl_1.0/Midjourney_mimic_21727039.jpeg differ diff --git a/civitai/lora_sdxl_1.0/Papercut_SDXL_1871648.jpeg b/civitai/lora_sdxl_1.0/Papercut_SDXL_1871648.jpeg index d3d77e8..885eab3 100644 Binary files a/civitai/lora_sdxl_1.0/Papercut_SDXL_1871648.jpeg and b/civitai/lora_sdxl_1.0/Papercut_SDXL_1871648.jpeg differ diff --git a/civitai/lora_sdxl_1.0/ParchartXL_9626613.jpeg b/civitai/lora_sdxl_1.0/ParchartXL_9626613.jpeg index 218c897..f6cb44f 100644 Binary files a/civitai/lora_sdxl_1.0/ParchartXL_9626613.jpeg and b/civitai/lora_sdxl_1.0/ParchartXL_9626613.jpeg differ diff --git a/civitai/lora_sdxl_1.0/Perfect_Eyes_XL_1772388.jpeg b/civitai/lora_sdxl_1.0/Perfect_Eyes_XL_1772388.jpeg index 8f32b07..e02073d 100644 Binary files a/civitai/lora_sdxl_1.0/Perfect_Eyes_XL_1772388.jpeg and b/civitai/lora_sdxl_1.0/Perfect_Eyes_XL_1772388.jpeg differ diff --git a/civitai/lora_sdxl_1.0/Pixel_Art_XL_1918193.jpeg b/civitai/lora_sdxl_1.0/Pixel_Art_XL_1918193.jpeg index bc334f5..96a3a54 100644 Binary files a/civitai/lora_sdxl_1.0/Pixel_Art_XL_1918193.jpeg and b/civitai/lora_sdxl_1.0/Pixel_Art_XL_1918193.jpeg differ diff --git a/civitai/lora_sdxl_1.0/Pokemon_Trainer_Sprite_PixelArt_9737398.jpeg b/civitai/lora_sdxl_1.0/Pokemon_Trainer_Sprite_PixelArt_9737398.jpeg index 7de8999..3a67232 100644 Binary files a/civitai/lora_sdxl_1.0/Pokemon_Trainer_Sprite_PixelArt_9737398.jpeg and b/civitai/lora_sdxl_1.0/Pokemon_Trainer_Sprite_PixelArt_9737398.jpeg differ diff --git a/civitai/lora_sdxl_1.0/RMSDXL_Enhance_XL__tool__4738085.jpeg b/civitai/lora_sdxl_1.0/RMSDXL_Enhance_XL__tool__4738085.jpeg index 2506213..6a7a2f0 100644 Binary files a/civitai/lora_sdxl_1.0/RMSDXL_Enhance_XL__tool__4738085.jpeg and b/civitai/lora_sdxl_1.0/RMSDXL_Enhance_XL__tool__4738085.jpeg differ diff --git a/civitai/lora_sdxl_1.0/SDXL_FaeTastic_Details_5361646.jpeg b/civitai/lora_sdxl_1.0/SDXL_FaeTastic_Details_5361646.jpeg index e65aa60..a753322 100644 Binary files a/civitai/lora_sdxl_1.0/SDXL_FaeTastic_Details_5361646.jpeg and b/civitai/lora_sdxl_1.0/SDXL_FaeTastic_Details_5361646.jpeg differ diff --git a/civitai/lora_sdxl_1.0/SDXL_MS_Paint_Portraits_3272136.jpeg b/civitai/lora_sdxl_1.0/SDXL_MS_Paint_Portraits_3272136.jpeg index f091eb5..8d577dc 100644 Binary files a/civitai/lora_sdxl_1.0/SDXL_MS_Paint_Portraits_3272136.jpeg and b/civitai/lora_sdxl_1.0/SDXL_MS_Paint_Portraits_3272136.jpeg differ diff --git a/civitai/lora_sdxl_1.0/SXZ_Texture_Bringer___Concept___14198896.jpeg b/civitai/lora_sdxl_1.0/SXZ_Texture_Bringer___Concept___14198896.jpeg index 9e22a93..922cd17 100644 Binary files a/civitai/lora_sdxl_1.0/SXZ_Texture_Bringer___Concept___14198896.jpeg and b/civitai/lora_sdxl_1.0/SXZ_Texture_Bringer___Concept___14198896.jpeg differ diff --git a/civitai/lora_sdxl_1.0/Stylized_Setting__Isometric__SDXL___SD1.5_5179048.jpeg b/civitai/lora_sdxl_1.0/Stylized_Setting__Isometric__SDXL___SD1.5_5179048.jpeg index 80fb2ad..bbbf782 100644 Binary files a/civitai/lora_sdxl_1.0/Stylized_Setting__Isometric__SDXL___SD1.5_5179048.jpeg and b/civitai/lora_sdxl_1.0/Stylized_Setting__Isometric__SDXL___SD1.5_5179048.jpeg differ diff --git a/civitai/lora_sdxl_1.0/Voxel_XL_1996739.jpeg b/civitai/lora_sdxl_1.0/Voxel_XL_1996739.jpeg index 8d51bc4..d5fbfd2 100644 Binary files a/civitai/lora_sdxl_1.0/Voxel_XL_1996739.jpeg and b/civitai/lora_sdxl_1.0/Voxel_XL_1996739.jpeg differ diff --git a/civitai/lora_sdxl_1.0/WowifierXL_3482296.jpeg b/civitai/lora_sdxl_1.0/WowifierXL_3482296.jpeg index 1fed957..ae8c93a 100644 Binary files a/civitai/lora_sdxl_1.0/WowifierXL_3482296.jpeg and b/civitai/lora_sdxl_1.0/WowifierXL_3482296.jpeg differ diff --git a/civitai/lora_sdxl_1.0/XL_Fantasy_Knights_-_by_HailoKnight_39896310.jpeg b/civitai/lora_sdxl_1.0/XL_Fantasy_Knights_-_by_HailoKnight_39896310.jpeg index 7f93315..806a9e2 100644 Binary files a/civitai/lora_sdxl_1.0/XL_Fantasy_Knights_-_by_HailoKnight_39896310.jpeg and b/civitai/lora_sdxl_1.0/XL_Fantasy_Knights_-_by_HailoKnight_39896310.jpeg differ diff --git a/civitai/lora_sdxl_1.0/YameroYandere_37916039.jpeg b/civitai/lora_sdxl_1.0/YameroYandere_37916039.jpeg index eed53ec..2cb0ee8 100644 Binary files a/civitai/lora_sdxl_1.0/YameroYandere_37916039.jpeg and b/civitai/lora_sdxl_1.0/YameroYandere_37916039.jpeg differ diff --git a/civitai/lora_sdxl_1.0/Zavy_s_Dark_Atmospheric_Contrast_-_SDXL_6341888.jpeg b/civitai/lora_sdxl_1.0/Zavy_s_Dark_Atmospheric_Contrast_-_SDXL_6341888.jpeg index 0bd35cd..cfdaaa0 100644 Binary files a/civitai/lora_sdxl_1.0/Zavy_s_Dark_Atmospheric_Contrast_-_SDXL_6341888.jpeg and b/civitai/lora_sdxl_1.0/Zavy_s_Dark_Atmospheric_Contrast_-_SDXL_6341888.jpeg differ diff --git a/civitai/lora_sdxl_1.0/_Lah__Cute_Social___SDXL___SD1.5_3050046.jpeg b/civitai/lora_sdxl_1.0/_Lah__Cute_Social___SDXL___SD1.5_3050046.jpeg index 92ae2bd..00c5b0b 100644 Binary files a/civitai/lora_sdxl_1.0/_Lah__Cute_Social___SDXL___SD1.5_3050046.jpeg and b/civitai/lora_sdxl_1.0/_Lah__Cute_Social___SDXL___SD1.5_3050046.jpeg differ diff --git a/civitai/lora_sdxl_1.0/_SDXL___SD_1.5__Simple_pointed_toe_stiletto_heels_without_ankle_strap__ๅฐ–ๅคด้ซ˜่ทŸ้ž‹__10066707.jpeg b/civitai/lora_sdxl_1.0/_SDXL___SD_1.5__Simple_pointed_toe_stiletto_heels_without_ankle_strap__ๅฐ–ๅคด้ซ˜่ทŸ้ž‹__10066707.jpeg index 1a24fda..ee0a7ba 100644 Binary files a/civitai/lora_sdxl_1.0/_SDXL___SD_1.5__Simple_pointed_toe_stiletto_heels_without_ankle_strap__ๅฐ–ๅคด้ซ˜่ทŸ้ž‹__10066707.jpeg and b/civitai/lora_sdxl_1.0/_SDXL___SD_1.5__Simple_pointed_toe_stiletto_heels_without_ankle_strap__ๅฐ–ๅคด้ซ˜่ทŸ้ž‹__10066707.jpeg differ diff --git a/civitai/lora_sdxl_1.0/_SDXL_chinese_style_illustration_--_ๅ›ฝ้ฃŽๆ’็”ป_1817595.jpeg b/civitai/lora_sdxl_1.0/_SDXL_chinese_style_illustration_--_ๅ›ฝ้ฃŽๆ’็”ป_1817595.jpeg index dfdfc3c..d918cdc 100644 Binary files a/civitai/lora_sdxl_1.0/_SDXL_chinese_style_illustration_--_ๅ›ฝ้ฃŽๆ’็”ป_1817595.jpeg and b/civitai/lora_sdxl_1.0/_SDXL_chinese_style_illustration_--_ๅ›ฝ้ฃŽๆ’็”ป_1817595.jpeg differ diff --git a/civitai/lora_sdxl_1.0/extremely_detailed__no_trigger__-_sliders.ntcai.xyz_7703460.jpeg b/civitai/lora_sdxl_1.0/extremely_detailed__no_trigger__-_sliders.ntcai.xyz_7703460.jpeg index 0e91dfc..3e9a64c 100644 Binary files a/civitai/lora_sdxl_1.0/extremely_detailed__no_trigger__-_sliders.ntcai.xyz_7703460.jpeg and b/civitai/lora_sdxl_1.0/extremely_detailed__no_trigger__-_sliders.ntcai.xyz_7703460.jpeg differ diff --git a/civitai/lora_sdxl_1.0/gmic_icon_food_category_41063875.jpeg b/civitai/lora_sdxl_1.0/gmic_icon_food_category_41063875.jpeg index 6077cb5..1a94548 100644 Binary files a/civitai/lora_sdxl_1.0/gmic_icon_food_category_41063875.jpeg and b/civitai/lora_sdxl_1.0/gmic_icon_food_category_41063875.jpeg differ diff --git a/civitai/lora_sdxl_1.0/pantyhose_3883648.jpeg b/civitai/lora_sdxl_1.0/pantyhose_3883648.jpeg index df8ade4..f70bad9 100644 Binary files a/civitai/lora_sdxl_1.0/pantyhose_3883648.jpeg and b/civitai/lora_sdxl_1.0/pantyhose_3883648.jpeg differ diff --git a/civitai/lora_sdxl_1.0/riding_on_a__7764010.jpeg b/civitai/lora_sdxl_1.0/riding_on_a__7764010.jpeg index 7fca867..fb4375d 100644 Binary files a/civitai/lora_sdxl_1.0/riding_on_a__7764010.jpeg and b/civitai/lora_sdxl_1.0/riding_on_a__7764010.jpeg differ diff --git a/civitai/lora_sdxl_1.0/xl_more_art-full___xl_real___Enhancer_2287991.jpeg b/civitai/lora_sdxl_1.0/xl_more_art-full___xl_real___Enhancer_2287991.jpeg index b9608c2..1157220 100644 Binary files a/civitai/lora_sdxl_1.0/xl_more_art-full___xl_real___Enhancer_2287991.jpeg and b/civitai/lora_sdxl_1.0/xl_more_art-full___xl_real___Enhancer_2287991.jpeg differ diff --git a/civitai/lora_sdxl_1.0/ใ‚ซใƒฉใ‚ชใ‚ฑ_karaokeroom_10813387.jpeg b/civitai/lora_sdxl_1.0/ใ‚ซใƒฉใ‚ชใ‚ฑ_karaokeroom_10813387.jpeg index be80d06..b1f5fe9 100644 Binary files a/civitai/lora_sdxl_1.0/ใ‚ซใƒฉใ‚ชใ‚ฑ_karaokeroom_10813387.jpeg and b/civitai/lora_sdxl_1.0/ใ‚ซใƒฉใ‚ชใ‚ฑ_karaokeroom_10813387.jpeg differ diff --git a/civitai/lora_sdxl_1.0/ๅญฆๆ ก_School_Building_Scenery_LoRA_2115523.jpeg b/civitai/lora_sdxl_1.0/ๅญฆๆ ก_School_Building_Scenery_LoRA_2115523.jpeg index 27b3576..a373422 100644 Binary files a/civitai/lora_sdxl_1.0/ๅญฆๆ ก_School_Building_Scenery_LoRA_2115523.jpeg and b/civitai/lora_sdxl_1.0/ๅญฆๆ ก_School_Building_Scenery_LoRA_2115523.jpeg differ diff --git a/civitai/other/9527_67246.jpeg b/civitai/other/9527_67246.jpeg index 7007c8f..963f686 100644 Binary files a/civitai/other/9527_67246.jpeg and b/civitai/other/9527_67246.jpeg differ diff --git a/civitai/other/Anime_Illust_Diffusion_1532972.jpeg b/civitai/other/Anime_Illust_Diffusion_1532972.jpeg index c3294d2..c16028f 100644 Binary files a/civitai/other/Anime_Illust_Diffusion_1532972.jpeg and b/civitai/other/Anime_Illust_Diffusion_1532972.jpeg differ diff --git a/civitai/other/Ekmix-Pastel_286024.jpeg b/civitai/other/Ekmix-Pastel_286024.jpeg index 40c6057..a8632b7 100644 Binary files a/civitai/other/Ekmix-Pastel_286024.jpeg and b/civitai/other/Ekmix-Pastel_286024.jpeg differ diff --git a/civitai/other/Five_Nuts_Mixed_ไบ”ไปๆœˆ้ฅผMix_280238.jpeg b/civitai/other/Five_Nuts_Mixed_ไบ”ไปๆœˆ้ฅผMix_280238.jpeg index 99a1616..d0d2564 100644 Binary files a/civitai/other/Five_Nuts_Mixed_ไบ”ไปๆœˆ้ฅผMix_280238.jpeg and b/civitai/other/Five_Nuts_Mixed_ไบ”ไปๆœˆ้ฅผMix_280238.jpeg differ diff --git a/civitai/other/MIX-Pro-V4.5_ColorBox_442684.jpeg b/civitai/other/MIX-Pro-V4.5_ColorBox_442684.jpeg index 9386dea..731a758 100644 Binary files a/civitai/other/MIX-Pro-V4.5_ColorBox_442684.jpeg and b/civitai/other/MIX-Pro-V4.5_ColorBox_442684.jpeg differ diff --git a/civitai/other/MIX-Pro-V4_394740.jpeg b/civitai/other/MIX-Pro-V4_394740.jpeg index 01758e6..95c7d2f 100644 Binary files a/civitai/other/MIX-Pro-V4_394740.jpeg and b/civitai/other/MIX-Pro-V4_394740.jpeg differ diff --git a/civitai/other/NijiV5style_508602.jpeg b/civitai/other/NijiV5style_508602.jpeg index f6b6afd..fc15a8a 100644 Binary files a/civitai/other/NijiV5style_508602.jpeg and b/civitai/other/NijiV5style_508602.jpeg differ diff --git a/civitai/other/NineKeyMIX12_1467601.jpeg b/civitai/other/NineKeyMIX12_1467601.jpeg index 3b3d855..5c0fc07 100644 Binary files a/civitai/other/NineKeyMIX12_1467601.jpeg and b/civitai/other/NineKeyMIX12_1467601.jpeg differ diff --git a/civitai/other/Pastel-Mix__Stylized_Anime_Model__55764.jpeg b/civitai/other/Pastel-Mix__Stylized_Anime_Model__55764.jpeg index b12fb9e..2c6804d 100644 Binary files a/civitai/other/Pastel-Mix__Stylized_Anime_Model__55764.jpeg and b/civitai/other/Pastel-Mix__Stylized_Anime_Model__55764.jpeg differ diff --git a/civitai/other/Perfect_Sketchbook_ๅฎŒ็พŽ่‰ๅ›พ_395029.jpeg b/civitai/other/Perfect_Sketchbook_ๅฎŒ็พŽ่‰ๅ›พ_395029.jpeg index 5cf6570..f9bfb1d 100644 Binary files a/civitai/other/Perfect_Sketchbook_ๅฎŒ็พŽ่‰ๅ›พ_395029.jpeg and b/civitai/other/Perfect_Sketchbook_ๅฎŒ็พŽ่‰ๅ›พ_395029.jpeg differ diff --git a/civitai/other/Roop_-_Video_Face_Replacement_963567.jpeg b/civitai/other/Roop_-_Video_Face_Replacement_963567.jpeg index 991399b..fa54d91 100644 Binary files a/civitai/other/Roop_-_Video_Face_Replacement_963567.jpeg and b/civitai/other/Roop_-_Video_Face_Replacement_963567.jpeg differ diff --git a/civitai/other/SilvermoonMix_Base_model_3752899.jpeg b/civitai/other/SilvermoonMix_Base_model_3752899.jpeg index 4c63646..e0e2195 100644 Binary files a/civitai/other/SilvermoonMix_Base_model_3752899.jpeg and b/civitai/other/SilvermoonMix_Base_model_3752899.jpeg differ diff --git a/civitai/other/Three_Delicacy_Wonton__ไธ‰้คก้ฆ„้ฅจMix__418204.jpeg b/civitai/other/Three_Delicacy_Wonton__ไธ‰้คก้ฆ„้ฅจMix__418204.jpeg index d953a82..9e08790 100644 Binary files a/civitai/other/Three_Delicacy_Wonton__ไธ‰้คก้ฆ„้ฅจMix__418204.jpeg and b/civitai/other/Three_Delicacy_Wonton__ไธ‰้คก้ฆ„้ฅจMix__418204.jpeg differ diff --git a/civitai/other/VivCharMix_1136889.jpeg b/civitai/other/VivCharMix_1136889.jpeg index c767871..b98f24b 100644 Binary files a/civitai/other/VivCharMix_1136889.jpeg and b/civitai/other/VivCharMix_1136889.jpeg differ diff --git a/civitai/other/_MAGIFACTORY__t-shirt_diffusion_70770.jpeg b/civitai/other/_MAGIFACTORY__t-shirt_diffusion_70770.jpeg index a7dab9e..633ab32 100644 Binary files a/civitai/other/_MAGIFACTORY__t-shirt_diffusion_70770.jpeg and b/civitai/other/_MAGIFACTORY__t-shirt_diffusion_70770.jpeg differ diff --git a/civitai/other/ouka_niji5_1150460.jpeg b/civitai/other/ouka_niji5_1150460.jpeg index a9c78a4..26c342a 100644 Binary files a/civitai/other/ouka_niji5_1150460.jpeg and b/civitai/other/ouka_niji5_1150460.jpeg differ diff --git a/civitai/other/siiNCeysMiX_V1___V2___Alternative_Version_19637.jpeg b/civitai/other/siiNCeysMiX_V1___V2___Alternative_Version_19637.jpeg index 0adc915..53e32b6 100644 Binary files a/civitai/other/siiNCeysMiX_V1___V2___Alternative_Version_19637.jpeg and b/civitai/other/siiNCeysMiX_V1___V2___Alternative_Version_19637.jpeg differ diff --git a/civitai/other/yden_543841.jpeg b/civitai/other/yden_543841.jpeg index 62e1023..7bc734a 100644 Binary files a/civitai/other/yden_543841.jpeg and b/civitai/other/yden_543841.jpeg differ diff --git a/civitai/other/ๅ›ฝ้ฃŽ2_GuoFeng2_915642.jpeg b/civitai/other/ๅ›ฝ้ฃŽ2_GuoFeng2_915642.jpeg index d785e16..afcb000 100644 Binary files a/civitai/other/ๅ›ฝ้ฃŽ2_GuoFeng2_915642.jpeg and b/civitai/other/ๅ›ฝ้ฃŽ2_GuoFeng2_915642.jpeg differ diff --git a/civitai/parsed_lora_hunyuan_video_loras.json b/civitai/parsed_lora_hunyuan_video_loras.json new file mode 100644 index 0000000..fa93035 --- /dev/null +++ b/civitai/parsed_lora_hunyuan_video_loras.json @@ -0,0 +1,1299 @@ +[ + { + "name": "Super_Realistic_Ahegao_for_Hunyuan_Video", + "lora_id": 1075765, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Super_Realistic_Ahegao_for_Hunyuan_Video_47865399.jpeg", + "download_url": "https://civitai.com/api/download/models/1207650", + "trained_words": [ + "ahegao face, cross-eyed, tongue sticking out" + ] + }, + { + "name": "Eimi_Fukada__PonyXL_Flux_Hunyuan_Video_", + "lora_id": 477692, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Eimi_Fukada__PonyXL_Flux_Hunyuan_Video__51633903.jpeg", + "download_url": "https://civitai.com/api/download/models/1282806", + "trained_words": [ + "eimifukada" + ] + }, + { + "name": "Rem__Re_Zero__Hunyuan_Video_Character_Lora", + "lora_id": 1033325, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Rem__Re_Zero__Hunyuan_Video_Character_Lora_45263956.jpeg", + "download_url": "https://civitai.com/api/download/models/1158953", + "trained_words": [ + "kxsr" + ] + }, + { + "name": "Emma_Watson_Hunyuan_video_Lora", + "lora_id": 1099522, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Emma_Watson_Hunyuan_video_Lora_49291156.jpeg", + "download_url": "https://civitai.com/api/download/models/1235087", + "trained_words": [] + }, + { + "name": "Hunyuan_Video_Lora_-_Yor", + "lora_id": 1055994, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Hunyuan_Video_Lora_-_Yor_46607353.jpeg", + "download_url": "https://civitai.com/api/download/models/1184914", + "trained_words": [ + "dagger", + "black dress", + "gold accessories", + "yor forger" + ] + }, + { + "name": "Natalie_Portman_Hunyuan_Video_Lora", + "lora_id": 1090839, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Natalie_Portman_Hunyuan_Video_Lora_49741912.jpeg", + "download_url": "https://civitai.com/api/download/models/1244794", + "trained_words": [ + "p0rtm4n" + ] + }, + { + "name": "Hunyuan_Video_Lora_-_AnimeShots", + "lora_id": 1064343, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Hunyuan_Video_Lora_-_AnimeShots_47127332.jpeg", + "download_url": "https://civitai.com/api/download/models/1194497", + "trained_words": [ + "anime" + ] + }, + { + "name": "Belle_Delphine__Hunyuan_Video_", + "lora_id": 1106750, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Belle_Delphine__Hunyuan_Video__49686175.jpeg", + "download_url": "https://civitai.com/api/download/models/1243416", + "trained_words": [ + "belle delphine" + ] + }, + { + "name": "Wednesday_Addams_-_Hunyuan_Video_Lora", + "lora_id": 1120311, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Wednesday_Addams_-_Hunyuan_Video_Lora_50441123.jpeg", + "download_url": "https://civitai.com/api/download/models/1259103", + "trained_words": [ + "wednesday addams" + ] + }, + { + "name": "Walking_Animation_Hunyuan_Video", + "lora_id": 1032126, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Walking_Animation_Hunyuan_Video_45192417.jpeg", + "download_url": "https://civitai.com/api/download/models/1157591", + "trained_words": [ + "kxsr" + ] + }, + { + "name": "Joan_Holloway__Christina_Hendricks____Hunyuan_Video_LORA", + "lora_id": 1085399, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Joan_Holloway__Christina_Hendricks____Hunyuan_Video_LORA_48763837.jpeg", + "download_url": "https://civitai.com/api/download/models/1218824", + "trained_words": [ + "Joan" + ] + }, + { + "name": "Jennifer_Connelly__from_Career_Opportunities____Hunyuan_Video_LORA", + "lora_id": 1101425, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Jennifer_Connelly__from_Career_Opportunities____Hunyuan_Video_LORA_49384788.jpeg", + "download_url": "https://civitai.com/api/download/models/1237245", + "trained_words": [ + "jennifer connelly", + "white tank top" + ] + }, + { + "name": "Hunyuan_Video_-_Arnold_Schwarzenegger_-_LoRA", + "lora_id": 1034630, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Hunyuan_Video_-_Arnold_Schwarzenegger_-_LoRA_45332037.jpeg", + "download_url": "https://civitai.com/api/download/models/1160430", + "trained_words": [ + "ohwx person" + ] + }, + { + "name": "Sydney_Sweeney_Hunyuan_video_Lora", + "lora_id": 1093331, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Sydney_Sweeney_Hunyuan_video_Lora_49693394.jpeg", + "download_url": "https://civitai.com/api/download/models/1243594", + "trained_words": [ + "sw33ny" + ] + }, + { + "name": "Ariana_Grande_-_Hunyuan_Video_Lora", + "lora_id": 1135315, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Ariana_Grande_-_Hunyuan_Video_Lora_51296793.jpeg", + "download_url": "https://civitai.com/api/download/models/1276468", + "trained_words": [ + "Ariana" + ] + }, + { + "name": "Scarlett_Johansson_Hunyuan_video_Lora", + "lora_id": 1093521, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Scarlett_Johansson_Hunyuan_video_Lora_48935102.jpeg", + "download_url": "https://civitai.com/api/download/models/1228207", + "trained_words": [] + }, + { + "name": "Taylor_Swift__Hunyuan_Video_", + "lora_id": 1097210, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Taylor_Swift__Hunyuan_Video__49156770.jpeg", + "download_url": "https://civitai.com/api/download/models/1232523", + "trained_words": [ + "taySwift" + ] + }, + { + "name": "Minrill_Style_Animation_-_Hunyuan_Video_LoRA", + "lora_id": 1120207, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Minrill_Style_Animation_-_Hunyuan_Video_LoRA_50431057.jpeg", + "download_url": "https://civitai.com/api/download/models/1258988", + "trained_words": [ + "minrill style animation" + ] + }, + { + "name": "Chloe_Grace_Moretz_-_Hunyuan_Video_Lora", + "lora_id": 1135436, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Chloe_Grace_Moretz_-_Hunyuan_Video_Lora_51302071.jpeg", + "download_url": "https://civitai.com/api/download/models/1276609", + "trained_words": [ + "Moretz" + ] + }, + { + "name": "Tina__Cameron_Diaz__The_Mask_-_Hunyuan_Video_Lora", + "lora_id": 1134510, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Tina__Cameron_Diaz__The_Mask_-_Hunyuan_Video_Lora_51250975.jpeg", + "download_url": "https://civitai.com/api/download/models/1275534", + "trained_words": [ + "Tina " + ] + }, + { + "name": "Jennifer_Lawrence_-_Hunyuan_video_Lora", + "lora_id": 1120059, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Jennifer_Lawrence_-_Hunyuan_video_Lora_50420359.jpeg", + "download_url": "https://civitai.com/api/download/models/1258811", + "trained_words": [ + "Jennifer Lawrence" + ] + }, + { + "name": "Zero_Suit_Samus_-_Metroid__Hunyuan_Video_", + "lora_id": 1104251, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Zero_Suit_Samus_-_Metroid__Hunyuan_Video__49549908.jpeg", + "download_url": "https://civitai.com/api/download/models/1240480", + "trained_words": [ + "s4mus woman", + "ponytail", + "zer0Suit" + ] + }, + { + "name": "ๆ€ๆˆฎ้ƒฝๅธ‚Gantzไธ‹ๅนณ็Žฒ่Šฑ--realistic_Video_model_for_Hunyuan_video", + "lora_id": 1114660, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/ๆ€ๆˆฎ้ƒฝๅธ‚Gantzไธ‹ๅนณ็Žฒ่Šฑ--realistic_Video_model_for_Hunyuan_video_50126550.jpeg", + "download_url": "https://civitai.com/api/download/models/1252600", + "trained_words": [ + "black hair with bangs", + "black latex bodysuit", + "blue gem", + "Reika", + "cutout" + ] + }, + { + "name": "Emma_Hyers_-_Hunyuan_Video_Lora", + "lora_id": 1120087, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Emma_Hyers_-_Hunyuan_Video_Lora_50421009.jpeg", + "download_url": "https://civitai.com/api/download/models/1258840", + "trained_words": [ + "emma myers a woman" + ] + }, + { + "name": "Kaylee__from_Firefly____Hunyuan_Video_LORA", + "lora_id": 1111536, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Kaylee__from_Firefly____Hunyuan_Video_LORA_49955692.jpeg", + "download_url": "https://civitai.com/api/download/models/1248985", + "trained_words": [ + "kaylee" + ] + }, + { + "name": "Starlight_-_Hunyuan_video_Lora", + "lora_id": 1116180, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Starlight_-_Hunyuan_video_Lora_50356124.jpeg", + "download_url": "https://civitai.com/api/download/models/1254301", + "trained_words": [ + "st4rl1ght " + ] + }, + { + "name": "Orbit_Cam_Character_Hunyuan_Video", + "lora_id": 1032826, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Orbit_Cam_Character_Hunyuan_Video_45235085.jpeg", + "download_url": "https://civitai.com/api/download/models/1158379", + "trained_words": [ + "kxsr" + ] + }, + { + "name": "Anya_Taylor_Joy_-_Hunyuan_Video_Lora", + "lora_id": 1134899, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Anya_Taylor_Joy_-_Hunyuan_Video_Lora_51298168.jpeg", + "download_url": "https://civitai.com/api/download/models/1275982", + "trained_words": [ + "Anya" + ] + }, + { + "name": "Ella_Purnell_Hunyuan_video_Lora", + "lora_id": 1103395, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Ella_Purnell_Hunyuan_video_Lora_49502572.jpeg", + "download_url": "https://civitai.com/api/download/models/1239512", + "trained_words": [ + "purn3ll" + ] + }, + { + "name": "Megan_Fox_-_Hunyuan_Video_Lora", + "lora_id": 1138649, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Megan_Fox_-_Hunyuan_Video_Lora_51482919.jpeg", + "download_url": "https://civitai.com/api/download/models/1280502", + "trained_words": [ + "meganFox" + ] + }, + { + "name": "Himiko_Toga_-_Realistic___Animated__Hunyuan_Video_", + "lora_id": 1086330, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Himiko_Toga_-_Realistic___Animated__Hunyuan_Video__48509177.jpeg", + "download_url": "https://civitai.com/api/download/models/1219916", + "trained_words": [ + "T0gA_H!m1k0, anime style, blonde hair, bangs, twin buns, yellow eyes, wide grin, sharp teeth" + ] + }, + { + "name": "Annie_Edison_from_Community__Alison_Brie____Hunyuan_Video_LORA", + "lora_id": 1129647, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Annie_Edison_from_Community__Alison_Brie____Hunyuan_Video_LORA_50979520.jpeg", + "download_url": "https://civitai.com/api/download/models/1269866", + "trained_words": [ + "annie" + ] + }, + { + "name": "Daisy_Ridley_-_Hunyuan_Video_Lora", + "lora_id": 1138792, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Daisy_Ridley_-_Hunyuan_Video_Lora_51515085.jpeg", + "download_url": "https://civitai.com/api/download/models/1280666", + "trained_words": [ + "daisyRidley" + ] + }, + { + "name": "Sadie_Sink_-_Hunyuan_Video_Lora", + "lora_id": 1124045, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Sadie_Sink_-_Hunyuan_Video_Lora_50658915.jpeg", + "download_url": "https://civitai.com/api/download/models/1263387", + "trained_words": [ + "sadie sink a woman" + ] + }, + { + "name": "Makoto_Shinkai_Anime_Style___Hunyuan_Video", + "lora_id": 1099506, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Makoto_Shinkai_Anime_Style___Hunyuan_Video_49285478.jpeg", + "download_url": "https://civitai.com/api/download/models/1235068", + "trained_words": [ + "anime style" + ] + }, + { + "name": "John_Wick_-_Hunyuan_Video_Lora", + "lora_id": 1131159, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/John_Wick_-_Hunyuan_Video_Lora_51066592.jpeg", + "download_url": "https://civitai.com/api/download/models/1271641", + "trained_words": [ + "wick" + ] + }, + { + "name": "Jennifer_Love_Hewitt_Hunyuan_video_Lora", + "lora_id": 1117619, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Jennifer_Love_Hewitt_Hunyuan_video_Lora_50295310.jpeg", + "download_url": "https://civitai.com/api/download/models/1255995", + "trained_words": [ + "h3w1tt" + ] + }, + { + "name": "Jessica_Alba_-_Hunyuan_Video_Lora", + "lora_id": 1138975, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Jessica_Alba_-_Hunyuan_Video_Lora_51515398.jpeg", + "download_url": "https://civitai.com/api/download/models/1280876", + "trained_words": [ + "jessicaAlba" + ] + }, + { + "name": "Jenna_Fischer_Hunyuan_video_Lora", + "lora_id": 1114292, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Jenna_Fischer_Hunyuan_video_Lora_50117732.jpeg", + "download_url": "https://civitai.com/api/download/models/1252155", + "trained_words": [ + "j3nn4" + ] + }, + { + "name": "Natalia_Dyer_-_Hunyuan_Video_Lora", + "lora_id": 1124058, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Natalia_Dyer_-_Hunyuan_Video_Lora_50659458.jpeg", + "download_url": "https://civitai.com/api/download/models/1263399", + "trained_words": [ + "natalia dyer a woman" + ] + }, + { + "name": "Megumin___hunyuan_video", + "lora_id": 1095939, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Megumin___hunyuan_video_49082567.jpeg", + "download_url": "https://civitai.com/api/download/models/1231001", + "trained_words": [ + "Megumin" + ] + }, + { + "name": "This_Is_Fine__meme__-_Hunyuan_Video_Lora", + "lora_id": 1035870, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/This_Is_Fine__meme__-_Hunyuan_Video_Lora_45413866.jpeg", + "download_url": "https://civitai.com/api/download/models/1161881", + "trained_words": [ + "kxsr" + ] + }, + { + "name": "Ana_De_Armas_lora_hunyuan_video", + "lora_id": 1118825, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Ana_De_Armas_lora_hunyuan_video_50356881.jpeg", + "download_url": "https://civitai.com/api/download/models/1257419", + "trained_words": [ + "young woman" + ] + }, + { + "name": "Britney_Spears_-_Hunyuan_Video_Lora", + "lora_id": 1144531, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Britney_Spears_-_Hunyuan_Video_Lora_51817609.jpeg", + "download_url": "https://civitai.com/api/download/models/1287216", + "trained_words": [ + "britneySpears" + ] + }, + { + "name": "Selena_Gomez_Hunyuan_video_Lora", + "lora_id": 1117661, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Selena_Gomez_Hunyuan_video_Lora_50297850.jpeg", + "download_url": "https://civitai.com/api/download/models/1256041", + "trained_words": [ + "s3l3n4" + ] + }, + { + "name": "Hunyuan_Video_-_Alf_-_LoRA_-_1980s_television_Character", + "lora_id": 1051048, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Hunyuan_Video_-_Alf_-_LoRA_-_1980s_television_Character_46313206.jpeg", + "download_url": "https://civitai.com/api/download/models/1179361", + "trained_words": [ + "alfman" + ] + }, + { + "name": "David_Hamilton_Cinematography_Style_LoRA_for_Hunyuan_video", + "lora_id": 1042795, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/David_Hamilton_Cinematography_Style_LoRA_for_Hunyuan_video_45810615.jpeg", + "download_url": "https://civitai.com/api/download/models/1170001", + "trained_words": [] + }, + { + "name": "Brie_Larson_Hunyuan_video_Lora", + "lora_id": 1130078, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Brie_Larson_Hunyuan_video_Lora_50997833.jpeg", + "download_url": "https://civitai.com/api/download/models/1270382", + "trained_words": [] + }, + { + "name": "Angourie_Rice_-_Hunyuan_Video_Lora", + "lora_id": 1135004, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Angourie_Rice_-_Hunyuan_Video_Lora_51282006.jpeg", + "download_url": "https://civitai.com/api/download/models/1276105", + "trained_words": [ + "Angourie Rice" + ] + }, + { + "name": "Anne_Hathaway_-_Hunyuan_Video_Lora", + "lora_id": 1144533, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Anne_Hathaway_-_Hunyuan_Video_Lora_51816952.jpeg", + "download_url": "https://civitai.com/api/download/models/1287213", + "trained_words": [ + "anne hathaway" + ] + }, + { + "name": "Alexandra_Daddario_-_Hunyuan_Video_Lora", + "lora_id": 1144534, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Alexandra_Daddario_-_Hunyuan_Video_Lora_51816846.jpeg", + "download_url": "https://civitai.com/api/download/models/1287212", + "trained_words": [ + "alexandra daddario" + ] + }, + { + "name": "Keira_Knightley_-_Hunyuan_Video_Lora", + "lora_id": 1144532, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Keira_Knightley_-_Hunyuan_Video_Lora_51817532.jpeg", + "download_url": "https://civitai.com/api/download/models/1287214", + "trained_words": [ + "keira Knightley" + ] + }, + { + "name": "mika__blue_archive____hunyuan_video", + "lora_id": 1065138, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/mika__blue_archive____hunyuan_video_47171868.jpeg", + "download_url": "https://civitai.com/api/download/models/1195431", + "trained_words": [ + "mika" + ] + }, + { + "name": "Kendall_Jenner_-_Hunyuan_video_Lora", + "lora_id": 1120025, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Kendall_Jenner_-_Hunyuan_video_Lora_50417413.jpeg", + "download_url": "https://civitai.com/api/download/models/1258769", + "trained_words": [ + "Kendall Jenner" + ] + }, + { + "name": "Shiftymine_Hunyuan_video_Lora", + "lora_id": 1092699, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Shiftymine_Hunyuan_video_Lora_48889933.jpeg", + "download_url": "https://civitai.com/api/download/models/1227269", + "trained_words": [ + "woman" + ] + }, + { + "name": "Pixel_style_hunyuan_video_model", + "lora_id": 1144459, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Pixel_style_hunyuan_video_model_51822477.jpeg", + "download_url": "https://civitai.com/api/download/models/1287140", + "trained_words": [ + "Pixel anime pixel art drawing." + ] + }, + { + "name": "Krysten_Ritter_-_Hunyuan_Video_Lora", + "lora_id": 1139115, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Krysten_Ritter_-_Hunyuan_Video_Lora_51514356.jpeg", + "download_url": "https://civitai.com/api/download/models/1281036", + "trained_words": [ + "krysten" + ] + }, + { + "name": "Milana_Vayntrub_Hunyuan_video_Lora", + "lora_id": 1122264, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Milana_Vayntrub_Hunyuan_video_Lora_50553513.jpeg", + "download_url": "https://civitai.com/api/download/models/1261344", + "trained_words": [ + "m1l4n4" + ] + }, + { + "name": "Mantis_-_Hunyuan_Video_Lora", + "lora_id": 1127286, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Mantis_-_Hunyuan_Video_Lora_50864138.jpeg", + "download_url": "https://civitai.com/api/download/models/1267115", + "trained_words": [ + "Mantis" + ] + }, + { + "name": "Sandra_Bullock_-_Hunyuan_Video_Lora", + "lora_id": 1138968, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Sandra_Bullock_-_Hunyuan_Video_Lora_51504118.jpeg", + "download_url": "https://civitai.com/api/download/models/1280869", + "trained_words": [ + "sandraBullock" + ] + }, + { + "name": "kitagawa_marin___hunyuan_video", + "lora_id": 1086275, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/kitagawa_marin___hunyuan_video_48501199.jpeg", + "download_url": "https://civitai.com/api/download/models/1219847", + "trained_words": [ + "kitagawa marin" + ] + }, + { + "name": "Barbara_Palvin_-_Hunyuan_Video_Lora", + "lora_id": 1134889, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Barbara_Palvin_-_Hunyuan_Video_Lora_51281696.jpeg", + "download_url": "https://civitai.com/api/download/models/1275975", + "trained_words": [ + "barbara palving" + ] + }, + { + "name": "Ciri_-_The_Witcher_4__Hunyuan_Video_", + "lora_id": 1137571, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Ciri_-_The_Witcher_4__Hunyuan_Video__51409962.jpeg", + "download_url": "https://civitai.com/api/download/models/1279184", + "trained_words": [ + "ciri4 with long braid wearing an armor" + ] + }, + { + "name": "Andrea_Riseborough__from_Oblivion____Hunyuan_Video_LORA", + "lora_id": 1100619, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Andrea_Riseborough__from_Oblivion____Hunyuan_Video_LORA_49342846.jpeg", + "download_url": "https://civitai.com/api/download/models/1236324", + "trained_words": [ + "gray oblivion dress", + "andrea" + ] + }, + { + "name": "Monica_s_apartment_Hunyuan_Video_lora", + "lora_id": 1089122, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Monica_s_apartment_Hunyuan_Video_lora_48673748.jpeg", + "download_url": "https://civitai.com/api/download/models/1223166", + "trained_words": [ + "mosapar", + "a vibrant living room" + ] + }, + { + "name": "Dua_Lipa_Hunyuan_Video", + "lora_id": 1090284, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Dua_Lipa_Hunyuan_Video_48740585.jpeg", + "download_url": "https://civitai.com/api/download/models/1224490", + "trained_words": [] + }, + { + "name": "Zendaya_-_Hunyuan_Video_Lora", + "lora_id": 1139099, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Zendaya_-_Hunyuan_Video_Lora_51513997.jpeg", + "download_url": "https://civitai.com/api/download/models/1281017", + "trained_words": [ + "Zendaya" + ] + }, + { + "name": "Inara__from_Firefly____Hunyuan_Video_LORA", + "lora_id": 1110009, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Inara__from_Firefly____Hunyuan_Video_LORA_49870409.jpeg", + "download_url": "https://civitai.com/api/download/models/1247195?type=Training%20Data", + "trained_words": [ + "inara" + ] + }, + { + "name": "Billie_Eilish_-_Hunyuan_Video_Lora", + "lora_id": 1138929, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Billie_Eilish_-_Hunyuan_Video_Lora_51501439.jpeg", + "download_url": "https://civitai.com/api/download/models/1280828", + "trained_words": [ + "billieEilish" + ] + }, + { + "name": "Tiffani_Thiessen_Hunyuan_video_Lora", + "lora_id": 1102883, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Tiffani_Thiessen_Hunyuan_video_Lora_49476998.jpeg", + "download_url": "https://civitai.com/api/download/models/1238923", + "trained_words": [ + "t1ff4n1" + ] + }, + { + "name": "Millie_Bobby_Brown_-_Hunyuan_Video_Lora", + "lora_id": 1124080, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Millie_Bobby_Brown_-_Hunyuan_Video_Lora_50660458.jpeg", + "download_url": "https://civitai.com/api/download/models/1263418", + "trained_words": [ + "millie bobby" + ] + }, + { + "name": "Kat_Dennings_Hunyuan_video_Lora", + "lora_id": 1132634, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Kat_Dennings_Hunyuan_video_Lora_51147226.jpeg", + "download_url": "https://civitai.com/api/download/models/1273331", + "trained_words": [] + }, + { + "name": "Ella_Purnell__Hunyuan_Video_", + "lora_id": 1136252, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Ella_Purnell__Hunyuan_Video__51351144.jpeg", + "download_url": "https://civitai.com/api/download/models/1277552", + "trained_words": [ + "ellaPurnell" + ] + }, + { + "name": "hunyuan_video-ๅจๅฐ”ๅฒๅฏ†ๆ–ฏ-Will-simth", + "lora_id": 1124157, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/hunyuan_video-ๅจๅฐ”ๅฒๅฏ†ๆ–ฏ-Will-simth_50665760.jpeg", + "download_url": "https://civitai.com/api/download/models/1263507", + "trained_words": [] + }, + { + "name": "Emily_Ratajkowski_Hunyuan_video_Lora", + "lora_id": 1093767, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Emily_Ratajkowski_Hunyuan_video_Lora_48951329.jpeg", + "download_url": "https://civitai.com/api/download/models/1228497", + "trained_words": [] + }, + { + "name": "Kiernan_Shipka_lora_hunyuan_video", + "lora_id": 1142927, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Kiernan_Shipka_lora_hunyuan_video_51732889.jpeg", + "download_url": "https://civitai.com/api/download/models/1285378", + "trained_words": [ + "kiernan" + ] + }, + { + "name": "Felicity_Jones_-_Hunyuan_Video_Lora", + "lora_id": 1138631, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Felicity_Jones_-_Hunyuan_Video_Lora_51481353.jpeg", + "download_url": "https://civitai.com/api/download/models/1280479", + "trained_words": [ + "Felicity " + ] + }, + { + "name": "Super_Saiyan_Hunyuan_Video_Lora", + "lora_id": 1038512, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Super_Saiyan_Hunyuan_Video_Lora_45561703.jpeg", + "download_url": "https://civitai.com/api/download/models/1164936", + "trained_words": [ + "kxsr" + ] + }, + { + "name": "Plana__blue_archive__ๆ™ฎๆ‹‰ๅจœ_Hunyuan_Video____Chenkin", + "lora_id": 1088631, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Plana__blue_archive__ๆ™ฎๆ‹‰ๅจœ_Hunyuan_Video____Chenkin_48635739.jpeg", + "download_url": "https://civitai.com/api/download/models/1222573", + "trained_words": [ + "A girl wearing a dark sailor-style outfit with a white scarf and a choker, who has long white hair, red eyes, and a light pink halo." + ] + }, + { + "name": "Avatar_Hunyuan_Video_LoRa", + "lora_id": 1075511, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Avatar_Hunyuan_Video_LoRa_47850501.jpeg", + "download_url": "https://civitai.com/api/download/models/1207362", + "trained_words": [] + }, + { + "name": "Rashida_Jones_Hunyuan_video_Lora", + "lora_id": 1129417, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Rashida_Jones_Hunyuan_video_Lora_50965170.jpeg", + "download_url": "https://civitai.com/api/download/models/1269592", + "trained_words": [] + }, + { + "name": "Elizabeth_Olsen_Hunyuan_video_Lora", + "lora_id": 1133736, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Elizabeth_Olsen_Hunyuan_video_Lora_51195811.jpeg", + "download_url": "https://civitai.com/api/download/models/1274624", + "trained_words": [] + }, + { + "name": "Katou_Megumi___hunyuan_video", + "lora_id": 1049399, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Katou_Megumi___hunyuan_video_46212991.jpeg", + "download_url": "https://civitai.com/api/download/models/1177487", + "trained_words": [ + "katou megumi" + ] + }, + { + "name": "Kristin_Kreuk_-_Hunyuan_Video_Lora", + "lora_id": 1144528, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Kristin_Kreuk_-_Hunyuan_Video_Lora_51818095.jpeg", + "download_url": "https://civitai.com/api/download/models/1287221", + "trained_words": [ + "kreuk" + ] + }, + { + "name": "noa__blue_archive____hunyuan_video", + "lora_id": 1040525, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/noa__blue_archive____hunyuan_video_46631400.jpeg", + "download_url": "https://civitai.com/api/download/models/1185463", + "trained_words": [ + "noa \\(blue archive\\)" + ] + }, + { + "name": "Kristen_Bell_Hunyuan_video_Lora", + "lora_id": 1137542, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Kristen_Bell_Hunyuan_video_Lora_51407947.jpeg", + "download_url": "https://civitai.com/api/download/models/1279141", + "trained_words": [] + }, + { + "name": "Mila_Kunis_Hunyuan_video_Lora", + "lora_id": 1139895, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Mila_Kunis_Hunyuan_video_Lora_51557854.jpeg", + "download_url": "https://civitai.com/api/download/models/1281891", + "trained_words": [] + }, + { + "name": "Gal_Gadot_Hunyuan_video_Lora", + "lora_id": 1129436, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Gal_Gadot_Hunyuan_video_Lora_50965885.jpeg", + "download_url": "https://civitai.com/api/download/models/1269616", + "trained_words": [ + "ohwx" + ] + }, + { + "name": "Shadowheart_-_Baldur_s_Gate_3__Hunyuan_Video_", + "lora_id": 1104643, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Shadowheart_-_Baldur_s_Gate_3__Hunyuan_Video__49582678.jpeg", + "download_url": "https://civitai.com/api/download/models/1240952", + "trained_words": [ + "dark leather vest", + "hair in a long braid", + "shadowheart" + ] + }, + { + "name": "Alanah_Pearce_-_Hunyuan_Video_Lora", + "lora_id": 1134530, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Alanah_Pearce_-_Hunyuan_Video_Lora_51248788.jpeg", + "download_url": "https://civitai.com/api/download/models/1275561", + "trained_words": [ + "alanah pearce" + ] + }, + { + "name": "Kate_Middleton_Hunyuan_video_Lora", + "lora_id": 1128534, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Kate_Middleton_Hunyuan_video_Lora_50917147.jpeg", + "download_url": "https://civitai.com/api/download/models/1268565", + "trained_words": [] + }, + { + "name": "Angela_Kinsey_Hunyuan_video_Lora", + "lora_id": 1125599, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Angela_Kinsey_Hunyuan_video_Lora_50743078.jpeg", + "download_url": "https://civitai.com/api/download/models/1265161", + "trained_words": [ + "k1ns3y" + ] + }, + { + "name": "Henry_Cavill_-_Hunyuan_Video_Lora", + "lora_id": 1077691, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Henry_Cavill_-_Hunyuan_Video_Lora_47976905.jpeg", + "download_url": "https://civitai.com/api/download/models/1209838", + "trained_words": [ + "H3c4vill" + ] + }, + { + "name": "Hera_Syndulla___Hunyuan_Video_LORA", + "lora_id": 1139076, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Hera_Syndulla___Hunyuan_Video_LORA_51526974.jpeg", + "download_url": "https://civitai.com/api/download/models/1280993", + "trained_words": [ + "hera" + ] + }, + { + "name": "Buratino___Co__Hunyuan_Video_", + "lora_id": 1105109, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Buratino___Co__Hunyuan_Video__49648606.jpeg", + "download_url": "https://civitai.com/api/download/models/1241506", + "trained_words": [ + "Malvina", + "Bazilio", + "Buratino", + "Alisa" + ] + }, + { + "name": "Ellen_Page_-_Hunyuan_Video_Lora", + "lora_id": 1144530, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Ellen_Page_-_Hunyuan_Video_Lora_51817961.jpeg", + "download_url": "https://civitai.com/api/download/models/1287219", + "trained_words": [ + "epage" + ] + }, + { + "name": "Haley_Atwell_Hunyuan_video_Lora", + "lora_id": 1143022, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Haley_Atwell_Hunyuan_video_Lora_51738176.jpeg", + "download_url": "https://civitai.com/api/download/models/1285496", + "trained_words": [] + }, + { + "name": "makise_kurisu___hunyuan_video", + "lora_id": 1121474, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/makise_kurisu___hunyuan_video_50513678.jpeg", + "download_url": "https://civitai.com/api/download/models/1260457", + "trained_words": [ + "makise kurisu" + ] + }, + { + "name": "Kate_Upton_-_Hunyuan_Video_Lora", + "lora_id": 1138806, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Kate_Upton_-_Hunyuan_Video_Lora_51493515.jpeg", + "download_url": "https://civitai.com/api/download/models/1280680", + "trained_words": [ + "upton" + ] + }, + { + "name": "Kate_Upton_-_Hunyuan_Video_Lora", + "lora_id": 1138806, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Kate_Upton_-_Hunyuan_Video_Lora_51493515.jpeg", + "download_url": "https://civitai.com/api/download/models/1280680", + "trained_words": [ + "upton" + ] + }, + { + "name": "Hunyuan_video_-_bogged_-_LoRA", + "lora_id": 1035770, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Hunyuan_video_-_bogged_-_LoRA_45628400.jpeg", + "download_url": "https://civitai.com/api/download/models/1166218", + "trained_words": [] + }, + { + "name": "Kathryn_Newton_-_Hunyuan_Video_Lora", + "lora_id": 1138639, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Kathryn_Newton_-_Hunyuan_Video_Lora_51481877.jpeg", + "download_url": "https://civitai.com/api/download/models/1280487", + "trained_words": [ + "Kathryn" + ] + }, + { + "name": "Renamon_Digimon_hunyuan_video_lora", + "lora_id": 1097416, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Renamon_Digimon_hunyuan_video_lora_51801429.jpeg", + "download_url": "https://civitai.com/api/download/models/1286872", + "trained_words": [ + "renamon" + ] + }, + { + "name": "Blu__Hunyuan_Video_Lora_", + "lora_id": 1086057, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Blu__Hunyuan_Video_Lora__48570554.jpeg", + "download_url": "https://civitai.com/api/download/models/1219604", + "trained_words": [] + }, + { + "name": "Gamora_-_Hunyuan_Video_Lora", + "lora_id": 1127069, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Gamora_-_Hunyuan_Video_Lora_50865955.jpeg", + "download_url": "https://civitai.com/api/download/models/1266864", + "trained_words": [ + "gamora" + ] + }, + { + "name": "Baby_Sinclair__Hunyuan_Video_", + "lora_id": 1073579, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Baby_Sinclair__Hunyuan_Video__47729448.jpeg", + "download_url": "https://civitai.com/api/download/models/1205141", + "trained_words": [ + "b4by_d1n0" + ] + }, + { + "name": "Madison_Beer_-_Hunyuan_Video_Lora", + "lora_id": 1138754, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Madison_Beer_-_Hunyuan_Video_Lora_51490439.jpeg", + "download_url": "https://civitai.com/api/download/models/1280621", + "trained_words": [ + "madisonBeer" + ] + }, + { + "name": "Evangeline_Lilly_Hunyuan_video_Lora", + "lora_id": 1143762, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Evangeline_Lilly_Hunyuan_video_Lora_51779039.jpeg", + "download_url": "https://civitai.com/api/download/models/1286344", + "trained_words": [] + }, + { + "name": "Meisho_doto__umamusume__for_Hunyuan_Video", + "lora_id": 1106102, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Meisho_doto__umamusume__for_Hunyuan_Video_50344604.jpeg", + "download_url": "https://civitai.com/api/download/models/1242672", + "trained_words": [ + "meisho doto (umamusume)" + ] + }, + { + "name": "Ellie_-_Hunyuan_Video_Lora", + "lora_id": 1127489, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Ellie_-_Hunyuan_Video_Lora_50847950.jpeg", + "download_url": "https://civitai.com/api/download/models/1267359", + "trained_words": [ + "Ellie" + ] + }, + { + "name": "Miley_Cyrus_-_Hunyuan_Video_Lora", + "lora_id": 1144537, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Miley_Cyrus_-_Hunyuan_Video_Lora_51816713.jpeg", + "download_url": "https://civitai.com/api/download/models/1287226", + "trained_words": [ + "mileyCyrus" + ] + }, + { + "name": "Nicole_Kidman_-_Hunyuan_Video_Lora", + "lora_id": 1134537, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Nicole_Kidman_-_Hunyuan_Video_Lora_51237223.jpeg", + "download_url": "https://civitai.com/api/download/models/1275570", + "trained_words": [] + }, + { + "name": "Cheyenne_-_Hunyuan_Video_Lora", + "lora_id": 1131522, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Cheyenne_-_Hunyuan_Video_Lora_51090854.jpeg", + "download_url": "https://civitai.com/api/download/models/1272105", + "trained_words": [ + "cheyenne" + ] + }, + { + "name": "Fat_Elvis_Hunyuan_Video_LoRA", + "lora_id": 1045567, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Fat_Elvis_Hunyuan_Video_LoRA_45972230.jpeg", + "download_url": "https://civitai.com/api/download/models/1173135", + "trained_words": [ + "fatelvis" + ] + }, + { + "name": "Nekomiya_Mana_LoRA_for_Hunyuan_Video", + "lora_id": 1096010, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Nekomiya_Mana_LoRA_for_Hunyuan_Video_49092529.jpeg", + "download_url": "https://civitai.com/api/download/models/1231089", + "trained_words": [ + "nekomiya mana, 1girl," + ] + }, + { + "name": "Allison_Mack_-_Hunyuan_Video_Lora", + "lora_id": 1138780, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Allison_Mack_-_Hunyuan_Video_Lora_51492013.jpeg", + "download_url": "https://civitai.com/api/download/models/1280653", + "trained_words": [ + "allisonMack" + ] + }, + { + "name": "Melora_Hardin_Hunyuan_video_Lora", + "lora_id": 1131576, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Melora_Hardin_Hunyuan_video_Lora_51083337.jpeg", + "download_url": "https://civitai.com/api/download/models/1272137", + "trained_words": [] + }, + { + "name": "Jessica_Chastain_-_Hunyuan_Video_Lora", + "lora_id": 1144535, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Jessica_Chastain_-_Hunyuan_Video_Lora_51816781.jpeg", + "download_url": "https://civitai.com/api/download/models/1287211", + "trained_words": [ + "jessica chastain" + ] + }, + { + "name": "Kate_Flannery_Hunyuan_video_Lora", + "lora_id": 1140060, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Kate_Flannery_Hunyuan_video_Lora_51567425.jpeg", + "download_url": "https://civitai.com/api/download/models/1282091", + "trained_words": [] + }, + { + "name": "Hailee_Steinfeld_-_Hunyuan_Video_Lora", + "lora_id": 1144524, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Hailee_Steinfeld_-_Hunyuan_Video_Lora_51818142.jpeg", + "download_url": "https://civitai.com/api/download/models/1287223", + "trained_words": [ + "hailee" + ] + }, + { + "name": "Anna_Chlumsky_Hunyuan_video_Lora", + "lora_id": 1132146, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Anna_Chlumsky_Hunyuan_video_Lora_51118776.jpeg", + "download_url": "https://civitai.com/api/download/models/1272776", + "trained_words": [] + }, + { + "name": "Gemma_Chan_-_Hunyuan_Video_Lora", + "lora_id": 1144523, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Gemma_Chan_-_Hunyuan_Video_Lora_51818154.jpeg", + "download_url": "https://civitai.com/api/download/models/1287225", + "trained_words": [ + "gemmaChan" + ] + }, + { + "name": "Rachel_Sennott_Hunyuan_video_Lora", + "lora_id": 1133175, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Rachel_Sennott_Hunyuan_video_Lora_51169338.jpeg", + "download_url": "https://civitai.com/api/download/models/1273957", + "trained_words": [] + }, + { + "name": "Sue__from_The_Substance____Hunyuan_Video_LORA", + "lora_id": 1145860, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Sue__from_The_Substance____Hunyuan_Video_LORA_51898258.jpeg", + "download_url": "https://civitai.com/api/download/models/1288755", + "trained_words": [ + "sue" + ] + }, + { + "name": "Natsu_Dragneel_hunyuan_video_Character_Lora_by_ComfyOnline", + "lora_id": 1085968, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Natsu_Dragneel_hunyuan_video_Character_Lora_by_ComfyOnline_48482826.jpeg", + "download_url": "https://civitai.com/api/download/models/1219490", + "trained_words": [ + "Natsu_dragneel" + ] + }, + { + "name": "Civitai_Logo__Hunyuan_Video_", + "lora_id": 1113899, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Civitai_Logo__Hunyuan_Video__50098973.jpeg", + "download_url": "https://civitai.com/api/download/models/1251718", + "trained_words": [ + "civitaiLogo" + ] + }, + { + "name": "Miranda_Kerr_-_Hunyuan_Video_Lora", + "lora_id": 1144526, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Miranda_Kerr_-_Hunyuan_Video_Lora_51818103.jpeg", + "download_url": "https://civitai.com/api/download/models/1287222", + "trained_words": [ + "kerr" + ] + }, + { + "name": "sonic_the_manhog_2019_lora_hunyuan_video", + "lora_id": 1074683, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/sonic_the_manhog_2019_lora_hunyuan_video_47788941.jpeg", + "download_url": "https://civitai.com/api/download/models/1206408", + "trained_words": [ + "sonicthemanhog2004" + ] + }, + { + "name": "Dina_-_Hunyuan_Video_Lora", + "lora_id": 1131325, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Dina_-_Hunyuan_Video_Lora_51079367.jpeg", + "download_url": "https://civitai.com/api/download/models/1271844", + "trained_words": [ + "dyna" + ] + }, + { + "name": "vivziepop_style_hunyuan_video", + "lora_id": 1071906, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/vivziepop_style_hunyuan_video_47615402.jpeg", + "download_url": "https://civitai.com/api/download/models/1203226", + "trained_words": [] + }, + { + "name": "Shinzo_Abe_Hunyuan_Video_LoRA__ๆ™‹ใ•ใ‚“_", + "lora_id": 1129166, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Shinzo_Abe_Hunyuan_Video_LoRA__ๆ™‹ใ•ใ‚“__50953056.jpeg", + "download_url": "https://civitai.com/api/download/models/1269295", + "trained_words": [] + }, + { + "name": "Reverse_Mermaid_Hunyuan_Video_Lora", + "lora_id": 1035388, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Reverse_Mermaid_Hunyuan_Video_Lora_45377336.jpeg", + "download_url": "https://civitai.com/api/download/models/1161307", + "trained_words": [ + "kxsr" + ] + }, + { + "name": "Sam_Altman_-_Hunyuan_Video_Lora", + "lora_id": 1144529, + "base_model": "Hunyuan Video", + "image_path": "loras/lora_hunyuan_video/Sam_Altman_-_Hunyuan_Video_Lora_51818024.jpeg", + "download_url": "https://civitai.com/api/download/models/1287220", + "trained_words": [ + "samaltman" + ] + } +] \ No newline at end of file diff --git a/civitai/pony/2DN-Pony_33386798.jpeg b/civitai/pony/2DN-Pony_33386798.jpeg index a82eaf0..78e7b1c 100644 Binary files a/civitai/pony/2DN-Pony_33386798.jpeg and b/civitai/pony/2DN-Pony_33386798.jpeg differ diff --git a/civitai/pony/4th_tail__anime_hentai__28697888.jpeg b/civitai/pony/4th_tail__anime_hentai__28697888.jpeg index bbe9c7e..45de094 100644 Binary files a/civitai/pony/4th_tail__anime_hentai__28697888.jpeg and b/civitai/pony/4th_tail__anime_hentai__28697888.jpeg differ diff --git a/civitai/pony/7th_anime_XL-Pony_A_9661309.jpeg b/civitai/pony/7th_anime_XL-Pony_A_9661309.jpeg index 20c6380..4486a20 100644 Binary files a/civitai/pony/7th_anime_XL-Pony_A_9661309.jpeg and b/civitai/pony/7th_anime_XL-Pony_A_9661309.jpeg differ diff --git a/civitai/pony/AniMerge_-_Pony_XL_33646598.jpeg b/civitai/pony/AniMerge_-_Pony_XL_33646598.jpeg index dc0dfe9..997970e 100644 Binary files a/civitai/pony/AniMerge_-_Pony_XL_33646598.jpeg and b/civitai/pony/AniMerge_-_Pony_XL_33646598.jpeg differ diff --git a/civitai/pony/AniVerse_-_Pony_XL_32595117.jpeg b/civitai/pony/AniVerse_-_Pony_XL_32595117.jpeg index 20fc7dc..767268d 100644 Binary files a/civitai/pony/AniVerse_-_Pony_XL_32595117.jpeg and b/civitai/pony/AniVerse_-_Pony_XL_32595117.jpeg differ diff --git a/civitai/pony/AnimeBoysXL_V3_8818466.jpeg b/civitai/pony/AnimeBoysXL_V3_8818466.jpeg index c7a3c8a..7672ed8 100644 Binary files a/civitai/pony/AnimeBoysXL_V3_8818466.jpeg and b/civitai/pony/AnimeBoysXL_V3_8818466.jpeg differ diff --git a/civitai/pony/Anime_Confetti_Comrade_Mix_8054976.jpeg b/civitai/pony/Anime_Confetti_Comrade_Mix_8054976.jpeg index cddde8f..b405e60 100644 Binary files a/civitai/pony/Anime_Confetti_Comrade_Mix_8054976.jpeg and b/civitai/pony/Anime_Confetti_Comrade_Mix_8054976.jpeg differ diff --git a/civitai/pony/Anime_Model_OtakuReliableEnable__AMORE__21772169.jpeg b/civitai/pony/Anime_Model_OtakuReliableEnable__AMORE__21772169.jpeg index 5bf1b2f..6ed5189 100644 Binary files a/civitai/pony/Anime_Model_OtakuReliableEnable__AMORE__21772169.jpeg and b/civitai/pony/Anime_Model_OtakuReliableEnable__AMORE__21772169.jpeg differ diff --git a/civitai/pony/Atomix_Pony_Anime_XL_17823182.jpeg b/civitai/pony/Atomix_Pony_Anime_XL_17823182.jpeg index 1b52fec..e4d96c1 100644 Binary files a/civitai/pony/Atomix_Pony_Anime_XL_17823182.jpeg and b/civitai/pony/Atomix_Pony_Anime_XL_17823182.jpeg differ diff --git a/civitai/pony/AutismMix_SDXL_6339637.jpeg b/civitai/pony/AutismMix_SDXL_6339637.jpeg index 9d9d5af..e9de366 100644 Binary files a/civitai/pony/AutismMix_SDXL_6339637.jpeg and b/civitai/pony/AutismMix_SDXL_6339637.jpeg differ diff --git a/civitai/pony/Babes_43172682.jpeg b/civitai/pony/Babes_43172682.jpeg index 0587818..0072a34 100644 Binary files a/civitai/pony/Babes_43172682.jpeg and b/civitai/pony/Babes_43172682.jpeg differ diff --git a/civitai/pony/Babes_Kissable_Lips_42274640.jpeg b/civitai/pony/Babes_Kissable_Lips_42274640.jpeg index f79163d..7118c27 100644 Binary files a/civitai/pony/Babes_Kissable_Lips_42274640.jpeg and b/civitai/pony/Babes_Kissable_Lips_42274640.jpeg differ diff --git a/civitai/pony/BlenderMix_14150629.jpeg b/civitai/pony/BlenderMix_14150629.jpeg index d5e5c51..3e427ad 100644 Binary files a/civitai/pony/BlenderMix_14150629.jpeg and b/civitai/pony/BlenderMix_14150629.jpeg differ diff --git a/civitai/pony/CashMoney__Anime__36077112.jpeg b/civitai/pony/CashMoney__Anime__36077112.jpeg index d0d7bd0..58df19b 100644 Binary files a/civitai/pony/CashMoney__Anime__36077112.jpeg and b/civitai/pony/CashMoney__Anime__36077112.jpeg differ diff --git a/civitai/pony/Copycat_29100436.jpeg b/civitai/pony/Copycat_29100436.jpeg index a3044c3..efaddfa 100644 Binary files a/civitai/pony/Copycat_29100436.jpeg and b/civitai/pony/Copycat_29100436.jpeg differ diff --git a/civitai/pony/CuteCandyMix_18805337.jpeg b/civitai/pony/CuteCandyMix_18805337.jpeg index 918a677..07c43b6 100644 Binary files a/civitai/pony/CuteCandyMix_18805337.jpeg and b/civitai/pony/CuteCandyMix_18805337.jpeg differ diff --git a/civitai/pony/CyberRealistic_Pony_34450037.jpeg b/civitai/pony/CyberRealistic_Pony_34450037.jpeg index d17e0e4..5bf711d 100644 Binary files a/civitai/pony/CyberRealistic_Pony_34450037.jpeg and b/civitai/pony/CyberRealistic_Pony_34450037.jpeg differ diff --git a/civitai/pony/Deep_Dark_Hentai_Mix_-_NSFW_Anime_22177854.jpeg b/civitai/pony/Deep_Dark_Hentai_Mix_-_NSFW_Anime_22177854.jpeg index 55c4c61..42e2dc0 100644 Binary files a/civitai/pony/Deep_Dark_Hentai_Mix_-_NSFW_Anime_22177854.jpeg and b/civitai/pony/Deep_Dark_Hentai_Mix_-_NSFW_Anime_22177854.jpeg differ diff --git a/civitai/pony/DucHaiten-Pony-Real_29091916.jpeg b/civitai/pony/DucHaiten-Pony-Real_29091916.jpeg index 0f190fd..33d169e 100644 Binary files a/civitai/pony/DucHaiten-Pony-Real_29091916.jpeg and b/civitai/pony/DucHaiten-Pony-Real_29091916.jpeg differ diff --git a/civitai/pony/DucHaiten-Pony-XL__no-score__34885001.jpeg b/civitai/pony/DucHaiten-Pony-XL__no-score__34885001.jpeg index ee890a7..9b6c5a3 100644 Binary files a/civitai/pony/DucHaiten-Pony-XL__no-score__34885001.jpeg and b/civitai/pony/DucHaiten-Pony-XL__no-score__34885001.jpeg differ diff --git a/civitai/pony/Everclear_PNY_by_Zovya_24167058.jpeg b/civitai/pony/Everclear_PNY_by_Zovya_24167058.jpeg index 3af5074..6307dc5 100644 Binary files a/civitai/pony/Everclear_PNY_by_Zovya_24167058.jpeg and b/civitai/pony/Everclear_PNY_by_Zovya_24167058.jpeg differ diff --git a/civitai/pony/Featureless_Mix_Pony_18133867.jpeg b/civitai/pony/Featureless_Mix_Pony_18133867.jpeg index e2d3f3c..e6cf084 100644 Binary files a/civitai/pony/Featureless_Mix_Pony_18133867.jpeg and b/civitai/pony/Featureless_Mix_Pony_18133867.jpeg differ diff --git a/civitai/pony/GODDESS_of_Realism_41494604.jpeg b/civitai/pony/GODDESS_of_Realism_41494604.jpeg index 4576d33..aa45c6a 100644 Binary files a/civitai/pony/GODDESS_of_Realism_41494604.jpeg and b/civitai/pony/GODDESS_of_Realism_41494604.jpeg differ diff --git a/civitai/pony/Hadrian_DeliceXL___Pony_29879436.jpeg b/civitai/pony/Hadrian_DeliceXL___Pony_29879436.jpeg index 88cb1be..08c983e 100644 Binary files a/civitai/pony/Hadrian_DeliceXL___Pony_29879436.jpeg and b/civitai/pony/Hadrian_DeliceXL___Pony_29879436.jpeg differ diff --git a/civitai/pony/Hoseki_-_LustrousMix__Pony_XL__25353146.jpeg b/civitai/pony/Hoseki_-_LustrousMix__Pony_XL__25353146.jpeg index 42fa3ac..2286531 100644 Binary files a/civitai/pony/Hoseki_-_LustrousMix__Pony_XL__25353146.jpeg and b/civitai/pony/Hoseki_-_LustrousMix__Pony_XL__25353146.jpeg differ diff --git a/civitai/pony/Incursio_s_Meme_Diffusion__SDXL__Pony__23705325.jpeg b/civitai/pony/Incursio_s_Meme_Diffusion__SDXL__Pony__23705325.jpeg index b82a5b7..59d399e 100644 Binary files a/civitai/pony/Incursio_s_Meme_Diffusion__SDXL__Pony__23705325.jpeg and b/civitai/pony/Incursio_s_Meme_Diffusion__SDXL__Pony__23705325.jpeg differ diff --git a/civitai/pony/Indigo_Furry_Mix_XL_42895292.jpeg b/civitai/pony/Indigo_Furry_Mix_XL_42895292.jpeg index 3bc2070..231b1da 100644 Binary files a/civitai/pony/Indigo_Furry_Mix_XL_42895292.jpeg and b/civitai/pony/Indigo_Furry_Mix_XL_42895292.jpeg differ diff --git a/civitai/pony/JitQ_24045682.jpeg b/civitai/pony/JitQ_24045682.jpeg index e35cd3f..506deb8 100644 Binary files a/civitai/pony/JitQ_24045682.jpeg and b/civitai/pony/JitQ_24045682.jpeg differ diff --git a/civitai/pony/Luminaverse__Pony_XL__7887139.jpeg b/civitai/pony/Luminaverse__Pony_XL__7887139.jpeg index 85f83c0..34a32a4 100644 Binary files a/civitai/pony/Luminaverse__Pony_XL__7887139.jpeg and b/civitai/pony/Luminaverse__Pony_XL__7887139.jpeg differ diff --git a/civitai/pony/MFCG_PDXL_6901951.jpeg b/civitai/pony/MFCG_PDXL_6901951.jpeg index a882f19..27a6b98 100644 Binary files a/civitai/pony/MFCG_PDXL_6901951.jpeg and b/civitai/pony/MFCG_PDXL_6901951.jpeg differ diff --git a/civitai/pony/MFCG_Paintjob_14897457.jpeg b/civitai/pony/MFCG_Paintjob_14897457.jpeg index 1558e74..417fbc9 100644 Binary files a/civitai/pony/MFCG_Paintjob_14897457.jpeg and b/civitai/pony/MFCG_Paintjob_14897457.jpeg differ diff --git a/civitai/pony/Mistoon_Anime_22543183.jpeg b/civitai/pony/Mistoon_Anime_22543183.jpeg index 9dc243b..0854ea8 100644 Binary files a/civitai/pony/Mistoon_Anime_22543183.jpeg and b/civitai/pony/Mistoon_Anime_22543183.jpeg differ diff --git a/civitai/pony/Mistoon_XL_Copper_22408776.jpeg b/civitai/pony/Mistoon_XL_Copper_22408776.jpeg index 6aa4ead..b913fc6 100644 Binary files a/civitai/pony/Mistoon_XL_Copper_22408776.jpeg and b/civitai/pony/Mistoon_XL_Copper_22408776.jpeg differ diff --git a/civitai/pony/Model-EX_30738355.jpeg b/civitai/pony/Model-EX_30738355.jpeg index 634ff36..1459803 100644 Binary files a/civitai/pony/Model-EX_30738355.jpeg and b/civitai/pony/Model-EX_30738355.jpeg differ diff --git a/civitai/pony/MomoiroPony_24694321.jpeg b/civitai/pony/MomoiroPony_24694321.jpeg index 23da9f1..bb73de9 100644 Binary files a/civitai/pony/MomoiroPony_24694321.jpeg and b/civitai/pony/MomoiroPony_24694321.jpeg differ diff --git a/civitai/pony/MugenMaluMix_SDXL_12039353.jpeg b/civitai/pony/MugenMaluMix_SDXL_12039353.jpeg index 5d88d49..2b71ccf 100644 Binary files a/civitai/pony/MugenMaluMix_SDXL_12039353.jpeg and b/civitai/pony/MugenMaluMix_SDXL_12039353.jpeg differ diff --git a/civitai/pony/NEW_ERA__New_Esthetic_Retro_Anime__37848420.jpeg b/civitai/pony/NEW_ERA__New_Esthetic_Retro_Anime__37848420.jpeg index 045a3dc..74b7355 100644 Binary files a/civitai/pony/NEW_ERA__New_Esthetic_Retro_Anime__37848420.jpeg and b/civitai/pony/NEW_ERA__New_Esthetic_Retro_Anime__37848420.jpeg differ diff --git a/civitai/pony/ONE_FOR_ALL__Pony_Fantasy__DPO_VAE_11908003.jpeg b/civitai/pony/ONE_FOR_ALL__Pony_Fantasy__DPO_VAE_11908003.jpeg index e135e6a..8fb1e90 100644 Binary files a/civitai/pony/ONE_FOR_ALL__Pony_Fantasy__DPO_VAE_11908003.jpeg and b/civitai/pony/ONE_FOR_ALL__Pony_Fantasy__DPO_VAE_11908003.jpeg differ diff --git a/civitai/pony/Omega_Pony_XL_anime_style_12338468.jpeg b/civitai/pony/Omega_Pony_XL_anime_style_12338468.jpeg index 4d9b4ec..e5e96cc 100644 Binary files a/civitai/pony/Omega_Pony_XL_anime_style_12338468.jpeg and b/civitai/pony/Omega_Pony_XL_anime_style_12338468.jpeg differ diff --git a/civitai/pony/Osorubeshi-Pony-Real_24312079.jpeg b/civitai/pony/Osorubeshi-Pony-Real_24312079.jpeg index d2e29a3..562a5ef 100644 Binary files a/civitai/pony/Osorubeshi-Pony-Real_24312079.jpeg and b/civitai/pony/Osorubeshi-Pony-Real_24312079.jpeg differ diff --git a/civitai/pony/PD_for_Anime_10009050.jpeg b/civitai/pony/PD_for_Anime_10009050.jpeg index 987906a..3c0073f 100644 Binary files a/civitai/pony/PD_for_Anime_10009050.jpeg and b/civitai/pony/PD_for_Anime_10009050.jpeg differ diff --git a/civitai/pony/Persona_Style_Checkpoint_32278933.jpeg b/civitai/pony/Persona_Style_Checkpoint_32278933.jpeg index e69f5c9..33d88be 100644 Binary files a/civitai/pony/Persona_Style_Checkpoint_32278933.jpeg and b/civitai/pony/Persona_Style_Checkpoint_32278933.jpeg differ diff --git a/civitai/pony/PinkiePie_pony_mix_22494657.jpeg b/civitai/pony/PinkiePie_pony_mix_22494657.jpeg index 03f4eb1..221cdb7 100644 Binary files a/civitai/pony/PinkiePie_pony_mix_22494657.jpeg and b/civitai/pony/PinkiePie_pony_mix_22494657.jpeg differ diff --git a/civitai/pony/Pony_Diffusion_V6_XL_5706937.jpeg b/civitai/pony/Pony_Diffusion_V6_XL_5706937.jpeg index e7d80c8..47faf49 100644 Binary files a/civitai/pony/Pony_Diffusion_V6_XL_5706937.jpeg and b/civitai/pony/Pony_Diffusion_V6_XL_5706937.jpeg differ diff --git a/civitai/pony/Pony_Realism___32426778.jpeg b/civitai/pony/Pony_Realism___32426778.jpeg index 524b75f..3f4685c 100644 Binary files a/civitai/pony/Pony_Realism___32426778.jpeg and b/civitai/pony/Pony_Realism___32426778.jpeg differ diff --git a/civitai/pony/Pony__FaeTality_10614224.jpeg b/civitai/pony/Pony__FaeTality_10614224.jpeg index 407a0a1..65b1635 100644 Binary files a/civitai/pony/Pony__FaeTality_10614224.jpeg and b/civitai/pony/Pony__FaeTality_10614224.jpeg differ diff --git a/civitai/pony/Prefect_Pony_XL_39371940.jpeg b/civitai/pony/Prefect_Pony_XL_39371940.jpeg index 24ef457..5075ad5 100644 Binary files a/civitai/pony/Prefect_Pony_XL_39371940.jpeg and b/civitai/pony/Prefect_Pony_XL_39371940.jpeg differ diff --git a/civitai/pony/RainPonyXL_18480566.jpeg b/civitai/pony/RainPonyXL_18480566.jpeg index ce20dd1..f05b072 100644 Binary files a/civitai/pony/RainPonyXL_18480566.jpeg and b/civitai/pony/RainPonyXL_18480566.jpeg differ diff --git a/civitai/pony/RealCartoon-Pony_37412995.jpeg b/civitai/pony/RealCartoon-Pony_37412995.jpeg index 90f1b2c..dd62055 100644 Binary files a/civitai/pony/RealCartoon-Pony_37412995.jpeg and b/civitai/pony/RealCartoon-Pony_37412995.jpeg differ diff --git a/civitai/pony/RealMixPony_43791674.jpeg b/civitai/pony/RealMixPony_43791674.jpeg index fa7803d..f36fed7 100644 Binary files a/civitai/pony/RealMixPony_43791674.jpeg and b/civitai/pony/RealMixPony_43791674.jpeg differ diff --git a/civitai/pony/Real_Dream_28961712.jpeg b/civitai/pony/Real_Dream_28961712.jpeg index 531ec0a..c83d850 100644 Binary files a/civitai/pony/Real_Dream_28961712.jpeg and b/civitai/pony/Real_Dream_28961712.jpeg differ diff --git a/civitai/pony/Rev_Engine_PonyXL_15027463.jpeg b/civitai/pony/Rev_Engine_PonyXL_15027463.jpeg index cf6d56c..6d1d527 100644 Binary files a/civitai/pony/Rev_Engine_PonyXL_15027463.jpeg and b/civitai/pony/Rev_Engine_PonyXL_15027463.jpeg differ diff --git a/civitai/pony/SXZ_Luma_24436547.jpeg b/civitai/pony/SXZ_Luma_24436547.jpeg index 9e4d546..bc3c64d 100644 Binary files a/civitai/pony/SXZ_Luma_24436547.jpeg and b/civitai/pony/SXZ_Luma_24436547.jpeg differ diff --git a/civitai/pony/Sevenof9_pony_real_mix_43461799.jpeg b/civitai/pony/Sevenof9_pony_real_mix_43461799.jpeg index a8db7da..163f4e0 100644 Binary files a/civitai/pony/Sevenof9_pony_real_mix_43461799.jpeg and b/civitai/pony/Sevenof9_pony_real_mix_43461799.jpeg differ diff --git a/civitai/pony/SkibidiMix_12357087.jpeg b/civitai/pony/SkibidiMix_12357087.jpeg index 5c78193..beb696e 100644 Binary files a/civitai/pony/SkibidiMix_12357087.jpeg and b/civitai/pony/SkibidiMix_12357087.jpeg differ diff --git a/civitai/pony/SnowPony_30032312.jpeg b/civitai/pony/SnowPony_30032312.jpeg index 3d4a616..a5ab839 100644 Binary files a/civitai/pony/SnowPony_30032312.jpeg and b/civitai/pony/SnowPony_30032312.jpeg differ diff --git a/civitai/pony/Speciosa_2.5D_19251833.jpeg b/civitai/pony/Speciosa_2.5D_19251833.jpeg index 3e9930d..fd8553a 100644 Binary files a/civitai/pony/Speciosa_2.5D_19251833.jpeg and b/civitai/pony/Speciosa_2.5D_19251833.jpeg differ diff --git a/civitai/pony/Speciosa_Realistica_18668933.jpeg b/civitai/pony/Speciosa_Realistica_18668933.jpeg index 35732b2..be232e2 100644 Binary files a/civitai/pony/Speciosa_Realistica_18668933.jpeg and b/civitai/pony/Speciosa_Realistica_18668933.jpeg differ diff --git a/civitai/pony/Sym-Pony_World_40073675.jpeg b/civitai/pony/Sym-Pony_World_40073675.jpeg index e059b44..7b9bf3b 100644 Binary files a/civitai/pony/Sym-Pony_World_40073675.jpeg and b/civitai/pony/Sym-Pony_World_40073675.jpeg differ diff --git a/civitai/pony/TUNIX___3D_Stylized_Pony__24339625.jpeg b/civitai/pony/TUNIX___3D_Stylized_Pony__24339625.jpeg index 3cd05bc..35fb6c2 100644 Binary files a/civitai/pony/TUNIX___3D_Stylized_Pony__24339625.jpeg and b/civitai/pony/TUNIX___3D_Stylized_Pony__24339625.jpeg differ diff --git a/civitai/pony/Toonify_8547273.jpeg b/civitai/pony/Toonify_8547273.jpeg index 6a615cf..864976e 100644 Binary files a/civitai/pony/Toonify_8547273.jpeg and b/civitai/pony/Toonify_8547273.jpeg differ diff --git a/civitai/pony/VividPDXL_10505307.jpeg b/civitai/pony/VividPDXL_10505307.jpeg index afafcfe..69a61ca 100644 Binary files a/civitai/pony/VividPDXL_10505307.jpeg and b/civitai/pony/VividPDXL_10505307.jpeg differ diff --git a/civitai/pony/WAI-ANI-HENTAI-PONYXL_34422981.jpeg b/civitai/pony/WAI-ANI-HENTAI-PONYXL_34422981.jpeg index 905acea..c9a35e8 100644 Binary files a/civitai/pony/WAI-ANI-HENTAI-PONYXL_34422981.jpeg and b/civitai/pony/WAI-ANI-HENTAI-PONYXL_34422981.jpeg differ diff --git a/civitai/pony/WAI-ANI-NSFW-PONYXL_41341984.jpeg b/civitai/pony/WAI-ANI-NSFW-PONYXL_41341984.jpeg index 15ae3a3..4c7b2bb 100644 Binary files a/civitai/pony/WAI-ANI-NSFW-PONYXL_41341984.jpeg and b/civitai/pony/WAI-ANI-NSFW-PONYXL_41341984.jpeg differ diff --git a/civitai/pony/WAI-CUTE_32443611.jpeg b/civitai/pony/WAI-CUTE_32443611.jpeg index 87cf837..3e8fd3b 100644 Binary files a/civitai/pony/WAI-CUTE_32443611.jpeg and b/civitai/pony/WAI-CUTE_32443611.jpeg differ diff --git a/civitai/pony/WAI-REALMIX_30277514.jpeg b/civitai/pony/WAI-REALMIX_30277514.jpeg index 54b93f2..d12cab6 100644 Binary files a/civitai/pony/WAI-REALMIX_30277514.jpeg and b/civitai/pony/WAI-REALMIX_30277514.jpeg differ diff --git a/civitai/pony/WAI-REAL_CN_35087967.jpeg b/civitai/pony/WAI-REAL_CN_35087967.jpeg index 378a878..dbff317 100644 Binary files a/civitai/pony/WAI-REAL_CN_35087967.jpeg and b/civitai/pony/WAI-REAL_CN_35087967.jpeg differ diff --git a/civitai/pony/WildCardX-_XL_PONY_____7623573.jpeg b/civitai/pony/WildCardX-_XL_PONY_____7623573.jpeg index 061de54..d6f0ed3 100644 Binary files a/civitai/pony/WildCardX-_XL_PONY_____7623573.jpeg and b/civitai/pony/WildCardX-_XL_PONY_____7623573.jpeg differ diff --git a/civitai/pony/Yesmix_XL_17005804.jpeg b/civitai/pony/Yesmix_XL_17005804.jpeg index 2389a74..63c8b27 100644 Binary files a/civitai/pony/Yesmix_XL_17005804.jpeg and b/civitai/pony/Yesmix_XL_17005804.jpeg differ diff --git a/civitai/pony/_PVC_Style_Model_Movable_figure_model_Pony_32382240.jpeg b/civitai/pony/_PVC_Style_Model_Movable_figure_model_Pony_32382240.jpeg index 2c84a15..26189d8 100644 Binary files a/civitai/pony/_PVC_Style_Model_Movable_figure_model_Pony_32382240.jpeg and b/civitai/pony/_PVC_Style_Model_Movable_figure_model_Pony_32382240.jpeg differ diff --git a/civitai/pony/boleromix_Pony__32730479.jpeg b/civitai/pony/boleromix_Pony__32730479.jpeg index 5d9324f..174851c 100644 Binary files a/civitai/pony/boleromix_Pony__32730479.jpeg and b/civitai/pony/boleromix_Pony__32730479.jpeg differ diff --git a/civitai/pony/iNiverse_Mix_SFW___NSFW__43364532.jpeg b/civitai/pony/iNiverse_Mix_SFW___NSFW__43364532.jpeg index fe0de93..a2fc621 100644 Binary files a/civitai/pony/iNiverse_Mix_SFW___NSFW__43364532.jpeg and b/civitai/pony/iNiverse_Mix_SFW___NSFW__43364532.jpeg differ diff --git a/civitai/pony/real_pony_34877374.jpeg b/civitai/pony/real_pony_34877374.jpeg index 6d0cbb8..5f3533b 100644 Binary files a/civitai/pony/real_pony_34877374.jpeg and b/civitai/pony/real_pony_34877374.jpeg differ diff --git a/civitai/pony/reweik_PonyXL_23572280.jpeg b/civitai/pony/reweik_PonyXL_23572280.jpeg index 4a13b11..5c697af 100644 Binary files a/civitai/pony/reweik_PonyXL_23572280.jpeg and b/civitai/pony/reweik_PonyXL_23572280.jpeg differ diff --git a/civitai/sd_1.5/0001SoftRealistic_8101456.jpeg b/civitai/sd_1.5/0001SoftRealistic_8101456.jpeg index e2c3e68..6df6cde 100644 Binary files a/civitai/sd_1.5/0001SoftRealistic_8101456.jpeg and b/civitai/sd_1.5/0001SoftRealistic_8101456.jpeg differ diff --git a/civitai/sd_1.5/2DN_1518641.jpeg b/civitai/sd_1.5/2DN_1518641.jpeg index bbd82b5..7d8e788 100644 Binary files a/civitai/sd_1.5/2DN_1518641.jpeg and b/civitai/sd_1.5/2DN_1518641.jpeg differ diff --git a/civitai/sd_1.5/2D_Game_Icon_Skill_Equipment_1038557.jpeg b/civitai/sd_1.5/2D_Game_Icon_Skill_Equipment_1038557.jpeg index 5c86817..a5713ad 100644 Binary files a/civitai/sd_1.5/2D_Game_Icon_Skill_Equipment_1038557.jpeg and b/civitai/sd_1.5/2D_Game_Icon_Skill_Equipment_1038557.jpeg differ diff --git a/civitai/sd_1.5/3D_Animation_Diffusion_1763923.jpeg b/civitai/sd_1.5/3D_Animation_Diffusion_1763923.jpeg index b12a91e..c15fae1 100644 Binary files a/civitai/sd_1.5/3D_Animation_Diffusion_1763923.jpeg and b/civitai/sd_1.5/3D_Animation_Diffusion_1763923.jpeg differ diff --git a/civitai/sd_1.5/3D_Thick_coated_378538.jpeg b/civitai/sd_1.5/3D_Thick_coated_378538.jpeg index 286a4ab..5d0d4bf 100644 Binary files a/civitai/sd_1.5/3D_Thick_coated_378538.jpeg and b/civitai/sd_1.5/3D_Thick_coated_378538.jpeg differ diff --git a/civitai/sd_1.5/3moon_REAL_Ko_242886.jpeg b/civitai/sd_1.5/3moon_REAL_Ko_242886.jpeg index 588efaa..8598619 100644 Binary files a/civitai/sd_1.5/3moon_REAL_Ko_242886.jpeg and b/civitai/sd_1.5/3moon_REAL_Ko_242886.jpeg differ diff --git a/civitai/sd_1.5/3moon_REAL_cartoon_most_detail_skin_texture__185244.jpeg b/civitai/sd_1.5/3moon_REAL_cartoon_most_detail_skin_texture__185244.jpeg index 8e98397..0767b65 100644 Binary files a/civitai/sd_1.5/3moon_REAL_cartoon_most_detail_skin_texture__185244.jpeg and b/civitai/sd_1.5/3moon_REAL_cartoon_most_detail_skin_texture__185244.jpeg differ diff --git a/civitai/sd_1.5/526Mix_V1.5_1844593.jpeg b/civitai/sd_1.5/526Mix_V1.5_1844593.jpeg index 12a3bb7..3f034f4 100644 Binary files a/civitai/sd_1.5/526Mix_V1.5_1844593.jpeg and b/civitai/sd_1.5/526Mix_V1.5_1844593.jpeg differ diff --git a/civitai/sd_1.5/7PAG_-_NSFW_Merged_Model_2257139.jpeg b/civitai/sd_1.5/7PAG_-_NSFW_Merged_Model_2257139.jpeg index 6203d93..1b78dd7 100644 Binary files a/civitai/sd_1.5/7PAG_-_NSFW_Merged_Model_2257139.jpeg and b/civitai/sd_1.5/7PAG_-_NSFW_Merged_Model_2257139.jpeg differ diff --git a/civitai/sd_1.5/A-Zovya_Photoreal_11041816.jpeg b/civitai/sd_1.5/A-Zovya_Photoreal_11041816.jpeg index 7403438..bc418c3 100644 Binary files a/civitai/sd_1.5/A-Zovya_Photoreal_11041816.jpeg and b/civitai/sd_1.5/A-Zovya_Photoreal_11041816.jpeg differ diff --git a/civitai/sd_1.5/A-Zovya_RPG_Artist_Tools_8391325.jpeg b/civitai/sd_1.5/A-Zovya_RPG_Artist_Tools_8391325.jpeg index 75e37d2..0224612 100644 Binary files a/civitai/sd_1.5/A-Zovya_RPG_Artist_Tools_8391325.jpeg and b/civitai/sd_1.5/A-Zovya_RPG_Artist_Tools_8391325.jpeg differ diff --git a/civitai/sd_1.5/AAM_-_AnyLoRA_Anime_Mix_-_Anime_Screencap_Style_Model_1707960.jpeg b/civitai/sd_1.5/AAM_-_AnyLoRA_Anime_Mix_-_Anime_Screencap_Style_Model_1707960.jpeg index c512e08..e5543c4 100644 Binary files a/civitai/sd_1.5/AAM_-_AnyLoRA_Anime_Mix_-_Anime_Screencap_Style_Model_1707960.jpeg and b/civitai/sd_1.5/AAM_-_AnyLoRA_Anime_Mix_-_Anime_Screencap_Style_Model_1707960.jpeg differ diff --git a/civitai/sd_1.5/AARG-Architecture-Res_327362.jpeg b/civitai/sd_1.5/AARG-Architecture-Res_327362.jpeg index c0caae4..2ae6d42 100644 Binary files a/civitai/sd_1.5/AARG-Architecture-Res_327362.jpeg and b/civitai/sd_1.5/AARG-Architecture-Res_327362.jpeg differ diff --git a/civitai/sd_1.5/AICEๅ†ฐๅฏ___KawAICE_ๅนผๆ€็‰นๅŒ–ๆจกๅž‹__739747.jpeg b/civitai/sd_1.5/AICEๅ†ฐๅฏ___KawAICE_ๅนผๆ€็‰นๅŒ–ๆจกๅž‹__739747.jpeg index 8f0e216..1e9f8b5 100644 Binary files a/civitai/sd_1.5/AICEๅ†ฐๅฏ___KawAICE_ๅนผๆ€็‰นๅŒ–ๆจกๅž‹__739747.jpeg and b/civitai/sd_1.5/AICEๅ†ฐๅฏ___KawAICE_ๅนผๆ€็‰นๅŒ–ๆจกๅž‹__739747.jpeg differ diff --git a/civitai/sd_1.5/AIOMonsterGirls_4174109.jpeg b/civitai/sd_1.5/AIOMonsterGirls_4174109.jpeg index 17abab8..7c46d7a 100644 Binary files a/civitai/sd_1.5/AIOMonsterGirls_4174109.jpeg and b/civitai/sd_1.5/AIOMonsterGirls_4174109.jpeg differ diff --git a/civitai/sd_1.5/ALLBoyMix_28846012.jpeg b/civitai/sd_1.5/ALLBoyMix_28846012.jpeg index ca67d57..12714c9 100644 Binary files a/civitai/sd_1.5/ALLBoyMix_28846012.jpeg and b/civitai/sd_1.5/ALLBoyMix_28846012.jpeg differ diff --git a/civitai/sd_1.5/AWPainting_18731362.jpeg b/civitai/sd_1.5/AWPainting_18731362.jpeg index 198359a..274bd8e 100644 Binary files a/civitai/sd_1.5/AWPainting_18731362.jpeg and b/civitai/sd_1.5/AWPainting_18731362.jpeg differ diff --git a/civitai/sd_1.5/AbsoluteReality_1858744.jpeg b/civitai/sd_1.5/AbsoluteReality_1858744.jpeg index 6859f18..ea24f8f 100644 Binary files a/civitai/sd_1.5/AbsoluteReality_1858744.jpeg and b/civitai/sd_1.5/AbsoluteReality_1858744.jpeg differ diff --git a/civitai/sd_1.5/AbyssHellMaple_207895.jpeg b/civitai/sd_1.5/AbyssHellMaple_207895.jpeg index 108335d..dffba59 100644 Binary files a/civitai/sd_1.5/AbyssHellMaple_207895.jpeg and b/civitai/sd_1.5/AbyssHellMaple_207895.jpeg differ diff --git a/civitai/sd_1.5/AbyssOrangeMix2_-_SFW_Soft_NSFW_79544.jpeg b/civitai/sd_1.5/AbyssOrangeMix2_-_SFW_Soft_NSFW_79544.jpeg index 92112a3..0a0ff90 100644 Binary files a/civitai/sd_1.5/AbyssOrangeMix2_-_SFW_Soft_NSFW_79544.jpeg and b/civitai/sd_1.5/AbyssOrangeMix2_-_SFW_Soft_NSFW_79544.jpeg differ diff --git a/civitai/sd_1.5/AgainMix_43901931.jpeg b/civitai/sd_1.5/AgainMix_43901931.jpeg index 00dd851..701f1e3 100644 Binary files a/civitai/sd_1.5/AgainMix_43901931.jpeg and b/civitai/sd_1.5/AgainMix_43901931.jpeg differ diff --git a/civitai/sd_1.5/Agelesnate_10393167.jpeg b/civitai/sd_1.5/Agelesnate_10393167.jpeg index a293066..cafed8d 100644 Binary files a/civitai/sd_1.5/Agelesnate_10393167.jpeg and b/civitai/sd_1.5/Agelesnate_10393167.jpeg differ diff --git a/civitai/sd_1.5/AingDiffusion_8891481.jpeg b/civitai/sd_1.5/AingDiffusion_8891481.jpeg index 0767194..a86ba5a 100644 Binary files a/civitai/sd_1.5/AingDiffusion_8891481.jpeg and b/civitai/sd_1.5/AingDiffusion_8891481.jpeg differ diff --git a/civitai/sd_1.5/AingEXP_5854175.jpeg b/civitai/sd_1.5/AingEXP_5854175.jpeg index 2d5f9df..fefb790 100644 Binary files a/civitai/sd_1.5/AingEXP_5854175.jpeg and b/civitai/sd_1.5/AingEXP_5854175.jpeg differ diff --git a/civitai/sd_1.5/All_in_one_Pixel_Model_384.jpeg b/civitai/sd_1.5/All_in_one_Pixel_Model_384.jpeg index c265394..478850e 100644 Binary files a/civitai/sd_1.5/All_in_one_Pixel_Model_384.jpeg and b/civitai/sd_1.5/All_in_one_Pixel_Model_384.jpeg differ diff --git a/civitai/sd_1.5/Alpha_Lyrae__1231247.jpeg b/civitai/sd_1.5/Alpha_Lyrae__1231247.jpeg index c54e736..0ec878a 100644 Binary files a/civitai/sd_1.5/Alpha_Lyrae__1231247.jpeg and b/civitai/sd_1.5/Alpha_Lyrae__1231247.jpeg differ diff --git a/civitai/sd_1.5/Alstroemeria_Mix_485067.jpeg b/civitai/sd_1.5/Alstroemeria_Mix_485067.jpeg index 05f9c3d..2a9c10a 100644 Binary files a/civitai/sd_1.5/Alstroemeria_Mix_485067.jpeg and b/civitai/sd_1.5/Alstroemeria_Mix_485067.jpeg differ diff --git a/civitai/sd_1.5/AmanoMix_549427.jpeg b/civitai/sd_1.5/AmanoMix_549427.jpeg index d4e87e3..0d51051 100644 Binary files a/civitai/sd_1.5/AmanoMix_549427.jpeg and b/civitai/sd_1.5/AmanoMix_549427.jpeg differ diff --git a/civitai/sd_1.5/Ambientmix_-_An_Anime_Style_Mix_362738.jpeg b/civitai/sd_1.5/Ambientmix_-_An_Anime_Style_Mix_362738.jpeg index 4e54f2b..1cc0f2b 100644 Binary files a/civitai/sd_1.5/Ambientmix_-_An_Anime_Style_Mix_362738.jpeg and b/civitai/sd_1.5/Ambientmix_-_An_Anime_Style_Mix_362738.jpeg differ diff --git a/civitai/sd_1.5/Amixx_2041576.jpeg b/civitai/sd_1.5/Amixx_2041576.jpeg index 44a652b..2fda516 100644 Binary files a/civitai/sd_1.5/Amixx_2041576.jpeg and b/civitai/sd_1.5/Amixx_2041576.jpeg differ diff --git a/civitai/sd_1.5/AnRealSpiceMix_5561997.jpeg b/civitai/sd_1.5/AnRealSpiceMix_5561997.jpeg index bfb4d6b..0f3909f 100644 Binary files a/civitai/sd_1.5/AnRealSpiceMix_5561997.jpeg and b/civitai/sd_1.5/AnRealSpiceMix_5561997.jpeg differ diff --git a/civitai/sd_1.5/AnReal_5163418.jpeg b/civitai/sd_1.5/AnReal_5163418.jpeg index 571ab8c..e7e76c2 100644 Binary files a/civitai/sd_1.5/AnReal_5163418.jpeg and b/civitai/sd_1.5/AnReal_5163418.jpeg differ diff --git a/civitai/sd_1.5/Analog_Diffusion_11321.jpeg b/civitai/sd_1.5/Analog_Diffusion_11321.jpeg index 0420786..519558a 100644 Binary files a/civitai/sd_1.5/Analog_Diffusion_11321.jpeg and b/civitai/sd_1.5/Analog_Diffusion_11321.jpeg differ diff --git a/civitai/sd_1.5/Analog_Madness_-_Realistic_model_4558937.jpeg b/civitai/sd_1.5/Analog_Madness_-_Realistic_model_4558937.jpeg index 384a46b..b7063e2 100644 Binary files a/civitai/sd_1.5/Analog_Madness_-_Realistic_model_4558937.jpeg and b/civitai/sd_1.5/Analog_Madness_-_Realistic_model_4558937.jpeg differ diff --git a/civitai/sd_1.5/Andromeda-Mix_71978.jpeg b/civitai/sd_1.5/Andromeda-Mix_71978.jpeg index b6067fb..facdd03 100644 Binary files a/civitai/sd_1.5/Andromeda-Mix_71978.jpeg and b/civitai/sd_1.5/Andromeda-Mix_71978.jpeg differ diff --git a/civitai/sd_1.5/AngrA_RealFlex_12480228.jpeg b/civitai/sd_1.5/AngrA_RealFlex_12480228.jpeg index 4c650e6..3c02d8d 100644 Binary files a/civitai/sd_1.5/AngrA_RealFlex_12480228.jpeg and b/civitai/sd_1.5/AngrA_RealFlex_12480228.jpeg differ diff --git a/civitai/sd_1.5/AniDosMix_129993.jpeg b/civitai/sd_1.5/AniDosMix_129993.jpeg index d260e3c..adad73b 100644 Binary files a/civitai/sd_1.5/AniDosMix_129993.jpeg and b/civitai/sd_1.5/AniDosMix_129993.jpeg differ diff --git a/civitai/sd_1.5/AniHelloy2d_4081730.jpeg b/civitai/sd_1.5/AniHelloy2d_4081730.jpeg index 420c4ab..33313e6 100644 Binary files a/civitai/sd_1.5/AniHelloy2d_4081730.jpeg and b/civitai/sd_1.5/AniHelloy2d_4081730.jpeg differ diff --git a/civitai/sd_1.5/AniMerge_11948680.jpeg b/civitai/sd_1.5/AniMerge_11948680.jpeg index 01bbda8..c625109 100644 Binary files a/civitai/sd_1.5/AniMerge_11948680.jpeg and b/civitai/sd_1.5/AniMerge_11948680.jpeg differ diff --git a/civitai/sd_1.5/AniMesh_3674768.jpeg b/civitai/sd_1.5/AniMesh_3674768.jpeg index 2e57d60..2ab0065 100644 Binary files a/civitai/sd_1.5/AniMesh_3674768.jpeg and b/civitai/sd_1.5/AniMesh_3674768.jpeg differ diff --git a/civitai/sd_1.5/AniMics_13136701.jpeg b/civitai/sd_1.5/AniMics_13136701.jpeg index 2d4865b..7384ca9 100644 Binary files a/civitai/sd_1.5/AniMics_13136701.jpeg and b/civitai/sd_1.5/AniMics_13136701.jpeg differ diff --git a/civitai/sd_1.5/AniThing_11056530.jpeg b/civitai/sd_1.5/AniThing_11056530.jpeg index 7486942..637168f 100644 Binary files a/civitai/sd_1.5/AniThing_11056530.jpeg and b/civitai/sd_1.5/AniThing_11056530.jpeg differ diff --git a/civitai/sd_1.5/AniToon_13130503.jpeg b/civitai/sd_1.5/AniToon_13130503.jpeg index 774c7a5..28941fe 100644 Binary files a/civitai/sd_1.5/AniToon_13130503.jpeg and b/civitai/sd_1.5/AniToon_13130503.jpeg differ diff --git a/civitai/sd_1.5/AniVerse_18126163.jpeg b/civitai/sd_1.5/AniVerse_18126163.jpeg index b88683d..84e8887 100644 Binary files a/civitai/sd_1.5/AniVerse_18126163.jpeg and b/civitai/sd_1.5/AniVerse_18126163.jpeg differ diff --git a/civitai/sd_1.5/Aniflatmix_-_Anime_Flat_Color_Style_Mix__ๅนณๆถ‚ใ‚Š้ขจ_ๅนณๆถ‚้ฃŽ__450815.jpeg b/civitai/sd_1.5/Aniflatmix_-_Anime_Flat_Color_Style_Mix__ๅนณๆถ‚ใ‚Š้ขจ_ๅนณๆถ‚้ฃŽ__450815.jpeg index bac89a2..1ef2ab9 100644 Binary files a/civitai/sd_1.5/Aniflatmix_-_Anime_Flat_Color_Style_Mix__ๅนณๆถ‚ใ‚Š้ขจ_ๅนณๆถ‚้ฃŽ__450815.jpeg and b/civitai/sd_1.5/Aniflatmix_-_Anime_Flat_Color_Style_Mix__ๅนณๆถ‚ใ‚Š้ขจ_ๅนณๆถ‚้ฃŽ__450815.jpeg differ diff --git a/civitai/sd_1.5/Anime-Babes-Bigger__ABB__691349.jpeg b/civitai/sd_1.5/Anime-Babes-Bigger__ABB__691349.jpeg index bca3c98..a6076bd 100644 Binary files a/civitai/sd_1.5/Anime-Babes-Bigger__ABB__691349.jpeg and b/civitai/sd_1.5/Anime-Babes-Bigger__ABB__691349.jpeg differ diff --git a/civitai/sd_1.5/Anime-CHIBI4.5_6239783.jpeg b/civitai/sd_1.5/Anime-CHIBI4.5_6239783.jpeg index 10c43fe..dfb6938 100644 Binary files a/civitai/sd_1.5/Anime-CHIBI4.5_6239783.jpeg and b/civitai/sd_1.5/Anime-CHIBI4.5_6239783.jpeg differ diff --git a/civitai/sd_1.5/Anime3D_Mix_1628302.jpeg b/civitai/sd_1.5/Anime3D_Mix_1628302.jpeg index 73f322d..5e4bf84 100644 Binary files a/civitai/sd_1.5/Anime3D_Mix_1628302.jpeg and b/civitai/sd_1.5/Anime3D_Mix_1628302.jpeg differ diff --git a/civitai/sd_1.5/AnimeKawa_1103346.jpeg b/civitai/sd_1.5/AnimeKawa_1103346.jpeg index 8cacce6..d948ad7 100644 Binary files a/civitai/sd_1.5/AnimeKawa_1103346.jpeg and b/civitai/sd_1.5/AnimeKawa_1103346.jpeg differ diff --git a/civitai/sd_1.5/Anime_Pastel_Dream_316170.jpeg b/civitai/sd_1.5/Anime_Pastel_Dream_316170.jpeg index 5a623a1..ffb92cb 100644 Binary files a/civitai/sd_1.5/Anime_Pastel_Dream_316170.jpeg and b/civitai/sd_1.5/Anime_Pastel_Dream_316170.jpeg differ diff --git a/civitai/sd_1.5/Anime_Screencap_Style_9433675.jpeg b/civitai/sd_1.5/Anime_Screencap_Style_9433675.jpeg index c810349..7c8b65f 100644 Binary files a/civitai/sd_1.5/Anime_Screencap_Style_9433675.jpeg and b/civitai/sd_1.5/Anime_Screencap_Style_9433675.jpeg differ diff --git a/civitai/sd_1.5/AnyLoRA_-_Checkpoint_1136424.jpeg b/civitai/sd_1.5/AnyLoRA_-_Checkpoint_1136424.jpeg index 9ab61a1..3d69a7b 100644 Binary files a/civitai/sd_1.5/AnyLoRA_-_Checkpoint_1136424.jpeg and b/civitai/sd_1.5/AnyLoRA_-_Checkpoint_1136424.jpeg differ diff --git a/civitai/sd_1.5/AnyLoraCleanLinearMix-ClearVAE_4024162.jpeg b/civitai/sd_1.5/AnyLoraCleanLinearMix-ClearVAE_4024162.jpeg index 8b0f22b..c24844f 100644 Binary files a/civitai/sd_1.5/AnyLoraCleanLinearMix-ClearVAE_4024162.jpeg and b/civitai/sd_1.5/AnyLoraCleanLinearMix-ClearVAE_4024162.jpeg differ diff --git a/civitai/sd_1.5/AnyOrangeMix_-_Anything___AbyssOrangeMix_6417222.jpeg b/civitai/sd_1.5/AnyOrangeMix_-_Anything___AbyssOrangeMix_6417222.jpeg index bb490a1..195b521 100644 Binary files a/civitai/sd_1.5/AnyOrangeMix_-_Anything___AbyssOrangeMix_6417222.jpeg and b/civitai/sd_1.5/AnyOrangeMix_-_Anything___AbyssOrangeMix_6417222.jpeg differ diff --git a/civitai/sd_1.5/Anyfetus_206629.jpeg b/civitai/sd_1.5/Anyfetus_206629.jpeg index 7a2c012..cd4dbfc 100644 Binary files a/civitai/sd_1.5/Anyfetus_206629.jpeg and b/civitai/sd_1.5/Anyfetus_206629.jpeg differ diff --git a/civitai/sd_1.5/AnythingElse_V4_44683.jpeg b/civitai/sd_1.5/AnythingElse_V4_44683.jpeg index 7703b3b..806ce5f 100644 Binary files a/civitai/sd_1.5/AnythingElse_V4_44683.jpeg and b/civitai/sd_1.5/AnythingElse_V4_44683.jpeg differ diff --git a/civitai/sd_1.5/AnythingQingMix-Realistic_1967148.jpeg b/civitai/sd_1.5/AnythingQingMix-Realistic_1967148.jpeg index e8af3f0..cd23fab 100644 Binary files a/civitai/sd_1.5/AnythingQingMix-Realistic_1967148.jpeg and b/civitai/sd_1.5/AnythingQingMix-Realistic_1967148.jpeg differ diff --git a/civitai/sd_1.5/AnythingQingMix_2440134.jpeg b/civitai/sd_1.5/AnythingQingMix_2440134.jpeg index d02fd18..1459471 100644 Binary files a/civitai/sd_1.5/AnythingQingMix_2440134.jpeg and b/civitai/sd_1.5/AnythingQingMix_2440134.jpeg differ diff --git a/civitai/sd_1.5/Anything_V3_517.jpeg b/civitai/sd_1.5/Anything_V3_517.jpeg index e9d1090..8846abd 100644 Binary files a/civitai/sd_1.5/Anything_V3_517.jpeg and b/civitai/sd_1.5/Anything_V3_517.jpeg differ diff --git a/civitai/sd_1.5/Anything_and_Everything_579450.jpeg b/civitai/sd_1.5/Anything_and_Everything_579450.jpeg index 2597cf6..1abe66b 100644 Binary files a/civitai/sd_1.5/Anything_and_Everything_579450.jpeg and b/civitai/sd_1.5/Anything_and_Everything_579450.jpeg differ diff --git a/civitai/sd_1.5/Arcane_Diffusion_127.jpeg b/civitai/sd_1.5/Arcane_Diffusion_127.jpeg index 5a97c5f..abc5c4b 100644 Binary files a/civitai/sd_1.5/Arcane_Diffusion_127.jpeg and b/civitai/sd_1.5/Arcane_Diffusion_127.jpeg differ diff --git a/civitai/sd_1.5/ArchitectureRealMix_9700489.jpeg b/civitai/sd_1.5/ArchitectureRealMix_9700489.jpeg index 7c559eb..d8347a9 100644 Binary files a/civitai/sd_1.5/ArchitectureRealMix_9700489.jpeg and b/civitai/sd_1.5/ArchitectureRealMix_9700489.jpeg differ diff --git a/civitai/sd_1.5/Art___Eros__aEros__-_A_tribute_to_beauty_39078.jpeg b/civitai/sd_1.5/Art___Eros__aEros__-_A_tribute_to_beauty_39078.jpeg index 67c2676..419dd26 100644 Binary files a/civitai/sd_1.5/Art___Eros__aEros__-_A_tribute_to_beauty_39078.jpeg and b/civitai/sd_1.5/Art___Eros__aEros__-_A_tribute_to_beauty_39078.jpeg differ diff --git a/civitai/sd_1.5/ArteYou_1019904.jpeg b/civitai/sd_1.5/ArteYou_1019904.jpeg index 728c5db..ff425c1 100644 Binary files a/civitai/sd_1.5/ArteYou_1019904.jpeg and b/civitai/sd_1.5/ArteYou_1019904.jpeg differ diff --git a/civitai/sd_1.5/Arthemy_Comics_9676738.jpeg b/civitai/sd_1.5/Arthemy_Comics_9676738.jpeg index b6a5a98..9fb7b7b 100644 Binary files a/civitai/sd_1.5/Arthemy_Comics_9676738.jpeg and b/civitai/sd_1.5/Arthemy_Comics_9676738.jpeg differ diff --git a/civitai/sd_1.5/AsianRealistic_SDLife_ChiasedammeV6.0_1743066.jpeg b/civitai/sd_1.5/AsianRealistic_SDLife_ChiasedammeV6.0_1743066.jpeg index b7e5e33..bec6f87 100644 Binary files a/civitai/sd_1.5/AsianRealistic_SDLife_ChiasedammeV6.0_1743066.jpeg and b/civitai/sd_1.5/AsianRealistic_SDLife_ChiasedammeV6.0_1743066.jpeg differ diff --git a/civitai/sd_1.5/Asian_Mix__3309135.jpeg b/civitai/sd_1.5/Asian_Mix__3309135.jpeg index 0ca9249..75a2a11 100644 Binary files a/civitai/sd_1.5/Asian_Mix__3309135.jpeg and b/civitai/sd_1.5/Asian_Mix__3309135.jpeg differ diff --git a/civitai/sd_1.5/AstrAnime_6403786.jpeg b/civitai/sd_1.5/AstrAnime_6403786.jpeg index 653e73b..2c157e9 100644 Binary files a/civitai/sd_1.5/AstrAnime_6403786.jpeg and b/civitai/sd_1.5/AstrAnime_6403786.jpeg differ diff --git a/civitai/sd_1.5/Async_s_MIX_6665275.jpeg b/civitai/sd_1.5/Async_s_MIX_6665275.jpeg index 1135248..a79e31c 100644 Binary files a/civitai/sd_1.5/Async_s_MIX_6665275.jpeg and b/civitai/sd_1.5/Async_s_MIX_6665275.jpeg differ diff --git a/civitai/sd_1.5/Aurora_505049.jpeg b/civitai/sd_1.5/Aurora_505049.jpeg index 9e56dc7..38f8870 100644 Binary files a/civitai/sd_1.5/Aurora_505049.jpeg and b/civitai/sd_1.5/Aurora_505049.jpeg differ diff --git a/civitai/sd_1.5/Avalon_TRUvision_4354665.jpeg b/civitai/sd_1.5/Avalon_TRUvision_4354665.jpeg index 69f92f3..d492487 100644 Binary files a/civitai/sd_1.5/Avalon_TRUvision_4354665.jpeg and b/civitai/sd_1.5/Avalon_TRUvision_4354665.jpeg differ diff --git a/civitai/sd_1.5/AyoniMix_233747.jpeg b/civitai/sd_1.5/AyoniMix_233747.jpeg index 8f788cf..073b87a 100644 Binary files a/civitai/sd_1.5/AyoniMix_233747.jpeg and b/civitai/sd_1.5/AyoniMix_233747.jpeg differ diff --git a/civitai/sd_1.5/AziibPixelMix_3522441.jpeg b/civitai/sd_1.5/AziibPixelMix_3522441.jpeg index b01842b..772f073 100644 Binary files a/civitai/sd_1.5/AziibPixelMix_3522441.jpeg and b/civitai/sd_1.5/AziibPixelMix_3522441.jpeg differ diff --git a/civitai/sd_1.5/Bambi_Eyes_2441250.jpeg b/civitai/sd_1.5/Bambi_Eyes_2441250.jpeg index 5ba9fa4..0f956e3 100644 Binary files a/civitai/sd_1.5/Bambi_Eyes_2441250.jpeg and b/civitai/sd_1.5/Bambi_Eyes_2441250.jpeg differ diff --git a/civitai/sd_1.5/Based64_419361.jpeg b/civitai/sd_1.5/Based64_419361.jpeg index 7a441d1..a147b6f 100644 Binary files a/civitai/sd_1.5/Based64_419361.jpeg and b/civitai/sd_1.5/Based64_419361.jpeg differ diff --git a/civitai/sd_1.5/Based65_420064.jpeg b/civitai/sd_1.5/Based65_420064.jpeg index 5cad684..66c3382 100644 Binary files a/civitai/sd_1.5/Based65_420064.jpeg and b/civitai/sd_1.5/Based65_420064.jpeg differ diff --git a/civitai/sd_1.5/Basil_Korea_1610009.jpeg b/civitai/sd_1.5/Basil_Korea_1610009.jpeg index 24535b1..2f90731 100644 Binary files a/civitai/sd_1.5/Basil_Korea_1610009.jpeg and b/civitai/sd_1.5/Basil_Korea_1610009.jpeg differ diff --git a/civitai/sd_1.5/Beautiful_Realistic_Asians_2822492.jpeg b/civitai/sd_1.5/Beautiful_Realistic_Asians_2822492.jpeg index 3d332d9..e62dfa5 100644 Binary files a/civitai/sd_1.5/Beautiful_Realistic_Asians_2822492.jpeg and b/civitai/sd_1.5/Beautiful_Realistic_Asians_2822492.jpeg differ diff --git a/civitai/sd_1.5/BeautyFool_3455761.jpeg b/civitai/sd_1.5/BeautyFool_3455761.jpeg index 5ff385e..ffa903d 100644 Binary files a/civitai/sd_1.5/BeautyFool_3455761.jpeg and b/civitai/sd_1.5/BeautyFool_3455761.jpeg differ diff --git a/civitai/sd_1.5/BeautyProMix_213367.jpeg b/civitai/sd_1.5/BeautyProMix_213367.jpeg index eae0fdb..c4d2784 100644 Binary files a/civitai/sd_1.5/BeautyProMix_213367.jpeg and b/civitai/sd_1.5/BeautyProMix_213367.jpeg differ diff --git a/civitai/sd_1.5/BeenYou_971498.jpeg b/civitai/sd_1.5/BeenYou_971498.jpeg index 942b214..87ae369 100644 Binary files a/civitai/sd_1.5/BeenYou_971498.jpeg and b/civitai/sd_1.5/BeenYou_971498.jpeg differ diff --git a/civitai/sd_1.5/BeenYou_Lite_1543567.jpeg b/civitai/sd_1.5/BeenYou_Lite_1543567.jpeg index 393b50d..7f82143 100644 Binary files a/civitai/sd_1.5/BeenYou_Lite_1543567.jpeg and b/civitai/sd_1.5/BeenYou_Lite_1543567.jpeg differ diff --git a/civitai/sd_1.5/BestQuality-PastelMix_289851.jpeg b/civitai/sd_1.5/BestQuality-PastelMix_289851.jpeg index 67e13dc..07d674b 100644 Binary files a/civitai/sd_1.5/BestQuality-PastelMix_289851.jpeg and b/civitai/sd_1.5/BestQuality-PastelMix_289851.jpeg differ diff --git a/civitai/sd_1.5/BetterBoys2.5D_2163537.jpeg b/civitai/sd_1.5/BetterBoys2.5D_2163537.jpeg index bf802a8..d29c5b9 100644 Binary files a/civitai/sd_1.5/BetterBoys2.5D_2163537.jpeg and b/civitai/sd_1.5/BetterBoys2.5D_2163537.jpeg differ diff --git a/civitai/sd_1.5/BismuthMix_2162475.jpeg b/civitai/sd_1.5/BismuthMix_2162475.jpeg index 56b2882..9045c53 100644 Binary files a/civitai/sd_1.5/BismuthMix_2162475.jpeg and b/civitai/sd_1.5/BismuthMix_2162475.jpeg differ diff --git a/civitai/sd_1.5/BlazingRealDrive_4950671.jpeg b/civitai/sd_1.5/BlazingRealDrive_4950671.jpeg index 75821de..a12f5bc 100644 Binary files a/civitai/sd_1.5/BlazingRealDrive_4950671.jpeg and b/civitai/sd_1.5/BlazingRealDrive_4950671.jpeg differ diff --git a/civitai/sd_1.5/Blazing_Drive_5305186.jpeg b/civitai/sd_1.5/Blazing_Drive_5305186.jpeg index a944449..de1c6c4 100644 Binary files a/civitai/sd_1.5/Blazing_Drive_5305186.jpeg and b/civitai/sd_1.5/Blazing_Drive_5305186.jpeg differ diff --git a/civitai/sd_1.5/Blessing_Mix__aka._Bracing_Evo_Mix_clone__1446018.jpeg b/civitai/sd_1.5/Blessing_Mix__aka._Bracing_Evo_Mix_clone__1446018.jpeg index fe6f72b..241fcca 100644 Binary files a/civitai/sd_1.5/Blessing_Mix__aka._Bracing_Evo_Mix_clone__1446018.jpeg and b/civitai/sd_1.5/Blessing_Mix__aka._Bracing_Evo_Mix_clone__1446018.jpeg differ diff --git a/civitai/sd_1.5/BlueBoys_2D_778482.jpeg b/civitai/sd_1.5/BlueBoys_2D_778482.jpeg index 51091ac..4581aba 100644 Binary files a/civitai/sd_1.5/BlueBoys_2D_778482.jpeg and b/civitai/sd_1.5/BlueBoys_2D_778482.jpeg differ diff --git a/civitai/sd_1.5/BlueMix_TMND_Enhanced_488580.jpeg b/civitai/sd_1.5/BlueMix_TMND_Enhanced_488580.jpeg index a7564a3..831cc18 100644 Binary files a/civitai/sd_1.5/BlueMix_TMND_Enhanced_488580.jpeg and b/civitai/sd_1.5/BlueMix_TMND_Enhanced_488580.jpeg differ diff --git a/civitai/sd_1.5/BlueMoonMix_่“ๆœˆ_257399.jpeg b/civitai/sd_1.5/BlueMoonMix_่“ๆœˆ_257399.jpeg index 4c7410b..d594e6c 100644 Binary files a/civitai/sd_1.5/BlueMoonMix_่“ๆœˆ_257399.jpeg and b/civitai/sd_1.5/BlueMoonMix_่“ๆœˆ_257399.jpeg differ diff --git a/civitai/sd_1.5/BlueberryMix_430427.jpeg b/civitai/sd_1.5/BlueberryMix_430427.jpeg index 51d03a0..60a7b66 100644 Binary files a/civitai/sd_1.5/BlueberryMix_430427.jpeg and b/civitai/sd_1.5/BlueberryMix_430427.jpeg differ diff --git a/civitai/sd_1.5/BoyFusion_6344071.jpeg b/civitai/sd_1.5/BoyFusion_6344071.jpeg index 2f4e67d..3906fb4 100644 Binary files a/civitai/sd_1.5/BoyFusion_6344071.jpeg and b/civitai/sd_1.5/BoyFusion_6344071.jpeg differ diff --git a/civitai/sd_1.5/BrainDance_1767210.jpeg b/civitai/sd_1.5/BrainDance_1767210.jpeg index 007a43e..27a55f6 100644 Binary files a/civitai/sd_1.5/BrainDance_1767210.jpeg and b/civitai/sd_1.5/BrainDance_1767210.jpeg differ diff --git a/civitai/sd_1.5/BrickAndMortarMix_2861760.jpeg b/civitai/sd_1.5/BrickAndMortarMix_2861760.jpeg index 8ea3808..8a638ee 100644 Binary files a/civitai/sd_1.5/BrickAndMortarMix_2861760.jpeg and b/civitai/sd_1.5/BrickAndMortarMix_2861760.jpeg differ diff --git a/civitai/sd_1.5/ByteOil_v2_597526.jpeg b/civitai/sd_1.5/ByteOil_v2_597526.jpeg index 80db84e..2a00e41 100644 Binary files a/civitai/sd_1.5/ByteOil_v2_597526.jpeg and b/civitai/sd_1.5/ByteOil_v2_597526.jpeg differ diff --git a/civitai/sd_1.5/C3_1461701.jpeg b/civitai/sd_1.5/C3_1461701.jpeg index a46952d..8d99e48 100644 Binary files a/civitai/sd_1.5/C3_1461701.jpeg and b/civitai/sd_1.5/C3_1461701.jpeg differ diff --git a/civitai/sd_1.5/COCOtiFaCute_1816123.jpeg b/civitai/sd_1.5/COCOtiFaCute_1816123.jpeg index ae2697c..8640acb 100644 Binary files a/civitai/sd_1.5/COCOtiFaCute_1816123.jpeg and b/civitai/sd_1.5/COCOtiFaCute_1816123.jpeg differ diff --git a/civitai/sd_1.5/COCOtiFaMix_1506894.jpeg b/civitai/sd_1.5/COCOtiFaMix_1506894.jpeg index d00edf7..258e241 100644 Binary files a/civitai/sd_1.5/COCOtiFaMix_1506894.jpeg and b/civitai/sd_1.5/COCOtiFaMix_1506894.jpeg differ diff --git a/civitai/sd_1.5/CalicoMix_27245112.jpeg b/civitai/sd_1.5/CalicoMix_27245112.jpeg index 77e3ab8..bc8a3ba 100644 Binary files a/civitai/sd_1.5/CalicoMix_27245112.jpeg and b/civitai/sd_1.5/CalicoMix_27245112.jpeg differ diff --git a/civitai/sd_1.5/CalicoMix_DangerousCute_4900819.jpeg b/civitai/sd_1.5/CalicoMix_DangerousCute_4900819.jpeg index e2f707b..d3ce567 100644 Binary files a/civitai/sd_1.5/CalicoMix_DangerousCute_4900819.jpeg and b/civitai/sd_1.5/CalicoMix_DangerousCute_4900819.jpeg differ diff --git a/civitai/sd_1.5/CamelliaMIx_2.5D_2491264.jpeg b/civitai/sd_1.5/CamelliaMIx_2.5D_2491264.jpeg index c30e9e9..76d2b7e 100644 Binary files a/civitai/sd_1.5/CamelliaMIx_2.5D_2491264.jpeg and b/civitai/sd_1.5/CamelliaMIx_2.5D_2491264.jpeg differ diff --git a/civitai/sd_1.5/CamelliaMix_1634452.jpeg b/civitai/sd_1.5/CamelliaMix_1634452.jpeg index 026c872..53d2582 100644 Binary files a/civitai/sd_1.5/CamelliaMix_1634452.jpeg and b/civitai/sd_1.5/CamelliaMix_1634452.jpeg differ diff --git a/civitai/sd_1.5/CamelliaMix_Line_525208.jpeg b/civitai/sd_1.5/CamelliaMix_Line_525208.jpeg index 60ec55f..a58b5e7 100644 Binary files a/civitai/sd_1.5/CamelliaMix_Line_525208.jpeg and b/civitai/sd_1.5/CamelliaMix_Line_525208.jpeg differ diff --git a/civitai/sd_1.5/CarDos_Animated_2236930.jpeg b/civitai/sd_1.5/CarDos_Animated_2236930.jpeg index 83b199d..022dd2a 100644 Binary files a/civitai/sd_1.5/CarDos_Animated_2236930.jpeg and b/civitai/sd_1.5/CarDos_Animated_2236930.jpeg differ diff --git a/civitai/sd_1.5/CarDos_Anime_491502.jpeg b/civitai/sd_1.5/CarDos_Anime_491502.jpeg index 0acff8c..b4e8fe3 100644 Binary files a/civitai/sd_1.5/CarDos_Anime_491502.jpeg and b/civitai/sd_1.5/CarDos_Anime_491502.jpeg differ diff --git a/civitai/sd_1.5/Cardology_Mix_1176847.jpeg b/civitai/sd_1.5/Cardology_Mix_1176847.jpeg index fad5451..a17c4c0 100644 Binary files a/civitai/sd_1.5/Cardology_Mix_1176847.jpeg and b/civitai/sd_1.5/Cardology_Mix_1176847.jpeg differ diff --git a/civitai/sd_1.5/Cartoon_Arcadia_____SDXL___SD_1.5_5765768.jpeg b/civitai/sd_1.5/Cartoon_Arcadia_____SDXL___SD_1.5_5765768.jpeg index 6068054..a434318 100644 Binary files a/civitai/sd_1.5/Cartoon_Arcadia_____SDXL___SD_1.5_5765768.jpeg and b/civitai/sd_1.5/Cartoon_Arcadia_____SDXL___SD_1.5_5765768.jpeg differ diff --git a/civitai/sd_1.5/Cartoon_Style_958355.jpeg b/civitai/sd_1.5/Cartoon_Style_958355.jpeg index c950298..6b6a34e 100644 Binary files a/civitai/sd_1.5/Cartoon_Style_958355.jpeg and b/civitai/sd_1.5/Cartoon_Style_958355.jpeg differ diff --git a/civitai/sd_1.5/Cetus-Mix_1322390.jpeg b/civitai/sd_1.5/Cetus-Mix_1322390.jpeg index 5df9718..3fa22fa 100644 Binary files a/civitai/sd_1.5/Cetus-Mix_1322390.jpeg and b/civitai/sd_1.5/Cetus-Mix_1322390.jpeg differ diff --git a/civitai/sd_1.5/ChameleonAI__RPG__Mix_479912.jpeg b/civitai/sd_1.5/ChameleonAI__RPG__Mix_479912.jpeg index 40c90c9..c32b1d2 100644 Binary files a/civitai/sd_1.5/ChameleonAI__RPG__Mix_479912.jpeg and b/civitai/sd_1.5/ChameleonAI__RPG__Mix_479912.jpeg differ diff --git a/civitai/sd_1.5/Cheese_Daddy_s_Landscapes_mix_471002.jpeg b/civitai/sd_1.5/Cheese_Daddy_s_Landscapes_mix_471002.jpeg index d5b1c5f..d24813c 100644 Binary files a/civitai/sd_1.5/Cheese_Daddy_s_Landscapes_mix_471002.jpeg and b/civitai/sd_1.5/Cheese_Daddy_s_Landscapes_mix_471002.jpeg differ diff --git a/civitai/sd_1.5/Cheese_Daddy_s_Landscapes_mix___OFFSET_NOISE_191430.jpeg b/civitai/sd_1.5/Cheese_Daddy_s_Landscapes_mix___OFFSET_NOISE_191430.jpeg index e80a39b..baeca5b 100644 Binary files a/civitai/sd_1.5/Cheese_Daddy_s_Landscapes_mix___OFFSET_NOISE_191430.jpeg and b/civitai/sd_1.5/Cheese_Daddy_s_Landscapes_mix___OFFSET_NOISE_191430.jpeg differ diff --git a/civitai/sd_1.5/ChickMixFlat_747089.jpeg b/civitai/sd_1.5/ChickMixFlat_747089.jpeg index aa666a1..94985d2 100644 Binary files a/civitai/sd_1.5/ChickMixFlat_747089.jpeg and b/civitai/sd_1.5/ChickMixFlat_747089.jpeg differ diff --git a/civitai/sd_1.5/Children_s_Stories_Toolkit_1325953.jpeg b/civitai/sd_1.5/Children_s_Stories_Toolkit_1325953.jpeg index dff35bc..c3462aa 100644 Binary files a/civitai/sd_1.5/Children_s_Stories_Toolkit_1325953.jpeg and b/civitai/sd_1.5/Children_s_Stories_Toolkit_1325953.jpeg differ diff --git a/civitai/sd_1.5/ChillyMix_959555.jpeg b/civitai/sd_1.5/ChillyMix_959555.jpeg index a7f398b..27dd5df 100644 Binary files a/civitai/sd_1.5/ChillyMix_959555.jpeg and b/civitai/sd_1.5/ChillyMix_959555.jpeg differ diff --git a/civitai/sd_1.5/Cine_Diffusion_590248.jpeg b/civitai/sd_1.5/Cine_Diffusion_590248.jpeg index 506e013..75b490f 100644 Binary files a/civitai/sd_1.5/Cine_Diffusion_590248.jpeg and b/civitai/sd_1.5/Cine_Diffusion_590248.jpeg differ diff --git a/civitai/sd_1.5/CitrineDreamMix_1169231.jpeg b/civitai/sd_1.5/CitrineDreamMix_1169231.jpeg index 7c49683..0cec741 100644 Binary files a/civitai/sd_1.5/CitrineDreamMix_1169231.jpeg and b/civitai/sd_1.5/CitrineDreamMix_1169231.jpeg differ diff --git a/civitai/sd_1.5/CityEdgeMix_484113.jpeg b/civitai/sd_1.5/CityEdgeMix_484113.jpeg index db6a7b7..8ff61f3 100644 Binary files a/civitai/sd_1.5/CityEdgeMix_484113.jpeg and b/civitai/sd_1.5/CityEdgeMix_484113.jpeg differ diff --git a/civitai/sd_1.5/CityEdge_2dToonMix_802038.jpeg b/civitai/sd_1.5/CityEdge_2dToonMix_802038.jpeg index cfe2530..a8c4ded 100644 Binary files a/civitai/sd_1.5/CityEdge_2dToonMix_802038.jpeg and b/civitai/sd_1.5/CityEdge_2dToonMix_802038.jpeg differ diff --git a/civitai/sd_1.5/CityEdge_DollyMix_938030.jpeg b/civitai/sd_1.5/CityEdge_DollyMix_938030.jpeg index 3166d8f..76c8cc8 100644 Binary files a/civitai/sd_1.5/CityEdge_DollyMix_938030.jpeg and b/civitai/sd_1.5/CityEdge_DollyMix_938030.jpeg differ diff --git a/civitai/sd_1.5/CityEdge_ToonMix_641525.jpeg b/civitai/sd_1.5/CityEdge_ToonMix_641525.jpeg index c444bb0..a433778 100644 Binary files a/civitai/sd_1.5/CityEdge_ToonMix_641525.jpeg and b/civitai/sd_1.5/CityEdge_ToonMix_641525.jpeg differ diff --git a/civitai/sd_1.5/Clarity_2062809.jpeg b/civitai/sd_1.5/Clarity_2062809.jpeg index bd0ee30..b1d8eaa 100644 Binary files a/civitai/sd_1.5/Clarity_2062809.jpeg and b/civitai/sd_1.5/Clarity_2062809.jpeg differ diff --git a/civitai/sd_1.5/CleanLinearMix_2996348.jpeg b/civitai/sd_1.5/CleanLinearMix_2996348.jpeg index 4d74ada..cbf0b45 100644 Binary files a/civitai/sd_1.5/CleanLinearMix_2996348.jpeg and b/civitai/sd_1.5/CleanLinearMix_2996348.jpeg differ diff --git a/civitai/sd_1.5/CoffeeBreak_1732363.jpeg b/civitai/sd_1.5/CoffeeBreak_1732363.jpeg index 41d8bdf..dddf69f 100644 Binary files a/civitai/sd_1.5/CoffeeBreak_1732363.jpeg and b/civitai/sd_1.5/CoffeeBreak_1732363.jpeg differ diff --git a/civitai/sd_1.5/CoffeeMix_578214.jpeg b/civitai/sd_1.5/CoffeeMix_578214.jpeg index a68e796..4972d23 100644 Binary files a/civitai/sd_1.5/CoffeeMix_578214.jpeg and b/civitai/sd_1.5/CoffeeMix_578214.jpeg differ diff --git a/civitai/sd_1.5/ColorMagination_1638011.jpeg b/civitai/sd_1.5/ColorMagination_1638011.jpeg index 9deb1c3..e79ff4d 100644 Binary files a/civitai/sd_1.5/ColorMagination_1638011.jpeg and b/civitai/sd_1.5/ColorMagination_1638011.jpeg differ diff --git a/civitai/sd_1.5/Color_Box_Model_276605.jpeg b/civitai/sd_1.5/Color_Box_Model_276605.jpeg index ab59cb1..cf2a5f7 100644 Binary files a/civitai/sd_1.5/Color_Box_Model_276605.jpeg and b/civitai/sd_1.5/Color_Box_Model_276605.jpeg differ diff --git a/civitai/sd_1.5/Colorful_5502058.jpeg b/civitai/sd_1.5/Colorful_5502058.jpeg index 652b34f..f5bb385 100644 Binary files a/civitai/sd_1.5/Colorful_5502058.jpeg and b/civitai/sd_1.5/Colorful_5502058.jpeg differ diff --git a/civitai/sd_1.5/Coma_1299819.jpeg b/civitai/sd_1.5/Coma_1299819.jpeg index 092ad35..1484f04 100644 Binary files a/civitai/sd_1.5/Coma_1299819.jpeg and b/civitai/sd_1.5/Coma_1299819.jpeg differ diff --git a/civitai/sd_1.5/Comic_Babes_5130570.jpeg b/civitai/sd_1.5/Comic_Babes_5130570.jpeg index a8d1469..8d60c4f 100644 Binary files a/civitai/sd_1.5/Comic_Babes_5130570.jpeg and b/civitai/sd_1.5/Comic_Babes_5130570.jpeg differ diff --git a/civitai/sd_1.5/Comic_Diffusion_245.jpeg b/civitai/sd_1.5/Comic_Diffusion_245.jpeg index c64cab8..f73fa0a 100644 Binary files a/civitai/sd_1.5/Comic_Diffusion_245.jpeg and b/civitai/sd_1.5/Comic_Diffusion_245.jpeg differ diff --git a/civitai/sd_1.5/Complex_Lineart_515.jpeg b/civitai/sd_1.5/Complex_Lineart_515.jpeg index 876f7d2..712d3d4 100644 Binary files a/civitai/sd_1.5/Complex_Lineart_515.jpeg and b/civitai/sd_1.5/Complex_Lineart_515.jpeg differ diff --git a/civitai/sd_1.5/Consistent_Factor__Euclid__1947001.jpeg b/civitai/sd_1.5/Consistent_Factor__Euclid__1947001.jpeg index 79f5dbf..0e4bca6 100644 Binary files a/civitai/sd_1.5/Consistent_Factor__Euclid__1947001.jpeg and b/civitai/sd_1.5/Consistent_Factor__Euclid__1947001.jpeg differ diff --git a/civitai/sd_1.5/CookieCutter_3502944.jpeg b/civitai/sd_1.5/CookieCutter_3502944.jpeg index f6357ae..f597729 100644 Binary files a/civitai/sd_1.5/CookieCutter_3502944.jpeg and b/civitai/sd_1.5/CookieCutter_3502944.jpeg differ diff --git a/civitai/sd_1.5/Corneo_s_7th_Heaven_Mix_62863.jpeg b/civitai/sd_1.5/Corneo_s_7th_Heaven_Mix_62863.jpeg index b9014c1..c6de598 100644 Binary files a/civitai/sd_1.5/Corneo_s_7th_Heaven_Mix_62863.jpeg and b/civitai/sd_1.5/Corneo_s_7th_Heaven_Mix_62863.jpeg differ diff --git a/civitai/sd_1.5/Cornflower_-_Stylized_Anime_and_Hentai_Model_8053022.jpeg b/civitai/sd_1.5/Cornflower_-_Stylized_Anime_and_Hentai_Model_8053022.jpeg index 1dd03d2..4f34344 100644 Binary files a/civitai/sd_1.5/Cornflower_-_Stylized_Anime_and_Hentai_Model_8053022.jpeg and b/civitai/sd_1.5/Cornflower_-_Stylized_Anime_and_Hentai_Model_8053022.jpeg differ diff --git a/civitai/sd_1.5/CosplayMix_1242325.jpeg b/civitai/sd_1.5/CosplayMix_1242325.jpeg index 73e4956..248dbf8 100644 Binary files a/civitai/sd_1.5/CosplayMix_1242325.jpeg and b/civitai/sd_1.5/CosplayMix_1242325.jpeg differ diff --git a/civitai/sd_1.5/Counterfeit-V3.0_625765.jpeg b/civitai/sd_1.5/Counterfeit-V3.0_625765.jpeg index 110852e..dc97752 100644 Binary files a/civitai/sd_1.5/Counterfeit-V3.0_625765.jpeg and b/civitai/sd_1.5/Counterfeit-V3.0_625765.jpeg differ diff --git a/civitai/sd_1.5/CuriousMerge_2.5D_1200576.jpeg b/civitai/sd_1.5/CuriousMerge_2.5D_1200576.jpeg index 9e86ba7..53bd9fc 100644 Binary files a/civitai/sd_1.5/CuriousMerge_2.5D_1200576.jpeg and b/civitai/sd_1.5/CuriousMerge_2.5D_1200576.jpeg differ diff --git a/civitai/sd_1.5/CuteFurryMix_766586.jpeg b/civitai/sd_1.5/CuteFurryMix_766586.jpeg index 05cc206..6bd18c9 100644 Binary files a/civitai/sd_1.5/CuteFurryMix_766586.jpeg and b/civitai/sd_1.5/CuteFurryMix_766586.jpeg differ diff --git a/civitai/sd_1.5/CuteYukiMix_็‰นๅŒ–ๅฏ็ˆฑ้ฃŽๆ ผadorable_style__5120821.jpeg b/civitai/sd_1.5/CuteYukiMix_็‰นๅŒ–ๅฏ็ˆฑ้ฃŽๆ ผadorable_style__5120821.jpeg index e56403a..67fa47b 100644 Binary files a/civitai/sd_1.5/CuteYukiMix_็‰นๅŒ–ๅฏ็ˆฑ้ฃŽๆ ผadorable_style__5120821.jpeg and b/civitai/sd_1.5/CuteYukiMix_็‰นๅŒ–ๅฏ็ˆฑ้ฃŽๆ ผadorable_style__5120821.jpeg differ diff --git a/civitai/sd_1.5/Cute_Cartoon_Illustration_1060007.jpeg b/civitai/sd_1.5/Cute_Cartoon_Illustration_1060007.jpeg index 83b1012..a19dea7 100644 Binary files a/civitai/sd_1.5/Cute_Cartoon_Illustration_1060007.jpeg and b/civitai/sd_1.5/Cute_Cartoon_Illustration_1060007.jpeg differ diff --git a/civitai/sd_1.5/Cute_RichStyle_1.5_42159.jpeg b/civitai/sd_1.5/Cute_RichStyle_1.5_42159.jpeg index 3b43da5..5658785 100644 Binary files a/civitai/sd_1.5/Cute_RichStyle_1.5_42159.jpeg and b/civitai/sd_1.5/Cute_RichStyle_1.5_42159.jpeg differ diff --git a/civitai/sd_1.5/CyberRealistic_29558860.jpeg b/civitai/sd_1.5/CyberRealistic_29558860.jpeg index e693759..9666c0c 100644 Binary files a/civitai/sd_1.5/CyberRealistic_29558860.jpeg and b/civitai/sd_1.5/CyberRealistic_29558860.jpeg differ diff --git a/civitai/sd_1.5/CyberRealistic_Classic_37010334.jpeg b/civitai/sd_1.5/CyberRealistic_Classic_37010334.jpeg index 5c66e47..fb588e4 100644 Binary files a/civitai/sd_1.5/CyberRealistic_Classic_37010334.jpeg and b/civitai/sd_1.5/CyberRealistic_Classic_37010334.jpeg differ diff --git a/civitai/sd_1.5/DDicon_484589.jpeg b/civitai/sd_1.5/DDicon_484589.jpeg index bf211b0..b64cb2d 100644 Binary files a/civitai/sd_1.5/DDicon_484589.jpeg and b/civitai/sd_1.5/DDicon_484589.jpeg differ diff --git a/civitai/sd_1.5/DDosMix_132965.jpeg b/civitai/sd_1.5/DDosMix_132965.jpeg index e61475e..8670161 100644 Binary files a/civitai/sd_1.5/DDosMix_132965.jpeg and b/civitai/sd_1.5/DDosMix_132965.jpeg differ diff --git a/civitai/sd_1.5/DREAD_V5_1288748.jpeg b/civitai/sd_1.5/DREAD_V5_1288748.jpeg index dd47ba8..ceb9b2a 100644 Binary files a/civitai/sd_1.5/DREAD_V5_1288748.jpeg and b/civitai/sd_1.5/DREAD_V5_1288748.jpeg differ diff --git a/civitai/sd_1.5/DarkRevPikas_1314463.jpeg b/civitai/sd_1.5/DarkRevPikas_1314463.jpeg index 2d77074..c1a67c9 100644 Binary files a/civitai/sd_1.5/DarkRevPikas_1314463.jpeg and b/civitai/sd_1.5/DarkRevPikas_1314463.jpeg differ diff --git a/civitai/sd_1.5/DarkSun_3888857.jpeg b/civitai/sd_1.5/DarkSun_3888857.jpeg index 9104071..10063be 100644 Binary files a/civitai/sd_1.5/DarkSun_3888857.jpeg and b/civitai/sd_1.5/DarkSun_3888857.jpeg differ diff --git a/civitai/sd_1.5/Dark_Sushi_2.5D_ๅคง้ข—ๅฏฟๅธ2.5D_2056498.jpeg b/civitai/sd_1.5/Dark_Sushi_2.5D_ๅคง้ข—ๅฏฟๅธ2.5D_2056498.jpeg index f2bd42f..0cc62b2 100644 Binary files a/civitai/sd_1.5/Dark_Sushi_2.5D_ๅคง้ข—ๅฏฟๅธ2.5D_2056498.jpeg and b/civitai/sd_1.5/Dark_Sushi_2.5D_ๅคง้ข—ๅฏฟๅธ2.5D_2056498.jpeg differ diff --git a/civitai/sd_1.5/Dark_Sushi_Mix_ๅคง้ข—ๅฏฟๅธMix_1099587.jpeg b/civitai/sd_1.5/Dark_Sushi_Mix_ๅคง้ข—ๅฏฟๅธMix_1099587.jpeg index c977886..c71a002 100644 Binary files a/civitai/sd_1.5/Dark_Sushi_Mix_ๅคง้ข—ๅฏฟๅธMix_1099587.jpeg and b/civitai/sd_1.5/Dark_Sushi_Mix_ๅคง้ข—ๅฏฟๅธMix_1099587.jpeg differ diff --git a/civitai/sd_1.5/DeepBoys_2.5D_746373.jpeg b/civitai/sd_1.5/DeepBoys_2.5D_746373.jpeg index 43b8c09..75707cc 100644 Binary files a/civitai/sd_1.5/DeepBoys_2.5D_746373.jpeg and b/civitai/sd_1.5/DeepBoys_2.5D_746373.jpeg differ diff --git a/civitai/sd_1.5/Deep_Space_Diffusion_32550.jpeg b/civitai/sd_1.5/Deep_Space_Diffusion_32550.jpeg index 843c811..81efef1 100644 Binary files a/civitai/sd_1.5/Deep_Space_Diffusion_32550.jpeg and b/civitai/sd_1.5/Deep_Space_Diffusion_32550.jpeg differ diff --git a/civitai/sd_1.5/Deliberate_for_Invoke_71384.jpeg b/civitai/sd_1.5/Deliberate_for_Invoke_71384.jpeg index d7cc194..5ccb623 100644 Binary files a/civitai/sd_1.5/Deliberate_for_Invoke_71384.jpeg and b/civitai/sd_1.5/Deliberate_for_Invoke_71384.jpeg differ diff --git a/civitai/sd_1.5/Detail_Asian_Realistic_42362972.jpeg b/civitai/sd_1.5/Detail_Asian_Realistic_42362972.jpeg index d9ad204..b346b62 100644 Binary files a/civitai/sd_1.5/Detail_Asian_Realistic_42362972.jpeg and b/civitai/sd_1.5/Detail_Asian_Realistic_42362972.jpeg differ diff --git a/civitai/sd_1.5/Diabolique_Merges_607819.jpeg b/civitai/sd_1.5/Diabolique_Merges_607819.jpeg index 4fb0424..0f9adf2 100644 Binary files a/civitai/sd_1.5/Diabolique_Merges_607819.jpeg and b/civitai/sd_1.5/Diabolique_Merges_607819.jpeg differ diff --git a/civitai/sd_1.5/Diffusion_Brush___Everything___-_SFW___NSFW-_All_Purpose_Checkpoint_-___Nuclear_Diffusion___-___Anime_Hybrid____604987.jpeg b/civitai/sd_1.5/Diffusion_Brush___Everything___-_SFW___NSFW-_All_Purpose_Checkpoint_-___Nuclear_Diffusion___-___Anime_Hybrid____604987.jpeg index 38dc589..0484e6a 100644 Binary files a/civitai/sd_1.5/Diffusion_Brush___Everything___-_SFW___NSFW-_All_Purpose_Checkpoint_-___Nuclear_Diffusion___-___Anime_Hybrid____604987.jpeg and b/civitai/sd_1.5/Diffusion_Brush___Everything___-_SFW___NSFW-_All_Purpose_Checkpoint_-___Nuclear_Diffusion___-___Anime_Hybrid____604987.jpeg differ diff --git a/civitai/sd_1.5/DiscoMix__anime__59434.jpeg b/civitai/sd_1.5/DiscoMix__anime__59434.jpeg index 51fa1f3..cc104f0 100644 Binary files a/civitai/sd_1.5/DiscoMix__anime__59434.jpeg and b/civitai/sd_1.5/DiscoMix__anime__59434.jpeg differ diff --git a/civitai/sd_1.5/DisillusionMix_ๅนป็ญ_225037.jpeg b/civitai/sd_1.5/DisillusionMix_ๅนป็ญ_225037.jpeg index a38debf..4a154fb 100644 Binary files a/civitai/sd_1.5/DisillusionMix_ๅนป็ญ_225037.jpeg and b/civitai/sd_1.5/DisillusionMix_ๅนป็ญ_225037.jpeg differ diff --git a/civitai/sd_1.5/Disney_Pixar_Cartoon_Type_A_780165.jpeg b/civitai/sd_1.5/Disney_Pixar_Cartoon_Type_A_780165.jpeg index a2be506..94043e7 100644 Binary files a/civitai/sd_1.5/Disney_Pixar_Cartoon_Type_A_780165.jpeg and b/civitai/sd_1.5/Disney_Pixar_Cartoon_Type_A_780165.jpeg differ diff --git a/civitai/sd_1.5/Disney_Pixar_Cartoon_type_B_902862.jpeg b/civitai/sd_1.5/Disney_Pixar_Cartoon_type_B_902862.jpeg index c39b7c0..48ed0b7 100644 Binary files a/civitai/sd_1.5/Disney_Pixar_Cartoon_type_B_902862.jpeg and b/civitai/sd_1.5/Disney_Pixar_Cartoon_type_B_902862.jpeg differ diff --git a/civitai/sd_1.5/Disney_Style_v1_1679360.jpeg b/civitai/sd_1.5/Disney_Style_v1_1679360.jpeg index b2735d8..0113f1a 100644 Binary files a/civitai/sd_1.5/Disney_Style_v1_1679360.jpeg and b/civitai/sd_1.5/Disney_Style_v1_1679360.jpeg differ diff --git a/civitai/sd_1.5/DivineAnimeMix_2901084.jpeg b/civitai/sd_1.5/DivineAnimeMix_2901084.jpeg index 58246c3..3d49c2a 100644 Binary files a/civitai/sd_1.5/DivineAnimeMix_2901084.jpeg and b/civitai/sd_1.5/DivineAnimeMix_2901084.jpeg differ diff --git a/civitai/sd_1.5/DivineEleganceMix_9296323.jpeg b/civitai/sd_1.5/DivineEleganceMix_9296323.jpeg index c74e784..12e260b 100644 Binary files a/civitai/sd_1.5/DivineEleganceMix_9296323.jpeg and b/civitai/sd_1.5/DivineEleganceMix_9296323.jpeg differ diff --git a/civitai/sd_1.5/DnD_Map_Generator_205000.jpeg b/civitai/sd_1.5/DnD_Map_Generator_205000.jpeg index ffe0348..974e2ea 100644 Binary files a/civitai/sd_1.5/DnD_Map_Generator_205000.jpeg and b/civitai/sd_1.5/DnD_Map_Generator_205000.jpeg differ diff --git a/civitai/sd_1.5/DollyMix_2595113.jpeg b/civitai/sd_1.5/DollyMix_2595113.jpeg index 6da5d26..e50af0f 100644 Binary files a/civitai/sd_1.5/DollyMix_2595113.jpeg and b/civitai/sd_1.5/DollyMix_2595113.jpeg differ diff --git a/civitai/sd_1.5/DonutHoleMix_็”œ็”œๅœˆ_938709.jpeg b/civitai/sd_1.5/DonutHoleMix_็”œ็”œๅœˆ_938709.jpeg index c07453d..ec85f1d 100644 Binary files a/civitai/sd_1.5/DonutHoleMix_็”œ็”œๅœˆ_938709.jpeg and b/civitai/sd_1.5/DonutHoleMix_็”œ็”œๅœˆ_938709.jpeg differ diff --git a/civitai/sd_1.5/Dorayakimix_619358.jpeg b/civitai/sd_1.5/Dorayakimix_619358.jpeg index 8b36790..864bb1a 100644 Binary files a/civitai/sd_1.5/Dorayakimix_619358.jpeg and b/civitai/sd_1.5/Dorayakimix_619358.jpeg differ diff --git a/civitai/sd_1.5/DosMix_67938.jpeg b/civitai/sd_1.5/DosMix_67938.jpeg index 6d76a56..882e9a0 100644 Binary files a/civitai/sd_1.5/DosMix_67938.jpeg and b/civitai/sd_1.5/DosMix_67938.jpeg differ diff --git a/civitai/sd_1.5/Dream2Reality_1468996.jpeg b/civitai/sd_1.5/Dream2Reality_1468996.jpeg index db130db..de5621c 100644 Binary files a/civitai/sd_1.5/Dream2Reality_1468996.jpeg and b/civitai/sd_1.5/Dream2Reality_1468996.jpeg differ diff --git a/civitai/sd_1.5/DreamLikeSamKuvshinov_14322.jpeg b/civitai/sd_1.5/DreamLikeSamKuvshinov_14322.jpeg index d7f8047..605fafa 100644 Binary files a/civitai/sd_1.5/DreamLikeSamKuvshinov_14322.jpeg and b/civitai/sd_1.5/DreamLikeSamKuvshinov_14322.jpeg differ diff --git a/civitai/sd_1.5/DreamS_Archive_3329759.jpeg b/civitai/sd_1.5/DreamS_Archive_3329759.jpeg index a03dbb8..10825e6 100644 Binary files a/civitai/sd_1.5/DreamS_Archive_3329759.jpeg and b/civitai/sd_1.5/DreamS_Archive_3329759.jpeg differ diff --git a/civitai/sd_1.5/DreamShaper_1777043.jpeg b/civitai/sd_1.5/DreamShaper_1777043.jpeg index 62787ef..b0aa02f 100644 Binary files a/civitai/sd_1.5/DreamShaper_1777043.jpeg and b/civitai/sd_1.5/DreamShaper_1777043.jpeg differ diff --git a/civitai/sd_1.5/Dreamlike_Diffusion_1.0_11480.jpeg b/civitai/sd_1.5/Dreamlike_Diffusion_1.0_11480.jpeg index 202bd38..f7e7790 100644 Binary files a/civitai/sd_1.5/Dreamlike_Diffusion_1.0_11480.jpeg and b/civitai/sd_1.5/Dreamlike_Diffusion_1.0_11480.jpeg differ diff --git a/civitai/sd_1.5/Dreamlike_Photoreal_2.0_27543.jpeg b/civitai/sd_1.5/Dreamlike_Photoreal_2.0_27543.jpeg index 55b2f51..8db44a3 100644 Binary files a/civitai/sd_1.5/Dreamlike_Photoreal_2.0_27543.jpeg and b/civitai/sd_1.5/Dreamlike_Photoreal_2.0_27543.jpeg differ diff --git a/civitai/sd_1.5/Dreamscapes___Dragonfire_-_NEW__-_V2.0__-__SEMI-REALISM_FANTASY_MODEL__1056867.jpeg b/civitai/sd_1.5/Dreamscapes___Dragonfire_-_NEW__-_V2.0__-__SEMI-REALISM_FANTASY_MODEL__1056867.jpeg index ad2e4c7..06f4d88 100644 Binary files a/civitai/sd_1.5/Dreamscapes___Dragonfire_-_NEW__-_V2.0__-__SEMI-REALISM_FANTASY_MODEL__1056867.jpeg and b/civitai/sd_1.5/Dreamscapes___Dragonfire_-_NEW__-_V2.0__-__SEMI-REALISM_FANTASY_MODEL__1056867.jpeg differ diff --git a/civitai/sd_1.5/DucHaiten-DarkNiji_5521891.jpeg b/civitai/sd_1.5/DucHaiten-DarkNiji_5521891.jpeg index 2a4f197..860f417 100644 Binary files a/civitai/sd_1.5/DucHaiten-DarkNiji_5521891.jpeg and b/civitai/sd_1.5/DucHaiten-DarkNiji_5521891.jpeg differ diff --git a/civitai/sd_1.5/DucHaiten-GODofSIMP_5225343.jpeg b/civitai/sd_1.5/DucHaiten-GODofSIMP_5225343.jpeg index e2c07e8..806a93c 100644 Binary files a/civitai/sd_1.5/DucHaiten-GODofSIMP_5225343.jpeg and b/civitai/sd_1.5/DucHaiten-GODofSIMP_5225343.jpeg differ diff --git a/civitai/sd_1.5/DucHaiten-MindBreak_1069923.jpeg b/civitai/sd_1.5/DucHaiten-MindBreak_1069923.jpeg index b3efc35..2268454 100644 Binary files a/civitai/sd_1.5/DucHaiten-MindBreak_1069923.jpeg and b/civitai/sd_1.5/DucHaiten-MindBreak_1069923.jpeg differ diff --git a/civitai/sd_1.5/DucHaiten-StyleLikeMe_508740.jpeg b/civitai/sd_1.5/DucHaiten-StyleLikeMe_508740.jpeg index 145b7d6..00c426e 100644 Binary files a/civitai/sd_1.5/DucHaiten-StyleLikeMe_508740.jpeg and b/civitai/sd_1.5/DucHaiten-StyleLikeMe_508740.jpeg differ diff --git a/civitai/sd_1.5/DucHaitenAIart_564966.jpeg b/civitai/sd_1.5/DucHaitenAIart_564966.jpeg index ecdcddb..d492d1d 100644 Binary files a/civitai/sd_1.5/DucHaitenAIart_564966.jpeg and b/civitai/sd_1.5/DucHaitenAIart_564966.jpeg differ diff --git a/civitai/sd_1.5/DucHaitenDarkside_696700.jpeg b/civitai/sd_1.5/DucHaitenDarkside_696700.jpeg index 5891809..abbca23 100644 Binary files a/civitai/sd_1.5/DucHaitenDarkside_696700.jpeg and b/civitai/sd_1.5/DucHaitenDarkside_696700.jpeg differ diff --git a/civitai/sd_1.5/DucHaitenDreamWorld_349112.jpeg b/civitai/sd_1.5/DucHaitenDreamWorld_349112.jpeg index da963a9..bd960b1 100644 Binary files a/civitai/sd_1.5/DucHaitenDreamWorld_349112.jpeg and b/civitai/sd_1.5/DucHaitenDreamWorld_349112.jpeg differ diff --git a/civitai/sd_1.5/DucHaitenJourney_5829279.jpeg b/civitai/sd_1.5/DucHaitenJourney_5829279.jpeg index b5635a3..673e729 100644 Binary files a/civitai/sd_1.5/DucHaitenJourney_5829279.jpeg and b/civitai/sd_1.5/DucHaitenJourney_5829279.jpeg differ diff --git a/civitai/sd_1.5/DucHaitenNiji_905310.jpeg b/civitai/sd_1.5/DucHaitenNiji_905310.jpeg index f0436bd..ff9974c 100644 Binary files a/civitai/sd_1.5/DucHaitenNiji_905310.jpeg and b/civitai/sd_1.5/DucHaitenNiji_905310.jpeg differ diff --git a/civitai/sd_1.5/DucHaitenSuperCute_487536.jpeg b/civitai/sd_1.5/DucHaitenSuperCute_487536.jpeg index d64f2f5..72f97bb 100644 Binary files a/civitai/sd_1.5/DucHaitenSuperCute_487536.jpeg and b/civitai/sd_1.5/DucHaitenSuperCute_487536.jpeg differ diff --git a/civitai/sd_1.5/DuelAnimeMix_390221.jpeg b/civitai/sd_1.5/DuelAnimeMix_390221.jpeg index 7c1b25b..6e29ba9 100644 Binary files a/civitai/sd_1.5/DuelAnimeMix_390221.jpeg and b/civitai/sd_1.5/DuelAnimeMix_390221.jpeg differ diff --git a/civitai/sd_1.5/DuelComicMix_369165.jpeg b/civitai/sd_1.5/DuelComicMix_369165.jpeg index 851e554..4abbdc6 100644 Binary files a/civitai/sd_1.5/DuelComicMix_369165.jpeg and b/civitai/sd_1.5/DuelComicMix_369165.jpeg differ diff --git a/civitai/sd_1.5/Dungeons_N_Waifu_s_-_v2.2_-__2.5D_FANTASY_MODEL__293422.jpeg b/civitai/sd_1.5/Dungeons_N_Waifu_s_-_v2.2_-__2.5D_FANTASY_MODEL__293422.jpeg index 970d886..69c899e 100644 Binary files a/civitai/sd_1.5/Dungeons_N_Waifu_s_-_v2.2_-__2.5D_FANTASY_MODEL__293422.jpeg and b/civitai/sd_1.5/Dungeons_N_Waifu_s_-_v2.2_-__2.5D_FANTASY_MODEL__293422.jpeg differ diff --git a/civitai/sd_1.5/Dungeons_and_Diffusion_v3_82019.jpeg b/civitai/sd_1.5/Dungeons_and_Diffusion_v3_82019.jpeg index 4623623..bbed5ee 100644 Binary files a/civitai/sd_1.5/Dungeons_and_Diffusion_v3_82019.jpeg and b/civitai/sd_1.5/Dungeons_and_Diffusion_v3_82019.jpeg differ diff --git a/civitai/sd_1.5/EDG_Nendo_2085173.jpeg b/civitai/sd_1.5/EDG_Nendo_2085173.jpeg index cacb916..e0c2a87 100644 Binary files a/civitai/sd_1.5/EDG_Nendo_2085173.jpeg and b/civitai/sd_1.5/EDG_Nendo_2085173.jpeg differ diff --git a/civitai/sd_1.5/Edge_Of_Realism_559443.jpeg b/civitai/sd_1.5/Edge_Of_Realism_559443.jpeg index 37196bb..1ed0b4e 100644 Binary files a/civitai/sd_1.5/Edge_Of_Realism_559443.jpeg and b/civitai/sd_1.5/Edge_Of_Realism_559443.jpeg differ diff --git a/civitai/sd_1.5/Elegance_2018601.jpeg b/civitai/sd_1.5/Elegance_2018601.jpeg index 308546f..2898db8 100644 Binary files a/civitai/sd_1.5/Elegance_2018601.jpeg and b/civitai/sd_1.5/Elegance_2018601.jpeg differ diff --git a/civitai/sd_1.5/Elegant_Entropy_3227708.jpeg b/civitai/sd_1.5/Elegant_Entropy_3227708.jpeg index c2104a8..84f7aa9 100644 Binary files a/civitai/sd_1.5/Elegant_Entropy_3227708.jpeg and b/civitai/sd_1.5/Elegant_Entropy_3227708.jpeg differ diff --git a/civitai/sd_1.5/Elldreth_s_StolenDreams_Mix_66313.jpeg b/civitai/sd_1.5/Elldreth_s_StolenDreams_Mix_66313.jpeg index 0f7e5b3..4f349d7 100644 Binary files a/civitai/sd_1.5/Elldreth_s_StolenDreams_Mix_66313.jpeg and b/civitai/sd_1.5/Elldreth_s_StolenDreams_Mix_66313.jpeg differ diff --git a/civitai/sd_1.5/EnvyMix_977385.jpeg b/civitai/sd_1.5/EnvyMix_977385.jpeg index 0404500..d8c53fd 100644 Binary files a/civitai/sd_1.5/EnvyMix_977385.jpeg and b/civitai/sd_1.5/EnvyMix_977385.jpeg differ diff --git a/civitai/sd_1.5/Epic_Diffusion_46247.jpeg b/civitai/sd_1.5/Epic_Diffusion_46247.jpeg index 982870b..58b081a 100644 Binary files a/civitai/sd_1.5/Epic_Diffusion_46247.jpeg and b/civitai/sd_1.5/Epic_Diffusion_46247.jpeg differ diff --git a/civitai/sd_1.5/Eris_288376.jpeg b/civitai/sd_1.5/Eris_288376.jpeg index 43e375a..a34c8f0 100644 Binary files a/civitai/sd_1.5/Eris_288376.jpeg and b/civitai/sd_1.5/Eris_288376.jpeg differ diff --git a/civitai/sd_1.5/Ether_Blu_Mix_7139554.jpeg b/civitai/sd_1.5/Ether_Blu_Mix_7139554.jpeg index 6fb6475..17aee74 100644 Binary files a/civitai/sd_1.5/Ether_Blu_Mix_7139554.jpeg and b/civitai/sd_1.5/Ether_Blu_Mix_7139554.jpeg differ diff --git a/civitai/sd_1.5/Ether_Moonlight_Mix_9080836.jpeg b/civitai/sd_1.5/Ether_Moonlight_Mix_9080836.jpeg index 1a8ded8..3971d45 100644 Binary files a/civitai/sd_1.5/Ether_Moonlight_Mix_9080836.jpeg and b/civitai/sd_1.5/Ether_Moonlight_Mix_9080836.jpeg differ diff --git a/civitai/sd_1.5/Ether_Real_Mix_14238628.jpeg b/civitai/sd_1.5/Ether_Real_Mix_14238628.jpeg index f244901..6ee20d7 100644 Binary files a/civitai/sd_1.5/Ether_Real_Mix_14238628.jpeg and b/civitai/sd_1.5/Ether_Real_Mix_14238628.jpeg differ diff --git a/civitai/sd_1.5/EthernalDope_2986588.jpeg b/civitai/sd_1.5/EthernalDope_2986588.jpeg index 4abb349..6ced023 100644 Binary files a/civitai/sd_1.5/EthernalDope_2986588.jpeg and b/civitai/sd_1.5/EthernalDope_2986588.jpeg differ diff --git a/civitai/sd_1.5/Everlasting_756790.jpeg b/civitai/sd_1.5/Everlasting_756790.jpeg index 7b0d324..bcde10a 100644 Binary files a/civitai/sd_1.5/Everlasting_756790.jpeg and b/civitai/sd_1.5/Everlasting_756790.jpeg differ diff --git a/civitai/sd_1.5/ExpMix_Line_802337.jpeg b/civitai/sd_1.5/ExpMix_Line_802337.jpeg index d9f596f..d1fbe2a 100644 Binary files a/civitai/sd_1.5/ExpMix_Line_802337.jpeg and b/civitai/sd_1.5/ExpMix_Line_802337.jpeg differ diff --git a/civitai/sd_1.5/Experience_1944538.jpeg b/civitai/sd_1.5/Experience_1944538.jpeg index ed5dcfd..471756a 100644 Binary files a/civitai/sd_1.5/Experience_1944538.jpeg and b/civitai/sd_1.5/Experience_1944538.jpeg differ diff --git a/civitai/sd_1.5/Exquisite_detailsๆž่‡ดๅŽๅฝฉ_2094069.jpeg b/civitai/sd_1.5/Exquisite_detailsๆž่‡ดๅŽๅฝฉ_2094069.jpeg index eb24f7a..0b11f05 100644 Binary files a/civitai/sd_1.5/Exquisite_detailsๆž่‡ดๅŽๅฝฉ_2094069.jpeg and b/civitai/sd_1.5/Exquisite_detailsๆž่‡ดๅŽๅฝฉ_2094069.jpeg differ diff --git a/civitai/sd_1.5/FaeTastic_1339903.jpeg b/civitai/sd_1.5/FaeTastic_1339903.jpeg index f3313d3..2a51754 100644 Binary files a/civitai/sd_1.5/FaeTastic_1339903.jpeg and b/civitai/sd_1.5/FaeTastic_1339903.jpeg differ diff --git a/civitai/sd_1.5/Falkons__Anime_and_Hentai__1060567.jpeg b/civitai/sd_1.5/Falkons__Anime_and_Hentai__1060567.jpeg index 77a4650..2c37749 100644 Binary files a/civitai/sd_1.5/Falkons__Anime_and_Hentai__1060567.jpeg and b/civitai/sd_1.5/Falkons__Anime_and_Hentai__1060567.jpeg differ diff --git a/civitai/sd_1.5/Famous_People_7104388.jpeg b/civitai/sd_1.5/Famous_People_7104388.jpeg index c8bb918..388c860 100644 Binary files a/civitai/sd_1.5/Famous_People_7104388.jpeg and b/civitai/sd_1.5/Famous_People_7104388.jpeg differ diff --git a/civitai/sd_1.5/Fantassified_Icons_830612.jpeg b/civitai/sd_1.5/Fantassified_Icons_830612.jpeg index c2efd4d..6499b80 100644 Binary files a/civitai/sd_1.5/Fantassified_Icons_830612.jpeg and b/civitai/sd_1.5/Fantassified_Icons_830612.jpeg differ diff --git a/civitai/sd_1.5/FantasticAnimeChix-HR_790372.jpeg b/civitai/sd_1.5/FantasticAnimeChix-HR_790372.jpeg index d61e3e8..58aa4f0 100644 Binary files a/civitai/sd_1.5/FantasticAnimeChix-HR_790372.jpeg and b/civitai/sd_1.5/FantasticAnimeChix-HR_790372.jpeg differ diff --git a/civitai/sd_1.5/FantasticChix-HR_751242.jpeg b/civitai/sd_1.5/FantasticChix-HR_751242.jpeg index b1b6694..74d7f27 100644 Binary files a/civitai/sd_1.5/FantasticChix-HR_751242.jpeg and b/civitai/sd_1.5/FantasticChix-HR_751242.jpeg differ diff --git a/civitai/sd_1.5/Fantasy_Background_57969.jpeg b/civitai/sd_1.5/Fantasy_Background_57969.jpeg index 0f56f29..6f80a2a 100644 Binary files a/civitai/sd_1.5/Fantasy_Background_57969.jpeg and b/civitai/sd_1.5/Fantasy_Background_57969.jpeg differ diff --git a/civitai/sd_1.5/Fantasy_World_125986.jpeg b/civitai/sd_1.5/Fantasy_World_125986.jpeg index fb15a6d..89e9f32 100644 Binary files a/civitai/sd_1.5/Fantasy_World_125986.jpeg and b/civitai/sd_1.5/Fantasy_World_125986.jpeg differ diff --git a/civitai/sd_1.5/Featureless_Mix_5027444.jpeg b/civitai/sd_1.5/Featureless_Mix_5027444.jpeg index 50bbc76..934fe7e 100644 Binary files a/civitai/sd_1.5/Featureless_Mix_5027444.jpeg and b/civitai/sd_1.5/Featureless_Mix_5027444.jpeg differ diff --git a/civitai/sd_1.5/FeelYou_1848592.jpeg b/civitai/sd_1.5/FeelYou_1848592.jpeg index 0fa04eb..573aa5b 100644 Binary files a/civitai/sd_1.5/FeelYou_1848592.jpeg and b/civitai/sd_1.5/FeelYou_1848592.jpeg differ diff --git a/civitai/sd_1.5/FeiWuๅบŸ็‰ฉ_1033052.jpeg b/civitai/sd_1.5/FeiWuๅบŸ็‰ฉ_1033052.jpeg index d475f06..905a501 100644 Binary files a/civitai/sd_1.5/FeiWuๅบŸ็‰ฉ_1033052.jpeg and b/civitai/sd_1.5/FeiWuๅบŸ็‰ฉ_1033052.jpeg differ diff --git a/civitai/sd_1.5/FiaMix_Reboot_7049331.jpeg b/civitai/sd_1.5/FiaMix_Reboot_7049331.jpeg index 22f81fe..4bfddd1 100644 Binary files a/civitai/sd_1.5/FiaMix_Reboot_7049331.jpeg and b/civitai/sd_1.5/FiaMix_Reboot_7049331.jpeg differ diff --git a/civitai/sd_1.5/FiaMix_Reboot_H__NSFW__5484161.jpeg b/civitai/sd_1.5/FiaMix_Reboot_H__NSFW__5484161.jpeg index 4f1566f..bbfc6a5 100644 Binary files a/civitai/sd_1.5/FiaMix_Reboot_H__NSFW__5484161.jpeg and b/civitai/sd_1.5/FiaMix_Reboot_H__NSFW__5484161.jpeg differ diff --git a/civitai/sd_1.5/Find_ForgetYou_3861033.jpeg b/civitai/sd_1.5/Find_ForgetYou_3861033.jpeg index bd89d5e..12ebc5f 100644 Binary files a/civitai/sd_1.5/Find_ForgetYou_3861033.jpeg and b/civitai/sd_1.5/Find_ForgetYou_3861033.jpeg differ diff --git a/civitai/sd_1.5/Flat-2D_Animerge_4677852.jpeg b/civitai/sd_1.5/Flat-2D_Animerge_4677852.jpeg index 4afc2d5..5747e39 100644 Binary files a/civitai/sd_1.5/Flat-2D_Animerge_4677852.jpeg and b/civitai/sd_1.5/Flat-2D_Animerge_4677852.jpeg differ diff --git a/civitai/sd_1.5/Fleeting-Radiance_Mix_ๆตๅ…‰_1097093.jpeg b/civitai/sd_1.5/Fleeting-Radiance_Mix_ๆตๅ…‰_1097093.jpeg index cef3d51..6e306bb 100644 Binary files a/civitai/sd_1.5/Fleeting-Radiance_Mix_ๆตๅ…‰_1097093.jpeg and b/civitai/sd_1.5/Fleeting-Radiance_Mix_ๆตๅ…‰_1097093.jpeg differ diff --git a/civitai/sd_1.5/ForgeSaga_Landscape_1035228.jpeg b/civitai/sd_1.5/ForgeSaga_Landscape_1035228.jpeg index 88f71f5..655f11b 100644 Binary files a/civitai/sd_1.5/ForgeSaga_Landscape_1035228.jpeg and b/civitai/sd_1.5/ForgeSaga_Landscape_1035228.jpeg differ diff --git a/civitai/sd_1.5/ForgottenMix_-_Cartoon_2.5D_879060.jpeg b/civitai/sd_1.5/ForgottenMix_-_Cartoon_2.5D_879060.jpeg index dd67f5f..3b09622 100644 Binary files a/civitai/sd_1.5/ForgottenMix_-_Cartoon_2.5D_879060.jpeg and b/civitai/sd_1.5/ForgottenMix_-_Cartoon_2.5D_879060.jpeg differ diff --git a/civitai/sd_1.5/ForgottenMix_674028.jpeg b/civitai/sd_1.5/ForgottenMix_674028.jpeg index 0662dbd..54cdabd 100644 Binary files a/civitai/sd_1.5/ForgottenMix_674028.jpeg and b/civitai/sd_1.5/ForgottenMix_674028.jpeg differ diff --git a/civitai/sd_1.5/Fortyfour_oilpainting_V1_1205699.jpeg b/civitai/sd_1.5/Fortyfour_oilpainting_V1_1205699.jpeg index 1243c48..c590555 100644 Binary files a/civitai/sd_1.5/Fortyfour_oilpainting_V1_1205699.jpeg and b/civitai/sd_1.5/Fortyfour_oilpainting_V1_1205699.jpeg differ diff --git a/civitai/sd_1.5/Fruit_Fusion_238811.jpeg b/civitai/sd_1.5/Fruit_Fusion_238811.jpeg index 7a8b552..4d3d48f 100644 Binary files a/civitai/sd_1.5/Fruit_Fusion_238811.jpeg and b/civitai/sd_1.5/Fruit_Fusion_238811.jpeg differ diff --git a/civitai/sd_1.5/FurWorld___Furry-Yiff-NSFW_SDXL___1.5_6684443.jpeg b/civitai/sd_1.5/FurWorld___Furry-Yiff-NSFW_SDXL___1.5_6684443.jpeg index 20c2553..aaab8ab 100644 Binary files a/civitai/sd_1.5/FurWorld___Furry-Yiff-NSFW_SDXL___1.5_6684443.jpeg and b/civitai/sd_1.5/FurWorld___Furry-Yiff-NSFW_SDXL___1.5_6684443.jpeg differ diff --git a/civitai/sd_1.5/Furnace_47_333149.jpeg b/civitai/sd_1.5/Furnace_47_333149.jpeg index 7b06058..002ed22 100644 Binary files a/civitai/sd_1.5/Furnace_47_333149.jpeg and b/civitai/sd_1.5/Furnace_47_333149.jpeg differ diff --git a/civitai/sd_1.5/FurryToonMix_1292135.jpeg b/civitai/sd_1.5/FurryToonMix_1292135.jpeg index 60b86a1..e6fca65 100644 Binary files a/civitai/sd_1.5/FurryToonMix_1292135.jpeg and b/civitai/sd_1.5/FurryToonMix_1292135.jpeg differ diff --git a/civitai/sd_1.5/Furryrock_3234179.jpeg b/civitai/sd_1.5/Furryrock_3234179.jpeg index c98b319..e5b34e2 100644 Binary files a/civitai/sd_1.5/Furryrock_3234179.jpeg and b/civitai/sd_1.5/Furryrock_3234179.jpeg differ diff --git a/civitai/sd_1.5/FuwaFuwaMix_937384.jpeg b/civitai/sd_1.5/FuwaFuwaMix_937384.jpeg index 9384a63..2dce31d 100644 Binary files a/civitai/sd_1.5/FuwaFuwaMix_937384.jpeg and b/civitai/sd_1.5/FuwaFuwaMix_937384.jpeg differ diff --git a/civitai/sd_1.5/GalaxyTimeMachine_s_GTM_UltimateBlend_v3_341031.jpeg b/civitai/sd_1.5/GalaxyTimeMachine_s_GTM_UltimateBlend_v3_341031.jpeg index 0d291fa..06194b7 100644 Binary files a/civitai/sd_1.5/GalaxyTimeMachine_s_GTM_UltimateBlend_v3_341031.jpeg and b/civitai/sd_1.5/GalaxyTimeMachine_s_GTM_UltimateBlend_v3_341031.jpeg differ diff --git a/civitai/sd_1.5/Ghibli_style_mix_1015633.jpeg b/civitai/sd_1.5/Ghibli_style_mix_1015633.jpeg index 9e1ee07..bb4871c 100644 Binary files a/civitai/sd_1.5/Ghibli_style_mix_1015633.jpeg and b/civitai/sd_1.5/Ghibli_style_mix_1015633.jpeg differ diff --git a/civitai/sd_1.5/GhostMix_862136.jpeg b/civitai/sd_1.5/GhostMix_862136.jpeg index 3d2bd09..c5659fd 100644 Binary files a/civitai/sd_1.5/GhostMix_862136.jpeg and b/civitai/sd_1.5/GhostMix_862136.jpeg differ diff --git a/civitai/sd_1.5/Glow_2.5D_744821.jpeg b/civitai/sd_1.5/Glow_2.5D_744821.jpeg index 47f1d84..6c19665 100644 Binary files a/civitai/sd_1.5/Glow_2.5D_744821.jpeg and b/civitai/sd_1.5/Glow_2.5D_744821.jpeg differ diff --git a/civitai/sd_1.5/Good_Asian_Girl_Face_174700.jpeg b/civitai/sd_1.5/Good_Asian_Girl_Face_174700.jpeg index 9b8fdec..488eaa0 100644 Binary files a/civitai/sd_1.5/Good_Asian_Girl_Face_174700.jpeg and b/civitai/sd_1.5/Good_Asian_Girl_Face_174700.jpeg differ diff --git a/civitai/sd_1.5/Goofball_Mix_5162941.jpeg b/civitai/sd_1.5/Goofball_Mix_5162941.jpeg index eb69a27..39d9770 100644 Binary files a/civitai/sd_1.5/Goofball_Mix_5162941.jpeg and b/civitai/sd_1.5/Goofball_Mix_5162941.jpeg differ diff --git a/civitai/sd_1.5/Guilingao_131415.jpeg b/civitai/sd_1.5/Guilingao_131415.jpeg index 3b91bf8..a81a789 100644 Binary files a/civitai/sd_1.5/Guilingao_131415.jpeg and b/civitai/sd_1.5/Guilingao_131415.jpeg differ diff --git a/civitai/sd_1.5/HARD_2180791.jpeg b/civitai/sd_1.5/HARD_2180791.jpeg index b43c794..255f125 100644 Binary files a/civitai/sd_1.5/HARD_2180791.jpeg and b/civitai/sd_1.5/HARD_2180791.jpeg differ diff --git a/civitai/sd_1.5/HASDX_27058.jpeg b/civitai/sd_1.5/HASDX_27058.jpeg index b173f6c..0361d66 100644 Binary files a/civitai/sd_1.5/HASDX_27058.jpeg and b/civitai/sd_1.5/HASDX_27058.jpeg differ diff --git a/civitai/sd_1.5/HIJKLMix_6671864.jpeg b/civitai/sd_1.5/HIJKLMix_6671864.jpeg index fe5b471..dde9e85 100644 Binary files a/civitai/sd_1.5/HIJKLMix_6671864.jpeg and b/civitai/sd_1.5/HIJKLMix_6671864.jpeg differ diff --git a/civitai/sd_1.5/HIJKLMix_Anime_7103051.jpeg b/civitai/sd_1.5/HIJKLMix_Anime_7103051.jpeg index bb924ad..1d5bb64 100644 Binary files a/civitai/sd_1.5/HIJKLMix_Anime_7103051.jpeg and b/civitai/sd_1.5/HIJKLMix_Anime_7103051.jpeg differ diff --git a/civitai/sd_1.5/HRA_hyperrealism_art_2026093.jpeg b/civitai/sd_1.5/HRA_hyperrealism_art_2026093.jpeg index 73ea547..f0dff89 100644 Binary files a/civitai/sd_1.5/HRA_hyperrealism_art_2026093.jpeg and b/civitai/sd_1.5/HRA_hyperrealism_art_2026093.jpeg differ diff --git a/civitai/sd_1.5/Handpainted_RPG_Icons__30907.jpeg b/civitai/sd_1.5/Handpainted_RPG_Icons__30907.jpeg index 8882db4..a1bfa07 100644 Binary files a/civitai/sd_1.5/Handpainted_RPG_Icons__30907.jpeg and b/civitai/sd_1.5/Handpainted_RPG_Icons__30907.jpeg differ diff --git a/civitai/sd_1.5/HeavenOrangeMix_170201.jpeg b/civitai/sd_1.5/HeavenOrangeMix_170201.jpeg index dc48a26..3f957e8 100644 Binary files a/civitai/sd_1.5/HeavenOrangeMix_170201.jpeg and b/civitai/sd_1.5/HeavenOrangeMix_170201.jpeg differ diff --git a/civitai/sd_1.5/HighRiseMix_102627.jpeg b/civitai/sd_1.5/HighRiseMix_102627.jpeg index 3a13d5f..15edf5d 100644 Binary files a/civitai/sd_1.5/HighRiseMix_102627.jpeg and b/civitai/sd_1.5/HighRiseMix_102627.jpeg differ diff --git a/civitai/sd_1.5/High_quality_CGMIX_293341.jpeg b/civitai/sd_1.5/High_quality_CGMIX_293341.jpeg index 1714ad7..c0324bb 100644 Binary files a/civitai/sd_1.5/High_quality_CGMIX_293341.jpeg and b/civitai/sd_1.5/High_quality_CGMIX_293341.jpeg differ diff --git a/civitai/sd_1.5/HimawariMix_7254229.jpeg b/civitai/sd_1.5/HimawariMix_7254229.jpeg index 5f8a3ab..b55fa55 100644 Binary files a/civitai/sd_1.5/HimawariMix_7254229.jpeg and b/civitai/sd_1.5/HimawariMix_7254229.jpeg differ diff --git a/civitai/sd_1.5/HoloKuki_220224.jpeg b/civitai/sd_1.5/HoloKuki_220224.jpeg index 340de54..9ed50bf 100644 Binary files a/civitai/sd_1.5/HoloKuki_220224.jpeg and b/civitai/sd_1.5/HoloKuki_220224.jpeg differ diff --git a/civitai/sd_1.5/HomoFidelis_34680047.jpeg b/civitai/sd_1.5/HomoFidelis_34680047.jpeg index 0a8e130..6347956 100644 Binary files a/civitai/sd_1.5/HomoFidelis_34680047.jpeg and b/civitai/sd_1.5/HomoFidelis_34680047.jpeg differ diff --git a/civitai/sd_1.5/HomoVeritas_35785098.jpeg b/civitai/sd_1.5/HomoVeritas_35785098.jpeg index e7ba762..845ed91 100644 Binary files a/civitai/sd_1.5/HomoVeritas_35785098.jpeg and b/civitai/sd_1.5/HomoVeritas_35785098.jpeg differ diff --git a/civitai/sd_1.5/Honey_2D_4352272.jpeg b/civitai/sd_1.5/Honey_2D_4352272.jpeg index 78dda6a..017acde 100644 Binary files a/civitai/sd_1.5/Honey_2D_4352272.jpeg and b/civitai/sd_1.5/Honey_2D_4352272.jpeg differ diff --git a/civitai/sd_1.5/HotaruBreed_AnimeMix_7574553.jpeg b/civitai/sd_1.5/HotaruBreed_AnimeMix_7574553.jpeg index 60cc925..6e58ed8 100644 Binary files a/civitai/sd_1.5/HotaruBreed_AnimeMix_7574553.jpeg and b/civitai/sd_1.5/HotaruBreed_AnimeMix_7574553.jpeg differ diff --git a/civitai/sd_1.5/ICBINP_-__I_Can_t_Believe_It_s_Not_Photography__21094612.jpeg b/civitai/sd_1.5/ICBINP_-__I_Can_t_Believe_It_s_Not_Photography__21094612.jpeg index f44ec13..bdfe14b 100644 Binary files a/civitai/sd_1.5/ICBINP_-__I_Can_t_Believe_It_s_Not_Photography__21094612.jpeg and b/civitai/sd_1.5/ICBINP_-__I_Can_t_Believe_It_s_Not_Photography__21094612.jpeg differ diff --git a/civitai/sd_1.5/IP_DESIGN___3Dๅฏ็ˆฑๅŒ–_4654467.jpeg b/civitai/sd_1.5/IP_DESIGN___3Dๅฏ็ˆฑๅŒ–_4654467.jpeg index 7b05e10..8637546 100644 Binary files a/civitai/sd_1.5/IP_DESIGN___3Dๅฏ็ˆฑๅŒ–_4654467.jpeg and b/civitai/sd_1.5/IP_DESIGN___3Dๅฏ็ˆฑๅŒ–_4654467.jpeg differ diff --git a/civitai/sd_1.5/Impressionism__Oil_painting__836396.jpeg b/civitai/sd_1.5/Impressionism__Oil_painting__836396.jpeg index 7bb26d3..ee324bd 100644 Binary files a/civitai/sd_1.5/Impressionism__Oil_painting__836396.jpeg and b/civitai/sd_1.5/Impressionism__Oil_painting__836396.jpeg differ diff --git a/civitai/sd_1.5/Incredible_World_3059729.jpeg b/civitai/sd_1.5/Incredible_World_3059729.jpeg index 8f4639d..16652e9 100644 Binary files a/civitai/sd_1.5/Incredible_World_3059729.jpeg and b/civitai/sd_1.5/Incredible_World_3059729.jpeg differ diff --git a/civitai/sd_1.5/Incursio_s_Meme_Diffusion_6385360.jpeg b/civitai/sd_1.5/Incursio_s_Meme_Diffusion_6385360.jpeg index ac15683..2f374e8 100644 Binary files a/civitai/sd_1.5/Incursio_s_Meme_Diffusion_6385360.jpeg and b/civitai/sd_1.5/Incursio_s_Meme_Diffusion_6385360.jpeg differ diff --git a/civitai/sd_1.5/Indigo_Furry_mix_11327553.jpeg b/civitai/sd_1.5/Indigo_Furry_mix_11327553.jpeg index 043dfc1..c5eee0d 100644 Binary files a/civitai/sd_1.5/Indigo_Furry_mix_11327553.jpeg and b/civitai/sd_1.5/Indigo_Furry_mix_11327553.jpeg differ diff --git a/civitai/sd_1.5/Inkpunk_Diffusion_9243.jpeg b/civitai/sd_1.5/Inkpunk_Diffusion_9243.jpeg index 1ad4124..9576baf 100644 Binary files a/civitai/sd_1.5/Inkpunk_Diffusion_9243.jpeg and b/civitai/sd_1.5/Inkpunk_Diffusion_9243.jpeg differ diff --git a/civitai/sd_1.5/InteriorDesignSuperMix_1098340.jpeg b/civitai/sd_1.5/InteriorDesignSuperMix_1098340.jpeg index eba547e..2f75d5a 100644 Binary files a/civitai/sd_1.5/InteriorDesignSuperMix_1098340.jpeg and b/civitai/sd_1.5/InteriorDesignSuperMix_1098340.jpeg differ diff --git a/civitai/sd_1.5/IrisMix_ๅฏ็ˆฑ็š„ๆจก็‰น__6205321.jpeg b/civitai/sd_1.5/IrisMix_ๅฏ็ˆฑ็š„ๆจก็‰น__6205321.jpeg index 7796b75..167695d 100644 Binary files a/civitai/sd_1.5/IrisMix_ๅฏ็ˆฑ็š„ๆจก็‰น__6205321.jpeg and b/civitai/sd_1.5/IrisMix_ๅฏ็ˆฑ็š„ๆจก็‰น__6205321.jpeg differ diff --git a/civitai/sd_1.5/Ivory_782390.jpeg b/civitai/sd_1.5/Ivory_782390.jpeg index f561f48..44461cc 100644 Binary files a/civitai/sd_1.5/Ivory_782390.jpeg and b/civitai/sd_1.5/Ivory_782390.jpeg differ diff --git a/civitai/sd_1.5/JIM_EIDOMODE_122765.jpeg b/civitai/sd_1.5/JIM_EIDOMODE_122765.jpeg index 2c50a20..1970655 100644 Binary files a/civitai/sd_1.5/JIM_EIDOMODE_122765.jpeg and b/civitai/sd_1.5/JIM_EIDOMODE_122765.jpeg differ diff --git a/civitai/sd_1.5/JIM_JORCRAF_142280.jpeg b/civitai/sd_1.5/JIM_JORCRAF_142280.jpeg index 832f97e..ffb2456 100644 Binary files a/civitai/sd_1.5/JIM_JORCRAF_142280.jpeg and b/civitai/sd_1.5/JIM_JORCRAF_142280.jpeg differ diff --git a/civitai/sd_1.5/Japanese_Style_Realistic__JSR__1217809.jpeg b/civitai/sd_1.5/Japanese_Style_Realistic__JSR__1217809.jpeg index 3851537..1628409 100644 Binary files a/civitai/sd_1.5/Japanese_Style_Realistic__JSR__1217809.jpeg and b/civitai/sd_1.5/Japanese_Style_Realistic__JSR__1217809.jpeg differ diff --git a/civitai/sd_1.5/JasminiqueMix_1415910.jpeg b/civitai/sd_1.5/JasminiqueMix_1415910.jpeg index 4b321b9..b13fc35 100644 Binary files a/civitai/sd_1.5/JasminiqueMix_1415910.jpeg and b/civitai/sd_1.5/JasminiqueMix_1415910.jpeg differ diff --git a/civitai/sd_1.5/Jucy666_15449811.jpeg b/civitai/sd_1.5/Jucy666_15449811.jpeg index efb8c58..52eb8b9 100644 Binary files a/civitai/sd_1.5/Jucy666_15449811.jpeg and b/civitai/sd_1.5/Jucy666_15449811.jpeg differ diff --git a/civitai/sd_1.5/Juggernaut_4863187.jpeg b/civitai/sd_1.5/Juggernaut_4863187.jpeg index 53efd99..211d75b 100644 Binary files a/civitai/sd_1.5/Juggernaut_4863187.jpeg and b/civitai/sd_1.5/Juggernaut_4863187.jpeg differ diff --git a/civitai/sd_1.5/K-main_20608624.jpeg b/civitai/sd_1.5/K-main_20608624.jpeg index 9caf620..c8843d5 100644 Binary files a/civitai/sd_1.5/K-main_20608624.jpeg and b/civitai/sd_1.5/K-main_20608624.jpeg differ diff --git a/civitai/sd_1.5/Kakarot_2.5D_ChiChi_10373989.jpeg b/civitai/sd_1.5/Kakarot_2.5D_ChiChi_10373989.jpeg index 2d48636..943e076 100644 Binary files a/civitai/sd_1.5/Kakarot_2.5D_ChiChi_10373989.jpeg and b/civitai/sd_1.5/Kakarot_2.5D_ChiChi_10373989.jpeg differ diff --git a/civitai/sd_1.5/Kakarot_2.5D_Cozy_3472041.jpeg b/civitai/sd_1.5/Kakarot_2.5D_Cozy_3472041.jpeg index 1593b87..0c3a324 100644 Binary files a/civitai/sd_1.5/Kakarot_2.5D_Cozy_3472041.jpeg and b/civitai/sd_1.5/Kakarot_2.5D_Cozy_3472041.jpeg differ diff --git a/civitai/sd_1.5/Kakarot_2.8D_10371052.jpeg b/civitai/sd_1.5/Kakarot_2.8D_10371052.jpeg index 9edb216..6bbd174 100644 Binary files a/civitai/sd_1.5/Kakarot_2.8D_10371052.jpeg and b/civitai/sd_1.5/Kakarot_2.8D_10371052.jpeg differ diff --git a/civitai/sd_1.5/Kakigori_3065185.jpeg b/civitai/sd_1.5/Kakigori_3065185.jpeg index 260101d..9c2e471 100644 Binary files a/civitai/sd_1.5/Kakigori_3065185.jpeg and b/civitai/sd_1.5/Kakigori_3065185.jpeg differ diff --git a/civitai/sd_1.5/KawaiiMix__Niji_V5_Cute__565897.jpeg b/civitai/sd_1.5/KawaiiMix__Niji_V5_Cute__565897.jpeg index e7c1f11..cf54970 100644 Binary files a/civitai/sd_1.5/KawaiiMix__Niji_V5_Cute__565897.jpeg and b/civitai/sd_1.5/KawaiiMix__Niji_V5_Cute__565897.jpeg differ diff --git a/civitai/sd_1.5/Kawaii_Realistic_Anime_Mix_29214718.jpeg b/civitai/sd_1.5/Kawaii_Realistic_Anime_Mix_29214718.jpeg index 9e24eb8..91ffcd4 100644 Binary files a/civitai/sd_1.5/Kawaii_Realistic_Anime_Mix_29214718.jpeg and b/civitai/sd_1.5/Kawaii_Realistic_Anime_Mix_29214718.jpeg differ diff --git a/civitai/sd_1.5/Kawaii_Realistic_Asian_Mix_6398234.jpeg b/civitai/sd_1.5/Kawaii_Realistic_Asian_Mix_6398234.jpeg index 85790fb..e7dd3e4 100644 Binary files a/civitai/sd_1.5/Kawaii_Realistic_Asian_Mix_6398234.jpeg and b/civitai/sd_1.5/Kawaii_Realistic_Asian_Mix_6398234.jpeg differ diff --git a/civitai/sd_1.5/Kawaii_Realistic_European_Mix_18815147.jpeg b/civitai/sd_1.5/Kawaii_Realistic_European_Mix_18815147.jpeg index 5aea2c8..c149b92 100644 Binary files a/civitai/sd_1.5/Kawaii_Realistic_European_Mix_18815147.jpeg and b/civitai/sd_1.5/Kawaii_Realistic_European_Mix_18815147.jpeg differ diff --git a/civitai/sd_1.5/KayWaii_5480730.jpeg b/civitai/sd_1.5/KayWaii_5480730.jpeg index 0d37243..de54fcf 100644 Binary files a/civitai/sd_1.5/KayWaii_5480730.jpeg and b/civitai/sd_1.5/KayWaii_5480730.jpeg differ diff --git a/civitai/sd_1.5/Kenshi_261941.jpeg b/civitai/sd_1.5/Kenshi_261941.jpeg index d35ddb9..68a820f 100644 Binary files a/civitai/sd_1.5/Kenshi_261941.jpeg and b/civitai/sd_1.5/Kenshi_261941.jpeg differ diff --git a/civitai/sd_1.5/Kizuki_-_Anime___Hentai_Checkpoint_10971806.jpeg b/civitai/sd_1.5/Kizuki_-_Anime___Hentai_Checkpoint_10971806.jpeg index ecf4c4a..bf8158a 100644 Binary files a/civitai/sd_1.5/Kizuki_-_Anime___Hentai_Checkpoint_10971806.jpeg and b/civitai/sd_1.5/Kizuki_-_Anime___Hentai_Checkpoint_10971806.jpeg differ diff --git a/civitai/sd_1.5/Koji_1054503.jpeg b/civitai/sd_1.5/Koji_1054503.jpeg index e89daa4..3d1b588 100644 Binary files a/civitai/sd_1.5/Koji_1054503.jpeg and b/civitai/sd_1.5/Koji_1054503.jpeg differ diff --git a/civitai/sd_1.5/KuromiMix_281063.jpeg b/civitai/sd_1.5/KuromiMix_281063.jpeg index cc102c6..7ee7400 100644 Binary files a/civitai/sd_1.5/KuromiMix_281063.jpeg and b/civitai/sd_1.5/KuromiMix_281063.jpeg differ diff --git a/civitai/sd_1.5/Kuroneko_animemix_v10_836225.jpeg b/civitai/sd_1.5/Kuroneko_animemix_v10_836225.jpeg index 3f4492f..f03e59b 100644 Binary files a/civitai/sd_1.5/Kuroneko_animemix_v10_836225.jpeg and b/civitai/sd_1.5/Kuroneko_animemix_v10_836225.jpeg differ diff --git a/civitai/sd_1.5/LEOSAM_s_FilmGirl_Ultra_่ƒถ็‰‡้ฃŽ_7273802.jpeg b/civitai/sd_1.5/LEOSAM_s_FilmGirl_Ultra_่ƒถ็‰‡้ฃŽ_7273802.jpeg index 7721c39..0e9d093 100644 Binary files a/civitai/sd_1.5/LEOSAM_s_FilmGirl_Ultra_่ƒถ็‰‡้ฃŽ_7273802.jpeg and b/civitai/sd_1.5/LEOSAM_s_FilmGirl_Ultra_่ƒถ็‰‡้ฃŽ_7273802.jpeg differ diff --git a/civitai/sd_1.5/LOFI_12504680.jpeg b/civitai/sd_1.5/LOFI_12504680.jpeg index 6687985..c248ad5 100644 Binary files a/civitai/sd_1.5/LOFI_12504680.jpeg and b/civitai/sd_1.5/LOFI_12504680.jpeg differ diff --git a/civitai/sd_1.5/LRM_-_Liangyiu_s_Realistic_Mix_1418226.jpeg b/civitai/sd_1.5/LRM_-_Liangyiu_s_Realistic_Mix_1418226.jpeg index 8d34acc..7393972 100644 Binary files a/civitai/sd_1.5/LRM_-_Liangyiu_s_Realistic_Mix_1418226.jpeg and b/civitai/sd_1.5/LRM_-_Liangyiu_s_Realistic_Mix_1418226.jpeg differ diff --git a/civitai/sd_1.5/LandscapeSuperMix_1525289.jpeg b/civitai/sd_1.5/LandscapeSuperMix_1525289.jpeg index 64bec1b..35a76b7 100644 Binary files a/civitai/sd_1.5/LandscapeSuperMix_1525289.jpeg and b/civitai/sd_1.5/LandscapeSuperMix_1525289.jpeg differ diff --git a/civitai/sd_1.5/Lawlas_s_Yiffymix_2.0__furry_model__154059.jpeg b/civitai/sd_1.5/Lawlas_s_Yiffymix_2.0__furry_model__154059.jpeg index 14893ce..67ef3b1 100644 Binary files a/civitai/sd_1.5/Lawlas_s_Yiffymix_2.0__furry_model__154059.jpeg and b/civitai/sd_1.5/Lawlas_s_Yiffymix_2.0__furry_model__154059.jpeg differ diff --git a/civitai/sd_1.5/Lawlas_s_yiffymix__furry_model__155453.jpeg b/civitai/sd_1.5/Lawlas_s_yiffymix__furry_model__155453.jpeg index 2b34239..e30d526 100644 Binary files a/civitai/sd_1.5/Lawlas_s_yiffymix__furry_model__155453.jpeg and b/civitai/sd_1.5/Lawlas_s_yiffymix__furry_model__155453.jpeg differ diff --git a/civitai/sd_1.5/LemonPastelMix_185164.jpeg b/civitai/sd_1.5/LemonPastelMix_185164.jpeg index 09edbe5..1d149c8 100644 Binary files a/civitai/sd_1.5/LemonPastelMix_185164.jpeg and b/civitai/sd_1.5/LemonPastelMix_185164.jpeg differ diff --git a/civitai/sd_1.5/Level4_277507.jpeg b/civitai/sd_1.5/Level4_277507.jpeg index 9ca11e6..e1bec76 100644 Binary files a/civitai/sd_1.5/Level4_277507.jpeg and b/civitai/sd_1.5/Level4_277507.jpeg differ diff --git a/civitai/sd_1.5/LibMix_298583.jpeg b/civitai/sd_1.5/LibMix_298583.jpeg index d4a72fe..31cd250 100644 Binary files a/civitai/sd_1.5/LibMix_298583.jpeg and b/civitai/sd_1.5/LibMix_298583.jpeg differ diff --git a/civitai/sd_1.5/Liberty_123962.jpeg b/civitai/sd_1.5/Liberty_123962.jpeg index 83eef3e..8bc6669 100644 Binary files a/civitai/sd_1.5/Liberty_123962.jpeg and b/civitai/sd_1.5/Liberty_123962.jpeg differ diff --git a/civitai/sd_1.5/Life_Like_Diffusion__Ethnicities_supported_-_Native_American__Desi_Indian__Arab__Hispanic__Latino__South_Asian__Black___African__Turkish__Korean___Chinese___1923023.jpeg b/civitai/sd_1.5/Life_Like_Diffusion__Ethnicities_supported_-_Native_American__Desi_Indian__Arab__Hispanic__Latino__South_Asian__Black___African__Turkish__Korean___Chinese___1923023.jpeg index 8c2f4c5..0789a48 100644 Binary files a/civitai/sd_1.5/Life_Like_Diffusion__Ethnicities_supported_-_Native_American__Desi_Indian__Arab__Hispanic__Latino__South_Asian__Black___African__Turkish__Korean___Chinese___1923023.jpeg and b/civitai/sd_1.5/Life_Like_Diffusion__Ethnicities_supported_-_Native_American__Desi_Indian__Arab__Hispanic__Latino__South_Asian__Black___African__Turkish__Korean___Chinese___1923023.jpeg differ diff --git a/civitai/sd_1.5/Ligne_Claire_Anime_28073.jpeg b/civitai/sd_1.5/Ligne_Claire_Anime_28073.jpeg index d60db2d..d15ce95 100644 Binary files a/civitai/sd_1.5/Ligne_Claire_Anime_28073.jpeg and b/civitai/sd_1.5/Ligne_Claire_Anime_28073.jpeg differ diff --git a/civitai/sd_1.5/LimeREmix_sweet_3848316.jpeg b/civitai/sd_1.5/LimeREmix_sweet_3848316.jpeg index bf00065..49f2aed 100644 Binary files a/civitai/sd_1.5/LimeREmix_sweet_3848316.jpeg and b/civitai/sd_1.5/LimeREmix_sweet_3848316.jpeg differ diff --git a/civitai/sd_1.5/LimitlessVision_7761005.jpeg b/civitai/sd_1.5/LimitlessVision_7761005.jpeg index 672d2aa..086663a 100644 Binary files a/civitai/sd_1.5/LimitlessVision_7761005.jpeg and b/civitai/sd_1.5/LimitlessVision_7761005.jpeg differ diff --git a/civitai/sd_1.5/Locs_China_Landscapes_v2_377621.jpeg b/civitai/sd_1.5/Locs_China_Landscapes_v2_377621.jpeg index 7b90cac..414906a 100644 Binary files a/civitai/sd_1.5/Locs_China_Landscapes_v2_377621.jpeg and b/civitai/sd_1.5/Locs_China_Landscapes_v2_377621.jpeg differ diff --git a/civitai/sd_1.5/Lunar_Diffusion_1288502.jpeg b/civitai/sd_1.5/Lunar_Diffusion_1288502.jpeg index 8eaa279..2f0b9fc 100644 Binary files a/civitai/sd_1.5/Lunar_Diffusion_1288502.jpeg and b/civitai/sd_1.5/Lunar_Diffusion_1288502.jpeg differ diff --git a/civitai/sd_1.5/Lunar_Radiance__ๆœˆๅ…‰Mix__1785435.jpeg b/civitai/sd_1.5/Lunar_Radiance__ๆœˆๅ…‰Mix__1785435.jpeg index eee34d7..030d577 100644 Binary files a/civitai/sd_1.5/Lunar_Radiance__ๆœˆๅ…‰Mix__1785435.jpeg and b/civitai/sd_1.5/Lunar_Radiance__ๆœˆๅ…‰Mix__1785435.jpeg differ diff --git a/civitai/sd_1.5/LusterMix_2112769.jpeg b/civitai/sd_1.5/LusterMix_2112769.jpeg index a23fdf4..d6df83c 100644 Binary files a/civitai/sd_1.5/LusterMix_2112769.jpeg and b/civitai/sd_1.5/LusterMix_2112769.jpeg differ diff --git a/civitai/sd_1.5/Lyriel_808323.jpeg b/civitai/sd_1.5/Lyriel_808323.jpeg index 8492240..03fa3dc 100644 Binary files a/civitai/sd_1.5/Lyriel_808323.jpeg and b/civitai/sd_1.5/Lyriel_808323.jpeg differ diff --git a/civitai/sd_1.5/MCBS_-_MachineCode_s_Comic_Book_Style_16218412.jpeg b/civitai/sd_1.5/MCBS_-_MachineCode_s_Comic_Book_Style_16218412.jpeg index acc99cc..08c3bc4 100644 Binary files a/civitai/sd_1.5/MCBS_-_MachineCode_s_Comic_Book_Style_16218412.jpeg and b/civitai/sd_1.5/MCBS_-_MachineCode_s_Comic_Book_Style_16218412.jpeg differ diff --git a/civitai/sd_1.5/MFCG_Doll_Mix_5112246.jpeg b/civitai/sd_1.5/MFCG_Doll_Mix_5112246.jpeg index b481233..aa2835f 100644 Binary files a/civitai/sd_1.5/MFCG_Doll_Mix_5112246.jpeg and b/civitai/sd_1.5/MFCG_Doll_Mix_5112246.jpeg differ diff --git a/civitai/sd_1.5/MUSE_v1_160921.jpeg b/civitai/sd_1.5/MUSE_v1_160921.jpeg index a420537..193528c 100644 Binary files a/civitai/sd_1.5/MUSE_v1_160921.jpeg and b/civitai/sd_1.5/MUSE_v1_160921.jpeg differ diff --git a/civitai/sd_1.5/Manmaru_mix_3017806.jpeg b/civitai/sd_1.5/Manmaru_mix_3017806.jpeg index 88e8aa6..dc85071 100644 Binary files a/civitai/sd_1.5/Manmaru_mix_3017806.jpeg and b/civitai/sd_1.5/Manmaru_mix_3017806.jpeg differ diff --git a/civitai/sd_1.5/MasterAnime_3255847.jpeg b/civitai/sd_1.5/MasterAnime_3255847.jpeg index cfae4a7..0886ba7 100644 Binary files a/civitai/sd_1.5/MasterAnime_3255847.jpeg and b/civitai/sd_1.5/MasterAnime_3255847.jpeg differ diff --git a/civitai/sd_1.5/MechaMix_828114.jpeg b/civitai/sd_1.5/MechaMix_828114.jpeg index e965b7c..6d8df29 100644 Binary files a/civitai/sd_1.5/MechaMix_828114.jpeg and b/civitai/sd_1.5/MechaMix_828114.jpeg differ diff --git a/civitai/sd_1.5/MeichiLight_Mix_3608454.jpeg b/civitai/sd_1.5/MeichiLight_Mix_3608454.jpeg index 1245449..1212495 100644 Binary files a/civitai/sd_1.5/MeichiLight_Mix_3608454.jpeg and b/civitai/sd_1.5/MeichiLight_Mix_3608454.jpeg differ diff --git a/civitai/sd_1.5/MeinaAlter_1459657.jpeg b/civitai/sd_1.5/MeinaAlter_1459657.jpeg index d8da67c..4af338b 100644 Binary files a/civitai/sd_1.5/MeinaAlter_1459657.jpeg and b/civitai/sd_1.5/MeinaAlter_1459657.jpeg differ diff --git a/civitai/sd_1.5/MeinaMix_34463585.jpeg b/civitai/sd_1.5/MeinaMix_34463585.jpeg index 64a47e4..7f1fe31 100644 Binary files a/civitai/sd_1.5/MeinaMix_34463585.jpeg and b/civitai/sd_1.5/MeinaMix_34463585.jpeg differ diff --git a/civitai/sd_1.5/MeinaPastel_1364342.jpeg b/civitai/sd_1.5/MeinaPastel_1364342.jpeg index ff9f1f1..d6617aa 100644 Binary files a/civitai/sd_1.5/MeinaPastel_1364342.jpeg and b/civitai/sd_1.5/MeinaPastel_1364342.jpeg differ diff --git a/civitai/sd_1.5/MeinaUnreal_16714725.jpeg b/civitai/sd_1.5/MeinaUnreal_16714725.jpeg index fc49838..7d8963d 100644 Binary files a/civitai/sd_1.5/MeinaUnreal_16714725.jpeg and b/civitai/sd_1.5/MeinaUnreal_16714725.jpeg differ diff --git a/civitai/sd_1.5/MengX_Mix_Fantasy_5755059.jpeg b/civitai/sd_1.5/MengX_Mix_Fantasy_5755059.jpeg index 0598897..749e666 100644 Binary files a/civitai/sd_1.5/MengX_Mix_Fantasy_5755059.jpeg and b/civitai/sd_1.5/MengX_Mix_Fantasy_5755059.jpeg differ diff --git a/civitai/sd_1.5/MengX_Mix_Real_4019749.jpeg b/civitai/sd_1.5/MengX_Mix_Real_4019749.jpeg index 8d043aa..28ee0b2 100644 Binary files a/civitai/sd_1.5/MengX_Mix_Real_4019749.jpeg and b/civitai/sd_1.5/MengX_Mix_Real_4019749.jpeg differ diff --git a/civitai/sd_1.5/Midjourney_Papercut_631.jpeg b/civitai/sd_1.5/Midjourney_Papercut_631.jpeg index 79a4c71..829e8c8 100644 Binary files a/civitai/sd_1.5/Midjourney_Papercut_631.jpeg and b/civitai/sd_1.5/Midjourney_Papercut_631.jpeg differ diff --git a/civitai/sd_1.5/Milky_Wonderland_10008030.jpeg b/civitai/sd_1.5/Milky_Wonderland_10008030.jpeg index 9554cef..056bdf0 100644 Binary files a/civitai/sd_1.5/Milky_Wonderland_10008030.jpeg and b/civitai/sd_1.5/Milky_Wonderland_10008030.jpeg differ diff --git a/civitai/sd_1.5/MinaiMix_2018973.jpeg b/civitai/sd_1.5/MinaiMix_2018973.jpeg index f99132c..9433a36 100644 Binary files a/civitai/sd_1.5/MinaiMix_2018973.jpeg and b/civitai/sd_1.5/MinaiMix_2018973.jpeg differ diff --git a/civitai/sd_1.5/Mistoon_Amethyst_614963.jpeg b/civitai/sd_1.5/Mistoon_Amethyst_614963.jpeg index b0e722b..5149623 100644 Binary files a/civitai/sd_1.5/Mistoon_Amethyst_614963.jpeg and b/civitai/sd_1.5/Mistoon_Amethyst_614963.jpeg differ diff --git a/civitai/sd_1.5/Mistoon_Emerald_5549158.jpeg b/civitai/sd_1.5/Mistoon_Emerald_5549158.jpeg index 0e3ab82..02869d3 100644 Binary files a/civitai/sd_1.5/Mistoon_Emerald_5549158.jpeg and b/civitai/sd_1.5/Mistoon_Emerald_5549158.jpeg differ diff --git a/civitai/sd_1.5/Mistoon_Ruby_4765918.jpeg b/civitai/sd_1.5/Mistoon_Ruby_4765918.jpeg index 82ea65c..8a91c2f 100644 Binary files a/civitai/sd_1.5/Mistoon_Ruby_4765918.jpeg and b/civitai/sd_1.5/Mistoon_Ruby_4765918.jpeg differ diff --git a/civitai/sd_1.5/Mistoon_Sapphire_1535137.jpeg b/civitai/sd_1.5/Mistoon_Sapphire_1535137.jpeg index 19e19b1..e2f69fc 100644 Binary files a/civitai/sd_1.5/Mistoon_Sapphire_1535137.jpeg and b/civitai/sd_1.5/Mistoon_Sapphire_1535137.jpeg differ diff --git a/civitai/sd_1.5/MixTape_____Blues_2834695.jpeg b/civitai/sd_1.5/MixTape_____Blues_2834695.jpeg index a739914..baebeb8 100644 Binary files a/civitai/sd_1.5/MixTape_____Blues_2834695.jpeg and b/civitai/sd_1.5/MixTape_____Blues_2834695.jpeg differ diff --git a/civitai/sd_1.5/MixTape_____Bossa_Nova_1284621.jpeg b/civitai/sd_1.5/MixTape_____Bossa_Nova_1284621.jpeg index e3c15e1..9c3b94b 100644 Binary files a/civitai/sd_1.5/MixTape_____Bossa_Nova_1284621.jpeg and b/civitai/sd_1.5/MixTape_____Bossa_Nova_1284621.jpeg differ diff --git a/civitai/sd_1.5/Modern_Disney_9415.jpeg b/civitai/sd_1.5/Modern_Disney_9415.jpeg index e07bc26..1fdbe2e 100644 Binary files a/civitai/sd_1.5/Modern_Disney_9415.jpeg and b/civitai/sd_1.5/Modern_Disney_9415.jpeg differ diff --git a/civitai/sd_1.5/MoistMix_50578.jpeg b/civitai/sd_1.5/MoistMix_50578.jpeg index d9f7cad..566f3bd 100644 Binary files a/civitai/sd_1.5/MoistMix_50578.jpeg and b/civitai/sd_1.5/MoistMix_50578.jpeg differ diff --git a/civitai/sd_1.5/MooMooFusion_15070137.jpeg b/civitai/sd_1.5/MooMooFusion_15070137.jpeg index e200099..f867c07 100644 Binary files a/civitai/sd_1.5/MooMooFusion_15070137.jpeg and b/civitai/sd_1.5/MooMooFusion_15070137.jpeg differ diff --git a/civitai/sd_1.5/MothMix_952561.jpeg b/civitai/sd_1.5/MothMix_952561.jpeg index 787816f..a482774 100644 Binary files a/civitai/sd_1.5/MothMix_952561.jpeg and b/civitai/sd_1.5/MothMix_952561.jpeg differ diff --git a/civitai/sd_1.5/MsceneMix_ๅก้€šๆ™ฏๆ™ฏๅคงๆจกๅž‹_913789.jpeg b/civitai/sd_1.5/MsceneMix_ๅก้€šๆ™ฏๆ™ฏๅคงๆจกๅž‹_913789.jpeg index 05ecc3e..a57dfe0 100644 Binary files a/civitai/sd_1.5/MsceneMix_ๅก้€šๆ™ฏๆ™ฏๅคงๆจกๅž‹_913789.jpeg and b/civitai/sd_1.5/MsceneMix_ๅก้€šๆ™ฏๆ™ฏๅคงๆจกๅž‹_913789.jpeg differ diff --git a/civitai/sd_1.5/Muses_-_Erato_3202676.jpeg b/civitai/sd_1.5/Muses_-_Erato_3202676.jpeg index 9840bc8..55f632d 100644 Binary files a/civitai/sd_1.5/Muses_-_Erato_3202676.jpeg and b/civitai/sd_1.5/Muses_-_Erato_3202676.jpeg differ diff --git a/civitai/sd_1.5/NabiMix_890297.jpeg b/civitai/sd_1.5/NabiMix_890297.jpeg index a3883b9..d326184 100644 Binary files a/civitai/sd_1.5/NabiMix_890297.jpeg and b/civitai/sd_1.5/NabiMix_890297.jpeg differ diff --git a/civitai/sd_1.5/NavelOrange_805725.jpeg b/civitai/sd_1.5/NavelOrange_805725.jpeg index 74c0abe..ed14b51 100644 Binary files a/civitai/sd_1.5/NavelOrange_805725.jpeg and b/civitai/sd_1.5/NavelOrange_805725.jpeg differ diff --git a/civitai/sd_1.5/NeatNess_Fluffy_Fur_Mix_32760996.jpeg b/civitai/sd_1.5/NeatNess_Fluffy_Fur_Mix_32760996.jpeg index f046b37..00fa3a2 100644 Binary files a/civitai/sd_1.5/NeatNess_Fluffy_Fur_Mix_32760996.jpeg and b/civitai/sd_1.5/NeatNess_Fluffy_Fur_Mix_32760996.jpeg differ diff --git a/civitai/sd_1.5/Neon_Isometric_142576.jpeg b/civitai/sd_1.5/Neon_Isometric_142576.jpeg index 2bffe3e..1714462 100644 Binary files a/civitai/sd_1.5/Neon_Isometric_142576.jpeg and b/civitai/sd_1.5/Neon_Isometric_142576.jpeg differ diff --git a/civitai/sd_1.5/Neurogen_v1.1_335859.jpeg b/civitai/sd_1.5/Neurogen_v1.1_335859.jpeg index b1d5c09..dcd1180 100644 Binary files a/civitai/sd_1.5/Neurogen_v1.1_335859.jpeg and b/civitai/sd_1.5/Neurogen_v1.1_335859.jpeg differ diff --git a/civitai/sd_1.5/NeverEnding_Dream__NED__707744.jpeg b/civitai/sd_1.5/NeverEnding_Dream__NED__707744.jpeg index 65a16f3..f0fc27c 100644 Binary files a/civitai/sd_1.5/NeverEnding_Dream__NED__707744.jpeg and b/civitai/sd_1.5/NeverEnding_Dream__NED__707744.jpeg differ diff --git a/civitai/sd_1.5/NextGenMix_1992274.jpeg b/civitai/sd_1.5/NextGenMix_1992274.jpeg index fbb75a8..d3baecd 100644 Binary files a/civitai/sd_1.5/NextGenMix_1992274.jpeg and b/civitai/sd_1.5/NextGenMix_1992274.jpeg differ diff --git a/civitai/sd_1.5/NextPhoto_1834505.jpeg b/civitai/sd_1.5/NextPhoto_1834505.jpeg index 7b548a9..9e840af 100644 Binary files a/civitai/sd_1.5/NextPhoto_1834505.jpeg and b/civitai/sd_1.5/NextPhoto_1834505.jpeg differ diff --git a/civitai/sd_1.5/Night_Sky_YOZORA_Style_Model_165982.jpeg b/civitai/sd_1.5/Night_Sky_YOZORA_Style_Model_165982.jpeg index 18187a4..8cdfd48 100644 Binary files a/civitai/sd_1.5/Night_Sky_YOZORA_Style_Model_165982.jpeg and b/civitai/sd_1.5/Night_Sky_YOZORA_Style_Model_165982.jpeg differ diff --git a/civitai/sd_1.5/Nigi3D_554562.jpeg b/civitai/sd_1.5/Nigi3D_554562.jpeg index 456b564..7071dcf 100644 Binary files a/civitai/sd_1.5/Nigi3D_554562.jpeg and b/civitai/sd_1.5/Nigi3D_554562.jpeg differ diff --git a/civitai/sd_1.5/NijiDiffusedMix_5838560.jpeg b/civitai/sd_1.5/NijiDiffusedMix_5838560.jpeg index 7827056..76d901a 100644 Binary files a/civitai/sd_1.5/NijiDiffusedMix_5838560.jpeg and b/civitai/sd_1.5/NijiDiffusedMix_5838560.jpeg differ diff --git a/civitai/sd_1.5/Noble_Mix_Fix_5022696.jpeg b/civitai/sd_1.5/Noble_Mix_Fix_5022696.jpeg index 12de66d..72b86e1 100644 Binary files a/civitai/sd_1.5/Noble_Mix_Fix_5022696.jpeg and b/civitai/sd_1.5/Noble_Mix_Fix_5022696.jpeg differ diff --git a/civitai/sd_1.5/Noosphere_4656364.jpeg b/civitai/sd_1.5/Noosphere_4656364.jpeg index 05ccf9f..4c2465b 100644 Binary files a/civitai/sd_1.5/Noosphere_4656364.jpeg and b/civitai/sd_1.5/Noosphere_4656364.jpeg differ diff --git a/civitai/sd_1.5/Nordrin_่ฏบๅพท็ณ__1973829.jpeg b/civitai/sd_1.5/Nordrin_่ฏบๅพท็ณ__1973829.jpeg index ded5c58..043adb6 100644 Binary files a/civitai/sd_1.5/Nordrin_่ฏบๅพท็ณ__1973829.jpeg and b/civitai/sd_1.5/Nordrin_่ฏบๅพท็ณ__1973829.jpeg differ diff --git a/civitai/sd_1.5/Nostalgia-clear_218384.jpeg b/civitai/sd_1.5/Nostalgia-clear_218384.jpeg index 0b7a2d8..f828cf8 100644 Binary files a/civitai/sd_1.5/Nostalgia-clear_218384.jpeg and b/civitai/sd_1.5/Nostalgia-clear_218384.jpeg differ diff --git a/civitai/sd_1.5/NotSoXJBMix-1_928489.jpeg b/civitai/sd_1.5/NotSoXJBMix-1_928489.jpeg index 5ccaba6..4921631 100644 Binary files a/civitai/sd_1.5/NotSoXJBMix-1_928489.jpeg and b/civitai/sd_1.5/NotSoXJBMix-1_928489.jpeg differ diff --git a/civitai/sd_1.5/Nyan_Mix_186595.jpeg b/civitai/sd_1.5/Nyan_Mix_186595.jpeg index 4978084..fee96ab 100644 Binary files a/civitai/sd_1.5/Nyan_Mix_186595.jpeg and b/civitai/sd_1.5/Nyan_Mix_186595.jpeg differ diff --git a/civitai/sd_1.5/OccidentalMix_5054135.jpeg b/civitai/sd_1.5/OccidentalMix_5054135.jpeg index 76df803..806fd9d 100644 Binary files a/civitai/sd_1.5/OccidentalMix_5054135.jpeg and b/civitai/sd_1.5/OccidentalMix_5054135.jpeg differ diff --git a/civitai/sd_1.5/Oil_painting_260924.jpeg b/civitai/sd_1.5/Oil_painting_260924.jpeg index 6c4a21d..e1b7ebc 100644 Binary files a/civitai/sd_1.5/Oil_painting_260924.jpeg and b/civitai/sd_1.5/Oil_painting_260924.jpeg differ diff --git a/civitai/sd_1.5/Onigiri_Mix_2525945.jpeg b/civitai/sd_1.5/Onigiri_Mix_2525945.jpeg index d9bbcf3..b4cd884 100644 Binary files a/civitai/sd_1.5/Onigiri_Mix_2525945.jpeg and b/civitai/sd_1.5/Onigiri_Mix_2525945.jpeg differ diff --git a/civitai/sd_1.5/OnlyAnime___ๅ”ฏ___็‚ซๅฝฉๅŠจๆผซ_1621262.jpeg b/civitai/sd_1.5/OnlyAnime___ๅ”ฏ___็‚ซๅฝฉๅŠจๆผซ_1621262.jpeg index 404ede5..a798f5b 100644 Binary files a/civitai/sd_1.5/OnlyAnime___ๅ”ฏ___็‚ซๅฝฉๅŠจๆผซ_1621262.jpeg and b/civitai/sd_1.5/OnlyAnime___ๅ”ฏ___็‚ซๅฝฉๅŠจๆผซ_1621262.jpeg differ diff --git a/civitai/sd_1.5/OnlyRealistic____ๅ”ฏ___่ถ…้ซ˜ๆธ…็œŸไบบๅ†™ๅฎž_1990168.jpeg b/civitai/sd_1.5/OnlyRealistic____ๅ”ฏ___่ถ…้ซ˜ๆธ…็œŸไบบๅ†™ๅฎž_1990168.jpeg index fadca0e..0521dd3 100644 Binary files a/civitai/sd_1.5/OnlyRealistic____ๅ”ฏ___่ถ…้ซ˜ๆธ…็œŸไบบๅ†™ๅฎž_1990168.jpeg and b/civitai/sd_1.5/OnlyRealistic____ๅ”ฏ___่ถ…้ซ˜ๆธ…็œŸไบบๅ†™ๅฎž_1990168.jpeg differ diff --git a/civitai/sd_1.5/Openjourney_301521.jpeg b/civitai/sd_1.5/Openjourney_301521.jpeg index a167956..06a7aa7 100644 Binary files a/civitai/sd_1.5/Openjourney_301521.jpeg and b/civitai/sd_1.5/Openjourney_301521.jpeg differ diff --git a/civitai/sd_1.5/OrangeChillMix_1802984.jpeg b/civitai/sd_1.5/OrangeChillMix_1802984.jpeg index 3477058..ad3529f 100644 Binary files a/civitai/sd_1.5/OrangeChillMix_1802984.jpeg and b/civitai/sd_1.5/OrangeChillMix_1802984.jpeg differ diff --git a/civitai/sd_1.5/Orion-Mix_288712.jpeg b/civitai/sd_1.5/Orion-Mix_288712.jpeg index acf3256..de3c02a 100644 Binary files a/civitai/sd_1.5/Orion-Mix_288712.jpeg and b/civitai/sd_1.5/Orion-Mix_288712.jpeg differ diff --git a/civitai/sd_1.5/POPE2.5_1754336.jpeg b/civitai/sd_1.5/POPE2.5_1754336.jpeg index 33d53e2..58c4872 100644 Binary files a/civitai/sd_1.5/POPE2.5_1754336.jpeg and b/civitai/sd_1.5/POPE2.5_1754336.jpeg differ diff --git a/civitai/sd_1.5/PPP_Animix_39179549.jpeg b/civitai/sd_1.5/PPP_Animix_39179549.jpeg index 540aa55..d35110c 100644 Binary files a/civitai/sd_1.5/PPP_Animix_39179549.jpeg and b/civitai/sd_1.5/PPP_Animix_39179549.jpeg differ diff --git a/civitai/sd_1.5/Paragon_V1.0_1013552.jpeg b/civitai/sd_1.5/Paragon_V1.0_1013552.jpeg index 4b9c719..7e3f875 100644 Binary files a/civitai/sd_1.5/Paragon_V1.0_1013552.jpeg and b/civitai/sd_1.5/Paragon_V1.0_1013552.jpeg differ diff --git a/civitai/sd_1.5/PastelBoys_2D_28839178.jpeg b/civitai/sd_1.5/PastelBoys_2D_28839178.jpeg index cd8e5fb..19ef5a4 100644 Binary files a/civitai/sd_1.5/PastelBoys_2D_28839178.jpeg and b/civitai/sd_1.5/PastelBoys_2D_28839178.jpeg differ diff --git a/civitai/sd_1.5/PastelDiffusedMix_1496098.jpeg b/civitai/sd_1.5/PastelDiffusedMix_1496098.jpeg index 016a1c2..285e670 100644 Binary files a/civitai/sd_1.5/PastelDiffusedMix_1496098.jpeg and b/civitai/sd_1.5/PastelDiffusedMix_1496098.jpeg differ diff --git a/civitai/sd_1.5/Pastel_lines_mix_147680.jpeg b/civitai/sd_1.5/Pastel_lines_mix_147680.jpeg index 86a91fc..1626261 100644 Binary files a/civitai/sd_1.5/Pastel_lines_mix_147680.jpeg and b/civitai/sd_1.5/Pastel_lines_mix_147680.jpeg differ diff --git a/civitai/sd_1.5/Perceptron_450028.jpeg b/civitai/sd_1.5/Perceptron_450028.jpeg index 2207dfa..553e51b 100644 Binary files a/civitai/sd_1.5/Perceptron_450028.jpeg and b/civitai/sd_1.5/Perceptron_450028.jpeg differ diff --git a/civitai/sd_1.5/PerfectDeliberate_4264354.jpeg b/civitai/sd_1.5/PerfectDeliberate_4264354.jpeg index 9a9d4f9..4529f0b 100644 Binary files a/civitai/sd_1.5/PerfectDeliberate_4264354.jpeg and b/civitai/sd_1.5/PerfectDeliberate_4264354.jpeg differ diff --git a/civitai/sd_1.5/PhotoMaxUltraV1_327009.jpeg b/civitai/sd_1.5/PhotoMaxUltraV1_327009.jpeg index fdfd6d5..8a9e909 100644 Binary files a/civitai/sd_1.5/PhotoMaxUltraV1_327009.jpeg and b/civitai/sd_1.5/PhotoMaxUltraV1_327009.jpeg differ diff --git a/civitai/sd_1.5/Photo_style_ๅฐ็บขไนฆ็บฏๆฌฒ้ฃŽๆ ผ่‡ชๆ‹_CNvtuberMix_819648.jpeg b/civitai/sd_1.5/Photo_style_ๅฐ็บขไนฆ็บฏๆฌฒ้ฃŽๆ ผ่‡ชๆ‹_CNvtuberMix_819648.jpeg index da5ff7a..d949ece 100644 Binary files a/civitai/sd_1.5/Photo_style_ๅฐ็บขไนฆ็บฏๆฌฒ้ฃŽๆ ผ่‡ชๆ‹_CNvtuberMix_819648.jpeg and b/civitai/sd_1.5/Photo_style_ๅฐ็บขไนฆ็บฏๆฌฒ้ฃŽๆ ผ่‡ชๆ‹_CNvtuberMix_819648.jpeg differ diff --git a/civitai/sd_1.5/Photon_1044343.jpeg b/civitai/sd_1.5/Photon_1044343.jpeg index fdcbbef..18854b2 100644 Binary files a/civitai/sd_1.5/Photon_1044343.jpeg and b/civitai/sd_1.5/Photon_1044343.jpeg differ diff --git a/civitai/sd_1.5/Pika_s_Animated_Mix_455397.jpeg b/civitai/sd_1.5/Pika_s_Animated_Mix_455397.jpeg index f9d586c..e91d305 100644 Binary files a/civitai/sd_1.5/Pika_s_Animated_Mix_455397.jpeg and b/civitai/sd_1.5/Pika_s_Animated_Mix_455397.jpeg differ diff --git a/civitai/sd_1.5/Pika_s_New_Generation_1059088.jpeg b/civitai/sd_1.5/Pika_s_New_Generation_1059088.jpeg index c0481dc..8eca988 100644 Binary files a/civitai/sd_1.5/Pika_s_New_Generation_1059088.jpeg and b/civitai/sd_1.5/Pika_s_New_Generation_1059088.jpeg differ diff --git a/civitai/sd_1.5/Pirsus_Epic_Realism_4370117.jpeg b/civitai/sd_1.5/Pirsus_Epic_Realism_4370117.jpeg index 23bebb0..df934be 100644 Binary files a/civitai/sd_1.5/Pirsus_Epic_Realism_4370117.jpeg and b/civitai/sd_1.5/Pirsus_Epic_Realism_4370117.jpeg differ diff --git a/civitai/sd_1.5/Pixar_Style_Model_192867.jpeg b/civitai/sd_1.5/Pixar_Style_Model_192867.jpeg index ee60d68..743f6d4 100644 Binary files a/civitai/sd_1.5/Pixar_Style_Model_192867.jpeg and b/civitai/sd_1.5/Pixar_Style_Model_192867.jpeg differ diff --git a/civitai/sd_1.5/PixelStyleCKPT_ๅƒ็ด ็”ป_1071060.jpeg b/civitai/sd_1.5/PixelStyleCKPT_ๅƒ็ด ็”ป_1071060.jpeg index f01d1f0..51a65e4 100644 Binary files a/civitai/sd_1.5/PixelStyleCKPT_ๅƒ็ด ็”ป_1071060.jpeg and b/civitai/sd_1.5/PixelStyleCKPT_ๅƒ็ด ็”ป_1071060.jpeg differ diff --git a/civitai/sd_1.5/PornMaster-Fantasy_่‰ฒๆƒ…ๅคงๅธˆ_34336198.jpeg b/civitai/sd_1.5/PornMaster-Fantasy_่‰ฒๆƒ…ๅคงๅธˆ_34336198.jpeg index 1ef3247..1fbc8bb 100644 Binary files a/civitai/sd_1.5/PornMaster-Fantasy_่‰ฒๆƒ…ๅคงๅธˆ_34336198.jpeg and b/civitai/sd_1.5/PornMaster-Fantasy_่‰ฒๆƒ…ๅคงๅธˆ_34336198.jpeg differ diff --git a/civitai/sd_1.5/PornVision_598759.jpeg b/civitai/sd_1.5/PornVision_598759.jpeg index 4632b6c..aec95a8 100644 Binary files a/civitai/sd_1.5/PornVision_598759.jpeg and b/civitai/sd_1.5/PornVision_598759.jpeg differ diff --git a/civitai/sd_1.5/Prefix_Real_Cart_1681900.jpeg b/civitai/sd_1.5/Prefix_Real_Cart_1681900.jpeg index 94c6363..aafc4ae 100644 Binary files a/civitai/sd_1.5/Prefix_Real_Cart_1681900.jpeg and b/civitai/sd_1.5/Prefix_Real_Cart_1681900.jpeg differ diff --git a/civitai/sd_1.5/PrimeMix_748819.jpeg b/civitai/sd_1.5/PrimeMix_748819.jpeg index 6298811..c972b2d 100644 Binary files a/civitai/sd_1.5/PrimeMix_748819.jpeg and b/civitai/sd_1.5/PrimeMix_748819.jpeg differ diff --git a/civitai/sd_1.5/PrismaBoysMix_2077015.jpeg b/civitai/sd_1.5/PrismaBoysMix_2077015.jpeg index aee44c9..6a09e8e 100644 Binary files a/civitai/sd_1.5/PrismaBoysMix_2077015.jpeg and b/civitai/sd_1.5/PrismaBoysMix_2077015.jpeg differ diff --git a/civitai/sd_1.5/ProFantasy_787945.jpeg b/civitai/sd_1.5/ProFantasy_787945.jpeg index 9164f2b..740e7f5 100644 Binary files a/civitai/sd_1.5/ProFantasy_787945.jpeg and b/civitai/sd_1.5/ProFantasy_787945.jpeg differ diff --git a/civitai/sd_1.5/Product_Design__minimalism-eddiemauro__1708688.jpeg b/civitai/sd_1.5/Product_Design__minimalism-eddiemauro__1708688.jpeg index c9073c0..577bc8b 100644 Binary files a/civitai/sd_1.5/Product_Design__minimalism-eddiemauro__1708688.jpeg and b/civitai/sd_1.5/Product_Design__minimalism-eddiemauro__1708688.jpeg differ diff --git a/civitai/sd_1.5/Project-K__Kawai__2027098.jpeg b/civitai/sd_1.5/Project-K__Kawai__2027098.jpeg index eedd94d..f74968e 100644 Binary files a/civitai/sd_1.5/Project-K__Kawai__2027098.jpeg and b/civitai/sd_1.5/Project-K__Kawai__2027098.jpeg differ diff --git a/civitai/sd_1.5/Project_AIO_4085379.jpeg b/civitai/sd_1.5/Project_AIO_4085379.jpeg index 086cb74..8e593d2 100644 Binary files a/civitai/sd_1.5/Project_AIO_4085379.jpeg and b/civitai/sd_1.5/Project_AIO_4085379.jpeg differ diff --git a/civitai/sd_1.5/Project_KR4X_-_2.5D___AaYMix_895727.jpeg b/civitai/sd_1.5/Project_KR4X_-_2.5D___AaYMix_895727.jpeg index b2e1414..0f716f5 100644 Binary files a/civitai/sd_1.5/Project_KR4X_-_2.5D___AaYMix_895727.jpeg and b/civitai/sd_1.5/Project_KR4X_-_2.5D___AaYMix_895727.jpeg differ diff --git a/civitai/sd_1.5/Protogen_Infinity_Official_Release_36015.jpeg b/civitai/sd_1.5/Protogen_Infinity_Official_Release_36015.jpeg index 112f985..2fd99af 100644 Binary files a/civitai/sd_1.5/Protogen_Infinity_Official_Release_36015.jpeg and b/civitai/sd_1.5/Protogen_Infinity_Official_Release_36015.jpeg differ diff --git a/civitai/sd_1.5/Protogen_v2.2__Anime__Official_Release_25063.jpeg b/civitai/sd_1.5/Protogen_v2.2__Anime__Official_Release_25063.jpeg index d97953e..24145da 100644 Binary files a/civitai/sd_1.5/Protogen_v2.2__Anime__Official_Release_25063.jpeg and b/civitai/sd_1.5/Protogen_v2.2__Anime__Official_Release_25063.jpeg differ diff --git a/civitai/sd_1.5/Protogen_x3.4__Photorealism__Official_Release_25380.jpeg b/civitai/sd_1.5/Protogen_x3.4__Photorealism__Official_Release_25380.jpeg index f356932..e846992 100644 Binary files a/civitai/sd_1.5/Protogen_x3.4__Photorealism__Official_Release_25380.jpeg and b/civitai/sd_1.5/Protogen_x3.4__Photorealism__Official_Release_25380.jpeg differ diff --git a/civitai/sd_1.5/Protogen_x5.3__Photorealism__Official_Release_27601.jpeg b/civitai/sd_1.5/Protogen_x5.3__Photorealism__Official_Release_27601.jpeg index ab3fe55..92bae2f 100644 Binary files a/civitai/sd_1.5/Protogen_x5.3__Photorealism__Official_Release_27601.jpeg and b/civitai/sd_1.5/Protogen_x5.3__Photorealism__Official_Release_27601.jpeg differ diff --git a/civitai/sd_1.5/Protogen_x5.8_Rebuilt__Scifi_Anime__Official_Release_28334.jpeg b/civitai/sd_1.5/Protogen_x5.8_Rebuilt__Scifi_Anime__Official_Release_28334.jpeg index c1c2a85..8004ea5 100644 Binary files a/civitai/sd_1.5/Protogen_x5.8_Rebuilt__Scifi_Anime__Official_Release_28334.jpeg and b/civitai/sd_1.5/Protogen_x5.8_Rebuilt__Scifi_Anime__Official_Release_28334.jpeg differ diff --git a/civitai/sd_1.5/Puffy_1189926.jpeg b/civitai/sd_1.5/Puffy_1189926.jpeg index 4ad5234..3ae0878 100644 Binary files a/civitai/sd_1.5/Puffy_1189926.jpeg and b/civitai/sd_1.5/Puffy_1189926.jpeg differ diff --git a/civitai/sd_1.5/QGO_-_PromptingReal_981950.jpeg b/civitai/sd_1.5/QGO_-_PromptingReal_981950.jpeg index c880dda..eb0e76a 100644 Binary files a/civitai/sd_1.5/QGO_-_PromptingReal_981950.jpeg and b/civitai/sd_1.5/QGO_-_PromptingReal_981950.jpeg differ diff --git a/civitai/sd_1.5/QteaMix_้€š็”จQ็‰ˆๆจกๅž‹_1220407.jpeg b/civitai/sd_1.5/QteaMix_้€š็”จQ็‰ˆๆจกๅž‹_1220407.jpeg index dfea451..02540fc 100644 Binary files a/civitai/sd_1.5/QteaMix_้€š็”จQ็‰ˆๆจกๅž‹_1220407.jpeg and b/civitai/sd_1.5/QteaMix_้€š็”จQ็‰ˆๆจกๅž‹_1220407.jpeg differ diff --git a/civitai/sd_1.5/RPG_3602723.jpeg b/civitai/sd_1.5/RPG_3602723.jpeg index b1d456f..c0de76c 100644 Binary files a/civitai/sd_1.5/RPG_3602723.jpeg and b/civitai/sd_1.5/RPG_3602723.jpeg differ diff --git a/civitai/sd_1.5/Ra-render_Architecture_render_ๅปบ็ญ‘ๆธฒๆŸ“ๆ•ˆๆžœ_11421674.jpeg b/civitai/sd_1.5/Ra-render_Architecture_render_ๅปบ็ญ‘ๆธฒๆŸ“ๆ•ˆๆžœ_11421674.jpeg index ff89a08..76d84cf 100644 Binary files a/civitai/sd_1.5/Ra-render_Architecture_render_ๅปบ็ญ‘ๆธฒๆŸ“ๆ•ˆๆžœ_11421674.jpeg and b/civitai/sd_1.5/Ra-render_Architecture_render_ๅปบ็ญ‘ๆธฒๆŸ“ๆ•ˆๆžœ_11421674.jpeg differ diff --git a/civitai/sd_1.5/Rabbit_2877712.jpeg b/civitai/sd_1.5/Rabbit_2877712.jpeg index 29f45fe..1c8479c 100644 Binary files a/civitai/sd_1.5/Rabbit_2877712.jpeg and b/civitai/sd_1.5/Rabbit_2877712.jpeg differ diff --git a/civitai/sd_1.5/RaekanaMix_2.5D_5343378.jpeg b/civitai/sd_1.5/RaekanaMix_2.5D_5343378.jpeg index 150ea6e..35109d5 100644 Binary files a/civitai/sd_1.5/RaekanaMix_2.5D_5343378.jpeg and b/civitai/sd_1.5/RaekanaMix_2.5D_5343378.jpeg differ diff --git a/civitai/sd_1.5/RaemuMix_13050870.jpeg b/civitai/sd_1.5/RaemuMix_13050870.jpeg index 8f389ea..b09ed30 100644 Binary files a/civitai/sd_1.5/RaemuMix_13050870.jpeg and b/civitai/sd_1.5/RaemuMix_13050870.jpeg differ diff --git a/civitai/sd_1.5/RaesanMix_6662820.jpeg b/civitai/sd_1.5/RaesanMix_6662820.jpeg index 85a56f7..84176c4 100644 Binary files a/civitai/sd_1.5/RaesanMix_6662820.jpeg and b/civitai/sd_1.5/RaesanMix_6662820.jpeg differ diff --git a/civitai/sd_1.5/ReV_Animated_9038033.jpeg b/civitai/sd_1.5/ReV_Animated_9038033.jpeg index ac975de..f7099b7 100644 Binary files a/civitai/sd_1.5/ReV_Animated_9038033.jpeg and b/civitai/sd_1.5/ReV_Animated_9038033.jpeg differ diff --git a/civitai/sd_1.5/RealBiter_205878.jpeg b/civitai/sd_1.5/RealBiter_205878.jpeg index a702db3..f7043c4 100644 Binary files a/civitai/sd_1.5/RealBiter_205878.jpeg and b/civitai/sd_1.5/RealBiter_205878.jpeg differ diff --git a/civitai/sd_1.5/RealCartoon-Anime_7075708.jpeg b/civitai/sd_1.5/RealCartoon-Anime_7075708.jpeg index a90f051..0cb1d42 100644 Binary files a/civitai/sd_1.5/RealCartoon-Anime_7075708.jpeg and b/civitai/sd_1.5/RealCartoon-Anime_7075708.jpeg differ diff --git a/civitai/sd_1.5/RealCartoon-Pixar_27746679.jpeg b/civitai/sd_1.5/RealCartoon-Pixar_27746679.jpeg index 84a675c..8ea637c 100644 Binary files a/civitai/sd_1.5/RealCartoon-Pixar_27746679.jpeg and b/civitai/sd_1.5/RealCartoon-Pixar_27746679.jpeg differ diff --git a/civitai/sd_1.5/RealCartoon-Realistic_21329878.jpeg b/civitai/sd_1.5/RealCartoon-Realistic_21329878.jpeg index 66ff0bf..9673d9a 100644 Binary files a/civitai/sd_1.5/RealCartoon-Realistic_21329878.jpeg and b/civitai/sd_1.5/RealCartoon-Realistic_21329878.jpeg differ diff --git a/civitai/sd_1.5/RealCartoon3D_19407879.jpeg b/civitai/sd_1.5/RealCartoon3D_19407879.jpeg index 038c6f0..ec482cf 100644 Binary files a/civitai/sd_1.5/RealCartoon3D_19407879.jpeg and b/civitai/sd_1.5/RealCartoon3D_19407879.jpeg differ diff --git a/civitai/sd_1.5/RealCartoon_-_2.5D_7145759.jpeg b/civitai/sd_1.5/RealCartoon_-_2.5D_7145759.jpeg index 4700069..c755157 100644 Binary files a/civitai/sd_1.5/RealCartoon_-_2.5D_7145759.jpeg and b/civitai/sd_1.5/RealCartoon_-_2.5D_7145759.jpeg differ diff --git a/civitai/sd_1.5/RealCartoon_-_Special_3504490.jpeg b/civitai/sd_1.5/RealCartoon_-_Special_3504490.jpeg index 91b60a1..5138ab6 100644 Binary files a/civitai/sd_1.5/RealCartoon_-_Special_3504490.jpeg and b/civitai/sd_1.5/RealCartoon_-_Special_3504490.jpeg differ diff --git a/civitai/sd_1.5/RealDosMix_76860.jpeg b/civitai/sd_1.5/RealDosMix_76860.jpeg index 8dbfcc5..0179d0b 100644 Binary files a/civitai/sd_1.5/RealDosMix_76860.jpeg and b/civitai/sd_1.5/RealDosMix_76860.jpeg differ diff --git a/civitai/sd_1.5/RealLife_5163862.jpeg b/civitai/sd_1.5/RealLife_5163862.jpeg index ce174db..3becc6d 100644 Binary files a/civitai/sd_1.5/RealLife_5163862.jpeg and b/civitai/sd_1.5/RealLife_5163862.jpeg differ diff --git a/civitai/sd_1.5/RealSciFi_166893.jpeg b/civitai/sd_1.5/RealSciFi_166893.jpeg index 12c66ee..0917988 100644 Binary files a/civitai/sd_1.5/RealSciFi_166893.jpeg and b/civitai/sd_1.5/RealSciFi_166893.jpeg differ diff --git a/civitai/sd_1.5/Real_Doll_763941.jpeg b/civitai/sd_1.5/Real_Doll_763941.jpeg index 6facf7d..4753cbc 100644 Binary files a/civitai/sd_1.5/Real_Doll_763941.jpeg and b/civitai/sd_1.5/Real_Doll_763941.jpeg differ diff --git a/civitai/sd_1.5/Real_Goofball_866029.jpeg b/civitai/sd_1.5/Real_Goofball_866029.jpeg index 1805210..a4c519a 100644 Binary files a/civitai/sd_1.5/Real_Goofball_866029.jpeg and b/civitai/sd_1.5/Real_Goofball_866029.jpeg differ diff --git a/civitai/sd_1.5/Real_Hot_Mix_1335344.jpeg b/civitai/sd_1.5/Real_Hot_Mix_1335344.jpeg index 5df96b1..11bdc53 100644 Binary files a/civitai/sd_1.5/Real_Hot_Mix_1335344.jpeg and b/civitai/sd_1.5/Real_Hot_Mix_1335344.jpeg differ diff --git a/civitai/sd_1.5/Real_Moon_-_Anime_5040087.jpeg b/civitai/sd_1.5/Real_Moon_-_Anime_5040087.jpeg index 6933014..e2e8c7e 100644 Binary files a/civitai/sd_1.5/Real_Moon_-_Anime_5040087.jpeg and b/civitai/sd_1.5/Real_Moon_-_Anime_5040087.jpeg differ diff --git a/civitai/sd_1.5/Real_Moon_5011521.jpeg b/civitai/sd_1.5/Real_Moon_5011521.jpeg index a2458f3..be244f9 100644 Binary files a/civitai/sd_1.5/Real_Moon_5011521.jpeg and b/civitai/sd_1.5/Real_Moon_5011521.jpeg differ diff --git a/civitai/sd_1.5/Realisian_6197005.jpeg b/civitai/sd_1.5/Realisian_6197005.jpeg index ee27df1..1b17896 100644 Binary files a/civitai/sd_1.5/Realisian_6197005.jpeg and b/civitai/sd_1.5/Realisian_6197005.jpeg differ diff --git a/civitai/sd_1.5/Realism_CE_Revolution_1534764.jpeg b/civitai/sd_1.5/Realism_CE_Revolution_1534764.jpeg index a4b835a..6eaa2b6 100644 Binary files a/civitai/sd_1.5/Realism_CE_Revolution_1534764.jpeg and b/civitai/sd_1.5/Realism_CE_Revolution_1534764.jpeg differ diff --git a/civitai/sd_1.5/Realistic-Digital-Genius_3876260.jpeg b/civitai/sd_1.5/Realistic-Digital-Genius_3876260.jpeg index fa65761..7ef16c2 100644 Binary files a/civitai/sd_1.5/Realistic-Digital-Genius_3876260.jpeg and b/civitai/sd_1.5/Realistic-Digital-Genius_3876260.jpeg differ diff --git a/civitai/sd_1.5/RealisticMix_14492439.jpeg b/civitai/sd_1.5/RealisticMix_14492439.jpeg index e3e3fd7..e008629 100644 Binary files a/civitai/sd_1.5/RealisticMix_14492439.jpeg and b/civitai/sd_1.5/RealisticMix_14492439.jpeg differ diff --git a/civitai/sd_1.5/Realistic_Comic_Book_4792618.jpeg b/civitai/sd_1.5/Realistic_Comic_Book_4792618.jpeg index d35edb4..747d03e 100644 Binary files a/civitai/sd_1.5/Realistic_Comic_Book_4792618.jpeg and b/civitai/sd_1.5/Realistic_Comic_Book_4792618.jpeg differ diff --git a/civitai/sd_1.5/Realistic_Stock_Photo_13316323.jpeg b/civitai/sd_1.5/Realistic_Stock_Photo_13316323.jpeg index 9935809..317e2a2 100644 Binary files a/civitai/sd_1.5/Realistic_Stock_Photo_13316323.jpeg and b/civitai/sd_1.5/Realistic_Stock_Photo_13316323.jpeg differ diff --git a/civitai/sd_1.5/Redwater_2897697.jpeg b/civitai/sd_1.5/Redwater_2897697.jpeg index 099e437..eb930d0 100644 Binary files a/civitai/sd_1.5/Redwater_2897697.jpeg and b/civitai/sd_1.5/Redwater_2897697.jpeg differ diff --git a/civitai/sd_1.5/Refined_840625.jpeg b/civitai/sd_1.5/Refined_840625.jpeg index 883234e..afbfc1b 100644 Binary files a/civitai/sd_1.5/Refined_840625.jpeg and b/civitai/sd_1.5/Refined_840625.jpeg differ diff --git a/civitai/sd_1.5/RestlessExistence_3088967.jpeg b/civitai/sd_1.5/RestlessExistence_3088967.jpeg index e5d2859..ed73899 100644 Binary files a/civitai/sd_1.5/RestlessExistence_3088967.jpeg and b/civitai/sd_1.5/RestlessExistence_3088967.jpeg differ diff --git a/civitai/sd_1.5/RoboeticInkpunkDreamShaperChromaV5_47155.jpeg b/civitai/sd_1.5/RoboeticInkpunkDreamShaperChromaV5_47155.jpeg index 40594b7..301a0ed 100644 Binary files a/civitai/sd_1.5/RoboeticInkpunkDreamShaperChromaV5_47155.jpeg and b/civitai/sd_1.5/RoboeticInkpunkDreamShaperChromaV5_47155.jpeg differ diff --git a/civitai/sd_1.5/Roboetic_s_mix_160290.jpeg b/civitai/sd_1.5/Roboetic_s_mix_160290.jpeg index a495139..70d4288 100644 Binary files a/civitai/sd_1.5/Roboetic_s_mix_160290.jpeg and b/civitai/sd_1.5/Roboetic_s_mix_160290.jpeg differ diff --git a/civitai/sd_1.5/RunDiffusion_FX_2.5D_1027082.jpeg b/civitai/sd_1.5/RunDiffusion_FX_2.5D_1027082.jpeg index 63b323a..29a9d58 100644 Binary files a/civitai/sd_1.5/RunDiffusion_FX_2.5D_1027082.jpeg and b/civitai/sd_1.5/RunDiffusion_FX_2.5D_1027082.jpeg differ diff --git a/civitai/sd_1.5/RunDiffusion_FX_Photorealistic_1099148.jpeg b/civitai/sd_1.5/RunDiffusion_FX_Photorealistic_1099148.jpeg index 47a97f5..4e778f4 100644 Binary files a/civitai/sd_1.5/RunDiffusion_FX_Photorealistic_1099148.jpeg and b/civitai/sd_1.5/RunDiffusion_FX_Photorealistic_1099148.jpeg differ diff --git a/civitai/sd_1.5/SCMix_255056.jpeg b/civitai/sd_1.5/SCMix_255056.jpeg index 63b03d9..f5d83a8 100644 Binary files a/civitai/sd_1.5/SCMix_255056.jpeg and b/civitai/sd_1.5/SCMix_255056.jpeg differ diff --git a/civitai/sd_1.5/SDHK_1339897.jpeg b/civitai/sd_1.5/SDHK_1339897.jpeg index b61678c..729c4a4 100644 Binary files a/civitai/sd_1.5/SDHK_1339897.jpeg and b/civitai/sd_1.5/SDHK_1339897.jpeg differ diff --git a/civitai/sd_1.5/SDS_FILM___่ƒถ็‰‡ๆ‘„ๅฝฑ_10449650.jpeg b/civitai/sd_1.5/SDS_FILM___่ƒถ็‰‡ๆ‘„ๅฝฑ_10449650.jpeg index 16d733d..95dc04c 100644 Binary files a/civitai/sd_1.5/SDS_FILM___่ƒถ็‰‡ๆ‘„ๅฝฑ_10449650.jpeg and b/civitai/sd_1.5/SDS_FILM___่ƒถ็‰‡ๆ‘„ๅฝฑ_10449650.jpeg differ diff --git a/civitai/sd_1.5/SDVN5-3DCuteWave_1411701.jpeg b/civitai/sd_1.5/SDVN5-3DCuteWave_1411701.jpeg index 0458bb6..110c83c 100644 Binary files a/civitai/sd_1.5/SDVN5-3DCuteWave_1411701.jpeg and b/civitai/sd_1.5/SDVN5-3DCuteWave_1411701.jpeg differ diff --git a/civitai/sd_1.5/SEX_Sexy_Eastern_Experience_v3____Realistic_Asian_ๅฅณ_822278.jpeg b/civitai/sd_1.5/SEX_Sexy_Eastern_Experience_v3____Realistic_Asian_ๅฅณ_822278.jpeg index 6af21f9..be9f161 100644 Binary files a/civitai/sd_1.5/SEX_Sexy_Eastern_Experience_v3____Realistic_Asian_ๅฅณ_822278.jpeg and b/civitai/sd_1.5/SEX_Sexy_Eastern_Experience_v3____Realistic_Asian_ๅฅณ_822278.jpeg differ diff --git a/civitai/sd_1.5/SHM_Realistic_16569122.jpeg b/civitai/sd_1.5/SHM_Realistic_16569122.jpeg index 51640be..abb72c0 100644 Binary files a/civitai/sd_1.5/SHM_Realistic_16569122.jpeg and b/civitai/sd_1.5/SHM_Realistic_16569122.jpeg differ diff --git a/civitai/sd_1.5/SLDR__Realism__Photography__964325.jpeg b/civitai/sd_1.5/SLDR__Realism__Photography__964325.jpeg index 13656a3..21316aa 100644 Binary files a/civitai/sd_1.5/SLDR__Realism__Photography__964325.jpeg and b/civitai/sd_1.5/SLDR__Realism__Photography__964325.jpeg differ diff --git a/civitai/sd_1.5/SPYBG_s_Toolkit_for_Digital_Artists__175893.jpeg b/civitai/sd_1.5/SPYBG_s_Toolkit_for_Digital_Artists__175893.jpeg index 52b7c9b..85c2929 100644 Binary files a/civitai/sd_1.5/SPYBG_s_Toolkit_for_Digital_Artists__175893.jpeg and b/civitai/sd_1.5/SPYBG_s_Toolkit_for_Digital_Artists__175893.jpeg differ diff --git a/civitai/sd_1.5/SSSSLLDDLL__shiny_sissy_luxury_latex_dress_for_doll__945930.jpeg b/civitai/sd_1.5/SSSSLLDDLL__shiny_sissy_luxury_latex_dress_for_doll__945930.jpeg index e1367bb..1defad3 100644 Binary files a/civitai/sd_1.5/SSSSLLDDLL__shiny_sissy_luxury_latex_dress_for_doll__945930.jpeg and b/civitai/sd_1.5/SSSSLLDDLL__shiny_sissy_luxury_latex_dress_for_doll__945930.jpeg differ diff --git a/civitai/sd_1.5/SakushiMix__finished__1869281.jpeg b/civitai/sd_1.5/SakushiMix__finished__1869281.jpeg index dca58c8..4c78899 100644 Binary files a/civitai/sd_1.5/SakushiMix__finished__1869281.jpeg and b/civitai/sd_1.5/SakushiMix__finished__1869281.jpeg differ diff --git a/civitai/sd_1.5/SaluteMix_246811.jpeg b/civitai/sd_1.5/SaluteMix_246811.jpeg index 4ebbcf9..d378bf4 100644 Binary files a/civitai/sd_1.5/SaluteMix_246811.jpeg and b/civitai/sd_1.5/SaluteMix_246811.jpeg differ diff --git a/civitai/sd_1.5/SamDoesSexy_Blend__Legacy_Model__8747010.jpeg b/civitai/sd_1.5/SamDoesSexy_Blend__Legacy_Model__8747010.jpeg index 8415cfe..6017d80 100644 Binary files a/civitai/sd_1.5/SamDoesSexy_Blend__Legacy_Model__8747010.jpeg and b/civitai/sd_1.5/SamDoesSexy_Blend__Legacy_Model__8747010.jpeg differ diff --git a/civitai/sd_1.5/Samdoesarts_Ultmerge_796.jpeg b/civitai/sd_1.5/Samdoesarts_Ultmerge_796.jpeg index aef9340..e255cbd 100644 Binary files a/civitai/sd_1.5/Samdoesarts_Ultmerge_796.jpeg and b/civitai/sd_1.5/Samdoesarts_Ultmerge_796.jpeg differ diff --git a/civitai/sd_1.5/Sci-Fi_Diffusion_v1.0_36078.jpeg b/civitai/sd_1.5/Sci-Fi_Diffusion_v1.0_36078.jpeg index 30308ad..15eb26b 100644 Binary files a/civitai/sd_1.5/Sci-Fi_Diffusion_v1.0_36078.jpeg and b/civitai/sd_1.5/Sci-Fi_Diffusion_v1.0_36078.jpeg differ diff --git a/civitai/sd_1.5/SeekYou_827283.jpeg b/civitai/sd_1.5/SeekYou_827283.jpeg index 19b8aff..aaa1028 100644 Binary files a/civitai/sd_1.5/SeekYou_827283.jpeg and b/civitai/sd_1.5/SeekYou_827283.jpeg differ diff --git a/civitai/sd_1.5/Serenity_7101007.jpeg b/civitai/sd_1.5/Serenity_7101007.jpeg index 9d0f75c..392b63e 100644 Binary files a/civitai/sd_1.5/Serenity_7101007.jpeg and b/civitai/sd_1.5/Serenity_7101007.jpeg differ diff --git a/civitai/sd_1.5/Simply_Beautiful_580759.jpeg b/civitai/sd_1.5/Simply_Beautiful_580759.jpeg index e697685..ba69db1 100644 Binary files a/civitai/sd_1.5/Simply_Beautiful_580759.jpeg and b/civitai/sd_1.5/Simply_Beautiful_580759.jpeg differ diff --git a/civitai/sd_1.5/SleeplessMix_473585.jpeg b/civitai/sd_1.5/SleeplessMix_473585.jpeg index ff00b2e..35e6b51 100644 Binary files a/civitai/sd_1.5/SleeplessMix_473585.jpeg and b/civitai/sd_1.5/SleeplessMix_473585.jpeg differ diff --git a/civitai/sd_1.5/Somman_2712133.jpeg b/civitai/sd_1.5/Somman_2712133.jpeg index 410cbcd..a2acbc2 100644 Binary files a/civitai/sd_1.5/Somman_2712133.jpeg and b/civitai/sd_1.5/Somman_2712133.jpeg differ diff --git a/civitai/sd_1.5/Stable_Video_Diffusion_-_SVD_6298188.jpeg b/civitai/sd_1.5/Stable_Video_Diffusion_-_SVD_6298188.jpeg index 3c1a3c5..09b6443 100644 Binary files a/civitai/sd_1.5/Stable_Video_Diffusion_-_SVD_6298188.jpeg and b/civitai/sd_1.5/Stable_Video_Diffusion_-_SVD_6298188.jpeg differ diff --git a/civitai/sd_1.5/StablyDiffused_s_Aesthetic_Mix_55079.jpeg b/civitai/sd_1.5/StablyDiffused_s_Aesthetic_Mix_55079.jpeg index 1ec6fe1..5594c3d 100644 Binary files a/civitai/sd_1.5/StablyDiffused_s_Aesthetic_Mix_55079.jpeg and b/civitai/sd_1.5/StablyDiffused_s_Aesthetic_Mix_55079.jpeg differ diff --git a/civitai/sd_1.5/StingerMix_2027335.jpeg b/civitai/sd_1.5/StingerMix_2027335.jpeg index 2497a30..423c7b2 100644 Binary files a/civitai/sd_1.5/StingerMix_2027335.jpeg and b/civitai/sd_1.5/StingerMix_2027335.jpeg differ diff --git a/civitai/sd_1.5/Store_Bought_Gyoza__้คƒๅญMix__3736614.jpeg b/civitai/sd_1.5/Store_Bought_Gyoza__้คƒๅญMix__3736614.jpeg index 60faffe..60a3e54 100644 Binary files a/civitai/sd_1.5/Store_Bought_Gyoza__้คƒๅญMix__3736614.jpeg and b/civitai/sd_1.5/Store_Bought_Gyoza__้คƒๅญMix__3736614.jpeg differ diff --git a/civitai/sd_1.5/Stygian_Mix_43233498.jpeg b/civitai/sd_1.5/Stygian_Mix_43233498.jpeg index 15686f2..d0571ff 100644 Binary files a/civitai/sd_1.5/Stygian_Mix_43233498.jpeg and b/civitai/sd_1.5/Stygian_Mix_43233498.jpeg differ diff --git a/civitai/sd_1.5/Sudachi_1066543.jpeg b/civitai/sd_1.5/Sudachi_1066543.jpeg index 5da1fda..a6b7717 100644 Binary files a/civitai/sd_1.5/Sudachi_1066543.jpeg and b/civitai/sd_1.5/Sudachi_1066543.jpeg differ diff --git a/civitai/sd_1.5/Super_invincible_and_cute__2910281.jpeg b/civitai/sd_1.5/Super_invincible_and_cute__2910281.jpeg index 534e6c1..5ae37d7 100644 Binary files a/civitai/sd_1.5/Super_invincible_and_cute__2910281.jpeg and b/civitai/sd_1.5/Super_invincible_and_cute__2910281.jpeg differ diff --git a/civitai/sd_1.5/SweetBoys_2D_772932.jpeg b/civitai/sd_1.5/SweetBoys_2D_772932.jpeg index 374294b..2330982 100644 Binary files a/civitai/sd_1.5/SweetBoys_2D_772932.jpeg and b/civitai/sd_1.5/SweetBoys_2D_772932.jpeg differ diff --git a/civitai/sd_1.5/Synergix_642987.jpeg b/civitai/sd_1.5/Synergix_642987.jpeg index 490790b..d33814a 100644 Binary files a/civitai/sd_1.5/Synergix_642987.jpeg and b/civitai/sd_1.5/Synergix_642987.jpeg differ diff --git a/civitai/sd_1.5/SynthwavePunk_9304.jpeg b/civitai/sd_1.5/SynthwavePunk_9304.jpeg index 5b2a5d4..174eb2c 100644 Binary files a/civitai/sd_1.5/SynthwavePunk_9304.jpeg and b/civitai/sd_1.5/SynthwavePunk_9304.jpeg differ diff --git a/civitai/sd_1.5/T-anime-v4__pruned__2914280.jpeg b/civitai/sd_1.5/T-anime-v4__pruned__2914280.jpeg index 34f7ad3..a14c780 100644 Binary files a/civitai/sd_1.5/T-anime-v4__pruned__2914280.jpeg and b/civitai/sd_1.5/T-anime-v4__pruned__2914280.jpeg differ diff --git a/civitai/sd_1.5/T-shirt_print_designs__test_model__52675.jpeg b/civitai/sd_1.5/T-shirt_print_designs__test_model__52675.jpeg index 936485f..400d80c 100644 Binary files a/civitai/sd_1.5/T-shirt_print_designs__test_model__52675.jpeg and b/civitai/sd_1.5/T-shirt_print_designs__test_model__52675.jpeg differ diff --git a/civitai/sd_1.5/TMND-Mix_3544500.jpeg b/civitai/sd_1.5/TMND-Mix_3544500.jpeg index fc8ce3a..e2697b8 100644 Binary files a/civitai/sd_1.5/TMND-Mix_3544500.jpeg and b/civitai/sd_1.5/TMND-Mix_3544500.jpeg differ diff --git a/civitai/sd_1.5/Tang_Yuan__ๆฑคๅœ†Mix__1142879.jpeg b/civitai/sd_1.5/Tang_Yuan__ๆฑคๅœ†Mix__1142879.jpeg index d3c19dc..2c11a5f 100644 Binary files a/civitai/sd_1.5/Tang_Yuan__ๆฑคๅœ†Mix__1142879.jpeg and b/civitai/sd_1.5/Tang_Yuan__ๆฑคๅœ†Mix__1142879.jpeg differ diff --git a/civitai/sd_1.5/Taureal_Mix_1122590.jpeg b/civitai/sd_1.5/Taureal_Mix_1122590.jpeg index 2cd00c4..001563b 100644 Binary files a/civitai/sd_1.5/Taureal_Mix_1122590.jpeg and b/civitai/sd_1.5/Taureal_Mix_1122590.jpeg differ diff --git a/civitai/sd_1.5/TheAlly_s_Mix_IV__Verisimilar_522937.jpeg b/civitai/sd_1.5/TheAlly_s_Mix_IV__Verisimilar_522937.jpeg index 690af79..ae9e6c1 100644 Binary files a/civitai/sd_1.5/TheAlly_s_Mix_IV__Verisimilar_522937.jpeg and b/civitai/sd_1.5/TheAlly_s_Mix_IV__Verisimilar_522937.jpeg differ diff --git a/civitai/sd_1.5/The_Truality_Engine_5226530.jpeg b/civitai/sd_1.5/The_Truality_Engine_5226530.jpeg index 08a2780..adc9a99 100644 Binary files a/civitai/sd_1.5/The_Truality_Engine_5226530.jpeg and b/civitai/sd_1.5/The_Truality_Engine_5226530.jpeg differ diff --git a/civitai/sd_1.5/ThisIsReal_30990529.jpeg b/civitai/sd_1.5/ThisIsReal_30990529.jpeg index f0ad8a5..d0b5083 100644 Binary files a/civitai/sd_1.5/ThisIsReal_30990529.jpeg and b/civitai/sd_1.5/ThisIsReal_30990529.jpeg differ diff --git a/civitai/sd_1.5/ToonYou_-_JP_1197201.jpeg b/civitai/sd_1.5/ToonYou_-_JP_1197201.jpeg index 2d90e35..f3afbfc 100644 Binary files a/civitai/sd_1.5/ToonYou_-_JP_1197201.jpeg and b/civitai/sd_1.5/ToonYou_-_JP_1197201.jpeg differ diff --git a/civitai/sd_1.5/ToonYou_1726591.jpeg b/civitai/sd_1.5/ToonYou_1726591.jpeg index 95c36f0..f33cebc 100644 Binary files a/civitai/sd_1.5/ToonYou_1726591.jpeg and b/civitai/sd_1.5/ToonYou_1726591.jpeg differ diff --git a/civitai/sd_1.5/Toon_Babes_1859401.jpeg b/civitai/sd_1.5/Toon_Babes_1859401.jpeg index ca048d4..67a6b85 100644 Binary files a/civitai/sd_1.5/Toon_Babes_1859401.jpeg and b/civitai/sd_1.5/Toon_Babes_1859401.jpeg differ diff --git a/civitai/sd_1.5/Tsubaki_2744347.jpeg b/civitai/sd_1.5/Tsubaki_2744347.jpeg index ac5112c..54ac991 100644 Binary files a/civitai/sd_1.5/Tsubaki_2744347.jpeg and b/civitai/sd_1.5/Tsubaki_2744347.jpeg differ diff --git a/civitai/sd_1.5/Tutu_s_Photo_Deception_ๅ›พๅ›พ็š„็…ง้ช—_ใƒใƒฅใƒใƒฅใฎๅ†™็œŸใฎๅฝใ‚Š_6672130.jpeg b/civitai/sd_1.5/Tutu_s_Photo_Deception_ๅ›พๅ›พ็š„็…ง้ช—_ใƒใƒฅใƒใƒฅใฎๅ†™็œŸใฎๅฝใ‚Š_6672130.jpeg index 31eb86b..7d2531c 100644 Binary files a/civitai/sd_1.5/Tutu_s_Photo_Deception_ๅ›พๅ›พ็š„็…ง้ช—_ใƒใƒฅใƒใƒฅใฎๅ†™็œŸใฎๅฝใ‚Š_6672130.jpeg and b/civitai/sd_1.5/Tutu_s_Photo_Deception_ๅ›พๅ›พ็š„็…ง้ช—_ใƒใƒฅใƒใƒฅใฎๅ†™็œŸใฎๅฝใ‚Š_6672130.jpeg differ diff --git a/civitai/sd_1.5/ULTRA-ILLUSI0N_2D_242712.jpeg b/civitai/sd_1.5/ULTRA-ILLUSI0N_2D_242712.jpeg index b7cb063..963f5b5 100644 Binary files a/civitai/sd_1.5/ULTRA-ILLUSI0N_2D_242712.jpeg and b/civitai/sd_1.5/ULTRA-ILLUSI0N_2D_242712.jpeg differ diff --git a/civitai/sd_1.5/UniverseStable_3459303.jpeg b/civitai/sd_1.5/UniverseStable_3459303.jpeg index 6f5105b..2007671 100644 Binary files a/civitai/sd_1.5/UniverseStable_3459303.jpeg and b/civitai/sd_1.5/UniverseStable_3459303.jpeg differ diff --git a/civitai/sd_1.5/UnstableInkDream_10643162.jpeg b/civitai/sd_1.5/UnstableInkDream_10643162.jpeg index 23a6796..11b5c5a 100644 Binary files a/civitai/sd_1.5/UnstableInkDream_10643162.jpeg and b/civitai/sd_1.5/UnstableInkDream_10643162.jpeg differ diff --git a/civitai/sd_1.5/V3_746449.jpeg b/civitai/sd_1.5/V3_746449.jpeg index 3001693..1590704 100644 Binary files a/civitai/sd_1.5/V3_746449.jpeg and b/civitai/sd_1.5/V3_746449.jpeg differ diff --git a/civitai/sd_1.5/Vela-Mix_943076.jpeg b/civitai/sd_1.5/Vela-Mix_943076.jpeg index 90d0467..0bba971 100644 Binary files a/civitai/sd_1.5/Vela-Mix_943076.jpeg and b/civitai/sd_1.5/Vela-Mix_943076.jpeg differ diff --git a/civitai/sd_1.5/VinteProtogenMix_256859.jpeg b/civitai/sd_1.5/VinteProtogenMix_256859.jpeg index 79d1c7c..e0150cd 100644 Binary files a/civitai/sd_1.5/VinteProtogenMix_256859.jpeg and b/civitai/sd_1.5/VinteProtogenMix_256859.jpeg differ diff --git a/civitai/sd_1.5/VisionGen_-_Realism_Reborn_147419.jpeg b/civitai/sd_1.5/VisionGen_-_Realism_Reborn_147419.jpeg index d0a38e1..567f241 100644 Binary files a/civitai/sd_1.5/VisionGen_-_Realism_Reborn_147419.jpeg and b/civitai/sd_1.5/VisionGen_-_Realism_Reborn_147419.jpeg differ diff --git a/civitai/sd_1.5/VividOrangeMix_4214268.jpeg b/civitai/sd_1.5/VividOrangeMix_4214268.jpeg index 96562ee..ae77bdd 100644 Binary files a/civitai/sd_1.5/VividOrangeMix_4214268.jpeg and b/civitai/sd_1.5/VividOrangeMix_4214268.jpeg differ diff --git a/civitai/sd_1.5/Vixon_s_Fantasy_Mix_5715254.jpeg b/civitai/sd_1.5/Vixon_s_Fantasy_Mix_5715254.jpeg index d1259bb..81c2204 100644 Binary files a/civitai/sd_1.5/Vixon_s_Fantasy_Mix_5715254.jpeg and b/civitai/sd_1.5/Vixon_s_Fantasy_Mix_5715254.jpeg differ diff --git a/civitai/sd_1.5/WWanime_1046320.jpeg b/civitai/sd_1.5/WWanime_1046320.jpeg index 71c841b..4bbb006 100644 Binary files a/civitai/sd_1.5/WWanime_1046320.jpeg and b/civitai/sd_1.5/WWanime_1046320.jpeg differ diff --git a/civitai/sd_1.5/Waifu_s_N_Dungeons_-_v2.0_-__ANIME_FANTASY_MODEL__708434.jpeg b/civitai/sd_1.5/Waifu_s_N_Dungeons_-_v2.0_-__ANIME_FANTASY_MODEL__708434.jpeg index b4d11a3..2644526 100644 Binary files a/civitai/sd_1.5/Waifu_s_N_Dungeons_-_v2.0_-__ANIME_FANTASY_MODEL__708434.jpeg and b/civitai/sd_1.5/Waifu_s_N_Dungeons_-_v2.0_-__ANIME_FANTASY_MODEL__708434.jpeg differ diff --git a/civitai/sd_1.5/WesternComicMix_by_Mr_Monster___Model_6415707.jpeg b/civitai/sd_1.5/WesternComicMix_by_Mr_Monster___Model_6415707.jpeg index 17b678d..dcfd5c3 100644 Binary files a/civitai/sd_1.5/WesternComicMix_by_Mr_Monster___Model_6415707.jpeg and b/civitai/sd_1.5/WesternComicMix_by_Mr_Monster___Model_6415707.jpeg differ diff --git a/civitai/sd_1.5/Western_Animation_Diffusion_1078708.jpeg b/civitai/sd_1.5/Western_Animation_Diffusion_1078708.jpeg index a4ac131..745e1ef 100644 Binary files a/civitai/sd_1.5/Western_Animation_Diffusion_1078708.jpeg and b/civitai/sd_1.5/Western_Animation_Diffusion_1078708.jpeg differ diff --git a/civitai/sd_1.5/Western_Cartoon_Type_A_739595.jpeg b/civitai/sd_1.5/Western_Cartoon_Type_A_739595.jpeg index 7008876..d900d7e 100644 Binary files a/civitai/sd_1.5/Western_Cartoon_Type_A_739595.jpeg and b/civitai/sd_1.5/Western_Cartoon_Type_A_739595.jpeg differ diff --git a/civitai/sd_1.5/Westmix_V.1__Photo_Realistic_Model_for_Beautiful_Western_Girl_1748648.jpeg b/civitai/sd_1.5/Westmix_V.1__Photo_Realistic_Model_for_Beautiful_Western_Girl_1748648.jpeg index 7acb9cc..deaf04a 100644 Binary files a/civitai/sd_1.5/Westmix_V.1__Photo_Realistic_Model_for_Beautiful_Western_Girl_1748648.jpeg and b/civitai/sd_1.5/Westmix_V.1__Photo_Realistic_Model_for_Beautiful_Western_Girl_1748648.jpeg differ diff --git a/civitai/sd_1.5/WinterMoonMix_ๅ†ฌไน‹ๆœˆ_157025.jpeg b/civitai/sd_1.5/WinterMoonMix_ๅ†ฌไน‹ๆœˆ_157025.jpeg index 9d92616..7f87374 100644 Binary files a/civitai/sd_1.5/WinterMoonMix_ๅ†ฌไน‹ๆœˆ_157025.jpeg and b/civitai/sd_1.5/WinterMoonMix_ๅ†ฌไน‹ๆœˆ_157025.jpeg differ diff --git a/civitai/sd_1.5/WolfBoys_2D_763525.jpeg b/civitai/sd_1.5/WolfBoys_2D_763525.jpeg index edb571e..d64ff55 100644 Binary files a/civitai/sd_1.5/WolfBoys_2D_763525.jpeg and b/civitai/sd_1.5/WolfBoys_2D_763525.jpeg differ diff --git a/civitai/sd_1.5/WonderMix_190925.jpeg b/civitai/sd_1.5/WonderMix_190925.jpeg index 3ce58a6..284669a 100644 Binary files a/civitai/sd_1.5/WonderMix_190925.jpeg and b/civitai/sd_1.5/WonderMix_190925.jpeg differ diff --git a/civitai/sd_1.5/XSMerge-RealisticVisionV3-ForArchitectural_1411984.jpeg b/civitai/sd_1.5/XSMerge-RealisticVisionV3-ForArchitectural_1411984.jpeg index af3a217..340daf6 100644 Binary files a/civitai/sd_1.5/XSMerge-RealisticVisionV3-ForArchitectural_1411984.jpeg and b/civitai/sd_1.5/XSMerge-RealisticVisionV3-ForArchitectural_1411984.jpeg differ diff --git a/civitai/sd_1.5/XSMix_450389.jpeg b/civitai/sd_1.5/XSMix_450389.jpeg index 7c7d6ee..7cdb8a1 100644 Binary files a/civitai/sd_1.5/XSMix_450389.jpeg and b/civitai/sd_1.5/XSMix_450389.jpeg differ diff --git a/civitai/sd_1.5/XSarchitectural-InteriorDesign-ForXSLora_545559.jpeg b/civitai/sd_1.5/XSarchitectural-InteriorDesign-ForXSLora_545559.jpeg index 5ff18db..2cec869 100644 Binary files a/civitai/sd_1.5/XSarchitectural-InteriorDesign-ForXSLora_545559.jpeg and b/civitai/sd_1.5/XSarchitectural-InteriorDesign-ForXSLora_545559.jpeg differ diff --git a/civitai/sd_1.5/XSarchitecturalV3Commercialbuildingrendering_1412072.jpeg b/civitai/sd_1.5/XSarchitecturalV3Commercialbuildingrendering_1412072.jpeg index 869c2df..4cc6809 100644 Binary files a/civitai/sd_1.5/XSarchitecturalV3Commercialbuildingrendering_1412072.jpeg and b/civitai/sd_1.5/XSarchitecturalV3Commercialbuildingrendering_1412072.jpeg differ diff --git a/civitai/sd_1.5/XXMixUnreal_1808138.jpeg b/civitai/sd_1.5/XXMixUnreal_1808138.jpeg index 098d0ce..96be77c 100644 Binary files a/civitai/sd_1.5/XXMixUnreal_1808138.jpeg and b/civitai/sd_1.5/XXMixUnreal_1808138.jpeg differ diff --git a/civitai/sd_1.5/XXMix_2.5D_778721.jpeg b/civitai/sd_1.5/XXMix_2.5D_778721.jpeg index 0c2b2af..b478108 100644 Binary files a/civitai/sd_1.5/XXMix_2.5D_778721.jpeg and b/civitai/sd_1.5/XXMix_2.5D_778721.jpeg differ diff --git a/civitai/sd_1.5/XXMix_9realistic_4755487.jpeg b/civitai/sd_1.5/XXMix_9realistic_4755487.jpeg index f2572d3..c6108be 100644 Binary files a/civitai/sd_1.5/XXMix_9realistic_4755487.jpeg and b/civitai/sd_1.5/XXMix_9realistic_4755487.jpeg differ diff --git a/civitai/sd_1.5/XXMix_Petrichor_1596024.jpeg b/civitai/sd_1.5/XXMix_Petrichor_1596024.jpeg index 94b0fdf..955dfa7 100644 Binary files a/civitai/sd_1.5/XXMix_Petrichor_1596024.jpeg and b/civitai/sd_1.5/XXMix_Petrichor_1596024.jpeg differ diff --git a/civitai/sd_1.5/XenoEngine_-_ArtStyle_Mega_Model_7312848.jpeg b/civitai/sd_1.5/XenoEngine_-_ArtStyle_Mega_Model_7312848.jpeg index ddf689a..be0dc35 100644 Binary files a/civitai/sd_1.5/XenoEngine_-_ArtStyle_Mega_Model_7312848.jpeg and b/civitai/sd_1.5/XenoEngine_-_ArtStyle_Mega_Model_7312848.jpeg differ diff --git a/civitai/sd_1.5/XenoGASM__NSFW_Semi-Real_Portraits_and_Fetishes__3552485.jpeg b/civitai/sd_1.5/XenoGASM__NSFW_Semi-Real_Portraits_and_Fetishes__3552485.jpeg index 5432c5a..3e32bcd 100644 Binary files a/civitai/sd_1.5/XenoGASM__NSFW_Semi-Real_Portraits_and_Fetishes__3552485.jpeg and b/civitai/sd_1.5/XenoGASM__NSFW_Semi-Real_Portraits_and_Fetishes__3552485.jpeg differ diff --git a/civitai/sd_1.5/Xpero_End1ess_Model_67595.jpeg b/civitai/sd_1.5/Xpero_End1ess_Model_67595.jpeg index 7ba088c..488f61b 100644 Binary files a/civitai/sd_1.5/Xpero_End1ess_Model_67595.jpeg and b/civitai/sd_1.5/Xpero_End1ess_Model_67595.jpeg differ diff --git a/civitai/sd_1.5/YetAnotherAnimeMix_3603382.jpeg b/civitai/sd_1.5/YetAnotherAnimeMix_3603382.jpeg index c3a0040..4e79a35 100644 Binary files a/civitai/sd_1.5/YetAnotherAnimeMix_3603382.jpeg and b/civitai/sd_1.5/YetAnotherAnimeMix_3603382.jpeg differ diff --git a/civitai/sd_1.5/Yotta_Mix_3172074.jpeg b/civitai/sd_1.5/Yotta_Mix_3172074.jpeg index 0c77f9b..bce8aab 100644 Binary files a/civitai/sd_1.5/Yotta_Mix_3172074.jpeg and b/civitai/sd_1.5/Yotta_Mix_3172074.jpeg differ diff --git a/civitai/sd_1.5/Yuzu_1484403.jpeg b/civitai/sd_1.5/Yuzu_1484403.jpeg index d958eb3..c100fb1 100644 Binary files a/civitai/sd_1.5/Yuzu_1484403.jpeg and b/civitai/sd_1.5/Yuzu_1484403.jpeg differ diff --git a/civitai/sd_1.5/ZHMix-Dramatic_3811206.jpeg b/civitai/sd_1.5/ZHMix-Dramatic_3811206.jpeg index 7b87037..8d14bb9 100644 Binary files a/civitai/sd_1.5/ZHMix-Dramatic_3811206.jpeg and b/civitai/sd_1.5/ZHMix-Dramatic_3811206.jpeg differ diff --git a/civitai/sd_1.5/ZHMix-Realistic_4595700.jpeg b/civitai/sd_1.5/ZHMix-Realistic_4595700.jpeg index 2f3d9b2..8a6c6d7 100644 Binary files a/civitai/sd_1.5/ZHMix-Realistic_4595700.jpeg and b/civitai/sd_1.5/ZHMix-Realistic_4595700.jpeg differ diff --git a/civitai/sd_1.5/ZavyMix_1726411.jpeg b/civitai/sd_1.5/ZavyMix_1726411.jpeg index b427d38..0ae82a5 100644 Binary files a/civitai/sd_1.5/ZavyMix_1726411.jpeg and b/civitai/sd_1.5/ZavyMix_1726411.jpeg differ diff --git a/civitai/sd_1.5/ZemiHR_605166.jpeg b/civitai/sd_1.5/ZemiHR_605166.jpeg index 39075a6..54c4805 100644 Binary files a/civitai/sd_1.5/ZemiHR_605166.jpeg and b/civitai/sd_1.5/ZemiHR_605166.jpeg differ diff --git a/civitai/sd_1.5/_Checkpoint_YesMix_20076184.jpeg b/civitai/sd_1.5/_Checkpoint_YesMix_20076184.jpeg index b7a7df7..c610069 100644 Binary files a/civitai/sd_1.5/_Checkpoint_YesMix_20076184.jpeg and b/civitai/sd_1.5/_Checkpoint_YesMix_20076184.jpeg differ diff --git a/civitai/sd_1.5/_M4RV3LS___DUNGEONS_-_NEW__v4.0_-__COMICS___FANTASY_MODEL___1997468.jpeg b/civitai/sd_1.5/_M4RV3LS___DUNGEONS_-_NEW__v4.0_-__COMICS___FANTASY_MODEL___1997468.jpeg index 5c52eaa..6b72c78 100644 Binary files a/civitai/sd_1.5/_M4RV3LS___DUNGEONS_-_NEW__v4.0_-__COMICS___FANTASY_MODEL___1997468.jpeg and b/civitai/sd_1.5/_M4RV3LS___DUNGEONS_-_NEW__v4.0_-__COMICS___FANTASY_MODEL___1997468.jpeg differ diff --git a/civitai/sd_1.5/_๐•ด๐–‘๐–‘๐–š๐–˜๐–™๐–—๐–”_-_3RD_Ed._NEW__-__ILLUSTRO_PHOTOREAL_FANTASY_MODEL___2270624.jpeg b/civitai/sd_1.5/_๐•ด๐–‘๐–‘๐–š๐–˜๐–™๐–—๐–”_-_3RD_Ed._NEW__-__ILLUSTRO_PHOTOREAL_FANTASY_MODEL___2270624.jpeg index 75ae809..3d92d67 100644 Binary files a/civitai/sd_1.5/_๐•ด๐–‘๐–‘๐–š๐–˜๐–™๐–—๐–”_-_3RD_Ed._NEW__-__ILLUSTRO_PHOTOREAL_FANTASY_MODEL___2270624.jpeg and b/civitai/sd_1.5/_๐•ด๐–‘๐–‘๐–š๐–˜๐–™๐–—๐–”_-_3RD_Ed._NEW__-__ILLUSTRO_PHOTOREAL_FANTASY_MODEL___2270624.jpeg differ diff --git a/civitai/sd_1.5/a7b3_520614.jpeg b/civitai/sd_1.5/a7b3_520614.jpeg index 113653c..43d5398 100644 Binary files a/civitai/sd_1.5/a7b3_520614.jpeg and b/civitai/sd_1.5/a7b3_520614.jpeg differ diff --git a/civitai/sd_1.5/animatrix_487267.jpeg b/civitai/sd_1.5/animatrix_487267.jpeg index 84f4e58..16d48a5 100644 Binary files a/civitai/sd_1.5/animatrix_487267.jpeg and b/civitai/sd_1.5/animatrix_487267.jpeg differ diff --git a/civitai/sd_1.5/architecture_Exterior_SDlife_Chiasedamme_2436038.jpeg b/civitai/sd_1.5/architecture_Exterior_SDlife_Chiasedamme_2436038.jpeg index c175957..1a2f8b1 100644 Binary files a/civitai/sd_1.5/architecture_Exterior_SDlife_Chiasedamme_2436038.jpeg and b/civitai/sd_1.5/architecture_Exterior_SDlife_Chiasedamme_2436038.jpeg differ diff --git a/civitai/sd_1.5/betterMix_Anime_5405973.jpeg b/civitai/sd_1.5/betterMix_Anime_5405973.jpeg index cf82389..58cdb1f 100644 Binary files a/civitai/sd_1.5/betterMix_Anime_5405973.jpeg and b/civitai/sd_1.5/betterMix_Anime_5405973.jpeg differ diff --git a/civitai/sd_1.5/blue_pencil_1355450.jpeg b/civitai/sd_1.5/blue_pencil_1355450.jpeg index 027e926..12d4271 100644 Binary files a/civitai/sd_1.5/blue_pencil_1355450.jpeg and b/civitai/sd_1.5/blue_pencil_1355450.jpeg differ diff --git a/civitai/sd_1.5/blue_pencil_realistic_1417690.jpeg b/civitai/sd_1.5/blue_pencil_realistic_1417690.jpeg index 81b2fdd..3d99add 100644 Binary files a/civitai/sd_1.5/blue_pencil_realistic_1417690.jpeg and b/civitai/sd_1.5/blue_pencil_realistic_1417690.jpeg differ diff --git a/civitai/sd_1.5/cartoonish_238085.jpeg b/civitai/sd_1.5/cartoonish_238085.jpeg index fc621eb..ec01dcd 100644 Binary files a/civitai/sd_1.5/cartoonish_238085.jpeg and b/civitai/sd_1.5/cartoonish_238085.jpeg differ diff --git a/civitai/sd_1.5/chilloutmix_koreanDoll_490124.jpeg b/civitai/sd_1.5/chilloutmix_koreanDoll_490124.jpeg index 6a30349..2b507e3 100644 Binary files a/civitai/sd_1.5/chilloutmix_koreanDoll_490124.jpeg and b/civitai/sd_1.5/chilloutmix_koreanDoll_490124.jpeg differ diff --git a/civitai/sd_1.5/chosen_Irises-mix_1711360.jpeg b/civitai/sd_1.5/chosen_Irises-mix_1711360.jpeg index 3d6289b..0f6e8b3 100644 Binary files a/civitai/sd_1.5/chosen_Irises-mix_1711360.jpeg and b/civitai/sd_1.5/chosen_Irises-mix_1711360.jpeg differ diff --git a/civitai/sd_1.5/cineMaErosPG_V4_1220307.jpeg b/civitai/sd_1.5/cineMaErosPG_V4_1220307.jpeg index 6bb7ff0..548ab55 100644 Binary files a/civitai/sd_1.5/cineMaErosPG_V4_1220307.jpeg and b/civitai/sd_1.5/cineMaErosPG_V4_1220307.jpeg differ diff --git a/civitai/sd_1.5/comi-noir-classic_v2_358501.jpeg b/civitai/sd_1.5/comi-noir-classic_v2_358501.jpeg index 9be12b3..dcc7590 100644 Binary files a/civitai/sd_1.5/comi-noir-classic_v2_358501.jpeg and b/civitai/sd_1.5/comi-noir-classic_v2_358501.jpeg differ diff --git a/civitai/sd_1.5/comi-noir_v2_1458735.jpeg b/civitai/sd_1.5/comi-noir_v2_1458735.jpeg index dc2efe7..6f0d88e 100644 Binary files a/civitai/sd_1.5/comi-noir_v2_1458735.jpeg and b/civitai/sd_1.5/comi-noir_v2_1458735.jpeg differ diff --git a/civitai/sd_1.5/counterfeit-V2.5_2.5d_tweak_119490.jpeg b/civitai/sd_1.5/counterfeit-V2.5_2.5d_tweak_119490.jpeg index 3e57b30..562bc5f 100644 Binary files a/civitai/sd_1.5/counterfeit-V2.5_2.5d_tweak_119490.jpeg and b/civitai/sd_1.5/counterfeit-V2.5_2.5d_tweak_119490.jpeg differ diff --git a/civitai/sd_1.5/dual_personality_968677.jpeg b/civitai/sd_1.5/dual_personality_968677.jpeg index 74fd4d9..9dee264 100644 Binary files a/civitai/sd_1.5/dual_personality_968677.jpeg and b/civitai/sd_1.5/dual_personality_968677.jpeg differ diff --git a/civitai/sd_1.5/dvArch_-_Multi-Prompt_Architecture_Tuned_Model_98306.jpeg b/civitai/sd_1.5/dvArch_-_Multi-Prompt_Architecture_Tuned_Model_98306.jpeg index 939439b..2897556 100644 Binary files a/civitai/sd_1.5/dvArch_-_Multi-Prompt_Architecture_Tuned_Model_98306.jpeg and b/civitai/sd_1.5/dvArch_-_Multi-Prompt_Architecture_Tuned_Model_98306.jpeg differ diff --git a/civitai/sd_1.5/endlessMix_919360.jpeg b/civitai/sd_1.5/endlessMix_919360.jpeg index 8225008..f742bc9 100644 Binary files a/civitai/sd_1.5/endlessMix_919360.jpeg and b/civitai/sd_1.5/endlessMix_919360.jpeg differ diff --git a/civitai/sd_1.5/endlessReality_8317160.jpeg b/civitai/sd_1.5/endlessReality_8317160.jpeg index 3cb3799..9f2de70 100644 Binary files a/civitai/sd_1.5/endlessReality_8317160.jpeg and b/civitai/sd_1.5/endlessReality_8317160.jpeg differ diff --git a/civitai/sd_1.5/epiC2.5D_553155.jpeg b/civitai/sd_1.5/epiC2.5D_553155.jpeg index 454195f..5f3e89d 100644 Binary files a/civitai/sd_1.5/epiC2.5D_553155.jpeg and b/civitai/sd_1.5/epiC2.5D_553155.jpeg differ diff --git a/civitai/sd_1.5/epiCBabes_Realistic_2079838.jpeg b/civitai/sd_1.5/epiCBabes_Realistic_2079838.jpeg index 59324be..6a760cc 100644 Binary files a/civitai/sd_1.5/epiCBabes_Realistic_2079838.jpeg and b/civitai/sd_1.5/epiCBabes_Realistic_2079838.jpeg differ diff --git a/civitai/sd_1.5/epiCDream_1936666.jpeg b/civitai/sd_1.5/epiCDream_1936666.jpeg index 89e71c1..96dce8b 100644 Binary files a/civitai/sd_1.5/epiCDream_1936666.jpeg and b/civitai/sd_1.5/epiCDream_1936666.jpeg differ diff --git a/civitai/sd_1.5/epiCPhotoGasm_9230454.jpeg b/civitai/sd_1.5/epiCPhotoGasm_9230454.jpeg index 9802196..8edea40 100644 Binary files a/civitai/sd_1.5/epiCPhotoGasm_9230454.jpeg and b/civitai/sd_1.5/epiCPhotoGasm_9230454.jpeg differ diff --git a/civitai/sd_1.5/epiCRealism_2103034.jpeg b/civitai/sd_1.5/epiCRealism_2103034.jpeg index c686889..1c8736d 100644 Binary files a/civitai/sd_1.5/epiCRealism_2103034.jpeg and b/civitai/sd_1.5/epiCRealism_2103034.jpeg differ diff --git a/civitai/sd_1.5/epi_2.5Dphotogodess_418626.jpeg b/civitai/sd_1.5/epi_2.5Dphotogodess_418626.jpeg index 8c9a7fd..af3e59d 100644 Binary files a/civitai/sd_1.5/epi_2.5Dphotogodess_418626.jpeg and b/civitai/sd_1.5/epi_2.5Dphotogodess_418626.jpeg differ diff --git a/civitai/sd_1.5/fCAnimeMix_-_fC__ๅŠจๆผซ__Anime__8378109.jpeg b/civitai/sd_1.5/fCAnimeMix_-_fC__ๅŠจๆผซ__Anime__8378109.jpeg index 070b0cd..716bc5e 100644 Binary files a/civitai/sd_1.5/fCAnimeMix_-_fC__ๅŠจๆผซ__Anime__8378109.jpeg and b/civitai/sd_1.5/fCAnimeMix_-_fC__ๅŠจๆผซ__Anime__8378109.jpeg differ diff --git a/civitai/sd_1.5/fCBlendMix_-_fC__็Žฐๅฎžไธปไน‰__Realism__4004070.jpeg b/civitai/sd_1.5/fCBlendMix_-_fC__็Žฐๅฎžไธปไน‰__Realism__4004070.jpeg index b96ed33..578c439 100644 Binary files a/civitai/sd_1.5/fCBlendMix_-_fC__็Žฐๅฎžไธปไน‰__Realism__4004070.jpeg and b/civitai/sd_1.5/fCBlendMix_-_fC__็Žฐๅฎžไธปไน‰__Realism__4004070.jpeg differ diff --git a/civitai/sd_1.5/fantasy-art-style_257808.jpeg b/civitai/sd_1.5/fantasy-art-style_257808.jpeg index 120c2a9..28ce5fe 100644 Binary files a/civitai/sd_1.5/fantasy-art-style_257808.jpeg and b/civitai/sd_1.5/fantasy-art-style_257808.jpeg differ diff --git a/civitai/sd_1.5/fennfoto_4219648.jpeg b/civitai/sd_1.5/fennfoto_4219648.jpeg index a3f1377..a774c9f 100644 Binary files a/civitai/sd_1.5/fennfoto_4219648.jpeg and b/civitai/sd_1.5/fennfoto_4219648.jpeg differ diff --git a/civitai/sd_1.5/graphic-art_1499099.jpeg b/civitai/sd_1.5/graphic-art_1499099.jpeg index 7a6fe1c..c54754d 100644 Binary files a/civitai/sd_1.5/graphic-art_1499099.jpeg and b/civitai/sd_1.5/graphic-art_1499099.jpeg differ diff --git a/civitai/sd_1.5/gyๅŠจๆผซ003_2065576.jpeg b/civitai/sd_1.5/gyๅŠจๆผซ003_2065576.jpeg index 84775c7..9325a8c 100644 Binary files a/civitai/sd_1.5/gyๅŠจๆผซ003_2065576.jpeg and b/civitai/sd_1.5/gyๅŠจๆผซ003_2065576.jpeg differ diff --git a/civitai/sd_1.5/hello25DVintageAnime_2698985.jpeg b/civitai/sd_1.5/hello25DVintageAnime_2698985.jpeg index 01da05f..11e8822 100644 Binary files a/civitai/sd_1.5/hello25DVintageAnime_2698985.jpeg and b/civitai/sd_1.5/hello25DVintageAnime_2698985.jpeg differ diff --git a/civitai/sd_1.5/hello25D_Anime_5221311.jpeg b/civitai/sd_1.5/hello25D_Anime_5221311.jpeg index a691f4e..580acac 100644 Binary files a/civitai/sd_1.5/hello25D_Anime_5221311.jpeg and b/civitai/sd_1.5/hello25D_Anime_5221311.jpeg differ diff --git a/civitai/sd_1.5/helloAsian_4680838.jpeg b/civitai/sd_1.5/helloAsian_4680838.jpeg index 1ed3bfc..3662ddb 100644 Binary files a/civitai/sd_1.5/helloAsian_4680838.jpeg and b/civitai/sd_1.5/helloAsian_4680838.jpeg differ diff --git a/civitai/sd_1.5/helloCartoonFilm_3969806.jpeg b/civitai/sd_1.5/helloCartoonFilm_3969806.jpeg index 5cec9a8..84a924f 100644 Binary files a/civitai/sd_1.5/helloCartoonFilm_3969806.jpeg and b/civitai/sd_1.5/helloCartoonFilm_3969806.jpeg differ diff --git a/civitai/sd_1.5/helloComic_5904019.jpeg b/civitai/sd_1.5/helloComic_5904019.jpeg index 886ecc9..09e8e97 100644 Binary files a/civitai/sd_1.5/helloComic_5904019.jpeg and b/civitai/sd_1.5/helloComic_5904019.jpeg differ diff --git a/civitai/sd_1.5/helloFlatAnime_7208868.jpeg b/civitai/sd_1.5/helloFlatAnime_7208868.jpeg index 4e788a9..fd16a29 100644 Binary files a/civitai/sd_1.5/helloFlatAnime_7208868.jpeg and b/civitai/sd_1.5/helloFlatAnime_7208868.jpeg differ diff --git a/civitai/sd_1.5/helloFlatArt_16103383.jpeg b/civitai/sd_1.5/helloFlatArt_16103383.jpeg index c314bc7..19bbc88 100644 Binary files a/civitai/sd_1.5/helloFlatArt_16103383.jpeg and b/civitai/sd_1.5/helloFlatArt_16103383.jpeg differ diff --git a/civitai/sd_1.5/helloFlatColorful2D_17373722.jpeg b/civitai/sd_1.5/helloFlatColorful2D_17373722.jpeg index ee5c2b6..192e64c 100644 Binary files a/civitai/sd_1.5/helloFlatColorful2D_17373722.jpeg and b/civitai/sd_1.5/helloFlatColorful2D_17373722.jpeg differ diff --git a/civitai/sd_1.5/helloIP3D_็›ฒ็›’IP_3802353.jpeg b/civitai/sd_1.5/helloIP3D_็›ฒ็›’IP_3802353.jpeg index 5fc5def..f21b561 100644 Binary files a/civitai/sd_1.5/helloIP3D_็›ฒ็›’IP_3802353.jpeg and b/civitai/sd_1.5/helloIP3D_็›ฒ็›’IP_3802353.jpeg differ diff --git a/civitai/sd_1.5/helloJPLassie_5376006.jpeg b/civitai/sd_1.5/helloJPLassie_5376006.jpeg index e237372..180887f 100644 Binary files a/civitai/sd_1.5/helloJPLassie_5376006.jpeg and b/civitai/sd_1.5/helloJPLassie_5376006.jpeg differ diff --git a/civitai/sd_1.5/helloObjects_7088176.jpeg b/civitai/sd_1.5/helloObjects_7088176.jpeg index 0eef54a..dbdd9db 100644 Binary files a/civitai/sd_1.5/helloObjects_7088176.jpeg and b/civitai/sd_1.5/helloObjects_7088176.jpeg differ diff --git a/civitai/sd_1.5/helloRealistic_1506997.jpeg b/civitai/sd_1.5/helloRealistic_1506997.jpeg index c914138..a498d17 100644 Binary files a/civitai/sd_1.5/helloRealistic_1506997.jpeg and b/civitai/sd_1.5/helloRealistic_1506997.jpeg differ diff --git a/civitai/sd_1.5/helloYoung25d_7176708.jpeg b/civitai/sd_1.5/helloYoung25d_7176708.jpeg index b495036..f7e68eb 100644 Binary files a/civitai/sd_1.5/helloYoung25d_7176708.jpeg and b/civitai/sd_1.5/helloYoung25d_7176708.jpeg differ diff --git a/civitai/sd_1.5/helloYoung2D_3723673.jpeg b/civitai/sd_1.5/helloYoung2D_3723673.jpeg index 7bc5157..8c81022 100644 Binary files a/civitai/sd_1.5/helloYoung2D_3723673.jpeg and b/civitai/sd_1.5/helloYoung2D_3723673.jpeg differ diff --git a/civitai/sd_1.5/hellokid25D_3118752.jpeg b/civitai/sd_1.5/hellokid25D_3118752.jpeg index 8ee8322..307f4b9 100644 Binary files a/civitai/sd_1.5/hellokid25D_3118752.jpeg and b/civitai/sd_1.5/hellokid25D_3118752.jpeg differ diff --git a/civitai/sd_1.5/hellokid2d_3067136.jpeg b/civitai/sd_1.5/hellokid2d_3067136.jpeg index 1da6ef9..4566f20 100644 Binary files a/civitai/sd_1.5/hellokid2d_3067136.jpeg and b/civitai/sd_1.5/hellokid2d_3067136.jpeg differ diff --git a/civitai/sd_1.5/hellomecha_16687256.jpeg b/civitai/sd_1.5/hellomecha_16687256.jpeg index 44b9f99..32a78f4 100644 Binary files a/civitai/sd_1.5/hellomecha_16687256.jpeg and b/civitai/sd_1.5/hellomecha_16687256.jpeg differ diff --git a/civitai/sd_1.5/hellonijicute25d_4580157.jpeg b/civitai/sd_1.5/hellonijicute25d_4580157.jpeg index 9ab61e1..5b3df14 100644 Binary files a/civitai/sd_1.5/hellonijicute25d_4580157.jpeg and b/civitai/sd_1.5/hellonijicute25d_4580157.jpeg differ diff --git a/civitai/sd_1.5/hellopure_4216683.jpeg b/civitai/sd_1.5/hellopure_4216683.jpeg index 8b21366..c3a91d6 100644 Binary files a/civitai/sd_1.5/hellopure_4216683.jpeg and b/civitai/sd_1.5/hellopure_4216683.jpeg differ diff --git a/civitai/sd_1.5/kidsMIX_1201541.jpeg b/civitai/sd_1.5/kidsMIX_1201541.jpeg index 796527c..248e539 100644 Binary files a/civitai/sd_1.5/kidsMIX_1201541.jpeg and b/civitai/sd_1.5/kidsMIX_1201541.jpeg differ diff --git a/civitai/sd_1.5/kisaragi_mix_1165471.jpeg b/civitai/sd_1.5/kisaragi_mix_1165471.jpeg index eb601f4..25c2d44 100644 Binary files a/civitai/sd_1.5/kisaragi_mix_1165471.jpeg and b/civitai/sd_1.5/kisaragi_mix_1165471.jpeg differ diff --git a/civitai/sd_1.5/knollingcase_8853.jpeg b/civitai/sd_1.5/knollingcase_8853.jpeg index 4dfd1a1..9639f75 100644 Binary files a/civitai/sd_1.5/knollingcase_8853.jpeg and b/civitai/sd_1.5/knollingcase_8853.jpeg differ diff --git a/civitai/sd_1.5/lametta_2849916.jpeg b/civitai/sd_1.5/lametta_2849916.jpeg index 7ead372..07c9229 100644 Binary files a/civitai/sd_1.5/lametta_2849916.jpeg and b/civitai/sd_1.5/lametta_2849916.jpeg differ diff --git a/civitai/sd_1.5/line_and_light_513126.jpeg b/civitai/sd_1.5/line_and_light_513126.jpeg index 82f9646..8db9ca2 100644 Binary files a/civitai/sd_1.5/line_and_light_513126.jpeg and b/civitai/sd_1.5/line_and_light_513126.jpeg differ diff --git a/civitai/sd_1.5/majicMIX_alpha_้บฆๆฉ˜็”ทๅ›ข_3564383.jpeg b/civitai/sd_1.5/majicMIX_alpha_้บฆๆฉ˜็”ทๅ›ข_3564383.jpeg index 580d214..4b1daef 100644 Binary files a/civitai/sd_1.5/majicMIX_alpha_้บฆๆฉ˜็”ทๅ›ข_3564383.jpeg and b/civitai/sd_1.5/majicMIX_alpha_้บฆๆฉ˜็”ทๅ›ข_3564383.jpeg differ diff --git a/civitai/sd_1.5/majicMIX_fantasy_้บฆๆฉ˜ๅนปๆƒณ_4367812.jpeg b/civitai/sd_1.5/majicMIX_fantasy_้บฆๆฉ˜ๅนปๆƒณ_4367812.jpeg index 301b135..4c978fc 100644 Binary files a/civitai/sd_1.5/majicMIX_fantasy_้บฆๆฉ˜ๅนปๆƒณ_4367812.jpeg and b/civitai/sd_1.5/majicMIX_fantasy_้บฆๆฉ˜ๅนปๆƒณ_4367812.jpeg differ diff --git a/civitai/sd_1.5/majicMIX_lux_้บฆๆฉ˜่พ‰่€€_5165866.jpeg b/civitai/sd_1.5/majicMIX_lux_้บฆๆฉ˜่พ‰่€€_5165866.jpeg index b160a3b..da1d730 100644 Binary files a/civitai/sd_1.5/majicMIX_lux_้บฆๆฉ˜่พ‰่€€_5165866.jpeg and b/civitai/sd_1.5/majicMIX_lux_้บฆๆฉ˜่พ‰่€€_5165866.jpeg differ diff --git a/civitai/sd_1.5/majicMIX_realistic_้บฆๆฉ˜ๅ†™ๅฎž_2805533.jpeg b/civitai/sd_1.5/majicMIX_realistic_้บฆๆฉ˜ๅ†™ๅฎž_2805533.jpeg index 14a4ed5..0e8ad50 100644 Binary files a/civitai/sd_1.5/majicMIX_realistic_้บฆๆฉ˜ๅ†™ๅฎž_2805533.jpeg and b/civitai/sd_1.5/majicMIX_realistic_้บฆๆฉ˜ๅ†™ๅฎž_2805533.jpeg differ diff --git a/civitai/sd_1.5/majicMIX_reverie_้บฆๆฉ˜ๆขฆๅนป_778310.jpeg b/civitai/sd_1.5/majicMIX_reverie_้บฆๆฉ˜ๆขฆๅนป_778310.jpeg index 8e701d1..fba7e9e 100644 Binary files a/civitai/sd_1.5/majicMIX_reverie_้บฆๆฉ˜ๆขฆๅนป_778310.jpeg and b/civitai/sd_1.5/majicMIX_reverie_้บฆๆฉ˜ๆขฆๅนป_778310.jpeg differ diff --git a/civitai/sd_1.5/majicMIX_sombre_้บฆๆฉ˜ๅ”ฏ็พŽ_841116.jpeg b/civitai/sd_1.5/majicMIX_sombre_้บฆๆฉ˜ๅ”ฏ็พŽ_841116.jpeg index c4bea7e..93b1012 100644 Binary files a/civitai/sd_1.5/majicMIX_sombre_้บฆๆฉ˜ๅ”ฏ็พŽ_841116.jpeg and b/civitai/sd_1.5/majicMIX_sombre_้บฆๆฉ˜ๅ”ฏ็พŽ_841116.jpeg differ diff --git a/civitai/sd_1.5/maturemalemix_843887.jpeg b/civitai/sd_1.5/maturemalemix_843887.jpeg index a53a892..6807297 100644 Binary files a/civitai/sd_1.5/maturemalemix_843887.jpeg and b/civitai/sd_1.5/maturemalemix_843887.jpeg differ diff --git a/civitai/sd_1.5/merongmix___121017.jpeg b/civitai/sd_1.5/merongmix___121017.jpeg index 8e2ce25..71bf8e1 100644 Binary files a/civitai/sd_1.5/merongmix___121017.jpeg and b/civitai/sd_1.5/merongmix___121017.jpeg differ diff --git a/civitai/sd_1.5/mineMix_781597.jpeg b/civitai/sd_1.5/mineMix_781597.jpeg index fd8c6bd..6c29ef9 100644 Binary files a/civitai/sd_1.5/mineMix_781597.jpeg and b/civitai/sd_1.5/mineMix_781597.jpeg differ diff --git a/civitai/sd_1.5/mixProYuki77mi_152818.jpeg b/civitai/sd_1.5/mixProYuki77mi_152818.jpeg index 909fcfb..c6e4eda 100644 Binary files a/civitai/sd_1.5/mixProYuki77mi_152818.jpeg and b/civitai/sd_1.5/mixProYuki77mi_152818.jpeg differ diff --git a/civitai/sd_1.5/mixedmixedmixed_v2_86080.jpeg b/civitai/sd_1.5/mixedmixedmixed_v2_86080.jpeg index 89d1c8d..c295ba7 100644 Binary files a/civitai/sd_1.5/mixedmixedmixed_v2_86080.jpeg and b/civitai/sd_1.5/mixedmixedmixed_v2_86080.jpeg differ diff --git a/civitai/sd_1.5/niji3Dstyle_554575.jpeg b/civitai/sd_1.5/niji3Dstyle_554575.jpeg index b73fd5d..31f5241 100644 Binary files a/civitai/sd_1.5/niji3Dstyle_554575.jpeg and b/civitai/sd_1.5/niji3Dstyle_554575.jpeg differ diff --git a/civitai/sd_1.5/oriental_mix_v2_754834.jpeg b/civitai/sd_1.5/oriental_mix_v2_754834.jpeg index 1428652..220b073 100644 Binary files a/civitai/sd_1.5/oriental_mix_v2_754834.jpeg and b/civitai/sd_1.5/oriental_mix_v2_754834.jpeg differ diff --git a/civitai/sd_1.5/ouka_gufeng_1256497.jpeg b/civitai/sd_1.5/ouka_gufeng_1256497.jpeg index 8ea1713..ad9c1e9 100644 Binary files a/civitai/sd_1.5/ouka_gufeng_1256497.jpeg and b/civitai/sd_1.5/ouka_gufeng_1256497.jpeg differ diff --git a/civitai/sd_1.5/ouka_horror-_ไธญๅผๆๆ€–__1898730.jpeg b/civitai/sd_1.5/ouka_horror-_ไธญๅผๆๆ€–__1898730.jpeg index cf6293c..bebe3a5 100644 Binary files a/civitai/sd_1.5/ouka_horror-_ไธญๅผๆๆ€–__1898730.jpeg and b/civitai/sd_1.5/ouka_horror-_ไธญๅผๆๆ€–__1898730.jpeg differ diff --git a/civitai/sd_1.5/ouka_star_1488904.jpeg b/civitai/sd_1.5/ouka_star_1488904.jpeg index 0dd5262..9646411 100644 Binary files a/civitai/sd_1.5/ouka_star_1488904.jpeg and b/civitai/sd_1.5/ouka_star_1488904.jpeg differ diff --git a/civitai/sd_1.5/pop-popcorn-mix_217719.jpeg b/civitai/sd_1.5/pop-popcorn-mix_217719.jpeg index 4696bcb..483b33b 100644 Binary files a/civitai/sd_1.5/pop-popcorn-mix_217719.jpeg and b/civitai/sd_1.5/pop-popcorn-mix_217719.jpeg differ diff --git a/civitai/sd_1.5/rMadArt_4154202.jpeg b/civitai/sd_1.5/rMadArt_4154202.jpeg index 5bb78a5..fc6b5d3 100644 Binary files a/civitai/sd_1.5/rMadArt_4154202.jpeg and b/civitai/sd_1.5/rMadArt_4154202.jpeg differ diff --git a/civitai/sd_1.5/randomizer89merge_3455725.jpeg b/civitai/sd_1.5/randomizer89merge_3455725.jpeg index 28dce92..bf01f73 100644 Binary files a/civitai/sd_1.5/randomizer89merge_3455725.jpeg and b/civitai/sd_1.5/randomizer89merge_3455725.jpeg differ diff --git a/civitai/sd_1.5/realspice_21496339.jpeg b/civitai/sd_1.5/realspice_21496339.jpeg index 2e1da38..2a3fe93 100644 Binary files a/civitai/sd_1.5/realspice_21496339.jpeg and b/civitai/sd_1.5/realspice_21496339.jpeg differ diff --git a/civitai/sd_1.5/richyrichMix_1470707.jpeg b/civitai/sd_1.5/richyrichMix_1470707.jpeg index 41aa017..4ccb8fb 100644 Binary files a/civitai/sd_1.5/richyrichMix_1470707.jpeg and b/civitai/sd_1.5/richyrichMix_1470707.jpeg differ diff --git a/civitai/sd_1.5/s1dlxBrew_127297.jpeg b/civitai/sd_1.5/s1dlxBrew_127297.jpeg index 6d839b7..4b952ff 100644 Binary files a/civitai/sd_1.5/s1dlxBrew_127297.jpeg and b/civitai/sd_1.5/s1dlxBrew_127297.jpeg differ diff --git a/civitai/sd_1.5/school_anime_80222.jpeg b/civitai/sd_1.5/school_anime_80222.jpeg index c6dfb9c..dc13ebc 100644 Binary files a/civitai/sd_1.5/school_anime_80222.jpeg and b/civitai/sd_1.5/school_anime_80222.jpeg differ diff --git a/civitai/sd_1.5/schoolmax_2.5d_44234.jpeg b/civitai/sd_1.5/schoolmax_2.5d_44234.jpeg index c1b66ac..c6fe80e 100644 Binary files a/civitai/sd_1.5/schoolmax_2.5d_44234.jpeg and b/civitai/sd_1.5/schoolmax_2.5d_44234.jpeg differ diff --git a/civitai/sd_1.5/seek.art_MEGA_279710.jpeg b/civitai/sd_1.5/seek.art_MEGA_279710.jpeg index 4126ba8..075169d 100644 Binary files a/civitai/sd_1.5/seek.art_MEGA_279710.jpeg and b/civitai/sd_1.5/seek.art_MEGA_279710.jpeg differ diff --git a/civitai/sd_1.5/seizaMix_1722377.jpeg b/civitai/sd_1.5/seizaMix_1722377.jpeg index 0f5be51..fbe80d4 100644 Binary files a/civitai/sd_1.5/seizaMix_1722377.jpeg and b/civitai/sd_1.5/seizaMix_1722377.jpeg differ diff --git a/civitai/sd_1.5/sketch_style_for_img2img__pruned_update__167526.jpeg b/civitai/sd_1.5/sketch_style_for_img2img__pruned_update__167526.jpeg index 4d43f56..9c0d7dd 100644 Binary files a/civitai/sd_1.5/sketch_style_for_img2img__pruned_update__167526.jpeg and b/civitai/sd_1.5/sketch_style_for_img2img__pruned_update__167526.jpeg differ diff --git a/civitai/sd_1.5/snapdd00_283300.jpeg b/civitai/sd_1.5/snapdd00_283300.jpeg index 090c015..df8a388 100644 Binary files a/civitai/sd_1.5/snapdd00_283300.jpeg and b/civitai/sd_1.5/snapdd00_283300.jpeg differ diff --git a/civitai/sd_1.5/verisimilitude_636826.jpeg b/civitai/sd_1.5/verisimilitude_636826.jpeg index f1f5eae..6f381bc 100644 Binary files a/civitai/sd_1.5/verisimilitude_636826.jpeg and b/civitai/sd_1.5/verisimilitude_636826.jpeg differ diff --git a/civitai/sd_1.5/viewer-mix_v1.7_284153.jpeg b/civitai/sd_1.5/viewer-mix_v1.7_284153.jpeg index d59e0b8..81f25b4 100644 Binary files a/civitai/sd_1.5/viewer-mix_v1.7_284153.jpeg and b/civitai/sd_1.5/viewer-mix_v1.7_284153.jpeg differ diff --git a/civitai/sd_1.5/whiteMIXrealistic_2988729.jpeg b/civitai/sd_1.5/whiteMIXrealistic_2988729.jpeg index 1c16ad8..57e6fdb 100644 Binary files a/civitai/sd_1.5/whiteMIXrealistic_2988729.jpeg and b/civitai/sd_1.5/whiteMIXrealistic_2988729.jpeg differ diff --git a/civitai/sd_1.5/xRicaMix_930597.jpeg b/civitai/sd_1.5/xRicaMix_930597.jpeg index 2843af9..34099fc 100644 Binary files a/civitai/sd_1.5/xRicaMix_930597.jpeg and b/civitai/sd_1.5/xRicaMix_930597.jpeg differ diff --git a/civitai/sd_1.5/yayoi_mix_2858268.jpeg b/civitai/sd_1.5/yayoi_mix_2858268.jpeg index 2778651..3b096eb 100644 Binary files a/civitai/sd_1.5/yayoi_mix_2858268.jpeg and b/civitai/sd_1.5/yayoi_mix_2858268.jpeg differ diff --git a/civitai/sd_1.5/ๅค้ฃŽ_GuFeng_469430.jpeg b/civitai/sd_1.5/ๅค้ฃŽ_GuFeng_469430.jpeg index 28a2c28..4a591ba 100644 Binary files a/civitai/sd_1.5/ๅค้ฃŽ_GuFeng_469430.jpeg and b/civitai/sd_1.5/ๅค้ฃŽ_GuFeng_469430.jpeg differ diff --git a/civitai/sd_1.5/ๅ’ธ้ฑผmix-_fish_mix_301788.jpeg b/civitai/sd_1.5/ๅ’ธ้ฑผmix-_fish_mix_301788.jpeg index 20a35ed..ef99844 100644 Binary files a/civitai/sd_1.5/ๅ’ธ้ฑผmix-_fish_mix_301788.jpeg and b/civitai/sd_1.5/ๅ’ธ้ฑผmix-_fish_mix_301788.jpeg differ diff --git a/civitai/sd_1.5/ๅ•ฅ็Žฉๆ„ๅฎŒ็ŠŠๅญ_ๅคงๆฆ‚ๆ˜ฏไธ€็งๅคๆ—ฉ็”ป้ฃŽ_-_old_fish_1150365.jpeg b/civitai/sd_1.5/ๅ•ฅ็Žฉๆ„ๅฎŒ็ŠŠๅญ_ๅคงๆฆ‚ๆ˜ฏไธ€็งๅคๆ—ฉ็”ป้ฃŽ_-_old_fish_1150365.jpeg index b789772..0ccf241 100644 Binary files a/civitai/sd_1.5/ๅ•ฅ็Žฉๆ„ๅฎŒ็ŠŠๅญ_ๅคงๆฆ‚ๆ˜ฏไธ€็งๅคๆ—ฉ็”ป้ฃŽ_-_old_fish_1150365.jpeg and b/civitai/sd_1.5/ๅ•ฅ็Žฉๆ„ๅฎŒ็ŠŠๅญ_ๅคงๆฆ‚ๆ˜ฏไธ€็งๅคๆ—ฉ็”ป้ฃŽ_-_old_fish_1150365.jpeg differ diff --git a/civitai/sd_1.5/ๅ›ฝ้ฃŽ3_GuoFeng3_1329102.jpeg b/civitai/sd_1.5/ๅ›ฝ้ฃŽ3_GuoFeng3_1329102.jpeg index 46fa041..dc6bce3 100644 Binary files a/civitai/sd_1.5/ๅ›ฝ้ฃŽ3_GuoFeng3_1329102.jpeg and b/civitai/sd_1.5/ๅ›ฝ้ฃŽ3_GuoFeng3_1329102.jpeg differ diff --git a/civitai/sd_1.5/ๅ›ฝ้ฃŽๆญฆไพ _Chosen_Chinese_style_nsfw_ๆถฉๆถฉ_hentai_ๅคงๆจกๅž‹_3519711.jpeg b/civitai/sd_1.5/ๅ›ฝ้ฃŽๆญฆไพ _Chosen_Chinese_style_nsfw_ๆถฉๆถฉ_hentai_ๅคงๆจกๅž‹_3519711.jpeg index 5a2e903..949dc5c 100644 Binary files a/civitai/sd_1.5/ๅ›ฝ้ฃŽๆญฆไพ _Chosen_Chinese_style_nsfw_ๆถฉๆถฉ_hentai_ๅคงๆจกๅž‹_3519711.jpeg and b/civitai/sd_1.5/ๅ›ฝ้ฃŽๆญฆไพ _Chosen_Chinese_style_nsfw_ๆถฉๆถฉ_hentai_ๅคงๆจกๅž‹_3519711.jpeg differ diff --git a/civitai/sd_1.5/ๅ›ฝ้ฃŽ็‘ž่ž_GuoFengRealMix_1856008.jpeg b/civitai/sd_1.5/ๅ›ฝ้ฃŽ็‘ž่ž_GuoFengRealMix_1856008.jpeg index 811016c..af62e83 100644 Binary files a/civitai/sd_1.5/ๅ›ฝ้ฃŽ็‘ž่ž_GuoFengRealMix_1856008.jpeg and b/civitai/sd_1.5/ๅ›ฝ้ฃŽ็‘ž่ž_GuoFengRealMix_1856008.jpeg differ diff --git a/civitai/sd_1.5/ๅคงๅคดๅฏ็ˆฑ้ฃŽ___BH_ink-prt_1576821.jpeg b/civitai/sd_1.5/ๅคงๅคดๅฏ็ˆฑ้ฃŽ___BH_ink-prt_1576821.jpeg index 9b66476..41ea7e9 100644 Binary files a/civitai/sd_1.5/ๅคงๅคดๅฏ็ˆฑ้ฃŽ___BH_ink-prt_1576821.jpeg and b/civitai/sd_1.5/ๅคงๅคดๅฏ็ˆฑ้ฃŽ___BH_ink-prt_1576821.jpeg differ diff --git a/civitai/sd_1.5/ๅคฉ็ฉบไน‹ๅขƒ___่‹็Ž„NullStyle_1447490.jpeg b/civitai/sd_1.5/ๅคฉ็ฉบไน‹ๅขƒ___่‹็Ž„NullStyle_1447490.jpeg index 0196a7a..bfb5555 100644 Binary files a/civitai/sd_1.5/ๅคฉ็ฉบไน‹ๅขƒ___่‹็Ž„NullStyle_1447490.jpeg and b/civitai/sd_1.5/ๅคฉ็ฉบไน‹ๅขƒ___่‹็Ž„NullStyle_1447490.jpeg differ diff --git a/civitai/sd_1.5/ๆ‹‡ๆŒ‡ๅง‘ๅจ˜_Thumbelina__3685308.jpeg b/civitai/sd_1.5/ๆ‹‡ๆŒ‡ๅง‘ๅจ˜_Thumbelina__3685308.jpeg index 4ed4c55..20daa12 100644 Binary files a/civitai/sd_1.5/ๆ‹‡ๆŒ‡ๅง‘ๅจ˜_Thumbelina__3685308.jpeg and b/civitai/sd_1.5/ๆ‹‡ๆŒ‡ๅง‘ๅจ˜_Thumbelina__3685308.jpeg differ diff --git a/civitai/sd_1.5/ๆ˜Žๅฟซ_CrispMix_487103.jpeg b/civitai/sd_1.5/ๆ˜Žๅฟซ_CrispMix_487103.jpeg index e6b68eb..9890b19 100644 Binary files a/civitai/sd_1.5/ๆ˜Žๅฟซ_CrispMix_487103.jpeg and b/civitai/sd_1.5/ๆ˜Žๅฟซ_CrispMix_487103.jpeg differ diff --git a/civitai/sd_1.5/ๆœˆๅ…‰mix___Summer_Solstice_9925755.jpeg b/civitai/sd_1.5/ๆœˆๅ…‰mix___Summer_Solstice_9925755.jpeg index b6ddde1..45707f2 100644 Binary files a/civitai/sd_1.5/ๆœˆๅ…‰mix___Summer_Solstice_9925755.jpeg and b/civitai/sd_1.5/ๆœˆๅ…‰mix___Summer_Solstice_9925755.jpeg differ diff --git a/civitai/sd_1.5_hyper/Realistic_Vision_V6.0_B1_12221824.jpeg b/civitai/sd_1.5_hyper/Realistic_Vision_V6.0_B1_12221824.jpeg index 4d7ffb0..403295d 100644 Binary files a/civitai/sd_1.5_hyper/Realistic_Vision_V6.0_B1_12221824.jpeg and b/civitai/sd_1.5_hyper/Realistic_Vision_V6.0_B1_12221824.jpeg differ diff --git a/civitai/sd_1.5_lcm/The_WonderMix_14209238.jpeg b/civitai/sd_1.5_lcm/The_WonderMix_14209238.jpeg index b6aea85..8f4aa4f 100644 Binary files a/civitai/sd_1.5_lcm/The_WonderMix_14209238.jpeg and b/civitai/sd_1.5_lcm/The_WonderMix_14209238.jpeg differ diff --git a/civitai/sd_2.0/Bunny_Icy_Tail__Former_IceRealistic__646881.jpeg b/civitai/sd_2.0/Bunny_Icy_Tail__Former_IceRealistic__646881.jpeg index 0505711..8f6bda0 100644 Binary files a/civitai/sd_2.0/Bunny_Icy_Tail__Former_IceRealistic__646881.jpeg and b/civitai/sd_2.0/Bunny_Icy_Tail__Former_IceRealistic__646881.jpeg differ diff --git a/civitai/sd_2.0/_texture_diffusion_194576.jpeg b/civitai/sd_2.0/_texture_diffusion_194576.jpeg index ce936a9..5559fa7 100644 Binary files a/civitai/sd_2.0/_texture_diffusion_194576.jpeg and b/civitai/sd_2.0/_texture_diffusion_194576.jpeg differ diff --git a/civitai/sd_2.0_768/Landscape_Realistic_Pro_2208745.jpeg b/civitai/sd_2.0_768/Landscape_Realistic_Pro_2208745.jpeg index a371631..bfc7261 100644 Binary files a/civitai/sd_2.0_768/Landscape_Realistic_Pro_2208745.jpeg and b/civitai/sd_2.0_768/Landscape_Realistic_Pro_2208745.jpeg differ diff --git a/civitai/sd_2.1/Sticker-art_84352.jpeg b/civitai/sd_2.1/Sticker-art_84352.jpeg index 1f20179..f8471c9 100644 Binary files a/civitai/sd_2.1/Sticker-art_84352.jpeg and b/civitai/sd_2.1/Sticker-art_84352.jpeg differ diff --git a/civitai/sd_2.1_768/Classic_Negative__SD_2.1_768px__68853.jpeg b/civitai/sd_2.1_768/Classic_Negative__SD_2.1_768px__68853.jpeg index 6362488..264e04b 100644 Binary files a/civitai/sd_2.1_768/Classic_Negative__SD_2.1_768px__68853.jpeg and b/civitai/sd_2.1_768/Classic_Negative__SD_2.1_768px__68853.jpeg differ diff --git a/civitai/sd_2.1_768/Illuminati_Diffusion_v1.1_160242.jpeg b/civitai/sd_2.1_768/Illuminati_Diffusion_v1.1_160242.jpeg index f5f80f2..85ec970 100644 Binary files a/civitai/sd_2.1_768/Illuminati_Diffusion_v1.1_160242.jpeg and b/civitai/sd_2.1_768/Illuminati_Diffusion_v1.1_160242.jpeg differ diff --git a/civitai/sd_2.1_768/Illuminutty_Diffusion_464503.jpeg b/civitai/sd_2.1_768/Illuminutty_Diffusion_464503.jpeg index 3552786..3c6dc80 100644 Binary files a/civitai/sd_2.1_768/Illuminutty_Diffusion_464503.jpeg and b/civitai/sd_2.1_768/Illuminutty_Diffusion_464503.jpeg differ diff --git a/civitai/sd_2.1_768/NijiDiffusion_1140790.jpeg b/civitai/sd_2.1_768/NijiDiffusion_1140790.jpeg index 8a0ab74..aee6fab 100644 Binary files a/civitai/sd_2.1_768/NijiDiffusion_1140790.jpeg and b/civitai/sd_2.1_768/NijiDiffusion_1140790.jpeg differ diff --git a/civitai/sd_2.1_768/PIXHELL_327135.jpeg b/civitai/sd_2.1_768/PIXHELL_327135.jpeg index cb6a9ef..8cc3119 100644 Binary files a/civitai/sd_2.1_768/PIXHELL_327135.jpeg and b/civitai/sd_2.1_768/PIXHELL_327135.jpeg differ diff --git a/civitai/sd_2.1_768/Realism_Engine_216332.jpeg b/civitai/sd_2.1_768/Realism_Engine_216332.jpeg index 8269694..1f539c6 100644 Binary files a/civitai/sd_2.1_768/Realism_Engine_216332.jpeg and b/civitai/sd_2.1_768/Realism_Engine_216332.jpeg differ diff --git a/civitai/sd_2.1_768/Replicant-V3.0_845115.jpeg b/civitai/sd_2.1_768/Replicant-V3.0_845115.jpeg index d94007c..615ca33 100644 Binary files a/civitai/sd_2.1_768/Replicant-V3.0_845115.jpeg and b/civitai/sd_2.1_768/Replicant-V3.0_845115.jpeg differ diff --git a/civitai/sd_2.1_768/coloring-book_50959.jpeg b/civitai/sd_2.1_768/coloring-book_50959.jpeg index 20a31ac..3786f2a 100644 Binary files a/civitai/sd_2.1_768/coloring-book_50959.jpeg and b/civitai/sd_2.1_768/coloring-book_50959.jpeg differ diff --git a/civitai/sd_2.1_768/dvMech_145501.jpeg b/civitai/sd_2.1_768/dvMech_145501.jpeg index 155d459..ece1cd8 100644 Binary files a/civitai/sd_2.1_768/dvMech_145501.jpeg and b/civitai/sd_2.1_768/dvMech_145501.jpeg differ diff --git a/civitai/sd_2.1_768/rMada_Merge_-_SD_2.1_768_500465.jpeg b/civitai/sd_2.1_768/rMada_Merge_-_SD_2.1_768_500465.jpeg index f4cf5c1..6a33b0d 100644 Binary files a/civitai/sd_2.1_768/rMada_Merge_-_SD_2.1_768_500465.jpeg and b/civitai/sd_2.1_768/rMada_Merge_-_SD_2.1_768_500465.jpeg differ diff --git a/civitai/sd_2.1_768/vector-art_61832.jpeg b/civitai/sd_2.1_768/vector-art_61832.jpeg index ac6791a..9bc7218 100644 Binary files a/civitai/sd_2.1_768/vector-art_61832.jpeg and b/civitai/sd_2.1_768/vector-art_61832.jpeg differ diff --git a/civitai/sd_3.5/STOIQO_NewReality___FLUX__SD3.5__SDXL__SD1.5_36708273.jpeg b/civitai/sd_3.5/STOIQO_NewReality___FLUX__SD3.5__SDXL__SD1.5_36708273.jpeg index c9e24c8..aa728a3 100644 Binary files a/civitai/sd_3.5/STOIQO_NewReality___FLUX__SD3.5__SDXL__SD1.5_36708273.jpeg and b/civitai/sd_3.5/STOIQO_NewReality___FLUX__SD3.5__SDXL__SD1.5_36708273.jpeg differ diff --git a/civitai/sd_3/Stable_Diffusion_3__SD3__14714388.jpeg b/civitai/sd_3/Stable_Diffusion_3__SD3__14714388.jpeg index 35985e9..28c3eb0 100644 Binary files a/civitai/sd_3/Stable_Diffusion_3__SD3__14714388.jpeg and b/civitai/sd_3/Stable_Diffusion_3__SD3__14714388.jpeg differ diff --git a/civitai/sdxl_1.0/9527_Detail_Realistic_XL_32025258.jpeg b/civitai/sdxl_1.0/9527_Detail_Realistic_XL_32025258.jpeg index 9c240eb..b86200b 100644 Binary files a/civitai/sdxl_1.0/9527_Detail_Realistic_XL_32025258.jpeg and b/civitai/sdxl_1.0/9527_Detail_Realistic_XL_32025258.jpeg differ diff --git a/civitai/sdxl_1.0/AAM_XL__Anime_Mix__5626297.jpeg b/civitai/sdxl_1.0/AAM_XL__Anime_Mix__5626297.jpeg index 0a48459..09c24c6 100644 Binary files a/civitai/sdxl_1.0/AAM_XL__Anime_Mix__5626297.jpeg and b/civitai/sdxl_1.0/AAM_XL__Anime_Mix__5626297.jpeg differ diff --git a/civitai/sdxl_1.0/Acorn_Is_Spinning_23156103.jpeg b/civitai/sdxl_1.0/Acorn_Is_Spinning_23156103.jpeg index 24e17a3..2331b22 100644 Binary files a/civitai/sdxl_1.0/Acorn_Is_Spinning_23156103.jpeg and b/civitai/sdxl_1.0/Acorn_Is_Spinning_23156103.jpeg differ diff --git a/civitai/sdxl_1.0/AlbedoBase_XL_39093382.jpeg b/civitai/sdxl_1.0/AlbedoBase_XL_39093382.jpeg index 322a72d..d23fc54 100644 Binary files a/civitai/sdxl_1.0/AlbedoBase_XL_39093382.jpeg and b/civitai/sdxl_1.0/AlbedoBase_XL_39093382.jpeg differ diff --git a/civitai/sdxl_1.0/Animagine_XL_V3.1_8301359.jpeg b/civitai/sdxl_1.0/Animagine_XL_V3.1_8301359.jpeg index c14ad15..79d3bd1 100644 Binary files a/civitai/sdxl_1.0/Animagine_XL_V3.1_8301359.jpeg and b/civitai/sdxl_1.0/Animagine_XL_V3.1_8301359.jpeg differ diff --git a/civitai/sdxl_1.0/AnimeXL-xuebiMIX_4456416.jpeg b/civitai/sdxl_1.0/AnimeXL-xuebiMIX_4456416.jpeg index 4f6be21..7649842 100644 Binary files a/civitai/sdxl_1.0/AnimeXL-xuebiMIX_4456416.jpeg and b/civitai/sdxl_1.0/AnimeXL-xuebiMIX_4456416.jpeg differ diff --git a/civitai/sdxl_1.0/Anime_Art_Diffusion_XL_1792770.jpeg b/civitai/sdxl_1.0/Anime_Art_Diffusion_XL_1792770.jpeg index 0ec077b..b8c68db 100644 Binary files a/civitai/sdxl_1.0/Anime_Art_Diffusion_XL_1792770.jpeg and b/civitai/sdxl_1.0/Anime_Art_Diffusion_XL_1792770.jpeg differ diff --git a/civitai/sdxl_1.0/Anime_Changeful_XL_1853097.jpeg b/civitai/sdxl_1.0/Anime_Changeful_XL_1853097.jpeg index 5cb4b76..4c6fa04 100644 Binary files a/civitai/sdxl_1.0/Anime_Changeful_XL_1853097.jpeg and b/civitai/sdxl_1.0/Anime_Changeful_XL_1853097.jpeg differ diff --git a/civitai/sdxl_1.0/Anime_Illust_Diffusion_XL_7578514.jpeg b/civitai/sdxl_1.0/Anime_Illust_Diffusion_XL_7578514.jpeg index 1bcaccc..7953890 100644 Binary files a/civitai/sdxl_1.0/Anime_Illust_Diffusion_XL_7578514.jpeg and b/civitai/sdxl_1.0/Anime_Illust_Diffusion_XL_7578514.jpeg differ diff --git a/civitai/sdxl_1.0/Art_Universe_35199180.jpeg b/civitai/sdxl_1.0/Art_Universe_35199180.jpeg index 38e3194..8d26949 100644 Binary files a/civitai/sdxl_1.0/Art_Universe_35199180.jpeg and b/civitai/sdxl_1.0/Art_Universe_35199180.jpeg differ diff --git a/civitai/sdxl_1.0/ArtiWaifu_Diffusion_26736256.jpeg b/civitai/sdxl_1.0/ArtiWaifu_Diffusion_26736256.jpeg index 1cb1bcf..03a947d 100644 Binary files a/civitai/sdxl_1.0/ArtiWaifu_Diffusion_26736256.jpeg and b/civitai/sdxl_1.0/ArtiWaifu_Diffusion_26736256.jpeg differ diff --git a/civitai/sdxl_1.0/Artium_4939791.jpeg b/civitai/sdxl_1.0/Artium_4939791.jpeg index 9b61d18..bf9757c 100644 Binary files a/civitai/sdxl_1.0/Artium_4939791.jpeg and b/civitai/sdxl_1.0/Artium_4939791.jpeg differ diff --git a/civitai/sdxl_1.0/BAXL___Blue_Archive_Flat_Celluloid_Style_Fine-tune___็ขง่“ๆกฃๆกˆ่ต›็’็’ๅนณๆถ‚็”ป้ฃŽ__Kohaku_ฮ”___Animagine_XL_v3__9171232.jpeg b/civitai/sdxl_1.0/BAXL___Blue_Archive_Flat_Celluloid_Style_Fine-tune___็ขง่“ๆกฃๆกˆ่ต›็’็’ๅนณๆถ‚็”ป้ฃŽ__Kohaku_ฮ”___Animagine_XL_v3__9171232.jpeg index 2a054e2..d9d90cc 100644 Binary files a/civitai/sdxl_1.0/BAXL___Blue_Archive_Flat_Celluloid_Style_Fine-tune___็ขง่“ๆกฃๆกˆ่ต›็’็’ๅนณๆถ‚็”ป้ฃŽ__Kohaku_ฮ”___Animagine_XL_v3__9171232.jpeg and b/civitai/sdxl_1.0/BAXL___Blue_Archive_Flat_Celluloid_Style_Fine-tune___็ขง่“ๆกฃๆกˆ่ต›็’็’ๅนณๆถ‚็”ป้ฃŽ__Kohaku_ฮ”___Animagine_XL_v3__9171232.jpeg differ diff --git a/civitai/sdxl_1.0/Babes_By_Stable_Yogi_40965282.jpeg b/civitai/sdxl_1.0/Babes_By_Stable_Yogi_40965282.jpeg index fa02c9a..d416a0f 100644 Binary files a/civitai/sdxl_1.0/Babes_By_Stable_Yogi_40965282.jpeg and b/civitai/sdxl_1.0/Babes_By_Stable_Yogi_40965282.jpeg differ diff --git a/civitai/sdxl_1.0/Better_than_words_3802012.jpeg b/civitai/sdxl_1.0/Better_than_words_3802012.jpeg index cb9b03d..4aa8a61 100644 Binary files a/civitai/sdxl_1.0/Better_than_words_3802012.jpeg and b/civitai/sdxl_1.0/Better_than_words_3802012.jpeg differ diff --git a/civitai/sdxl_1.0/BreakDomainXL_3718024.jpeg b/civitai/sdxl_1.0/BreakDomainXL_3718024.jpeg index e1df027..d649e04 100644 Binary files a/civitai/sdxl_1.0/BreakDomainXL_3718024.jpeg and b/civitai/sdxl_1.0/BreakDomainXL_3718024.jpeg differ diff --git a/civitai/sdxl_1.0/BriXL___A_must_in_your_toolbox_3929499.jpeg b/civitai/sdxl_1.0/BriXL___A_must_in_your_toolbox_3929499.jpeg index b7fe7b9..3112d71 100644 Binary files a/civitai/sdxl_1.0/BriXL___A_must_in_your_toolbox_3929499.jpeg and b/civitai/sdxl_1.0/BriXL___A_must_in_your_toolbox_3929499.jpeg differ diff --git a/civitai/sdxl_1.0/BrightProtoNuke_BPN__-_No_refiner_needed_4158368.jpeg b/civitai/sdxl_1.0/BrightProtoNuke_BPN__-_No_refiner_needed_4158368.jpeg index 47c12e0..83d0e00 100644 Binary files a/civitai/sdxl_1.0/BrightProtoNuke_BPN__-_No_refiner_needed_4158368.jpeg and b/civitai/sdxl_1.0/BrightProtoNuke_BPN__-_No_refiner_needed_4158368.jpeg differ diff --git a/civitai/sdxl_1.0/Cinemax_Alpha___SDXL___Cinema___Filmic___NSFW_2127291.jpeg b/civitai/sdxl_1.0/Cinemax_Alpha___SDXL___Cinema___Filmic___NSFW_2127291.jpeg index 10e53e0..f9d459a 100644 Binary files a/civitai/sdxl_1.0/Cinemax_Alpha___SDXL___Cinema___Filmic___NSFW_2127291.jpeg and b/civitai/sdxl_1.0/Cinemax_Alpha___SDXL___Cinema___Filmic___NSFW_2127291.jpeg differ diff --git a/civitai/sdxl_1.0/ColorfulXL_19837134.jpeg b/civitai/sdxl_1.0/ColorfulXL_19837134.jpeg index 1ad2c88..4aec989 100644 Binary files a/civitai/sdxl_1.0/ColorfulXL_19837134.jpeg and b/civitai/sdxl_1.0/ColorfulXL_19837134.jpeg differ diff --git a/civitai/sdxl_1.0/Colossus_Project_XL__SFW_NSFW__23978103.jpeg b/civitai/sdxl_1.0/Colossus_Project_XL__SFW_NSFW__23978103.jpeg index e268957..ed862e2 100644 Binary files a/civitai/sdxl_1.0/Colossus_Project_XL__SFW_NSFW__23978103.jpeg and b/civitai/sdxl_1.0/Colossus_Project_XL__SFW_NSFW__23978103.jpeg differ diff --git a/civitai/sdxl_1.0/ControlNetXL__CNXL__27936581.jpeg b/civitai/sdxl_1.0/ControlNetXL__CNXL__27936581.jpeg index d90673b..8867b37 100644 Binary files a/civitai/sdxl_1.0/ControlNetXL__CNXL__27936581.jpeg and b/civitai/sdxl_1.0/ControlNetXL__CNXL__27936581.jpeg differ diff --git a/civitai/sdxl_1.0/CounterfeitXL_4647930.jpeg b/civitai/sdxl_1.0/CounterfeitXL_4647930.jpeg index 1cc4cbd..8264bd8 100644 Binary files a/civitai/sdxl_1.0/CounterfeitXL_4647930.jpeg and b/civitai/sdxl_1.0/CounterfeitXL_4647930.jpeg differ diff --git a/civitai/sdxl_1.0/Crystal_Clear_XL_2317959.jpeg b/civitai/sdxl_1.0/Crystal_Clear_XL_2317959.jpeg index 286d6f3..071b074 100644 Binary files a/civitai/sdxl_1.0/Crystal_Clear_XL_2317959.jpeg and b/civitai/sdxl_1.0/Crystal_Clear_XL_2317959.jpeg differ diff --git a/civitai/sdxl_1.0/CyberRealistic_XL_35270713.jpeg b/civitai/sdxl_1.0/CyberRealistic_XL_35270713.jpeg index 124dd57..ae0a2cf 100644 Binary files a/civitai/sdxl_1.0/CyberRealistic_XL_35270713.jpeg and b/civitai/sdxl_1.0/CyberRealistic_XL_35270713.jpeg differ diff --git a/civitai/sdxl_1.0/Dark_Pizza_XL_Origin_ๅคงไธชๆŠซ่จXL_ๅŽŸๅ‘ณๅ„ฟ_2198524.jpeg b/civitai/sdxl_1.0/Dark_Pizza_XL_Origin_ๅคงไธชๆŠซ่จXL_ๅŽŸๅ‘ณๅ„ฟ_2198524.jpeg index af60dd9..b55e84a 100644 Binary files a/civitai/sdxl_1.0/Dark_Pizza_XL_Origin_ๅคงไธชๆŠซ่จXL_ๅŽŸๅ‘ณๅ„ฟ_2198524.jpeg and b/civitai/sdxl_1.0/Dark_Pizza_XL_Origin_ๅคงไธชๆŠซ่จXL_ๅŽŸๅ‘ณๅ„ฟ_2198524.jpeg differ diff --git a/civitai/sdxl_1.0/DevlishPhotoRealism_SDXL_21156645.jpeg b/civitai/sdxl_1.0/DevlishPhotoRealism_SDXL_21156645.jpeg index ee1fd2d..7af0794 100644 Binary files a/civitai/sdxl_1.0/DevlishPhotoRealism_SDXL_21156645.jpeg and b/civitai/sdxl_1.0/DevlishPhotoRealism_SDXL_21156645.jpeg differ diff --git a/civitai/sdxl_1.0/DisneyRealCartoonMix_3929056.jpeg b/civitai/sdxl_1.0/DisneyRealCartoonMix_3929056.jpeg index bbca733..32cdd66 100644 Binary files a/civitai/sdxl_1.0/DisneyRealCartoonMix_3929056.jpeg and b/civitai/sdxl_1.0/DisneyRealCartoonMix_3929056.jpeg differ diff --git a/civitai/sdxl_1.0/DucHaiten-AIart-SDXL_6528472.jpeg b/civitai/sdxl_1.0/DucHaiten-AIart-SDXL_6528472.jpeg index 5298e03..23351cb 100644 Binary files a/civitai/sdxl_1.0/DucHaiten-AIart-SDXL_6528472.jpeg and b/civitai/sdxl_1.0/DucHaiten-AIart-SDXL_6528472.jpeg differ diff --git a/civitai/sdxl_1.0/DucHaiten-Real3D-NSFW-XL_7348516.jpeg b/civitai/sdxl_1.0/DucHaiten-Real3D-NSFW-XL_7348516.jpeg index 2693de0..87fe27a 100644 Binary files a/civitai/sdxl_1.0/DucHaiten-Real3D-NSFW-XL_7348516.jpeg and b/civitai/sdxl_1.0/DucHaiten-Real3D-NSFW-XL_7348516.jpeg differ diff --git a/civitai/sdxl_1.0/DynaVision_XL_-_All-in-one_stylized_3D_SFW_and_NSFW_output__no_refiner_needed__5462682.jpeg b/civitai/sdxl_1.0/DynaVision_XL_-_All-in-one_stylized_3D_SFW_and_NSFW_output__no_refiner_needed__5462682.jpeg index 870d17c..6f256b4 100644 Binary files a/civitai/sdxl_1.0/DynaVision_XL_-_All-in-one_stylized_3D_SFW_and_NSFW_output__no_refiner_needed__5462682.jpeg and b/civitai/sdxl_1.0/DynaVision_XL_-_All-in-one_stylized_3D_SFW_and_NSFW_output__no_refiner_needed__5462682.jpeg differ diff --git a/civitai/sdxl_1.0/FormulaXL_-_ๅ…ฌๅผXL__ComfyUI__2474492.jpeg b/civitai/sdxl_1.0/FormulaXL_-_ๅ…ฌๅผXL__ComfyUI__2474492.jpeg index e4d6546..b99ab69 100644 Binary files a/civitai/sdxl_1.0/FormulaXL_-_ๅ…ฌๅผXL__ComfyUI__2474492.jpeg and b/civitai/sdxl_1.0/FormulaXL_-_ๅ…ฌๅผXL__ComfyUI__2474492.jpeg differ diff --git a/civitai/sdxl_1.0/Game_icon_Institute_mode_12423101.jpeg b/civitai/sdxl_1.0/Game_icon_Institute_mode_12423101.jpeg index b26db73..51ea9e0 100644 Binary files a/civitai/sdxl_1.0/Game_icon_Institute_mode_12423101.jpeg and b/civitai/sdxl_1.0/Game_icon_Institute_mode_12423101.jpeg differ diff --git a/civitai/sdxl_1.0/GhostXL_6825114.jpeg b/civitai/sdxl_1.0/GhostXL_6825114.jpeg index abf9d67..093d367 100644 Binary files a/civitai/sdxl_1.0/GhostXL_6825114.jpeg and b/civitai/sdxl_1.0/GhostXL_6825114.jpeg differ diff --git a/civitai/sdxl_1.0/Halcyon_SDXL_-_Photorealism_23542875.jpeg b/civitai/sdxl_1.0/Halcyon_SDXL_-_Photorealism_23542875.jpeg index 101afa8..610dc9b 100644 Binary files a/civitai/sdxl_1.0/Halcyon_SDXL_-_Photorealism_23542875.jpeg and b/civitai/sdxl_1.0/Halcyon_SDXL_-_Photorealism_23542875.jpeg differ diff --git a/civitai/sdxl_1.0/Heart_of_Apple_XL____13613289.jpeg b/civitai/sdxl_1.0/Heart_of_Apple_XL____13613289.jpeg index 9f68d6f..dfbeeed 100644 Binary files a/civitai/sdxl_1.0/Heart_of_Apple_XL____13613289.jpeg and b/civitai/sdxl_1.0/Heart_of_Apple_XL____13613289.jpeg differ diff --git a/civitai/sdxl_1.0/Hentai_Mix_XL_-_Road_to_freedom_5434319.jpeg b/civitai/sdxl_1.0/Hentai_Mix_XL_-_Road_to_freedom_5434319.jpeg index be988ba..657619f 100644 Binary files a/civitai/sdxl_1.0/Hentai_Mix_XL_-_Road_to_freedom_5434319.jpeg and b/civitai/sdxl_1.0/Hentai_Mix_XL_-_Road_to_freedom_5434319.jpeg differ diff --git a/civitai/sdxl_1.0/ICBINP_XL_14625687.jpeg b/civitai/sdxl_1.0/ICBINP_XL_14625687.jpeg index 20afae3..b431e7c 100644 Binary files a/civitai/sdxl_1.0/ICBINP_XL_14625687.jpeg and b/civitai/sdxl_1.0/ICBINP_XL_14625687.jpeg differ diff --git a/civitai/sdxl_1.0/Jib_Mix_Realistic_XL_38559535.jpeg b/civitai/sdxl_1.0/Jib_Mix_Realistic_XL_38559535.jpeg index f3d97b3..ba4c2dc 100644 Binary files a/civitai/sdxl_1.0/Jib_Mix_Realistic_XL_38559535.jpeg and b/civitai/sdxl_1.0/Jib_Mix_Realistic_XL_38559535.jpeg differ diff --git a/civitai/sdxl_1.0/Juggernaut_XL_26700009.jpeg b/civitai/sdxl_1.0/Juggernaut_XL_26700009.jpeg index 2f302ab..6a84347 100644 Binary files a/civitai/sdxl_1.0/Juggernaut_XL_26700009.jpeg and b/civitai/sdxl_1.0/Juggernaut_XL_26700009.jpeg differ diff --git a/civitai/sdxl_1.0/Kohaku-XL_Delta_7394558.jpeg b/civitai/sdxl_1.0/Kohaku-XL_Delta_7394558.jpeg index 55be356..8b485c5 100644 Binary files a/civitai/sdxl_1.0/Kohaku-XL_Delta_7394558.jpeg and b/civitai/sdxl_1.0/Kohaku-XL_Delta_7394558.jpeg differ diff --git a/civitai/sdxl_1.0/Kohaku-XL_Epsilon_14374493.jpeg b/civitai/sdxl_1.0/Kohaku-XL_Epsilon_14374493.jpeg index 4a8b249..8f14bdf 100644 Binary files a/civitai/sdxl_1.0/Kohaku-XL_Epsilon_14374493.jpeg and b/civitai/sdxl_1.0/Kohaku-XL_Epsilon_14374493.jpeg differ diff --git a/civitai/sdxl_1.0/Kohaku-XL_alpha_2632924.jpeg b/civitai/sdxl_1.0/Kohaku-XL_alpha_2632924.jpeg index 9169c4c..036ce43 100644 Binary files a/civitai/sdxl_1.0/Kohaku-XL_alpha_2632924.jpeg and b/civitai/sdxl_1.0/Kohaku-XL_alpha_2632924.jpeg differ diff --git a/civitai/sdxl_1.0/Kohaku-XL_beta_3078086.jpeg b/civitai/sdxl_1.0/Kohaku-XL_beta_3078086.jpeg index 9f4888d..64b20a7 100644 Binary files a/civitai/sdxl_1.0/Kohaku-XL_beta_3078086.jpeg and b/civitai/sdxl_1.0/Kohaku-XL_beta_3078086.jpeg differ diff --git a/civitai/sdxl_1.0/LEOSAM_s_HelloWorld_XL_15650061.jpeg b/civitai/sdxl_1.0/LEOSAM_s_HelloWorld_XL_15650061.jpeg index b63b9f8..0fb7399 100644 Binary files a/civitai/sdxl_1.0/LEOSAM_s_HelloWorld_XL_15650061.jpeg and b/civitai/sdxl_1.0/LEOSAM_s_HelloWorld_XL_15650061.jpeg differ diff --git a/civitai/sdxl_1.0/Moxie_Diffusion_XL_20559989.jpeg b/civitai/sdxl_1.0/Moxie_Diffusion_XL_20559989.jpeg index 944782d..144041f 100644 Binary files a/civitai/sdxl_1.0/Moxie_Diffusion_XL_20559989.jpeg and b/civitai/sdxl_1.0/Moxie_Diffusion_XL_20559989.jpeg differ diff --git a/civitai/sdxl_1.0/NightVisionXL_16068005.jpeg b/civitai/sdxl_1.0/NightVisionXL_16068005.jpeg index 63aa57a..86016b5 100644 Binary files a/civitai/sdxl_1.0/NightVisionXL_16068005.jpeg and b/civitai/sdxl_1.0/NightVisionXL_16068005.jpeg differ diff --git a/civitai/sdxl_1.0/NoobAI-XL__NAI-XL__44303743.jpeg b/civitai/sdxl_1.0/NoobAI-XL__NAI-XL__44303743.jpeg index 43b3eb0..6734e4d 100644 Binary files a/civitai/sdxl_1.0/NoobAI-XL__NAI-XL__44303743.jpeg and b/civitai/sdxl_1.0/NoobAI-XL__NAI-XL__44303743.jpeg differ diff --git a/civitai/sdxl_1.0/OmnigenXL__NSFW___SFW__3688210.jpeg b/civitai/sdxl_1.0/OmnigenXL__NSFW___SFW__3688210.jpeg index 5150422..25d05ac 100644 Binary files a/civitai/sdxl_1.0/OmnigenXL__NSFW___SFW__3688210.jpeg and b/civitai/sdxl_1.0/OmnigenXL__NSFW___SFW__3688210.jpeg differ diff --git a/civitai/sdxl_1.0/Omnium_3844078.jpeg b/civitai/sdxl_1.0/Omnium_3844078.jpeg index eacb251..d9b20e9 100644 Binary files a/civitai/sdxl_1.0/Omnium_3844078.jpeg and b/civitai/sdxl_1.0/Omnium_3844078.jpeg differ diff --git a/civitai/sdxl_1.0/Painter_s_Checkpoint__oil_paint___oil_painting_art_style__5246942.jpeg b/civitai/sdxl_1.0/Painter_s_Checkpoint__oil_paint___oil_painting_art_style__5246942.jpeg index ec7e1e3..2b6aa6d 100644 Binary files a/civitai/sdxl_1.0/Painter_s_Checkpoint__oil_paint___oil_painting_art_style__5246942.jpeg and b/civitai/sdxl_1.0/Painter_s_Checkpoint__oil_paint___oil_painting_art_style__5246942.jpeg differ diff --git a/civitai/sdxl_1.0/PhotoPedia_XL_4411800.jpeg b/civitai/sdxl_1.0/PhotoPedia_XL_4411800.jpeg index e6097a3..50b002e 100644 Binary files a/civitai/sdxl_1.0/PhotoPedia_XL_4411800.jpeg and b/civitai/sdxl_1.0/PhotoPedia_XL_4411800.jpeg differ diff --git a/civitai/sdxl_1.0/Pixel_Art_Diffusion_XL_7188038.jpeg b/civitai/sdxl_1.0/Pixel_Art_Diffusion_XL_7188038.jpeg index 804e4d2..aaf236d 100644 Binary files a/civitai/sdxl_1.0/Pixel_Art_Diffusion_XL_7188038.jpeg and b/civitai/sdxl_1.0/Pixel_Art_Diffusion_XL_7188038.jpeg differ diff --git a/civitai/sdxl_1.0/Project_Unreal_Engine_5_12896798.jpeg b/civitai/sdxl_1.0/Project_Unreal_Engine_5_12896798.jpeg index d28caa0..fa11258 100644 Binary files a/civitai/sdxl_1.0/Project_Unreal_Engine_5_12896798.jpeg and b/civitai/sdxl_1.0/Project_Unreal_Engine_5_12896798.jpeg differ diff --git a/civitai/sdxl_1.0/ProtoVision_XL_-_High_Fidelity_3D___Photorealism___Anime___hyperrealism_-_No_Refiner_Needed_4665992.jpeg b/civitai/sdxl_1.0/ProtoVision_XL_-_High_Fidelity_3D___Photorealism___Anime___hyperrealism_-_No_Refiner_Needed_4665992.jpeg index 30482cf..60cbbc7 100644 Binary files a/civitai/sdxl_1.0/ProtoVision_XL_-_High_Fidelity_3D___Photorealism___Anime___hyperrealism_-_No_Refiner_Needed_4665992.jpeg and b/civitai/sdxl_1.0/ProtoVision_XL_-_High_Fidelity_3D___Photorealism___Anime___hyperrealism_-_No_Refiner_Needed_4665992.jpeg differ diff --git a/civitai/sdxl_1.0/Raemu_XL_18123125.jpeg b/civitai/sdxl_1.0/Raemu_XL_18123125.jpeg index 21909ae..1eb9ab6 100644 Binary files a/civitai/sdxl_1.0/Raemu_XL_18123125.jpeg and b/civitai/sdxl_1.0/Raemu_XL_18123125.jpeg differ diff --git a/civitai/sdxl_1.0/RealCartoon-XL_22187803.jpeg b/civitai/sdxl_1.0/RealCartoon-XL_22187803.jpeg index bd051d5..e662f27 100644 Binary files a/civitai/sdxl_1.0/RealCartoon-XL_22187803.jpeg and b/civitai/sdxl_1.0/RealCartoon-XL_22187803.jpeg differ diff --git a/civitai/sdxl_1.0/Realism_Engine_SDXL_5344273.jpeg b/civitai/sdxl_1.0/Realism_Engine_SDXL_5344273.jpeg index 1354c14..9b88207 100644 Binary files a/civitai/sdxl_1.0/Realism_Engine_SDXL_5344273.jpeg and b/civitai/sdxl_1.0/Realism_Engine_SDXL_5344273.jpeg differ diff --git a/civitai/sdxl_1.0/Realistic_Freedom_-_SFW_and_NSFW_10548571.jpeg b/civitai/sdxl_1.0/Realistic_Freedom_-_SFW_and_NSFW_10548571.jpeg index ac39461..2c68ce3 100644 Binary files a/civitai/sdxl_1.0/Realistic_Freedom_-_SFW_and_NSFW_10548571.jpeg and b/civitai/sdxl_1.0/Realistic_Freedom_-_SFW_and_NSFW_10548571.jpeg differ diff --git a/civitai/sdxl_1.0/Reproduction___SDXL_3963302.jpeg b/civitai/sdxl_1.0/Reproduction___SDXL_3963302.jpeg index 072d03a..e5444d2 100644 Binary files a/civitai/sdxl_1.0/Reproduction___SDXL_3963302.jpeg and b/civitai/sdxl_1.0/Reproduction___SDXL_3963302.jpeg differ diff --git a/civitai/sdxl_1.0/Riot_Diffusion_XL___League_of_Legends_Splash_Art__Arcane__Valorant__Runeterra__Wild_Rift__Mobile_Legends__Artstation__Pixiv_2927158.jpeg b/civitai/sdxl_1.0/Riot_Diffusion_XL___League_of_Legends_Splash_Art__Arcane__Valorant__Runeterra__Wild_Rift__Mobile_Legends__Artstation__Pixiv_2927158.jpeg index 53ac093..a4d10a1 100644 Binary files a/civitai/sdxl_1.0/Riot_Diffusion_XL___League_of_Legends_Splash_Art__Arcane__Valorant__Runeterra__Wild_Rift__Mobile_Legends__Artstation__Pixiv_2927158.jpeg and b/civitai/sdxl_1.0/Riot_Diffusion_XL___League_of_Legends_Splash_Art__Arcane__Valorant__Runeterra__Wild_Rift__Mobile_Legends__Artstation__Pixiv_2927158.jpeg differ diff --git a/civitai/sdxl_1.0/RunDiffusion_XL_1841032.jpeg b/civitai/sdxl_1.0/RunDiffusion_XL_1841032.jpeg index 7c7b88b..44b9ae7 100644 Binary files a/civitai/sdxl_1.0/RunDiffusion_XL_1841032.jpeg and b/civitai/sdxl_1.0/RunDiffusion_XL_1841032.jpeg differ diff --git a/civitai/sdxl_1.0/SDVN6-RealXL_1889585.jpeg b/civitai/sdxl_1.0/SDVN6-RealXL_1889585.jpeg index 8ef2d29..7beb9bf 100644 Binary files a/civitai/sdxl_1.0/SDVN6-RealXL_1889585.jpeg and b/civitai/sdxl_1.0/SDVN6-RealXL_1889585.jpeg differ diff --git a/civitai/sdxl_1.0/SDVN7-NijiStyleXL_2367463.jpeg b/civitai/sdxl_1.0/SDVN7-NijiStyleXL_2367463.jpeg index bd77c21..d2c7f42 100644 Binary files a/civitai/sdxl_1.0/SDVN7-NijiStyleXL_2367463.jpeg and b/civitai/sdxl_1.0/SDVN7-NijiStyleXL_2367463.jpeg differ diff --git a/civitai/sdxl_1.0/SDVN8-ArtXL_3387806.jpeg b/civitai/sdxl_1.0/SDVN8-ArtXL_3387806.jpeg index 7deab61..e997ab1 100644 Binary files a/civitai/sdxl_1.0/SDVN8-ArtXL_3387806.jpeg and b/civitai/sdxl_1.0/SDVN8-ArtXL_3387806.jpeg differ diff --git a/civitai/sdxl_1.0/SDXL_1.0_ArienMixXL_Asian_portrait_ไบšๆดฒไบบๅƒ_12612947.jpeg b/civitai/sdxl_1.0/SDXL_1.0_ArienMixXL_Asian_portrait_ไบšๆดฒไบบๅƒ_12612947.jpeg index 2710045..eb342cf 100644 Binary files a/civitai/sdxl_1.0/SDXL_1.0_ArienMixXL_Asian_portrait_ไบšๆดฒไบบๅƒ_12612947.jpeg and b/civitai/sdxl_1.0/SDXL_1.0_ArienMixXL_Asian_portrait_ไบšๆดฒไบบๅƒ_12612947.jpeg differ diff --git a/civitai/sdxl_1.0/SDXL_HK_40265152.jpeg b/civitai/sdxl_1.0/SDXL_HK_40265152.jpeg index 0386e11..3a9233b 100644 Binary files a/civitai/sdxl_1.0/SDXL_HK_40265152.jpeg and b/civitai/sdxl_1.0/SDXL_HK_40265152.jpeg differ diff --git a/civitai/sdxl_1.0/SDXL_Niji_Seven_20802036.jpeg b/civitai/sdxl_1.0/SDXL_Niji_Seven_20802036.jpeg index e0787c4..62aec38 100644 Binary files a/civitai/sdxl_1.0/SDXL_Niji_Seven_20802036.jpeg and b/civitai/sdxl_1.0/SDXL_Niji_Seven_20802036.jpeg differ diff --git a/civitai/sdxl_1.0/SDXL_Unstable_Diffusers___YamerMIX_8063881.jpeg b/civitai/sdxl_1.0/SDXL_Unstable_Diffusers___YamerMIX_8063881.jpeg index f4f0d89..634455d 100644 Binary files a/civitai/sdxl_1.0/SDXL_Unstable_Diffusers___YamerMIX_8063881.jpeg and b/civitai/sdxl_1.0/SDXL_Unstable_Diffusers___YamerMIX_8063881.jpeg differ diff --git a/civitai/sdxl_1.0/SDXL_YAMER_S_PERFECT_DESIGN___6973466.jpeg b/civitai/sdxl_1.0/SDXL_YAMER_S_PERFECT_DESIGN___6973466.jpeg index d7ac47d..c0451c0 100644 Binary files a/civitai/sdxl_1.0/SDXL_YAMER_S_PERFECT_DESIGN___6973466.jpeg and b/civitai/sdxl_1.0/SDXL_YAMER_S_PERFECT_DESIGN___6973466.jpeg differ diff --git a/civitai/sdxl_1.0/SDXL_Yamer_s_Anime_____Unstable_Illustrator_7561093.jpeg b/civitai/sdxl_1.0/SDXL_Yamer_s_Anime_____Unstable_Illustrator_7561093.jpeg index 7a1e736..7b05429 100644 Binary files a/civitai/sdxl_1.0/SDXL_Yamer_s_Anime_____Unstable_Illustrator_7561093.jpeg and b/civitai/sdxl_1.0/SDXL_Yamer_s_Anime_____Unstable_Illustrator_7561093.jpeg differ diff --git a/civitai/sdxl_1.0/SDXL_Yamer_s_Realism__-_Realistic_Anime_3D_3795758.jpeg b/civitai/sdxl_1.0/SDXL_Yamer_s_Realism__-_Realistic_Anime_3D_3795758.jpeg index 91b8506..5a4059c 100644 Binary files a/civitai/sdxl_1.0/SDXL_Yamer_s_Realism__-_Realistic_Anime_3D_3795758.jpeg and b/civitai/sdxl_1.0/SDXL_Yamer_s_Realism__-_Realistic_Anime_3D_3795758.jpeg differ diff --git a/civitai/sdxl_1.0/SDXL_Yamer_s_Realistic_5________5668521.jpeg b/civitai/sdxl_1.0/SDXL_Yamer_s_Realistic_5________5668521.jpeg index 6c5e437..a91f83e 100644 Binary files a/civitai/sdxl_1.0/SDXL_Yamer_s_Realistic_5________5668521.jpeg and b/civitai/sdxl_1.0/SDXL_Yamer_s_Realistic_5________5668521.jpeg differ diff --git a/civitai/sdxl_1.0/SDXL_fixedvae_fp16_Remove_Watermark__1795012.jpeg b/civitai/sdxl_1.0/SDXL_fixedvae_fp16_Remove_Watermark__1795012.jpeg index 4a7a278..df28f46 100644 Binary files a/civitai/sdxl_1.0/SDXL_fixedvae_fp16_Remove_Watermark__1795012.jpeg and b/civitai/sdxl_1.0/SDXL_fixedvae_fp16_Remove_Watermark__1795012.jpeg differ diff --git a/civitai/sdxl_1.0/SD_XL_1777436.jpeg b/civitai/sdxl_1.0/SD_XL_1777436.jpeg index 083a89e..b491822 100644 Binary files a/civitai/sdxl_1.0/SD_XL_1777436.jpeg and b/civitai/sdxl_1.0/SD_XL_1777436.jpeg differ diff --git a/civitai/sdxl_1.0/Samaritan_3d_Cartoon_2117788.jpeg b/civitai/sdxl_1.0/Samaritan_3d_Cartoon_2117788.jpeg index e499387..9d36f19 100644 Binary files a/civitai/sdxl_1.0/Samaritan_3d_Cartoon_2117788.jpeg and b/civitai/sdxl_1.0/Samaritan_3d_Cartoon_2117788.jpeg differ diff --git a/civitai/sdxl_1.0/ShikiAnimeXL_1823017.jpeg b/civitai/sdxl_1.0/ShikiAnimeXL_1823017.jpeg index 1d83301..a568ca2 100644 Binary files a/civitai/sdxl_1.0/ShikiAnimeXL_1823017.jpeg and b/civitai/sdxl_1.0/ShikiAnimeXL_1823017.jpeg differ diff --git a/civitai/sdxl_1.0/Stable-Diffusion-XL-Anime-Final_20911680.jpeg b/civitai/sdxl_1.0/Stable-Diffusion-XL-Anime-Final_20911680.jpeg index 683ad71..51b5206 100644 Binary files a/civitai/sdxl_1.0/Stable-Diffusion-XL-Anime-Final_20911680.jpeg and b/civitai/sdxl_1.0/Stable-Diffusion-XL-Anime-Final_20911680.jpeg differ diff --git a/civitai/sdxl_1.0/Starlight_XL_ๆ˜Ÿๅ…‰_Animated_2937177.jpeg b/civitai/sdxl_1.0/Starlight_XL_ๆ˜Ÿๅ…‰_Animated_2937177.jpeg index d87845a..ace61fb 100644 Binary files a/civitai/sdxl_1.0/Starlight_XL_ๆ˜Ÿๅ…‰_Animated_2937177.jpeg and b/civitai/sdxl_1.0/Starlight_XL_ๆ˜Ÿๅ…‰_Animated_2937177.jpeg differ diff --git a/civitai/sdxl_1.0/Suzanne_s_XL_Mix_35986895.jpeg b/civitai/sdxl_1.0/Suzanne_s_XL_Mix_35986895.jpeg index 294c889..dd35020 100644 Binary files a/civitai/sdxl_1.0/Suzanne_s_XL_Mix_35986895.jpeg and b/civitai/sdxl_1.0/Suzanne_s_XL_Mix_35986895.jpeg differ diff --git a/civitai/sdxl_1.0/TalmendoXL_-_SDXL_Uncensored_Full_Model_1846916.jpeg b/civitai/sdxl_1.0/TalmendoXL_-_SDXL_Uncensored_Full_Model_1846916.jpeg index 40e67de..a8f7fa2 100644 Binary files a/civitai/sdxl_1.0/TalmendoXL_-_SDXL_Uncensored_Full_Model_1846916.jpeg and b/civitai/sdxl_1.0/TalmendoXL_-_SDXL_Uncensored_Full_Model_1846916.jpeg differ diff --git a/civitai/sdxl_1.0/Tamarin_XL_4827271.jpeg b/civitai/sdxl_1.0/Tamarin_XL_4827271.jpeg index b98845f..2ab5b22 100644 Binary files a/civitai/sdxl_1.0/Tamarin_XL_4827271.jpeg and b/civitai/sdxl_1.0/Tamarin_XL_4827271.jpeg differ diff --git a/civitai/sdxl_1.0/ThinkDiffusionXL_3062343.jpeg b/civitai/sdxl_1.0/ThinkDiffusionXL_3062343.jpeg index f9a72b8..032f76d 100644 Binary files a/civitai/sdxl_1.0/ThinkDiffusionXL_3062343.jpeg and b/civitai/sdxl_1.0/ThinkDiffusionXL_3062343.jpeg differ diff --git a/civitai/sdxl_1.0/WildCardX-XL-Fusion_6702952.jpeg b/civitai/sdxl_1.0/WildCardX-XL-Fusion_6702952.jpeg index a942c80..0479767 100644 Binary files a/civitai/sdxl_1.0/WildCardX-XL-Fusion_6702952.jpeg and b/civitai/sdxl_1.0/WildCardX-XL-Fusion_6702952.jpeg differ diff --git a/civitai/sdxl_1.0/WildCardX-XL_5766136.jpeg b/civitai/sdxl_1.0/WildCardX-XL_5766136.jpeg index 2e378a8..d89a3fc 100644 Binary files a/civitai/sdxl_1.0/WildCardX-XL_5766136.jpeg and b/civitai/sdxl_1.0/WildCardX-XL_5766136.jpeg differ diff --git a/civitai/sdxl_1.0/WildCardX-XL_ANIMATION_7398188.jpeg b/civitai/sdxl_1.0/WildCardX-XL_ANIMATION_7398188.jpeg index 99155a4..6f5a1bc 100644 Binary files a/civitai/sdxl_1.0/WildCardX-XL_ANIMATION_7398188.jpeg and b/civitai/sdxl_1.0/WildCardX-XL_ANIMATION_7398188.jpeg differ diff --git a/civitai/sdxl_1.0/WyvernMix__1.5___XL__20143382.jpeg b/civitai/sdxl_1.0/WyvernMix__1.5___XL__20143382.jpeg index daa9e77..dde8a9b 100644 Binary files a/civitai/sdxl_1.0/WyvernMix__1.5___XL__20143382.jpeg and b/civitai/sdxl_1.0/WyvernMix__1.5___XL__20143382.jpeg differ diff --git a/civitai/sdxl_1.0/XL6_-_HEPHAISTOS__SD_1.0XL__SFW_NSFW__2441472.jpeg b/civitai/sdxl_1.0/XL6_-_HEPHAISTOS__SD_1.0XL__SFW_NSFW__2441472.jpeg index 16d205b..ca1ea41 100644 Binary files a/civitai/sdxl_1.0/XL6_-_HEPHAISTOS__SD_1.0XL__SFW_NSFW__2441472.jpeg and b/civitai/sdxl_1.0/XL6_-_HEPHAISTOS__SD_1.0XL__SFW_NSFW__2441472.jpeg differ diff --git a/civitai/sdxl_1.0/XXMix_9realisticSDXL_2528762.jpeg b/civitai/sdxl_1.0/XXMix_9realisticSDXL_2528762.jpeg index 6909fc0..993bc5d 100644 Binary files a/civitai/sdxl_1.0/XXMix_9realisticSDXL_2528762.jpeg and b/civitai/sdxl_1.0/XXMix_9realisticSDXL_2528762.jpeg differ diff --git a/civitai/sdxl_1.0/ZavyChromaXL_32530768.jpeg b/civitai/sdxl_1.0/ZavyChromaXL_32530768.jpeg index 84b85c0..91a77d4 100644 Binary files a/civitai/sdxl_1.0/ZavyChromaXL_32530768.jpeg and b/civitai/sdxl_1.0/ZavyChromaXL_32530768.jpeg differ diff --git a/civitai/sdxl_1.0/_CHEYENNE__42073184.jpeg b/civitai/sdxl_1.0/_CHEYENNE__42073184.jpeg index 8ea10e9..040d290 100644 Binary files a/civitai/sdxl_1.0/_CHEYENNE__42073184.jpeg and b/civitai/sdxl_1.0/_CHEYENNE__42073184.jpeg differ diff --git a/civitai/sdxl_1.0/_MOHAWK__5164213.jpeg b/civitai/sdxl_1.0/_MOHAWK__5164213.jpeg index fe0c060..616ef3f 100644 Binary files a/civitai/sdxl_1.0/_MOHAWK__5164213.jpeg and b/civitai/sdxl_1.0/_MOHAWK__5164213.jpeg differ diff --git a/civitai/sdxl_1.0/_SDXL__RongHua___ๅฎนๅŽ___ๅ›ฝ้ฃŽๅคงๆจกๅž‹_10894281.jpeg b/civitai/sdxl_1.0/_SDXL__RongHua___ๅฎนๅŽ___ๅ›ฝ้ฃŽๅคงๆจกๅž‹_10894281.jpeg index 1dfb9b3..819d99a 100644 Binary files a/civitai/sdxl_1.0/_SDXL__RongHua___ๅฎนๅŽ___ๅ›ฝ้ฃŽๅคงๆจกๅž‹_10894281.jpeg and b/civitai/sdxl_1.0/_SDXL__RongHua___ๅฎนๅŽ___ๅ›ฝ้ฃŽๅคงๆจกๅž‹_10894281.jpeg differ diff --git a/civitai/sdxl_1.0/__SDXL_FaeTastic___5294181.jpeg b/civitai/sdxl_1.0/__SDXL_FaeTastic___5294181.jpeg index 59ecf1f..d5743c0 100644 Binary files a/civitai/sdxl_1.0/__SDXL_FaeTastic___5294181.jpeg and b/civitai/sdxl_1.0/__SDXL_FaeTastic___5294181.jpeg differ diff --git a/civitai/sdxl_1.0/anima_pencil-XL_17129585.jpeg b/civitai/sdxl_1.0/anima_pencil-XL_17129585.jpeg index aaf23de..ebbde63 100644 Binary files a/civitai/sdxl_1.0/anima_pencil-XL_17129585.jpeg and b/civitai/sdxl_1.0/anima_pencil-XL_17129585.jpeg differ diff --git a/civitai/sdxl_1.0/blue_pencil-XL_16849253.jpeg b/civitai/sdxl_1.0/blue_pencil-XL_16849253.jpeg index 19be0ac..b6f8689 100644 Binary files a/civitai/sdxl_1.0/blue_pencil-XL_16849253.jpeg and b/civitai/sdxl_1.0/blue_pencil-XL_16849253.jpeg differ diff --git a/civitai/sdxl_1.0/epiCRealism_XL_40958994.jpeg b/civitai/sdxl_1.0/epiCRealism_XL_40958994.jpeg index 7a03a3f..08160a9 100644 Binary files a/civitai/sdxl_1.0/epiCRealism_XL_40958994.jpeg and b/civitai/sdxl_1.0/epiCRealism_XL_40958994.jpeg differ diff --git a/civitai/sdxl_1.0/fuduki_mix_4673188.jpeg b/civitai/sdxl_1.0/fuduki_mix_4673188.jpeg index 93725bf..f3f882d 100644 Binary files a/civitai/sdxl_1.0/fuduki_mix_4673188.jpeg and b/civitai/sdxl_1.0/fuduki_mix_4673188.jpeg differ diff --git a/civitai/sdxl_1.0/t3_43839013.jpeg b/civitai/sdxl_1.0/t3_43839013.jpeg index ba34156..ab588da 100644 Binary files a/civitai/sdxl_1.0/t3_43839013.jpeg and b/civitai/sdxl_1.0/t3_43839013.jpeg differ diff --git a/civitai/sdxl_1.0/ไธ‡่ฑก็†”็‚‰___Anything_XL_12622035.jpeg b/civitai/sdxl_1.0/ไธ‡่ฑก็†”็‚‰___Anything_XL_12622035.jpeg index 1416d9e..c8912c5 100644 Binary files a/civitai/sdxl_1.0/ไธ‡่ฑก็†”็‚‰___Anything_XL_12622035.jpeg and b/civitai/sdxl_1.0/ไธ‡่ฑก็†”็‚‰___Anything_XL_12622035.jpeg differ diff --git a/civitai/sdxl_1.0/ๅ›ฝ้ฃŽ4_GuoFeng4_XL_3174094.jpeg b/civitai/sdxl_1.0/ๅ›ฝ้ฃŽ4_GuoFeng4_XL_3174094.jpeg index f57727d..66b3e1c 100644 Binary files a/civitai/sdxl_1.0/ๅ›ฝ้ฃŽ4_GuoFeng4_XL_3174094.jpeg and b/civitai/sdxl_1.0/ๅ›ฝ้ฃŽ4_GuoFeng4_XL_3174094.jpeg differ diff --git a/civitai/sdxl_hyper/Boltning_-_Realistic__Lightning__HYPER_11654534.jpeg b/civitai/sdxl_hyper/Boltning_-_Realistic__Lightning__HYPER_11654534.jpeg index f3d54c1..de78563 100644 Binary files a/civitai/sdxl_hyper/Boltning_-_Realistic__Lightning__HYPER_11654534.jpeg and b/civitai/sdxl_hyper/Boltning_-_Realistic__Lightning__HYPER_11654534.jpeg differ diff --git a/civitai/sdxl_lightning/ForRealXL___V1.0_23695901.jpeg b/civitai/sdxl_lightning/ForRealXL___V1.0_23695901.jpeg index 7523b83..062cfa8 100644 Binary files a/civitai/sdxl_lightning/ForRealXL___V1.0_23695901.jpeg and b/civitai/sdxl_lightning/ForRealXL___V1.0_23695901.jpeg differ diff --git a/civitai/sdxl_lightning/MoonRide_Mixes_8346185.jpeg b/civitai/sdxl_lightning/MoonRide_Mixes_8346185.jpeg index 34fbc95..468e9ac 100644 Binary files a/civitai/sdxl_lightning/MoonRide_Mixes_8346185.jpeg and b/civitai/sdxl_lightning/MoonRide_Mixes_8346185.jpeg differ diff --git a/civitai/sdxl_lightning/RealVisXL_V5.0_27392608.jpeg b/civitai/sdxl_lightning/RealVisXL_V5.0_27392608.jpeg index fcd90cc..066518f 100644 Binary files a/civitai/sdxl_lightning/RealVisXL_V5.0_27392608.jpeg and b/civitai/sdxl_lightning/RealVisXL_V5.0_27392608.jpeg differ diff --git a/civitai/sdxl_lightning/WildCardX-XL_LIGHTNING____7123736.jpeg b/civitai/sdxl_lightning/WildCardX-XL_LIGHTNING____7123736.jpeg index b80bc30..ac5aa95 100644 Binary files a/civitai/sdxl_lightning/WildCardX-XL_LIGHTNING____7123736.jpeg and b/civitai/sdxl_lightning/WildCardX-XL_LIGHTNING____7123736.jpeg differ diff --git a/civitai/sdxl_turbo/DreamShaper_XL_6840669.jpeg b/civitai/sdxl_turbo/DreamShaper_XL_6840669.jpeg index 9a34b40..eea4f17 100644 Binary files a/civitai/sdxl_turbo/DreamShaper_XL_6840669.jpeg and b/civitai/sdxl_turbo/DreamShaper_XL_6840669.jpeg differ diff --git a/civitai/sdxl_turbo/MagMix_14124033.jpeg b/civitai/sdxl_turbo/MagMix_14124033.jpeg index e2388d9..d0efd53 100644 Binary files a/civitai/sdxl_turbo/MagMix_14124033.jpeg and b/civitai/sdxl_turbo/MagMix_14124033.jpeg differ diff --git a/civitai/sdxl_turbo/RMSDXL_-_Hybrid_Turbo_XL__base_model__5808889.jpeg b/civitai/sdxl_turbo/RMSDXL_-_Hybrid_Turbo_XL__base_model__5808889.jpeg index 574619d..ee1a42e 100644 Binary files a/civitai/sdxl_turbo/RMSDXL_-_Hybrid_Turbo_XL__base_model__5808889.jpeg and b/civitai/sdxl_turbo/RMSDXL_-_Hybrid_Turbo_XL__base_model__5808889.jpeg differ diff --git a/civitai/sdxl_turbo/TurboVisionXL_-_Super_Fast_XL_based_on_new_SDXL_Turbo_-_3_-_5_step_quality_output_at_high_resolutions__4835549.jpeg b/civitai/sdxl_turbo/TurboVisionXL_-_Super_Fast_XL_based_on_new_SDXL_Turbo_-_3_-_5_step_quality_output_at_high_resolutions__4835549.jpeg index 3169167..657ac3c 100644 Binary files a/civitai/sdxl_turbo/TurboVisionXL_-_Super_Fast_XL_based_on_new_SDXL_Turbo_-_3_-_5_step_quality_output_at_high_resolutions__4835549.jpeg and b/civitai/sdxl_turbo/TurboVisionXL_-_Super_Fast_XL_based_on_new_SDXL_Turbo_-_3_-_5_step_quality_output_at_high_resolutions__4835549.jpeg differ diff --git a/civitai/sdxl_turbo/Ultraspice_18795215.jpeg b/civitai/sdxl_turbo/Ultraspice_18795215.jpeg index 816db8b..0ce376b 100644 Binary files a/civitai/sdxl_turbo/Ultraspice_18795215.jpeg and b/civitai/sdxl_turbo/Ultraspice_18795215.jpeg differ diff --git a/civitai/sdxl_turbo/WildCardX-XL_TURBO_6288452.jpeg b/civitai/sdxl_turbo/WildCardX-XL_TURBO_6288452.jpeg index ebc23bd..8ed065a 100644 Binary files a/civitai/sdxl_turbo/WildCardX-XL_TURBO_6288452.jpeg and b/civitai/sdxl_turbo/WildCardX-XL_TURBO_6288452.jpeg differ diff --git a/civitai/sdxl_turbo/____Realities_Edge_XL_____LIGHTNING___Turbo__6991224.jpeg b/civitai/sdxl_turbo/____Realities_Edge_XL_____LIGHTNING___Turbo__6991224.jpeg index c692366..9a67241 100644 Binary files a/civitai/sdxl_turbo/____Realities_Edge_XL_____LIGHTNING___Turbo__6991224.jpeg and b/civitai/sdxl_turbo/____Realities_Edge_XL_____LIGHTNING___Turbo__6991224.jpeg differ diff --git a/civitai/sdxl_turbo/fitCorderMix_-_TurboSDXL_4827128.jpeg b/civitai/sdxl_turbo/fitCorderMix_-_TurboSDXL_4827128.jpeg index 56fd560..48f8da8 100644 Binary files a/civitai/sdxl_turbo/fitCorderMix_-_TurboSDXL_4827128.jpeg and b/civitai/sdxl_turbo/fitCorderMix_-_TurboSDXL_4827128.jpeg differ diff --git a/line_selector.py b/line_selector.py new file mode 100644 index 0000000..e7cfb90 --- /dev/null +++ b/line_selector.py @@ -0,0 +1,64 @@ +class LineSelector: + def __init__(self): + pass + + @classmethod + def INPUT_TYPES(s): + return { + "required": { + "text": ("STRING", {"multiline": True}), # Input for multiple lines + "line_number": ("INT", {"default": 0, "min": 0, "max": 99999}), # 0 for random, >0 for specific line + }, + "optional": { + "variables": ("STRING", {"multiline": True, "forceInput": True}), + "seed": ("INT", { + "default": -1, + "min": -1, + "max": 0x7FFFFFFFFFFFFFFF + }), + }, + } + + RETURN_TYPES = ("STRING",) + FUNCTION = "select_line" + CATEGORY = "Bjornulf" + + def select_line(self, text, line_number, variables="", seed=-1): + # Parse variables + var_dict = {} + for line in variables.split('\n'): + if '=' in line: + key, value = line.split('=', 1) + var_dict[key.strip()] = value.strip() + + # Replace variables in the text + for key, value in var_dict.items(): + text = text.replace(f"<{key}>", value) + + # Split the input text into lines, remove empty lines and lines starting with # + lines = [line.strip() for line in text.split('\n') + if line.strip() and not line.strip().startswith('#')] + + if not lines: + return ("No valid lines found.",) + + import random + + # Set seed if provided + if seed >= 0: + random.seed(seed) + + # If line_number is 0, select random line + if line_number == 0: + selected = random.choice(lines) + else: + # If line_number is greater than 0, select specific line (with bounds checking) + index = min(line_number - 1, len(lines) - 1) # -1 because user input starts at 1 + index = max(0, index) # Ensure we don't go below 0 + selected = lines[index] + + return (selected,) + + @classmethod + def IS_CHANGED(s, text, line_number, variables="", seed=-1): + return (text, line_number, variables, seed) \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 747a6e1..3b8447a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "bjornulf_custom_nodes" description = "116 ComfyUI nodes : Display, manipulate, and edit text, images, videos, loras, generate characters and more. Manage looping operations, generate randomized content, use logical conditions and work with external AI tools, like Ollama or Text To Speech." -version = "0.65" +version = "0.66" license = {file = "LICENSE"} [project.urls] diff --git a/requirements.txt b/requirements.txt index f00045e..08e983d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,11 +3,6 @@ pydub opencv-python faster_whisper ffmpeg-python -re -subprocess civitai-py fal_client -shutil -hashlib -importlib -threading +importlib \ No newline at end of file diff --git a/screenshots/hunyuan_lora.png b/screenshots/hunyuan_lora.png new file mode 100644 index 0000000..ce89a9a Binary files /dev/null and b/screenshots/hunyuan_lora.png differ diff --git a/screenshots/line_selector.png b/screenshots/line_selector.png new file mode 100644 index 0000000..b6ebecd Binary files /dev/null and b/screenshots/line_selector.png differ diff --git a/screenshots/tts_config.png b/screenshots/tts_config.png new file mode 100644 index 0000000..786ff3e Binary files /dev/null and b/screenshots/tts_config.png differ diff --git a/text_to_speech.py b/text_to_speech.py index 0fb9bbb..7692469 100644 --- a/text_to_speech.py +++ b/text_to_speech.py @@ -1,3 +1,5 @@ +# nodes.py + import requests import numpy as np import io @@ -10,10 +12,9 @@ import sys import random import re from typing import Dict, Any, List, Tuple - -class Everything(str): - def __ne__(self, __value: object) -> bool: - return False +from server import PromptServer +from aiohttp import web +import json language_map = { "ar": "Arabic", "cs": "Czech", "de": "German", "en": "English", @@ -23,30 +24,47 @@ language_map = { "zh-cn": "Chinese" } +DEFAULT_CONFIG = { + "url": "http://localhost:8020", + "language": "English", + "speaker_wav": "default" +} + +class Everything(str): + def __ne__(self, __value: object) -> bool: + return False + +class XTTSConfig: + @classmethod + def INPUT_TYPES(cls): + return { + "required": { + "TTS_url": ("STRING", {"default": "http://localhost:8020"}), + "language": (list(language_map.values()), {"default": language_map["en"]}), + "speaker_wav": ("STRING", {"default": "default"}), + } + } + + RETURN_TYPES = ("TTS_URL", "TTS_LANGUAGE", "TTS_SPEAKER") + RETURN_NAMES = ("TTS_URL", "TTS_LANGUAGE", "TTS_SPEAKER") + FUNCTION = "configure_xtts" + CATEGORY = "Bjornulf" + + def configure_xtts(self, TTS_url, language, speaker_wav): + return (TTS_url, language, speaker_wav) + + @classmethod + def IS_CHANGED(cls, TTS_url, language, speaker_wav) -> float: + return 0.0 + class TextToSpeech: @classmethod def INPUT_TYPES(cls) -> Dict[str, Any]: - speakers_dir = os.path.join(os.path.dirname(os.path.realpath(__file__)), "speakers") - speaker_options = ["default_for_language"] # Add default option - speaker_options.extend([ - os.path.relpath(os.path.join(root, file), speakers_dir) - for root, _, files in os.walk(speakers_dir) - for file in files if file.endswith(".wav") - ]) - - speaker_options = speaker_options or ["No WAV files found"] - return { "required": { "text": ("STRING", {"multiline": True}), - "language": (list(language_map.values()), { - "default": language_map["en"], - "display": "dropdown" - }), - "speaker_wav": (speaker_options, { - "default": "default_for_language", - "display": "dropdown" - }), + "language": (list(language_map.values()), {"default": "English"}), + "speaker_wav": ("STRING", {"default": "default"}), "autoplay": ("BOOLEAN", {"default": True}), "save_audio": ("BOOLEAN", {"default": True}), "overwrite": ("BOOLEAN", {"default": False}), @@ -54,6 +72,9 @@ class TextToSpeech: }, "optional": { "connect_to_workflow": (Everything("*"), {"forceInput": True}), + "TTS_URL": ("TTS_URL", {"forceInput": True}), + "TTS_LANGUAGE": ("TTS_LANGUAGE", {"forceInput": True}), + "TTS_SPEAKER": ("TTS_SPEAKER", {"forceInput": True}), } } @@ -70,63 +91,10 @@ class TextToSpeech: def sanitize_text(text: str) -> str: return re.sub(r'[^\w\s-]', '', text).replace(' ', '_')[:50] - def get_default_speaker(self, language_code: str) -> str: - speakers_dir = os.path.join(os.path.dirname(os.path.realpath(__file__)), "speakers") - lang_dir = os.path.join(speakers_dir, language_code) - - # First try to find default.wav - default_path = os.path.join(language_code, "default.wav") - if os.path.exists(os.path.join(speakers_dir, default_path)): - return default_path - - # If default.wav doesn't exist, use the first .wav file in the language directory - if os.path.exists(lang_dir): - for file in os.listdir(lang_dir): - if file.endswith(".wav"): - return os.path.join(language_code, file) - - # If no suitable file is found, return the first available .wav file - for root, _, files in os.walk(speakers_dir): - for file in files: - if file.endswith(".wav"): - return os.path.relpath(os.path.join(root, file), speakers_dir) - - return "No WAV files found" - - def generate_audio(self, text: str, language: str, autoplay: bool, seed: int, - save_audio: bool, overwrite: bool, speaker_wav: str, - connect_to_workflow: Any = None) -> Tuple[Dict[str, Any], str, str, float]: - language_code = self.get_language_code(language) - - # Handle default_for_language option - if speaker_wav == "default_for_language": - speaker_wav = self.get_default_speaker(language_code) - - sanitized_text = self.sanitize_text(text) - - save_path = os.path.join("Bjornulf_TTS", language, speaker_wav, f"{sanitized_text}.wav") - full_path = os.path.abspath(save_path) - os.makedirs(os.path.dirname(full_path), exist_ok=True) - - if os.path.exists(full_path) and not overwrite: - print(f"Using existing audio file: {full_path}") - audio_data = self.load_audio_file(full_path) - else: - audio_data = self.create_new_audio(text, language_code, speaker_wav, seed) - if save_audio: - self.save_audio_file(audio_data, full_path) - - audio_output, _, duration = self.process_audio_data(autoplay, audio_data, full_path if save_audio else None) - return (audio_output, save_path, full_path, duration) - - def create_new_audio(self, text: str, language_code: str, speaker_wav: str, seed: int) -> io.BytesIO: + def create_new_audio(self, text: str, language_code: str, speaker_wav: str, seed: int, TTS_config: Dict) -> io.BytesIO: random.seed(seed) - if speaker_wav == "No WAV files found": - print("Error: No WAV files available for text-to-speech.") - return io.BytesIO() - encoded_text = urllib.parse.quote(text) - url = f"http://localhost:8020/tts_stream?language={language_code}&speaker_wav={speaker_wav}&text={encoded_text}" + url = f"{TTS_config['url']}/tts_stream?language={language_code}&speaker_wav={speaker_wav}&text={encoded_text}" try: response = requests.get(url, stream=True) @@ -194,4 +162,92 @@ class TextToSpeech: return audio_data except Exception as e: print(f"Error loading audio file: {e}") - return io.BytesIO() \ No newline at end of file + return io.BytesIO() + + def generate_audio(self, text: str, language: str, speaker_wav: str, + autoplay: bool, seed: int, save_audio: bool, overwrite: bool, + TTS_URL: str = None, TTS_LANGUAGE: str = None, + TTS_SPEAKER: str = None, connect_to_workflow: Any = None) -> Tuple[Dict[str, Any], str, str, float]: + + # Use provided config values or fallback to node parameters + config = { + "url": TTS_URL if TTS_URL is not None else DEFAULT_CONFIG["url"], + "language": TTS_LANGUAGE if TTS_LANGUAGE is not None else language, + "speaker_wav": TTS_SPEAKER if TTS_SPEAKER is not None else speaker_wav + } + + language_code = self.get_language_code(config["language"]) + speaker_wav = config["speaker_wav"] + + sanitized_text = self.sanitize_text(text) + save_path = os.path.join("Bjornulf_TTS", config["language"], speaker_wav, f"{sanitized_text}.wav") + full_path = os.path.abspath(save_path) + os.makedirs(os.path.dirname(full_path), exist_ok=True) + + if os.path.exists(full_path) and not overwrite: + print(f"Using existing audio file: {full_path}") + audio_data = self.load_audio_file(full_path) + else: + audio_data = self.create_new_audio(text, language_code, speaker_wav, seed, config) + if save_audio: + self.save_audio_file(audio_data, full_path) + + audio_output, _, duration = self.process_audio_data(autoplay, audio_data, full_path if save_audio else None) + return (audio_output, save_path, full_path, duration) + +# GET VOICE FROM TTS SERVER (Not good for now) +# @PromptServer.instance.routes.post("/bjornulf_TTS_get_voices") +# async def get_voices(request): +# try: +# data = await request.json() +# TTS_url = data.get('url', 'http://localhost:8020') + +# # Use requests instead of client_session +# response = requests.get(f"{TTS_url}/speakers") +# response.raise_for_status() # Raise an exception for bad status codes +# voices = response.json() + +# # Transform the response to just get the voice_ids +# voice_ids = [voice["voice_id"] for voice in voices] +# return web.json_response({"voices": voice_ids}) +# except requests.RequestException as e: +# print(f"Error fetching voices: {str(e)}") +# return web.json_response({"error": str(e)}, status=500) +# except Exception as e: +# print(f"Unexpected error: {str(e)}") +# return web.json_response({"error": str(e)}, status=500) + +# Scan folder +@PromptServer.instance.routes.post("/bjornulf_TTS_get_voices") +async def get_voices(request): + try: + base_path = os.path.join("custom_nodes", "Bjornulf_custom_nodes", "speakers") + voices_by_language = {} + + # Scan each language directory + for lang_code in language_map.keys(): + lang_path = os.path.join(base_path, lang_code) + + if os.path.exists(lang_path): + # List all .wav files in the language directory + voice_ids = [] + for file in os.listdir(lang_path): + if file.endswith('.wav'): + voice_id = os.path.splitext(file)[0] + # Include language code in voice ID + full_voice_id = f"{lang_code}/{voice_id}" + voice_ids.append(full_voice_id) + + if voice_ids: # Only add languages that have voices + voices_by_language[lang_code] = { + "name": language_map[lang_code], + "voices": voice_ids + } + + if not voices_by_language: + return web.json_response({"error": "No voice files found"}, status=404) + + return web.json_response({"languages": voices_by_language}) + except Exception as e: + print(f"Unexpected error: {str(e)}") + return web.json_response({"error": str(e)}, status=500) \ No newline at end of file diff --git a/web/js/tts_config.js b/web/js/tts_config.js new file mode 100644 index 0000000..a42858d --- /dev/null +++ b/web/js/tts_config.js @@ -0,0 +1,100 @@ +import { app } from "../../../scripts/app.js"; +const language_map = { + "ar": "Arabic", "cs": "Czech", "de": "German", "en": "English", + "es": "Spanish", "fr": "French", "hi": "Hindi", "hu": "Hungarian", + "it": "Italian", "ja": "Japanese", "ko": "Korean", "nl": "Dutch", + "pl": "Polish", "pt": "Portuguese", "ru": "Russian", "tr": "Turkish", + "zh-cn": "Chinese" +} +app.registerExtension({ + name: "Bjornulf.XTTSConfig", + async nodeCreated(node) { + if (node.comfyClass === "Bjornulf_XTTSConfig") { + // Add language combo widget + const languageWidget = node.widgets.find(w => w.name === "language"); + + // Add voice_list combo widget + const voiceListWidget = node.addWidget( + "combo", + "select_voice_here", + "", + (v) => { + // When voice_list changes, update speaker_wav + const speakerWidget = node.widgets.find(w => w.name === "speaker_wav"); + if (speakerWidget) { + speakerWidget.value = v; + } + }, + { values: [] } + ); + + // Function to update voices based on selected language + const updateVoicesForLanguage = async (selectedLanguage) => { + try { + const response = await fetch('/bjornulf_xtts_get_voices', { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + } + }); + + const data = await response.json(); + + if (data.languages) { + // Find the language code for the selected language name + const languageCode = Object.keys(language_map).find( + key => language_map[key] === selectedLanguage + ); + + if (languageCode && data.languages[languageCode]) { + const voices = data.languages[languageCode].voices; + // Voice IDs already include language prefix + voiceListWidget.options.values = voices; + + // Update the widgets with the first voice if available + if (voices.length > 0) { + voiceListWidget.value = voices[0]; + + // Update speaker_wav widget + const speakerWidget = node.widgets.find(w => w.name === "speaker_wav"); + if (speakerWidget) { + speakerWidget.value = voices[0]; + } + } + + app.ui.dialog.show(`Successfully loaded ${voices.length} voices for ${selectedLanguage}`); + } else { + voiceListWidget.options.values = []; + app.ui.dialog.show(`No voices found for ${selectedLanguage}`); + } + } + } catch (error) { + console.error('Error updating voices:', error); + app.ui.dialog.show("Error updating voices. Check the console for details."); + } + }; + + // Add update button + node.addCustomWidget({ + name: "Update Voices", + type: "button", + value: "Update Available Voices", + callback: async function() { + const selectedLanguage = languageWidget.value; + await updateVoicesForLanguage(selectedLanguage); + } + }); + + // Listen for language changes + if (languageWidget) { + const originalCallback = languageWidget.callback; + languageWidget.callback = function(value) { + if (originalCallback) { + originalCallback(value); + } + updateVoicesForLanguage(value); + }; + } + } + } +}); \ No newline at end of file diff --git a/workflows/HUNYUAN_basic_lora.json b/workflows/HUNYUAN_basic_lora.json new file mode 100644 index 0000000..fdbbfdb --- /dev/null +++ b/workflows/HUNYUAN_basic_lora.json @@ -0,0 +1,906 @@ +{ + "last_node_id": 70, + "last_link_id": 114, + "nodes": [ + { + "id": 13, + "type": "UNETLoader", + "pos": [ + -4725, + 1325 + ], + "size": [ + 450, + 82 + ], + "flags": {}, + "order": 0, + "mode": 0, + "inputs": [], + "outputs": [ + { + "name": "MODEL", + "type": "MODEL", + "links": [ + 69, + 109 + ], + "slot_index": 0, + "shape": 3 + } + ], + "properties": { + "Node name for S&R": "UNETLoader" + }, + "widgets_values": [ + "hunyuan_video_720_cfgdistill_fp8_e4m3fn.safetensors", + "default" + ] + }, + { + "id": 19, + "type": "DualCLIPLoader", + "pos": [ + -4675, + 1475 + ], + "size": [ + 400, + 106 + ], + "flags": {}, + "order": 1, + "mode": 0, + "inputs": [], + "outputs": [ + { + "name": "CLIP", + "type": "CLIP", + "links": [ + 110 + ], + "slot_index": 0, + "shape": 3 + } + ], + "properties": { + "Node name for S&R": "DualCLIPLoader" + }, + "widgets_values": [ + "clip_l.safetensors", + "llava_llama3_fp8_scaled.safetensors", + "hunyuan_video", + "default" + ] + }, + { + "id": 14, + "type": "VAELoader", + "pos": [ + -4625, + 1200 + ], + "size": [ + 350, + 60 + ], + "flags": {}, + "order": 2, + "mode": 0, + "inputs": [], + "outputs": [ + { + "name": "VAE", + "type": "VAE", + "links": [ + 16 + ], + "slot_index": 0, + "shape": 3 + } + ], + "properties": { + "Node name for S&R": "VAELoader" + }, + "widgets_values": [ + "hunyuan_video_vae_bf16.safetensors" + ] + }, + { + "id": 20, + "type": "CLIPTextEncode", + "pos": [ + -4225, + 1350 + ], + "size": [ + 325, + 54 + ], + "flags": {}, + "order": 10, + "mode": 0, + "inputs": [ + { + "name": "clip", + "type": "CLIP", + "link": 76 + }, + { + "name": "text", + "type": "STRING", + "link": 112, + "widget": { + "name": "text" + } + } + ], + "outputs": [ + { + "name": "CONDITIONING", + "type": "CONDITIONING", + "links": [ + 24 + ], + "slot_index": 0 + } + ], + "title": "CLIP Text Encode (Positive Prompt)", + "properties": { + "Node name for S&R": "CLIPTextEncode" + }, + "widgets_values": [ + "" + ], + "color": "#232", + "bgcolor": "#353" + }, + { + "id": 10, + "type": "BasicGuider", + "pos": [ + -3700, + 1550 + ], + "size": [ + 250, + 50 + ], + "flags": {}, + "order": 13, + "mode": 0, + "inputs": [ + { + "name": "model", + "type": "MODEL", + "link": 74, + "slot_index": 0 + }, + { + "name": "conditioning", + "type": "CONDITIONING", + "link": 28, + "slot_index": 1 + } + ], + "outputs": [ + { + "name": "GUIDER", + "type": "GUIDER", + "links": [ + 5 + ], + "slot_index": 0, + "shape": 3 + } + ], + "properties": { + "Node name for S&R": "BasicGuider" + }, + "widgets_values": [] + }, + { + "id": 5, + "type": "SamplerCustomAdvanced", + "pos": [ + -3700, + 1375 + ], + "size": [ + 250, + 125 + ], + "flags": {}, + "order": 14, + "mode": 0, + "inputs": [ + { + "name": "noise", + "type": "NOISE", + "link": 4, + "slot_index": 0 + }, + { + "name": "guider", + "type": "GUIDER", + "link": 5, + "slot_index": 1 + }, + { + "name": "sampler", + "type": "SAMPLER", + "link": 68, + "slot_index": 2 + }, + { + "name": "sigmas", + "type": "SIGMAS", + "link": 42, + "slot_index": 3 + }, + { + "name": "latent_image", + "type": "LATENT", + "link": 67, + "slot_index": 4 + } + ], + "outputs": [ + { + "name": "output", + "type": "LATENT", + "links": [ + 1 + ], + "slot_index": 0, + "shape": 3 + }, + { + "name": "denoised_output", + "type": "LATENT", + "links": [], + "slot_index": 1, + "shape": 3 + } + ], + "properties": { + "Node name for S&R": "SamplerCustomAdvanced" + }, + "widgets_values": [] + }, + { + "id": 4, + "type": "RandomNoise", + "pos": [ + -3700, + 1225 + ], + "size": [ + 250, + 82 + ], + "flags": {}, + "order": 3, + "mode": 0, + "inputs": [], + "outputs": [ + { + "name": "NOISE", + "type": "NOISE", + "links": [ + 4 + ], + "slot_index": 0, + "shape": 3 + } + ], + "properties": { + "Node name for S&R": "RandomNoise" + }, + "widgets_values": [ + 555662145774247, + "randomize" + ] + }, + { + "id": 68, + "type": "Bjornulf_WriteText", + "pos": [ + -4625, + 1650 + ], + "size": [ + 350, + 150 + ], + "flags": {}, + "order": 4, + "mode": 0, + "inputs": [], + "outputs": [ + { + "name": "text", + "type": "STRING", + "links": [ + 112 + ], + "slot_index": 0 + } + ], + "properties": { + "Node name for S&R": "Bjornulf_WriteText" + }, + "widgets_values": [ + "Yoda baking cookies in a vibrant living room. He's surrounded by a colorful, eclectic decor, with a floral-patterned couch, a blue kitchen island, and a purple door in the background. In the foreground, a Hippo, a deer, and a cat sit on a coffee table, looking hungry. The Hippo sits in the middle, holding a cookie." + ], + "color": "#232", + "bgcolor": "#353" + }, + { + "id": 69, + "type": "Bjornulf_ShowStringText", + "pos": [ + -4600, + 1875 + ], + "size": [ + 315, + 76 + ], + "flags": {}, + "order": 11, + "mode": 0, + "inputs": [ + { + "name": "STRING", + "type": "STRING", + "link": 113, + "widget": { + "name": "STRING" + } + } + ], + "outputs": [], + "properties": { + "Node name for S&R": "Bjornulf_ShowStringText" + }, + "widgets_values": [ + "", + "https://civitai.com/models/1089122" + ] + }, + { + "id": 11, + "type": "ModelSamplingSD3", + "pos": [ + -3700, + 1650 + ], + "size": [ + 250, + 58 + ], + "flags": {}, + "order": 9, + "mode": 0, + "inputs": [ + { + "name": "model", + "type": "MODEL", + "link": 75 + } + ], + "outputs": [ + { + "name": "MODEL", + "type": "MODEL", + "links": [], + "slot_index": 0 + } + ], + "properties": { + "Node name for S&R": "ModelSamplingSD3" + }, + "widgets_values": [ + 17 + ] + }, + { + "id": 21, + "type": "FluxGuidance", + "pos": [ + -3700, + 1925 + ], + "size": [ + 250, + 58 + ], + "flags": {}, + "order": 12, + "mode": 0, + "inputs": [ + { + "name": "conditioning", + "type": "CONDITIONING", + "link": 24 + } + ], + "outputs": [ + { + "name": "CONDITIONING", + "type": "CONDITIONING", + "links": [ + 28 + ], + "slot_index": 0, + "shape": 3 + } + ], + "properties": { + "Node name for S&R": "FluxGuidance" + }, + "widgets_values": [ + 9 + ] + }, + { + "id": 50, + "type": "Bjornulf_CivitAILoraSelectorHunyuan", + "pos": [ + -4225, + 1475 + ], + "size": [ + 475, + 525 + ], + "flags": {}, + "order": 8, + "mode": 0, + "inputs": [ + { + "name": "model", + "type": "MODEL", + "link": 109 + }, + { + "name": "clip", + "type": "CLIP", + "link": 110 + } + ], + "outputs": [ + { + "name": "model", + "type": "MODEL", + "links": [ + 74, + 75 + ], + "slot_index": 0 + }, + { + "name": "clip", + "type": "CLIP", + "links": [ + 76 + ], + "slot_index": 1 + }, + { + "name": "name", + "type": "STRING", + "links": null + }, + { + "name": "civitai_url", + "type": "STRING", + "links": [ + 113 + ], + "slot_index": 3 + }, + { + "name": "trigger_words", + "type": "STRING", + "links": [], + "slot_index": 4 + } + ], + "properties": { + "Node name for S&R": "Bjornulf_CivitAILoraSelectorHunyuan" + }, + "widgets_values": [ + "lora_hunyuan_video/Monica_s_apartment_Hunyuan_Video_lora_48673748.jpeg", + 1, + 1, + "a09547e0c56002bdee0d52dadc1a3773", + "image" + ] + }, + { + "id": 38, + "type": "KSamplerSelect", + "pos": [ + -3950, + 1225 + ], + "size": [ + 210, + 58 + ], + "flags": {}, + "order": 5, + "mode": 0, + "inputs": [], + "outputs": [ + { + "name": "SAMPLER", + "type": "SAMPLER", + "links": [ + 68 + ] + } + ], + "properties": { + "Node name for S&R": "KSamplerSelect" + }, + "widgets_values": [ + "euler" + ] + }, + { + "id": 37, + "type": "EmptyHunyuanLatentVideo", + "pos": [ + -4225, + 1150 + ], + "size": [ + 250, + 130 + ], + "flags": {}, + "order": 6, + "mode": 0, + "inputs": [], + "outputs": [ + { + "name": "LATENT", + "type": "LATENT", + "links": [ + 67 + ] + } + ], + "properties": { + "Node name for S&R": "EmptyHunyuanLatentVideo" + }, + "widgets_values": [ + 768, + 448, + 25, + 1 + ] + }, + { + "id": 7, + "type": "BasicScheduler", + "pos": [ + -3700, + 1775 + ], + "size": [ + 250, + 106 + ], + "flags": {}, + "order": 7, + "mode": 0, + "inputs": [ + { + "name": "model", + "type": "MODEL", + "link": 69 + } + ], + "outputs": [ + { + "name": "SIGMAS", + "type": "SIGMAS", + "links": [ + 42 + ], + "slot_index": 0 + } + ], + "properties": { + "Node name for S&R": "BasicScheduler" + }, + "widgets_values": [ + "normal", + 14, + 1 + ] + }, + { + "id": 9, + "type": "VHS_VideoCombine", + "pos": [ + -3400, + 1425 + ], + "size": [ + 400, + 569.6666870117188 + ], + "flags": {}, + "order": 16, + "mode": 0, + "inputs": [ + { + "name": "images", + "type": "IMAGE", + "link": 11 + }, + { + "name": "audio", + "type": "AUDIO", + "link": null, + "shape": 7 + }, + { + "name": "meta_batch", + "type": "VHS_BatchManager", + "link": null, + "shape": 7 + }, + { + "name": "vae", + "type": "VAE", + "link": null, + "shape": 7 + } + ], + "outputs": [ + { + "name": "Filenames", + "type": "VHS_FILENAMES", + "links": null + } + ], + "properties": { + "Node name for S&R": "VHS_VideoCombine" + }, + "widgets_values": { + "frame_rate": 25, + "loop_count": 0, + "filename_prefix": "Hunyuan/videos/25/vid", + "format": "video/nvenc_h264-mp4", + "pix_fmt": "yuv420p", + "bitrate": 10, + "megabit": true, + "save_metadata": true, + "pingpong": false, + "save_output": true, + "videopreview": { + "hidden": false, + "paused": false, + "muted": false + } + } + }, + { + "id": 1, + "type": "VAEDecodeTiled", + "pos": [ + -3400, + 1200 + ], + "size": [ + 210, + 150 + ], + "flags": {}, + "order": 15, + "mode": 0, + "inputs": [ + { + "name": "samples", + "type": "LATENT", + "link": 1 + }, + { + "name": "vae", + "type": "VAE", + "link": 16 + } + ], + "outputs": [ + { + "name": "IMAGE", + "type": "IMAGE", + "links": [ + 11 + ], + "slot_index": 0 + } + ], + "properties": { + "Node name for S&R": "VAEDecodeTiled" + }, + "widgets_values": [ + 128, + 32, + 64, + 8 + ] + } + ], + "links": [ + [ + 1, + 5, + 0, + 1, + 0, + "LATENT" + ], + [ + 4, + 4, + 0, + 5, + 0, + "NOISE" + ], + [ + 5, + 10, + 0, + 5, + 1, + "GUIDER" + ], + [ + 11, + 1, + 0, + 9, + 0, + "IMAGE" + ], + [ + 16, + 14, + 0, + 1, + 1, + "VAE" + ], + [ + 24, + 20, + 0, + 21, + 0, + "CONDITIONING" + ], + [ + 28, + 21, + 0, + 10, + 1, + "CONDITIONING" + ], + [ + 42, + 7, + 0, + 5, + 3, + "SIGMAS" + ], + [ + 67, + 37, + 0, + 5, + 4, + "LATENT" + ], + [ + 68, + 38, + 0, + 5, + 2, + "SAMPLER" + ], + [ + 69, + 13, + 0, + 7, + 0, + "MODEL" + ], + [ + 74, + 50, + 0, + 10, + 0, + "MODEL" + ], + [ + 75, + 50, + 0, + 11, + 0, + "MODEL" + ], + [ + 76, + 50, + 1, + 20, + 0, + "CLIP" + ], + [ + 109, + 13, + 0, + 50, + 0, + "MODEL" + ], + [ + 110, + 19, + 0, + 50, + 1, + "CLIP" + ], + [ + 112, + 68, + 0, + 20, + 1, + "STRING" + ], + [ + 113, + 50, + 3, + 69, + 0, + "STRING" + ] + ], + "groups": [], + "config": {}, + "extra": { + "ds": { + "scale": 0.9646149645000084, + "offset": [ + 4904.755265259219, + -1072.1311271377874 + ] + }, + "node_versions": { + "comfy-core": "0.3.12", + "Bjornulf_custom_nodes": "0c2a977076ee58ea4ac8408fd69f6f2ee1e4df6e", + "comfyui-videohelpersuite": "c5216a51c0254372f61d94c365595d29040ff1f2" + }, + "VHS_latentpreview": false, + "VHS_latentpreviewrate": 0 + }, + "version": 0.4 +}