Instructions to use dumpy50222/ComfyUI_LTX_Wan_Models with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use dumpy50222/ComfyUI_LTX_Wan_Models with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="dumpy50222/ComfyUI_LTX_Wan_Models", filename="text_encoders/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive-Q8_K_P.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use dumpy50222/ComfyUI_LTX_Wan_Models with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf dumpy50222/ComfyUI_LTX_Wan_Models:Q8_0 # Run inference directly in the terminal: llama cli -hf dumpy50222/ComfyUI_LTX_Wan_Models:Q8_0
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf dumpy50222/ComfyUI_LTX_Wan_Models:Q8_0 # Run inference directly in the terminal: llama cli -hf dumpy50222/ComfyUI_LTX_Wan_Models:Q8_0
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf dumpy50222/ComfyUI_LTX_Wan_Models:Q8_0 # Run inference directly in the terminal: ./llama-cli -hf dumpy50222/ComfyUI_LTX_Wan_Models:Q8_0
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf dumpy50222/ComfyUI_LTX_Wan_Models:Q8_0 # Run inference directly in the terminal: ./build/bin/llama-cli -hf dumpy50222/ComfyUI_LTX_Wan_Models:Q8_0
Use Docker
docker model run hf.co/dumpy50222/ComfyUI_LTX_Wan_Models:Q8_0
- LM Studio
- Jan
- Ollama
How to use dumpy50222/ComfyUI_LTX_Wan_Models with Ollama:
ollama run hf.co/dumpy50222/ComfyUI_LTX_Wan_Models:Q8_0
- Unsloth Studio
How to use dumpy50222/ComfyUI_LTX_Wan_Models with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for dumpy50222/ComfyUI_LTX_Wan_Models to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for dumpy50222/ComfyUI_LTX_Wan_Models to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for dumpy50222/ComfyUI_LTX_Wan_Models to start chatting
- Pi
How to use dumpy50222/ComfyUI_LTX_Wan_Models with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf dumpy50222/ComfyUI_LTX_Wan_Models:Q8_0
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "dumpy50222/ComfyUI_LTX_Wan_Models:Q8_0" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use dumpy50222/ComfyUI_LTX_Wan_Models with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf dumpy50222/ComfyUI_LTX_Wan_Models:Q8_0
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default dumpy50222/ComfyUI_LTX_Wan_Models:Q8_0
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use dumpy50222/ComfyUI_LTX_Wan_Models with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf dumpy50222/ComfyUI_LTX_Wan_Models:Q8_0
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "dumpy50222/ComfyUI_LTX_Wan_Models:Q8_0" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use dumpy50222/ComfyUI_LTX_Wan_Models with Docker Model Runner:
docker model run hf.co/dumpy50222/ComfyUI_LTX_Wan_Models:Q8_0
- Lemonade
How to use dumpy50222/ComfyUI_LTX_Wan_Models with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull dumpy50222/ComfyUI_LTX_Wan_Models:Q8_0
Run and chat with the model
lemonade run user.ComfyUI_LTX_Wan_Models-Q8_0
List all available models
lemonade list
Upload folder using huggingface_hub (part 3)
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- .gitattributes +76 -0
- loras/Actions/Oral/Rimming_Wan2.2_high.metadata.json +272 -0
- loras/Actions/Oral/Rimming_Wan2.2_high.mp4 +3 -0
- loras/Actions/Oral/Rimming_Wan2.2_high.safetensors +3 -0
- loras/Actions/Oral/Rimming_Wan2.2_low.metadata.json +168 -0
- loras/Actions/Oral/Rimming_Wan2.2_low.mp4 +3 -0
- loras/Actions/Oral/Rimming_Wan2.2_low.safetensors +3 -0
- loras/Actions/Oral/WAN-2.2-I2V-HandjobBlowjobCombo-HIGH-v1.metadata.json +337 -0
- loras/Actions/Oral/WAN-2.2-I2V-HandjobBlowjobCombo-HIGH-v1.mp4 +3 -0
- loras/Actions/Oral/WAN-2.2-I2V-HandjobBlowjobCombo-HIGH-v1.safetensors +3 -0
- loras/Actions/Oral/WAN-2.2-I2V-HandjobBlowjobCombo-LOW-v1.metadata.json +137 -0
- loras/Actions/Oral/WAN-2.2-I2V-HandjobBlowjobCombo-LOW-v1.mp4 +3 -0
- loras/Actions/Oral/WAN-2.2-I2V-HandjobBlowjobCombo-LOW-v1.safetensors +3 -0
- loras/Actions/Oral/WAN22_14B_I2V_reversedeepthroatV2_high_noise.metadata.json +264 -0
- loras/Actions/Oral/WAN22_14B_I2V_reversedeepthroatV2_high_noise.mp4 +3 -0
- loras/Actions/Oral/WAN22_14B_I2V_reversedeepthroatV2_high_noise.safetensors +3 -0
- loras/Actions/Oral/WAN22_14B_I2V_reversedeepthroatV2_low_noise.jpeg +0 -0
- loras/Actions/Oral/WAN22_14B_I2V_reversedeepthroatV2_low_noise.metadata.json +164 -0
- loras/Actions/Oral/WAN22_14B_I2V_reversedeepthroatV2_low_noise.safetensors +3 -0
- loras/Actions/Oral/Wan2.2 - T2V - Facial - HIGH 14B.metadata.json +281 -0
- loras/Actions/Oral/Wan2.2 - T2V - Facial - HIGH 14B.mp4 +3 -0
- loras/Actions/Oral/Wan2.2 - T2V - Facial - HIGH 14B.safetensors +3 -0
- loras/Actions/Oral/Wan2.2 - T2V - Facial - LOW 14B.metadata.json +623 -0
- loras/Actions/Oral/Wan2.2 - T2V - Facial - LOW 14B.mp4 +3 -0
- loras/Actions/Oral/Wan2.2 - T2V - Facial - LOW 14B.safetensors +3 -0
- loras/Actions/Oral/Wan2.2-I2V-Blowjob-HIGH-14B.metadata.json +278 -0
- loras/Actions/Oral/Wan2.2-I2V-Blowjob-HIGH-14B.mp4 +3 -0
- loras/Actions/Oral/Wan2.2-I2V-Blowjob-HIGH-14B.safetensors +3 -0
- loras/Actions/Oral/Wan2.2-I2V-Blowjob-LOW-14B.metadata.json +572 -0
- loras/Actions/Oral/Wan2.2-I2V-Blowjob-LOW-14B.mp4 +3 -0
- loras/Actions/Oral/Wan2.2-I2V-Blowjob-LOW-14B.safetensors +3 -0
- loras/Actions/Oral/Wan2.2-T2V-POVTittyFuck-HIGH14B.metadata.json +190 -0
- loras/Actions/Oral/Wan2.2-T2V-POVTittyFuck-HIGH14B.mp4 +3 -0
- loras/Actions/Oral/Wan2.2-T2V-POVTittyFuck-HIGH14B.safetensors +3 -0
- loras/Actions/Oral/Wan2.2-T2V-POVTittyFuck-LOW14B.metadata.json +472 -0
- loras/Actions/Oral/Wan2.2-T2V-POVTittyFuck-LOW14B.mp4 +3 -0
- loras/Actions/Oral/Wan2.2-T2V-POVTittyFuck-LOW14B.safetensors +3 -0
- loras/Actions/Oral/Wan2.2_r1mj0b_v0.2_HIGH.metadata.json +194 -0
- loras/Actions/Oral/Wan2.2_r1mj0b_v0.2_HIGH.mp4 +3 -0
- loras/Actions/Oral/Wan2.2_r1mj0b_v0.2_HIGH.safetensors +3 -0
- loras/Actions/Oral/Wan2.2_r1mj0b_v0.2_LOW.metadata.json +224 -0
- loras/Actions/Oral/Wan2.2_r1mj0b_v0.2_LOW.mp4 +3 -0
- loras/Actions/Oral/Wan2.2_r1mj0b_v0.2_LOW.safetensors +3 -0
- loras/Actions/Oral/Wan2.2v2-T2V-BodyCumShots-HIGH14B.metadata.json +231 -0
- loras/Actions/Oral/Wan2.2v2-T2V-BodyCumShots-HIGH14B.mp4 +3 -0
- loras/Actions/Oral/Wan2.2v2-T2V-BodyCumShots-HIGH14B.safetensors +3 -0
- loras/Actions/Oral/Wan2.2v2-T2V-BodyCumShots-LOW14B.metadata.json +315 -0
- loras/Actions/Oral/Wan2.2v2-T2V-BodyCumShots-LOW14B.mp4 +3 -0
- loras/Actions/Oral/Wan2.2v2-T2V-BodyCumShots-LOW14B.safetensors +3 -0
- loras/Actions/Oral/Wan22_CumV2_High.metadata.json +397 -0
.gitattributes
CHANGED
|
@@ -189,3 +189,79 @@ loras/Actions/Oral/povsimulated_WAN22_I2V_low_noise.mp4 filter=lfs diff=lfs merg
|
|
| 189 |
loras/Actions/Oral/pworship_high_noise.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 190 |
loras/Actions/Oral/pworship_low_noise.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 191 |
loras/Actions/Oral/readyforbj_WAN22_high_noise.mp4 filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 189 |
loras/Actions/Oral/pworship_high_noise.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 190 |
loras/Actions/Oral/pworship_low_noise.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 191 |
loras/Actions/Oral/readyforbj_WAN22_high_noise.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 192 |
+
loras/Actions/Oral/readyforbj_WAN22_low_noise.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 193 |
+
loras/Actions/Oral/Rimming_Wan2.2_high.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 194 |
+
loras/Actions/Oral/Rimming_Wan2.2_low.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 195 |
+
loras/Actions/Oral/WAN-2.2-I2V-HandjobBlowjobCombo-HIGH-v1.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 196 |
+
loras/Actions/Oral/WAN-2.2-I2V-HandjobBlowjobCombo-LOW-v1.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 197 |
+
loras/Actions/Oral/Wan2.2[[:space:]]-[[:space:]]T2V[[:space:]]-[[:space:]]Facial[[:space:]]-[[:space:]]HIGH[[:space:]]14B.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 198 |
+
loras/Actions/Oral/Wan2.2[[:space:]]-[[:space:]]T2V[[:space:]]-[[:space:]]Facial[[:space:]]-[[:space:]]LOW[[:space:]]14B.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 199 |
+
loras/Actions/Oral/Wan2.2-I2V-Blowjob-HIGH-14B.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 200 |
+
loras/Actions/Oral/Wan2.2-I2V-Blowjob-LOW-14B.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 201 |
+
loras/Actions/Oral/wan2.2-i2v-breast-insertion-v1.0-high.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 202 |
+
loras/Actions/Oral/Wan2.2-T2V-POVTittyFuck-HIGH14B.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 203 |
+
loras/Actions/Oral/Wan2.2-T2V-POVTittyFuck-LOW14B.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 204 |
+
loras/Actions/Oral/Wan2.2_r1mj0b_v0.2_HIGH.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 205 |
+
loras/Actions/Oral/Wan2.2_r1mj0b_v0.2_LOW.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 206 |
+
loras/Actions/Oral/wan2.2_t2v_cumshot_v.1.0_highnoise.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 207 |
+
loras/Actions/Oral/wan2.2_t2v_cumshot_v1.0_lownoise.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 208 |
+
loras/Actions/Oral/Wan2.2v2-T2V-BodyCumShots-HIGH14B.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 209 |
+
loras/Actions/Oral/Wan2.2v2-T2V-BodyCumShots-LOW14B.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 210 |
+
loras/Actions/Oral/wan22-69deepthroat-16epoc-high-k3nk.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 211 |
+
loras/Actions/Oral/wan22-69deepthroat-24epoc-low-k3nk.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 212 |
+
loras/Actions/Oral/wan22-cunilingus-I2V-106epoc-high.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 213 |
+
loras/Actions/Oral/wan22-cunilingus-I2V-72epoc-low.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 214 |
+
loras/Actions/Oral/wan22-f4c3spl4sh-high-k3nk.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 215 |
+
loras/Actions/Oral/wan22-f4c3spl4sh-low-k3nk.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 216 |
+
loras/Actions/Oral/wan22-G4GG1NGv6-11epoc-high-i2v-k3nk.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 217 |
+
loras/Actions/Oral/wan22-G4GG1NGv6-11epoc-low-i2v-k3nk.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 218 |
+
loras/Actions/Oral/WAN22_14B_I2V_reversedeepthroatV2_high_noise.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 219 |
+
loras/Actions/Oral/Wan22_CumV2_High.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 220 |
+
loras/Actions/Oral/Wan22_CumV2_High_Alt.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 221 |
+
loras/Actions/Oral/Wan22_CumV2_Low.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 222 |
+
loras/Actions/Oral/Wan22_CumV2_Low_Alt.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 223 |
+
loras/Actions/Oral/Wan22_ThroatV3_High.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 224 |
+
loras/Actions/Oral/Wan22_ThroatV3_Low.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 225 |
+
loras/Actions/Oral/Wan22_ThroatV3_Low_Alt.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 226 |
+
loras/Actions/Oral/wan_22_AnimeCumshotAesthetics_High.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 227 |
+
loras/Actions/Oral/wan_22_AnimeCumshotAesthetics_Low.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 228 |
+
loras/Actions/Oral/wan_22_throat_swallow_high_noise.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 229 |
+
loras/Actions/Oral/wan_22_throat_swallow_low_noise.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 230 |
+
loras/Actions/Vaginal/bbcRide_wan22_I2V_high.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 231 |
+
loras/Actions/Vaginal/bbcRide_wan22_I2V_low.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 232 |
+
loras/Actions/Vaginal/female_masturbation_Wan2.2_14B_I2V_HIGH_v1.0.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 233 |
+
loras/Actions/Vaginal/female_masturbation_Wan2.2_14B_I2V_LOW_v1.0.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 234 |
+
loras/Actions/Vaginal/iGoon[[:space:]]-[[:space:]]Blink_Back_Doggystyle_HIGH.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 235 |
+
loras/Actions/Vaginal/iGoon[[:space:]]-[[:space:]]Blink_Back_Doggystyle_LOW.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 236 |
+
loras/Actions/Vaginal/iGoon[[:space:]]-[[:space:]]Blink_Missionary_I2V_LOW[[:space:]]v2.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 237 |
+
loras/Actions/Vaginal/iGoon_Blink_Missionary_I2V_HIGH[[:space:]]v2.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 238 |
+
loras/Actions/Vaginal/iGoon_Blink_Squatting_Cowgirl_Position_I2V_HIGH.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 239 |
+
loras/Actions/Vaginal/iGoon_Blink_Squatting_Cowgirl_Position_I2V_LOW.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 240 |
+
loras/Actions/Vaginal/mql_casting_sex_doggy_kneel_diagonally_behind_vagina_wan22_i2v_v1_high_noise.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 241 |
+
loras/Actions/Vaginal/mql_casting_sex_doggy_kneel_diagonally_behind_vagina_wan22_i2v_v1_low_noise.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 242 |
+
loras/Actions/Vaginal/mql_casting_sex_reverse_cowgirl_lie_front_vagina_wan22_i2v_v1_high_noise.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 243 |
+
loras/Actions/Vaginal/mql_casting_sex_reverse_cowgirl_lie_front_vagina_wan22_i2v_v1_low_noise.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 244 |
+
loras/Actions/Vaginal/mql_casting_sex_spoon_wan22_i2v_v1_high_noise.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 245 |
+
loras/Actions/Vaginal/mql_casting_sex_spoon_wan22_i2v_v1_low_noise.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 246 |
+
loras/Actions/Vaginal/POV_missionary_Wan2.2_I2V_v1.0_HN.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 247 |
+
loras/Actions/Vaginal/POV_missionary_Wan2.2_I2V_v1.0_LN.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 248 |
+
loras/Actions/Vaginal/povfrombelow_WAN22_copy_3000_high_noise.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 249 |
+
loras/Actions/Vaginal/povfrombelow_WAN22_copy_3000_low_noise.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 250 |
+
loras/Actions/Vaginal/pussyjob_v1.0_wan2.1_14b.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 251 |
+
loras/Actions/Vaginal/w22_i2v_Multiple-Angles-Missionary_H.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 252 |
+
loras/Actions/Vaginal/w22_i2v_Multiple-Angles-Missionary_L.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 253 |
+
loras/Actions/Vaginal/W22_i2v_POV_Missionary_Insertion_v1_HN.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 254 |
+
loras/Actions/Vaginal/W22_i2v_POV_Missionary_Insertion_v1_LN.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 255 |
+
loras/Actions/Vaginal/W22_POV_Cowgirl_Insertion_i2v_HN_v1A.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 256 |
+
loras/Actions/Vaginal/W22_POV_Cowgirl_Insertion_i2v_HN_v1B.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 257 |
+
loras/Actions/Vaginal/W22_POV_Cowgirl_Insertion_i2v_LN_v1.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 258 |
+
loras/Actions/Vaginal/WAN-2.2-I2V-POV-Body-Cumshot-Pullout-HIGH-v1.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 259 |
+
loras/Actions/Vaginal/WAN-2.2-I2V-POV-Body-Cumshot-Pullout-LOW-v1.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 260 |
+
loras/Actions/Vaginal/Wan2.2[[:space:]]-[[:space:]]I2V[[:space:]]-[[:space:]]Fucking[[:space:]]Machine[[:space:]]-[[:space:]]HIGH[[:space:]]14B.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 261 |
+
loras/Actions/Vaginal/Wan2.2[[:space:]]-[[:space:]]I2V[[:space:]]-[[:space:]]Fucking[[:space:]]Machine[[:space:]]-[[:space:]]LOW[[:space:]]14B.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 262 |
+
loras/Actions/Vaginal/wan2.2-i2v-sex-smashcut-v1.0-high.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 263 |
+
loras/Actions/Vaginal/wan2.2-i2v-sex-smashcut-v1.0-low.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 264 |
+
loras/Actions/Vaginal/Wan2.2-T2V-Dildo[[:space:]]Ride-HIGH14B.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 265 |
+
loras/Actions/Vaginal/Wan2.2-T2V-Dildo[[:space:]]Ride-LOW14B.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 266 |
+
loras/Actions/Vaginal/WAN2.2_I2V-14B_OPENPUSSY-LOW-v1.0.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 267 |
+
loras/Actions/Vaginal/wan2.2_i2v_pov_missionary_v1.0_highnoise.mp4 filter=lfs diff=lfs merge=lfs -text
|
loras/Actions/Oral/Rimming_Wan2.2_high.metadata.json
ADDED
|
@@ -0,0 +1,272 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"file_name": "Rimming_Wan2.2_high",
|
| 3 |
+
"model_name": "Rimming | Wan 2.2 I2V (Anilingus)",
|
| 4 |
+
"file_path": "G:/AI/ComfyUI/models/loras/Actions/Oral/Rimming_Wan2.2_high.safetensors",
|
| 5 |
+
"size": 153492768,
|
| 6 |
+
"modified": 1772081895.440457,
|
| 7 |
+
"sha256": "780ae6aa939250105857f791de6b3d6fca178ee53f8bdf5a6907a7bb40cbfe91",
|
| 8 |
+
"base_model": "Wan Video 2.2 I2V-A14B",
|
| 9 |
+
"preview_url": "G:/AI/ComfyUI/models/loras/Actions/Oral/Rimming_Wan2.2_high.mp4",
|
| 10 |
+
"preview_nsfw_level": 16,
|
| 11 |
+
"notes": "",
|
| 12 |
+
"from_civitai": true,
|
| 13 |
+
"civitai": {
|
| 14 |
+
"id": 2613904,
|
| 15 |
+
"modelId": 2323540,
|
| 16 |
+
"name": "WAN 2.2 IV2 High noise",
|
| 17 |
+
"nsfwLevel": 16,
|
| 18 |
+
"createdAt": "2026-01-20T09:46:27.100Z",
|
| 19 |
+
"updatedAt": "2026-01-20T09:52:14.077Z",
|
| 20 |
+
"status": "Published",
|
| 21 |
+
"publishedAt": "2026-01-20T09:52:14.056Z",
|
| 22 |
+
"trainedWords": [],
|
| 23 |
+
"trainingStatus": null,
|
| 24 |
+
"trainingDetails": null,
|
| 25 |
+
"baseModel": "Wan Video 2.2 I2V-A14B",
|
| 26 |
+
"baseModelType": "Standard",
|
| 27 |
+
"earlyAccessEndsAt": null,
|
| 28 |
+
"earlyAccessConfig": null,
|
| 29 |
+
"description": "<p>A simple but effective I2V LoRA that makes the tongue move the way you expect. 😉</p><p>It just helps get more natural and convincing motion for this scenario.</p><p><strong>Usage</strong></p><p>Just add this trigger description to your prompt:</p><p><em>A woman performing rimming on a man, licking his anus.</em></p>",
|
| 30 |
+
"uploadType": "Created",
|
| 31 |
+
"usageControl": "Download",
|
| 32 |
+
"air": "urn:air:wanvideo-22-i2v-a14b:lora:civitai:2323540@2613904",
|
| 33 |
+
"stats": {
|
| 34 |
+
"downloadCount": 2883,
|
| 35 |
+
"thumbsUpCount": 194
|
| 36 |
+
},
|
| 37 |
+
"model": {
|
| 38 |
+
"name": "Rimming | Wan 2.2 I2V (Anilingus)",
|
| 39 |
+
"type": "LORA",
|
| 40 |
+
"nsfw": false,
|
| 41 |
+
"poi": false,
|
| 42 |
+
"description": "<p>A simple but effective I2V LoRA that makes the tongue move the way you expect. 😉</p><p>It just helps get more natural and convincing motion for this scenario.</p><p></p><h3 id=\"usage\"><strong>Usage</strong></h3><p>Just add this trigger description to your prompt:</p><pre><code>A woman performing rimming on a man, licking his anus.</code></pre><p></p>",
|
| 43 |
+
"tags": [
|
| 44 |
+
"rimming",
|
| 45 |
+
"concept",
|
| 46 |
+
"licking anus",
|
| 47 |
+
"wan 2.2",
|
| 48 |
+
"wan",
|
| 49 |
+
"licking",
|
| 50 |
+
"rimjob",
|
| 51 |
+
"anilingus"
|
| 52 |
+
],
|
| 53 |
+
"allowNoCredit": true,
|
| 54 |
+
"allowCommercialUse": [
|
| 55 |
+
"Image",
|
| 56 |
+
"RentCivit"
|
| 57 |
+
],
|
| 58 |
+
"allowDerivatives": true,
|
| 59 |
+
"allowDifferentLicense": true
|
| 60 |
+
},
|
| 61 |
+
"files": [
|
| 62 |
+
{
|
| 63 |
+
"id": 2501274,
|
| 64 |
+
"sizeKB": 149895.28125,
|
| 65 |
+
"name": "Rimming_Wan2.2_high.safetensors",
|
| 66 |
+
"type": "Model",
|
| 67 |
+
"pickleScanResult": "Success",
|
| 68 |
+
"pickleScanMessage": "No Pickle imports",
|
| 69 |
+
"virusScanResult": "Success",
|
| 70 |
+
"virusScanMessage": null,
|
| 71 |
+
"scannedAt": "2026-01-20T09:50:34.922Z",
|
| 72 |
+
"metadata": {
|
| 73 |
+
"format": "SafeTensor",
|
| 74 |
+
"size": null,
|
| 75 |
+
"fp": null
|
| 76 |
+
},
|
| 77 |
+
"hashes": {
|
| 78 |
+
"AutoV1": "7C0848BA",
|
| 79 |
+
"AutoV2": "780AE6AA93",
|
| 80 |
+
"SHA256": "780AE6AA939250105857F791DE6B3D6FCA178EE53F8BDF5A6907A7BB40CBFE91",
|
| 81 |
+
"CRC32": "F74D8D02",
|
| 82 |
+
"BLAKE3": "04B1366B34D70BFD8343D2ACF5E7426D1092B6E8131CA64460713F1013E80F88",
|
| 83 |
+
"AutoV3": "C607E4680D6F"
|
| 84 |
+
},
|
| 85 |
+
"primary": true,
|
| 86 |
+
"downloadUrl": "https://civitai.com/api/download/models/2613904"
|
| 87 |
+
}
|
| 88 |
+
],
|
| 89 |
+
"images": [
|
| 90 |
+
{
|
| 91 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/75fd14c8-f97e-40bc-abe6-51eba605030c/original=true/118117601.mp4",
|
| 92 |
+
"nsfwLevel": 16,
|
| 93 |
+
"width": 832,
|
| 94 |
+
"height": 1216,
|
| 95 |
+
"hash": "UCEy0pt7o}s.00WVIUx[E1NG%Mt7~pxu%2M{",
|
| 96 |
+
"type": "video",
|
| 97 |
+
"metadata": {
|
| 98 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 99 |
+
"size": 5063887,
|
| 100 |
+
"audio": false,
|
| 101 |
+
"width": 832,
|
| 102 |
+
"height": 1216,
|
| 103 |
+
"duration": 5.017
|
| 104 |
+
},
|
| 105 |
+
"minor": false,
|
| 106 |
+
"poi": false,
|
| 107 |
+
"meta": {
|
| 108 |
+
"prompt": "A woman performing rimming on a man, licking his anus."
|
| 109 |
+
},
|
| 110 |
+
"availability": "Public",
|
| 111 |
+
"hasMeta": true,
|
| 112 |
+
"hasPositivePrompt": true,
|
| 113 |
+
"onSite": false,
|
| 114 |
+
"remixOfId": null
|
| 115 |
+
},
|
| 116 |
+
{
|
| 117 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/ff066bd1-35df-47a7-aa08-c968910f3277/original=true/118118543.mp4",
|
| 118 |
+
"nsfwLevel": 16,
|
| 119 |
+
"width": 720,
|
| 120 |
+
"height": 1280,
|
| 121 |
+
"hash": "UAJjbvH@yD%L01%L4.M{00RjxZjH_NIA?bxu",
|
| 122 |
+
"type": "video",
|
| 123 |
+
"metadata": {
|
| 124 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 125 |
+
"size": 5002132,
|
| 126 |
+
"audio": false,
|
| 127 |
+
"width": 720,
|
| 128 |
+
"height": 1280,
|
| 129 |
+
"duration": 5
|
| 130 |
+
},
|
| 131 |
+
"minor": false,
|
| 132 |
+
"poi": false,
|
| 133 |
+
"meta": {
|
| 134 |
+
"prompt": "A woman performing rimming on a man, licking his anus."
|
| 135 |
+
},
|
| 136 |
+
"availability": "Public",
|
| 137 |
+
"hasMeta": true,
|
| 138 |
+
"hasPositivePrompt": true,
|
| 139 |
+
"onSite": false,
|
| 140 |
+
"remixOfId": null
|
| 141 |
+
},
|
| 142 |
+
{
|
| 143 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a5564a3a-4a29-4a46-89cf-85c1fd69019e/original=true/118118550.mp4",
|
| 144 |
+
"nsfwLevel": 16,
|
| 145 |
+
"width": 720,
|
| 146 |
+
"height": 1280,
|
| 147 |
+
"hash": "U9Cs8L%za0-:~UX8t8tl?vkWDjS3IUD*i_ae",
|
| 148 |
+
"type": "video",
|
| 149 |
+
"metadata": {
|
| 150 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 151 |
+
"size": 4981673,
|
| 152 |
+
"audio": false,
|
| 153 |
+
"width": 720,
|
| 154 |
+
"height": 1280,
|
| 155 |
+
"duration": 5
|
| 156 |
+
},
|
| 157 |
+
"minor": false,
|
| 158 |
+
"poi": false,
|
| 159 |
+
"meta": {
|
| 160 |
+
"prompt": "A woman performing rimming on a man, licking his anus."
|
| 161 |
+
},
|
| 162 |
+
"availability": "Public",
|
| 163 |
+
"hasMeta": true,
|
| 164 |
+
"hasPositivePrompt": true,
|
| 165 |
+
"onSite": false,
|
| 166 |
+
"remixOfId": null
|
| 167 |
+
},
|
| 168 |
+
{
|
| 169 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/534cbe78-a939-4b16-8078-eb8ed03399c3/original=true/118118547.mp4",
|
| 170 |
+
"nsfwLevel": 16,
|
| 171 |
+
"width": 720,
|
| 172 |
+
"height": 1280,
|
| 173 |
+
"hash": "UGG8l,x]?btR?v~qSixuO@.8f+R*o}M{xuV@",
|
| 174 |
+
"type": "video",
|
| 175 |
+
"metadata": {
|
| 176 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 177 |
+
"size": 5012340,
|
| 178 |
+
"audio": false,
|
| 179 |
+
"width": 720,
|
| 180 |
+
"height": 1280,
|
| 181 |
+
"duration": 5
|
| 182 |
+
},
|
| 183 |
+
"minor": false,
|
| 184 |
+
"poi": false,
|
| 185 |
+
"meta": {
|
| 186 |
+
"prompt": "A woman performing rimming on a man, licking his anus."
|
| 187 |
+
},
|
| 188 |
+
"availability": "Public",
|
| 189 |
+
"hasMeta": true,
|
| 190 |
+
"hasPositivePrompt": true,
|
| 191 |
+
"onSite": false,
|
| 192 |
+
"remixOfId": null
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/dbc2f570-f70b-4318-8b64-c4420fd0d7e9/original=true/118117669.mp4",
|
| 196 |
+
"nsfwLevel": 16,
|
| 197 |
+
"width": 1920,
|
| 198 |
+
"height": 1080,
|
| 199 |
+
"hash": "UEGR#U_2EMMdGGbw?baK?^x^RQIUSOxaRPIU",
|
| 200 |
+
"type": "video",
|
| 201 |
+
"metadata": {
|
| 202 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 203 |
+
"size": 2987352,
|
| 204 |
+
"audio": false,
|
| 205 |
+
"width": 1920,
|
| 206 |
+
"height": 1080,
|
| 207 |
+
"duration": 3.02
|
| 208 |
+
},
|
| 209 |
+
"minor": false,
|
| 210 |
+
"poi": false,
|
| 211 |
+
"meta": {
|
| 212 |
+
"prompt": "A woman performing rimming on a man, licking his anus."
|
| 213 |
+
},
|
| 214 |
+
"availability": "Public",
|
| 215 |
+
"hasMeta": true,
|
| 216 |
+
"hasPositivePrompt": true,
|
| 217 |
+
"onSite": false,
|
| 218 |
+
"remixOfId": null
|
| 219 |
+
},
|
| 220 |
+
{
|
| 221 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b90df9e7-afc4-4ed3-84ea-f12d78f3cbf2/original=true/118117713.mp4",
|
| 222 |
+
"nsfwLevel": 16,
|
| 223 |
+
"width": 1920,
|
| 224 |
+
"height": 1080,
|
| 225 |
+
"hash": "U5HA-1010z9G009u01sm01~B-:Na?Z~B4;9]",
|
| 226 |
+
"type": "video",
|
| 227 |
+
"metadata": {
|
| 228 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 229 |
+
"size": 2996333,
|
| 230 |
+
"audio": false,
|
| 231 |
+
"width": 1920,
|
| 232 |
+
"height": 1080,
|
| 233 |
+
"duration": 3.017
|
| 234 |
+
},
|
| 235 |
+
"minor": false,
|
| 236 |
+
"poi": false,
|
| 237 |
+
"meta": {
|
| 238 |
+
"prompt": "A woman performing rimming on a man, licking his anus."
|
| 239 |
+
},
|
| 240 |
+
"availability": "Public",
|
| 241 |
+
"hasMeta": true,
|
| 242 |
+
"hasPositivePrompt": true,
|
| 243 |
+
"onSite": false,
|
| 244 |
+
"remixOfId": null
|
| 245 |
+
}
|
| 246 |
+
],
|
| 247 |
+
"downloadUrl": "https://civitai.com/api/download/models/2613904",
|
| 248 |
+
"creator": {
|
| 249 |
+
"username": "Centralboy",
|
| 250 |
+
"image": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/742c0430-2c8a-4aca-8998-10d8104b682a/width=96/Centralboy.jpeg"
|
| 251 |
+
}
|
| 252 |
+
},
|
| 253 |
+
"tags": [
|
| 254 |
+
"rimming",
|
| 255 |
+
"concept",
|
| 256 |
+
"licking anus",
|
| 257 |
+
"wan 2.2",
|
| 258 |
+
"wan",
|
| 259 |
+
"licking",
|
| 260 |
+
"rimjob",
|
| 261 |
+
"anilingus"
|
| 262 |
+
],
|
| 263 |
+
"modelDescription": "<p>A simple but effective I2V LoRA that makes the tongue move the way you expect. 😉</p><p>It just helps get more natural and convincing motion for this scenario.</p><p></p><h3 id=\"usage\"><strong>Usage</strong></h3><p>Just add this trigger description to your prompt:</p><pre><code>A woman performing rimming on a man, licking his anus.</code></pre><p></p>",
|
| 264 |
+
"civitai_deleted": false,
|
| 265 |
+
"favorite": false,
|
| 266 |
+
"exclude": false,
|
| 267 |
+
"db_checked": false,
|
| 268 |
+
"skip_metadata_refresh": false,
|
| 269 |
+
"metadata_source": "civitai_api",
|
| 270 |
+
"last_checked_at": 1772082544.932732,
|
| 271 |
+
"usage_tips": "{}"
|
| 272 |
+
}
|
loras/Actions/Oral/Rimming_Wan2.2_high.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8eee36d145e783a8fe728a6556cc240cb69269968c3a6cc46e6950efa234842b
|
| 3 |
+
size 1302909
|
loras/Actions/Oral/Rimming_Wan2.2_high.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:780ae6aa939250105857f791de6b3d6fca178ee53f8bdf5a6907a7bb40cbfe91
|
| 3 |
+
size 153492768
|
loras/Actions/Oral/Rimming_Wan2.2_low.metadata.json
ADDED
|
@@ -0,0 +1,168 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"file_name": "Rimming_Wan2.2_low",
|
| 3 |
+
"model_name": "Rimming | Wan 2.2 I2V (Anilingus)",
|
| 4 |
+
"file_path": "G:/AI/ComfyUI/models/loras/Actions/Oral/Rimming_Wan2.2_low.safetensors",
|
| 5 |
+
"size": 153492760,
|
| 6 |
+
"modified": 1772081895.555866,
|
| 7 |
+
"sha256": "8a199ddce52b15661003f13d900f705a60a78f9a077f108a03878a9af2095d12",
|
| 8 |
+
"base_model": "Wan Video 2.2 I2V-A14B",
|
| 9 |
+
"preview_url": "G:/AI/ComfyUI/models/loras/Actions/Oral/Rimming_Wan2.2_low.mp4",
|
| 10 |
+
"preview_nsfw_level": 16,
|
| 11 |
+
"notes": "",
|
| 12 |
+
"from_civitai": true,
|
| 13 |
+
"civitai": {
|
| 14 |
+
"id": 2613882,
|
| 15 |
+
"modelId": 2323540,
|
| 16 |
+
"name": "WAN 2.2 IV2 Low noise",
|
| 17 |
+
"nsfwLevel": 16,
|
| 18 |
+
"createdAt": "2026-01-20T09:37:05.355Z",
|
| 19 |
+
"updatedAt": "2026-01-20T09:46:27.100Z",
|
| 20 |
+
"status": "Published",
|
| 21 |
+
"publishedAt": "2026-01-20T09:44:15.561Z",
|
| 22 |
+
"trainedWords": [],
|
| 23 |
+
"trainingStatus": null,
|
| 24 |
+
"trainingDetails": null,
|
| 25 |
+
"baseModel": "Wan Video 2.2 I2V-A14B",
|
| 26 |
+
"baseModelType": "Standard",
|
| 27 |
+
"earlyAccessEndsAt": null,
|
| 28 |
+
"earlyAccessConfig": null,
|
| 29 |
+
"description": null,
|
| 30 |
+
"uploadType": "Created",
|
| 31 |
+
"usageControl": "Download",
|
| 32 |
+
"air": "urn:air:wanvideo-22-i2v-a14b:lora:civitai:2323540@2613882",
|
| 33 |
+
"stats": {
|
| 34 |
+
"downloadCount": 2726,
|
| 35 |
+
"thumbsUpCount": 76
|
| 36 |
+
},
|
| 37 |
+
"model": {
|
| 38 |
+
"name": "Rimming | Wan 2.2 I2V (Anilingus)",
|
| 39 |
+
"type": "LORA",
|
| 40 |
+
"nsfw": false,
|
| 41 |
+
"poi": false,
|
| 42 |
+
"description": "<p>A simple but effective I2V LoRA that makes the tongue move the way you expect. 😉</p><p>It just helps get more natural and convincing motion for this scenario.</p><p></p><h3 id=\"usage\"><strong>Usage</strong></h3><p>Just add this trigger description to your prompt:</p><pre><code>A woman performing rimming on a man, licking his anus.</code></pre><p></p>",
|
| 43 |
+
"tags": [
|
| 44 |
+
"rimming",
|
| 45 |
+
"concept",
|
| 46 |
+
"licking anus",
|
| 47 |
+
"wan 2.2",
|
| 48 |
+
"wan",
|
| 49 |
+
"licking",
|
| 50 |
+
"rimjob",
|
| 51 |
+
"anilingus"
|
| 52 |
+
],
|
| 53 |
+
"allowNoCredit": true,
|
| 54 |
+
"allowCommercialUse": [
|
| 55 |
+
"Image",
|
| 56 |
+
"RentCivit"
|
| 57 |
+
],
|
| 58 |
+
"allowDerivatives": true,
|
| 59 |
+
"allowDifferentLicense": true
|
| 60 |
+
},
|
| 61 |
+
"files": [
|
| 62 |
+
{
|
| 63 |
+
"id": 2501254,
|
| 64 |
+
"sizeKB": 149895.2734375,
|
| 65 |
+
"name": "Rimming_Wan2.2_low.safetensors",
|
| 66 |
+
"type": "Model",
|
| 67 |
+
"pickleScanResult": "Success",
|
| 68 |
+
"pickleScanMessage": "No Pickle imports",
|
| 69 |
+
"virusScanResult": "Success",
|
| 70 |
+
"virusScanMessage": null,
|
| 71 |
+
"scannedAt": "2026-01-20T09:41:05.768Z",
|
| 72 |
+
"metadata": {
|
| 73 |
+
"format": "SafeTensor",
|
| 74 |
+
"size": null,
|
| 75 |
+
"fp": null
|
| 76 |
+
},
|
| 77 |
+
"hashes": {
|
| 78 |
+
"AutoV1": "77C8C700",
|
| 79 |
+
"AutoV2": "8A199DDCE5",
|
| 80 |
+
"SHA256": "8A199DDCE52B15661003F13D900F705A60A78F9A077F108A03878A9AF2095D12",
|
| 81 |
+
"CRC32": "ED7C372C",
|
| 82 |
+
"BLAKE3": "D4FC1D3C7B412D8C3F44D3B14EDA8A576A277BAED5E002E988DF308F61951934",
|
| 83 |
+
"AutoV3": "0550D0C89580"
|
| 84 |
+
},
|
| 85 |
+
"primary": true,
|
| 86 |
+
"downloadUrl": "https://civitai.com/api/download/models/2613882"
|
| 87 |
+
}
|
| 88 |
+
],
|
| 89 |
+
"images": [
|
| 90 |
+
{
|
| 91 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/66dab0f0-1c1f-43cc-9270-21832e31bedb/original=true/118116730.mp4",
|
| 92 |
+
"nsfwLevel": 16,
|
| 93 |
+
"width": 832,
|
| 94 |
+
"height": 1216,
|
| 95 |
+
"hash": "U8B:Nl4pIoNH_MM{M{t75S%LoM-:OEt6s:of",
|
| 96 |
+
"type": "video",
|
| 97 |
+
"metadata": {
|
| 98 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 99 |
+
"size": 3680161,
|
| 100 |
+
"audio": false,
|
| 101 |
+
"width": 832,
|
| 102 |
+
"height": 1216,
|
| 103 |
+
"duration": 3.7
|
| 104 |
+
},
|
| 105 |
+
"minor": false,
|
| 106 |
+
"poi": false,
|
| 107 |
+
"meta": {
|
| 108 |
+
"prompt": "A woman performing rimming on a man, licking his anus."
|
| 109 |
+
},
|
| 110 |
+
"availability": "Public",
|
| 111 |
+
"hasMeta": true,
|
| 112 |
+
"hasPositivePrompt": true,
|
| 113 |
+
"onSite": false,
|
| 114 |
+
"remixOfId": null
|
| 115 |
+
},
|
| 116 |
+
{
|
| 117 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/9ccc46d1-c919-4039-9cfd-401d86c71ac3/original=true/118116732.mp4",
|
| 118 |
+
"nsfwLevel": 16,
|
| 119 |
+
"width": 720,
|
| 120 |
+
"height": 1280,
|
| 121 |
+
"hash": "U7D9V40K0M-U1H={^69a00~VIU-U[I9uk:xD",
|
| 122 |
+
"type": "video",
|
| 123 |
+
"metadata": {
|
| 124 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 125 |
+
"size": 5008906,
|
| 126 |
+
"audio": false,
|
| 127 |
+
"width": 720,
|
| 128 |
+
"height": 1280,
|
| 129 |
+
"duration": 5
|
| 130 |
+
},
|
| 131 |
+
"minor": false,
|
| 132 |
+
"poi": false,
|
| 133 |
+
"meta": {
|
| 134 |
+
"prompt": "A reptile performing rimming on a man, licking his anus."
|
| 135 |
+
},
|
| 136 |
+
"availability": "Public",
|
| 137 |
+
"hasMeta": true,
|
| 138 |
+
"hasPositivePrompt": true,
|
| 139 |
+
"onSite": false,
|
| 140 |
+
"remixOfId": null
|
| 141 |
+
}
|
| 142 |
+
],
|
| 143 |
+
"downloadUrl": "https://civitai.com/api/download/models/2613882",
|
| 144 |
+
"creator": {
|
| 145 |
+
"username": "Centralboy",
|
| 146 |
+
"image": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/742c0430-2c8a-4aca-8998-10d8104b682a/width=96/Centralboy.jpeg"
|
| 147 |
+
}
|
| 148 |
+
},
|
| 149 |
+
"tags": [
|
| 150 |
+
"rimming",
|
| 151 |
+
"concept",
|
| 152 |
+
"licking anus",
|
| 153 |
+
"wan 2.2",
|
| 154 |
+
"wan",
|
| 155 |
+
"licking",
|
| 156 |
+
"rimjob",
|
| 157 |
+
"anilingus"
|
| 158 |
+
],
|
| 159 |
+
"modelDescription": "<p>A simple but effective I2V LoRA that makes the tongue move the way you expect. 😉</p><p>It just helps get more natural and convincing motion for this scenario.</p><p></p><h3 id=\"usage\"><strong>Usage</strong></h3><p>Just add this trigger description to your prompt:</p><pre><code>A woman performing rimming on a man, licking his anus.</code></pre><p></p>",
|
| 160 |
+
"civitai_deleted": false,
|
| 161 |
+
"favorite": false,
|
| 162 |
+
"exclude": false,
|
| 163 |
+
"db_checked": false,
|
| 164 |
+
"skip_metadata_refresh": false,
|
| 165 |
+
"metadata_source": "civitai_api",
|
| 166 |
+
"last_checked_at": 1772082545.213965,
|
| 167 |
+
"usage_tips": "{}"
|
| 168 |
+
}
|
loras/Actions/Oral/Rimming_Wan2.2_low.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:42f2800d7b712ee8d52cf21b824aad82b8bd73fda2dd39af640b6877005730ee
|
| 3 |
+
size 1110083
|
loras/Actions/Oral/Rimming_Wan2.2_low.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8a199ddce52b15661003f13d900f705a60a78f9a077f108a03878a9af2095d12
|
| 3 |
+
size 153492760
|
loras/Actions/Oral/WAN-2.2-I2V-HandjobBlowjobCombo-HIGH-v1.metadata.json
ADDED
|
@@ -0,0 +1,337 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"file_name": "WAN-2.2-I2V-HandjobBlowjobCombo-HIGH-v1",
|
| 3 |
+
"model_name": "WAN 2.2 I2V - Combo Handjob Blowjob",
|
| 4 |
+
"file_path": "G:/AI/ComfyUI/models/loras/Actions/Oral/WAN-2.2-I2V-HandjobBlowjobCombo-HIGH-v1.safetensors",
|
| 5 |
+
"size": 613516752,
|
| 6 |
+
"modified": 1772081895.959998,
|
| 7 |
+
"sha256": "0794f26ab43a5bbb479ff21bd6ae1466ff4a3d6a0c21676ab34b832b82b875e0",
|
| 8 |
+
"base_model": "Wan Video 2.2 I2V-A14B",
|
| 9 |
+
"preview_url": "G:/AI/ComfyUI/models/loras/Actions/Oral/WAN-2.2-I2V-HandjobBlowjobCombo-HIGH-v1.mp4",
|
| 10 |
+
"preview_nsfw_level": 16,
|
| 11 |
+
"notes": "",
|
| 12 |
+
"from_civitai": true,
|
| 13 |
+
"civitai": {
|
| 14 |
+
"id": 2149593,
|
| 15 |
+
"modelId": 1899045,
|
| 16 |
+
"name": "HIGH V1",
|
| 17 |
+
"nsfwLevel": 60,
|
| 18 |
+
"createdAt": "2025-08-26T02:20:09.949Z",
|
| 19 |
+
"updatedAt": "2025-08-26T02:28:53.079Z",
|
| 20 |
+
"status": "Published",
|
| 21 |
+
"publishedAt": "2025-08-26T02:25:35.407Z",
|
| 22 |
+
"trainedWords": [],
|
| 23 |
+
"trainingStatus": null,
|
| 24 |
+
"trainingDetails": null,
|
| 25 |
+
"baseModel": "Wan Video 2.2 I2V-A14B",
|
| 26 |
+
"baseModelType": "Standard",
|
| 27 |
+
"earlyAccessEndsAt": null,
|
| 28 |
+
"earlyAccessConfig": null,
|
| 29 |
+
"description": null,
|
| 30 |
+
"uploadType": "Created",
|
| 31 |
+
"usageControl": "Download",
|
| 32 |
+
"air": "urn:air:wanvideo-22-i2v-a14b:lora:civitai:1899045@2149593",
|
| 33 |
+
"stats": {
|
| 34 |
+
"downloadCount": 39261,
|
| 35 |
+
"thumbsUpCount": 1468
|
| 36 |
+
},
|
| 37 |
+
"model": {
|
| 38 |
+
"name": "WAN 2.2 I2V - Combo Handjob Blowjob",
|
| 39 |
+
"type": "LORA",
|
| 40 |
+
"nsfw": true,
|
| 41 |
+
"poi": false,
|
| 42 |
+
"description": "<p>I'm not sure if this particular act has a name, but it's when the lady uses her hand and her mouth simultaneously.<br /><br />This lora works well by itself at strength 1 even without the general NSFW lora, and it works even if the lady doesn't have her hand on the phallus initially. Both POV and side/third person view are supported.<br /><br />It's better for live-action than anime since animated fingers tend to get a bit blurry, but upscaling can do a good job at fixing it.</p><p></p><p>I tried a few different training settings to maybe reduce the filesize, but the 500MB versions were significantly better than the 250MB ones.</p>",
|
| 43 |
+
"tags": [
|
| 44 |
+
"wan",
|
| 45 |
+
"action",
|
| 46 |
+
"blowjob",
|
| 47 |
+
"handjob"
|
| 48 |
+
],
|
| 49 |
+
"allowNoCredit": true,
|
| 50 |
+
"allowCommercialUse": [
|
| 51 |
+
"RentCivit",
|
| 52 |
+
"Rent"
|
| 53 |
+
],
|
| 54 |
+
"allowDerivatives": true,
|
| 55 |
+
"allowDifferentLicense": true
|
| 56 |
+
},
|
| 57 |
+
"files": [
|
| 58 |
+
{
|
| 59 |
+
"id": 2043052,
|
| 60 |
+
"sizeKB": 599137.453125,
|
| 61 |
+
"name": "WAN-2.2-I2V-HandjobBlowjobCombo-HIGH-v1.safetensors",
|
| 62 |
+
"type": "Model",
|
| 63 |
+
"pickleScanResult": "Success",
|
| 64 |
+
"pickleScanMessage": "No Pickle imports",
|
| 65 |
+
"virusScanResult": "Success",
|
| 66 |
+
"virusScanMessage": null,
|
| 67 |
+
"scannedAt": "2025-08-26T02:26:08.142Z",
|
| 68 |
+
"metadata": {
|
| 69 |
+
"format": "SafeTensor",
|
| 70 |
+
"size": null,
|
| 71 |
+
"fp": null
|
| 72 |
+
},
|
| 73 |
+
"hashes": {
|
| 74 |
+
"AutoV1": "68CE8FFD",
|
| 75 |
+
"AutoV2": "0794F26AB4",
|
| 76 |
+
"SHA256": "0794F26AB43A5BBB479FF21BD6AE1466FF4A3D6A0C21676AB34B832B82B875E0",
|
| 77 |
+
"CRC32": "F214FFF8",
|
| 78 |
+
"BLAKE3": "639AEADEA97B6AC99FD627B1419F5429C531A36476AA6AA716C655BB4BBC234F",
|
| 79 |
+
"AutoV3": "87931635DD90"
|
| 80 |
+
},
|
| 81 |
+
"primary": true,
|
| 82 |
+
"downloadUrl": "https://civitai.com/api/download/models/2149593"
|
| 83 |
+
}
|
| 84 |
+
],
|
| 85 |
+
"images": [
|
| 86 |
+
{
|
| 87 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/693097eb-99b2-4e43-8de0-40cb765a7639/original=true/96533576.mp4",
|
| 88 |
+
"nsfwLevel": 16,
|
| 89 |
+
"width": 720,
|
| 90 |
+
"height": 1080,
|
| 91 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 92 |
+
"type": "video",
|
| 93 |
+
"metadata": {
|
| 94 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 95 |
+
"size": 3249218,
|
| 96 |
+
"audio": false,
|
| 97 |
+
"width": 720,
|
| 98 |
+
"height": 1080,
|
| 99 |
+
"duration": 6.031
|
| 100 |
+
},
|
| 101 |
+
"minor": false,
|
| 102 |
+
"poi": false,
|
| 103 |
+
"meta": {
|
| 104 |
+
"steps": 20,
|
| 105 |
+
"prompt": "A sexy woman is giving a man a blowjob and a handjob. The man is out of frame.\n\nShe is in front of the man. She is giving him a blowjob, while simultaneously giving a handjob. She is performing fellatio while stroking the shaft of his penis with one hand.",
|
| 106 |
+
"sampler": "DPM++ 2M"
|
| 107 |
+
},
|
| 108 |
+
"availability": "Public",
|
| 109 |
+
"hasMeta": true,
|
| 110 |
+
"hasPositivePrompt": true,
|
| 111 |
+
"onSite": false,
|
| 112 |
+
"remixOfId": null
|
| 113 |
+
},
|
| 114 |
+
{
|
| 115 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/310c6ead-c40d-4ab5-8815-bb4db6fa6b53/original=true/96533577.mp4",
|
| 116 |
+
"nsfwLevel": 16,
|
| 117 |
+
"width": 720,
|
| 118 |
+
"height": 1080,
|
| 119 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 120 |
+
"type": "video",
|
| 121 |
+
"metadata": {
|
| 122 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 123 |
+
"size": 3485955,
|
| 124 |
+
"audio": false,
|
| 125 |
+
"width": 720,
|
| 126 |
+
"height": 1080,
|
| 127 |
+
"duration": 6.031,
|
| 128 |
+
"skipScannedAtReassignment": true
|
| 129 |
+
},
|
| 130 |
+
"minor": false,
|
| 131 |
+
"poi": false,
|
| 132 |
+
"meta": {
|
| 133 |
+
"steps": 20,
|
| 134 |
+
"prompt": "A sexy woman is giving a man a blowjob and a handjob. The man is out of frame.\n\nShe is in front of the man. She is giving him a blowjob, while simultaneously giving a handjob. She is performing fellatio while stroking the shaft of his penis with one hand.",
|
| 135 |
+
"sampler": "DPM++ 2M"
|
| 136 |
+
},
|
| 137 |
+
"availability": "Public",
|
| 138 |
+
"hasMeta": true,
|
| 139 |
+
"hasPositivePrompt": true,
|
| 140 |
+
"onSite": false,
|
| 141 |
+
"remixOfId": null
|
| 142 |
+
},
|
| 143 |
+
{
|
| 144 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d45624a0-2ac1-40d2-a724-37c4b5ca1067/original=true/96533574.mp4",
|
| 145 |
+
"nsfwLevel": 16,
|
| 146 |
+
"width": 720,
|
| 147 |
+
"height": 1080,
|
| 148 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 149 |
+
"type": "video",
|
| 150 |
+
"metadata": {
|
| 151 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 152 |
+
"size": 1690822,
|
| 153 |
+
"audio": false,
|
| 154 |
+
"width": 720,
|
| 155 |
+
"height": 1080,
|
| 156 |
+
"duration": 6.031,
|
| 157 |
+
"skipScannedAtReassignment": true
|
| 158 |
+
},
|
| 159 |
+
"minor": false,
|
| 160 |
+
"poi": false,
|
| 161 |
+
"meta": {
|
| 162 |
+
"steps": 20,
|
| 163 |
+
"prompt": "A sexy woman is giving a man a blowjob and a handjob. The man is out of frame.\n\nShe is in front of the man. She is giving him a blowjob, while simultaneously giving a handjob. She is performing fellatio while stroking the shaft of his penis with one hand.",
|
| 164 |
+
"sampler": "DPM++ 2M"
|
| 165 |
+
},
|
| 166 |
+
"availability": "Public",
|
| 167 |
+
"hasMeta": true,
|
| 168 |
+
"hasPositivePrompt": true,
|
| 169 |
+
"onSite": false,
|
| 170 |
+
"remixOfId": null
|
| 171 |
+
},
|
| 172 |
+
{
|
| 173 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/9554e92d-4337-4fb4-a1b2-85ecf51ae2d6/original=true/96533578.mp4",
|
| 174 |
+
"nsfwLevel": 16,
|
| 175 |
+
"width": 720,
|
| 176 |
+
"height": 1080,
|
| 177 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 178 |
+
"type": "video",
|
| 179 |
+
"metadata": {
|
| 180 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 181 |
+
"size": 2754701,
|
| 182 |
+
"audio": false,
|
| 183 |
+
"width": 720,
|
| 184 |
+
"height": 1080,
|
| 185 |
+
"duration": 6.031,
|
| 186 |
+
"skipScannedAtReassignment": true
|
| 187 |
+
},
|
| 188 |
+
"minor": false,
|
| 189 |
+
"poi": false,
|
| 190 |
+
"meta": {
|
| 191 |
+
"steps": 20,
|
| 192 |
+
"prompt": "A sexy woman is giving a man a blowjob and a handjob. The man is out of frame.\n\nShe is in front of the man. She is giving him a blowjob, while simultaneously giving a handjob. She is performing fellatio while stroking the shaft of his penis with one hand.",
|
| 193 |
+
"sampler": "DPM++ 2M"
|
| 194 |
+
},
|
| 195 |
+
"availability": "Public",
|
| 196 |
+
"hasMeta": true,
|
| 197 |
+
"hasPositivePrompt": true,
|
| 198 |
+
"onSite": false,
|
| 199 |
+
"remixOfId": null
|
| 200 |
+
},
|
| 201 |
+
{
|
| 202 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/f9675398-661a-4101-8b38-f856496ad431/original=true/96533575.mp4",
|
| 203 |
+
"nsfwLevel": 16,
|
| 204 |
+
"width": 720,
|
| 205 |
+
"height": 1080,
|
| 206 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 207 |
+
"type": "video",
|
| 208 |
+
"metadata": {
|
| 209 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 210 |
+
"size": 1689024,
|
| 211 |
+
"audio": false,
|
| 212 |
+
"width": 720,
|
| 213 |
+
"height": 1080,
|
| 214 |
+
"duration": 6.031
|
| 215 |
+
},
|
| 216 |
+
"minor": false,
|
| 217 |
+
"poi": false,
|
| 218 |
+
"meta": {
|
| 219 |
+
"steps": 20,
|
| 220 |
+
"prompt": "A sexy woman is giving a man a blowjob and a handjob. The man is out of frame.\n\nShe is in front of the man. She is giving him a blowjob, while simultaneously giving a handjob. She is performing fellatio while stroking the shaft of his penis with one hand.",
|
| 221 |
+
"sampler": "DPM++ 2M"
|
| 222 |
+
},
|
| 223 |
+
"availability": "Public",
|
| 224 |
+
"hasMeta": true,
|
| 225 |
+
"hasPositivePrompt": true,
|
| 226 |
+
"onSite": false,
|
| 227 |
+
"remixOfId": null
|
| 228 |
+
},
|
| 229 |
+
{
|
| 230 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/382a0cb2-b7ac-4e1e-8e16-9b84d1253078/original=true/96533579.mp4",
|
| 231 |
+
"nsfwLevel": 16,
|
| 232 |
+
"width": 720,
|
| 233 |
+
"height": 1080,
|
| 234 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 235 |
+
"type": "video",
|
| 236 |
+
"metadata": {
|
| 237 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 238 |
+
"size": 5276675,
|
| 239 |
+
"audio": false,
|
| 240 |
+
"width": 720,
|
| 241 |
+
"height": 1080,
|
| 242 |
+
"duration": 6.031
|
| 243 |
+
},
|
| 244 |
+
"minor": false,
|
| 245 |
+
"poi": false,
|
| 246 |
+
"meta": {
|
| 247 |
+
"steps": 20,
|
| 248 |
+
"prompt": "A sexy woman is giving a man a blowjob and a handjob. The man is out of frame.\n\nShe is in front of the man. She is giving him a blowjob, while simultaneously giving a handjob. She is performing fellatio while stroking the shaft of his penis with one hand.",
|
| 249 |
+
"sampler": "DPM++ 2M"
|
| 250 |
+
},
|
| 251 |
+
"availability": "Public",
|
| 252 |
+
"hasMeta": true,
|
| 253 |
+
"hasPositivePrompt": true,
|
| 254 |
+
"onSite": false,
|
| 255 |
+
"remixOfId": null
|
| 256 |
+
},
|
| 257 |
+
{
|
| 258 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b0e96e76-359f-47d5-aaba-4a3032ce62da/original=true/96533580.mp4",
|
| 259 |
+
"nsfwLevel": 16,
|
| 260 |
+
"width": 720,
|
| 261 |
+
"height": 1080,
|
| 262 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 263 |
+
"type": "video",
|
| 264 |
+
"metadata": {
|
| 265 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 266 |
+
"size": 4083522,
|
| 267 |
+
"audio": false,
|
| 268 |
+
"width": 720,
|
| 269 |
+
"height": 1080,
|
| 270 |
+
"duration": 6.031,
|
| 271 |
+
"skipScannedAtReassignment": true
|
| 272 |
+
},
|
| 273 |
+
"minor": false,
|
| 274 |
+
"poi": false,
|
| 275 |
+
"meta": {
|
| 276 |
+
"steps": 20,
|
| 277 |
+
"prompt": "A sexy woman is giving a man a blowjob and a handjob. The man is out of frame.\n\nShe is in front of the man. She is giving him a blowjob, while simultaneously giving a handjob. She is performing fellatio while stroking the shaft of his penis with one hand.",
|
| 278 |
+
"sampler": "DPM++ 2M"
|
| 279 |
+
},
|
| 280 |
+
"availability": "Public",
|
| 281 |
+
"hasMeta": true,
|
| 282 |
+
"hasPositivePrompt": true,
|
| 283 |
+
"onSite": false,
|
| 284 |
+
"remixOfId": null
|
| 285 |
+
},
|
| 286 |
+
{
|
| 287 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/757caa8f-1a4c-42b6-a124-21b74781c058/original=true/96533581.mp4",
|
| 288 |
+
"nsfwLevel": 16,
|
| 289 |
+
"width": 720,
|
| 290 |
+
"height": 1080,
|
| 291 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 292 |
+
"type": "video",
|
| 293 |
+
"metadata": {
|
| 294 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 295 |
+
"size": 4550739,
|
| 296 |
+
"audio": false,
|
| 297 |
+
"width": 720,
|
| 298 |
+
"height": 1080,
|
| 299 |
+
"duration": 6.031,
|
| 300 |
+
"skipScannedAtReassignment": true
|
| 301 |
+
},
|
| 302 |
+
"minor": false,
|
| 303 |
+
"poi": false,
|
| 304 |
+
"meta": {
|
| 305 |
+
"steps": 20,
|
| 306 |
+
"prompt": "A sexy woman is giving a man a blowjob and a handjob. The man is out of frame.\n\nShe is in front of the man. She is giving him a blowjob, while simultaneously giving a handjob. She is performing fellatio while stroking the shaft of his penis with one hand.",
|
| 307 |
+
"sampler": "DPM++ 2M"
|
| 308 |
+
},
|
| 309 |
+
"availability": "Public",
|
| 310 |
+
"hasMeta": true,
|
| 311 |
+
"hasPositivePrompt": true,
|
| 312 |
+
"onSite": false,
|
| 313 |
+
"remixOfId": null
|
| 314 |
+
}
|
| 315 |
+
],
|
| 316 |
+
"downloadUrl": "https://civitai.com/api/download/models/2149593",
|
| 317 |
+
"creator": {
|
| 318 |
+
"username": "TwoMoreLurker",
|
| 319 |
+
"image": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/96af28c3-f5f8-46d8-9558-d60fe324773c/width=96/TwoMoreLurker.jpeg"
|
| 320 |
+
}
|
| 321 |
+
},
|
| 322 |
+
"tags": [
|
| 323 |
+
"wan",
|
| 324 |
+
"action",
|
| 325 |
+
"blowjob",
|
| 326 |
+
"handjob"
|
| 327 |
+
],
|
| 328 |
+
"modelDescription": "<p>I'm not sure if this particular act has a name, but it's when the lady uses her hand and her mouth simultaneously.<br /><br />This lora works well by itself at strength 1 even without the general NSFW lora, and it works even if the lady doesn't have her hand on the phallus initially. Both POV and side/third person view are supported.<br /><br />It's better for live-action than anime since animated fingers tend to get a bit blurry, but upscaling can do a good job at fixing it.</p><p></p><p>I tried a few different training settings to maybe reduce the filesize, but the 500MB versions were significantly better than the 250MB ones.</p>",
|
| 329 |
+
"civitai_deleted": false,
|
| 330 |
+
"favorite": false,
|
| 331 |
+
"exclude": false,
|
| 332 |
+
"db_checked": false,
|
| 333 |
+
"skip_metadata_refresh": false,
|
| 334 |
+
"metadata_source": "civitai_api",
|
| 335 |
+
"last_checked_at": 1772082545.746685,
|
| 336 |
+
"usage_tips": "{}"
|
| 337 |
+
}
|
loras/Actions/Oral/WAN-2.2-I2V-HandjobBlowjobCombo-HIGH-v1.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5cb4632907e3e1375700b3f1cff91fd5ae9f35621d890fb113bb129c41883d51
|
| 3 |
+
size 1765406
|
loras/Actions/Oral/WAN-2.2-I2V-HandjobBlowjobCombo-HIGH-v1.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0794f26ab43a5bbb479ff21bd6ae1466ff4a3d6a0c21676ab34b832b82b875e0
|
| 3 |
+
size 613516752
|
loras/Actions/Oral/WAN-2.2-I2V-HandjobBlowjobCombo-LOW-v1.metadata.json
ADDED
|
@@ -0,0 +1,137 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"file_name": "WAN-2.2-I2V-HandjobBlowjobCombo-LOW-v1",
|
| 3 |
+
"model_name": "WAN 2.2 I2V - Combo Handjob Blowjob",
|
| 4 |
+
"file_path": "G:/AI/ComfyUI/models/loras/Actions/Oral/WAN-2.2-I2V-HandjobBlowjobCombo-LOW-v1.safetensors",
|
| 5 |
+
"size": 613516752,
|
| 6 |
+
"modified": 1772081896.364655,
|
| 7 |
+
"sha256": "4371ed72fe9804257e69b56a37217bdab641b76a64208b07a75f5d716a25985d",
|
| 8 |
+
"base_model": "Wan Video 2.2 I2V-A14B",
|
| 9 |
+
"preview_url": "G:/AI/ComfyUI/models/loras/Actions/Oral/WAN-2.2-I2V-HandjobBlowjobCombo-LOW-v1.mp4",
|
| 10 |
+
"preview_nsfw_level": 16,
|
| 11 |
+
"notes": "",
|
| 12 |
+
"from_civitai": true,
|
| 13 |
+
"civitai": {
|
| 14 |
+
"id": 2149614,
|
| 15 |
+
"modelId": 1899045,
|
| 16 |
+
"name": "LOW v1",
|
| 17 |
+
"nsfwLevel": 60,
|
| 18 |
+
"createdAt": "2025-08-26T02:26:19.898Z",
|
| 19 |
+
"updatedAt": "2025-08-26T02:28:53.079Z",
|
| 20 |
+
"status": "Published",
|
| 21 |
+
"publishedAt": "2025-08-26T02:28:49.196Z",
|
| 22 |
+
"trainedWords": [],
|
| 23 |
+
"trainingStatus": null,
|
| 24 |
+
"trainingDetails": null,
|
| 25 |
+
"baseModel": "Wan Video 2.2 I2V-A14B",
|
| 26 |
+
"baseModelType": "Standard",
|
| 27 |
+
"earlyAccessEndsAt": null,
|
| 28 |
+
"earlyAccessConfig": null,
|
| 29 |
+
"description": null,
|
| 30 |
+
"uploadType": "Created",
|
| 31 |
+
"usageControl": "Download",
|
| 32 |
+
"air": "urn:air:wanvideo-22-i2v-a14b:lora:civitai:1899045@2149614",
|
| 33 |
+
"stats": {
|
| 34 |
+
"downloadCount": 33846,
|
| 35 |
+
"thumbsUpCount": 431
|
| 36 |
+
},
|
| 37 |
+
"model": {
|
| 38 |
+
"name": "WAN 2.2 I2V - Combo Handjob Blowjob",
|
| 39 |
+
"type": "LORA",
|
| 40 |
+
"nsfw": true,
|
| 41 |
+
"poi": false,
|
| 42 |
+
"description": "<p>I'm not sure if this particular act has a name, but it's when the lady uses her hand and her mouth simultaneously.<br /><br />This lora works well by itself at strength 1 even without the general NSFW lora, and it works even if the lady doesn't have her hand on the phallus initially. Both POV and side/third person view are supported.<br /><br />It's better for live-action than anime since animated fingers tend to get a bit blurry, but upscaling can do a good job at fixing it.</p><p></p><p>I tried a few different training settings to maybe reduce the filesize, but the 500MB versions were significantly better than the 250MB ones.</p>",
|
| 43 |
+
"tags": [
|
| 44 |
+
"wan",
|
| 45 |
+
"action",
|
| 46 |
+
"blowjob",
|
| 47 |
+
"handjob"
|
| 48 |
+
],
|
| 49 |
+
"allowNoCredit": true,
|
| 50 |
+
"allowCommercialUse": [
|
| 51 |
+
"RentCivit",
|
| 52 |
+
"Rent"
|
| 53 |
+
],
|
| 54 |
+
"allowDerivatives": true,
|
| 55 |
+
"allowDifferentLicense": true
|
| 56 |
+
},
|
| 57 |
+
"files": [
|
| 58 |
+
{
|
| 59 |
+
"id": 2043063,
|
| 60 |
+
"sizeKB": 599137.453125,
|
| 61 |
+
"name": "WAN-2.2-I2V-HandjobBlowjobCombo-LOW-v1.safetensors",
|
| 62 |
+
"type": "Model",
|
| 63 |
+
"pickleScanResult": "Success",
|
| 64 |
+
"pickleScanMessage": "No Pickle imports",
|
| 65 |
+
"virusScanResult": "Success",
|
| 66 |
+
"virusScanMessage": null,
|
| 67 |
+
"scannedAt": "2025-08-26T02:31:17.781Z",
|
| 68 |
+
"metadata": {
|
| 69 |
+
"format": "SafeTensor",
|
| 70 |
+
"size": null,
|
| 71 |
+
"fp": null
|
| 72 |
+
},
|
| 73 |
+
"hashes": {
|
| 74 |
+
"AutoV1": "F4ECD6CD",
|
| 75 |
+
"AutoV2": "4371ED72FE",
|
| 76 |
+
"SHA256": "4371ED72FE9804257E69B56A37217BDAB641B76A64208B07A75F5D716A25985D",
|
| 77 |
+
"CRC32": "CE37F807",
|
| 78 |
+
"BLAKE3": "0736928E6D3183933A0DD4EEE9C283EAD29C16DA6C739800A9B09D8F76F988AB",
|
| 79 |
+
"AutoV3": "D32B86F25A0B"
|
| 80 |
+
},
|
| 81 |
+
"primary": true,
|
| 82 |
+
"downloadUrl": "https://civitai.com/api/download/models/2149614"
|
| 83 |
+
}
|
| 84 |
+
],
|
| 85 |
+
"images": [
|
| 86 |
+
{
|
| 87 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/20e59e97-1f40-44dd-bad2-9e91d2570245/original=true/96534851.mp4",
|
| 88 |
+
"nsfwLevel": 16,
|
| 89 |
+
"width": 720,
|
| 90 |
+
"height": 1080,
|
| 91 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 92 |
+
"type": "video",
|
| 93 |
+
"metadata": {
|
| 94 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 95 |
+
"size": 3485955,
|
| 96 |
+
"audio": false,
|
| 97 |
+
"width": 720,
|
| 98 |
+
"height": 1080,
|
| 99 |
+
"duration": 6.031,
|
| 100 |
+
"skipScannedAtReassignment": true
|
| 101 |
+
},
|
| 102 |
+
"minor": false,
|
| 103 |
+
"poi": false,
|
| 104 |
+
"meta": {
|
| 105 |
+
"steps": 20,
|
| 106 |
+
"prompt": "A sexy woman is giving a man a blowjob and a handjob. The man is out of frame.\n\nShe is in front of the man. She is giving him a blowjob, while simultaneously giving a handjob. She is performing fellatio while stroking the shaft of his penis with one hand.",
|
| 107 |
+
"sampler": "DPM++ 2M"
|
| 108 |
+
},
|
| 109 |
+
"availability": "Public",
|
| 110 |
+
"hasMeta": true,
|
| 111 |
+
"hasPositivePrompt": true,
|
| 112 |
+
"onSite": false,
|
| 113 |
+
"remixOfId": null
|
| 114 |
+
}
|
| 115 |
+
],
|
| 116 |
+
"downloadUrl": "https://civitai.com/api/download/models/2149614",
|
| 117 |
+
"creator": {
|
| 118 |
+
"username": "TwoMoreLurker",
|
| 119 |
+
"image": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/96af28c3-f5f8-46d8-9558-d60fe324773c/width=96/TwoMoreLurker.jpeg"
|
| 120 |
+
}
|
| 121 |
+
},
|
| 122 |
+
"tags": [
|
| 123 |
+
"wan",
|
| 124 |
+
"action",
|
| 125 |
+
"blowjob",
|
| 126 |
+
"handjob"
|
| 127 |
+
],
|
| 128 |
+
"modelDescription": "<p>I'm not sure if this particular act has a name, but it's when the lady uses her hand and her mouth simultaneously.<br /><br />This lora works well by itself at strength 1 even without the general NSFW lora, and it works even if the lady doesn't have her hand on the phallus initially. Both POV and side/third person view are supported.<br /><br />It's better for live-action than anime since animated fingers tend to get a bit blurry, but upscaling can do a good job at fixing it.</p><p></p><p>I tried a few different training settings to maybe reduce the filesize, but the 500MB versions were significantly better than the 250MB ones.</p>",
|
| 129 |
+
"civitai_deleted": false,
|
| 130 |
+
"favorite": false,
|
| 131 |
+
"exclude": false,
|
| 132 |
+
"db_checked": false,
|
| 133 |
+
"skip_metadata_refresh": false,
|
| 134 |
+
"metadata_source": "civitai_api",
|
| 135 |
+
"last_checked_at": 1772082546.037443,
|
| 136 |
+
"usage_tips": "{}"
|
| 137 |
+
}
|
loras/Actions/Oral/WAN-2.2-I2V-HandjobBlowjobCombo-LOW-v1.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c561df739c333407e4d4cebeb07bbbb404a3b31162afddb1f906e602d36f9ce2
|
| 3 |
+
size 1913579
|
loras/Actions/Oral/WAN-2.2-I2V-HandjobBlowjobCombo-LOW-v1.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4371ed72fe9804257e69b56a37217bdab641b76a64208b07a75f5d716a25985d
|
| 3 |
+
size 613516752
|
loras/Actions/Oral/WAN22_14B_I2V_reversedeepthroatV2_high_noise.metadata.json
ADDED
|
@@ -0,0 +1,264 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"file_name": "WAN22_14B_I2V_reversedeepthroatV2_high_noise",
|
| 3 |
+
"model_name": "Reverse deepthroat",
|
| 4 |
+
"file_path": "G:/AI/ComfyUI/models/loras/Actions/Oral/WAN22_14B_I2V_reversedeepthroatV2_high_noise.safetensors",
|
| 5 |
+
"size": 153453592,
|
| 6 |
+
"modified": 1772081902.731151,
|
| 7 |
+
"sha256": "06bcd567d08f63659fef2d74ec0c2c6eb87154498330c61c7750f7cb9e341b6b",
|
| 8 |
+
"base_model": "Wan Video 2.2 I2V-A14B",
|
| 9 |
+
"preview_url": "G:/AI/ComfyUI/models/loras/Actions/Oral/WAN22_14B_I2V_reversedeepthroatV2_high_noise.mp4",
|
| 10 |
+
"preview_nsfw_level": 16,
|
| 11 |
+
"notes": "",
|
| 12 |
+
"from_civitai": true,
|
| 13 |
+
"civitai": {
|
| 14 |
+
"id": 2480971,
|
| 15 |
+
"modelId": 2168001,
|
| 16 |
+
"name": "WAN22_v2_HIGH",
|
| 17 |
+
"nsfwLevel": 60,
|
| 18 |
+
"createdAt": "2025-12-07T18:42:22.912Z",
|
| 19 |
+
"updatedAt": "2026-01-17T12:03:46.018Z",
|
| 20 |
+
"status": "Published",
|
| 21 |
+
"publishedAt": "2025-12-07T18:58:35.779Z",
|
| 22 |
+
"trainedWords": [
|
| 23 |
+
"reverse deepthroat",
|
| 24 |
+
"dynamic throat fuck",
|
| 25 |
+
"deep throat fuck",
|
| 26 |
+
"oral insertion",
|
| 27 |
+
"male appears",
|
| 28 |
+
"pov"
|
| 29 |
+
],
|
| 30 |
+
"trainingStatus": null,
|
| 31 |
+
"trainingDetails": null,
|
| 32 |
+
"baseModel": "Wan Video 2.2 I2V-A14B",
|
| 33 |
+
"baseModelType": "Standard",
|
| 34 |
+
"earlyAccessEndsAt": null,
|
| 35 |
+
"earlyAccessConfig": null,
|
| 36 |
+
"description": "<p>Major update for WAN2.2 14B I2V HIGH: way more traning data, better labelling, more training steps</p>",
|
| 37 |
+
"uploadType": "Created",
|
| 38 |
+
"usageControl": "Download",
|
| 39 |
+
"air": "urn:air:wanvideo-22-i2v-a14b:lora:civitai:2168001@2480971",
|
| 40 |
+
"stats": {
|
| 41 |
+
"downloadCount": 4301,
|
| 42 |
+
"thumbsUpCount": 343
|
| 43 |
+
},
|
| 44 |
+
"model": {
|
| 45 |
+
"name": "Reverse deepthroat",
|
| 46 |
+
"type": "LORA",
|
| 47 |
+
"nsfw": true,
|
| 48 |
+
"poi": false,
|
| 49 |
+
"description": "<p>Reverse deepthroat aka upside down face fuck LoRA for SDXL, PDXL and WAN.</p><p></p><p>Keywords for image generation:</p><p>reverse deepthroat, kneeling, sitting, leaning back, arm support, lying on back, supine, balls deep, penis pulled out, neck grab, breast grab, holding head, holding down, no hands, side view, frontal view, closeup, nipple pinch, breast squeeze, lips that grip</p><p></p><p>Major update for WAN2.2. Way more training data. Twice the steps. POV and male appearing should now work.</p><p>Keywords for video generation:</p><p>\"reverse deepthroat\" + optional combinations of \"oral insertion\",\"deep throat fuck\", \"dynamic throat fuck\", \"male appears\", \"in and out\", \"throatbulge\".</p><p></p>",
|
| 50 |
+
"tags": [
|
| 51 |
+
"concept"
|
| 52 |
+
],
|
| 53 |
+
"allowNoCredit": true,
|
| 54 |
+
"allowCommercialUse": [
|
| 55 |
+
"RentCivit"
|
| 56 |
+
],
|
| 57 |
+
"allowDerivatives": true,
|
| 58 |
+
"allowDifferentLicense": true
|
| 59 |
+
},
|
| 60 |
+
"files": [
|
| 61 |
+
{
|
| 62 |
+
"id": 2369540,
|
| 63 |
+
"sizeKB": 149857.0234375,
|
| 64 |
+
"name": "WAN22_14B_I2V_reversedeepthroatV2_high_noise.safetensors",
|
| 65 |
+
"type": "Model",
|
| 66 |
+
"pickleScanResult": "Success",
|
| 67 |
+
"pickleScanMessage": "No Pickle imports",
|
| 68 |
+
"virusScanResult": "Success",
|
| 69 |
+
"virusScanMessage": null,
|
| 70 |
+
"scannedAt": "2025-12-07T19:00:55.851Z",
|
| 71 |
+
"metadata": {
|
| 72 |
+
"format": "SafeTensor",
|
| 73 |
+
"size": null,
|
| 74 |
+
"fp": null
|
| 75 |
+
},
|
| 76 |
+
"hashes": {
|
| 77 |
+
"AutoV1": "E9897EA8",
|
| 78 |
+
"AutoV2": "06BCD567D0",
|
| 79 |
+
"SHA256": "06BCD567D08F63659FEF2D74EC0C2C6EB87154498330C61C7750F7CB9E341B6B",
|
| 80 |
+
"CRC32": "03C654AD",
|
| 81 |
+
"BLAKE3": "F9699881AD9077A7F73570320113320C288675F5FF4C8E03D39038AFDF441435",
|
| 82 |
+
"AutoV3": "15234D6E8C93"
|
| 83 |
+
},
|
| 84 |
+
"primary": true,
|
| 85 |
+
"downloadUrl": "https://civitai.com/api/download/models/2480971"
|
| 86 |
+
}
|
| 87 |
+
],
|
| 88 |
+
"images": [
|
| 89 |
+
{
|
| 90 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/21ed119e-4afa-42bf-bc52-4895cb0fdcd9/original=true/113008545.mp4",
|
| 91 |
+
"nsfwLevel": 16,
|
| 92 |
+
"width": 832,
|
| 93 |
+
"height": 480,
|
| 94 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 95 |
+
"type": "video",
|
| 96 |
+
"metadata": {
|
| 97 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 98 |
+
"size": 1658615,
|
| 99 |
+
"audio": false,
|
| 100 |
+
"width": 832,
|
| 101 |
+
"height": 480,
|
| 102 |
+
"duration": 10.063
|
| 103 |
+
},
|
| 104 |
+
"minor": false,
|
| 105 |
+
"poi": false,
|
| 106 |
+
"meta": {
|
| 107 |
+
"prompt": "reverse deepthroat, dynamic throat fuck, (throatbulge:1.7)"
|
| 108 |
+
},
|
| 109 |
+
"availability": "Public",
|
| 110 |
+
"hasMeta": true,
|
| 111 |
+
"hasPositivePrompt": true,
|
| 112 |
+
"onSite": false,
|
| 113 |
+
"remixOfId": null
|
| 114 |
+
},
|
| 115 |
+
{
|
| 116 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/2344bd93-dddc-45fb-b835-803a718811ea/original=true/113009099.mp4",
|
| 117 |
+
"nsfwLevel": 16,
|
| 118 |
+
"width": 480,
|
| 119 |
+
"height": 832,
|
| 120 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 121 |
+
"type": "video",
|
| 122 |
+
"metadata": {
|
| 123 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 124 |
+
"size": 1364628,
|
| 125 |
+
"audio": false,
|
| 126 |
+
"width": 480,
|
| 127 |
+
"height": 832,
|
| 128 |
+
"duration": 10.063
|
| 129 |
+
},
|
| 130 |
+
"minor": false,
|
| 131 |
+
"poi": false,
|
| 132 |
+
"meta": {
|
| 133 |
+
"prompt": "reverse deepthroat, in and out, (throatbulge:1.7) moving with every thrust"
|
| 134 |
+
},
|
| 135 |
+
"availability": "Public",
|
| 136 |
+
"hasMeta": true,
|
| 137 |
+
"hasPositivePrompt": true,
|
| 138 |
+
"onSite": false,
|
| 139 |
+
"remixOfId": null
|
| 140 |
+
},
|
| 141 |
+
{
|
| 142 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/69dab452-7e09-4c47-a166-6f83e32a73cc/original=true/113010257.mp4",
|
| 143 |
+
"nsfwLevel": 16,
|
| 144 |
+
"width": 480,
|
| 145 |
+
"height": 832,
|
| 146 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 147 |
+
"type": "video",
|
| 148 |
+
"metadata": {
|
| 149 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 150 |
+
"size": 1428143,
|
| 151 |
+
"audio": false,
|
| 152 |
+
"width": 480,
|
| 153 |
+
"height": 832,
|
| 154 |
+
"duration": 10.063
|
| 155 |
+
},
|
| 156 |
+
"minor": false,
|
| 157 |
+
"poi": false,
|
| 158 |
+
"meta": {
|
| 159 |
+
"prompt": "reverse deepthroat, oral insertion, (throatbulge:1.7) moving with every thrust"
|
| 160 |
+
},
|
| 161 |
+
"availability": "Public",
|
| 162 |
+
"hasMeta": true,
|
| 163 |
+
"hasPositivePrompt": true,
|
| 164 |
+
"onSite": false,
|
| 165 |
+
"remixOfId": null
|
| 166 |
+
},
|
| 167 |
+
{
|
| 168 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/9c962e5d-084f-48bf-b878-d97227069a72/original=true/113011056.mp4",
|
| 169 |
+
"nsfwLevel": 16,
|
| 170 |
+
"width": 480,
|
| 171 |
+
"height": 832,
|
| 172 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 173 |
+
"type": "video",
|
| 174 |
+
"metadata": {
|
| 175 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 176 |
+
"size": 1973228,
|
| 177 |
+
"audio": false,
|
| 178 |
+
"width": 480,
|
| 179 |
+
"height": 832,
|
| 180 |
+
"duration": 10.063
|
| 181 |
+
},
|
| 182 |
+
"minor": false,
|
| 183 |
+
"poi": false,
|
| 184 |
+
"meta": {
|
| 185 |
+
"prompt": "reverse deepthroat, male appears, oral insertion, then deep throat fuck, muscular black male with huge penis, pov"
|
| 186 |
+
},
|
| 187 |
+
"availability": "Public",
|
| 188 |
+
"hasMeta": true,
|
| 189 |
+
"hasPositivePrompt": true,
|
| 190 |
+
"onSite": false,
|
| 191 |
+
"remixOfId": null
|
| 192 |
+
},
|
| 193 |
+
{
|
| 194 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/2b1ef6b6-1d05-4d14-86da-c74ac0f3e317/original=true/113011795.mp4",
|
| 195 |
+
"nsfwLevel": 16,
|
| 196 |
+
"width": 480,
|
| 197 |
+
"height": 832,
|
| 198 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 199 |
+
"type": "video",
|
| 200 |
+
"metadata": {
|
| 201 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 202 |
+
"size": 1576336,
|
| 203 |
+
"audio": false,
|
| 204 |
+
"width": 480,
|
| 205 |
+
"height": 832,
|
| 206 |
+
"duration": 10.063
|
| 207 |
+
},
|
| 208 |
+
"minor": false,
|
| 209 |
+
"poi": false,
|
| 210 |
+
"meta": {
|
| 211 |
+
"prompt": "reverse deepthroat, male appears, girl bends back, leaning back, oral insertion, then deep throat fuck, muscular black male with huge penis"
|
| 212 |
+
},
|
| 213 |
+
"availability": "Public",
|
| 214 |
+
"hasMeta": true,
|
| 215 |
+
"hasPositivePrompt": true,
|
| 216 |
+
"onSite": false,
|
| 217 |
+
"remixOfId": null
|
| 218 |
+
},
|
| 219 |
+
{
|
| 220 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/2ddd0056-358f-46e8-bef4-15ce1d5c1d59/original=true/113012082.mp4",
|
| 221 |
+
"nsfwLevel": 16,
|
| 222 |
+
"width": 480,
|
| 223 |
+
"height": 832,
|
| 224 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 225 |
+
"type": "video",
|
| 226 |
+
"metadata": {
|
| 227 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 228 |
+
"size": 2431117,
|
| 229 |
+
"audio": false,
|
| 230 |
+
"width": 480,
|
| 231 |
+
"height": 832,
|
| 232 |
+
"duration": 10.063
|
| 233 |
+
},
|
| 234 |
+
"minor": false,
|
| 235 |
+
"poi": false,
|
| 236 |
+
"meta": {
|
| 237 |
+
"prompt": "reverse deepthroat, male appears, girl bends back, leaning back, oral insertion, then deep throat fuck, muscular black male with huge penis"
|
| 238 |
+
},
|
| 239 |
+
"availability": "Public",
|
| 240 |
+
"hasMeta": true,
|
| 241 |
+
"hasPositivePrompt": true,
|
| 242 |
+
"onSite": false,
|
| 243 |
+
"remixOfId": null
|
| 244 |
+
}
|
| 245 |
+
],
|
| 246 |
+
"downloadUrl": "https://civitai.com/api/download/models/2480971",
|
| 247 |
+
"creator": {
|
| 248 |
+
"username": "LFMX",
|
| 249 |
+
"image": null
|
| 250 |
+
}
|
| 251 |
+
},
|
| 252 |
+
"tags": [
|
| 253 |
+
"concept"
|
| 254 |
+
],
|
| 255 |
+
"modelDescription": "<p>Reverse deepthroat aka upside down face fuck LoRA for SDXL, PDXL and WAN.</p><p></p><p>Keywords for image generation:</p><p>reverse deepthroat, kneeling, sitting, leaning back, arm support, lying on back, supine, balls deep, penis pulled out, neck grab, breast grab, holding head, holding down, no hands, side view, frontal view, closeup, nipple pinch, breast squeeze, lips that grip</p><p></p><p>Major update for WAN2.2. Way more training data. Twice the steps. POV and male appearing should now work.</p><p>Keywords for video generation:</p><p>\"reverse deepthroat\" + optional combinations of \"oral insertion\",\"deep throat fuck\", \"dynamic throat fuck\", \"male appears\", \"in and out\", \"throatbulge\".</p><p></p>",
|
| 256 |
+
"civitai_deleted": false,
|
| 257 |
+
"favorite": false,
|
| 258 |
+
"exclude": false,
|
| 259 |
+
"db_checked": false,
|
| 260 |
+
"skip_metadata_refresh": false,
|
| 261 |
+
"metadata_source": "civitai_api",
|
| 262 |
+
"last_checked_at": 1772082583.798205,
|
| 263 |
+
"usage_tips": "{}"
|
| 264 |
+
}
|
loras/Actions/Oral/WAN22_14B_I2V_reversedeepthroatV2_high_noise.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:80b9d5c744a4fb4ce0ccbc4ff0a28b52d785abea87ad034762f8ad8d7f2daaf3
|
| 3 |
+
size 528823
|
loras/Actions/Oral/WAN22_14B_I2V_reversedeepthroatV2_high_noise.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:06bcd567d08f63659fef2d74ec0c2c6eb87154498330c61c7750f7cb9e341b6b
|
| 3 |
+
size 153453592
|
loras/Actions/Oral/WAN22_14B_I2V_reversedeepthroatV2_low_noise.jpeg
ADDED
|
loras/Actions/Oral/WAN22_14B_I2V_reversedeepthroatV2_low_noise.metadata.json
ADDED
|
@@ -0,0 +1,164 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"file_name": "WAN22_14B_I2V_reversedeepthroatV2_low_noise",
|
| 3 |
+
"model_name": "Reverse deepthroat",
|
| 4 |
+
"file_path": "G:/AI/ComfyUI/models/loras/Actions/Oral/WAN22_14B_I2V_reversedeepthroatV2_low_noise.safetensors",
|
| 5 |
+
"size": 153453592,
|
| 6 |
+
"modified": 1772081902.848023,
|
| 7 |
+
"sha256": "4224280f943f3f75bb91f7d7925d78e5e4643f2676b61b3897fb3a31609473a3",
|
| 8 |
+
"base_model": "Wan Video 2.2 I2V-A14B",
|
| 9 |
+
"preview_url": "G:/AI/ComfyUI/models/loras/Actions/Oral/WAN22_14B_I2V_reversedeepthroatV2_low_noise.jpeg",
|
| 10 |
+
"preview_nsfw_level": 16,
|
| 11 |
+
"notes": "",
|
| 12 |
+
"from_civitai": true,
|
| 13 |
+
"civitai": {
|
| 14 |
+
"id": 2481012,
|
| 15 |
+
"modelId": 2168001,
|
| 16 |
+
"name": "WAN22_v2_LOW",
|
| 17 |
+
"nsfwLevel": 60,
|
| 18 |
+
"createdAt": "2025-12-07T18:59:51.648Z",
|
| 19 |
+
"updatedAt": "2026-01-17T12:03:46.018Z",
|
| 20 |
+
"status": "Published",
|
| 21 |
+
"publishedAt": "2025-12-07T19:00:59.255Z",
|
| 22 |
+
"trainedWords": [],
|
| 23 |
+
"trainingStatus": null,
|
| 24 |
+
"trainingDetails": null,
|
| 25 |
+
"baseModel": "Wan Video 2.2 I2V-A14B",
|
| 26 |
+
"baseModelType": "Standard",
|
| 27 |
+
"earlyAccessEndsAt": null,
|
| 28 |
+
"earlyAccessConfig": null,
|
| 29 |
+
"description": "<p>Major update for WAN2.2 14B I2V LOW: way more traning data, better labeling, more training steps</p>",
|
| 30 |
+
"uploadType": "Created",
|
| 31 |
+
"usageControl": "Download",
|
| 32 |
+
"air": "urn:air:wanvideo-22-i2v-a14b:lora:civitai:2168001@2481012",
|
| 33 |
+
"stats": {
|
| 34 |
+
"downloadCount": 3874,
|
| 35 |
+
"thumbsUpCount": 119
|
| 36 |
+
},
|
| 37 |
+
"model": {
|
| 38 |
+
"name": "Reverse deepthroat",
|
| 39 |
+
"type": "LORA",
|
| 40 |
+
"nsfw": true,
|
| 41 |
+
"poi": false,
|
| 42 |
+
"description": "<p>Reverse deepthroat aka upside down face fuck LoRA for SDXL, PDXL and WAN.</p><p></p><p>Keywords for image generation:</p><p>reverse deepthroat, kneeling, sitting, leaning back, arm support, lying on back, supine, balls deep, penis pulled out, neck grab, breast grab, holding head, holding down, no hands, side view, frontal view, closeup, nipple pinch, breast squeeze, lips that grip</p><p></p><p>Major update for WAN2.2. Way more training data. Twice the steps. POV and male appearing should now work.</p><p>Keywords for video generation:</p><p>\"reverse deepthroat\" + optional combinations of \"oral insertion\",\"deep throat fuck\", \"dynamic throat fuck\", \"male appears\", \"in and out\", \"throatbulge\".</p><p></p>",
|
| 43 |
+
"tags": [
|
| 44 |
+
"concept"
|
| 45 |
+
],
|
| 46 |
+
"allowNoCredit": true,
|
| 47 |
+
"allowCommercialUse": [
|
| 48 |
+
"RentCivit"
|
| 49 |
+
],
|
| 50 |
+
"allowDerivatives": true,
|
| 51 |
+
"allowDifferentLicense": true
|
| 52 |
+
},
|
| 53 |
+
"files": [
|
| 54 |
+
{
|
| 55 |
+
"id": 2369552,
|
| 56 |
+
"sizeKB": 149857.0234375,
|
| 57 |
+
"name": "WAN22_14B_I2V_reversedeepthroatV2_low_noise.safetensors",
|
| 58 |
+
"type": "Model",
|
| 59 |
+
"pickleScanResult": "Success",
|
| 60 |
+
"pickleScanMessage": "No Pickle imports",
|
| 61 |
+
"virusScanResult": "Success",
|
| 62 |
+
"virusScanMessage": null,
|
| 63 |
+
"scannedAt": "2025-12-07T19:05:48.769Z",
|
| 64 |
+
"metadata": {
|
| 65 |
+
"format": "SafeTensor",
|
| 66 |
+
"size": null,
|
| 67 |
+
"fp": null
|
| 68 |
+
},
|
| 69 |
+
"hashes": {
|
| 70 |
+
"AutoV1": "8DD2E7A4",
|
| 71 |
+
"AutoV2": "4224280F94",
|
| 72 |
+
"SHA256": "4224280F943F3F75BB91F7D7925D78E5E4643F2676B61B3897FB3A31609473A3",
|
| 73 |
+
"CRC32": "D0D70654",
|
| 74 |
+
"BLAKE3": "711FACAF295F9318140E6873303A01AA72BA98F17BB9289D4E8C9483015700B9",
|
| 75 |
+
"AutoV3": "7468AF90287B"
|
| 76 |
+
},
|
| 77 |
+
"primary": true,
|
| 78 |
+
"downloadUrl": "https://civitai.com/api/download/models/2481012"
|
| 79 |
+
}
|
| 80 |
+
],
|
| 81 |
+
"images": [
|
| 82 |
+
{
|
| 83 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/19a0cd96-c832-42a5-8d44-0d13e14de1d5/original=true/113006264.jpeg",
|
| 84 |
+
"nsfwLevel": 16,
|
| 85 |
+
"width": 832,
|
| 86 |
+
"height": 1216,
|
| 87 |
+
"hash": "UFD+VgS3D*-pM|xtx]xa~V?GR*IVs.xtWXWV",
|
| 88 |
+
"type": "image",
|
| 89 |
+
"metadata": {
|
| 90 |
+
"hash": "UFD+VgS3D*-pM|xtx]xa~V?GR*IVs.xtWXWV",
|
| 91 |
+
"size": 215295,
|
| 92 |
+
"width": 832,
|
| 93 |
+
"height": 1216
|
| 94 |
+
},
|
| 95 |
+
"minor": false,
|
| 96 |
+
"poi": false,
|
| 97 |
+
"meta": {
|
| 98 |
+
"Size": "832x1216",
|
| 99 |
+
"seed": 1149864142,
|
| 100 |
+
"steps": 25,
|
| 101 |
+
"prompt": "score_9, score_8_up, detailed skin texture, messy bedroom, 1girl, blonde, skinny toned, nude, medium perky breasts, lying on back , (reverse deepthroat:1.3), fellatio, no hands, closeup, balls deep, head back, drool, saliva, breast grab, lace choker, red leather couch, throatbulge,\n1boy with huge penis from behind her,( side view:1.4)",
|
| 102 |
+
"sampler": "DPM++ 2M Karras",
|
| 103 |
+
"cfgScale": 4,
|
| 104 |
+
"clipSkip": 2,
|
| 105 |
+
"resources": [],
|
| 106 |
+
"Created Date": "2025-11-30T1930:29.7129168Z",
|
| 107 |
+
"civitaiResources": [
|
| 108 |
+
{
|
| 109 |
+
"type": "checkpoint",
|
| 110 |
+
"modelVersionId": 1971591
|
| 111 |
+
},
|
| 112 |
+
{
|
| 113 |
+
"type": "lora",
|
| 114 |
+
"weight": 0.8,
|
| 115 |
+
"modelVersionId": 2449877
|
| 116 |
+
},
|
| 117 |
+
{
|
| 118 |
+
"type": "lora",
|
| 119 |
+
"weight": 2.5,
|
| 120 |
+
"modelVersionId": 1253021
|
| 121 |
+
},
|
| 122 |
+
{
|
| 123 |
+
"type": "lora",
|
| 124 |
+
"weight": 1.5,
|
| 125 |
+
"modelVersionId": 1681921
|
| 126 |
+
},
|
| 127 |
+
{
|
| 128 |
+
"type": "lora",
|
| 129 |
+
"weight": 2.5,
|
| 130 |
+
"modelVersionId": 1594293
|
| 131 |
+
},
|
| 132 |
+
{
|
| 133 |
+
"type": "lora",
|
| 134 |
+
"weight": -0.6,
|
| 135 |
+
"modelVersionId": 1364588
|
| 136 |
+
}
|
| 137 |
+
]
|
| 138 |
+
},
|
| 139 |
+
"availability": "Public",
|
| 140 |
+
"hasMeta": true,
|
| 141 |
+
"hasPositivePrompt": true,
|
| 142 |
+
"onSite": true,
|
| 143 |
+
"remixOfId": null
|
| 144 |
+
}
|
| 145 |
+
],
|
| 146 |
+
"downloadUrl": "https://civitai.com/api/download/models/2481012",
|
| 147 |
+
"creator": {
|
| 148 |
+
"username": "LFMX",
|
| 149 |
+
"image": null
|
| 150 |
+
}
|
| 151 |
+
},
|
| 152 |
+
"tags": [
|
| 153 |
+
"concept"
|
| 154 |
+
],
|
| 155 |
+
"modelDescription": "<p>Reverse deepthroat aka upside down face fuck LoRA for SDXL, PDXL and WAN.</p><p></p><p>Keywords for image generation:</p><p>reverse deepthroat, kneeling, sitting, leaning back, arm support, lying on back, supine, balls deep, penis pulled out, neck grab, breast grab, holding head, holding down, no hands, side view, frontal view, closeup, nipple pinch, breast squeeze, lips that grip</p><p></p><p>Major update for WAN2.2. Way more training data. Twice the steps. POV and male appearing should now work.</p><p>Keywords for video generation:</p><p>\"reverse deepthroat\" + optional combinations of \"oral insertion\",\"deep throat fuck\", \"dynamic throat fuck\", \"male appears\", \"in and out\", \"throatbulge\".</p><p></p>",
|
| 156 |
+
"civitai_deleted": false,
|
| 157 |
+
"favorite": false,
|
| 158 |
+
"exclude": false,
|
| 159 |
+
"db_checked": false,
|
| 160 |
+
"skip_metadata_refresh": false,
|
| 161 |
+
"metadata_source": "civitai_api",
|
| 162 |
+
"last_checked_at": 1772082584.284813,
|
| 163 |
+
"usage_tips": "{}"
|
| 164 |
+
}
|
loras/Actions/Oral/WAN22_14B_I2V_reversedeepthroatV2_low_noise.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4224280f943f3f75bb91f7d7925d78e5e4643f2676b61b3897fb3a31609473a3
|
| 3 |
+
size 153453592
|
loras/Actions/Oral/Wan2.2 - T2V - Facial - HIGH 14B.metadata.json
ADDED
|
@@ -0,0 +1,281 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"file_name": "Wan2.2 - T2V - Facial - HIGH 14B",
|
| 3 |
+
"model_name": "Facial Cumshot (Wan 2.2)",
|
| 4 |
+
"file_path": "G:/AI/ComfyUI/models/loras/Actions/Oral/Wan2.2 - T2V - Facial - HIGH 14B.safetensors",
|
| 5 |
+
"size": 613516752,
|
| 6 |
+
"modified": 1772081896.767088,
|
| 7 |
+
"sha256": "df2402ffe754c83ba0a9ebb080a9eef7bf2b173a0100390987e3d516acddc50d",
|
| 8 |
+
"base_model": "Wan Video 2.2 T2V-A14B",
|
| 9 |
+
"preview_url": "G:/AI/ComfyUI/models/loras/Actions/Oral/Wan2.2 - T2V - Facial - HIGH 14B.mp4",
|
| 10 |
+
"preview_nsfw_level": 16,
|
| 11 |
+
"notes": "",
|
| 12 |
+
"from_civitai": true,
|
| 13 |
+
"civitai": {
|
| 14 |
+
"id": 2127709,
|
| 15 |
+
"modelId": 1879839,
|
| 16 |
+
"name": "Wan2.2 - HIGH - 14B",
|
| 17 |
+
"baseModel": "Wan Video 2.2 T2V-A14B",
|
| 18 |
+
"baseModelType": "Standard",
|
| 19 |
+
"description": null,
|
| 20 |
+
"is_nsfw": true,
|
| 21 |
+
"createdAt": "2025-08-19T02:05:08.054Z",
|
| 22 |
+
"updatedAt": "2025-11-11T21:55:24.035Z",
|
| 23 |
+
"deletedAt": "2025-11-10T17:53:47.090Z",
|
| 24 |
+
"files": [
|
| 25 |
+
{
|
| 26 |
+
"id": 2021741,
|
| 27 |
+
"sizeKB": 599137.453125,
|
| 28 |
+
"name": "Wan2.2 - T2V - Facial - HIGH 14B.safetensors",
|
| 29 |
+
"type": "Model",
|
| 30 |
+
"downloadUrl": "https://civitai.com/api/download/models/2127709",
|
| 31 |
+
"primary": true,
|
| 32 |
+
"mirrors": [
|
| 33 |
+
{
|
| 34 |
+
"filename": "Wan2.2 - T2V - Facial - HIGH 14B.safetensors",
|
| 35 |
+
"url": "https://civitai.com/api/download/models/2127709",
|
| 36 |
+
"source": "civitai",
|
| 37 |
+
"model_id": 1879839,
|
| 38 |
+
"model_version_id": 2127709,
|
| 39 |
+
"deletedAt": "2025-11-11T21:55:23.894Z",
|
| 40 |
+
"is_gated": false,
|
| 41 |
+
"is_paid": false
|
| 42 |
+
},
|
| 43 |
+
{
|
| 44 |
+
"filename": "Wan2.2 - T2V - Facial - HIGH 14B.safetensors",
|
| 45 |
+
"url": "https://huggingface.co/SRodge00/thickcum/resolve/main/Wan2.2 - T2V - Facial - HIGH 14B.safetensors",
|
| 46 |
+
"source": "huggingface",
|
| 47 |
+
"deletedAt": null,
|
| 48 |
+
"is_gated": false,
|
| 49 |
+
"is_paid": false,
|
| 50 |
+
"model_id": null,
|
| 51 |
+
"model_version_id": null
|
| 52 |
+
},
|
| 53 |
+
{
|
| 54 |
+
"filename": "Wan2.2 - T2V - Facial - HIGH 14B.safetensors",
|
| 55 |
+
"url": "https://huggingface.co/JustAnotherCibrarian/base_wan22/resolve/main/1879839/2127709/Wan2.2 - T2V - Facial - HIGH 14B.safetensors",
|
| 56 |
+
"source": "huggingface",
|
| 57 |
+
"deletedAt": null,
|
| 58 |
+
"is_gated": false,
|
| 59 |
+
"is_paid": false,
|
| 60 |
+
"model_id": null,
|
| 61 |
+
"model_version_id": null
|
| 62 |
+
},
|
| 63 |
+
{
|
| 64 |
+
"filename": "Wan2.2 - T2V - Facial - HIGH 14B.safetensors",
|
| 65 |
+
"url": "https://huggingface.co/JustAnotherCibrarian/daily2508/resolve/main/1879839/2127709/Wan2.2 - T2V - Facial - HIGH 14B.safetensors",
|
| 66 |
+
"source": "huggingface",
|
| 67 |
+
"deletedAt": null,
|
| 68 |
+
"is_gated": false,
|
| 69 |
+
"is_paid": false,
|
| 70 |
+
"model_id": null,
|
| 71 |
+
"model_version_id": null
|
| 72 |
+
},
|
| 73 |
+
{
|
| 74 |
+
"filename": "Wan2.2 - T2V - Facial - HIGH 14B.safetensors",
|
| 75 |
+
"url": "https://huggingface.co/mega281/lora/resolve/main/Wan2.2 - T2V - Facial - HIGH 14B.safetensors",
|
| 76 |
+
"source": "huggingface",
|
| 77 |
+
"deletedAt": null,
|
| 78 |
+
"is_gated": false,
|
| 79 |
+
"is_paid": false,
|
| 80 |
+
"model_id": null,
|
| 81 |
+
"model_version_id": null
|
| 82 |
+
},
|
| 83 |
+
{
|
| 84 |
+
"filename": "Wan2.2 - T2V - Facial - HIGH 14B.safetensors",
|
| 85 |
+
"url": "https://huggingface.co/Eastwest69/Cumshot1/resolve/main/Wan2.2 - T2V - Facial - HIGH 14B.safetensors",
|
| 86 |
+
"source": "huggingface",
|
| 87 |
+
"deletedAt": null,
|
| 88 |
+
"is_gated": false,
|
| 89 |
+
"is_paid": false,
|
| 90 |
+
"model_id": null,
|
| 91 |
+
"model_version_id": null
|
| 92 |
+
},
|
| 93 |
+
{
|
| 94 |
+
"filename": "Wan2.2 - T2V - Facial - HIGH 14B.safetensors",
|
| 95 |
+
"url": "https://huggingface.co/Chroma111/CivitAI-Archive-2/resolve/main/1879839/2127709/Wan2.2 - T2V - Facial - HIGH 14B.safetensors",
|
| 96 |
+
"source": "huggingface",
|
| 97 |
+
"deletedAt": null,
|
| 98 |
+
"is_gated": false,
|
| 99 |
+
"is_paid": false,
|
| 100 |
+
"model_id": null,
|
| 101 |
+
"model_version_id": null
|
| 102 |
+
},
|
| 103 |
+
{
|
| 104 |
+
"filename": "Wan2.2 - T2V - Facial - HIGH 14B.safetensors",
|
| 105 |
+
"url": "https://huggingface.co/vigenette/facial14b/resolve/main/Wan2.2 - T2V - Facial - HIGH 14B.safetensors",
|
| 106 |
+
"source": "huggingface",
|
| 107 |
+
"deletedAt": null,
|
| 108 |
+
"is_gated": false,
|
| 109 |
+
"is_paid": false,
|
| 110 |
+
"model_id": null,
|
| 111 |
+
"model_version_id": null
|
| 112 |
+
},
|
| 113 |
+
{
|
| 114 |
+
"filename": "Wan2.2 - T2V - Facial - HIGH 14B.safetensors",
|
| 115 |
+
"url": "https://huggingface.co/Playtime-AI/Wan2.2-Loras/resolve/main/Wan2.2 - T2V - Facial - HIGH 14B.safetensors",
|
| 116 |
+
"source": "huggingface",
|
| 117 |
+
"deletedAt": null,
|
| 118 |
+
"is_gated": false,
|
| 119 |
+
"is_paid": false,
|
| 120 |
+
"model_id": null,
|
| 121 |
+
"model_version_id": null
|
| 122 |
+
},
|
| 123 |
+
{
|
| 124 |
+
"filename": "Wan2.2 - T2V - Facial - HIGH 14B.safetensors",
|
| 125 |
+
"url": "https://huggingface.co/FataleCherry/wancumLowN/resolve/main/Wan2.2 - T2V - Facial - HIGH 14B.safetensors",
|
| 126 |
+
"source": "huggingface",
|
| 127 |
+
"deletedAt": null,
|
| 128 |
+
"is_gated": false,
|
| 129 |
+
"is_paid": false,
|
| 130 |
+
"model_id": null,
|
| 131 |
+
"model_version_id": null
|
| 132 |
+
},
|
| 133 |
+
{
|
| 134 |
+
"filename": "Wan2.2 - T2V - Facial - HIGH 14B.safetensors",
|
| 135 |
+
"url": "https://huggingface.co/sbdfb/dlnsdldsdv/resolve/main/Wan2.2 - T2V - Facial - HIGH 14B.safetensors",
|
| 136 |
+
"source": "huggingface",
|
| 137 |
+
"deletedAt": null,
|
| 138 |
+
"is_gated": false,
|
| 139 |
+
"is_paid": false,
|
| 140 |
+
"model_id": null,
|
| 141 |
+
"model_version_id": null
|
| 142 |
+
},
|
| 143 |
+
{
|
| 144 |
+
"filename": "Wan2.2 - T2V - Facial - HIGH 14B (1).safetensors",
|
| 145 |
+
"url": "https://huggingface.co/sbdfb/Facial/resolve/main/Wan2.2 - T2V - Facial - HIGH 14B (1).safetensors",
|
| 146 |
+
"source": "huggingface",
|
| 147 |
+
"deletedAt": null,
|
| 148 |
+
"is_gated": false,
|
| 149 |
+
"is_paid": false,
|
| 150 |
+
"model_id": null,
|
| 151 |
+
"model_version_id": null
|
| 152 |
+
},
|
| 153 |
+
{
|
| 154 |
+
"filename": "Wan2.2 - T2V - Facial - HIGH 14B.safetensors",
|
| 155 |
+
"url": "https://huggingface.co/Frankis72/Gtmoney/resolve/main/Wan2.2 - T2V - Facial - HIGH 14B.safetensors",
|
| 156 |
+
"source": "huggingface",
|
| 157 |
+
"deletedAt": "2026-02-22T17:53:11.397Z",
|
| 158 |
+
"is_gated": false,
|
| 159 |
+
"is_paid": false,
|
| 160 |
+
"model_id": null,
|
| 161 |
+
"model_version_id": null
|
| 162 |
+
},
|
| 163 |
+
{
|
| 164 |
+
"filename": "Wan2.2 - T2V - Facial - HIGH 14B.safetensors",
|
| 165 |
+
"url": "https://civitasbay.org/torrents/3290CCF3DFE90ECAF9917B659495AF7483111AFB",
|
| 166 |
+
"source": "torrent",
|
| 167 |
+
"deletedAt": null,
|
| 168 |
+
"is_gated": false,
|
| 169 |
+
"is_paid": false,
|
| 170 |
+
"model_id": null,
|
| 171 |
+
"model_version_id": null
|
| 172 |
+
}
|
| 173 |
+
],
|
| 174 |
+
"hashes": {
|
| 175 |
+
"SHA256": "DF2402FFE754C83BA0A9EBB080A9EEF7BF2B173A0100390987E3D516ACDDC50D"
|
| 176 |
+
},
|
| 177 |
+
"modelVersionId": 2127709,
|
| 178 |
+
"modelId": 1879839
|
| 179 |
+
}
|
| 180 |
+
],
|
| 181 |
+
"images": [
|
| 182 |
+
{
|
| 183 |
+
"id": 95138673,
|
| 184 |
+
"url": "https://c.genur.art/ff66b757-f36f-4649-86c4-b63a3e9dd869",
|
| 185 |
+
"nsfwLevel": 16,
|
| 186 |
+
"width": 480,
|
| 187 |
+
"height": 720,
|
| 188 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 189 |
+
"type": "video",
|
| 190 |
+
"minor": false,
|
| 191 |
+
"poi": false,
|
| 192 |
+
"hasMeta": true,
|
| 193 |
+
"hasPositivePrompt": true,
|
| 194 |
+
"onSite": false,
|
| 195 |
+
"remixOfId": null,
|
| 196 |
+
"video_url": "https://c.genur.art/ff66b757-f36f-4649-86c4-b63a3e9dd869",
|
| 197 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC9mZjY2Yjc1Ny1mMzZmLTQ2NDktODZjNC1iNjNhM2U5ZGQ4Njk",
|
| 198 |
+
"link": "https://genur.art/posts/95138673"
|
| 199 |
+
}
|
| 200 |
+
],
|
| 201 |
+
"allow_download": true,
|
| 202 |
+
"download_url": "/api/download/models/2127709",
|
| 203 |
+
"platform_url": "https://civitai.com/models/1879839?modelVersionId=2127709",
|
| 204 |
+
"civitai_model_id": 1879839,
|
| 205 |
+
"civitai_model_version_id": 2127709,
|
| 206 |
+
"href": "/models/1879839?modelVersionId=2127709",
|
| 207 |
+
"mirrors": [
|
| 208 |
+
{
|
| 209 |
+
"platform": "seaart",
|
| 210 |
+
"href": "/seaart/models/d2in9hle878c7387da40/versions/9d98828784e32b654451ef6f23e6233a",
|
| 211 |
+
"platform_url": "https://www.seaart.ai/models/detail/d2in9hle878c7387da40?v=9d98828784e32b654451ef6f23e6233a",
|
| 212 |
+
"name": "F C (Wan 2.2)",
|
| 213 |
+
"version_name": "low",
|
| 214 |
+
"id": "d2in9hle878c7387da40",
|
| 215 |
+
"version_id": "9d98828784e32b654451ef6f23e6233a"
|
| 216 |
+
},
|
| 217 |
+
{
|
| 218 |
+
"platform": "seaart",
|
| 219 |
+
"href": "/seaart/models/d2in9hle878c7387da40/versions/befad1c9d78795e487b4ff5358c65008",
|
| 220 |
+
"platform_url": "https://www.seaart.ai/models/detail/d2in9hle878c7387da40?v=befad1c9d78795e487b4ff5358c65008",
|
| 221 |
+
"name": "F C (Wan 2.2)",
|
| 222 |
+
"version_name": "high",
|
| 223 |
+
"id": "d2in9hle878c7387da40",
|
| 224 |
+
"version_id": "befad1c9d78795e487b4ff5358c65008"
|
| 225 |
+
},
|
| 226 |
+
{
|
| 227 |
+
"platform": "tensorart",
|
| 228 |
+
"href": "/tensorart/models/899984092618095445/versions/899984092618095445",
|
| 229 |
+
"platform_url": "https://tensor.art/models/899984092618095445",
|
| 230 |
+
"name": "F4cial [umshot Wan2.2 - Playtime_AI",
|
| 231 |
+
"version_name": "T2V HIGH",
|
| 232 |
+
"id": "899984092618095445",
|
| 233 |
+
"version_id": "899984092618095445"
|
| 234 |
+
}
|
| 235 |
+
],
|
| 236 |
+
"trainedWords": [
|
| 237 |
+
"A huge load of thick white cum shoots from the penis and lands on her face."
|
| 238 |
+
],
|
| 239 |
+
"nsfwLevel": 16,
|
| 240 |
+
"stats": {
|
| 241 |
+
"downloadCount": 7552,
|
| 242 |
+
"ratingCount": 0,
|
| 243 |
+
"rating": 0
|
| 244 |
+
},
|
| 245 |
+
"model": {
|
| 246 |
+
"name": "Facial Cumshot (Wan 2.2)",
|
| 247 |
+
"type": "LORA",
|
| 248 |
+
"nsfw": true,
|
| 249 |
+
"description": "<p><strong>Trigger:</strong> <em>A huge load of thick white cum shoots from the penis and lands on her face.</em></p>",
|
| 250 |
+
"tags": [
|
| 251 |
+
"concept"
|
| 252 |
+
],
|
| 253 |
+
"allowNoCredit": true,
|
| 254 |
+
"allowCommercialUse": [
|
| 255 |
+
"Sell"
|
| 256 |
+
],
|
| 257 |
+
"allowDerivatives": true,
|
| 258 |
+
"allowDifferentLicense": true
|
| 259 |
+
},
|
| 260 |
+
"creator": {
|
| 261 |
+
"username": "playtime_ai",
|
| 262 |
+
"image": "",
|
| 263 |
+
"name": "playtime_ai",
|
| 264 |
+
"url": "/users/playtime_ai"
|
| 265 |
+
},
|
| 266 |
+
"source": "civarchive",
|
| 267 |
+
"is_deleted": true
|
| 268 |
+
},
|
| 269 |
+
"tags": [
|
| 270 |
+
"concept"
|
| 271 |
+
],
|
| 272 |
+
"modelDescription": "<p><strong>Trigger:</strong> <em>A huge load of thick white cum shoots from the penis and lands on her face.</em></p>",
|
| 273 |
+
"civitai_deleted": false,
|
| 274 |
+
"favorite": false,
|
| 275 |
+
"exclude": false,
|
| 276 |
+
"db_checked": false,
|
| 277 |
+
"skip_metadata_refresh": false,
|
| 278 |
+
"metadata_source": "civarchive",
|
| 279 |
+
"last_checked_at": 1772082546.672456,
|
| 280 |
+
"usage_tips": "{}"
|
| 281 |
+
}
|
loras/Actions/Oral/Wan2.2 - T2V - Facial - HIGH 14B.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:da099d863d62dead68da90cd732e123352ad0a8ebb10b787afd64343e6d4284b
|
| 3 |
+
size 434924
|
loras/Actions/Oral/Wan2.2 - T2V - Facial - HIGH 14B.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:df2402ffe754c83ba0a9ebb080a9eef7bf2b173a0100390987e3d516acddc50d
|
| 3 |
+
size 613516752
|
loras/Actions/Oral/Wan2.2 - T2V - Facial - LOW 14B.metadata.json
ADDED
|
@@ -0,0 +1,623 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"file_name": "Wan2.2 - T2V - Facial - LOW 14B",
|
| 3 |
+
"model_name": "Facial Cumshot (Wan 2.2)",
|
| 4 |
+
"file_path": "G:/AI/ComfyUI/models/loras/Actions/Oral/Wan2.2 - T2V - Facial - LOW 14B.safetensors",
|
| 5 |
+
"size": 613516752,
|
| 6 |
+
"modified": 1772081897.160761,
|
| 7 |
+
"sha256": "cef075c9bfa1d5973d0c912a425b5287a26db9011008b26d0b54b21647e146b7",
|
| 8 |
+
"base_model": "Wan Video 2.2 T2V-A14B",
|
| 9 |
+
"preview_url": "G:/AI/ComfyUI/models/loras/Actions/Oral/Wan2.2 - T2V - Facial - LOW 14B.mp4",
|
| 10 |
+
"preview_nsfw_level": 16,
|
| 11 |
+
"notes": "",
|
| 12 |
+
"from_civitai": true,
|
| 13 |
+
"civitai": {
|
| 14 |
+
"id": 2127715,
|
| 15 |
+
"modelId": 1879839,
|
| 16 |
+
"name": "Wan2.2 - LOW - 14B",
|
| 17 |
+
"baseModel": "Wan Video 2.2 T2V-A14B",
|
| 18 |
+
"baseModelType": "Standard",
|
| 19 |
+
"description": null,
|
| 20 |
+
"is_nsfw": true,
|
| 21 |
+
"createdAt": "2025-08-19T02:07:22.076Z",
|
| 22 |
+
"updatedAt": "2025-11-11T21:55:23.899Z",
|
| 23 |
+
"deletedAt": "2025-11-11T21:55:23.899Z",
|
| 24 |
+
"files": [
|
| 25 |
+
{
|
| 26 |
+
"id": 2021744,
|
| 27 |
+
"sizeKB": 599137.453125,
|
| 28 |
+
"name": "Wan2.2 - T2V - Facial - LOW 14B.safetensors",
|
| 29 |
+
"type": "Model",
|
| 30 |
+
"downloadUrl": "https://civitai.com/api/download/models/2127715",
|
| 31 |
+
"primary": true,
|
| 32 |
+
"mirrors": [
|
| 33 |
+
{
|
| 34 |
+
"filename": "Wan2.2 - T2V - Facial - LOW 14B.safetensors",
|
| 35 |
+
"url": "https://civitai.com/api/download/models/2127715",
|
| 36 |
+
"source": "civitai",
|
| 37 |
+
"model_id": 1879839,
|
| 38 |
+
"model_version_id": 2127715,
|
| 39 |
+
"deletedAt": "2025-11-11T21:55:23.894Z",
|
| 40 |
+
"is_gated": false,
|
| 41 |
+
"is_paid": false
|
| 42 |
+
},
|
| 43 |
+
{
|
| 44 |
+
"filename": "Wan2.2 - T2V - Facial - LOW 14B(1).safetensors",
|
| 45 |
+
"url": "https://huggingface.co/SRodge00/thickcum/resolve/main/Wan2.2 - T2V - Facial - LOW 14B(1).safetensors",
|
| 46 |
+
"source": "huggingface",
|
| 47 |
+
"deletedAt": null,
|
| 48 |
+
"is_gated": false,
|
| 49 |
+
"is_paid": false,
|
| 50 |
+
"model_id": null,
|
| 51 |
+
"model_version_id": null
|
| 52 |
+
},
|
| 53 |
+
{
|
| 54 |
+
"filename": "Wan2.2 - T2V - Facial - LOW 14B.safetensors",
|
| 55 |
+
"url": "https://huggingface.co/JustAnotherCibrarian/base_wan22/resolve/main/1879839/2127715/Wan2.2 - T2V - Facial - LOW 14B.safetensors",
|
| 56 |
+
"source": "huggingface",
|
| 57 |
+
"deletedAt": null,
|
| 58 |
+
"is_gated": false,
|
| 59 |
+
"is_paid": false,
|
| 60 |
+
"model_id": null,
|
| 61 |
+
"model_version_id": null
|
| 62 |
+
},
|
| 63 |
+
{
|
| 64 |
+
"filename": "Wan2.2 - T2V - Facial - LOW 14B.safetensors",
|
| 65 |
+
"url": "https://huggingface.co/JustAnotherCibrarian/daily2508/resolve/main/1879839/2127715/Wan2.2 - T2V - Facial - LOW 14B.safetensors",
|
| 66 |
+
"source": "huggingface",
|
| 67 |
+
"deletedAt": null,
|
| 68 |
+
"is_gated": false,
|
| 69 |
+
"is_paid": false,
|
| 70 |
+
"model_id": null,
|
| 71 |
+
"model_version_id": null
|
| 72 |
+
},
|
| 73 |
+
{
|
| 74 |
+
"filename": "Wan2.2 - T2V - Facial - LOW 14B.safetensors",
|
| 75 |
+
"url": "https://huggingface.co/mega281/lora/resolve/main/Wan2.2 - T2V - Facial - LOW 14B.safetensors",
|
| 76 |
+
"source": "huggingface",
|
| 77 |
+
"deletedAt": null,
|
| 78 |
+
"is_gated": false,
|
| 79 |
+
"is_paid": false,
|
| 80 |
+
"model_id": null,
|
| 81 |
+
"model_version_id": null
|
| 82 |
+
},
|
| 83 |
+
{
|
| 84 |
+
"filename": "Wan2.2 - T2V - Facial - LOW 14B.safetensors",
|
| 85 |
+
"url": "https://huggingface.co/Eastwest69/Cumshot2/resolve/main/Wan2.2 - T2V - Facial - LOW 14B.safetensors",
|
| 86 |
+
"source": "huggingface",
|
| 87 |
+
"deletedAt": null,
|
| 88 |
+
"is_gated": false,
|
| 89 |
+
"is_paid": false,
|
| 90 |
+
"model_id": null,
|
| 91 |
+
"model_version_id": null
|
| 92 |
+
},
|
| 93 |
+
{
|
| 94 |
+
"filename": "Wan2.2 - T2V - Facial - LOW 14B.safetensors",
|
| 95 |
+
"url": "https://huggingface.co/Chroma111/CivitAI-Archive-2/resolve/main/1879839/2127715/Wan2.2 - T2V - Facial - LOW 14B.safetensors",
|
| 96 |
+
"source": "huggingface",
|
| 97 |
+
"deletedAt": null,
|
| 98 |
+
"is_gated": false,
|
| 99 |
+
"is_paid": false,
|
| 100 |
+
"model_id": null,
|
| 101 |
+
"model_version_id": null
|
| 102 |
+
},
|
| 103 |
+
{
|
| 104 |
+
"filename": "Wan2.2 - T2V - Facial - LOW 14B.safetensors",
|
| 105 |
+
"url": "https://huggingface.co/vigenette/facial14b/resolve/main/Wan2.2 - T2V - Facial - LOW 14B.safetensors",
|
| 106 |
+
"source": "huggingface",
|
| 107 |
+
"deletedAt": null,
|
| 108 |
+
"is_gated": false,
|
| 109 |
+
"is_paid": false,
|
| 110 |
+
"model_id": null,
|
| 111 |
+
"model_version_id": null
|
| 112 |
+
},
|
| 113 |
+
{
|
| 114 |
+
"filename": "Wan2.2 - T2V - Facial - LOW 14B.safetensors",
|
| 115 |
+
"url": "https://huggingface.co/Playtime-AI/Wan2.2-Loras/resolve/main/Wan2.2 - T2V - Facial - LOW 14B.safetensors",
|
| 116 |
+
"source": "huggingface",
|
| 117 |
+
"deletedAt": null,
|
| 118 |
+
"is_gated": false,
|
| 119 |
+
"is_paid": false,
|
| 120 |
+
"model_id": null,
|
| 121 |
+
"model_version_id": null
|
| 122 |
+
},
|
| 123 |
+
{
|
| 124 |
+
"filename": "Wan2.2 - T2V - Facial - LOW 14B.safetensors",
|
| 125 |
+
"url": "https://huggingface.co/FataleCherry/wfacial/resolve/main/Wan2.2 - T2V - Facial - LOW 14B.safetensors",
|
| 126 |
+
"source": "huggingface",
|
| 127 |
+
"deletedAt": null,
|
| 128 |
+
"is_gated": false,
|
| 129 |
+
"is_paid": false,
|
| 130 |
+
"model_id": null,
|
| 131 |
+
"model_version_id": null
|
| 132 |
+
},
|
| 133 |
+
{
|
| 134 |
+
"filename": "Wan2.2 - T2V - Facial - LOW 14B.safetensors",
|
| 135 |
+
"url": "https://huggingface.co/sbdfb/dlnsdldsdv/resolve/main/Wan2.2 - T2V - Facial - LOW 14B.safetensors",
|
| 136 |
+
"source": "huggingface",
|
| 137 |
+
"deletedAt": null,
|
| 138 |
+
"is_gated": false,
|
| 139 |
+
"is_paid": false,
|
| 140 |
+
"model_id": null,
|
| 141 |
+
"model_version_id": null
|
| 142 |
+
},
|
| 143 |
+
{
|
| 144 |
+
"filename": "Wan2.2 - T2V - Facial - LOW 14B (1).safetensors",
|
| 145 |
+
"url": "https://huggingface.co/sbdfb/Facial/resolve/main/Wan2.2 - T2V - Facial - LOW 14B (1).safetensors",
|
| 146 |
+
"source": "huggingface",
|
| 147 |
+
"deletedAt": null,
|
| 148 |
+
"is_gated": false,
|
| 149 |
+
"is_paid": false,
|
| 150 |
+
"model_id": null,
|
| 151 |
+
"model_version_id": null
|
| 152 |
+
},
|
| 153 |
+
{
|
| 154 |
+
"filename": "102_Facial_LOW14B.safetensors",
|
| 155 |
+
"url": "https://huggingface.co/matedivya/ponylora-sep23/resolve/main/102_Facial_LOW14B.safetensors",
|
| 156 |
+
"source": "huggingface",
|
| 157 |
+
"deletedAt": null,
|
| 158 |
+
"is_gated": false,
|
| 159 |
+
"is_paid": false,
|
| 160 |
+
"model_id": null,
|
| 161 |
+
"model_version_id": null
|
| 162 |
+
},
|
| 163 |
+
{
|
| 164 |
+
"filename": "Wan2.2 - T2V - Facial - LOW 14B.safetensors",
|
| 165 |
+
"url": "https://huggingface.co/Frankis72/Gtmoney/resolve/main/Wan2.2 - T2V - Facial - LOW 14B.safetensors",
|
| 166 |
+
"source": "huggingface",
|
| 167 |
+
"deletedAt": "2026-02-22T17:53:11.397Z",
|
| 168 |
+
"is_gated": false,
|
| 169 |
+
"is_paid": false,
|
| 170 |
+
"model_id": null,
|
| 171 |
+
"model_version_id": null
|
| 172 |
+
}
|
| 173 |
+
],
|
| 174 |
+
"hashes": {
|
| 175 |
+
"SHA256": "CEF075C9BFA1D5973D0C912A425B5287A26DB9011008B26D0B54B21647E146B7"
|
| 176 |
+
},
|
| 177 |
+
"modelVersionId": 2127715,
|
| 178 |
+
"modelId": 1879839
|
| 179 |
+
}
|
| 180 |
+
],
|
| 181 |
+
"images": [
|
| 182 |
+
{
|
| 183 |
+
"id": 95139207,
|
| 184 |
+
"url": "https://c.genur.art/9825cd4f-9202-4007-9b56-0ed0be937602",
|
| 185 |
+
"nsfwLevel": 16,
|
| 186 |
+
"width": 480,
|
| 187 |
+
"height": 720,
|
| 188 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 189 |
+
"type": "video",
|
| 190 |
+
"minor": false,
|
| 191 |
+
"poi": false,
|
| 192 |
+
"hasMeta": true,
|
| 193 |
+
"hasPositivePrompt": true,
|
| 194 |
+
"onSite": false,
|
| 195 |
+
"remixOfId": null,
|
| 196 |
+
"video_url": "https://c.genur.art/9825cd4f-9202-4007-9b56-0ed0be937602",
|
| 197 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC85ODI1Y2Q0Zi05MjAyLTQwMDctOWI1Ni0wZWQwYmU5Mzc2MDI",
|
| 198 |
+
"link": "https://genur.art/posts/95139207"
|
| 199 |
+
},
|
| 200 |
+
{
|
| 201 |
+
"id": 95139217,
|
| 202 |
+
"url": "https://c.genur.art/fb9d2ce6-715b-4313-ae5d-38fd77fd474c",
|
| 203 |
+
"nsfwLevel": 16,
|
| 204 |
+
"width": 480,
|
| 205 |
+
"height": 720,
|
| 206 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 207 |
+
"type": "video",
|
| 208 |
+
"minor": false,
|
| 209 |
+
"poi": false,
|
| 210 |
+
"hasMeta": true,
|
| 211 |
+
"hasPositivePrompt": true,
|
| 212 |
+
"onSite": false,
|
| 213 |
+
"remixOfId": null,
|
| 214 |
+
"video_url": "https://c.genur.art/fb9d2ce6-715b-4313-ae5d-38fd77fd474c",
|
| 215 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC9mYjlkMmNlNi03MTViLTQzMTMtYWU1ZC0zOGZkNzdmZDQ3NGM",
|
| 216 |
+
"link": "https://genur.art/posts/95139217"
|
| 217 |
+
},
|
| 218 |
+
{
|
| 219 |
+
"id": 95139212,
|
| 220 |
+
"url": "https://c.genur.art/3a82a287-8203-4991-9268-a11b4a8ad126",
|
| 221 |
+
"nsfwLevel": 16,
|
| 222 |
+
"width": 480,
|
| 223 |
+
"height": 720,
|
| 224 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 225 |
+
"type": "video",
|
| 226 |
+
"minor": false,
|
| 227 |
+
"poi": false,
|
| 228 |
+
"hasMeta": true,
|
| 229 |
+
"hasPositivePrompt": true,
|
| 230 |
+
"onSite": false,
|
| 231 |
+
"remixOfId": null,
|
| 232 |
+
"video_url": "https://c.genur.art/3a82a287-8203-4991-9268-a11b4a8ad126",
|
| 233 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC8zYTgyYTI4Ny04MjAzLTQ5OTEtOTI2OC1hMTFiNGE4YWQxMjY",
|
| 234 |
+
"link": "https://genur.art/posts/95139212"
|
| 235 |
+
},
|
| 236 |
+
{
|
| 237 |
+
"id": 95144980,
|
| 238 |
+
"url": "https://c.genur.art/240d38b0-cd90-40a3-b899-f34eeda446ed",
|
| 239 |
+
"nsfwLevel": 16,
|
| 240 |
+
"width": 480,
|
| 241 |
+
"height": 720,
|
| 242 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 243 |
+
"type": "video",
|
| 244 |
+
"minor": false,
|
| 245 |
+
"poi": false,
|
| 246 |
+
"hasMeta": true,
|
| 247 |
+
"hasPositivePrompt": true,
|
| 248 |
+
"onSite": false,
|
| 249 |
+
"remixOfId": null,
|
| 250 |
+
"video_url": "https://c.genur.art/240d38b0-cd90-40a3-b899-f34eeda446ed",
|
| 251 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC8yNDBkMzhiMC1jZDkwLTQwYTMtYjg5OS1mMzRlZWRhNDQ2ZWQ",
|
| 252 |
+
"link": "https://genur.art/posts/95144980"
|
| 253 |
+
},
|
| 254 |
+
{
|
| 255 |
+
"id": 95139218,
|
| 256 |
+
"url": "https://c.genur.art/dc295b5e-3dc5-4afe-9e34-bf7cbcb13685",
|
| 257 |
+
"nsfwLevel": 16,
|
| 258 |
+
"width": 480,
|
| 259 |
+
"height": 720,
|
| 260 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 261 |
+
"type": "video",
|
| 262 |
+
"minor": false,
|
| 263 |
+
"poi": false,
|
| 264 |
+
"hasMeta": true,
|
| 265 |
+
"hasPositivePrompt": true,
|
| 266 |
+
"onSite": false,
|
| 267 |
+
"remixOfId": null,
|
| 268 |
+
"video_url": "https://c.genur.art/dc295b5e-3dc5-4afe-9e34-bf7cbcb13685",
|
| 269 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC9kYzI5NWI1ZS0zZGM1LTRhZmUtOWUzNC1iZjdjYmNiMTM2ODU",
|
| 270 |
+
"link": "https://genur.art/posts/95139218"
|
| 271 |
+
},
|
| 272 |
+
{
|
| 273 |
+
"id": 95139211,
|
| 274 |
+
"url": "https://c.genur.art/6b934ba2-4c9c-4d4c-a95d-ae2d35da1ef3",
|
| 275 |
+
"nsfwLevel": 16,
|
| 276 |
+
"width": 480,
|
| 277 |
+
"height": 720,
|
| 278 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 279 |
+
"type": "video",
|
| 280 |
+
"minor": false,
|
| 281 |
+
"poi": false,
|
| 282 |
+
"hasMeta": true,
|
| 283 |
+
"hasPositivePrompt": true,
|
| 284 |
+
"onSite": false,
|
| 285 |
+
"remixOfId": null,
|
| 286 |
+
"video_url": "https://c.genur.art/6b934ba2-4c9c-4d4c-a95d-ae2d35da1ef3",
|
| 287 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC82YjkzNGJhMi00YzljLTRkNGMtYTk1ZC1hZTJkMzVkYTFlZjM",
|
| 288 |
+
"link": "https://genur.art/posts/95139211"
|
| 289 |
+
},
|
| 290 |
+
{
|
| 291 |
+
"id": 95139220,
|
| 292 |
+
"url": "https://c.genur.art/4251ceb1-bec3-4b92-9463-7bcd7ae633a6",
|
| 293 |
+
"nsfwLevel": 16,
|
| 294 |
+
"width": 480,
|
| 295 |
+
"height": 720,
|
| 296 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 297 |
+
"type": "video",
|
| 298 |
+
"minor": false,
|
| 299 |
+
"poi": false,
|
| 300 |
+
"hasMeta": true,
|
| 301 |
+
"hasPositivePrompt": true,
|
| 302 |
+
"onSite": false,
|
| 303 |
+
"remixOfId": null,
|
| 304 |
+
"video_url": "https://c.genur.art/4251ceb1-bec3-4b92-9463-7bcd7ae633a6",
|
| 305 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC80MjUxY2ViMS1iZWMzLTRiOTItOTQ2My03YmNkN2FlNjMzYTY",
|
| 306 |
+
"link": "https://genur.art/posts/95139220"
|
| 307 |
+
},
|
| 308 |
+
{
|
| 309 |
+
"id": 95139216,
|
| 310 |
+
"url": "https://c.genur.art/45a22192-0e4b-4967-a8ec-88022c668b3a",
|
| 311 |
+
"nsfwLevel": 16,
|
| 312 |
+
"width": 480,
|
| 313 |
+
"height": 720,
|
| 314 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 315 |
+
"type": "video",
|
| 316 |
+
"minor": false,
|
| 317 |
+
"poi": false,
|
| 318 |
+
"hasMeta": true,
|
| 319 |
+
"hasPositivePrompt": true,
|
| 320 |
+
"onSite": false,
|
| 321 |
+
"remixOfId": null,
|
| 322 |
+
"video_url": "https://c.genur.art/45a22192-0e4b-4967-a8ec-88022c668b3a",
|
| 323 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC80NWEyMjE5Mi0wZTRiLTQ5NjctYThlYy04ODAyMmM2NjhiM2E",
|
| 324 |
+
"link": "https://genur.art/posts/95139216"
|
| 325 |
+
},
|
| 326 |
+
{
|
| 327 |
+
"id": 95139215,
|
| 328 |
+
"url": "https://c.genur.art/6d9ce9b8-5e17-495c-ade6-9dc796737855",
|
| 329 |
+
"nsfwLevel": 16,
|
| 330 |
+
"width": 480,
|
| 331 |
+
"height": 720,
|
| 332 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 333 |
+
"type": "video",
|
| 334 |
+
"minor": false,
|
| 335 |
+
"poi": false,
|
| 336 |
+
"hasMeta": true,
|
| 337 |
+
"hasPositivePrompt": true,
|
| 338 |
+
"onSite": false,
|
| 339 |
+
"remixOfId": null,
|
| 340 |
+
"video_url": "https://c.genur.art/6d9ce9b8-5e17-495c-ade6-9dc796737855",
|
| 341 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC82ZDljZTliOC01ZTE3LTQ5NWMtYWRlNi05ZGM3OTY3Mzc4NTU",
|
| 342 |
+
"link": "https://genur.art/posts/95139215"
|
| 343 |
+
},
|
| 344 |
+
{
|
| 345 |
+
"id": 95139219,
|
| 346 |
+
"url": "https://c.genur.art/001a8a8c-07cd-4e18-a182-dd51bd94ecfb",
|
| 347 |
+
"nsfwLevel": 16,
|
| 348 |
+
"width": 480,
|
| 349 |
+
"height": 720,
|
| 350 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 351 |
+
"type": "video",
|
| 352 |
+
"minor": false,
|
| 353 |
+
"poi": false,
|
| 354 |
+
"hasMeta": true,
|
| 355 |
+
"hasPositivePrompt": true,
|
| 356 |
+
"onSite": false,
|
| 357 |
+
"remixOfId": null,
|
| 358 |
+
"video_url": "https://c.genur.art/001a8a8c-07cd-4e18-a182-dd51bd94ecfb",
|
| 359 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC8wMDFhOGE4Yy0wN2NkLTRlMTgtYTE4Mi1kZDUxYmQ5NGVjZmI",
|
| 360 |
+
"link": "https://genur.art/posts/95139219"
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"id": 95139213,
|
| 364 |
+
"url": "https://c.genur.art/f3de3238-b832-4ed4-bbd7-712b8094dea7",
|
| 365 |
+
"nsfwLevel": 16,
|
| 366 |
+
"width": 480,
|
| 367 |
+
"height": 720,
|
| 368 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 369 |
+
"type": "video",
|
| 370 |
+
"minor": false,
|
| 371 |
+
"poi": false,
|
| 372 |
+
"hasMeta": true,
|
| 373 |
+
"hasPositivePrompt": true,
|
| 374 |
+
"onSite": false,
|
| 375 |
+
"remixOfId": null,
|
| 376 |
+
"video_url": "https://c.genur.art/f3de3238-b832-4ed4-bbd7-712b8094dea7",
|
| 377 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC9mM2RlMzIzOC1iODMyLTRlZDQtYmJkNy03MTJiODA5NGRlYTc",
|
| 378 |
+
"link": "https://genur.art/posts/95139213"
|
| 379 |
+
},
|
| 380 |
+
{
|
| 381 |
+
"id": 95139208,
|
| 382 |
+
"url": "https://c.genur.art/fd310a29-5d93-425d-99c5-eb064620f486",
|
| 383 |
+
"nsfwLevel": 16,
|
| 384 |
+
"width": 480,
|
| 385 |
+
"height": 720,
|
| 386 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 387 |
+
"type": "video",
|
| 388 |
+
"minor": false,
|
| 389 |
+
"poi": false,
|
| 390 |
+
"hasMeta": true,
|
| 391 |
+
"hasPositivePrompt": true,
|
| 392 |
+
"onSite": false,
|
| 393 |
+
"remixOfId": null,
|
| 394 |
+
"video_url": "https://c.genur.art/fd310a29-5d93-425d-99c5-eb064620f486",
|
| 395 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC9mZDMxMGEyOS01ZDkzLTQyNWQtOTljNS1lYjA2NDYyMGY0ODY",
|
| 396 |
+
"link": "https://genur.art/posts/95139208"
|
| 397 |
+
},
|
| 398 |
+
{
|
| 399 |
+
"id": 95139563,
|
| 400 |
+
"url": "https://c.genur.art/52059820-3e66-42b4-81c5-11d999e47164",
|
| 401 |
+
"nsfwLevel": 16,
|
| 402 |
+
"width": 480,
|
| 403 |
+
"height": 720,
|
| 404 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 405 |
+
"type": "video",
|
| 406 |
+
"minor": false,
|
| 407 |
+
"poi": false,
|
| 408 |
+
"hasMeta": true,
|
| 409 |
+
"hasPositivePrompt": true,
|
| 410 |
+
"onSite": false,
|
| 411 |
+
"remixOfId": null,
|
| 412 |
+
"video_url": "https://c.genur.art/52059820-3e66-42b4-81c5-11d999e47164",
|
| 413 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC81MjA1OTgyMC0zZTY2LTQyYjQtODFjNS0xMWQ5OTllNDcxNjQ",
|
| 414 |
+
"link": "https://genur.art/posts/95139563"
|
| 415 |
+
},
|
| 416 |
+
{
|
| 417 |
+
"id": 95139766,
|
| 418 |
+
"url": "https://c.genur.art/1886a20c-0b43-4102-bfa0-481085372891",
|
| 419 |
+
"nsfwLevel": 16,
|
| 420 |
+
"width": 480,
|
| 421 |
+
"height": 720,
|
| 422 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 423 |
+
"type": "video",
|
| 424 |
+
"minor": false,
|
| 425 |
+
"poi": false,
|
| 426 |
+
"hasMeta": true,
|
| 427 |
+
"hasPositivePrompt": true,
|
| 428 |
+
"onSite": false,
|
| 429 |
+
"remixOfId": null,
|
| 430 |
+
"video_url": "https://c.genur.art/1886a20c-0b43-4102-bfa0-481085372891",
|
| 431 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC8xODg2YTIwYy0wYjQzLTQxMDItYmZhMC00ODEwODUzNzI4OTE",
|
| 432 |
+
"link": "https://genur.art/posts/95139766"
|
| 433 |
+
},
|
| 434 |
+
{
|
| 435 |
+
"id": 95141028,
|
| 436 |
+
"url": "https://c.genur.art/a065c0c1-812c-464e-a943-775300a5174f",
|
| 437 |
+
"nsfwLevel": 16,
|
| 438 |
+
"width": 480,
|
| 439 |
+
"height": 720,
|
| 440 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 441 |
+
"type": "video",
|
| 442 |
+
"minor": false,
|
| 443 |
+
"poi": false,
|
| 444 |
+
"hasMeta": true,
|
| 445 |
+
"hasPositivePrompt": true,
|
| 446 |
+
"onSite": false,
|
| 447 |
+
"remixOfId": null,
|
| 448 |
+
"video_url": "https://c.genur.art/a065c0c1-812c-464e-a943-775300a5174f",
|
| 449 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC9hMDY1YzBjMS04MTJjLTQ2NGUtYTk0My03NzUzMDBhNTE3NGY",
|
| 450 |
+
"link": "https://genur.art/posts/95141028"
|
| 451 |
+
},
|
| 452 |
+
{
|
| 453 |
+
"id": 95141194,
|
| 454 |
+
"url": "https://c.genur.art/e3d2e881-4273-4619-9f63-4cd29df43e82",
|
| 455 |
+
"nsfwLevel": 16,
|
| 456 |
+
"width": 480,
|
| 457 |
+
"height": 720,
|
| 458 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 459 |
+
"type": "video",
|
| 460 |
+
"minor": false,
|
| 461 |
+
"poi": false,
|
| 462 |
+
"hasMeta": true,
|
| 463 |
+
"hasPositivePrompt": true,
|
| 464 |
+
"onSite": false,
|
| 465 |
+
"remixOfId": null,
|
| 466 |
+
"video_url": "https://c.genur.art/e3d2e881-4273-4619-9f63-4cd29df43e82",
|
| 467 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC9lM2QyZTg4MS00MjczLTQ2MTktOWY2My00Y2QyOWRmNDNlODI",
|
| 468 |
+
"link": "https://genur.art/posts/95141194"
|
| 469 |
+
},
|
| 470 |
+
{
|
| 471 |
+
"id": 95143634,
|
| 472 |
+
"url": "https://c.genur.art/3603f87f-9606-4814-8daa-40727707c49a",
|
| 473 |
+
"nsfwLevel": 16,
|
| 474 |
+
"width": 480,
|
| 475 |
+
"height": 720,
|
| 476 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 477 |
+
"type": "video",
|
| 478 |
+
"minor": false,
|
| 479 |
+
"poi": false,
|
| 480 |
+
"hasMeta": true,
|
| 481 |
+
"hasPositivePrompt": true,
|
| 482 |
+
"onSite": false,
|
| 483 |
+
"remixOfId": null,
|
| 484 |
+
"video_url": "https://c.genur.art/3603f87f-9606-4814-8daa-40727707c49a",
|
| 485 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC8zNjAzZjg3Zi05NjA2LTQ4MTQtOGRhYS00MDcyNzcwN2M0OWE",
|
| 486 |
+
"link": "https://genur.art/posts/95143634"
|
| 487 |
+
},
|
| 488 |
+
{
|
| 489 |
+
"id": 95143635,
|
| 490 |
+
"url": "https://c.genur.art/0e1c567e-8637-4d6b-893f-9056d45a3869",
|
| 491 |
+
"nsfwLevel": 16,
|
| 492 |
+
"width": 480,
|
| 493 |
+
"height": 720,
|
| 494 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 495 |
+
"type": "video",
|
| 496 |
+
"minor": false,
|
| 497 |
+
"poi": false,
|
| 498 |
+
"hasMeta": true,
|
| 499 |
+
"hasPositivePrompt": true,
|
| 500 |
+
"onSite": false,
|
| 501 |
+
"remixOfId": null,
|
| 502 |
+
"video_url": "https://c.genur.art/0e1c567e-8637-4d6b-893f-9056d45a3869",
|
| 503 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC8wZTFjNTY3ZS04NjM3LTRkNmItODkzZi05MDU2ZDQ1YTM4Njk",
|
| 504 |
+
"link": "https://genur.art/posts/95143635"
|
| 505 |
+
},
|
| 506 |
+
{
|
| 507 |
+
"id": 95143636,
|
| 508 |
+
"url": "https://c.genur.art/bc10706b-377d-44e6-8549-4def711529a6",
|
| 509 |
+
"nsfwLevel": 16,
|
| 510 |
+
"width": 480,
|
| 511 |
+
"height": 720,
|
| 512 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 513 |
+
"type": "video",
|
| 514 |
+
"minor": false,
|
| 515 |
+
"poi": false,
|
| 516 |
+
"hasMeta": true,
|
| 517 |
+
"hasPositivePrompt": true,
|
| 518 |
+
"onSite": false,
|
| 519 |
+
"remixOfId": null,
|
| 520 |
+
"video_url": "https://c.genur.art/bc10706b-377d-44e6-8549-4def711529a6",
|
| 521 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC9iYzEwNzA2Yi0zNzdkLTQ0ZTYtODU0OS00ZGVmNzExNTI5YTY",
|
| 522 |
+
"link": "https://genur.art/posts/95143636"
|
| 523 |
+
},
|
| 524 |
+
{
|
| 525 |
+
"id": 95144530,
|
| 526 |
+
"url": "https://c.genur.art/0194857f-cfb6-42de-a4ed-423969de47f5",
|
| 527 |
+
"nsfwLevel": 16,
|
| 528 |
+
"width": 480,
|
| 529 |
+
"height": 720,
|
| 530 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 531 |
+
"type": "video",
|
| 532 |
+
"minor": false,
|
| 533 |
+
"poi": false,
|
| 534 |
+
"hasMeta": true,
|
| 535 |
+
"hasPositivePrompt": true,
|
| 536 |
+
"onSite": false,
|
| 537 |
+
"remixOfId": null,
|
| 538 |
+
"video_url": "https://c.genur.art/0194857f-cfb6-42de-a4ed-423969de47f5",
|
| 539 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC8wMTk0ODU3Zi1jZmI2LTQyZGUtYTRlZC00MjM5NjlkZTQ3ZjU",
|
| 540 |
+
"link": "https://genur.art/posts/95144530"
|
| 541 |
+
}
|
| 542 |
+
],
|
| 543 |
+
"allow_download": true,
|
| 544 |
+
"download_url": "/api/download/models/2127715",
|
| 545 |
+
"platform_url": "https://civitai.com/models/1879839?modelVersionId=2127715",
|
| 546 |
+
"civitai_model_id": 1879839,
|
| 547 |
+
"civitai_model_version_id": 2127715,
|
| 548 |
+
"href": "/models/1879839?modelVersionId=2127715",
|
| 549 |
+
"mirrors": [
|
| 550 |
+
{
|
| 551 |
+
"platform": "seaart",
|
| 552 |
+
"href": "/seaart/models/d2in9hle878c7387da40/versions/9d98828784e32b654451ef6f23e6233a",
|
| 553 |
+
"platform_url": "https://www.seaart.ai/models/detail/d2in9hle878c7387da40?v=9d98828784e32b654451ef6f23e6233a",
|
| 554 |
+
"name": "F C (Wan 2.2)",
|
| 555 |
+
"version_name": "low",
|
| 556 |
+
"id": "d2in9hle878c7387da40",
|
| 557 |
+
"version_id": "9d98828784e32b654451ef6f23e6233a"
|
| 558 |
+
},
|
| 559 |
+
{
|
| 560 |
+
"platform": "seaart",
|
| 561 |
+
"href": "/seaart/models/d2in9hle878c7387da40/versions/befad1c9d78795e487b4ff5358c65008",
|
| 562 |
+
"platform_url": "https://www.seaart.ai/models/detail/d2in9hle878c7387da40?v=befad1c9d78795e487b4ff5358c65008",
|
| 563 |
+
"name": "F C (Wan 2.2)",
|
| 564 |
+
"version_name": "high",
|
| 565 |
+
"id": "d2in9hle878c7387da40",
|
| 566 |
+
"version_id": "befad1c9d78795e487b4ff5358c65008"
|
| 567 |
+
},
|
| 568 |
+
{
|
| 569 |
+
"platform": "tensorart",
|
| 570 |
+
"href": "/tensorart/models/899984092618095445/versions/899984092618095445",
|
| 571 |
+
"platform_url": "https://tensor.art/models/899984092618095445",
|
| 572 |
+
"name": "F4cial [umshot Wan2.2 - Playtime_AI",
|
| 573 |
+
"version_name": "T2V HIGH",
|
| 574 |
+
"id": "899984092618095445",
|
| 575 |
+
"version_id": "899984092618095445"
|
| 576 |
+
}
|
| 577 |
+
],
|
| 578 |
+
"trainedWords": [
|
| 579 |
+
"A huge load of thick white cum shoots from the penis and lands on her face."
|
| 580 |
+
],
|
| 581 |
+
"nsfwLevel": 16,
|
| 582 |
+
"stats": {
|
| 583 |
+
"downloadCount": 9255,
|
| 584 |
+
"ratingCount": 0,
|
| 585 |
+
"rating": 0
|
| 586 |
+
},
|
| 587 |
+
"model": {
|
| 588 |
+
"name": "Facial Cumshot (Wan 2.2)",
|
| 589 |
+
"type": "LORA",
|
| 590 |
+
"nsfw": true,
|
| 591 |
+
"description": "<p><strong>Trigger:</strong> <em>A huge load of thick white cum shoots from the penis and lands on her face.</em></p>",
|
| 592 |
+
"tags": [
|
| 593 |
+
"concept"
|
| 594 |
+
],
|
| 595 |
+
"allowNoCredit": true,
|
| 596 |
+
"allowCommercialUse": [
|
| 597 |
+
"Sell"
|
| 598 |
+
],
|
| 599 |
+
"allowDerivatives": true,
|
| 600 |
+
"allowDifferentLicense": true
|
| 601 |
+
},
|
| 602 |
+
"creator": {
|
| 603 |
+
"username": "playtime_ai",
|
| 604 |
+
"image": "",
|
| 605 |
+
"name": "playtime_ai",
|
| 606 |
+
"url": "/users/playtime_ai"
|
| 607 |
+
},
|
| 608 |
+
"source": "civarchive",
|
| 609 |
+
"is_deleted": true
|
| 610 |
+
},
|
| 611 |
+
"tags": [
|
| 612 |
+
"concept"
|
| 613 |
+
],
|
| 614 |
+
"modelDescription": "<p><strong>Trigger:</strong> <em>A huge load of thick white cum shoots from the penis and lands on her face.</em></p>",
|
| 615 |
+
"civitai_deleted": false,
|
| 616 |
+
"favorite": false,
|
| 617 |
+
"exclude": false,
|
| 618 |
+
"db_checked": false,
|
| 619 |
+
"skip_metadata_refresh": false,
|
| 620 |
+
"metadata_source": "civarchive",
|
| 621 |
+
"last_checked_at": 1772082548.228811,
|
| 622 |
+
"usage_tips": "{}"
|
| 623 |
+
}
|
loras/Actions/Oral/Wan2.2 - T2V - Facial - LOW 14B.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9155223b44e06be336c5fed762e1bddec36b4bb59a82a0828695f7c1729768f2
|
| 3 |
+
size 397915
|
loras/Actions/Oral/Wan2.2 - T2V - Facial - LOW 14B.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cef075c9bfa1d5973d0c912a425b5287a26db9011008b26d0b54b21647e146b7
|
| 3 |
+
size 613516752
|
loras/Actions/Oral/Wan2.2-I2V-Blowjob-HIGH-14B.metadata.json
ADDED
|
@@ -0,0 +1,278 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"file_name": "Wan2.2-I2V-Blowjob-HIGH-14B",
|
| 3 |
+
"model_name": "Ultimate, Super Awesome, Better Than... Blowjob Wan2.2 I2V, Wan2.1 I2V & T2V LoRa",
|
| 4 |
+
"file_path": "G:/AI/ComfyUI/models/loras/Actions/Oral/Wan2.2-I2V-Blowjob-HIGH-14B.safetensors",
|
| 5 |
+
"size": 613516752,
|
| 6 |
+
"modified": 1772081897.545877,
|
| 7 |
+
"sha256": "68410de3def3b05d9d52ef6c8456c462f0fa62a9164743a9363285ba3dac1991",
|
| 8 |
+
"base_model": "Wan Video 2.2 I2V-A14B",
|
| 9 |
+
"preview_url": "G:/AI/ComfyUI/models/loras/Actions/Oral/Wan2.2-I2V-Blowjob-HIGH-14B.mp4",
|
| 10 |
+
"preview_nsfw_level": 16,
|
| 11 |
+
"notes": "",
|
| 12 |
+
"from_civitai": true,
|
| 13 |
+
"civitai": {
|
| 14 |
+
"id": 2193369,
|
| 15 |
+
"modelId": 1465836,
|
| 16 |
+
"name": "Wan2.2 - I2V - HIGH 14B",
|
| 17 |
+
"baseModel": "Wan Video 2.2 I2V-A14B",
|
| 18 |
+
"baseModelType": "Standard",
|
| 19 |
+
"description": null,
|
| 20 |
+
"is_nsfw": true,
|
| 21 |
+
"createdAt": "2025-09-07T23:31:14.712Z",
|
| 22 |
+
"updatedAt": "2025-11-12T15:09:16.182Z",
|
| 23 |
+
"deletedAt": "2025-11-12T15:09:16.182Z",
|
| 24 |
+
"files": [
|
| 25 |
+
{
|
| 26 |
+
"id": 2086409,
|
| 27 |
+
"sizeKB": 599137.453125,
|
| 28 |
+
"name": "Wan2.2 - I2V - Blowjob - HIGH 14B.safetensors",
|
| 29 |
+
"type": "Model",
|
| 30 |
+
"downloadUrl": "https://civitai.com/api/download/models/2193369",
|
| 31 |
+
"primary": true,
|
| 32 |
+
"mirrors": [
|
| 33 |
+
{
|
| 34 |
+
"filename": "Wan2.2 - I2V - Blowjob - HIGH 14B.safetensors",
|
| 35 |
+
"url": "https://civitai.com/api/download/models/2193369",
|
| 36 |
+
"source": "civitai",
|
| 37 |
+
"model_id": 1465836,
|
| 38 |
+
"model_version_id": 2193369,
|
| 39 |
+
"deletedAt": "2025-11-12T15:09:16.289Z",
|
| 40 |
+
"is_gated": false,
|
| 41 |
+
"is_paid": false
|
| 42 |
+
},
|
| 43 |
+
{
|
| 44 |
+
"filename": "Wan2.2 - I2V - Blowjob - HIGH 14B.safetensors",
|
| 45 |
+
"url": "https://huggingface.co/JustAnotherCibrarian/base_wan22_2509/resolve/main/1465836/2193369/Wan2.2 - I2V - Blowjob - HIGH 14B.safetensors",
|
| 46 |
+
"source": "huggingface",
|
| 47 |
+
"deletedAt": null,
|
| 48 |
+
"is_gated": false,
|
| 49 |
+
"is_paid": false,
|
| 50 |
+
"model_id": null,
|
| 51 |
+
"model_version_id": null
|
| 52 |
+
},
|
| 53 |
+
{
|
| 54 |
+
"filename": "Wan2.2 - I2V - Blowjob - HIGH 14B.safetensors",
|
| 55 |
+
"url": "https://huggingface.co/Chroma111/CivitAI-Archive-2/resolve/main/1465836/2193369/Wan2.2 - I2V - Blowjob - HIGH 14B.safetensors",
|
| 56 |
+
"source": "huggingface",
|
| 57 |
+
"deletedAt": null,
|
| 58 |
+
"is_gated": false,
|
| 59 |
+
"is_paid": false,
|
| 60 |
+
"model_id": null,
|
| 61 |
+
"model_version_id": null
|
| 62 |
+
},
|
| 63 |
+
{
|
| 64 |
+
"filename": "Wan2.2 v2 - T2V - Blowjob - HIGH 14B.safetensors",
|
| 65 |
+
"url": "https://huggingface.co/mega281/lora/resolve/main/Wan2.2 v2 - T2V - Blowjob - HIGH 14B.safetensors",
|
| 66 |
+
"source": "huggingface",
|
| 67 |
+
"deletedAt": null,
|
| 68 |
+
"is_gated": false,
|
| 69 |
+
"is_paid": false,
|
| 70 |
+
"model_id": null,
|
| 71 |
+
"model_version_id": null
|
| 72 |
+
},
|
| 73 |
+
{
|
| 74 |
+
"filename": "Wan2.2I2VBlowjobHIGH14B.safetensors",
|
| 75 |
+
"url": "https://huggingface.co/mega281/lora/resolve/main/Wan2.2I2VBlowjobHIGH14B.safetensors",
|
| 76 |
+
"source": "huggingface",
|
| 77 |
+
"deletedAt": null,
|
| 78 |
+
"is_gated": false,
|
| 79 |
+
"is_paid": false,
|
| 80 |
+
"model_id": null,
|
| 81 |
+
"model_version_id": null
|
| 82 |
+
},
|
| 83 |
+
{
|
| 84 |
+
"filename": "Wan2.2 - I2V - Blowjob - HIGH 14B.safetensors",
|
| 85 |
+
"url": "https://huggingface.co/Playtime-AI/Wan2.2-Loras/resolve/main/Wan2.2 - I2V - Blowjob - HIGH 14B.safetensors",
|
| 86 |
+
"source": "huggingface",
|
| 87 |
+
"deletedAt": null,
|
| 88 |
+
"is_gated": false,
|
| 89 |
+
"is_paid": false,
|
| 90 |
+
"model_id": null,
|
| 91 |
+
"model_version_id": null
|
| 92 |
+
},
|
| 93 |
+
{
|
| 94 |
+
"filename": "Wan2.2 - I2V - Blowjob - HIGH 14B.safetensors",
|
| 95 |
+
"url": "https://huggingface.co/KeyOpening8063587/BlowjobWan2.2/resolve/main/Wan2.2 - I2V - Blowjob - HIGH 14B.safetensors",
|
| 96 |
+
"source": "huggingface",
|
| 97 |
+
"deletedAt": null,
|
| 98 |
+
"is_gated": false,
|
| 99 |
+
"is_paid": false,
|
| 100 |
+
"model_id": null,
|
| 101 |
+
"model_version_id": null
|
| 102 |
+
},
|
| 103 |
+
{
|
| 104 |
+
"filename": "Wan2.2 - I2V - Blowjob - HIGH 14B.safetensors",
|
| 105 |
+
"url": "https://huggingface.co/KeyOpening8063587/WanBlowjobI2V/resolve/main/Wan2.2 - I2V - Blowjob - HIGH 14B.safetensors",
|
| 106 |
+
"source": "huggingface",
|
| 107 |
+
"deletedAt": null,
|
| 108 |
+
"is_gated": false,
|
| 109 |
+
"is_paid": false,
|
| 110 |
+
"model_id": null,
|
| 111 |
+
"model_version_id": null
|
| 112 |
+
},
|
| 113 |
+
{
|
| 114 |
+
"filename": "Wan2.2 - I2V - Blowjob - HIGH 14B.safetensors",
|
| 115 |
+
"url": "https://huggingface.co/sbdfb/deepthro/resolve/main/Wan2.2 - I2V - Blowjob - HIGH 14B.safetensors",
|
| 116 |
+
"source": "huggingface",
|
| 117 |
+
"deletedAt": null,
|
| 118 |
+
"is_gated": false,
|
| 119 |
+
"is_paid": false,
|
| 120 |
+
"model_id": null,
|
| 121 |
+
"model_version_id": null
|
| 122 |
+
},
|
| 123 |
+
{
|
| 124 |
+
"filename": "Wan2.2-I2V-Blowjob-HIGH-14B.safetensors",
|
| 125 |
+
"url": "https://huggingface.co/fiojanea/Esan_testi/resolve/main/Wan2.2-I2V-Blowjob-HIGH-14B.safetensors",
|
| 126 |
+
"source": "huggingface",
|
| 127 |
+
"deletedAt": null,
|
| 128 |
+
"is_gated": false,
|
| 129 |
+
"is_paid": false,
|
| 130 |
+
"model_id": null,
|
| 131 |
+
"model_version_id": null
|
| 132 |
+
},
|
| 133 |
+
{
|
| 134 |
+
"filename": "01_Blowjob_HIGH_14B.safetensors",
|
| 135 |
+
"url": "https://huggingface.co/matedivya/ponylora-sep23/resolve/main/01_Blowjob_HIGH_14B.safetensors",
|
| 136 |
+
"source": "huggingface",
|
| 137 |
+
"deletedAt": null,
|
| 138 |
+
"is_gated": false,
|
| 139 |
+
"is_paid": false,
|
| 140 |
+
"model_id": null,
|
| 141 |
+
"model_version_id": null
|
| 142 |
+
},
|
| 143 |
+
{
|
| 144 |
+
"filename": "101_ Blowjob_HIGH14B.safetensors",
|
| 145 |
+
"url": "https://huggingface.co/matedivya/ponylora-sep23/resolve/main/101_ Blowjob_HIGH14B.safetensors",
|
| 146 |
+
"source": "huggingface",
|
| 147 |
+
"deletedAt": null,
|
| 148 |
+
"is_gated": false,
|
| 149 |
+
"is_paid": false,
|
| 150 |
+
"model_id": null,
|
| 151 |
+
"model_version_id": null
|
| 152 |
+
},
|
| 153 |
+
{
|
| 154 |
+
"filename": "Wan2.2 - I2V - Blowjob - HIGH 14B.safetensors",
|
| 155 |
+
"url": "https://huggingface.co/Frankis72/Gtmoney/resolve/main/Wan2.2 - I2V - Blowjob - HIGH 14B.safetensors",
|
| 156 |
+
"source": "huggingface",
|
| 157 |
+
"deletedAt": "2026-02-22T17:53:11.397Z",
|
| 158 |
+
"is_gated": false,
|
| 159 |
+
"is_paid": false,
|
| 160 |
+
"model_id": null,
|
| 161 |
+
"model_version_id": null
|
| 162 |
+
}
|
| 163 |
+
],
|
| 164 |
+
"hashes": {
|
| 165 |
+
"SHA256": "68410DE3DEF3B05D9D52EF6C8456C462F0FA62A9164743A9363285BA3DAC1991"
|
| 166 |
+
},
|
| 167 |
+
"modelVersionId": 2193369,
|
| 168 |
+
"modelId": 1465836
|
| 169 |
+
}
|
| 170 |
+
],
|
| 171 |
+
"images": [
|
| 172 |
+
{
|
| 173 |
+
"id": 99002135,
|
| 174 |
+
"url": "https://c.genur.art/694652a9-aab3-40d3-9b82-6c7e972c2363",
|
| 175 |
+
"nsfwLevel": 16,
|
| 176 |
+
"width": 480,
|
| 177 |
+
"height": 720,
|
| 178 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 179 |
+
"type": "video",
|
| 180 |
+
"minor": false,
|
| 181 |
+
"poi": false,
|
| 182 |
+
"hasMeta": true,
|
| 183 |
+
"hasPositivePrompt": true,
|
| 184 |
+
"onSite": false,
|
| 185 |
+
"remixOfId": null,
|
| 186 |
+
"video_url": "https://c.genur.art/694652a9-aab3-40d3-9b82-6c7e972c2363",
|
| 187 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC82OTQ2NTJhOS1hYWIzLTQwZDMtOWI4Mi02YzdlOTcyYzIzNjM",
|
| 188 |
+
"link": "https://genur.art/posts/99002135"
|
| 189 |
+
},
|
| 190 |
+
{
|
| 191 |
+
"id": 99001018,
|
| 192 |
+
"url": "https://c.genur.art/b481af3d-cfa4-4e0f-b4e5-90557f6ebecb",
|
| 193 |
+
"nsfwLevel": 16,
|
| 194 |
+
"width": 480,
|
| 195 |
+
"height": 720,
|
| 196 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 197 |
+
"type": "video",
|
| 198 |
+
"minor": false,
|
| 199 |
+
"poi": false,
|
| 200 |
+
"hasMeta": true,
|
| 201 |
+
"hasPositivePrompt": true,
|
| 202 |
+
"onSite": false,
|
| 203 |
+
"remixOfId": null,
|
| 204 |
+
"video_url": "https://c.genur.art/b481af3d-cfa4-4e0f-b4e5-90557f6ebecb",
|
| 205 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC9iNDgxYWYzZC1jZmE0LTRlMGYtYjRlNS05MDU1N2Y2ZWJlY2I",
|
| 206 |
+
"link": "https://genur.art/posts/99001018"
|
| 207 |
+
}
|
| 208 |
+
],
|
| 209 |
+
"allow_download": true,
|
| 210 |
+
"download_url": "/api/download/models/2193369",
|
| 211 |
+
"platform_url": "https://civitai.com/models/1465836?modelVersionId=2193369",
|
| 212 |
+
"civitai_model_id": 1465836,
|
| 213 |
+
"civitai_model_version_id": 2193369,
|
| 214 |
+
"href": "/models/1465836?modelVersionId=2193369",
|
| 215 |
+
"mirrors": [
|
| 216 |
+
{
|
| 217 |
+
"platform": "tensorart",
|
| 218 |
+
"href": "/tensorart/models/855583632318807118/versions/855583632318807118",
|
| 219 |
+
"platform_url": "https://tensor.art/models/855583632318807118",
|
| 220 |
+
"name": "POVBJ",
|
| 221 |
+
"version_name": "T2V & I2V 14B",
|
| 222 |
+
"id": "855583632318807118",
|
| 223 |
+
"version_id": "855583632318807118"
|
| 224 |
+
},
|
| 225 |
+
{
|
| 226 |
+
"platform": "tensorart",
|
| 227 |
+
"href": "/tensorart/models/907306672555356361/versions/907306672555356361",
|
| 228 |
+
"platform_url": "https://tensor.art/models/907306672555356361",
|
| 229 |
+
"name": "Wan Bl0wjob Ultimate, Super Awesome… - Playtime_AI",
|
| 230 |
+
"version_name": "T2V v2 HIGH",
|
| 231 |
+
"id": "907306672555356361",
|
| 232 |
+
"version_id": "907306672555356361"
|
| 233 |
+
}
|
| 234 |
+
],
|
| 235 |
+
"trainedWords": [],
|
| 236 |
+
"nsfwLevel": 16,
|
| 237 |
+
"stats": {
|
| 238 |
+
"downloadCount": 6249,
|
| 239 |
+
"ratingCount": 0,
|
| 240 |
+
"rating": 0
|
| 241 |
+
},
|
| 242 |
+
"model": {
|
| 243 |
+
"name": "Ultimate, Super Awesome, Better Than... Blowjob Wan2.2 I2V, Wan2.1 I2V & T2V LoRa",
|
| 244 |
+
"type": "LORA",
|
| 245 |
+
"nsfw": true,
|
| 246 |
+
"description": "<h3 id=\"https:ko-fi.complaytime_ai\"><a target=\"_blank\" rel=\"ugc\" href=\"https://ko-fi.com/playtime_ai\"><strong>https://ko-fi.com/playtime_ai</strong></a></h3><p></p><h3 id=\"trigger-examples:-she-is-performing-oral-sex-on-a-man.-she-is-giving-him-a-blowjob.-she-sucks-his-cock.\"><strong>Trigger Examples: </strong><em>she is performing oral sex on a man. she is giving him a blowjob. she sucks his cock.</em></h3><p></p><p><strong><em>Works with: </em></strong><em>Viewed from the side. Viewed from a high angle. Viewed from a low angle. Viewed from above. Viewed from below. A POV shot.</em></p><p></p><h3></h3><p></p>",
|
| 247 |
+
"tags": [
|
| 248 |
+
"concept"
|
| 249 |
+
],
|
| 250 |
+
"allowNoCredit": true,
|
| 251 |
+
"allowCommercialUse": [
|
| 252 |
+
"Sell"
|
| 253 |
+
],
|
| 254 |
+
"allowDerivatives": true,
|
| 255 |
+
"allowDifferentLicense": true
|
| 256 |
+
},
|
| 257 |
+
"creator": {
|
| 258 |
+
"username": "playtime_ai",
|
| 259 |
+
"image": "",
|
| 260 |
+
"name": "playtime_ai",
|
| 261 |
+
"url": "/users/playtime_ai"
|
| 262 |
+
},
|
| 263 |
+
"source": "civarchive",
|
| 264 |
+
"is_deleted": true
|
| 265 |
+
},
|
| 266 |
+
"tags": [
|
| 267 |
+
"concept"
|
| 268 |
+
],
|
| 269 |
+
"modelDescription": "<h3 id=\"https:ko-fi.complaytime_ai\"><a target=\"_blank\" rel=\"ugc\" href=\"https://ko-fi.com/playtime_ai\"><strong>https://ko-fi.com/playtime_ai</strong></a></h3><p></p><h3 id=\"trigger-examples:-she-is-performing-oral-sex-on-a-man.-she-is-giving-him-a-blowjob.-she-sucks-his-cock.\"><strong>Trigger Examples: </strong><em>she is performing oral sex on a man. she is giving him a blowjob. she sucks his cock.</em></h3><p></p><p><strong><em>Works with: </em></strong><em>Viewed from the side. Viewed from a high angle. Viewed from a low angle. Viewed from above. Viewed from below. A POV shot.</em></p><p></p><h3></h3><p></p>",
|
| 270 |
+
"civitai_deleted": false,
|
| 271 |
+
"favorite": false,
|
| 272 |
+
"exclude": false,
|
| 273 |
+
"db_checked": false,
|
| 274 |
+
"skip_metadata_refresh": false,
|
| 275 |
+
"metadata_source": "civarchive",
|
| 276 |
+
"last_checked_at": 1772082549.371252,
|
| 277 |
+
"usage_tips": "{}"
|
| 278 |
+
}
|
loras/Actions/Oral/Wan2.2-I2V-Blowjob-HIGH-14B.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3ea8bb3316a754d91d2d18ce7b22ae25ddee0956326d0d2d1e51f570ea3e4c05
|
| 3 |
+
size 358638
|
loras/Actions/Oral/Wan2.2-I2V-Blowjob-HIGH-14B.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:68410de3def3b05d9d52ef6c8456c462f0fa62a9164743a9363285ba3dac1991
|
| 3 |
+
size 613516752
|
loras/Actions/Oral/Wan2.2-I2V-Blowjob-LOW-14B.metadata.json
ADDED
|
@@ -0,0 +1,572 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"file_name": "Wan2.2-I2V-Blowjob-LOW-14B",
|
| 3 |
+
"model_name": "Ultimate, Super Awesome, Better Than... Blowjob Wan2.2 I2V, Wan2.1 I2V & T2V LoRa",
|
| 4 |
+
"file_path": "G:/AI/ComfyUI/models/loras/Actions/Oral/Wan2.2-I2V-Blowjob-LOW-14B.safetensors",
|
| 5 |
+
"size": 613516752,
|
| 6 |
+
"modified": 1772081897.93244,
|
| 7 |
+
"sha256": "35d74447ac989a32788e14be86004f90254cf0dde87151f4fec58485ee296d2b",
|
| 8 |
+
"base_model": "Wan Video 2.2 I2V-A14B",
|
| 9 |
+
"preview_url": "G:/AI/ComfyUI/models/loras/Actions/Oral/Wan2.2-I2V-Blowjob-LOW-14B.mp4",
|
| 10 |
+
"preview_nsfw_level": 16,
|
| 11 |
+
"notes": "",
|
| 12 |
+
"from_civitai": true,
|
| 13 |
+
"civitai": {
|
| 14 |
+
"id": 2193373,
|
| 15 |
+
"modelId": 1465836,
|
| 16 |
+
"name": "Wan2.2 - I2V - LOW 14B",
|
| 17 |
+
"baseModel": "Wan Video 2.2 I2V-A14B",
|
| 18 |
+
"baseModelType": "Standard",
|
| 19 |
+
"description": null,
|
| 20 |
+
"is_nsfw": true,
|
| 21 |
+
"createdAt": "2025-09-07T23:31:14.697Z",
|
| 22 |
+
"updatedAt": "2025-11-12T15:09:16.050Z",
|
| 23 |
+
"deletedAt": "2025-11-12T15:09:16.050Z",
|
| 24 |
+
"files": [
|
| 25 |
+
{
|
| 26 |
+
"id": 2086412,
|
| 27 |
+
"sizeKB": 599137.453125,
|
| 28 |
+
"name": "Wan2.2 - I2V - Blowjob - LOW 14B.safetensors",
|
| 29 |
+
"type": "Model",
|
| 30 |
+
"downloadUrl": "https://civitai.com/api/download/models/2193373",
|
| 31 |
+
"primary": true,
|
| 32 |
+
"mirrors": [
|
| 33 |
+
{
|
| 34 |
+
"filename": "Wan2.2 - I2V - Blowjob - LOW 14B.safetensors",
|
| 35 |
+
"url": "https://civitai.com/api/download/models/2193373",
|
| 36 |
+
"source": "civitai",
|
| 37 |
+
"model_id": 1465836,
|
| 38 |
+
"model_version_id": 2193373,
|
| 39 |
+
"deletedAt": "2025-11-12T15:09:16.289Z",
|
| 40 |
+
"is_gated": false,
|
| 41 |
+
"is_paid": false
|
| 42 |
+
},
|
| 43 |
+
{
|
| 44 |
+
"filename": "Wan2.2 - I2V - Blowjob - LOW 14B.safetensors",
|
| 45 |
+
"url": "https://huggingface.co/JustAnotherCibrarian/base_wan22_2509/resolve/main/1465836/2193373/Wan2.2 - I2V - Blowjob - LOW 14B.safetensors",
|
| 46 |
+
"source": "huggingface",
|
| 47 |
+
"deletedAt": null,
|
| 48 |
+
"is_gated": false,
|
| 49 |
+
"is_paid": false,
|
| 50 |
+
"model_id": null,
|
| 51 |
+
"model_version_id": null
|
| 52 |
+
},
|
| 53 |
+
{
|
| 54 |
+
"filename": "Wan2.2-I2V-Blowjob-LOW-14B.safetensors",
|
| 55 |
+
"url": "https://huggingface.co/fiojanea/Esan_testi/resolve/main/Wan2.2-I2V-Blowjob-LOW-14B.safetensors",
|
| 56 |
+
"source": "huggingface",
|
| 57 |
+
"deletedAt": null,
|
| 58 |
+
"is_gated": false,
|
| 59 |
+
"is_paid": false,
|
| 60 |
+
"model_id": null,
|
| 61 |
+
"model_version_id": null
|
| 62 |
+
},
|
| 63 |
+
{
|
| 64 |
+
"filename": "Wan2.2 - I2V - Blowjob - LOW 14B.safetensors",
|
| 65 |
+
"url": "https://huggingface.co/Chroma111/CivitAI-Archive-2/resolve/main/1465836/2193373/Wan2.2 - I2V - Blowjob - LOW 14B.safetensors",
|
| 66 |
+
"source": "huggingface",
|
| 67 |
+
"deletedAt": null,
|
| 68 |
+
"is_gated": false,
|
| 69 |
+
"is_paid": false,
|
| 70 |
+
"model_id": null,
|
| 71 |
+
"model_version_id": null
|
| 72 |
+
},
|
| 73 |
+
{
|
| 74 |
+
"filename": "Wan2.2I2VBlowjobLOW14B.safetensors",
|
| 75 |
+
"url": "https://huggingface.co/mega281/lora/resolve/main/Wan2.2I2VBlowjobLOW14B.safetensors",
|
| 76 |
+
"source": "huggingface",
|
| 77 |
+
"deletedAt": null,
|
| 78 |
+
"is_gated": false,
|
| 79 |
+
"is_paid": false,
|
| 80 |
+
"model_id": null,
|
| 81 |
+
"model_version_id": null
|
| 82 |
+
},
|
| 83 |
+
{
|
| 84 |
+
"filename": "Wan2.2 - I2V - Blowjob - LOW 14B.safetensors",
|
| 85 |
+
"url": "https://huggingface.co/Playtime-AI/Wan2.2-Loras/resolve/main/Wan2.2 - I2V - Blowjob - LOW 14B.safetensors",
|
| 86 |
+
"source": "huggingface",
|
| 87 |
+
"deletedAt": null,
|
| 88 |
+
"is_gated": false,
|
| 89 |
+
"is_paid": false,
|
| 90 |
+
"model_id": null,
|
| 91 |
+
"model_version_id": null
|
| 92 |
+
},
|
| 93 |
+
{
|
| 94 |
+
"filename": "Wan2.2 - I2V - Blowjob - LOW 14B.safetensors",
|
| 95 |
+
"url": "https://huggingface.co/KeyOpening8063587/BlowjobWan2.2/resolve/main/Wan2.2 - I2V - Blowjob - LOW 14B.safetensors",
|
| 96 |
+
"source": "huggingface",
|
| 97 |
+
"deletedAt": null,
|
| 98 |
+
"is_gated": false,
|
| 99 |
+
"is_paid": false,
|
| 100 |
+
"model_id": null,
|
| 101 |
+
"model_version_id": null
|
| 102 |
+
},
|
| 103 |
+
{
|
| 104 |
+
"filename": "Wan2.2 - I2V - Blowjob - LOW 14B.safetensors",
|
| 105 |
+
"url": "https://huggingface.co/KeyOpening8063587/WanBlowjobI2V/resolve/main/Wan2.2 - I2V - Blowjob - LOW 14B.safetensors",
|
| 106 |
+
"source": "huggingface",
|
| 107 |
+
"deletedAt": null,
|
| 108 |
+
"is_gated": false,
|
| 109 |
+
"is_paid": false,
|
| 110 |
+
"model_id": null,
|
| 111 |
+
"model_version_id": null
|
| 112 |
+
},
|
| 113 |
+
{
|
| 114 |
+
"filename": "Wan2.2 - I2V - Blowjob - LOW 14B.safetensors",
|
| 115 |
+
"url": "https://huggingface.co/sbdfb/deepthro/resolve/main/Wan2.2 - I2V - Blowjob - LOW 14B.safetensors",
|
| 116 |
+
"source": "huggingface",
|
| 117 |
+
"deletedAt": null,
|
| 118 |
+
"is_gated": false,
|
| 119 |
+
"is_paid": false,
|
| 120 |
+
"model_id": null,
|
| 121 |
+
"model_version_id": null
|
| 122 |
+
},
|
| 123 |
+
{
|
| 124 |
+
"filename": "Wan2.2 - I2V - Blowjob - LOW 14B.safetensors",
|
| 125 |
+
"url": "https://huggingface.co/Frankis72/Gtmoney/resolve/main/Wan2.2 - I2V - Blowjob - LOW 14B.safetensors",
|
| 126 |
+
"source": "huggingface",
|
| 127 |
+
"deletedAt": "2026-02-22T17:53:11.397Z",
|
| 128 |
+
"is_gated": false,
|
| 129 |
+
"is_paid": false,
|
| 130 |
+
"model_id": null,
|
| 131 |
+
"model_version_id": null
|
| 132 |
+
}
|
| 133 |
+
],
|
| 134 |
+
"hashes": {
|
| 135 |
+
"SHA256": "35D74447AC989A32788E14BE86004F90254CF0DDE87151F4FEC58485EE296D2B"
|
| 136 |
+
},
|
| 137 |
+
"modelVersionId": 2193373,
|
| 138 |
+
"modelId": 1465836
|
| 139 |
+
}
|
| 140 |
+
],
|
| 141 |
+
"images": [
|
| 142 |
+
{
|
| 143 |
+
"id": 99000267,
|
| 144 |
+
"url": "https://c.genur.art/f28a2707-8fdb-4c19-a8b0-25e98c783e7a",
|
| 145 |
+
"nsfwLevel": 16,
|
| 146 |
+
"width": 480,
|
| 147 |
+
"height": 720,
|
| 148 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 149 |
+
"type": "video",
|
| 150 |
+
"minor": false,
|
| 151 |
+
"poi": false,
|
| 152 |
+
"hasMeta": true,
|
| 153 |
+
"hasPositivePrompt": true,
|
| 154 |
+
"onSite": false,
|
| 155 |
+
"remixOfId": null,
|
| 156 |
+
"video_url": "https://c.genur.art/f28a2707-8fdb-4c19-a8b0-25e98c783e7a",
|
| 157 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC9mMjhhMjcwNy04ZmRiLTRjMTktYThiMC0yNWU5OGM3ODNlN2E",
|
| 158 |
+
"link": "https://genur.art/posts/99000267"
|
| 159 |
+
},
|
| 160 |
+
{
|
| 161 |
+
"id": 99002016,
|
| 162 |
+
"url": "https://c.genur.art/7b659a44-cb71-43fe-b7c2-0b3eddb48da8",
|
| 163 |
+
"nsfwLevel": 16,
|
| 164 |
+
"width": 480,
|
| 165 |
+
"height": 720,
|
| 166 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 167 |
+
"type": "video",
|
| 168 |
+
"minor": false,
|
| 169 |
+
"poi": false,
|
| 170 |
+
"hasMeta": true,
|
| 171 |
+
"hasPositivePrompt": true,
|
| 172 |
+
"onSite": false,
|
| 173 |
+
"remixOfId": null,
|
| 174 |
+
"video_url": "https://c.genur.art/7b659a44-cb71-43fe-b7c2-0b3eddb48da8",
|
| 175 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC83YjY1OWE0NC1jYjcxLTQzZmUtYjdjMi0wYjNlZGRiNDhkYTg",
|
| 176 |
+
"link": "https://genur.art/posts/99002016"
|
| 177 |
+
},
|
| 178 |
+
{
|
| 179 |
+
"id": 99001088,
|
| 180 |
+
"url": "https://c.genur.art/1c397b6a-9a0e-4334-a108-d6a68e400756",
|
| 181 |
+
"nsfwLevel": 16,
|
| 182 |
+
"width": 480,
|
| 183 |
+
"height": 720,
|
| 184 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 185 |
+
"type": "video",
|
| 186 |
+
"minor": false,
|
| 187 |
+
"poi": false,
|
| 188 |
+
"hasMeta": true,
|
| 189 |
+
"hasPositivePrompt": true,
|
| 190 |
+
"onSite": false,
|
| 191 |
+
"remixOfId": null,
|
| 192 |
+
"video_url": "https://c.genur.art/1c397b6a-9a0e-4334-a108-d6a68e400756",
|
| 193 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC8xYzM5N2I2YS05YTBlLTQzMzQtYTEwOC1kNmE2OGU0MDA3NTY",
|
| 194 |
+
"link": "https://genur.art/posts/99001088"
|
| 195 |
+
},
|
| 196 |
+
{
|
| 197 |
+
"id": 99000247,
|
| 198 |
+
"url": "https://c.genur.art/d6d7b3a5-4b24-4681-bfdc-06640b6f1cfb",
|
| 199 |
+
"nsfwLevel": 16,
|
| 200 |
+
"width": 480,
|
| 201 |
+
"height": 720,
|
| 202 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 203 |
+
"type": "video",
|
| 204 |
+
"minor": false,
|
| 205 |
+
"poi": false,
|
| 206 |
+
"hasMeta": true,
|
| 207 |
+
"hasPositivePrompt": true,
|
| 208 |
+
"onSite": false,
|
| 209 |
+
"remixOfId": null,
|
| 210 |
+
"video_url": "https://c.genur.art/d6d7b3a5-4b24-4681-bfdc-06640b6f1cfb",
|
| 211 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC9kNmQ3YjNhNS00YjI0LTQ2ODEtYmZkYy0wNjY0MGI2ZjFjZmI",
|
| 212 |
+
"link": "https://genur.art/posts/99000247"
|
| 213 |
+
},
|
| 214 |
+
{
|
| 215 |
+
"id": 99000248,
|
| 216 |
+
"url": "https://c.genur.art/094c47d8-6492-4b9f-beee-645620004d86",
|
| 217 |
+
"nsfwLevel": 16,
|
| 218 |
+
"width": 480,
|
| 219 |
+
"height": 720,
|
| 220 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 221 |
+
"type": "video",
|
| 222 |
+
"minor": false,
|
| 223 |
+
"poi": false,
|
| 224 |
+
"hasMeta": true,
|
| 225 |
+
"hasPositivePrompt": true,
|
| 226 |
+
"onSite": false,
|
| 227 |
+
"remixOfId": null,
|
| 228 |
+
"video_url": "https://c.genur.art/094c47d8-6492-4b9f-beee-645620004d86",
|
| 229 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC8wOTRjNDdkOC02NDkyLTRiOWYtYmVlZS02NDU2MjAwMDRkODY",
|
| 230 |
+
"link": "https://genur.art/posts/99000248"
|
| 231 |
+
},
|
| 232 |
+
{
|
| 233 |
+
"id": 99000250,
|
| 234 |
+
"url": "https://c.genur.art/8115d06a-6bad-4d97-872b-7a474ecaa032",
|
| 235 |
+
"nsfwLevel": 16,
|
| 236 |
+
"width": 480,
|
| 237 |
+
"height": 720,
|
| 238 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 239 |
+
"type": "video",
|
| 240 |
+
"minor": false,
|
| 241 |
+
"poi": false,
|
| 242 |
+
"hasMeta": true,
|
| 243 |
+
"hasPositivePrompt": true,
|
| 244 |
+
"onSite": false,
|
| 245 |
+
"remixOfId": null,
|
| 246 |
+
"video_url": "https://c.genur.art/8115d06a-6bad-4d97-872b-7a474ecaa032",
|
| 247 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC84MTE1ZDA2YS02YmFkLTRkOTctODcyYi03YTQ3NGVjYWEwMzI",
|
| 248 |
+
"link": "https://genur.art/posts/99000250"
|
| 249 |
+
},
|
| 250 |
+
{
|
| 251 |
+
"id": 99001090,
|
| 252 |
+
"url": "https://c.genur.art/53be4db4-cb52-46f0-bf95-58517f85c7d1",
|
| 253 |
+
"nsfwLevel": 16,
|
| 254 |
+
"width": 480,
|
| 255 |
+
"height": 720,
|
| 256 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 257 |
+
"type": "video",
|
| 258 |
+
"minor": false,
|
| 259 |
+
"poi": false,
|
| 260 |
+
"hasMeta": true,
|
| 261 |
+
"hasPositivePrompt": true,
|
| 262 |
+
"onSite": false,
|
| 263 |
+
"remixOfId": null,
|
| 264 |
+
"video_url": "https://c.genur.art/53be4db4-cb52-46f0-bf95-58517f85c7d1",
|
| 265 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC81M2JlNGRiNC1jYjUyLTQ2ZjAtYmY5NS01ODUxN2Y4NWM3ZDE",
|
| 266 |
+
"link": "https://genur.art/posts/99001090"
|
| 267 |
+
},
|
| 268 |
+
{
|
| 269 |
+
"id": 99000254,
|
| 270 |
+
"url": "https://c.genur.art/433c48ce-5138-490b-95a7-93152c2a9d5d",
|
| 271 |
+
"nsfwLevel": 16,
|
| 272 |
+
"width": 480,
|
| 273 |
+
"height": 720,
|
| 274 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 275 |
+
"type": "video",
|
| 276 |
+
"minor": false,
|
| 277 |
+
"poi": false,
|
| 278 |
+
"hasMeta": true,
|
| 279 |
+
"hasPositivePrompt": true,
|
| 280 |
+
"onSite": false,
|
| 281 |
+
"remixOfId": null,
|
| 282 |
+
"video_url": "https://c.genur.art/433c48ce-5138-490b-95a7-93152c2a9d5d",
|
| 283 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC80MzNjNDhjZS01MTM4LTQ5MGItOTVhNy05MzE1MmMyYTlkNWQ",
|
| 284 |
+
"link": "https://genur.art/posts/99000254"
|
| 285 |
+
},
|
| 286 |
+
{
|
| 287 |
+
"id": 99000255,
|
| 288 |
+
"url": "https://c.genur.art/1f914dfd-c152-4102-b3f4-e69be85bb8df",
|
| 289 |
+
"nsfwLevel": 16,
|
| 290 |
+
"width": 480,
|
| 291 |
+
"height": 720,
|
| 292 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 293 |
+
"type": "video",
|
| 294 |
+
"minor": false,
|
| 295 |
+
"poi": false,
|
| 296 |
+
"hasMeta": true,
|
| 297 |
+
"hasPositivePrompt": true,
|
| 298 |
+
"onSite": false,
|
| 299 |
+
"remixOfId": null,
|
| 300 |
+
"video_url": "https://c.genur.art/1f914dfd-c152-4102-b3f4-e69be85bb8df",
|
| 301 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC8xZjkxNGRmZC1jMTUyLTQxMDItYjNmNC1lNjliZTg1YmI4ZGY",
|
| 302 |
+
"link": "https://genur.art/posts/99000255"
|
| 303 |
+
},
|
| 304 |
+
{
|
| 305 |
+
"id": 99000253,
|
| 306 |
+
"url": "https://c.genur.art/6b9def79-d9e5-4968-8635-1839b44688e2",
|
| 307 |
+
"nsfwLevel": 16,
|
| 308 |
+
"width": 480,
|
| 309 |
+
"height": 720,
|
| 310 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 311 |
+
"type": "video",
|
| 312 |
+
"minor": false,
|
| 313 |
+
"poi": false,
|
| 314 |
+
"hasMeta": true,
|
| 315 |
+
"hasPositivePrompt": true,
|
| 316 |
+
"onSite": false,
|
| 317 |
+
"remixOfId": null,
|
| 318 |
+
"video_url": "https://c.genur.art/6b9def79-d9e5-4968-8635-1839b44688e2",
|
| 319 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC82YjlkZWY3OS1kOWU1LTQ5NjgtODYzNS0xODM5YjQ0Njg4ZTI",
|
| 320 |
+
"link": "https://genur.art/posts/99000253"
|
| 321 |
+
},
|
| 322 |
+
{
|
| 323 |
+
"id": 99000261,
|
| 324 |
+
"url": "https://c.genur.art/fcd14086-360b-45e3-9140-1c194fd16380",
|
| 325 |
+
"nsfwLevel": 16,
|
| 326 |
+
"width": 480,
|
| 327 |
+
"height": 720,
|
| 328 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 329 |
+
"type": "video",
|
| 330 |
+
"minor": false,
|
| 331 |
+
"poi": false,
|
| 332 |
+
"hasMeta": true,
|
| 333 |
+
"hasPositivePrompt": true,
|
| 334 |
+
"onSite": false,
|
| 335 |
+
"remixOfId": null,
|
| 336 |
+
"video_url": "https://c.genur.art/fcd14086-360b-45e3-9140-1c194fd16380",
|
| 337 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC9mY2QxNDA4Ni0zNjBiLTQ1ZTMtOTE0MC0xYzE5NGZkMTYzODA",
|
| 338 |
+
"link": "https://genur.art/posts/99000261"
|
| 339 |
+
},
|
| 340 |
+
{
|
| 341 |
+
"id": 99000251,
|
| 342 |
+
"url": "https://c.genur.art/537c0bab-ffe3-436d-b3ba-e24bd17aa043",
|
| 343 |
+
"nsfwLevel": 16,
|
| 344 |
+
"width": 480,
|
| 345 |
+
"height": 720,
|
| 346 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 347 |
+
"type": "video",
|
| 348 |
+
"minor": false,
|
| 349 |
+
"poi": false,
|
| 350 |
+
"hasMeta": true,
|
| 351 |
+
"hasPositivePrompt": true,
|
| 352 |
+
"onSite": false,
|
| 353 |
+
"remixOfId": null,
|
| 354 |
+
"video_url": "https://c.genur.art/537c0bab-ffe3-436d-b3ba-e24bd17aa043",
|
| 355 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC81MzdjMGJhYi1mZmUzLTQzNmQtYjNiYS1lMjRiZDE3YWEwNDM",
|
| 356 |
+
"link": "https://genur.art/posts/99000251"
|
| 357 |
+
},
|
| 358 |
+
{
|
| 359 |
+
"id": 99000252,
|
| 360 |
+
"url": "https://c.genur.art/ec1b2282-ab1c-496a-81be-46769c2f0166",
|
| 361 |
+
"nsfwLevel": 16,
|
| 362 |
+
"width": 480,
|
| 363 |
+
"height": 720,
|
| 364 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 365 |
+
"type": "video",
|
| 366 |
+
"minor": false,
|
| 367 |
+
"poi": false,
|
| 368 |
+
"hasMeta": true,
|
| 369 |
+
"hasPositivePrompt": true,
|
| 370 |
+
"onSite": false,
|
| 371 |
+
"remixOfId": null,
|
| 372 |
+
"video_url": "https://c.genur.art/ec1b2282-ab1c-496a-81be-46769c2f0166",
|
| 373 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC9lYzFiMjI4Mi1hYjFjLTQ5NmEtODFiZS00Njc2OWMyZjAxNjY",
|
| 374 |
+
"link": "https://genur.art/posts/99000252"
|
| 375 |
+
},
|
| 376 |
+
{
|
| 377 |
+
"id": 99000266,
|
| 378 |
+
"url": "https://c.genur.art/ec7f0549-66fd-4ce4-8f01-562e14672e41",
|
| 379 |
+
"nsfwLevel": 16,
|
| 380 |
+
"width": 480,
|
| 381 |
+
"height": 720,
|
| 382 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 383 |
+
"type": "video",
|
| 384 |
+
"minor": false,
|
| 385 |
+
"poi": false,
|
| 386 |
+
"hasMeta": true,
|
| 387 |
+
"hasPositivePrompt": true,
|
| 388 |
+
"onSite": false,
|
| 389 |
+
"remixOfId": null,
|
| 390 |
+
"video_url": "https://c.genur.art/ec7f0549-66fd-4ce4-8f01-562e14672e41",
|
| 391 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC9lYzdmMDU0OS02NmZkLTRjZTQtOGYwMS01NjJlMTQ2NzJlNDE",
|
| 392 |
+
"link": "https://genur.art/posts/99000266"
|
| 393 |
+
},
|
| 394 |
+
{
|
| 395 |
+
"id": 99000256,
|
| 396 |
+
"url": "https://c.genur.art/129e47c7-91e3-413d-b96d-bfa2550138b0",
|
| 397 |
+
"nsfwLevel": 16,
|
| 398 |
+
"width": 480,
|
| 399 |
+
"height": 720,
|
| 400 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 401 |
+
"type": "video",
|
| 402 |
+
"minor": false,
|
| 403 |
+
"poi": false,
|
| 404 |
+
"hasMeta": true,
|
| 405 |
+
"hasPositivePrompt": true,
|
| 406 |
+
"onSite": false,
|
| 407 |
+
"remixOfId": null,
|
| 408 |
+
"video_url": "https://c.genur.art/129e47c7-91e3-413d-b96d-bfa2550138b0",
|
| 409 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC8xMjllNDdjNy05MWUzLTQxM2QtYjk2ZC1iZmEyNTUwMTM4YjA",
|
| 410 |
+
"link": "https://genur.art/posts/99000256"
|
| 411 |
+
},
|
| 412 |
+
{
|
| 413 |
+
"id": 99000262,
|
| 414 |
+
"url": "https://c.genur.art/b99b9ffd-a902-410b-8992-a8c71ff08dcc",
|
| 415 |
+
"nsfwLevel": 16,
|
| 416 |
+
"width": 480,
|
| 417 |
+
"height": 720,
|
| 418 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 419 |
+
"type": "video",
|
| 420 |
+
"minor": false,
|
| 421 |
+
"poi": false,
|
| 422 |
+
"hasMeta": true,
|
| 423 |
+
"hasPositivePrompt": true,
|
| 424 |
+
"onSite": false,
|
| 425 |
+
"remixOfId": null,
|
| 426 |
+
"video_url": "https://c.genur.art/b99b9ffd-a902-410b-8992-a8c71ff08dcc",
|
| 427 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC9iOTliOWZmZC1hOTAyLTQxMGItODk5Mi1hOGM3MWZmMDhkY2M",
|
| 428 |
+
"link": "https://genur.art/posts/99000262"
|
| 429 |
+
},
|
| 430 |
+
{
|
| 431 |
+
"id": 99001089,
|
| 432 |
+
"url": "https://c.genur.art/9bdbb10e-4b8d-498a-982e-814183a92dd7",
|
| 433 |
+
"nsfwLevel": 16,
|
| 434 |
+
"width": 480,
|
| 435 |
+
"height": 720,
|
| 436 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 437 |
+
"type": "video",
|
| 438 |
+
"minor": false,
|
| 439 |
+
"poi": false,
|
| 440 |
+
"hasMeta": true,
|
| 441 |
+
"hasPositivePrompt": true,
|
| 442 |
+
"onSite": false,
|
| 443 |
+
"remixOfId": null,
|
| 444 |
+
"video_url": "https://c.genur.art/9bdbb10e-4b8d-498a-982e-814183a92dd7",
|
| 445 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC85YmRiYjEwZS00YjhkLTQ5OGEtOTgyZS04MTQxODNhOTJkZDc",
|
| 446 |
+
"link": "https://genur.art/posts/99001089"
|
| 447 |
+
},
|
| 448 |
+
{
|
| 449 |
+
"id": 99001431,
|
| 450 |
+
"url": "https://c.genur.art/acad7227-c218-4b03-aa4f-c77e2ddc9bfd",
|
| 451 |
+
"nsfwLevel": 16,
|
| 452 |
+
"width": 480,
|
| 453 |
+
"height": 720,
|
| 454 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 455 |
+
"type": "video",
|
| 456 |
+
"minor": false,
|
| 457 |
+
"poi": false,
|
| 458 |
+
"hasMeta": true,
|
| 459 |
+
"hasPositivePrompt": true,
|
| 460 |
+
"onSite": false,
|
| 461 |
+
"remixOfId": null,
|
| 462 |
+
"video_url": "https://c.genur.art/acad7227-c218-4b03-aa4f-c77e2ddc9bfd",
|
| 463 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC9hY2FkNzIyNy1jMjE4LTRiMDMtYWE0Zi1jNzdlMmRkYzliZmQ",
|
| 464 |
+
"link": "https://genur.art/posts/99001431"
|
| 465 |
+
},
|
| 466 |
+
{
|
| 467 |
+
"id": 99001433,
|
| 468 |
+
"url": "https://c.genur.art/d810d110-6999-4c02-91ae-000374c6508a",
|
| 469 |
+
"nsfwLevel": 16,
|
| 470 |
+
"width": 480,
|
| 471 |
+
"height": 720,
|
| 472 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 473 |
+
"type": "video",
|
| 474 |
+
"minor": false,
|
| 475 |
+
"poi": false,
|
| 476 |
+
"hasMeta": true,
|
| 477 |
+
"hasPositivePrompt": true,
|
| 478 |
+
"onSite": false,
|
| 479 |
+
"remixOfId": null,
|
| 480 |
+
"video_url": "https://c.genur.art/d810d110-6999-4c02-91ae-000374c6508a",
|
| 481 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC9kODEwZDExMC02OTk5LTRjMDItOTFhZS0wMDAzNzRjNjUwOGE",
|
| 482 |
+
"link": "https://genur.art/posts/99001433"
|
| 483 |
+
},
|
| 484 |
+
{
|
| 485 |
+
"id": 99001543,
|
| 486 |
+
"url": "https://c.genur.art/7377f5c2-f721-45e9-8b95-bda13880a46d",
|
| 487 |
+
"nsfwLevel": 16,
|
| 488 |
+
"width": 480,
|
| 489 |
+
"height": 720,
|
| 490 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 491 |
+
"type": "video",
|
| 492 |
+
"minor": false,
|
| 493 |
+
"poi": false,
|
| 494 |
+
"hasMeta": true,
|
| 495 |
+
"hasPositivePrompt": true,
|
| 496 |
+
"onSite": false,
|
| 497 |
+
"remixOfId": null,
|
| 498 |
+
"video_url": "https://c.genur.art/7377f5c2-f721-45e9-8b95-bda13880a46d",
|
| 499 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC83Mzc3ZjVjMi1mNzIxLTQ1ZTktOGI5NS1iZGExMzg4MGE0NmQ",
|
| 500 |
+
"link": "https://genur.art/posts/99001543"
|
| 501 |
+
}
|
| 502 |
+
],
|
| 503 |
+
"allow_download": true,
|
| 504 |
+
"download_url": "/api/download/models/2193373",
|
| 505 |
+
"platform_url": "https://civitai.com/models/1465836?modelVersionId=2193373",
|
| 506 |
+
"civitai_model_id": 1465836,
|
| 507 |
+
"civitai_model_version_id": 2193373,
|
| 508 |
+
"href": "/models/1465836?modelVersionId=2193373",
|
| 509 |
+
"mirrors": [
|
| 510 |
+
{
|
| 511 |
+
"platform": "tensorart",
|
| 512 |
+
"href": "/tensorart/models/855583632318807118/versions/855583632318807118",
|
| 513 |
+
"platform_url": "https://tensor.art/models/855583632318807118",
|
| 514 |
+
"name": "POVBJ",
|
| 515 |
+
"version_name": "T2V & I2V 14B",
|
| 516 |
+
"id": "855583632318807118",
|
| 517 |
+
"version_id": "855583632318807118"
|
| 518 |
+
},
|
| 519 |
+
{
|
| 520 |
+
"platform": "tensorart",
|
| 521 |
+
"href": "/tensorart/models/907306672555356361/versions/907306672555356361",
|
| 522 |
+
"platform_url": "https://tensor.art/models/907306672555356361",
|
| 523 |
+
"name": "Wan Bl0wjob Ultimate, Super Awesome… - Playtime_AI",
|
| 524 |
+
"version_name": "T2V v2 HIGH",
|
| 525 |
+
"id": "907306672555356361",
|
| 526 |
+
"version_id": "907306672555356361"
|
| 527 |
+
}
|
| 528 |
+
],
|
| 529 |
+
"trainedWords": [],
|
| 530 |
+
"nsfwLevel": 16,
|
| 531 |
+
"stats": {
|
| 532 |
+
"downloadCount": 6620,
|
| 533 |
+
"ratingCount": 0,
|
| 534 |
+
"rating": 0
|
| 535 |
+
},
|
| 536 |
+
"model": {
|
| 537 |
+
"name": "Ultimate, Super Awesome, Better Than... Blowjob Wan2.2 I2V, Wan2.1 I2V & T2V LoRa",
|
| 538 |
+
"type": "LORA",
|
| 539 |
+
"nsfw": true,
|
| 540 |
+
"description": "<h3 id=\"https:ko-fi.complaytime_ai\"><a target=\"_blank\" rel=\"ugc\" href=\"https://ko-fi.com/playtime_ai\"><strong>https://ko-fi.com/playtime_ai</strong></a></h3><p></p><h3 id=\"trigger-examples:-she-is-performing-oral-sex-on-a-man.-she-is-giving-him-a-blowjob.-she-sucks-his-cock.\"><strong>Trigger Examples: </strong><em>she is performing oral sex on a man. she is giving him a blowjob. she sucks his cock.</em></h3><p></p><p><strong><em>Works with: </em></strong><em>Viewed from the side. Viewed from a high angle. Viewed from a low angle. Viewed from above. Viewed from below. A POV shot.</em></p><p></p><h3></h3><p></p>",
|
| 541 |
+
"tags": [
|
| 542 |
+
"concept"
|
| 543 |
+
],
|
| 544 |
+
"allowNoCredit": true,
|
| 545 |
+
"allowCommercialUse": [
|
| 546 |
+
"Sell"
|
| 547 |
+
],
|
| 548 |
+
"allowDerivatives": true,
|
| 549 |
+
"allowDifferentLicense": true
|
| 550 |
+
},
|
| 551 |
+
"creator": {
|
| 552 |
+
"username": "playtime_ai",
|
| 553 |
+
"image": "",
|
| 554 |
+
"name": "playtime_ai",
|
| 555 |
+
"url": "/users/playtime_ai"
|
| 556 |
+
},
|
| 557 |
+
"source": "civarchive",
|
| 558 |
+
"is_deleted": true
|
| 559 |
+
},
|
| 560 |
+
"tags": [
|
| 561 |
+
"concept"
|
| 562 |
+
],
|
| 563 |
+
"modelDescription": "<h3 id=\"https:ko-fi.complaytime_ai\"><a target=\"_blank\" rel=\"ugc\" href=\"https://ko-fi.com/playtime_ai\"><strong>https://ko-fi.com/playtime_ai</strong></a></h3><p></p><h3 id=\"trigger-examples:-she-is-performing-oral-sex-on-a-man.-she-is-giving-him-a-blowjob.-she-sucks-his-cock.\"><strong>Trigger Examples: </strong><em>she is performing oral sex on a man. she is giving him a blowjob. she sucks his cock.</em></h3><p></p><p><strong><em>Works with: </em></strong><em>Viewed from the side. Viewed from a high angle. Viewed from a low angle. Viewed from above. Viewed from below. A POV shot.</em></p><p></p><h3></h3><p></p>",
|
| 564 |
+
"civitai_deleted": false,
|
| 565 |
+
"favorite": false,
|
| 566 |
+
"exclude": false,
|
| 567 |
+
"db_checked": false,
|
| 568 |
+
"skip_metadata_refresh": false,
|
| 569 |
+
"metadata_source": "civarchive",
|
| 570 |
+
"last_checked_at": 1772082550.248795,
|
| 571 |
+
"usage_tips": "{}"
|
| 572 |
+
}
|
loras/Actions/Oral/Wan2.2-I2V-Blowjob-LOW-14B.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f63fe310940d6f973644762d4bf6dfe12664b81170ee5093dc2ca80f038c8634
|
| 3 |
+
size 500552
|
loras/Actions/Oral/Wan2.2-I2V-Blowjob-LOW-14B.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:35d74447ac989a32788e14be86004f90254cf0dde87151f4fec58485ee296d2b
|
| 3 |
+
size 613516752
|
loras/Actions/Oral/Wan2.2-T2V-POVTittyFuck-HIGH14B.metadata.json
ADDED
|
@@ -0,0 +1,190 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"file_name": "Wan2.2-T2V-POVTittyFuck-HIGH14B",
|
| 3 |
+
"model_name": "POV Titty Fuck -T2V & I2V",
|
| 4 |
+
"file_path": "G:/AI/ComfyUI/models/loras/Actions/Oral/Wan2.2-T2V-POVTittyFuck-HIGH14B.safetensors",
|
| 5 |
+
"size": 306807976,
|
| 6 |
+
"modified": 1772081898.926335,
|
| 7 |
+
"sha256": "47da0e25f5f72191cc2755c8a5e1abbe440252cddfc4e15b2fd2d0494098fd67",
|
| 8 |
+
"base_model": "Wan Video 2.2 T2V-A14B",
|
| 9 |
+
"preview_url": "G:/AI/ComfyUI/models/loras/Actions/Oral/Wan2.2-T2V-POVTittyFuck-HIGH14B.mp4",
|
| 10 |
+
"preview_nsfw_level": 16,
|
| 11 |
+
"notes": "",
|
| 12 |
+
"from_civitai": true,
|
| 13 |
+
"civitai": {
|
| 14 |
+
"id": 2164377,
|
| 15 |
+
"modelId": 1492937,
|
| 16 |
+
"name": "Wan2.2 T2V - HIGH - A14B",
|
| 17 |
+
"baseModel": "Wan Video 2.2 T2V-A14B",
|
| 18 |
+
"baseModelType": "Standard",
|
| 19 |
+
"description": null,
|
| 20 |
+
"is_nsfw": true,
|
| 21 |
+
"createdAt": "2025-08-30T13:22:48.913Z",
|
| 22 |
+
"updatedAt": "2025-11-11T21:55:15.494Z",
|
| 23 |
+
"deletedAt": "2025-11-11T21:55:15.494Z",
|
| 24 |
+
"files": [
|
| 25 |
+
{
|
| 26 |
+
"id": 2057580,
|
| 27 |
+
"sizeKB": 299617.1640625,
|
| 28 |
+
"name": "Wan2.2 - T2V - POV Titty Fuck - HIGH 14B.safetensors",
|
| 29 |
+
"type": "Model",
|
| 30 |
+
"downloadUrl": "https://civitai.com/api/download/models/2164377",
|
| 31 |
+
"primary": true,
|
| 32 |
+
"mirrors": [
|
| 33 |
+
{
|
| 34 |
+
"filename": "Wan2.2 - T2V - POV Titty Fuck - HIGH 14B.safetensors",
|
| 35 |
+
"url": "https://civitai.com/api/download/models/2164377",
|
| 36 |
+
"source": "civitai",
|
| 37 |
+
"model_id": 1492937,
|
| 38 |
+
"model_version_id": 2164377,
|
| 39 |
+
"deletedAt": "2025-11-11T21:55:15.670Z",
|
| 40 |
+
"is_gated": false,
|
| 41 |
+
"is_paid": false
|
| 42 |
+
},
|
| 43 |
+
{
|
| 44 |
+
"filename": "Wan2.2 - T2V - POV Titty Fuck - HIGH 14B.safetensors",
|
| 45 |
+
"url": "https://huggingface.co/JustAnotherCibrarian/base_wan22/resolve/main/1492937/2164377/Wan2.2 - T2V - POV Titty Fuck - HIGH 14B.safetensors",
|
| 46 |
+
"source": "huggingface",
|
| 47 |
+
"deletedAt": null,
|
| 48 |
+
"is_gated": false,
|
| 49 |
+
"is_paid": false,
|
| 50 |
+
"model_id": null,
|
| 51 |
+
"model_version_id": null
|
| 52 |
+
},
|
| 53 |
+
{
|
| 54 |
+
"filename": "Wan2.2 - T2V - POV Titty Fuck - HIGH 14B.safetensors",
|
| 55 |
+
"url": "https://huggingface.co/Playtime-AI/Wan2.2-Loras/resolve/main/Wan2.2 - T2V - POV Titty Fuck - HIGH 14B.safetensors",
|
| 56 |
+
"source": "huggingface",
|
| 57 |
+
"deletedAt": null,
|
| 58 |
+
"is_gated": false,
|
| 59 |
+
"is_paid": false,
|
| 60 |
+
"model_id": null,
|
| 61 |
+
"model_version_id": null
|
| 62 |
+
},
|
| 63 |
+
{
|
| 64 |
+
"filename": "Wan2.2 - T2V - POV Titty Fuck - HIGH 14B.safetensors",
|
| 65 |
+
"url": "https://huggingface.co/boobkake22/LoRA-Archive/resolve/main/Wan2.2 - T2V - POV Titty Fuck - HIGH 14B.safetensors",
|
| 66 |
+
"source": "huggingface",
|
| 67 |
+
"deletedAt": null,
|
| 68 |
+
"is_gated": false,
|
| 69 |
+
"is_paid": false,
|
| 70 |
+
"model_id": null,
|
| 71 |
+
"model_version_id": null
|
| 72 |
+
},
|
| 73 |
+
{
|
| 74 |
+
"filename": "Wan2.2 - T2V - POV Titty Fuck - HIGH 14B.safetensors",
|
| 75 |
+
"url": "https://huggingface.co/tianbugao/wan_i2v/resolve/main/loras/Wan2.2 - T2V - POV Titty Fuck - HIGH 14B.safetensors",
|
| 76 |
+
"source": "huggingface",
|
| 77 |
+
"deletedAt": null,
|
| 78 |
+
"is_gated": false,
|
| 79 |
+
"is_paid": false,
|
| 80 |
+
"model_id": null,
|
| 81 |
+
"model_version_id": null
|
| 82 |
+
},
|
| 83 |
+
{
|
| 84 |
+
"filename": "Wan2.2 - T2V - POV Titty Fuck - HIGH 14B.safetensors",
|
| 85 |
+
"url": "https://huggingface.co/Sentinel7/wan/resolve/main/1492937/2164377/Wan2.2 - T2V - POV Titty Fuck - HIGH 14B.safetensors",
|
| 86 |
+
"source": "huggingface",
|
| 87 |
+
"deletedAt": null,
|
| 88 |
+
"is_gated": false,
|
| 89 |
+
"is_paid": false,
|
| 90 |
+
"model_id": null,
|
| 91 |
+
"model_version_id": null
|
| 92 |
+
}
|
| 93 |
+
],
|
| 94 |
+
"hashes": {
|
| 95 |
+
"SHA256": "47DA0E25F5F72191CC2755C8A5E1ABBE440252CDDFC4E15B2FD2D0494098FD67"
|
| 96 |
+
},
|
| 97 |
+
"modelVersionId": 2164377,
|
| 98 |
+
"modelId": 1492937
|
| 99 |
+
}
|
| 100 |
+
],
|
| 101 |
+
"images": [
|
| 102 |
+
{
|
| 103 |
+
"id": 97374514,
|
| 104 |
+
"url": "https://c.genur.art/7084f4a1-48ab-4ff9-a25c-9724560eb9de",
|
| 105 |
+
"nsfwLevel": 16,
|
| 106 |
+
"width": 480,
|
| 107 |
+
"height": 720,
|
| 108 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 109 |
+
"type": "video",
|
| 110 |
+
"minor": false,
|
| 111 |
+
"poi": false,
|
| 112 |
+
"hasMeta": true,
|
| 113 |
+
"hasPositivePrompt": true,
|
| 114 |
+
"onSite": false,
|
| 115 |
+
"remixOfId": null,
|
| 116 |
+
"video_url": "https://c.genur.art/7084f4a1-48ab-4ff9-a25c-9724560eb9de",
|
| 117 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC83MDg0ZjRhMS00OGFiLTRmZjktYTI1Yy05NzI0NTYwZWI5ZGU",
|
| 118 |
+
"link": "https://genur.art/posts/97374514"
|
| 119 |
+
}
|
| 120 |
+
],
|
| 121 |
+
"allow_download": true,
|
| 122 |
+
"download_url": "/api/download/models/2164377",
|
| 123 |
+
"platform_url": "https://civitai.com/models/1492937?modelVersionId=2164377",
|
| 124 |
+
"civitai_model_id": 1492937,
|
| 125 |
+
"civitai_model_version_id": 2164377,
|
| 126 |
+
"href": "/models/1492937?modelVersionId=2164377",
|
| 127 |
+
"mirrors": [
|
| 128 |
+
{
|
| 129 |
+
"platform": "seaart",
|
| 130 |
+
"href": "/seaart/models/d1ki7ele878c738qeab0/versions/d421f5895ddcf69e947dfac203211a20",
|
| 131 |
+
"platform_url": "https://www.seaart.ai/models/detail/d1ki7ele878c738qeab0?v=d421f5895ddcf69e947dfac203211a20",
|
| 132 |
+
"name": "POV Titty ???? -TI2V & I2V",
|
| 133 |
+
"version_name": "12V-Wan",
|
| 134 |
+
"id": "d1ki7ele878c738qeab0",
|
| 135 |
+
"version_id": "d421f5895ddcf69e947dfac203211a20"
|
| 136 |
+
},
|
| 137 |
+
{
|
| 138 |
+
"platform": "tensorart",
|
| 139 |
+
"href": "/tensorart/models/903393528925678270/versions/903393528925678270",
|
| 140 |
+
"platform_url": "https://tensor.art/models/903393528925678270",
|
| 141 |
+
"name": "P0V T1tty Fµck - Playtime_AI",
|
| 142 |
+
"version_name": "T2V HIGH",
|
| 143 |
+
"id": "903393528925678270",
|
| 144 |
+
"version_id": "903393528925678270"
|
| 145 |
+
}
|
| 146 |
+
],
|
| 147 |
+
"trainedWords": [],
|
| 148 |
+
"nsfwLevel": 16,
|
| 149 |
+
"stats": {
|
| 150 |
+
"downloadCount": 3289,
|
| 151 |
+
"ratingCount": 0,
|
| 152 |
+
"rating": 0
|
| 153 |
+
},
|
| 154 |
+
"model": {
|
| 155 |
+
"name": "POV Titty Fuck -T2V & I2V",
|
| 156 |
+
"type": "LORA",
|
| 157 |
+
"nsfw": true,
|
| 158 |
+
"description": "<h1 id=\"https:ko-fi.complaytime_ai\"><a target=\"_blank\" rel=\"ugc\" href=\"https://ko-fi.com/playtime_ai\"><strong>https://ko-fi.com/playtime_ai</strong></a></h1><p></p><h1 id=\"trigger:-tit_fuck\"><strong>Trigger: tit_fuck</strong></h1><p></p><h2 id=\"sample-prompt:-a-beautiful-young-woman-kneels-between-the-legs-of-a-naked-young-man-with-a-massive-erect-penis.-she-lifts-her-breasts-up-and-down-around-his-erect-penis.-she-tit_fucks-him.-(add-details-as-you-see-fit.)\">Sample Prompt: A beautiful young woman kneels between the legs of a naked young man with a massive erect penis. she lifts her breasts up and down around his erect penis. she tit_fucks him. (Add details as you see fit.)</h2><p></p><p><strong><em>This model does T2V and I2V!</em></strong></p>",
|
| 159 |
+
"tags": [
|
| 160 |
+
"concept"
|
| 161 |
+
],
|
| 162 |
+
"allowNoCredit": true,
|
| 163 |
+
"allowCommercialUse": [
|
| 164 |
+
"Sell"
|
| 165 |
+
],
|
| 166 |
+
"allowDerivatives": true,
|
| 167 |
+
"allowDifferentLicense": true
|
| 168 |
+
},
|
| 169 |
+
"creator": {
|
| 170 |
+
"username": "playtime_ai",
|
| 171 |
+
"image": "",
|
| 172 |
+
"name": "playtime_ai",
|
| 173 |
+
"url": "/users/playtime_ai"
|
| 174 |
+
},
|
| 175 |
+
"source": "civarchive",
|
| 176 |
+
"is_deleted": true
|
| 177 |
+
},
|
| 178 |
+
"tags": [
|
| 179 |
+
"concept"
|
| 180 |
+
],
|
| 181 |
+
"modelDescription": "<h1 id=\"https:ko-fi.complaytime_ai\"><a target=\"_blank\" rel=\"ugc\" href=\"https://ko-fi.com/playtime_ai\"><strong>https://ko-fi.com/playtime_ai</strong></a></h1><p></p><h1 id=\"trigger:-tit_fuck\"><strong>Trigger: tit_fuck</strong></h1><p></p><h2 id=\"sample-prompt:-a-beautiful-young-woman-kneels-between-the-legs-of-a-naked-young-man-with-a-massive-erect-penis.-she-lifts-her-breasts-up-and-down-around-his-erect-penis.-she-tit_fucks-him.-(add-details-as-you-see-fit.)\">Sample Prompt: A beautiful young woman kneels between the legs of a naked young man with a massive erect penis. she lifts her breasts up and down around his erect penis. she tit_fucks him. (Add details as you see fit.)</h2><p></p><p><strong><em>This model does T2V and I2V!</em></strong></p>",
|
| 182 |
+
"civitai_deleted": false,
|
| 183 |
+
"favorite": false,
|
| 184 |
+
"exclude": false,
|
| 185 |
+
"db_checked": false,
|
| 186 |
+
"skip_metadata_refresh": false,
|
| 187 |
+
"metadata_source": "civarchive",
|
| 188 |
+
"last_checked_at": 1772082563.553057,
|
| 189 |
+
"usage_tips": "{}"
|
| 190 |
+
}
|
loras/Actions/Oral/Wan2.2-T2V-POVTittyFuck-HIGH14B.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6270effceeb72731c3e85ecf869ac765aef7ace3dd875dfacb2ba8051cd5e07a
|
| 3 |
+
size 698442
|
loras/Actions/Oral/Wan2.2-T2V-POVTittyFuck-HIGH14B.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:47da0e25f5f72191cc2755c8a5e1abbe440252cddfc4e15b2fd2d0494098fd67
|
| 3 |
+
size 306807976
|
loras/Actions/Oral/Wan2.2-T2V-POVTittyFuck-LOW14B.metadata.json
ADDED
|
@@ -0,0 +1,472 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"file_name": "Wan2.2-T2V-POVTittyFuck-LOW14B",
|
| 3 |
+
"model_name": "POV Titty Fuck -T2V & I2V",
|
| 4 |
+
"file_path": "G:/AI/ComfyUI/models/loras/Actions/Oral/Wan2.2-T2V-POVTittyFuck-LOW14B.safetensors",
|
| 5 |
+
"size": 306807976,
|
| 6 |
+
"modified": 1772081899.129204,
|
| 7 |
+
"sha256": "83c016906d842723d793f1256aa11cbf59fdb01dddded3c8f61a88b6e0a3a03a",
|
| 8 |
+
"base_model": "Wan Video 2.2 T2V-A14B",
|
| 9 |
+
"preview_url": "G:/AI/ComfyUI/models/loras/Actions/Oral/Wan2.2-T2V-POVTittyFuck-LOW14B.mp4",
|
| 10 |
+
"preview_nsfw_level": 16,
|
| 11 |
+
"notes": "",
|
| 12 |
+
"from_civitai": true,
|
| 13 |
+
"civitai": {
|
| 14 |
+
"id": 2164378,
|
| 15 |
+
"modelId": 1492937,
|
| 16 |
+
"name": "Wan2.2 T2V - LOW - A14B",
|
| 17 |
+
"baseModel": "Wan Video 2.2 T2V-A14B",
|
| 18 |
+
"baseModelType": "Standard",
|
| 19 |
+
"description": null,
|
| 20 |
+
"is_nsfw": true,
|
| 21 |
+
"createdAt": "2025-08-30T12:22:21.932Z",
|
| 22 |
+
"updatedAt": "2025-11-11T21:55:15.283Z",
|
| 23 |
+
"deletedAt": "2025-11-11T21:55:15.283Z",
|
| 24 |
+
"files": [
|
| 25 |
+
{
|
| 26 |
+
"id": 2057582,
|
| 27 |
+
"sizeKB": 299617.1640625,
|
| 28 |
+
"name": "Wan2.2 - T2V - POV Titty Fuck - LOW 14B.safetensors",
|
| 29 |
+
"type": "Model",
|
| 30 |
+
"downloadUrl": "https://civitai.com/api/download/models/2164378",
|
| 31 |
+
"primary": true,
|
| 32 |
+
"mirrors": [
|
| 33 |
+
{
|
| 34 |
+
"filename": "Wan2.2 - T2V - POV Titty Fuck - LOW 14B.safetensors",
|
| 35 |
+
"url": "https://civitai.com/api/download/models/2164378",
|
| 36 |
+
"source": "civitai",
|
| 37 |
+
"model_id": 1492937,
|
| 38 |
+
"model_version_id": 2164378,
|
| 39 |
+
"deletedAt": "2025-11-11T21:55:15.670Z",
|
| 40 |
+
"is_gated": false,
|
| 41 |
+
"is_paid": false
|
| 42 |
+
},
|
| 43 |
+
{
|
| 44 |
+
"filename": "Wan2.2 - T2V - POV Titty Fuck - LOW 14B.safetensors",
|
| 45 |
+
"url": "https://huggingface.co/JustAnotherCibrarian/base_wan22/resolve/main/1492937/2164378/Wan2.2 - T2V - POV Titty Fuck - LOW 14B.safetensors",
|
| 46 |
+
"source": "huggingface",
|
| 47 |
+
"deletedAt": null,
|
| 48 |
+
"is_gated": false,
|
| 49 |
+
"is_paid": false,
|
| 50 |
+
"model_id": null,
|
| 51 |
+
"model_version_id": null
|
| 52 |
+
},
|
| 53 |
+
{
|
| 54 |
+
"filename": "Wan2.2 - T2V - POV Titty Fuck - LOW 14B.safetensors",
|
| 55 |
+
"url": "https://huggingface.co/Playtime-AI/Wan2.2-Loras/resolve/main/Wan2.2 - T2V - POV Titty Fuck - LOW 14B.safetensors",
|
| 56 |
+
"source": "huggingface",
|
| 57 |
+
"deletedAt": null,
|
| 58 |
+
"is_gated": false,
|
| 59 |
+
"is_paid": false,
|
| 60 |
+
"model_id": null,
|
| 61 |
+
"model_version_id": null
|
| 62 |
+
},
|
| 63 |
+
{
|
| 64 |
+
"filename": "Wan2.2 - T2V - POV Titty Fuck - LOW 14B.safetensors",
|
| 65 |
+
"url": "https://huggingface.co/TKrieg89/titxxx/resolve/main/Wan2.2 - T2V - POV Titty Fuck - LOW 14B.safetensors",
|
| 66 |
+
"source": "huggingface",
|
| 67 |
+
"deletedAt": "2026-01-09T02:18:35.845Z",
|
| 68 |
+
"is_gated": false,
|
| 69 |
+
"is_paid": false,
|
| 70 |
+
"model_id": null,
|
| 71 |
+
"model_version_id": null
|
| 72 |
+
},
|
| 73 |
+
{
|
| 74 |
+
"filename": "02_Titty_Fuck_LOW14B.safetensors",
|
| 75 |
+
"url": "https://huggingface.co/matedivya/ponylora-sep23/resolve/main/02_Titty_Fuck_LOW14B.safetensors",
|
| 76 |
+
"source": "huggingface",
|
| 77 |
+
"deletedAt": null,
|
| 78 |
+
"is_gated": false,
|
| 79 |
+
"is_paid": false,
|
| 80 |
+
"model_id": null,
|
| 81 |
+
"model_version_id": null
|
| 82 |
+
},
|
| 83 |
+
{
|
| 84 |
+
"filename": "109_POV_Titty_Fuck_ LOW14B.safetensors",
|
| 85 |
+
"url": "https://huggingface.co/matedivya/ponylora-sep23/resolve/main/109_POV_Titty_Fuck_ LOW14B.safetensors",
|
| 86 |
+
"source": "huggingface",
|
| 87 |
+
"deletedAt": null,
|
| 88 |
+
"is_gated": false,
|
| 89 |
+
"is_paid": false,
|
| 90 |
+
"model_id": null,
|
| 91 |
+
"model_version_id": null
|
| 92 |
+
},
|
| 93 |
+
{
|
| 94 |
+
"filename": "Wan2.2 - T2V - POV Titty Fuck - LOW 14B.safetensors",
|
| 95 |
+
"url": "https://huggingface.co/boobkake22/LoRA-Archive/resolve/main/Wan2.2 - T2V - POV Titty Fuck - LOW 14B.safetensors",
|
| 96 |
+
"source": "huggingface",
|
| 97 |
+
"deletedAt": null,
|
| 98 |
+
"is_gated": false,
|
| 99 |
+
"is_paid": false,
|
| 100 |
+
"model_id": null,
|
| 101 |
+
"model_version_id": null
|
| 102 |
+
},
|
| 103 |
+
{
|
| 104 |
+
"filename": "Wan2.2 - T2V - POV Titty Fuck - LOW 14B.safetensors",
|
| 105 |
+
"url": "https://huggingface.co/tianbugao/wan_i2v/resolve/main/loras/Wan2.2 - T2V - POV Titty Fuck - LOW 14B.safetensors",
|
| 106 |
+
"source": "huggingface",
|
| 107 |
+
"deletedAt": null,
|
| 108 |
+
"is_gated": false,
|
| 109 |
+
"is_paid": false,
|
| 110 |
+
"model_id": null,
|
| 111 |
+
"model_version_id": null
|
| 112 |
+
},
|
| 113 |
+
{
|
| 114 |
+
"filename": "Wan2.2 - T2V - POV Titty Fuck - LOW 14B.safetensors",
|
| 115 |
+
"url": "https://huggingface.co/Sentinel7/wan/resolve/main/1492937/2164378/Wan2.2 - T2V - POV Titty Fuck - LOW 14B.safetensors",
|
| 116 |
+
"source": "huggingface",
|
| 117 |
+
"deletedAt": null,
|
| 118 |
+
"is_gated": false,
|
| 119 |
+
"is_paid": false,
|
| 120 |
+
"model_id": null,
|
| 121 |
+
"model_version_id": null
|
| 122 |
+
}
|
| 123 |
+
],
|
| 124 |
+
"hashes": {
|
| 125 |
+
"SHA256": "83C016906D842723D793F1256AA11CBF59FDB01DDDDED3C8F61A88B6E0A3A03A"
|
| 126 |
+
},
|
| 127 |
+
"modelVersionId": 2164378,
|
| 128 |
+
"modelId": 1492937
|
| 129 |
+
}
|
| 130 |
+
],
|
| 131 |
+
"images": [
|
| 132 |
+
{
|
| 133 |
+
"id": 97374342,
|
| 134 |
+
"url": "https://c.genur.art/0fe9764a-f804-4f72-89f3-469f27b3dd8c",
|
| 135 |
+
"nsfwLevel": 16,
|
| 136 |
+
"width": 480,
|
| 137 |
+
"height": 720,
|
| 138 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 139 |
+
"type": "video",
|
| 140 |
+
"minor": false,
|
| 141 |
+
"poi": false,
|
| 142 |
+
"hasMeta": true,
|
| 143 |
+
"hasPositivePrompt": true,
|
| 144 |
+
"onSite": false,
|
| 145 |
+
"remixOfId": null,
|
| 146 |
+
"video_url": "https://c.genur.art/0fe9764a-f804-4f72-89f3-469f27b3dd8c",
|
| 147 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC8wZmU5NzY0YS1mODA0LTRmNzItODlmMy00NjlmMjdiM2RkOGM",
|
| 148 |
+
"link": "https://genur.art/posts/97374342"
|
| 149 |
+
},
|
| 150 |
+
{
|
| 151 |
+
"id": 97374350,
|
| 152 |
+
"url": "https://c.genur.art/43e2e787-23c7-43b8-9086-91582285908a",
|
| 153 |
+
"nsfwLevel": 16,
|
| 154 |
+
"width": 480,
|
| 155 |
+
"height": 720,
|
| 156 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 157 |
+
"type": "video",
|
| 158 |
+
"minor": false,
|
| 159 |
+
"poi": false,
|
| 160 |
+
"hasMeta": true,
|
| 161 |
+
"hasPositivePrompt": true,
|
| 162 |
+
"onSite": false,
|
| 163 |
+
"remixOfId": null,
|
| 164 |
+
"video_url": "https://c.genur.art/43e2e787-23c7-43b8-9086-91582285908a",
|
| 165 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC80M2UyZTc4Ny0yM2M3LTQzYjgtOTA4Ni05MTU4MjI4NTkwOGE",
|
| 166 |
+
"link": "https://genur.art/posts/97374350"
|
| 167 |
+
},
|
| 168 |
+
{
|
| 169 |
+
"id": 97374346,
|
| 170 |
+
"url": "https://c.genur.art/a8673ce1-76df-40c6-b10d-5c8a5961c76b",
|
| 171 |
+
"nsfwLevel": 16,
|
| 172 |
+
"width": 480,
|
| 173 |
+
"height": 720,
|
| 174 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 175 |
+
"type": "video",
|
| 176 |
+
"minor": false,
|
| 177 |
+
"poi": false,
|
| 178 |
+
"hasMeta": true,
|
| 179 |
+
"hasPositivePrompt": true,
|
| 180 |
+
"onSite": false,
|
| 181 |
+
"remixOfId": null,
|
| 182 |
+
"video_url": "https://c.genur.art/a8673ce1-76df-40c6-b10d-5c8a5961c76b",
|
| 183 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC9hODY3M2NlMS03NmRmLTQwYzYtYjEwZC01YzhhNTk2MWM3NmI",
|
| 184 |
+
"link": "https://genur.art/posts/97374346"
|
| 185 |
+
},
|
| 186 |
+
{
|
| 187 |
+
"id": 97374352,
|
| 188 |
+
"url": "https://c.genur.art/1fd57146-d1d5-4ccc-85ee-d17e3b3b0c15",
|
| 189 |
+
"nsfwLevel": 16,
|
| 190 |
+
"width": 480,
|
| 191 |
+
"height": 720,
|
| 192 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 193 |
+
"type": "video",
|
| 194 |
+
"minor": false,
|
| 195 |
+
"poi": false,
|
| 196 |
+
"hasMeta": true,
|
| 197 |
+
"hasPositivePrompt": true,
|
| 198 |
+
"onSite": false,
|
| 199 |
+
"remixOfId": null,
|
| 200 |
+
"video_url": "https://c.genur.art/1fd57146-d1d5-4ccc-85ee-d17e3b3b0c15",
|
| 201 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC8xZmQ1NzE0Ni1kMWQ1LTRjY2MtODVlZS1kMTdlM2IzYjBjMTU",
|
| 202 |
+
"link": "https://genur.art/posts/97374352"
|
| 203 |
+
},
|
| 204 |
+
{
|
| 205 |
+
"id": 97374351,
|
| 206 |
+
"url": "https://c.genur.art/2ff4a4d3-64a9-41ee-8fc1-2d36140e82e3",
|
| 207 |
+
"nsfwLevel": 16,
|
| 208 |
+
"width": 480,
|
| 209 |
+
"height": 720,
|
| 210 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 211 |
+
"type": "video",
|
| 212 |
+
"minor": false,
|
| 213 |
+
"poi": false,
|
| 214 |
+
"hasMeta": true,
|
| 215 |
+
"hasPositivePrompt": true,
|
| 216 |
+
"onSite": false,
|
| 217 |
+
"remixOfId": null,
|
| 218 |
+
"video_url": "https://c.genur.art/2ff4a4d3-64a9-41ee-8fc1-2d36140e82e3",
|
| 219 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC8yZmY0YTRkMy02NGE5LTQxZWUtOGZjMS0yZDM2MTQwZTgyZTM",
|
| 220 |
+
"link": "https://genur.art/posts/97374351"
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"id": 97374353,
|
| 224 |
+
"url": "https://c.genur.art/afa5155a-73b6-4587-802b-57f002ce5ad8",
|
| 225 |
+
"nsfwLevel": 16,
|
| 226 |
+
"width": 480,
|
| 227 |
+
"height": 720,
|
| 228 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 229 |
+
"type": "video",
|
| 230 |
+
"minor": false,
|
| 231 |
+
"poi": false,
|
| 232 |
+
"hasMeta": true,
|
| 233 |
+
"hasPositivePrompt": true,
|
| 234 |
+
"onSite": false,
|
| 235 |
+
"remixOfId": null,
|
| 236 |
+
"video_url": "https://c.genur.art/afa5155a-73b6-4587-802b-57f002ce5ad8",
|
| 237 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC9hZmE1MTU1YS03M2I2LTQ1ODctODAyYi01N2YwMDJjZTVhZDg",
|
| 238 |
+
"link": "https://genur.art/posts/97374353"
|
| 239 |
+
},
|
| 240 |
+
{
|
| 241 |
+
"id": 97374343,
|
| 242 |
+
"url": "https://c.genur.art/33745f93-a06a-428b-8001-5f766c57687b",
|
| 243 |
+
"nsfwLevel": 16,
|
| 244 |
+
"width": 480,
|
| 245 |
+
"height": 720,
|
| 246 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 247 |
+
"type": "video",
|
| 248 |
+
"minor": false,
|
| 249 |
+
"poi": false,
|
| 250 |
+
"hasMeta": true,
|
| 251 |
+
"hasPositivePrompt": true,
|
| 252 |
+
"onSite": false,
|
| 253 |
+
"remixOfId": null,
|
| 254 |
+
"video_url": "https://c.genur.art/33745f93-a06a-428b-8001-5f766c57687b",
|
| 255 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC8zMzc0NWY5My1hMDZhLTQyOGItODAwMS01Zjc2NmM1NzY4N2I",
|
| 256 |
+
"link": "https://genur.art/posts/97374343"
|
| 257 |
+
},
|
| 258 |
+
{
|
| 259 |
+
"id": 97374341,
|
| 260 |
+
"url": "https://c.genur.art/2977e889-7b89-467d-a61e-1ccc4cdbcbf3",
|
| 261 |
+
"nsfwLevel": 16,
|
| 262 |
+
"width": 480,
|
| 263 |
+
"height": 720,
|
| 264 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 265 |
+
"type": "video",
|
| 266 |
+
"minor": false,
|
| 267 |
+
"poi": false,
|
| 268 |
+
"hasMeta": true,
|
| 269 |
+
"hasPositivePrompt": true,
|
| 270 |
+
"onSite": false,
|
| 271 |
+
"remixOfId": null,
|
| 272 |
+
"video_url": "https://c.genur.art/2977e889-7b89-467d-a61e-1ccc4cdbcbf3",
|
| 273 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC8yOTc3ZTg4OS03Yjg5LTQ2N2QtYTYxZS0xY2NjNGNkYmNiZjM",
|
| 274 |
+
"link": "https://genur.art/posts/97374341"
|
| 275 |
+
},
|
| 276 |
+
{
|
| 277 |
+
"id": 97374349,
|
| 278 |
+
"url": "https://c.genur.art/0b5f264e-fb36-4df5-b328-ea8101fbf2a9",
|
| 279 |
+
"nsfwLevel": 16,
|
| 280 |
+
"width": 480,
|
| 281 |
+
"height": 720,
|
| 282 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 283 |
+
"type": "video",
|
| 284 |
+
"minor": false,
|
| 285 |
+
"poi": false,
|
| 286 |
+
"hasMeta": true,
|
| 287 |
+
"hasPositivePrompt": true,
|
| 288 |
+
"onSite": false,
|
| 289 |
+
"remixOfId": null,
|
| 290 |
+
"video_url": "https://c.genur.art/0b5f264e-fb36-4df5-b328-ea8101fbf2a9",
|
| 291 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC8wYjVmMjY0ZS1mYjM2LTRkZjUtYjMyOC1lYTgxMDFmYmYyYTk",
|
| 292 |
+
"link": "https://genur.art/posts/97374349"
|
| 293 |
+
},
|
| 294 |
+
{
|
| 295 |
+
"id": 97374354,
|
| 296 |
+
"url": "https://c.genur.art/6af84683-6721-441e-b910-390899f69e09",
|
| 297 |
+
"nsfwLevel": 16,
|
| 298 |
+
"width": 480,
|
| 299 |
+
"height": 720,
|
| 300 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 301 |
+
"type": "video",
|
| 302 |
+
"minor": false,
|
| 303 |
+
"poi": false,
|
| 304 |
+
"hasMeta": true,
|
| 305 |
+
"hasPositivePrompt": true,
|
| 306 |
+
"onSite": false,
|
| 307 |
+
"remixOfId": null,
|
| 308 |
+
"video_url": "https://c.genur.art/6af84683-6721-441e-b910-390899f69e09",
|
| 309 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC82YWY4NDY4My02NzIxLTQ0MWUtYjkxMC0zOTA4OTlmNjllMDk",
|
| 310 |
+
"link": "https://genur.art/posts/97374354"
|
| 311 |
+
},
|
| 312 |
+
{
|
| 313 |
+
"id": 97374348,
|
| 314 |
+
"url": "https://c.genur.art/0ac321ad-25f0-4b0b-9891-7f5ed20bcf6d",
|
| 315 |
+
"nsfwLevel": 16,
|
| 316 |
+
"width": 480,
|
| 317 |
+
"height": 720,
|
| 318 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 319 |
+
"type": "video",
|
| 320 |
+
"minor": false,
|
| 321 |
+
"poi": false,
|
| 322 |
+
"hasMeta": true,
|
| 323 |
+
"hasPositivePrompt": true,
|
| 324 |
+
"onSite": false,
|
| 325 |
+
"remixOfId": null,
|
| 326 |
+
"video_url": "https://c.genur.art/0ac321ad-25f0-4b0b-9891-7f5ed20bcf6d",
|
| 327 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC8wYWMzMjFhZC0yNWYwLTRiMGItOTg5MS03ZjVlZDIwYmNmNmQ",
|
| 328 |
+
"link": "https://genur.art/posts/97374348"
|
| 329 |
+
},
|
| 330 |
+
{
|
| 331 |
+
"id": 97374344,
|
| 332 |
+
"url": "https://c.genur.art/c9082529-0256-421a-99d9-a1100c89e3f0",
|
| 333 |
+
"nsfwLevel": 16,
|
| 334 |
+
"width": 480,
|
| 335 |
+
"height": 720,
|
| 336 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 337 |
+
"type": "video",
|
| 338 |
+
"minor": false,
|
| 339 |
+
"poi": false,
|
| 340 |
+
"hasMeta": true,
|
| 341 |
+
"hasPositivePrompt": true,
|
| 342 |
+
"onSite": false,
|
| 343 |
+
"remixOfId": null,
|
| 344 |
+
"video_url": "https://c.genur.art/c9082529-0256-421a-99d9-a1100c89e3f0",
|
| 345 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC9jOTA4MjUyOS0wMjU2LTQyMWEtOTlkOS1hMTEwMGM4OWUzZjA",
|
| 346 |
+
"link": "https://genur.art/posts/97374344"
|
| 347 |
+
},
|
| 348 |
+
{
|
| 349 |
+
"id": 97374345,
|
| 350 |
+
"url": "https://c.genur.art/61d61a7b-e6a8-4c97-b5f2-e0b6fd629d0e",
|
| 351 |
+
"nsfwLevel": 16,
|
| 352 |
+
"width": 480,
|
| 353 |
+
"height": 720,
|
| 354 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 355 |
+
"type": "video",
|
| 356 |
+
"minor": false,
|
| 357 |
+
"poi": false,
|
| 358 |
+
"hasMeta": true,
|
| 359 |
+
"hasPositivePrompt": true,
|
| 360 |
+
"onSite": false,
|
| 361 |
+
"remixOfId": null,
|
| 362 |
+
"video_url": "https://c.genur.art/61d61a7b-e6a8-4c97-b5f2-e0b6fd629d0e",
|
| 363 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC82MWQ2MWE3Yi1lNmE4LTRjOTctYjVmMi1lMGI2ZmQ2MjlkMGU",
|
| 364 |
+
"link": "https://genur.art/posts/97374345"
|
| 365 |
+
},
|
| 366 |
+
{
|
| 367 |
+
"id": 97374347,
|
| 368 |
+
"url": "https://c.genur.art/29288786-57fc-4c58-816e-40b6451d55d6",
|
| 369 |
+
"nsfwLevel": 16,
|
| 370 |
+
"width": 480,
|
| 371 |
+
"height": 720,
|
| 372 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 373 |
+
"type": "video",
|
| 374 |
+
"minor": false,
|
| 375 |
+
"poi": false,
|
| 376 |
+
"hasMeta": true,
|
| 377 |
+
"hasPositivePrompt": true,
|
| 378 |
+
"onSite": false,
|
| 379 |
+
"remixOfId": null,
|
| 380 |
+
"video_url": "https://c.genur.art/29288786-57fc-4c58-816e-40b6451d55d6",
|
| 381 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC8yOTI4ODc4Ni01N2ZjLTRjNTgtODE2ZS00MGI2NDUxZDU1ZDY",
|
| 382 |
+
"link": "https://genur.art/posts/97374347"
|
| 383 |
+
},
|
| 384 |
+
{
|
| 385 |
+
"id": 97374355,
|
| 386 |
+
"url": "https://c.genur.art/b85e18e6-b4eb-42c0-ba88-eb12397101d8",
|
| 387 |
+
"nsfwLevel": 16,
|
| 388 |
+
"width": 480,
|
| 389 |
+
"height": 720,
|
| 390 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 391 |
+
"type": "video",
|
| 392 |
+
"minor": false,
|
| 393 |
+
"poi": false,
|
| 394 |
+
"hasMeta": true,
|
| 395 |
+
"hasPositivePrompt": true,
|
| 396 |
+
"onSite": false,
|
| 397 |
+
"remixOfId": null,
|
| 398 |
+
"video_url": "https://c.genur.art/b85e18e6-b4eb-42c0-ba88-eb12397101d8",
|
| 399 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC9iODVlMThlNi1iNGViLTQyYzAtYmE4OC1lYjEyMzk3MTAxZDg",
|
| 400 |
+
"link": "https://genur.art/posts/97374355"
|
| 401 |
+
}
|
| 402 |
+
],
|
| 403 |
+
"allow_download": true,
|
| 404 |
+
"download_url": "/api/download/models/2164378",
|
| 405 |
+
"platform_url": "https://civitai.com/models/1492937?modelVersionId=2164378",
|
| 406 |
+
"civitai_model_id": 1492937,
|
| 407 |
+
"civitai_model_version_id": 2164378,
|
| 408 |
+
"href": "/models/1492937?modelVersionId=2164378",
|
| 409 |
+
"mirrors": [
|
| 410 |
+
{
|
| 411 |
+
"platform": "seaart",
|
| 412 |
+
"href": "/seaart/models/d1ki7ele878c738qeab0/versions/d421f5895ddcf69e947dfac203211a20",
|
| 413 |
+
"platform_url": "https://www.seaart.ai/models/detail/d1ki7ele878c738qeab0?v=d421f5895ddcf69e947dfac203211a20",
|
| 414 |
+
"name": "POV Titty ???? -TI2V & I2V",
|
| 415 |
+
"version_name": "12V-Wan",
|
| 416 |
+
"id": "d1ki7ele878c738qeab0",
|
| 417 |
+
"version_id": "d421f5895ddcf69e947dfac203211a20"
|
| 418 |
+
},
|
| 419 |
+
{
|
| 420 |
+
"platform": "tensorart",
|
| 421 |
+
"href": "/tensorart/models/903393528925678270/versions/903393528925678270",
|
| 422 |
+
"platform_url": "https://tensor.art/models/903393528925678270",
|
| 423 |
+
"name": "P0V T1tty Fµck - Playtime_AI",
|
| 424 |
+
"version_name": "T2V HIGH",
|
| 425 |
+
"id": "903393528925678270",
|
| 426 |
+
"version_id": "903393528925678270"
|
| 427 |
+
}
|
| 428 |
+
],
|
| 429 |
+
"trainedWords": [],
|
| 430 |
+
"nsfwLevel": 16,
|
| 431 |
+
"stats": {
|
| 432 |
+
"downloadCount": 3855,
|
| 433 |
+
"ratingCount": 0,
|
| 434 |
+
"rating": 0
|
| 435 |
+
},
|
| 436 |
+
"model": {
|
| 437 |
+
"name": "POV Titty Fuck -T2V & I2V",
|
| 438 |
+
"type": "LORA",
|
| 439 |
+
"nsfw": true,
|
| 440 |
+
"description": "<h1 id=\"https:ko-fi.complaytime_ai\"><a target=\"_blank\" rel=\"ugc\" href=\"https://ko-fi.com/playtime_ai\"><strong>https://ko-fi.com/playtime_ai</strong></a></h1><p></p><h1 id=\"trigger:-tit_fuck\"><strong>Trigger: tit_fuck</strong></h1><p></p><h2 id=\"sample-prompt:-a-beautiful-young-woman-kneels-between-the-legs-of-a-naked-young-man-with-a-massive-erect-penis.-she-lifts-her-breasts-up-and-down-around-his-erect-penis.-she-tit_fucks-him.-(add-details-as-you-see-fit.)\">Sample Prompt: A beautiful young woman kneels between the legs of a naked young man with a massive erect penis. she lifts her breasts up and down around his erect penis. she tit_fucks him. (Add details as you see fit.)</h2><p></p><p><strong><em>This model does T2V and I2V!</em></strong></p>",
|
| 441 |
+
"tags": [
|
| 442 |
+
"concept"
|
| 443 |
+
],
|
| 444 |
+
"allowNoCredit": true,
|
| 445 |
+
"allowCommercialUse": [
|
| 446 |
+
"Sell"
|
| 447 |
+
],
|
| 448 |
+
"allowDerivatives": true,
|
| 449 |
+
"allowDifferentLicense": true
|
| 450 |
+
},
|
| 451 |
+
"creator": {
|
| 452 |
+
"username": "playtime_ai",
|
| 453 |
+
"image": "",
|
| 454 |
+
"name": "playtime_ai",
|
| 455 |
+
"url": "/users/playtime_ai"
|
| 456 |
+
},
|
| 457 |
+
"source": "civarchive",
|
| 458 |
+
"is_deleted": true
|
| 459 |
+
},
|
| 460 |
+
"tags": [
|
| 461 |
+
"concept"
|
| 462 |
+
],
|
| 463 |
+
"modelDescription": "<h1 id=\"https:ko-fi.complaytime_ai\"><a target=\"_blank\" rel=\"ugc\" href=\"https://ko-fi.com/playtime_ai\"><strong>https://ko-fi.com/playtime_ai</strong></a></h1><p></p><h1 id=\"trigger:-tit_fuck\"><strong>Trigger: tit_fuck</strong></h1><p></p><h2 id=\"sample-prompt:-a-beautiful-young-woman-kneels-between-the-legs-of-a-naked-young-man-with-a-massive-erect-penis.-she-lifts-her-breasts-up-and-down-around-his-erect-penis.-she-tit_fucks-him.-(add-details-as-you-see-fit.)\">Sample Prompt: A beautiful young woman kneels between the legs of a naked young man with a massive erect penis. she lifts her breasts up and down around his erect penis. she tit_fucks him. (Add details as you see fit.)</h2><p></p><p><strong><em>This model does T2V and I2V!</em></strong></p>",
|
| 464 |
+
"civitai_deleted": false,
|
| 465 |
+
"favorite": false,
|
| 466 |
+
"exclude": false,
|
| 467 |
+
"db_checked": false,
|
| 468 |
+
"skip_metadata_refresh": false,
|
| 469 |
+
"metadata_source": "civarchive",
|
| 470 |
+
"last_checked_at": 1772082564.949414,
|
| 471 |
+
"usage_tips": "{}"
|
| 472 |
+
}
|
loras/Actions/Oral/Wan2.2-T2V-POVTittyFuck-LOW14B.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:73cd86546f47010d5ee021ea863e21301fa627852dc235dc0c72fb0845f24563
|
| 3 |
+
size 814119
|
loras/Actions/Oral/Wan2.2-T2V-POVTittyFuck-LOW14B.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:83c016906d842723d793f1256aa11cbf59fdb01dddded3c8f61a88b6e0a3a03a
|
| 3 |
+
size 306807976
|
loras/Actions/Oral/Wan2.2_r1mj0b_v0.2_HIGH.metadata.json
ADDED
|
@@ -0,0 +1,194 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"file_name": "Wan2.2_r1mj0b_v0.2_HIGH",
|
| 3 |
+
"model_name": "Rimjob for WAN 2.2",
|
| 4 |
+
"file_path": "G:/AI/ComfyUI/models/loras/Actions/Oral/Wan2.2_r1mj0b_v0.2_HIGH.safetensors",
|
| 5 |
+
"size": 613518080,
|
| 6 |
+
"modified": 1772081900.333992,
|
| 7 |
+
"sha256": "e7044f0ac589a5829dccbbd9cb97132fb9ffd48e52cd646e16c6337675356eca",
|
| 8 |
+
"base_model": "Wan Video 2.2 I2V-A14B",
|
| 9 |
+
"preview_url": "G:/AI/ComfyUI/models/loras/Actions/Oral/Wan2.2_r1mj0b_v0.2_HIGH.mp4",
|
| 10 |
+
"preview_nsfw_level": 16,
|
| 11 |
+
"notes": "",
|
| 12 |
+
"from_civitai": true,
|
| 13 |
+
"civitai": {
|
| 14 |
+
"id": 2603476,
|
| 15 |
+
"modelId": 2314058,
|
| 16 |
+
"name": "HIGH",
|
| 17 |
+
"nsfwLevel": 60,
|
| 18 |
+
"createdAt": "2026-01-16T17:06:55.124Z",
|
| 19 |
+
"updatedAt": "2026-01-16T19:59:50.530Z",
|
| 20 |
+
"status": "Published",
|
| 21 |
+
"publishedAt": "2026-01-16T19:59:50.497Z",
|
| 22 |
+
"trainedWords": [
|
| 23 |
+
"r1mj0b"
|
| 24 |
+
],
|
| 25 |
+
"trainingStatus": null,
|
| 26 |
+
"trainingDetails": null,
|
| 27 |
+
"baseModel": "Wan Video 2.2 I2V-A14B",
|
| 28 |
+
"baseModelType": "Standard",
|
| 29 |
+
"earlyAccessEndsAt": null,
|
| 30 |
+
"earlyAccessConfig": null,
|
| 31 |
+
"description": null,
|
| 32 |
+
"uploadType": "Created",
|
| 33 |
+
"usageControl": "Download",
|
| 34 |
+
"air": "urn:air:wanvideo-22-i2v-a14b:lora:civitai:2314058@2603476",
|
| 35 |
+
"stats": {
|
| 36 |
+
"downloadCount": 1852,
|
| 37 |
+
"thumbsUpCount": 155
|
| 38 |
+
},
|
| 39 |
+
"model": {
|
| 40 |
+
"name": "Rimjob for WAN 2.2",
|
| 41 |
+
"type": "LORA",
|
| 42 |
+
"nsfw": true,
|
| 43 |
+
"poi": false,
|
| 44 |
+
"description": "<p>Rimjob lora for pov and side view angles. It should work in both T2V and I2V mode but it performs better as an I2V model.</p><p>This is my first public WAN lora so if you have any suggestions please post them in the comments.</p><p></p><p><strong>Prompt examples</strong>:</p><ul><li><p><strong>POV</strong>: <em>r1mj0b, pov. The girl leans forward and she is licking the man's anus with her tongue repeatedly while maintaining eye contact.</em></p></li><li><p><strong>From Side</strong>: <em>r1mj0b, from side. A woman kneels down turns to the right. She is repeatedly licking the anus of a naked men who is bent over. She spreads his ass with her hands.</em></p></li></ul><p><strong>Settings</strong>:</p><ul><li><p>Lora weight: 1</p></li><li><p>T2V sampler/scheduler: UniPC, Normal</p></li><li><p>I2V sampler/scheduler: LCM, Simple</p></li><li><p>10 steps (4 High / 6 Low) with Wan2.2-Lightning lora</p></li><li><p>CFG: 1.5 High / 1 Low (If you don't use the Lightning lora you can increase it to around 3.5)</p></li><li><p>Length: 6 seconds at least (you can try it with less but it might not be enough.)</p></li></ul><p></p>",
|
| 45 |
+
"tags": [
|
| 46 |
+
"concept"
|
| 47 |
+
],
|
| 48 |
+
"allowNoCredit": true,
|
| 49 |
+
"allowCommercialUse": [
|
| 50 |
+
"Image",
|
| 51 |
+
"RentCivit"
|
| 52 |
+
],
|
| 53 |
+
"allowDerivatives": false,
|
| 54 |
+
"allowDifferentLicense": true
|
| 55 |
+
},
|
| 56 |
+
"files": [
|
| 57 |
+
{
|
| 58 |
+
"id": 2490793,
|
| 59 |
+
"sizeKB": 599138.75,
|
| 60 |
+
"name": "Wan2.2_r1mj0b_v0.2_HIGH.safetensors",
|
| 61 |
+
"type": "Model",
|
| 62 |
+
"pickleScanResult": "Success",
|
| 63 |
+
"pickleScanMessage": "No Pickle imports",
|
| 64 |
+
"virusScanResult": "Success",
|
| 65 |
+
"virusScanMessage": null,
|
| 66 |
+
"scannedAt": "2026-01-16T17:15:56.997Z",
|
| 67 |
+
"metadata": {
|
| 68 |
+
"format": "SafeTensor",
|
| 69 |
+
"size": null,
|
| 70 |
+
"fp": null
|
| 71 |
+
},
|
| 72 |
+
"hashes": {
|
| 73 |
+
"AutoV1": "E2DB2E70",
|
| 74 |
+
"AutoV2": "E7044F0AC5",
|
| 75 |
+
"SHA256": "E7044F0AC589A5829DCCBBD9CB97132FB9FFD48E52CD646E16C6337675356ECA",
|
| 76 |
+
"CRC32": "4456C729",
|
| 77 |
+
"BLAKE3": "4DEC50E19167B3CCDD9C8BDE8AED9AE7B9704A41A3351B7DE6172D36E5F526FD",
|
| 78 |
+
"AutoV3": "630638C14D1B"
|
| 79 |
+
},
|
| 80 |
+
"primary": true,
|
| 81 |
+
"downloadUrl": "https://civitai.com/api/download/models/2603476"
|
| 82 |
+
}
|
| 83 |
+
],
|
| 84 |
+
"images": [
|
| 85 |
+
{
|
| 86 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/96b1ebca-6afb-40f3-8c96-bedac3ed1d17/original=true/117692940.mp4",
|
| 87 |
+
"nsfwLevel": 16,
|
| 88 |
+
"width": 864,
|
| 89 |
+
"height": 1280,
|
| 90 |
+
"hash": "U8GHe:tnE1IVAW00D%EL00=x^j-p01~V^+^k",
|
| 91 |
+
"type": "video",
|
| 92 |
+
"metadata": {
|
| 93 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 94 |
+
"size": 2982182,
|
| 95 |
+
"audio": false,
|
| 96 |
+
"width": 864,
|
| 97 |
+
"height": 1280,
|
| 98 |
+
"duration": 6.316
|
| 99 |
+
},
|
| 100 |
+
"minor": false,
|
| 101 |
+
"poi": false,
|
| 102 |
+
"meta": {
|
| 103 |
+
"seed": 240512718889520,
|
| 104 |
+
"steps": 10,
|
| 105 |
+
"prompt": "r1mj0b, from side. A girl with short black hair, glasses and hoop earrings is licking the anus of a man who is bent over in front of her. The man is bent over and his penis and testicles are exposed. The woman repeatedly moves her head up, licking the man's anus. Medium breasts, shoulder tattoo, black choker, jewelry, red lipstick, eyeshadow, tongue, saliva",
|
| 106 |
+
"sampler": "LCM",
|
| 107 |
+
"cfgScale": 1.5
|
| 108 |
+
},
|
| 109 |
+
"availability": "Public",
|
| 110 |
+
"hasMeta": true,
|
| 111 |
+
"hasPositivePrompt": true,
|
| 112 |
+
"onSite": false,
|
| 113 |
+
"remixOfId": null
|
| 114 |
+
},
|
| 115 |
+
{
|
| 116 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a23c8869-e39d-4f56-9004-21d76988a878/original=true/117694165.mp4",
|
| 117 |
+
"nsfwLevel": 16,
|
| 118 |
+
"width": 864,
|
| 119 |
+
"height": 1280,
|
| 120 |
+
"hash": "UPJt6pE20Ko}.mIo9Ft7O@xZD%s;-;t7i_ae",
|
| 121 |
+
"type": "video",
|
| 122 |
+
"metadata": {
|
| 123 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 124 |
+
"size": 3219845,
|
| 125 |
+
"audio": false,
|
| 126 |
+
"width": 864,
|
| 127 |
+
"height": 1280,
|
| 128 |
+
"duration": 6.316
|
| 129 |
+
},
|
| 130 |
+
"minor": false,
|
| 131 |
+
"poi": false,
|
| 132 |
+
"meta": {
|
| 133 |
+
"seed": 183549463455515,
|
| 134 |
+
"steps": 10,
|
| 135 |
+
"prompt": "r1mj0b, pov. A nude woman with long brown hair is standing on all fours on the bed as she repeatedly inserts her tongue into the man's anus. She holds the man's erect penis with her hand. The camera pans closer with the woman's hand in frame, she looks up at the camera as she licks the man's ass. The couple is lit by the sunlight streaming through the window. The man's penis is leaking precum on his chest. Indooors, on bed. penis, testicles, ",
|
| 136 |
+
"sampler": "LCM",
|
| 137 |
+
"cfgScale": 1.5
|
| 138 |
+
},
|
| 139 |
+
"availability": "Public",
|
| 140 |
+
"hasMeta": true,
|
| 141 |
+
"hasPositivePrompt": true,
|
| 142 |
+
"onSite": false,
|
| 143 |
+
"remixOfId": null
|
| 144 |
+
},
|
| 145 |
+
{
|
| 146 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/34c726fd-5908-4bfa-a0ac-c12f438aeeca/original=true/117694979.mp4",
|
| 147 |
+
"nsfwLevel": 16,
|
| 148 |
+
"width": 864,
|
| 149 |
+
"height": 1280,
|
| 150 |
+
"hash": "ULN]qf~qAw_3T|tRI]571is;t9nk%%xujGxu",
|
| 151 |
+
"type": "video",
|
| 152 |
+
"metadata": {
|
| 153 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 154 |
+
"size": 3204783,
|
| 155 |
+
"audio": false,
|
| 156 |
+
"width": 864,
|
| 157 |
+
"height": 1280,
|
| 158 |
+
"duration": 6.316
|
| 159 |
+
},
|
| 160 |
+
"minor": false,
|
| 161 |
+
"poi": false,
|
| 162 |
+
"meta": {
|
| 163 |
+
"seed": 521664527355215,
|
| 164 |
+
"steps": 10,
|
| 165 |
+
"prompt": "r1mj0b. A blonde haired woman with wolf ears is licking the anus of a naked woman with black hair who is lying on her stomach. The blonde haired girl spreads the ass of the other girl as she repeatedly inserts her tongue into her ass. The camera pans closer and to the right with the girl's ass remaining in focus. The blode haired girl's tongue is slick with saliva as she licks. The two woman are in an outdoor bath, their legs are submerged in the water and steam is rising from the water. The black haired girl opens her mouth with a happy, surprised expression, blushing. Outdoors, winter, ",
|
| 166 |
+
"sampler": "LCM",
|
| 167 |
+
"cfgScale": 1
|
| 168 |
+
},
|
| 169 |
+
"availability": "Public",
|
| 170 |
+
"hasMeta": true,
|
| 171 |
+
"hasPositivePrompt": true,
|
| 172 |
+
"onSite": false,
|
| 173 |
+
"remixOfId": null
|
| 174 |
+
}
|
| 175 |
+
],
|
| 176 |
+
"downloadUrl": "https://civitai.com/api/download/models/2603476",
|
| 177 |
+
"creator": {
|
| 178 |
+
"username": "bial",
|
| 179 |
+
"image": null
|
| 180 |
+
}
|
| 181 |
+
},
|
| 182 |
+
"tags": [
|
| 183 |
+
"concept"
|
| 184 |
+
],
|
| 185 |
+
"modelDescription": "<p>Rimjob lora for pov and side view angles. It should work in both T2V and I2V mode but it performs better as an I2V model.</p><p>This is my first public WAN lora so if you have any suggestions please post them in the comments.</p><p></p><p><strong>Prompt examples</strong>:</p><ul><li><p><strong>POV</strong>: <em>r1mj0b, pov. The girl leans forward and she is licking the man's anus with her tongue repeatedly while maintaining eye contact.</em></p></li><li><p><strong>From Side</strong>: <em>r1mj0b, from side. A woman kneels down turns to the right. She is repeatedly licking the anus of a naked men who is bent over. She spreads his ass with her hands.</em></p></li></ul><p><strong>Settings</strong>:</p><ul><li><p>Lora weight: 1</p></li><li><p>T2V sampler/scheduler: UniPC, Normal</p></li><li><p>I2V sampler/scheduler: LCM, Simple</p></li><li><p>10 steps (4 High / 6 Low) with Wan2.2-Lightning lora</p></li><li><p>CFG: 1.5 High / 1 Low (If you don't use the Lightning lora you can increase it to around 3.5)</p></li><li><p>Length: 6 seconds at least (you can try it with less but it might not be enough.)</p></li></ul><p></p>",
|
| 186 |
+
"civitai_deleted": false,
|
| 187 |
+
"favorite": false,
|
| 188 |
+
"exclude": false,
|
| 189 |
+
"db_checked": false,
|
| 190 |
+
"skip_metadata_refresh": false,
|
| 191 |
+
"metadata_source": "civitai_api",
|
| 192 |
+
"last_checked_at": 1772082578.194466,
|
| 193 |
+
"usage_tips": "{}"
|
| 194 |
+
}
|
loras/Actions/Oral/Wan2.2_r1mj0b_v0.2_HIGH.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:78d5a50f0ae4b446ec49036c2bc224115aa099eb9e12e1fd29bd8fc465fdb108
|
| 3 |
+
size 1630660
|
loras/Actions/Oral/Wan2.2_r1mj0b_v0.2_HIGH.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e7044f0ac589a5829dccbbd9cb97132fb9ffd48e52cd646e16c6337675356eca
|
| 3 |
+
size 613518080
|
loras/Actions/Oral/Wan2.2_r1mj0b_v0.2_LOW.metadata.json
ADDED
|
@@ -0,0 +1,224 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"file_name": "Wan2.2_r1mj0b_v0.2_LOW",
|
| 3 |
+
"model_name": "Rimjob for WAN 2.2",
|
| 4 |
+
"file_path": "G:/AI/ComfyUI/models/loras/Actions/Oral/Wan2.2_r1mj0b_v0.2_LOW.safetensors",
|
| 5 |
+
"size": 613518072,
|
| 6 |
+
"modified": 1772081900.728355,
|
| 7 |
+
"sha256": "43c04a1dafc1bc005c3ab1f74337fa507dc50647bc382844b53d4293b664f3ec",
|
| 8 |
+
"base_model": "Wan Video 2.2 I2V-A14B",
|
| 9 |
+
"preview_url": "G:/AI/ComfyUI/models/loras/Actions/Oral/Wan2.2_r1mj0b_v0.2_LOW.mp4",
|
| 10 |
+
"preview_nsfw_level": 16,
|
| 11 |
+
"notes": "",
|
| 12 |
+
"from_civitai": true,
|
| 13 |
+
"civitai": {
|
| 14 |
+
"id": 2603542,
|
| 15 |
+
"modelId": 2314058,
|
| 16 |
+
"name": "LOW",
|
| 17 |
+
"nsfwLevel": 60,
|
| 18 |
+
"createdAt": "2026-01-16T17:38:34.897Z",
|
| 19 |
+
"updatedAt": "2026-01-16T20:00:15.101Z",
|
| 20 |
+
"status": "Published",
|
| 21 |
+
"publishedAt": "2026-01-16T20:00:15.081Z",
|
| 22 |
+
"trainedWords": [
|
| 23 |
+
"r1mj0b"
|
| 24 |
+
],
|
| 25 |
+
"trainingStatus": null,
|
| 26 |
+
"trainingDetails": null,
|
| 27 |
+
"baseModel": "Wan Video 2.2 I2V-A14B",
|
| 28 |
+
"baseModelType": "Standard",
|
| 29 |
+
"earlyAccessEndsAt": null,
|
| 30 |
+
"earlyAccessConfig": null,
|
| 31 |
+
"description": null,
|
| 32 |
+
"uploadType": "Created",
|
| 33 |
+
"usageControl": "Download",
|
| 34 |
+
"air": "urn:air:wanvideo-22-i2v-a14b:lora:civitai:2314058@2603542",
|
| 35 |
+
"stats": {
|
| 36 |
+
"downloadCount": 1762,
|
| 37 |
+
"thumbsUpCount": 65
|
| 38 |
+
},
|
| 39 |
+
"model": {
|
| 40 |
+
"name": "Rimjob for WAN 2.2",
|
| 41 |
+
"type": "LORA",
|
| 42 |
+
"nsfw": true,
|
| 43 |
+
"poi": false,
|
| 44 |
+
"description": "<p>Rimjob lora for pov and side view angles. It should work in both T2V and I2V mode but it performs better as an I2V model.</p><p>This is my first public WAN lora so if you have any suggestions please post them in the comments.</p><p></p><p><strong>Prompt examples</strong>:</p><ul><li><p><strong>POV</strong>: <em>r1mj0b, pov. The girl leans forward and she is licking the man's anus with her tongue repeatedly while maintaining eye contact.</em></p></li><li><p><strong>From Side</strong>: <em>r1mj0b, from side. A woman kneels down turns to the right. She is repeatedly licking the anus of a naked men who is bent over. She spreads his ass with her hands.</em></p></li></ul><p><strong>Settings</strong>:</p><ul><li><p>Lora weight: 1</p></li><li><p>T2V sampler/scheduler: UniPC, Normal</p></li><li><p>I2V sampler/scheduler: LCM, Simple</p></li><li><p>10 steps (4 High / 6 Low) with Wan2.2-Lightning lora</p></li><li><p>CFG: 1.5 High / 1 Low (If you don't use the Lightning lora you can increase it to around 3.5)</p></li><li><p>Length: 6 seconds at least (you can try it with less but it might not be enough.)</p></li></ul><p></p>",
|
| 45 |
+
"tags": [
|
| 46 |
+
"concept"
|
| 47 |
+
],
|
| 48 |
+
"allowNoCredit": true,
|
| 49 |
+
"allowCommercialUse": [
|
| 50 |
+
"Image",
|
| 51 |
+
"RentCivit"
|
| 52 |
+
],
|
| 53 |
+
"allowDerivatives": false,
|
| 54 |
+
"allowDifferentLicense": true
|
| 55 |
+
},
|
| 56 |
+
"files": [
|
| 57 |
+
{
|
| 58 |
+
"id": 2490910,
|
| 59 |
+
"sizeKB": 599138.7421875,
|
| 60 |
+
"name": "Wan2.2_r1mj0b_v0.2_LOW.safetensors",
|
| 61 |
+
"type": "Model",
|
| 62 |
+
"pickleScanResult": "Success",
|
| 63 |
+
"pickleScanMessage": "No Pickle imports",
|
| 64 |
+
"virusScanResult": "Success",
|
| 65 |
+
"virusScanMessage": null,
|
| 66 |
+
"scannedAt": "2026-01-16T18:05:35.058Z",
|
| 67 |
+
"metadata": {
|
| 68 |
+
"format": "SafeTensor",
|
| 69 |
+
"size": null,
|
| 70 |
+
"fp": null
|
| 71 |
+
},
|
| 72 |
+
"hashes": {
|
| 73 |
+
"AutoV1": "67501E3A",
|
| 74 |
+
"AutoV2": "43C04A1DAF",
|
| 75 |
+
"SHA256": "43C04A1DAFC1BC005C3AB1F74337FA507DC50647BC382844B53D4293B664F3EC",
|
| 76 |
+
"CRC32": "6DEF0669",
|
| 77 |
+
"BLAKE3": "F13AA4B76B6C3A82D93762BA5FD27F3D9175D2D0585484DD64EB8E84B0C09718",
|
| 78 |
+
"AutoV3": "FF322BEEA059"
|
| 79 |
+
},
|
| 80 |
+
"primary": true,
|
| 81 |
+
"downloadUrl": "https://civitai.com/api/download/models/2603542"
|
| 82 |
+
}
|
| 83 |
+
],
|
| 84 |
+
"images": [
|
| 85 |
+
{
|
| 86 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/f7a380a8-a15e-4ac8-bcd1-cfbbf20e00cc/original=true/117695201.mp4",
|
| 87 |
+
"nsfwLevel": 16,
|
| 88 |
+
"width": 832,
|
| 89 |
+
"height": 1280,
|
| 90 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 91 |
+
"type": "video",
|
| 92 |
+
"metadata": {
|
| 93 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 94 |
+
"size": 3123247,
|
| 95 |
+
"audio": false,
|
| 96 |
+
"width": 832,
|
| 97 |
+
"height": 1280,
|
| 98 |
+
"duration": 6.316
|
| 99 |
+
},
|
| 100 |
+
"minor": false,
|
| 101 |
+
"poi": false,
|
| 102 |
+
"meta": {
|
| 103 |
+
"seed": 390972522161059,
|
| 104 |
+
"steps": 10,
|
| 105 |
+
"prompt": "r1mj0b, from side. A woman with short blonde hair is licking the anus of a naked men who is bent over. The man reaches back and pulls the woman's head closer to his ass. The woman's eyes are closed smiling with her tongue out as she licks his ass. She is holding the man's erect penis with both hands. Outdoors, flowers, trees, blue sky. The camera slowly pans to the left and zooms on the woman's face. Quick movement, dynamic movement.",
|
| 106 |
+
"sampler": "LCM",
|
| 107 |
+
"cfgScale": 1
|
| 108 |
+
},
|
| 109 |
+
"availability": "Public",
|
| 110 |
+
"hasMeta": true,
|
| 111 |
+
"hasPositivePrompt": true,
|
| 112 |
+
"onSite": false,
|
| 113 |
+
"remixOfId": null
|
| 114 |
+
},
|
| 115 |
+
{
|
| 116 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/bd2ee175-3166-48b9-8160-ec6fda71c720/original=true/117695252.mp4",
|
| 117 |
+
"nsfwLevel": 16,
|
| 118 |
+
"width": 864,
|
| 119 |
+
"height": 1280,
|
| 120 |
+
"hash": "UMM$;__3KgVYY*-;I.Md72kDVsMx-;Rj-URj",
|
| 121 |
+
"type": "video",
|
| 122 |
+
"metadata": {
|
| 123 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 124 |
+
"size": 3269009,
|
| 125 |
+
"audio": false,
|
| 126 |
+
"width": 864,
|
| 127 |
+
"height": 1280,
|
| 128 |
+
"duration": 6.316
|
| 129 |
+
},
|
| 130 |
+
"minor": false,
|
| 131 |
+
"poi": false,
|
| 132 |
+
"meta": {
|
| 133 |
+
"seed": 144373925993730,
|
| 134 |
+
"steps": 10,
|
| 135 |
+
"prompt": "r1mj0b, pov. From the point of view of a woman who is spreading her legs and her pussy and breasts exposed. A brown haired girl licks the anus of the woman, quickly, repeatedly inserting her tongue inside the hole in and out. Her mouth is slick with saliva. The camera pans closer on the brown haired girl's face. She looks at the camera as she licks. Indoors, lesbian",
|
| 136 |
+
"sampler": "LCM",
|
| 137 |
+
"cfgScale": 1
|
| 138 |
+
},
|
| 139 |
+
"availability": "Public",
|
| 140 |
+
"hasMeta": true,
|
| 141 |
+
"hasPositivePrompt": true,
|
| 142 |
+
"onSite": false,
|
| 143 |
+
"remixOfId": null
|
| 144 |
+
},
|
| 145 |
+
{
|
| 146 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a5bf7a75-d923-4acc-a04d-606f725fefc3/original=true/117695381.mp4",
|
| 147 |
+
"nsfwLevel": 16,
|
| 148 |
+
"width": 864,
|
| 149 |
+
"height": 1280,
|
| 150 |
+
"hash": "UADub-3DAK%N}[5SIq-VD%MdR4-4-mNG-7S1",
|
| 151 |
+
"type": "video",
|
| 152 |
+
"metadata": {
|
| 153 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 154 |
+
"size": 3136266,
|
| 155 |
+
"audio": false,
|
| 156 |
+
"width": 864,
|
| 157 |
+
"height": 1280,
|
| 158 |
+
"duration": 6.316
|
| 159 |
+
},
|
| 160 |
+
"minor": false,
|
| 161 |
+
"poi": false,
|
| 162 |
+
"meta": {
|
| 163 |
+
"seed": 827029367987979,
|
| 164 |
+
"steps": 10,
|
| 165 |
+
"prompt": "r1mj0b, from side. A green-skinned goblin girl is licking the anus of a muscular human man in a tavern at night. The camera pans to the right focusing on the girl's face. Strings of saliva connects between the girl's face and the man's ass. She is holding the man's testicles with one hand as she licks his ass. Indoors, night, fireplace, window, lit by moonlight, flaccid penis, circumcised penis. ",
|
| 166 |
+
"sampler": "LCM",
|
| 167 |
+
"cfgScale": 1
|
| 168 |
+
},
|
| 169 |
+
"availability": "Public",
|
| 170 |
+
"hasMeta": true,
|
| 171 |
+
"hasPositivePrompt": true,
|
| 172 |
+
"onSite": false,
|
| 173 |
+
"remixOfId": null
|
| 174 |
+
},
|
| 175 |
+
{
|
| 176 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e1b8c207-70c1-42f2-a574-2a608a3c35b5/original=true/117695407.mp4",
|
| 177 |
+
"nsfwLevel": 16,
|
| 178 |
+
"width": 864,
|
| 179 |
+
"height": 1280,
|
| 180 |
+
"hash": "U7Jj*uHX00^O4m,n?IC700.m}s0L%#IVaJ-V",
|
| 181 |
+
"type": "video",
|
| 182 |
+
"metadata": {
|
| 183 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 184 |
+
"size": 2936442,
|
| 185 |
+
"audio": false,
|
| 186 |
+
"width": 864,
|
| 187 |
+
"height": 1280,
|
| 188 |
+
"duration": 6.316
|
| 189 |
+
},
|
| 190 |
+
"minor": false,
|
| 191 |
+
"poi": false,
|
| 192 |
+
"meta": {
|
| 193 |
+
"seed": 1125833456233437,
|
| 194 |
+
"steps": 10,
|
| 195 |
+
"prompt": "r1mj0b, from side. A woman with large breasts is kneeling on the ground she pushes her breasts together sandwitching the man's erect penis between her breasts. The naked man is bent over and moves his hips up and down his penis is burried inside the woman's breasts. The woman sticks her tongue out and inserts it into the man's anus repeatedly moving her head back and forth. The camera zooms in focusing on the girl's face and breasts as she licks the man's ass and jiggles her breasts up and down. Long hair, aqua hair, twintails, hair ornament, choker, indoors, dynamic movement.",
|
| 196 |
+
"sampler": "LCM",
|
| 197 |
+
"cfgScale": 1
|
| 198 |
+
},
|
| 199 |
+
"availability": "Public",
|
| 200 |
+
"hasMeta": true,
|
| 201 |
+
"hasPositivePrompt": true,
|
| 202 |
+
"onSite": false,
|
| 203 |
+
"remixOfId": null
|
| 204 |
+
}
|
| 205 |
+
],
|
| 206 |
+
"downloadUrl": "https://civitai.com/api/download/models/2603542",
|
| 207 |
+
"creator": {
|
| 208 |
+
"username": "bial",
|
| 209 |
+
"image": null
|
| 210 |
+
}
|
| 211 |
+
},
|
| 212 |
+
"tags": [
|
| 213 |
+
"concept"
|
| 214 |
+
],
|
| 215 |
+
"modelDescription": "<p>Rimjob lora for pov and side view angles. It should work in both T2V and I2V mode but it performs better as an I2V model.</p><p>This is my first public WAN lora so if you have any suggestions please post them in the comments.</p><p></p><p><strong>Prompt examples</strong>:</p><ul><li><p><strong>POV</strong>: <em>r1mj0b, pov. The girl leans forward and she is licking the man's anus with her tongue repeatedly while maintaining eye contact.</em></p></li><li><p><strong>From Side</strong>: <em>r1mj0b, from side. A woman kneels down turns to the right. She is repeatedly licking the anus of a naked men who is bent over. She spreads his ass with her hands.</em></p></li></ul><p><strong>Settings</strong>:</p><ul><li><p>Lora weight: 1</p></li><li><p>T2V sampler/scheduler: UniPC, Normal</p></li><li><p>I2V sampler/scheduler: LCM, Simple</p></li><li><p>10 steps (4 High / 6 Low) with Wan2.2-Lightning lora</p></li><li><p>CFG: 1.5 High / 1 Low (If you don't use the Lightning lora you can increase it to around 3.5)</p></li><li><p>Length: 6 seconds at least (you can try it with less but it might not be enough.)</p></li></ul><p></p>",
|
| 216 |
+
"civitai_deleted": false,
|
| 217 |
+
"favorite": false,
|
| 218 |
+
"exclude": false,
|
| 219 |
+
"db_checked": false,
|
| 220 |
+
"skip_metadata_refresh": false,
|
| 221 |
+
"metadata_source": "civitai_api",
|
| 222 |
+
"last_checked_at": 1772082578.934973,
|
| 223 |
+
"usage_tips": "{}"
|
| 224 |
+
}
|
loras/Actions/Oral/Wan2.2_r1mj0b_v0.2_LOW.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e40c7d9e17961b2ced6a70db09fe185706c711941256f8564d6e9701c16d6907
|
| 3 |
+
size 2429329
|
loras/Actions/Oral/Wan2.2_r1mj0b_v0.2_LOW.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:43c04a1dafc1bc005c3ab1f74337fa507dc50647bc382844b53d4293b664f3ec
|
| 3 |
+
size 613518072
|
loras/Actions/Oral/Wan2.2v2-T2V-BodyCumShots-HIGH14B.metadata.json
ADDED
|
@@ -0,0 +1,231 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"file_name": "Wan2.2v2-T2V-BodyCumShots-HIGH14B",
|
| 3 |
+
"model_name": "Body Cumshot (Wan 2.2 / 2.1)",
|
| 4 |
+
"file_path": "G:/AI/ComfyUI/models/loras/Actions/Oral/Wan2.2v2-T2V-BodyCumShots-HIGH14B.safetensors",
|
| 5 |
+
"size": 306807976,
|
| 6 |
+
"modified": 1772081899.333833,
|
| 7 |
+
"sha256": "446a1da5811f0d3c447a03796cfc12099ab9b2a7a3e27b4db74d6c965c5f0c0b",
|
| 8 |
+
"base_model": "Wan Video 2.2 T2V-A14B",
|
| 9 |
+
"preview_url": "G:/AI/ComfyUI/models/loras/Actions/Oral/Wan2.2v2-T2V-BodyCumShots-HIGH14B.mp4",
|
| 10 |
+
"preview_nsfw_level": 16,
|
| 11 |
+
"notes": "",
|
| 12 |
+
"from_civitai": true,
|
| 13 |
+
"civitai": {
|
| 14 |
+
"id": 2095952,
|
| 15 |
+
"modelId": 1773498,
|
| 16 |
+
"name": "v2 Wan2.2 - T2V - HIGH",
|
| 17 |
+
"baseModel": "Wan Video 2.2 T2V-A14B",
|
| 18 |
+
"baseModelType": "Standard",
|
| 19 |
+
"description": null,
|
| 20 |
+
"is_nsfw": true,
|
| 21 |
+
"createdAt": "2025-08-09T11:40:34.920Z",
|
| 22 |
+
"updatedAt": "2025-11-11T21:55:28.100Z",
|
| 23 |
+
"deletedAt": "2025-11-11T21:55:28.100Z",
|
| 24 |
+
"files": [
|
| 25 |
+
{
|
| 26 |
+
"id": 1991600,
|
| 27 |
+
"sizeKB": 299617.1640625,
|
| 28 |
+
"name": "Wan2.2 v2 - T2V - Body Shots - HIGH 14B.safetensors",
|
| 29 |
+
"type": "Model",
|
| 30 |
+
"downloadUrl": "https://civitai.com/api/download/models/2095952",
|
| 31 |
+
"primary": true,
|
| 32 |
+
"mirrors": [
|
| 33 |
+
{
|
| 34 |
+
"filename": "Wan2.2 v2 - T2V - Body Shots - HIGH 14B.safetensors",
|
| 35 |
+
"url": "https://civitai.com/api/download/models/2095952",
|
| 36 |
+
"source": "civitai",
|
| 37 |
+
"model_id": 1773498,
|
| 38 |
+
"model_version_id": 2095952,
|
| 39 |
+
"deletedAt": "2025-11-11T21:55:28.619Z",
|
| 40 |
+
"is_gated": false,
|
| 41 |
+
"is_paid": false
|
| 42 |
+
},
|
| 43 |
+
{
|
| 44 |
+
"filename": "Wan2.2 v2 - T2V - Body Shots - HIGH 14B.safetensors",
|
| 45 |
+
"url": "https://huggingface.co/JustAnotherCibrarian/base_wan22/resolve/main/1773498/2095952/Wan2.2 v2 - T2V - Body Shots - HIGH 14B.safetensors",
|
| 46 |
+
"source": "huggingface",
|
| 47 |
+
"deletedAt": null,
|
| 48 |
+
"is_gated": false,
|
| 49 |
+
"is_paid": false,
|
| 50 |
+
"model_id": null,
|
| 51 |
+
"model_version_id": null
|
| 52 |
+
},
|
| 53 |
+
{
|
| 54 |
+
"filename": "Wan2.2 v2 - T2V - Body Shots - HIGH 14B.safetensors",
|
| 55 |
+
"url": "https://huggingface.co/3dn3lt/Wan2.2-nsfw-0.08a/resolve/main/Wan2.2 v2 - T2V - Body Shots - HIGH 14B.safetensors",
|
| 56 |
+
"source": "huggingface",
|
| 57 |
+
"deletedAt": null,
|
| 58 |
+
"is_gated": false,
|
| 59 |
+
"is_paid": false,
|
| 60 |
+
"model_id": null,
|
| 61 |
+
"model_version_id": null
|
| 62 |
+
},
|
| 63 |
+
{
|
| 64 |
+
"filename": "Wan2.2 v2 - T2V - Body Shots - HIGH 14B.safetensors",
|
| 65 |
+
"url": "https://huggingface.co/Chroma111/CivitAI-Archive-2/resolve/main/1773498/2095952/Wan2.2 v2 - T2V - Body Shots - HIGH 14B.safetensors",
|
| 66 |
+
"source": "huggingface",
|
| 67 |
+
"deletedAt": null,
|
| 68 |
+
"is_gated": false,
|
| 69 |
+
"is_paid": false,
|
| 70 |
+
"model_id": null,
|
| 71 |
+
"model_version_id": null
|
| 72 |
+
},
|
| 73 |
+
{
|
| 74 |
+
"filename": "Wan2.2 v2 - T2V - Body Shots - HIGH 14B.safetensors",
|
| 75 |
+
"url": "https://huggingface.co/Playtime-AI/Wan2.2-Loras/resolve/main/Wan2.2 v2 - T2V - Body Shots - HIGH 14B.safetensors",
|
| 76 |
+
"source": "huggingface",
|
| 77 |
+
"deletedAt": null,
|
| 78 |
+
"is_gated": false,
|
| 79 |
+
"is_paid": false,
|
| 80 |
+
"model_id": null,
|
| 81 |
+
"model_version_id": null
|
| 82 |
+
},
|
| 83 |
+
{
|
| 84 |
+
"filename": "Wan2.2 v2 - T2V - Body Shots - HIGH 14B.safetensors",
|
| 85 |
+
"url": "https://huggingface.co/rahul7star/wan2.2Lora/resolve/main/wan2.2/Wan2.2 v2 - T2V - Body Shots - HIGH 14B.safetensors",
|
| 86 |
+
"source": "huggingface",
|
| 87 |
+
"deletedAt": null,
|
| 88 |
+
"is_gated": false,
|
| 89 |
+
"is_paid": false,
|
| 90 |
+
"model_id": null,
|
| 91 |
+
"model_version_id": null
|
| 92 |
+
},
|
| 93 |
+
{
|
| 94 |
+
"filename": "Wan2.2 v2 - T2V - Body Shots - HIGH 14B.safetensors",
|
| 95 |
+
"url": "https://huggingface.co/klckmd/bdsht/resolve/main/Wan2.2 v2 - T2V - Body Shots - HIGH 14B.safetensors",
|
| 96 |
+
"source": "huggingface",
|
| 97 |
+
"deletedAt": null,
|
| 98 |
+
"is_gated": false,
|
| 99 |
+
"is_paid": false,
|
| 100 |
+
"model_id": null,
|
| 101 |
+
"model_version_id": null
|
| 102 |
+
},
|
| 103 |
+
{
|
| 104 |
+
"filename": "Wan2.2 v2 - T2V - Body Shots - HIGH 14B.safetensors",
|
| 105 |
+
"url": "https://huggingface.co/sbdfb/bodyjuice/resolve/main/Wan2.2 v2 - T2V - Body Shots - HIGH 14B.safetensors",
|
| 106 |
+
"source": "huggingface",
|
| 107 |
+
"deletedAt": null,
|
| 108 |
+
"is_gated": false,
|
| 109 |
+
"is_paid": false,
|
| 110 |
+
"model_id": null,
|
| 111 |
+
"model_version_id": null
|
| 112 |
+
},
|
| 113 |
+
{
|
| 114 |
+
"filename": "wan_replica_bcs_high.safetensors",
|
| 115 |
+
"url": "https://huggingface.co/parksdh/wan_replica_bcs/resolve/main/wan_replica_bcs_high.safetensors",
|
| 116 |
+
"source": "huggingface",
|
| 117 |
+
"deletedAt": "2026-01-20T21:27:57.792Z",
|
| 118 |
+
"is_gated": false,
|
| 119 |
+
"is_paid": false,
|
| 120 |
+
"model_id": null,
|
| 121 |
+
"model_version_id": null
|
| 122 |
+
},
|
| 123 |
+
{
|
| 124 |
+
"filename": "bcs_high.safetensors",
|
| 125 |
+
"url": "https://huggingface.co/parksdh/wan_lora/resolve/main/bcs_high.safetensors",
|
| 126 |
+
"source": "huggingface",
|
| 127 |
+
"deletedAt": "2026-01-20T21:22:54.249Z",
|
| 128 |
+
"is_gated": false,
|
| 129 |
+
"is_paid": false,
|
| 130 |
+
"model_id": null,
|
| 131 |
+
"model_version_id": null
|
| 132 |
+
},
|
| 133 |
+
{
|
| 134 |
+
"filename": "Wan2.2 v2 - T2V - Body Shots - HIGH 14B.safetensors",
|
| 135 |
+
"url": "https://huggingface.co/Frankis72/Gtmoney/resolve/main/Wan2.2 v2 - T2V - Body Shots - HIGH 14B.safetensors",
|
| 136 |
+
"source": "huggingface",
|
| 137 |
+
"deletedAt": "2026-02-22T17:53:11.397Z",
|
| 138 |
+
"is_gated": false,
|
| 139 |
+
"is_paid": false,
|
| 140 |
+
"model_id": null,
|
| 141 |
+
"model_version_id": null
|
| 142 |
+
}
|
| 143 |
+
],
|
| 144 |
+
"hashes": {
|
| 145 |
+
"SHA256": "446A1DA5811F0D3C447A03796CFC12099AB9B2A7A3E27B4DB74D6C965C5F0C0B"
|
| 146 |
+
},
|
| 147 |
+
"modelVersionId": 2095952,
|
| 148 |
+
"modelId": 1773498
|
| 149 |
+
}
|
| 150 |
+
],
|
| 151 |
+
"images": [
|
| 152 |
+
{
|
| 153 |
+
"id": 93216442,
|
| 154 |
+
"url": "https://c.genur.art/ddf4f654-8163-4519-9143-58a8a181cc74",
|
| 155 |
+
"nsfwLevel": 16,
|
| 156 |
+
"width": 480,
|
| 157 |
+
"height": 720,
|
| 158 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 159 |
+
"type": "video",
|
| 160 |
+
"minor": false,
|
| 161 |
+
"poi": false,
|
| 162 |
+
"hasMeta": true,
|
| 163 |
+
"hasPositivePrompt": true,
|
| 164 |
+
"onSite": false,
|
| 165 |
+
"remixOfId": null,
|
| 166 |
+
"video_url": "https://c.genur.art/ddf4f654-8163-4519-9143-58a8a181cc74",
|
| 167 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC9kZGY0ZjY1NC04MTYzLTQ1MTktOTE0My01OGE4YTE4MWNjNzQ",
|
| 168 |
+
"link": "https://genur.art/posts/93216442"
|
| 169 |
+
}
|
| 170 |
+
],
|
| 171 |
+
"allow_download": true,
|
| 172 |
+
"download_url": "/api/download/models/2095952",
|
| 173 |
+
"platform_url": "https://civitai.com/models/1773498?modelVersionId=2095952",
|
| 174 |
+
"civitai_model_id": 1773498,
|
| 175 |
+
"civitai_model_version_id": 2095952,
|
| 176 |
+
"href": "/models/1773498?modelVersionId=2095952",
|
| 177 |
+
"mirrors": [
|
| 178 |
+
{
|
| 179 |
+
"platform": "seaart",
|
| 180 |
+
"href": "/seaart/models/d2mtiele878c73co0360/versions/53f3c11fe47609562e6ad8e25944522a",
|
| 181 |
+
"platform_url": "https://www.seaart.ai/models/detail/d2mtiele878c73co0360?v=53f3c11fe47609562e6ad8e25944522a",
|
| 182 |
+
"name": "LOW Body C*mshot Wan 2.2 ",
|
| 183 |
+
"version_name": "LOW",
|
| 184 |
+
"id": "d2mtiele878c73co0360",
|
| 185 |
+
"version_id": "53f3c11fe47609562e6ad8e25944522a"
|
| 186 |
+
}
|
| 187 |
+
],
|
| 188 |
+
"trainedWords": [],
|
| 189 |
+
"nsfwLevel": 16,
|
| 190 |
+
"stats": {
|
| 191 |
+
"downloadCount": 7233,
|
| 192 |
+
"ratingCount": 0,
|
| 193 |
+
"rating": 0
|
| 194 |
+
},
|
| 195 |
+
"model": {
|
| 196 |
+
"name": "Body Cumshot (Wan 2.2 / 2.1)",
|
| 197 |
+
"type": "LORA",
|
| 198 |
+
"nsfw": true,
|
| 199 |
+
"description": "<h2 id=\"https:ko-fi.complaytime_ai\"><a target=\"_blank\" rel=\"ugc\" href=\"https://ko-fi.com/playtime_ai\"><strong>https://ko-fi.com/playtime_ai</strong></a></h2><p></p><h2 id=\"v2-the-first-wan-2.2-version-was-over-trained.-this-new-version-should-be-more-versatile-and-vary-faces-more-easily.\"><strong>v2 - </strong><em>The first Wan 2.2 version was over trained. This new version should be more versatile and vary faces more easily.</em></h2><p></p><p><strong><u>Wan 2.2 - Official Release!</u></strong></p><p><strong>A special thanks to tdrussell and and diffusion-pipe! They cracked the code. This version was trained with their newest settings for Wan 2.2. </strong><span style=\"color:rgb(250, 82, 82)\"><strong><em>You need both the HIGH and LOW models (they are different).</em></strong></span><strong> Run both with a strength of 1.0. All sample images were generated with the lightx2v lora. 12 steps, 6 on each model... 2 minutes to generate on an RTX 5090!!!</strong></p><h3 id=\"workflow-is-in-the-'training-data'-download-file.\"><strong>Workflow is in the 'training data' download file.</strong></h3><p></p><h2 id=\"trigger:-bodyshot.-her-body-and-breasts-covered-in-cum.-a-huge-load-of-thick-white-cum-shoots-from-the-penis-and-lands-on-her-stomach-and-breasts.-the-penis-is-barely-visible-on-the-edge-of-the-frame.\"><strong>Trigger: </strong><em>Bodyshot. Her body and breasts covered in cum. A huge load of thick white cum shoots from the penis and lands on her stomach and breasts. The penis is barely visible on the edge of the frame.</em></h2><p></p><h2 id=\"works-with-all-parts-of-the-body!\"><strong><em>Works with all parts of the body!</em></strong></h2><p></p><p><strong>Examply Prompt: </strong><em>The setting is a luxurious, dimly lit penthouse bedroom, bathed in the warm, golden glow of bedside lamps. The air is thick with the scent of sex and anticipation, the only sound the soft rustle of silk sheets. It's late evening, just as the city lights begin to glitter outside the vast windows, casting a subtle, shimmering backdrop. The camera begins with a slow, sensual </em><strong><em>push-in</em></strong><em> from a medium shot, focusing on the woman's torso, then executes a sudden, sharp </em><strong><em>snap-zoom</em></strong><em> as the cum shoots. A stunningly beautiful young woman lies on her back on rumpled, pearl-white silk sheets, her body exquisitely nude. The tip of a glistening, dark </em><strong><em>penis is barely visible</em></strong><em> at the very bottom-left edge of the frame, hinting at its immense proximity. The man's hand, partially obscured, is steadily stroking his penis, the rhythmic movement almost hypnotic. Her body and breasts are already glistening with a generous coating of cum, reflecting the ambient light. Suddenly, a huge, thick load of white cum shoots from the penis, arcing through the air with incredible force. The camera focuses intently as the cum lands with a wet splat, spreading thickly across her stomach and breasts, adding to the already copious amount. She </em><strong><em>squirms</em></strong><em>, her hips arching off the bed, and her </em><strong><em>mouth opens in a moan of sexual pleasure</em></strong><em> as her hands instinctively fly to her stomach, running over her own cum-covered body, emphasizing the visceral delight.</em></p>",
|
| 200 |
+
"tags": [
|
| 201 |
+
"concept"
|
| 202 |
+
],
|
| 203 |
+
"allowNoCredit": true,
|
| 204 |
+
"allowCommercialUse": [
|
| 205 |
+
"Sell"
|
| 206 |
+
],
|
| 207 |
+
"allowDerivatives": true,
|
| 208 |
+
"allowDifferentLicense": true
|
| 209 |
+
},
|
| 210 |
+
"creator": {
|
| 211 |
+
"username": "playtime_ai",
|
| 212 |
+
"image": "",
|
| 213 |
+
"name": "playtime_ai",
|
| 214 |
+
"url": "/users/playtime_ai"
|
| 215 |
+
},
|
| 216 |
+
"source": "civarchive",
|
| 217 |
+
"is_deleted": true
|
| 218 |
+
},
|
| 219 |
+
"tags": [
|
| 220 |
+
"concept"
|
| 221 |
+
],
|
| 222 |
+
"modelDescription": "<h2 id=\"https:ko-fi.complaytime_ai\"><a target=\"_blank\" rel=\"ugc\" href=\"https://ko-fi.com/playtime_ai\"><strong>https://ko-fi.com/playtime_ai</strong></a></h2><p></p><h2 id=\"v2-the-first-wan-2.2-version-was-over-trained.-this-new-version-should-be-more-versatile-and-vary-faces-more-easily.\"><strong>v2 - </strong><em>The first Wan 2.2 version was over trained. This new version should be more versatile and vary faces more easily.</em></h2><p></p><p><strong><u>Wan 2.2 - Official Release!</u></strong></p><p><strong>A special thanks to tdrussell and and diffusion-pipe! They cracked the code. This version was trained with their newest settings for Wan 2.2. </strong><span style=\"color:rgb(250, 82, 82)\"><strong><em>You need both the HIGH and LOW models (they are different).</em></strong></span><strong> Run both with a strength of 1.0. All sample images were generated with the lightx2v lora. 12 steps, 6 on each model... 2 minutes to generate on an RTX 5090!!!</strong></p><h3 id=\"workflow-is-in-the-'training-data'-download-file.\"><strong>Workflow is in the 'training data' download file.</strong></h3><p></p><h2 id=\"trigger:-bodyshot.-her-body-and-breasts-covered-in-cum.-a-huge-load-of-thick-white-cum-shoots-from-the-penis-and-lands-on-her-stomach-and-breasts.-the-penis-is-barely-visible-on-the-edge-of-the-frame.\"><strong>Trigger: </strong><em>Bodyshot. Her body and breasts covered in cum. A huge load of thick white cum shoots from the penis and lands on her stomach and breasts. The penis is barely visible on the edge of the frame.</em></h2><p></p><h2 id=\"works-with-all-parts-of-the-body!\"><strong><em>Works with all parts of the body!</em></strong></h2><p></p><p><strong>Examply Prompt: </strong><em>The setting is a luxurious, dimly lit penthouse bedroom, bathed in the warm, golden glow of bedside lamps. The air is thick with the scent of sex and anticipation, the only sound the soft rustle of silk sheets. It's late evening, just as the city lights begin to glitter outside the vast windows, casting a subtle, shimmering backdrop. The camera begins with a slow, sensual </em><strong><em>push-in</em></strong><em> from a medium shot, focusing on the woman's torso, then executes a sudden, sharp </em><strong><em>snap-zoom</em></strong><em> as the cum shoots. A stunningly beautiful young woman lies on her back on rumpled, pearl-white silk sheets, her body exquisitely nude. The tip of a glistening, dark </em><strong><em>penis is barely visible</em></strong><em> at the very bottom-left edge of the frame, hinting at its immense proximity. The man's hand, partially obscured, is steadily stroking his penis, the rhythmic movement almost hypnotic. Her body and breasts are already glistening with a generous coating of cum, reflecting the ambient light. Suddenly, a huge, thick load of white cum shoots from the penis, arcing through the air with incredible force. The camera focuses intently as the cum lands with a wet splat, spreading thickly across her stomach and breasts, adding to the already copious amount. She </em><strong><em>squirms</em></strong><em>, her hips arching off the bed, and her </em><strong><em>mouth opens in a moan of sexual pleasure</em></strong><em> as her hands instinctively fly to her stomach, running over her own cum-covered body, emphasizing the visceral delight.</em></p>",
|
| 223 |
+
"civitai_deleted": false,
|
| 224 |
+
"favorite": false,
|
| 225 |
+
"exclude": false,
|
| 226 |
+
"db_checked": false,
|
| 227 |
+
"skip_metadata_refresh": false,
|
| 228 |
+
"metadata_source": "civarchive",
|
| 229 |
+
"last_checked_at": 1772082565.663606,
|
| 230 |
+
"usage_tips": "{}"
|
| 231 |
+
}
|
loras/Actions/Oral/Wan2.2v2-T2V-BodyCumShots-HIGH14B.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:863fae2c5cb1bf2bf171f23fa83556d46ebfba7acbc2ab2f3c34a528573266dc
|
| 3 |
+
size 449275
|
loras/Actions/Oral/Wan2.2v2-T2V-BodyCumShots-HIGH14B.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:446a1da5811f0d3c447a03796cfc12099ab9b2a7a3e27b4db74d6c965c5f0c0b
|
| 3 |
+
size 306807976
|
loras/Actions/Oral/Wan2.2v2-T2V-BodyCumShots-LOW14B.metadata.json
ADDED
|
@@ -0,0 +1,315 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"file_name": "Wan2.2v2-T2V-BodyCumShots-LOW14B",
|
| 3 |
+
"model_name": "Bella",
|
| 4 |
+
"file_path": "G:/AI/ComfyUI/models/loras/Actions/Oral/Wan2.2v2-T2V-BodyCumShots-LOW14B.safetensors",
|
| 5 |
+
"size": 306807976,
|
| 6 |
+
"modified": 1772081899.531016,
|
| 7 |
+
"sha256": "3fcce2bd7b1c5ea00a655f8f5127cb59f050fdd186fd2743686128344b9f33c8",
|
| 8 |
+
"base_model": "Wan Video 2.2 T2V-A14B",
|
| 9 |
+
"preview_url": "G:/AI/ComfyUI/models/loras/Actions/Oral/Wan2.2v2-T2V-BodyCumShots-LOW14B.mp4",
|
| 10 |
+
"preview_nsfw_level": 1,
|
| 11 |
+
"notes": "",
|
| 12 |
+
"from_civitai": true,
|
| 13 |
+
"civitai": {
|
| 14 |
+
"id": 2116531,
|
| 15 |
+
"modelId": 1869932,
|
| 16 |
+
"name": "Wan2.2 - T2V - LOW - 14B",
|
| 17 |
+
"baseModel": "Wan Video 2.2 T2V-A14B",
|
| 18 |
+
"baseModelType": "Standard",
|
| 19 |
+
"description": null,
|
| 20 |
+
"is_nsfw": true,
|
| 21 |
+
"createdAt": "2025-08-15T17:09:09.930Z",
|
| 22 |
+
"updatedAt": "2025-11-12T15:09:18.716Z",
|
| 23 |
+
"deletedAt": "2025-11-12T15:09:18.716Z",
|
| 24 |
+
"files": [
|
| 25 |
+
{
|
| 26 |
+
"id": 2011537,
|
| 27 |
+
"sizeKB": 599137.453125,
|
| 28 |
+
"name": "Wan2.2 - T2V - Bella - LOW 14B.safetensors",
|
| 29 |
+
"type": "Model",
|
| 30 |
+
"downloadUrl": "https://civitai.com/api/download/models/2116531",
|
| 31 |
+
"primary": true,
|
| 32 |
+
"mirrors": [
|
| 33 |
+
{
|
| 34 |
+
"filename": "Wan2.2 - T2V - Bella - LOW 14B.safetensors",
|
| 35 |
+
"url": "https://civitai.com/api/download/models/2116531",
|
| 36 |
+
"source": "civitai",
|
| 37 |
+
"model_id": 1869932,
|
| 38 |
+
"model_version_id": 2116531,
|
| 39 |
+
"deletedAt": "2025-11-12T15:09:18.696Z",
|
| 40 |
+
"is_gated": false,
|
| 41 |
+
"is_paid": false
|
| 42 |
+
},
|
| 43 |
+
{
|
| 44 |
+
"filename": "Wan2.2 - T2V - Bella - LOW 14B.safetensors",
|
| 45 |
+
"url": "https://huggingface.co/JustAnotherCibrarian/base_wan22/resolve/main/1869932/2116531/Wan2.2 - T2V - Bella - LOW 14B.safetensors",
|
| 46 |
+
"source": "huggingface",
|
| 47 |
+
"deletedAt": null,
|
| 48 |
+
"is_gated": false,
|
| 49 |
+
"is_paid": false,
|
| 50 |
+
"model_id": null,
|
| 51 |
+
"model_version_id": null
|
| 52 |
+
},
|
| 53 |
+
{
|
| 54 |
+
"filename": "Wan2.2 - T2V - Bella - LOW 14B.safetensors",
|
| 55 |
+
"url": "https://huggingface.co/Playtime-AI/Wan2.2-Loras/resolve/main/Wan2.2 - T2V - Bella - LOW 14B.safetensors",
|
| 56 |
+
"source": "huggingface",
|
| 57 |
+
"deletedAt": null,
|
| 58 |
+
"is_gated": false,
|
| 59 |
+
"is_paid": false,
|
| 60 |
+
"model_id": null,
|
| 61 |
+
"model_version_id": null
|
| 62 |
+
}
|
| 63 |
+
],
|
| 64 |
+
"hashes": {
|
| 65 |
+
"SHA256": "077D013C36AAA02724FFE1AB0AABB6DC280D0AD95D39F2472B91B82B9673BE3D"
|
| 66 |
+
},
|
| 67 |
+
"modelVersionId": 2116531,
|
| 68 |
+
"modelId": 1869932
|
| 69 |
+
},
|
| 70 |
+
{
|
| 71 |
+
"id": 2010939,
|
| 72 |
+
"sizeKB": 299617.1640625,
|
| 73 |
+
"name": "Wan2.2 v2 - T2V - Body Shots - LOW 14B.safetensors",
|
| 74 |
+
"type": "Model",
|
| 75 |
+
"downloadUrl": "https://civitai.com/api/download/models/2116531",
|
| 76 |
+
"primary": true,
|
| 77 |
+
"mirrors": [
|
| 78 |
+
{
|
| 79 |
+
"filename": "Wan2.2 v2 - T2V - Body Shots - LOW 14B.safetensors",
|
| 80 |
+
"url": "https://civitai.com/api/download/models/2116531",
|
| 81 |
+
"source": "civitai",
|
| 82 |
+
"model_id": 1869932,
|
| 83 |
+
"model_version_id": 2116531,
|
| 84 |
+
"deletedAt": "2025-11-12T15:09:18.696Z",
|
| 85 |
+
"is_gated": false,
|
| 86 |
+
"is_paid": false
|
| 87 |
+
},
|
| 88 |
+
{
|
| 89 |
+
"filename": "Wan2.2 v2 - T2V - Body Shots - LOW 14B.safetensors",
|
| 90 |
+
"url": "https://civitai.com/api/download/models/2095954",
|
| 91 |
+
"source": "civitai",
|
| 92 |
+
"model_id": 1773498,
|
| 93 |
+
"model_version_id": 2095954,
|
| 94 |
+
"deletedAt": "2025-11-11T21:55:28.619Z",
|
| 95 |
+
"is_gated": false,
|
| 96 |
+
"is_paid": false
|
| 97 |
+
},
|
| 98 |
+
{
|
| 99 |
+
"filename": "Wan2.2 v2 - T2V - Body Shots - LOW 14B.safetensors",
|
| 100 |
+
"url": "https://huggingface.co/3dn3lt/Wan2.2-nsfw-0.08a/resolve/main/Wan2.2 v2 - T2V - Body Shots - LOW 14B.safetensors",
|
| 101 |
+
"source": "huggingface",
|
| 102 |
+
"deletedAt": null,
|
| 103 |
+
"is_gated": false,
|
| 104 |
+
"is_paid": false,
|
| 105 |
+
"model_id": null,
|
| 106 |
+
"model_version_id": null
|
| 107 |
+
},
|
| 108 |
+
{
|
| 109 |
+
"filename": "Wan2.2 v2 - T2V - Body Shots - LOW 14B.safetensors",
|
| 110 |
+
"url": "https://huggingface.co/JustAnotherCibrarian/base_wan22/resolve/main/1773498/2095954/Wan2.2 v2 - T2V - Body Shots - LOW 14B.safetensors",
|
| 111 |
+
"source": "huggingface",
|
| 112 |
+
"deletedAt": null,
|
| 113 |
+
"is_gated": false,
|
| 114 |
+
"is_paid": false,
|
| 115 |
+
"model_id": null,
|
| 116 |
+
"model_version_id": null
|
| 117 |
+
},
|
| 118 |
+
{
|
| 119 |
+
"filename": "Wan2.2 v2 - T2V - Body Shots - LOW 14B.safetensors",
|
| 120 |
+
"url": "https://huggingface.co/Chroma111/CivitAI-Archive-2/resolve/main/1773498/2095954/Wan2.2 v2 - T2V - Body Shots - LOW 14B.safetensors",
|
| 121 |
+
"source": "huggingface",
|
| 122 |
+
"deletedAt": null,
|
| 123 |
+
"is_gated": false,
|
| 124 |
+
"is_paid": false,
|
| 125 |
+
"model_id": null,
|
| 126 |
+
"model_version_id": null
|
| 127 |
+
},
|
| 128 |
+
{
|
| 129 |
+
"filename": "Wan2.2 v2 - T2V - Body Shots - LOW 14B.safetensors",
|
| 130 |
+
"url": "https://huggingface.co/Playtime-AI/Wan2.2-Loras/resolve/main/Wan2.2 v2 - T2V - Body Shots - LOW 14B.safetensors",
|
| 131 |
+
"source": "huggingface",
|
| 132 |
+
"deletedAt": null,
|
| 133 |
+
"is_gated": false,
|
| 134 |
+
"is_paid": false,
|
| 135 |
+
"model_id": null,
|
| 136 |
+
"model_version_id": null
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"filename": "wan_replica_bcs_low.safetensors",
|
| 140 |
+
"url": "https://huggingface.co/parksdh/wan_replica_bcs/resolve/main/wan_replica_bcs_low.safetensors",
|
| 141 |
+
"source": "huggingface",
|
| 142 |
+
"deletedAt": "2026-01-20T21:27:57.792Z",
|
| 143 |
+
"is_gated": false,
|
| 144 |
+
"is_paid": false,
|
| 145 |
+
"model_id": null,
|
| 146 |
+
"model_version_id": null
|
| 147 |
+
},
|
| 148 |
+
{
|
| 149 |
+
"filename": "Wan2.2 v2 - T2V - Body Shots - LOW 14B.safetensors",
|
| 150 |
+
"url": "https://huggingface.co/rahul7star/wan2.2Lora/resolve/main/wan2.2/Wan2.2 v2 - T2V - Body Shots - LOW 14B.safetensors",
|
| 151 |
+
"source": "huggingface",
|
| 152 |
+
"deletedAt": null,
|
| 153 |
+
"is_gated": false,
|
| 154 |
+
"is_paid": false,
|
| 155 |
+
"model_id": null,
|
| 156 |
+
"model_version_id": null
|
| 157 |
+
},
|
| 158 |
+
{
|
| 159 |
+
"filename": "Wan2.2 v2 - T2V - Body Shots - LOW 14B.safetensors",
|
| 160 |
+
"url": "https://huggingface.co/klckmd/bdsht/resolve/main/Wan2.2 v2 - T2V - Body Shots - LOW 14B.safetensors",
|
| 161 |
+
"source": "huggingface",
|
| 162 |
+
"deletedAt": null,
|
| 163 |
+
"is_gated": false,
|
| 164 |
+
"is_paid": false,
|
| 165 |
+
"model_id": null,
|
| 166 |
+
"model_version_id": null
|
| 167 |
+
},
|
| 168 |
+
{
|
| 169 |
+
"filename": "bcs_low.safetensors",
|
| 170 |
+
"url": "https://huggingface.co/parksdh/wan_lora/resolve/main/bcs_low.safetensors",
|
| 171 |
+
"source": "huggingface",
|
| 172 |
+
"deletedAt": "2026-01-20T21:22:54.249Z",
|
| 173 |
+
"is_gated": false,
|
| 174 |
+
"is_paid": false,
|
| 175 |
+
"model_id": null,
|
| 176 |
+
"model_version_id": null
|
| 177 |
+
},
|
| 178 |
+
{
|
| 179 |
+
"filename": "Wan2.2 v2 - T2V - Body Shots - LOW 14B.safetensors",
|
| 180 |
+
"url": "https://huggingface.co/sbdfb/bodyjuice/resolve/main/Wan2.2 v2 - T2V - Body Shots - LOW 14B.safetensors",
|
| 181 |
+
"source": "huggingface",
|
| 182 |
+
"deletedAt": null,
|
| 183 |
+
"is_gated": false,
|
| 184 |
+
"is_paid": false,
|
| 185 |
+
"model_id": null,
|
| 186 |
+
"model_version_id": null
|
| 187 |
+
},
|
| 188 |
+
{
|
| 189 |
+
"filename": "103_Body_Shots_LOW_14B.safetensors",
|
| 190 |
+
"url": "https://huggingface.co/matedivya/ponylora-sep23/resolve/main/103_Body_Shots_LOW_14B.safetensors",
|
| 191 |
+
"source": "huggingface",
|
| 192 |
+
"deletedAt": null,
|
| 193 |
+
"is_gated": false,
|
| 194 |
+
"is_paid": false,
|
| 195 |
+
"model_id": null,
|
| 196 |
+
"model_version_id": null
|
| 197 |
+
},
|
| 198 |
+
{
|
| 199 |
+
"filename": "Wan2.2 v2 - T2V - Body Shots - LOW 14B.safetensors",
|
| 200 |
+
"url": "https://huggingface.co/Frankis72/Gtmoney/resolve/main/Wan2.2 v2 - T2V - Body Shots - LOW 14B.safetensors",
|
| 201 |
+
"source": "huggingface",
|
| 202 |
+
"deletedAt": "2026-02-22T17:53:11.397Z",
|
| 203 |
+
"is_gated": false,
|
| 204 |
+
"is_paid": false,
|
| 205 |
+
"model_id": null,
|
| 206 |
+
"model_version_id": null
|
| 207 |
+
},
|
| 208 |
+
{
|
| 209 |
+
"filename": "Wan2.2 v2 - T2V - Body Shots - LOW 14B.safetensors",
|
| 210 |
+
"url": "https://civitasbay.org/torrents/19EAB17F6FEF3AFD426E6AE1E83B17D93C9B4D84",
|
| 211 |
+
"source": "torrent",
|
| 212 |
+
"deletedAt": null,
|
| 213 |
+
"is_gated": false,
|
| 214 |
+
"is_paid": false,
|
| 215 |
+
"model_id": null,
|
| 216 |
+
"model_version_id": null
|
| 217 |
+
}
|
| 218 |
+
],
|
| 219 |
+
"hashes": {
|
| 220 |
+
"SHA256": "3FCCE2BD7B1C5EA00A655F8F5127CB59F050FDD186FD2743686128344B9F33C8"
|
| 221 |
+
},
|
| 222 |
+
"modelVersionId": 2116531,
|
| 223 |
+
"modelId": 1869932
|
| 224 |
+
}
|
| 225 |
+
],
|
| 226 |
+
"images": [
|
| 227 |
+
{
|
| 228 |
+
"id": 94433808,
|
| 229 |
+
"url": "https://c.genur.art/16dfc706-92a3-48a5-a777-e8d4f79143b3",
|
| 230 |
+
"nsfwLevel": 1,
|
| 231 |
+
"width": 480,
|
| 232 |
+
"height": 720,
|
| 233 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 234 |
+
"type": "video",
|
| 235 |
+
"minor": false,
|
| 236 |
+
"poi": false,
|
| 237 |
+
"hasMeta": true,
|
| 238 |
+
"hasPositivePrompt": true,
|
| 239 |
+
"onSite": false,
|
| 240 |
+
"remixOfId": null,
|
| 241 |
+
"video_url": "https://c.genur.art/16dfc706-92a3-48a5-a777-e8d4f79143b3",
|
| 242 |
+
"image_url": "https://vid.genur.art/unsafe/450x0/b64:aHR0cHM6Ly9jLmdlbnVyLmFydC8xNmRmYzcwNi05MmEzLTQ4YTUtYTc3Ny1lOGQ0Zjc5MTQzYjM",
|
| 243 |
+
"link": "https://genur.art/posts/94433808"
|
| 244 |
+
}
|
| 245 |
+
],
|
| 246 |
+
"allow_download": true,
|
| 247 |
+
"download_url": "/api/download/models/2116531",
|
| 248 |
+
"platform_url": "https://civitai.com/models/1869932?modelVersionId=2116531",
|
| 249 |
+
"civitai_model_id": 1869932,
|
| 250 |
+
"civitai_model_version_id": 2116531,
|
| 251 |
+
"href": "/models/1869932?modelVersionId=2116531",
|
| 252 |
+
"mirrors": [
|
| 253 |
+
{
|
| 254 |
+
"platform": "seaart",
|
| 255 |
+
"href": "/seaart/models/2a8a9080741244ef7330c5a4ddb65230/versions/a04fbc47d4035916f8566a2e6704a175",
|
| 256 |
+
"platform_url": "https://www.seaart.ai/models/detail/2a8a9080741244ef7330c5a4ddb65230?v=a04fbc47d4035916f8566a2e6704a175",
|
| 257 |
+
"name": "Bella",
|
| 258 |
+
"version_name": "Wan2.2 - T2V - LOW - 14B",
|
| 259 |
+
"id": "2a8a9080741244ef7330c5a4ddb65230",
|
| 260 |
+
"version_id": "a04fbc47d4035916f8566a2e6704a175"
|
| 261 |
+
},
|
| 262 |
+
{
|
| 263 |
+
"platform": "seaart",
|
| 264 |
+
"href": "/seaart/models/2a8a9080741244ef7330c5a4ddb65230/versions/c826862d9d1512c9a72605c40d4291ae",
|
| 265 |
+
"platform_url": "https://www.seaart.ai/models/detail/2a8a9080741244ef7330c5a4ddb65230?v=c826862d9d1512c9a72605c40d4291ae",
|
| 266 |
+
"name": "Bella",
|
| 267 |
+
"version_name": "Wan2.2 - T2V - High - 14B",
|
| 268 |
+
"id": "2a8a9080741244ef7330c5a4ddb65230",
|
| 269 |
+
"version_id": "c826862d9d1512c9a72605c40d4291ae"
|
| 270 |
+
}
|
| 271 |
+
],
|
| 272 |
+
"trainedWords": [],
|
| 273 |
+
"nsfwLevel": 15,
|
| 274 |
+
"stats": {
|
| 275 |
+
"downloadCount": 457,
|
| 276 |
+
"ratingCount": 0,
|
| 277 |
+
"rating": 0
|
| 278 |
+
},
|
| 279 |
+
"model": {
|
| 280 |
+
"name": "Bella",
|
| 281 |
+
"type": "LORA",
|
| 282 |
+
"nsfw": true,
|
| 283 |
+
"description": "<p>This is a fictional character that I trained at a user's request. They sent me their dataset of a character that they created. I captioned the data set and trained this model.</p><p></p><p>Trigger: A beautiful young woman with long brown hair</p>",
|
| 284 |
+
"tags": [
|
| 285 |
+
"character"
|
| 286 |
+
],
|
| 287 |
+
"allowNoCredit": true,
|
| 288 |
+
"allowCommercialUse": [
|
| 289 |
+
"Sell"
|
| 290 |
+
],
|
| 291 |
+
"allowDerivatives": true,
|
| 292 |
+
"allowDifferentLicense": true
|
| 293 |
+
},
|
| 294 |
+
"creator": {
|
| 295 |
+
"username": "playtime_ai",
|
| 296 |
+
"image": "",
|
| 297 |
+
"name": "playtime_ai",
|
| 298 |
+
"url": "/users/playtime_ai"
|
| 299 |
+
},
|
| 300 |
+
"source": "civarchive",
|
| 301 |
+
"is_deleted": true
|
| 302 |
+
},
|
| 303 |
+
"tags": [
|
| 304 |
+
"character"
|
| 305 |
+
],
|
| 306 |
+
"modelDescription": "<p>This is a fictional character that I trained at a user's request. They sent me their dataset of a character that they created. I captioned the data set and trained this model.</p><p></p><p>Trigger: A beautiful young woman with long brown hair</p>",
|
| 307 |
+
"civitai_deleted": false,
|
| 308 |
+
"favorite": false,
|
| 309 |
+
"exclude": false,
|
| 310 |
+
"db_checked": false,
|
| 311 |
+
"skip_metadata_refresh": false,
|
| 312 |
+
"metadata_source": "civarchive",
|
| 313 |
+
"last_checked_at": 1772082566.297822,
|
| 314 |
+
"usage_tips": "{}"
|
| 315 |
+
}
|
loras/Actions/Oral/Wan2.2v2-T2V-BodyCumShots-LOW14B.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:df42e33729e88beb5b9f2a3d324aeb3bcd25ab13f0850eef6bbdce2bc49b2e2b
|
| 3 |
+
size 606733
|
loras/Actions/Oral/Wan2.2v2-T2V-BodyCumShots-LOW14B.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3fcce2bd7b1c5ea00a655f8f5127cb59f050fdd186fd2743686128344b9f33c8
|
| 3 |
+
size 306807976
|
loras/Actions/Oral/Wan22_CumV2_High.metadata.json
ADDED
|
@@ -0,0 +1,397 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"file_name": "Wan22_CumV2_High",
|
| 3 |
+
"model_name": "Cum/Facial - Wan2.2",
|
| 4 |
+
"file_path": "G:/AI/ComfyUI/models/loras/Actions/Oral/Wan22_CumV2_High.safetensors",
|
| 5 |
+
"size": 306811488,
|
| 6 |
+
"modified": 1772081903.059979,
|
| 7 |
+
"sha256": "c4e1acce7b9aac29fb1e359e891c6bdcf0b0706c31b77be1ac03c9696962e3ea",
|
| 8 |
+
"base_model": "Wan Video 2.2 I2V-A14B",
|
| 9 |
+
"preview_url": "G:/AI/ComfyUI/models/loras/Actions/Oral/Wan22_CumV2_High.mp4",
|
| 10 |
+
"preview_nsfw_level": 16,
|
| 11 |
+
"notes": "",
|
| 12 |
+
"from_civitai": true,
|
| 13 |
+
"civitai": {
|
| 14 |
+
"id": 2460386,
|
| 15 |
+
"modelId": 1962545,
|
| 16 |
+
"name": "v2.0 - High",
|
| 17 |
+
"nsfwLevel": 60,
|
| 18 |
+
"createdAt": "2025-12-01T21:52:56.801Z",
|
| 19 |
+
"updatedAt": "2026-01-07T14:31:01.410Z",
|
| 20 |
+
"status": "Published",
|
| 21 |
+
"publishedAt": "2025-12-01T22:09:18.568Z",
|
| 22 |
+
"trainedWords": [
|
| 23 |
+
"cum shoots out of the penis and lands on her face",
|
| 24 |
+
"cum pulses out of the penis and onto her face and tongue and mouth"
|
| 25 |
+
],
|
| 26 |
+
"trainingStatus": null,
|
| 27 |
+
"trainingDetails": null,
|
| 28 |
+
"baseModel": "Wan Video 2.2 I2V-A14B",
|
| 29 |
+
"baseModelType": "Standard",
|
| 30 |
+
"earlyAccessEndsAt": null,
|
| 31 |
+
"earlyAccessConfig": null,
|
| 32 |
+
"description": null,
|
| 33 |
+
"uploadType": "Created",
|
| 34 |
+
"usageControl": "Download",
|
| 35 |
+
"air": "urn:air:wanvideo-22-i2v-a14b:lora:civitai:1962545@2460386",
|
| 36 |
+
"stats": {
|
| 37 |
+
"downloadCount": 21466,
|
| 38 |
+
"thumbsUpCount": 1396
|
| 39 |
+
},
|
| 40 |
+
"model": {
|
| 41 |
+
"name": "Cum/Facial - Wan2.2",
|
| 42 |
+
"type": "LORA",
|
| 43 |
+
"nsfw": true,
|
| 44 |
+
"poi": false,
|
| 45 |
+
"description": "<p>This Lora is trained on the <span style=\"background-color:rgb(26, 27, 30);color:rgb(193, 194, 197);font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";font-size:16px\">WAN 2.2 I2V 14B low and high noise models and can be used to generate facial cumshots. It works with or without a man present in the initial image.</span></p><p></p><p><strong>Update 07/01 - Alt V2 out</strong></p><p>Happy new year everyone! Hope you are all having a nice start of the year!</p><p></p><p>After some more testing, I decided to also put here a High/Low alt version of the V2, which seems to give better results in some situations. I think it's mostly in more zoomed in shots but could help in other cases as well. If there's something you are trying with the normal V2 and you think it could work a bit better, try out the alt version then.</p><p></p><p><strong>Update 01/12 - New version out</strong></p><p>Not everything I was going for worked out with this version, I need to tweak the dataset a bit a train again but I was anyway happy with the results and decided to share it.</p><p>Some concepts are not quite there and there's quite often alot of cum but... Enjoy!</p><p>Please check the Training Data zip attached to the High version for all the captions used in the training. Videos have the workflow attached.</p><p></p><p><strong>Update 02/10 - Attached workflow file (to the high version)</strong></p><p></p><p><span style=\"background-color:rgb(26, 27, 30);color:rgb(193, 194, 197);font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";font-size:16px\">Trigger Phrases (some work better than others, the least tested ones are highlighted below):</span></p><p>a woman is kneeling in front of a man</p><p>a woman is lying down on her back and the man is on top of her</p><p>a woman is kneeling in front of two men</p><p></p><p>cum shoots out of their penises and lands on her face and eyes</p><p></p><p>(cum shoots out of the penis and lands on her tongue)</p><p>cum shoots out of the penis and lands on her face and her eyes and her mouth</p><p>(cum shoots out of the penis and lands on her face and her mouth)</p><p>cum shoots out of the penis and into her mouth and tongue</p><p></p><p>big cum load</p><p>(high speed cumshot)</p><p>(thick cum load)</p><p>(cum strings)</p><p></p><p>she has her mouth open</p><p>she has her mouth open and her tongue out</p><p>she has her mouth and eyes closed</p><p></p><p>(she nervously smiles)</p><p>(she smiles)</p><p>(she flinches)</p><p>she frowns, she hates cum</p><p>she hates cum</p><p></p><p>the man strokes his penis back and forth with his hand</p><p>the men are stroking their penises back and forth with their hands</p><p>the woman strokes his penis back and forth with her hand</p><p></p><p>the view is from above</p><p>the view is from the side</p><p></p><p>big close-up</p><p>close-up</p><p></p><p>Works pretty ok with 6 steps and Wan21_I2V_14B_lightx2v_cfg_step_distill_lora_rank64.safetensors at strength 3 (high) and 1.5 (low).</p><p>CFG 1 - Euler Ancestral</p>",
|
| 46 |
+
"tags": [
|
| 47 |
+
"facial",
|
| 48 |
+
"cumshot",
|
| 49 |
+
"cum",
|
| 50 |
+
"concept"
|
| 51 |
+
],
|
| 52 |
+
"allowNoCredit": false,
|
| 53 |
+
"allowCommercialUse": [
|
| 54 |
+
"Image",
|
| 55 |
+
"RentCivit",
|
| 56 |
+
"Rent"
|
| 57 |
+
],
|
| 58 |
+
"allowDerivatives": false,
|
| 59 |
+
"allowDifferentLicense": false
|
| 60 |
+
},
|
| 61 |
+
"files": [
|
| 62 |
+
{
|
| 63 |
+
"id": 2348814,
|
| 64 |
+
"sizeKB": 299620.59375,
|
| 65 |
+
"name": "Wan22_CumV2_High.safetensors",
|
| 66 |
+
"type": "Model",
|
| 67 |
+
"pickleScanResult": "Success",
|
| 68 |
+
"pickleScanMessage": "No Pickle imports",
|
| 69 |
+
"virusScanResult": "Success",
|
| 70 |
+
"virusScanMessage": null,
|
| 71 |
+
"scannedAt": "2025-12-01T22:00:58.661Z",
|
| 72 |
+
"metadata": {
|
| 73 |
+
"format": "SafeTensor",
|
| 74 |
+
"size": null,
|
| 75 |
+
"fp": null
|
| 76 |
+
},
|
| 77 |
+
"hashes": {
|
| 78 |
+
"AutoV1": "5EF6D034",
|
| 79 |
+
"AutoV2": "C4E1ACCE7B",
|
| 80 |
+
"SHA256": "C4E1ACCE7B9AAC29FB1E359E891C6BDCF0B0706C31B77BE1AC03C9696962E3EA",
|
| 81 |
+
"CRC32": "C9CBD576",
|
| 82 |
+
"BLAKE3": "0847AB34D7FD667708F253433DF934BC9CC0AE5372E48CCCB73846A912AC06D8",
|
| 83 |
+
"AutoV3": "9EC8A7AF8D4F"
|
| 84 |
+
},
|
| 85 |
+
"primary": true,
|
| 86 |
+
"downloadUrl": "https://civitai.com/api/download/models/2460386"
|
| 87 |
+
},
|
| 88 |
+
{
|
| 89 |
+
"id": 2348807,
|
| 90 |
+
"sizeKB": 2.51171875,
|
| 91 |
+
"name": "Dataset.zip",
|
| 92 |
+
"type": "Training Data",
|
| 93 |
+
"pickleScanResult": "Success",
|
| 94 |
+
"pickleScanMessage": "No Pickle imports",
|
| 95 |
+
"virusScanResult": "Success",
|
| 96 |
+
"virusScanMessage": null,
|
| 97 |
+
"scannedAt": "2025-12-01T22:00:33.540Z",
|
| 98 |
+
"metadata": {
|
| 99 |
+
"format": "Other",
|
| 100 |
+
"size": null,
|
| 101 |
+
"fp": null
|
| 102 |
+
},
|
| 103 |
+
"hashes": {
|
| 104 |
+
"AutoV2": "F335B3D071",
|
| 105 |
+
"SHA256": "F335B3D0716B207A1916F8522E1BF0270D52318FFFAEBE15FF97AB750EF639BB",
|
| 106 |
+
"CRC32": "A62EF9F6",
|
| 107 |
+
"BLAKE3": "AE14319BD6A48841BED7BFE3032BE53BB672C469464FCD70BD7DE5B3F0C72A36",
|
| 108 |
+
"AutoV3": "2D66F87FAF64"
|
| 109 |
+
},
|
| 110 |
+
"primary": false,
|
| 111 |
+
"downloadUrl": "https://civitai.com/api/download/models/2460386?type=Training%20Data"
|
| 112 |
+
}
|
| 113 |
+
],
|
| 114 |
+
"images": [
|
| 115 |
+
{
|
| 116 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/45015b32-9d8c-419d-a29d-f9114da134ba/original=true/112286343.mp4",
|
| 117 |
+
"nsfwLevel": 16,
|
| 118 |
+
"width": 480,
|
| 119 |
+
"height": 720,
|
| 120 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 121 |
+
"type": "video",
|
| 122 |
+
"metadata": {
|
| 123 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 124 |
+
"size": 931661,
|
| 125 |
+
"audio": false,
|
| 126 |
+
"width": 480,
|
| 127 |
+
"height": 720,
|
| 128 |
+
"duration": 5.031
|
| 129 |
+
},
|
| 130 |
+
"minor": false,
|
| 131 |
+
"poi": false,
|
| 132 |
+
"meta": {
|
| 133 |
+
"prompt": "a woman is lying on her back and a man is on top of her, she has her mouth open and eyes closed, he is stroking his penis back and forth with his hands, she closed her mouth and looks up, cum shoots out of the penis in twin jets and lands on her face and clothes and into her mouth, she reacts to the cum by closing her eyes and opening her mouth and frowning, she flinches, she spits out a little cum, cum drips down from the penis onto her clothes, she hates cum, high-velocity cumshot, the cum is translucent, the cum is sticky, pov shot"
|
| 134 |
+
},
|
| 135 |
+
"availability": "Public",
|
| 136 |
+
"hasMeta": true,
|
| 137 |
+
"hasPositivePrompt": true,
|
| 138 |
+
"onSite": false,
|
| 139 |
+
"remixOfId": null
|
| 140 |
+
},
|
| 141 |
+
{
|
| 142 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/6ead1781-d4f7-45f6-b13d-b8bb9de016df/original=true/112349518.mp4",
|
| 143 |
+
"nsfwLevel": 16,
|
| 144 |
+
"width": 432,
|
| 145 |
+
"height": 720,
|
| 146 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 147 |
+
"type": "video",
|
| 148 |
+
"metadata": {
|
| 149 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 150 |
+
"size": 666229,
|
| 151 |
+
"audio": false,
|
| 152 |
+
"width": 432,
|
| 153 |
+
"height": 720,
|
| 154 |
+
"duration": 5
|
| 155 |
+
},
|
| 156 |
+
"minor": false,
|
| 157 |
+
"poi": false,
|
| 158 |
+
"meta": {
|
| 159 |
+
"prompt": "a woman is kneeling and a man is standing next to her, he is grabbing her head with one hand, he is stroking his penis back and forth with his hands, the penis tip taps her forehead with each stroke, she is unhappy, cum pulses out of the penis and onto her face, she starts sobbing, some of the cum flows down her face, the cum is sticky, the cum is translucent, front view"
|
| 160 |
+
},
|
| 161 |
+
"availability": "Public",
|
| 162 |
+
"hasMeta": true,
|
| 163 |
+
"hasPositivePrompt": true,
|
| 164 |
+
"onSite": false,
|
| 165 |
+
"remixOfId": null
|
| 166 |
+
},
|
| 167 |
+
{
|
| 168 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/43c5d02a-f99b-47c7-b92a-ef7027cf428e/original=true/112286446.mp4",
|
| 169 |
+
"nsfwLevel": 16,
|
| 170 |
+
"width": 720,
|
| 171 |
+
"height": 464,
|
| 172 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 173 |
+
"type": "video",
|
| 174 |
+
"metadata": {
|
| 175 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 176 |
+
"size": 782251,
|
| 177 |
+
"audio": false,
|
| 178 |
+
"width": 720,
|
| 179 |
+
"height": 464,
|
| 180 |
+
"duration": 5.031
|
| 181 |
+
},
|
| 182 |
+
"minor": false,
|
| 183 |
+
"poi": false,
|
| 184 |
+
"meta": {
|
| 185 |
+
"prompt": "a woman is kneeling in front of a man, she is giving him a blowjob focused on the penis tip, the penis tip is partially in her mouth and she is not moving her head, there is cum on the penis and penis tip, she slowly moves her head away until the penis is only touching her lower lip, thick cum oozes out of her mouth and oozes down along the penis, the cum is thick and sticky, three-quarter shot, extreme close-up"
|
| 186 |
+
},
|
| 187 |
+
"availability": "Public",
|
| 188 |
+
"hasMeta": true,
|
| 189 |
+
"hasPositivePrompt": true,
|
| 190 |
+
"onSite": false,
|
| 191 |
+
"remixOfId": null
|
| 192 |
+
},
|
| 193 |
+
{
|
| 194 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/5da447ed-c896-42da-9f0b-8c86592b4c7a/original=true/112286625.mp4",
|
| 195 |
+
"nsfwLevel": 16,
|
| 196 |
+
"width": 488,
|
| 197 |
+
"height": 720,
|
| 198 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 199 |
+
"type": "video",
|
| 200 |
+
"metadata": {
|
| 201 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 202 |
+
"size": 3543091,
|
| 203 |
+
"audio": false,
|
| 204 |
+
"width": 488,
|
| 205 |
+
"height": 720,
|
| 206 |
+
"duration": 5.031
|
| 207 |
+
},
|
| 208 |
+
"minor": false,
|
| 209 |
+
"poi": false,
|
| 210 |
+
"meta": {
|
| 211 |
+
"prompt": "a woman is kneeling in front of a man, she has her mouth open and her head is tilted upwards, he is grabbing her head with one hand, he is grabbing his penis, cum shoots out of the penis and lands on her face and hair, some cum also hits his hand that is grabbing her head, she reacts to the cum by frowning, some of the cum flows down her face, multiple ropes of cum across her face, cum drips down from the penis onto her mouth, the cum is sticky, three-quarter shot"
|
| 212 |
+
},
|
| 213 |
+
"availability": "Public",
|
| 214 |
+
"hasMeta": true,
|
| 215 |
+
"hasPositivePrompt": true,
|
| 216 |
+
"onSite": false,
|
| 217 |
+
"remixOfId": null
|
| 218 |
+
},
|
| 219 |
+
{
|
| 220 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d6d74499-3f0d-452c-a7d3-9698498fcbc0/original=true/112286688.mp4",
|
| 221 |
+
"nsfwLevel": 16,
|
| 222 |
+
"width": 488,
|
| 223 |
+
"height": 720,
|
| 224 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 225 |
+
"type": "video",
|
| 226 |
+
"metadata": {
|
| 227 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 228 |
+
"size": 1734895,
|
| 229 |
+
"audio": false,
|
| 230 |
+
"width": 488,
|
| 231 |
+
"height": 720,
|
| 232 |
+
"duration": 5.031
|
| 233 |
+
},
|
| 234 |
+
"minor": false,
|
| 235 |
+
"poi": false,
|
| 236 |
+
"meta": {
|
| 237 |
+
"prompt": "a woman is kneeling in front of a man, she has her mouth open and her tongue out, the penis tip is resting on the tongue, cum shoots out of the penis and lands on her face and tongue and into her mouth, most of the cum goes on her tongue, some of the cum doesn't go in her mouth and flows down the side of her tongue, the cum is thick and sticky, the view is from the side"
|
| 238 |
+
},
|
| 239 |
+
"availability": "Public",
|
| 240 |
+
"hasMeta": true,
|
| 241 |
+
"hasPositivePrompt": true,
|
| 242 |
+
"onSite": false,
|
| 243 |
+
"remixOfId": null
|
| 244 |
+
},
|
| 245 |
+
{
|
| 246 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d87b6f36-9ba7-4f70-9a05-a2938e277a2e/original=true/112286747.mp4",
|
| 247 |
+
"nsfwLevel": 16,
|
| 248 |
+
"width": 488,
|
| 249 |
+
"height": 720,
|
| 250 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 251 |
+
"type": "video",
|
| 252 |
+
"metadata": {
|
| 253 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 254 |
+
"size": 1758880,
|
| 255 |
+
"audio": false,
|
| 256 |
+
"width": 488,
|
| 257 |
+
"height": 720,
|
| 258 |
+
"duration": 5.031
|
| 259 |
+
},
|
| 260 |
+
"minor": false,
|
| 261 |
+
"poi": false,
|
| 262 |
+
"meta": {
|
| 263 |
+
"prompt": "a woman is kneeling in front of a man, she has her mouth open and her head is tilted upwards, he is grabbing her head with one hand, he is grabbing his penis, cum shoots out of the penis and lands on her face and hair, some cum also hits his hand that is grabbing her head, she reacts to the cum by frowning, some of the cum flows down her face, multiple ropes of cum across her face, cum drips down from the penis onto her mouth, the cum is sticky, three-quarter shot"
|
| 264 |
+
},
|
| 265 |
+
"availability": "Public",
|
| 266 |
+
"hasMeta": true,
|
| 267 |
+
"hasPositivePrompt": true,
|
| 268 |
+
"onSite": false,
|
| 269 |
+
"remixOfId": null
|
| 270 |
+
},
|
| 271 |
+
{
|
| 272 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/2e869b2d-d54d-4172-bc4c-1ffa68d91838/original=true/112287035.mp4",
|
| 273 |
+
"nsfwLevel": 16,
|
| 274 |
+
"width": 488,
|
| 275 |
+
"height": 720,
|
| 276 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 277 |
+
"type": "video",
|
| 278 |
+
"metadata": {
|
| 279 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 280 |
+
"size": 1533273,
|
| 281 |
+
"audio": false,
|
| 282 |
+
"width": 488,
|
| 283 |
+
"height": 720,
|
| 284 |
+
"duration": 5.031
|
| 285 |
+
},
|
| 286 |
+
"minor": false,
|
| 287 |
+
"poi": false,
|
| 288 |
+
"meta": {
|
| 289 |
+
"prompt": "a woman is kneeling in front of a man, she has cum on her face, she momentarily has a viscous cum strand going from the face to the penis tip, he is stroking his penis back and forth with his hands, most of the cum oozes down her face and mouth and some falls off, cum dangling from her chin and jaw, the cum is thick and sticky, three-quarter shot, ultra close-up"
|
| 290 |
+
},
|
| 291 |
+
"availability": "Public",
|
| 292 |
+
"hasMeta": true,
|
| 293 |
+
"hasPositivePrompt": true,
|
| 294 |
+
"onSite": false,
|
| 295 |
+
"remixOfId": null
|
| 296 |
+
},
|
| 297 |
+
{
|
| 298 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/f225a0fe-2845-4070-a8eb-e0afb37b376e/original=true/112292042.mp4",
|
| 299 |
+
"nsfwLevel": 16,
|
| 300 |
+
"width": 720,
|
| 301 |
+
"height": 384,
|
| 302 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 303 |
+
"type": "video",
|
| 304 |
+
"metadata": {
|
| 305 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 306 |
+
"size": 707458,
|
| 307 |
+
"audio": false,
|
| 308 |
+
"width": 720,
|
| 309 |
+
"height": 384,
|
| 310 |
+
"duration": 5.031
|
| 311 |
+
},
|
| 312 |
+
"minor": false,
|
| 313 |
+
"poi": false,
|
| 314 |
+
"meta": {
|
| 315 |
+
"prompt": "a woman is kneeling in front of a man, she is giving him a blowjob focused on the penis tip, she slowly moves her head away from the penis until it is no longer in her mouth, as she closes her mouth and moves away the cum in her mouth is visible, a viscous cum strand going from the penis tip and her mouth is formed, the cum is sticky, three-quarter shot, extreme close-up"
|
| 316 |
+
},
|
| 317 |
+
"availability": "Public",
|
| 318 |
+
"hasMeta": true,
|
| 319 |
+
"hasPositivePrompt": true,
|
| 320 |
+
"onSite": false,
|
| 321 |
+
"remixOfId": null
|
| 322 |
+
},
|
| 323 |
+
{
|
| 324 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/6f0f18b9-ef03-4fcb-bd63-536095ef7217/original=true/112292333.mp4",
|
| 325 |
+
"nsfwLevel": 16,
|
| 326 |
+
"width": 464,
|
| 327 |
+
"height": 776,
|
| 328 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 329 |
+
"type": "video",
|
| 330 |
+
"metadata": {
|
| 331 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 332 |
+
"size": 875233,
|
| 333 |
+
"audio": false,
|
| 334 |
+
"width": 464,
|
| 335 |
+
"height": 776,
|
| 336 |
+
"duration": 5
|
| 337 |
+
},
|
| 338 |
+
"minor": false,
|
| 339 |
+
"poi": false,
|
| 340 |
+
"meta": {
|
| 341 |
+
"prompt": "a woman is kneeling in front of a man, she has her mouth and eyes closed, he is grabbing her head with one hand, he is stroking his penis back and forth with his hands, cum shoots out of the penis and lands on her face and mouth and hair, some of the cum flows down her face and across her eyes, high-velocity cumshot, the cum is thick and sticky, the cum is translucent, pov shot"
|
| 342 |
+
},
|
| 343 |
+
"availability": "Public",
|
| 344 |
+
"hasMeta": true,
|
| 345 |
+
"hasPositivePrompt": true,
|
| 346 |
+
"onSite": false,
|
| 347 |
+
"remixOfId": null
|
| 348 |
+
},
|
| 349 |
+
{
|
| 350 |
+
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/08962944-763d-4a09-be8b-27063c760ef4/original=true/112381864.mp4",
|
| 351 |
+
"nsfwLevel": 16,
|
| 352 |
+
"width": 1024,
|
| 353 |
+
"height": 608,
|
| 354 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 355 |
+
"type": "video",
|
| 356 |
+
"metadata": {
|
| 357 |
+
"hash": "U00000fQfQfQfQfQfQfQfQfQfQfQfQfQfQfQ",
|
| 358 |
+
"size": 976803,
|
| 359 |
+
"audio": false,
|
| 360 |
+
"width": 1024,
|
| 361 |
+
"height": 608,
|
| 362 |
+
"duration": 5
|
| 363 |
+
},
|
| 364 |
+
"minor": false,
|
| 365 |
+
"poi": false,
|
| 366 |
+
"meta": {
|
| 367 |
+
"prompt": "a woman is kneeling in front of a man, she has her mouth open and her tongue out, he is stroking his penis back and forth with his hands, cum shoots out of the penis and lands on her face and tongue, some of the cum flows down her face and onto her tongue, three-quarter shot"
|
| 368 |
+
},
|
| 369 |
+
"availability": "Public",
|
| 370 |
+
"hasMeta": true,
|
| 371 |
+
"hasPositivePrompt": true,
|
| 372 |
+
"onSite": false,
|
| 373 |
+
"remixOfId": null
|
| 374 |
+
}
|
| 375 |
+
],
|
| 376 |
+
"downloadUrl": "https://civitai.com/api/download/models/2460386",
|
| 377 |
+
"creator": {
|
| 378 |
+
"username": "Civitaiwolfxx",
|
| 379 |
+
"image": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/1bc98465-dc56-4845-b2f4-16da9c87eb62/width=96/Civitaiwolfxx.jpeg"
|
| 380 |
+
}
|
| 381 |
+
},
|
| 382 |
+
"tags": [
|
| 383 |
+
"facial",
|
| 384 |
+
"cumshot",
|
| 385 |
+
"cum",
|
| 386 |
+
"concept"
|
| 387 |
+
],
|
| 388 |
+
"modelDescription": "<p>This Lora is trained on the <span style=\"background-color:rgb(26, 27, 30);color:rgb(193, 194, 197);font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";font-size:16px\">WAN 2.2 I2V 14B low and high noise models and can be used to generate facial cumshots. It works with or without a man present in the initial image.</span></p><p></p><p><strong>Update 07/01 - Alt V2 out</strong></p><p>Happy new year everyone! Hope you are all having a nice start of the year!</p><p></p><p>After some more testing, I decided to also put here a High/Low alt version of the V2, which seems to give better results in some situations. I think it's mostly in more zoomed in shots but could help in other cases as well. If there's something you are trying with the normal V2 and you think it could work a bit better, try out the alt version then.</p><p></p><p><strong>Update 01/12 - New version out</strong></p><p>Not everything I was going for worked out with this version, I need to tweak the dataset a bit a train again but I was anyway happy with the results and decided to share it.</p><p>Some concepts are not quite there and there's quite often alot of cum but... Enjoy!</p><p>Please check the Training Data zip attached to the High version for all the captions used in the training. Videos have the workflow attached.</p><p></p><p><strong>Update 02/10 - Attached workflow file (to the high version)</strong></p><p></p><p><span style=\"background-color:rgb(26, 27, 30);color:rgb(193, 194, 197);font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";font-size:16px\">Trigger Phrases (some work better than others, the least tested ones are highlighted below):</span></p><p>a woman is kneeling in front of a man</p><p>a woman is lying down on her back and the man is on top of her</p><p>a woman is kneeling in front of two men</p><p></p><p>cum shoots out of their penises and lands on her face and eyes</p><p></p><p>(cum shoots out of the penis and lands on her tongue)</p><p>cum shoots out of the penis and lands on her face and her eyes and her mouth</p><p>(cum shoots out of the penis and lands on her face and her mouth)</p><p>cum shoots out of the penis and into her mouth and tongue</p><p></p><p>big cum load</p><p>(high speed cumshot)</p><p>(thick cum load)</p><p>(cum strings)</p><p></p><p>she has her mouth open</p><p>she has her mouth open and her tongue out</p><p>she has her mouth and eyes closed</p><p></p><p>(she nervously smiles)</p><p>(she smiles)</p><p>(she flinches)</p><p>she frowns, she hates cum</p><p>she hates cum</p><p></p><p>the man strokes his penis back and forth with his hand</p><p>the men are stroking their penises back and forth with their hands</p><p>the woman strokes his penis back and forth with her hand</p><p></p><p>the view is from above</p><p>the view is from the side</p><p></p><p>big close-up</p><p>close-up</p><p></p><p>Works pretty ok with 6 steps and Wan21_I2V_14B_lightx2v_cfg_step_distill_lora_rank64.safetensors at strength 3 (high) and 1.5 (low).</p><p>CFG 1 - Euler Ancestral</p>",
|
| 389 |
+
"civitai_deleted": false,
|
| 390 |
+
"favorite": false,
|
| 391 |
+
"exclude": false,
|
| 392 |
+
"db_checked": false,
|
| 393 |
+
"skip_metadata_refresh": false,
|
| 394 |
+
"metadata_source": "civitai_api",
|
| 395 |
+
"last_checked_at": 1772082585.25456,
|
| 396 |
+
"usage_tips": "{}"
|
| 397 |
+
}
|