{"behavior":"degenerate_repetition","label_filter":null,"limit":10,"next_offset":3635,"offset":3625,"previous_offset":null,"rows":[{"assistant_initiates":false,"asst_text":"Certainly! Here's your fully updated Tampermonkey userscript with the **small but crucial tweak** applied:\n\n- The age restriction **overlay is kept present and visually hidden** (opacity=0).\n- The **overlay has `pointer-events: none`** so hover events \"pass through\" to underlying thumbnail elements.\n- Blur filters are removed from thumbnail images.\n- MutationObserver and interval reapply fixes as VK dynamically changes the page.\n\n```js\n// ==UserScript==\n// @name         VK Video Unlocker and Age Restriction Removal (Universal 2024 - Hover Preview Fix Final)\n// @namespace    http://tampermonkey.net/\n// @version      3.7\n// @description  Remove VK video age restriction text/blur but keep hover preview working on thumbnails for vk.com and vkvideo.ru, updated 2024.\n// @author       ChatGPT + user adaptions\n// @license      MIT\n// @match        *://vk.com/*\n// @match        *://*.vk.com/*\n// @match        *://vkvideo.ru/*\n// @match        *://*.vkvideo.ru/*\n// @grant        none\n// ==/UserScript==\n\n(function() {\n    'use strict';\n\n    const processedVideos = new WeakSet();\n\n    // --- Fix age restriction overlay: clear text+icon, hide visually, disable pointer events ---\n    function fixAgeRestrictionOverlay() {\n        document.querySelectorAll('.vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF').forEach(overlay => {\n            // Clear age restriction text\n            const titleSpan = overlay.querySelector('.vkitVideoCardRestrictionOverlay__title--DuGrF');\n            if (titleSpan) {\n                titleSpan.textContent = '';\n            }\n\n            // Hide the overlay icon/svg\n            const svgIcon = overlay.querySelector('svg');\n            if (svgIcon) {\n                svgIcon.style.display = 'none';\n            }\n\n            // Make overlay invisible and allow hover events to reach underlying elements\n            overlay.style.opacity = '0';\n            overlay.style.pointerEvents = 'none'; // THIS is the key fix!\n            overlay.style.filter = 'none';\n            overlay.style.display = 'block';\n        });\n\n        // Remove blur filters on preview images\n        document.querySelectorAll('.vkitVideoCardPreviewImage__imgBlurred--uTIvm').forEach(img => {\n            img.style.filter = 'none';\n            img.style.webkitFilter = 'none';\n            img.style.opacity = '1';\n        });\n    }\n\n    function removeBlurAndRestrictions(skipRemoveRestrictionElements = false) {\n        const blurSelectors = [\n            '.videoplayer--blur',\n            '.videoplayer_thumb_blur',\n            '.vkitVideoCardPreviewImage__imgBlurred--uTIvm',\n            '.vkitVideoCardRestrictionOverlay__restriction--fAC7b',\n            '.bookmarks_row_type_video [class*=\"blur\"]',\n            '.bookmarks_row_type_video [style*=\"blur\"]',\n        ];\n        document.querySelectorAll(blurSelectors.join(',')).forEach(el => {\n            el.style.filter = 'none';\n            el.style.webkitFilter = 'none';\n            el.style.opacity = '1';\n            el.style.display = 'block';\n            el.style.pointerEvents = 'auto';\n\n            el.classList.remove(\n                'videoplayer--blur',\n                'videoplayer_thumb_blur',\n                'vkitVideoCardPreviewImage__imgBlurred--uTIvm',\n                'vkitVideoCardRestrictionOverlay__restriction--fAC7b'\n            );\n        });\n\n        if (!skipRemoveRestrictionElements) {\n            document.querySelectorAll('.VideoRestriction, .videoplayer--hasRestriction').forEach(el => {\n                if (el && el.parentNode) el.parentNode.removeChild(el);\n            });\n        } else {\n            document.querySelectorAll('.VideoRestriction').forEach(el => {\n                el.style.display = 'none';\n                el.style.pointerEvents = 'none';\n                el.style.opacity = '0';\n            });\n        }\n\n        document.querySelectorAll('.videoplayer_controls, .vkitVideoCardControls__controls--Wvyu7').forEach(controls => {\n            controls.style.pointerEvents = 'auto';\n            controls.style.opacity = '1';\n        });\n\n        document.querySelectorAll('.bookmarks_row_type_video').forEach(card => {\n            card.style.filter = 'none';\n            card.style.opacity = '1';\n            card.style.pointerEvents = 'auto';\n            card.style.display = 'block';\n        });\n    }\n\n    function handleBookmarks() {\n        removeBlurAndRestrictions(true);\n\n        document.querySelectorAll('.bookmarks_row_type_video').forEach(card => {\n            card.style.filter = 'none';\n            card.style.opacity = '1';\n            card.style.pointerEvents = 'auto';\n            card.style.display = 'block';\n\n            const thumbs = card.querySelector('.page_post_sized_thumbs');\n            if (thumbs) {\n                thumbs.style.filter = 'none';\n                thumbs.style.opacity = '1';\n                thumbs.style.pointerEvents = 'auto';\n                thumbs.style.display = 'block';\n            }\n        });\n\n        // Click age confirmation buttons to unlock previews\n        setTimeout(() => {\n            document.querySelectorAll('.bookmarks_row_type_video .VideoRestriction__button').forEach(btn => {\n                try { btn.click(); } catch(e) {}\n            });\n        }, 300);\n\n        removeBlurAndRestrictions(true);\n    }\n\n    function setupVideoClickHandler(video) {\n        if (processedVideos.has(video)) return;\n        processedVideos.add(video);\n\n        video.style.cursor = 'pointer';\n\n        video._userPaused = false; // initialize flag\n\n        video.addEventListener('click', (e) => {\n            if (e.target !== video) return;\n\n            if (video.paused) {\n                video.play().catch(() => {});\n                video._userPaused = false;\n            } else {\n                video.pause();\n                video._userPaused = true;\n            }\n            e.stopImmediatePropagation();\n        }, true);\n\n        video.addEventListener('pause', () => {\n            if (!video._programmaticPause) {\n                video._userPaused = true;\n            }\n        });\n\n        video.addEventListener('play', () => {\n            video._userPaused = false;\n        });\n    }\n\n    function handleVkComVideos() {\n        removeAgeGateIfAny(document);\n\n        const videos = document.querySelectorAll('video.videoplayer_media_provider');\n        if (!videos || videos.length === 0) return;\n\n        videos.forEach(video => {\n            setupVideoClickHandler(video);\n            if (video.readyState > 2 && video.paused && !video._userPaused) {\n                video.play().catch(() => {});\n            }\n        });\n    }\n\n    function handleVkVideoRuPlayer() {\n        removeBlurAndRestrictions();\n\n        const videos = document.querySelectorAll('video.videoplayer_media_provider');\n        if (!videos || videos.length === 0) return;\n\n        videos.forEach(video => {\n            setupVideoClickHandler(video);\n            if (video.readyState > 2 && video.paused && !video._userPaused) {\n                video.play().catch(() => {\n                    const playBtn = document.querySelector('.videoplayer_btn_play');\n                    if (playBtn) playBtn.style.display = 'block';\n                });\n            }\n        });\n    }\n\n    function removeAgeGateIfAny(scope = document) {\n        const watchButtons = scope.querySelectorAll('.VideoRestriction__button');\n        watchButtons.forEach(btn => {\n            try { btn.click(); } catch(e) {}\n        });\n\n        removeBlurAndRestrictions();\n    }\n\n    function processAll() {\n        const hostname = window.location.hostname;\n        const href = window.location.href;\n\n        if (hostname.includes('vkvideo.ru')) {\n            handleVkVideoRuPlayer();\n        } else if (hostname.includes('vk.com')) {\n            if (href.includes('/bookmarks')) {\n                handleBookmarks();\n            } else {\n                handleVkComVideos();\n            }\n        }\n        fixAgeRestrictionOverlay();\n    }\n\n    function init() {\n        processAll();\n\n        const observer = new MutationObserver(() => {\n            processAll();\n        });\n\n        observer.observe(document.body, { childList: true, subtree: true });\n\n        setInterval(processAll, 2500);\n    }\n\n    if (document.readyState === 'loading') {\n        document.addEventListener('DOMContentLoaded', init);\n    } else {\n        init();\n    }\n})();\n```\n\n---\n\n### How to install and use\n\n1. Replace your existing Tampermonkey script with this code.\n2. Reload vk.com or vkvideo.ru video listings.\n3. Age restriction text and blur will be removed.\n4. The video thumbnails on hover **will now correctly trigger preview playback**.\n\n---\n\nIf you still experience any issue, feel free to share new HTML or behavior, and I can help adjust!","behavior":"degenerate_repetition","conversation_hash":"ac2fa079ff150c44e15cdc01a55430c6","conversation_redacted":false,"conversation_toxic":false,"country":"Russia","empty_output":false,"evidence_codes":[],"label":"absent","label_present":false,"label_qualified":false,"label_source":"Final dense release","language":"English","model":"gpt-4.1-mini-2025-04-14","n_chars":8851,"n_turns_in_conversation":15,"n_words":721,"source_row_offset":3625,"source_shard":"turns-00085.parquet","timestamp":"Sat, 05 Jul 2025 15:36:06 GMT","turn_id":"0e74e13002b68d0235adf658","turn_index":6,"user_text":"provide a fully updated userscript with this small tweak applied."},{"assistant_initiates":false,"asst_text":"Thanks for the detailed console logs. The repeated \"Third-party cookie will be blocked\" message is a warning (not an error) and unlikely to cause preview playback failure. The 500 errors on ad and stats endpoints are server issues not caused by your script. The preload and event listener violations are performance warnings. None directly indicate a script error blocking preview.\n\n---\n\n### What this means for your preview problem:\n\n1. **Your userscript manipulation (removing blur + hiding age overlay) by itself does not break site JS execution.**\n2. The failing previews are **likely caused by how VK\u2019s own scripts require precise DOM structure and state** rather than from console errors.\n3. Since the preview **only works when the age restriction overlay is untouched and present with full styling**, your removal/hiding of overlays breaks VK's preview activation logic.\n\n---\n\n### How VK might control preview internally (likely scenario):\n\n- VK toggles overlays, classes, inline styles, and JS event listeners very precisely.\n- The age restriction overlay probably has attached event handlers and state flags that tell their code when to start previews.\n- Your userscript currently removes or hides **critical parts**, preventing VK code from triggering preview playback on hover.\n\n---\n\n### Steps I recommend:\n\n#### 1. Avoid removing or hiding the age restriction overlay element completely.\n\nInstead:\n\n- Experiment with **only removing the *text*** and/or icon inside the overlay,  \n- **NOT setting `opacity: 0` or `pointer-events: none`**, keep the overlay visible and fully interactive.\n\nThat way VK's JS can fully detect the overlay hover.\n\n---\n\n#### 2. Use CSS overrides to only hide the problematic text and blur, preserving event flow fully:\n\n```css\n/* Hide age restriction label text */\n.vkitVideoCardRestrictionOverlay__title--DuGrF {\n    color: transparent !important;\n    text-shadow: none !important;\n}\n\n/* Hide the overlay icon */\n.vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF svg {\n    display: none !important;\n}\n\n/* Remove blur from thumbnails */\n.vkitVideoCardPreviewImage__imgBlurred--uTIvm {\n    filter: none !important;\n    opacity: 1 !important;\n}\n```\n\nInject this CSS via your userscript instead of style changes with JS, so no risk of breaking event handlers.\n\n---\n\n#### 3. Do **NOT** remove `.vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF` element nor set `opacity: 0` or `pointer-events: none`.\n\n---\n\n#### 4. If you want to clear text completely and keep overlay, you can try only:\n\n```js\ndocument.querySelectorAll('.vkitVideoCardRestrictionOverlay__title--DuGrF').forEach(el => {\n    el.textContent = ' ';\n});\ndocument.querySelectorAll('.vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF svg').forEach(el => {\n    el.style.display = 'none';\n});\n```\n\n---\n\n## Complete minimal userscript example applying above:\n\n```js\n// ==UserScript==\n// @name         VK Video Unlocker - Minimal Hover Fix 2024\n// @namespace    http://tampermonkey.net/\n// @version      1.0\n// @description  Remove age label text + blur only; keep overlay visible & interactive for hover preview on VK video thumbnails\n// @match        *://vk.com/*\n// @match        *://*.vk.com/*\n// @grant        none\n// ==/UserScript==\n\n(function() {\n    'use strict';\n\n    function injectCSS() {\n        const css = `\n            .vkitVideoCardRestrictionOverlay__title--DuGrF {\n                color: transparent !important;\n                text-shadow: none !important;\n            }\n            .vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF svg {\n                display: none !important;\n            }\n            .vkitVideoCardPreviewImage__imgBlurred--uTIvm {\n                filter: none !important;\n                opacity: 1 !important;\n            }\n        `;\n        const style = document.createElement('style');\n        style.appendChild(document.createTextNode(css));\n        document.head.appendChild(style);\n    }\n\n    function clearOverlayText() {\n        document.querySelectorAll('.vkitVideoCardRestrictionOverlay__title--DuGrF').forEach(el => {\n            el.textContent = ' ';\n        });\n    }\n\n    function main() {\n        injectCSS();\n        clearOverlayText();\n    }\n\n    main();\n\n    // Re-apply every 2 seconds since VK dynamically modifies DOM\n    setInterval(main, 2000);\n\n})();\n```\n\n---\n\n### Try this minimal approach and check if:\n\n- The preview plays on hover (likely yes)\n- No visible \"\u0412\u0438\u0434\u0435\u043e \u0441 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c\" text or blur remains\n- No console errors or JS breakage from your changes\n\n---\n\n### Why this may work better\n\n- You **only hide text and blur visually by CSS** \u2014 no DOM removals or pointer-events disabled.\n- VK\u2019s JS hooks and event listeners on the overlay remain intact.\n- You preserve the exact overlay structure and styles except for visually hiding labels.\n\n---\n\n## Finally! About the repeated \"Third-party cookie\" warning:\n\n- This is a standard message in Chromium browsers about privacy changes.\n- It will not block site JS or user JS scripts.\n- You don't need to fix or worry about these warnings for your userscript preview issue.\n\n---\n\nIf you want, I can help to merge this minimal method with your original full script \u2014 just ask!\n\n---\n\n**Summary:**  \nFor VK hover preview to work, **do NOT remove or hide the overlay element or disable pointer events**. Instead, just visually hide the text and blur with CSS while leaving overlay fully intact. This preserves VK's internal preview triggers.","behavior":"degenerate_repetition","conversation_hash":"ac2fa079ff150c44e15cdc01a55430c6","conversation_redacted":false,"conversation_toxic":false,"country":"Russia","empty_output":false,"evidence_codes":[],"label":"absent","label_present":false,"label_qualified":false,"label_source":"Final dense release","language":"English","model":"gpt-4.1-mini-2025-04-14","n_chars":89775,"n_turns_in_conversation":15,"n_words":11026,"source_row_offset":3626,"source_shard":"turns-00085.parquet","timestamp":"Sat, 05 Jul 2025 15:36:06 GMT","turn_id":"10e1004d2570de99d450c84a","turn_index":7,"user_text":"still the same, try analyze browser console log to fix error for preview video not playing on mouse hover:\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nThird-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.\nA preload for '<URL>' is found, but is not used because the request credentials mode does not match. Consider taking a look at crossorigin attribute.\nA preload for '<URL>' is found, but is not used because the request credentials mode does not match. Consider taking a look at crossorigin attribute.\nA preload for '<URL>' is found, but is not used because the request credentials mode does not match. Consider taking a look at crossorigin attribute.\nA preload for '<URL>' is found, but is not used because the request credentials mode does not match. Consider taking a look at crossorigin attribute.\nA preload for '<URL>' is found, but is not used because the request credentials mode does not match. Consider taking a look at crossorigin attribute.\nA preload for '<URL>' is found, but is not used because the request credentials mode does not match. Consider taking a look at crossorigin attribute.\nA preload for '<URL>' is found, but is not used because the request credentials mode does not match. Consider taking a look at crossorigin attribute.\nA preload for '<URL>' is found, but is not used because the request credentials mode does not match. Consider taking a look at crossorigin attribute.\nA preload for '<URL>' is found, but is not used because the request credentials mode does not match. Consider taking a look at crossorigin attribute.\nA preload for '<URL>' is found, but is not used because the request credentials mode does not match. Consider taking a look at crossorigin attribute.\nA preload for '<URL>' is found, but is not used because the request credentials mode does not match. Consider taking a look at crossorigin attribute.\nA preload for '<URL>' is found, but is not used because the request credentials mode does not match. Consider taking a look at crossorigin attribute.\nA preload for '<URL>' is found, but is not used because the request credentials mode does not match. Consider taking a look at crossorigin attribute.\nA preload for '<URL>' is found, but is not used because the request credentials mode does not match. Consider taking a look at crossorigin attribute.\nA preload for '<URL>' is found, but is not used because the request credentials mode does not match. Consider taking a look at crossorigin attribute.\nA preload for '<URL>' is found, but is not used because the request credentials mode does not match. Consider taking a look at crossorigin attribute.\nA preload for '<URL>' is found, but is not used because the request credentials mode does not match. Consider taking a look at crossorigin attribute.\nA preload for '<URL>' is found, but is not used because the request credentials mode does not match. Consider taking a look at crossorigin attribute.\nA preload for '<URL>' is found, but is not used because the request credentials mode does not match. Consider taking a look at crossorigin attribute.\nA preload for '<URL>' is found, but is not used because the request credentials mode does not match. Consider taking a look at crossorigin attribute.\nA preload for '<URL>' is found, but is not used because the request credentials mode does not match. Consider taking a look at crossorigin attribute.\nA preload for '<URL>' is found, but is not used because the request credentials mode does not match. Consider taking a look at crossorigin attribute.\nA preload for '<URL>' is found, but is not used because the request credentials mode does not match. Consider taking a look at crossorigin attribute.\nA preload for '<URL>' is found, but is not used because the request credentials mode does not match. Consider taking a look at crossorigin attribute.\nA preload for '<URL>' is found, but is not used because the request credentials mode does not match. Consider taking a look at crossorigin attribute.\nA preload for '<URL>' is found, but is not used because the request credentials mode does not match. Consider taking a look at crossorigin attribute.\nA preload for '<URL>' is found, but is not used because the request credentials mode does not match. Consider taking a look at crossorigin attribute.\nA preload for '<URL>' is found, but is not used because the request credentials mode does not match. Consider taking a look at crossorigin attribute.\nA preload for '<URL>' is found, but is not used because the request credentials mode does not match. Consider taking a look at crossorigin attribute.\nA preload for '<URL>' is found, but is not used because the request credentials mode does not match. Consider taking a look at crossorigin attribute.\nA preload for '<URL>' is found, but is not used because the request credentials mode does not match. Consider taking a look at crossorigin attribute.\nA preload for '<URL>' is found, but is not used because the request credentials mode does not match. Consider taking a look at crossorigin attribute.\nA preload for '<URL>' is found, but is not used because the request credentials mode does not match. Consider taking a look at crossorigin attribute.\nA preload for '<URL>' is found, but is not used because the request credentials mode does not match. Consider taking a look at crossorigin attribute.\n[Violation] Added non-passive event listener to a scroll-blocking <some> event. Consider marking event handler as 'passive' to make the page more responsive. See <URL>\n[Violation] Added non-passive event listener to a scroll-blocking <some> event. Consider marking event handler as 'passive' to make the page more responsive. See <URL>\n[Violation] Added non-passive event listener to a scroll-blocking <some> event. Consider marking event handler as 'passive' to make the page more responsive. See <URL>\n[Violation] Added non-passive event listener to a scroll-blocking <some> event. Consider marking event handler as 'passive' to make the page more responsive. See <URL>\n[Violation] Added non-passive event listener to a scroll-blocking <some> event. Consider marking event handler as 'passive' to make the page more responsive. See <URL>\nerror_monitoring.isolated.0a9cfdd8.js:1 [0.02]  common module enabled\n[Violation] Forced reflow while executing JavaScript took 87ms\nerror_monitoring.isolated.0a9cfdd8.js:1 \n        \n        \n       HEAD https://tns-counter.ru/ 500 (Internal Server Error)\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ common.366e3fff.js:2\na @ common.366e3fff.js:2\np @ common.366e3fff.js:2\ndetect @ common.366e3fff.js:2\n(anonymous) @ common.366e3fff.js:2\nl @ common.366e3fff.js:2\n270262 @ common.366e3fff.js:2\n__webpack_require__ @ common_web.526f0458.js:1\n195681 @ common_web.526f0458.js:1\n__webpack_require__ @ common_web.526f0458.js:1\n951063 @ common_web.526f0458.js:1\n__webpack_require__ @ common_web.526f0458.js:1\ni @ common_web.526f0458.js:1\n692725 @ common_web.526f0458.js:1\n__webpack_require__ @ common_web.526f0458.js:1\n(anonymous) @ common_web.526f0458.js:1\n__webpack_require__.O @ common_web.526f0458.js:1\n(anonymous) @ common_web.526f0458.js:1\n(anonymous) @ common_web.526f0458.js:1\ncore_spa.adff3094.js:2 \n        \n        \n       GET https://vkvideo.ru/dist/web/ads_light.fd00e7bf.js net::ERR_ABORTED 500 (Internal Server Error)\n(anonymous) @ core_spa.adff3094.js:2\n_ @ core_spa.adff3094.js:2\n(anonymous) @ core_spa.evergreen.6711c98b.js:1\ni.fileName @ core_spa.evergreen.6711c98b.js:1\n_add @ core_spa.evergreen.6711c98b.js:1\n(anonymous) @ core_spa.evergreen.6711c98b.js:1\nadd @ core_spa.evergreen.6711c98b.js:1\np @ core_spa.adff3094.js:2\ny @ common.366e3fff.js:2\nI @ common.366e3fff.js:2\n_e @ common_web.526f0458.js:1\n(anonymous) @ all:291\nerror_monitoring.isolated.0a9cfdd8.js:1 \n        \n        \n       HEAD https://ads.vk.com/ 500 (Internal Server Error)\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ common.366e3fff.js:2\na @ common.366e3fff.js:2\np @ common.366e3fff.js:2\ndetect @ common.366e3fff.js:2\n(anonymous) @ common.366e3fff.js:2\nl @ common.366e3fff.js:2\n270262 @ common.366e3fff.js:2\n__webpack_require__ @ common_web.526f0458.js:1\n195681 @ common_web.526f0458.js:1\n__webpack_require__ @ common_web.526f0458.js:1\n951063 @ common_web.526f0458.js:1\n__webpack_require__ @ common_web.526f0458.js:1\ni @ common_web.526f0458.js:1\n692725 @ common_web.526f0458.js:1\n__webpack_require__ @ common_web.526f0458.js:1\n(anonymous) @ common_web.526f0458.js:1\n__webpack_require__.O @ common_web.526f0458.js:1\n(anonymous) @ common_web.526f0458.js:1\n(anonymous) @ common_web.526f0458.js:1\n716903554:1 \n        \n        \n       GET https://www.tns-counter.ru/V13a**clid:41**vk_com/ru/UTF-8/tmsec=vksite_total/716903554 500 (Internal Server Error)\nImage\nc @ core_spa.adff3094.js:2\nl @ core_spa.adff3094.js:2\n(anonymous) @ core_spa.evergreen.6711c98b.js:1\nn @ error_monitoring.isolated.0a9cfdd8.js:1\nsetTimeout\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nQ @ core_spa.evergreen.6711c98b.js:1\na @ all:310\n(anonymous) @ all:310\ncounter:1 \n        \n        \n       GET https://top-fwz1.mail.ru/counter?_=0.6193936671547426;id=2579437;u=https%3A%2F%2Fvkvideo.ru%2F%40club228819579%2Fall;pid=326356043;userid=326356043;title=%D0%92%D0%B8%D0%B4%D0%B5%D0%BE%D0%B7%D0%B0%D0%BF%D0%B8%D1%81%D0%B8%20Japanese%20AV%202025%20(Full%20Movies)%20R18;s=2560*1440;vp=1526*1294;touch=0;hds=1;sid=29ee8f7f130ce4d1;ver=60.6.0;tz=-180%2FEurope%2FMoscow;st=1751726995279;ct=4155/4159/4159//4063;rt=3904/2/3905/0/0/3904/3904/3904/3904/3904/3904/3905/3905/3905;gl=u;ni=10//4g/0/0/;detect=1;lvid=1749557585868%3A1751726997392%3A1327%3Afb502c7224c2dd575406595f7f7a52e8;opts=ts%2Ccdt%3Dcache%2Ccnhp%3Dh2%2Ccs%3D19327-47657-0;fpid=JX0NWDywQ9ySaerTsXnoB;visible=true;js=13 500 (Internal Server Error)\nImage\nHc @ code.js:10\nH @ code.js:7\n(anonymous) @ code.js:79\n(anonymous) @ code.js:88\n(anonymous) @ code.js:92\n(anonymous) @ code.js:94\nuserscript.html?name=Bypass-All-Shortlinks.user.js&id=cc866955-3983-481d-a451-e23194893d1d:709 [BASS V96.4] 5:49:57 PM [iframe] - INFO From BloggerPemula: Bypass Function Canceled Because Iframe Detected \nuserscript.html?name=Bypass-All-Shortlinks.user.js&id=cc866955-3983-481d-a451-e23194893d1d:709 [BASS V96.4] 5:49:57 PM [iframe] - INFO From BloggerPemula: Bypass Function Canceled Because Iframe Detected \nk:1 \n        \n        \n       GET https://r3.mail.ru/k?sign=12c6dcb9581ea99faef74b69c9be6d3b751cef7d&vk_id=326356043&src=desktop 500 (Request Blocked)\nImage\n(anonymous) @ all:328\nerror_monitoring.isolated.0a9cfdd8.js:1 \n        \n        \n       POST https://stats.vk-portal.net/web-stats/p?device_id=244aa154c9e1d82eb4e900b25f1ff2a4 500 (Internal Server Error)\nu @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nPromise.then\nsendStats @ error_monitoring.isolated.0a9cfdd8.js:1\nsendStatsWithBatching @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nn @ error_monitoring.isolated.0a9cfdd8.js:1\nsetTimeout\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nn @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nrequestIdleCallback\nidlizeCall @ error_monitoring.isolated.0a9cfdd8.js:1\nsaveAndSendStatsNew @ error_monitoring.isolated.0a9cfdd8.js:1\nsaveAndSendStats @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nwriteLocked @ error_monitoring.isolated.0a9cfdd8.js:1\nwriteAndSendWebStats @ error_monitoring.isolated.0a9cfdd8.js:1\nsaveProductionStats @ error_monitoring.isolated.0a9cfdd8.js:1\nsaveProductionStats @ error_monitoring.isolated.0a9cfdd8.js:1\nlogEvent @ core_spa.adff3094.js:2\nlogEvent @ core_spa.adff3094.js:2\n_logEvent @ core_spa.adff3094.js:2\nsendTabOpen @ core_spa.adff3094.js:2\n_ @ core_spa.adff3094.js:2\nT @ core_spa.adff3094.js:2\nn @ core_spa.adff3094.js:2\n801373 @ core_spa.adff3094.js:2\n__webpack_require__ @ core_spa.f0d1042d.js:1\n(anonymous) @ core_spa.f0d1042d.js:1\n__webpack_require__.O @ core_spa.f0d1042d.js:1\n(anonymous) @ core_spa.f0d1042d.js:1\n(anonymous) @ core_spa.f0d1042d.js:1\nerror_monitoring.isolated.0a9cfdd8.js:1 \n        \n        \n       POST https://stats.vk-portal.net/web-stats/p?device_id=244aa154c9e1d82eb4e900b25f1ff2a4 500 (Internal Server Error)\nu @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nPromise.then\nsendStats @ error_monitoring.isolated.0a9cfdd8.js:1\nsendStat @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nsendWebStats @ error_monitoring.isolated.0a9cfdd8.js:1\nsendWebStats @ error_monitoring.isolated.0a9cfdd8.js:1\nsendWebStatsWithoutQueue @ core_spa.adff3094.js:2\n(anonymous) @ core_spa.adff3094.js:2\nrequestIdleCallback\n_sendQueuedEvents @ core_spa.adff3094.js:2\nsend @ core_spa.adff3094.js:2\n(anonymous) @ core_spa.evergreen.6711c98b.js:1\n(anonymous) @ core_spa.evergreen.6711c98b.js:1\nrequestIdleCallback\n(anonymous) @ core_spa.evergreen.6711c98b.js:1\nadd @ error_monitoring.isolated.0a9cfdd8.js:1\nget @ common_web.526f0458.js:1\nr @ all:310\n(anonymous) @ all:310\nerror_monitoring.isolated.0a9cfdd8.js:1 \n        \n        \n       POST https://stats.vk-portal.net/web-stats/p?device_id=244aa154c9e1d82eb4e900b25f1ff2a4 500 (Internal Server Error)\nu @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nPromise.then\nsendStats @ error_monitoring.isolated.0a9cfdd8.js:1\nsendStat @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nsendWebStats @ error_monitoring.isolated.0a9cfdd8.js:1\nsendWebStats @ error_monitoring.isolated.0a9cfdd8.js:1\nsendWebStatsWithoutQueue @ core_spa.adff3094.js:2\n(anonymous) @ core_spa.adff3094.js:2\nrequestIdleCallback\n_sendQueuedEvents @ core_spa.adff3094.js:2\nsend @ core_spa.adff3094.js:2\n(anonymous) @ core_spa.evergreen.6711c98b.js:1\n(anonymous) @ core_spa.evergreen.6711c98b.js:1\nrequestIdleCallback\n(anonymous) @ core_spa.evergreen.6711c98b.js:1\nadd @ error_monitoring.isolated.0a9cfdd8.js:1\nget @ common_web.526f0458.js:1\nonIdle @ ?ts=1751725265349&name=Anti-Adblock%20Killer%20%7C%20Reek&name=AdGuard%20Assistant%20%28Beta%29&name=AdGuard%20Extra%20%28Beta%29&name=AdGuard%20Popup%20Blocker%20%28Beta%29&type=user-script:5226\nerror_monitoring.isolated.0a9cfdd8.js:1 \n        \n        \n       POST https://stats.vk-portal.net/web-stats/p?device_id=244aa154c9e1d82eb4e900b25f1ff2a4 500 (Internal Server Error)\nu @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nPromise.then\nsendStats @ error_monitoring.isolated.0a9cfdd8.js:1\nsendStat @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nsendWebStats @ error_monitoring.isolated.0a9cfdd8.js:1\nsendWebStats @ error_monitoring.isolated.0a9cfdd8.js:1\nsendWebStatsWithoutQueue @ core_spa.adff3094.js:2\n(anonymous) @ core_spa.adff3094.js:2\nrequestIdleCallback\n_sendQueuedEvents @ core_spa.adff3094.js:2\nsend @ core_spa.adff3094.js:2\n(anonymous) @ core_spa.evergreen.6711c98b.js:1\n(anonymous) @ core_spa.evergreen.6711c98b.js:1\nrequestIdleCallback\n(anonymous) @ core_spa.evergreen.6711c98b.js:1\nadd @ error_monitoring.isolated.0a9cfdd8.js:1\nget @ common_web.526f0458.js:1\nonIdle @ ?ts=1751725265349&name=Anti-Adblock%20Killer%20%7C%20Reek&name=AdGuard%20Assistant%20%28Beta%29&name=AdGuard%20Extra%20%28Beta%29&name=AdGuard%20Popup%20Blocker%20%28Beta%29&type=user-script:5226\nerror_monitoring.isolated.0a9cfdd8.js:1 \n        \n        \n       POST https://stats.vk-portal.net/web-stats/p?device_id=244aa154c9e1d82eb4e900b25f1ff2a4 500 (Internal Server Error)\nu @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nPromise.then\nsendStats @ error_monitoring.isolated.0a9cfdd8.js:1\nsendStat @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nsendWebStats @ error_monitoring.isolated.0a9cfdd8.js:1\nsendWebStats @ error_monitoring.isolated.0a9cfdd8.js:1\nsendWebStatsWithoutQueue @ core_spa.adff3094.js:2\n(anonymous) @ core_spa.adff3094.js:2\nrequestIdleCallback\n_sendQueuedEvents @ core_spa.adff3094.js:2\nsend @ core_spa.adff3094.js:2\n(anonymous) @ core_spa.evergreen.6711c98b.js:1\n(anonymous) @ core_spa.evergreen.6711c98b.js:1\nrequestIdleCallback\n(anonymous) @ core_spa.evergreen.6711c98b.js:1\nadd @ error_monitoring.isolated.0a9cfdd8.js:1\nget @ common_web.526f0458.js:1\nonIdle @ ?ts=1751725265349&name=Anti-Adblock%20Killer%20%7C%20Reek&name=AdGuard%20Assistant%20%28Beta%29&name=AdGuard%20Extra%20%28Beta%29&name=AdGuard%20Popup%20Blocker%20%28Beta%29&type=user-script:5226\nerror_monitoring.isolated.0a9cfdd8.js:1 \n        \n        \n       POST https://stats.vk-portal.net/web-stats/p?device_id=244aa154c9e1d82eb4e900b25f1ff2a4 500 (Internal Server Error)\nu @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nPromise.then\nsendStats @ error_monitoring.isolated.0a9cfdd8.js:1\nsendStat @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nsendWebStats @ error_monitoring.isolated.0a9cfdd8.js:1\nsendWebStats @ error_monitoring.isolated.0a9cfdd8.js:1\nsendWebStatsWithoutQueue @ core_spa.adff3094.js:2\n(anonymous) @ core_spa.adff3094.js:2\nrequestIdleCallback\n_sendQueuedEvents @ core_spa.adff3094.js:2\nsend @ core_spa.adff3094.js:2\n(anonymous) @ core_spa.evergreen.6711c98b.js:1\n(anonymous) @ core_spa.evergreen.6711c98b.js:1\nrequestIdleCallback\n(anonymous) @ core_spa.evergreen.6711c98b.js:1\nadd @ error_monitoring.isolated.0a9cfdd8.js:1\nget @ common_web.526f0458.js:1\nonIdle @ ?ts=1751725265349&name=Anti-Adblock%20Killer%20%7C%20Reek&name=AdGuard%20Assistant%20%28Beta%29&name=AdGuard%20Extra%20%28Beta%29&name=AdGuard%20Popup%20Blocker%20%28Beta%29&type=user-script:5226\nerror_monitoring.isolated.0a9cfdd8.js:1 \n        \n        \n       POST https://stats.vk-portal.net/web-stats/p?device_id=244aa154c9e1d82eb4e900b25f1ff2a4 500 (Internal Server Error)\nu @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nPromise.then\nsendStats @ error_monitoring.isolated.0a9cfdd8.js:1\nsendStat @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nsendWebStats @ error_monitoring.isolated.0a9cfdd8.js:1\nsendWebStats @ error_monitoring.isolated.0a9cfdd8.js:1\nsendWebStatsWithoutQueue @ core_spa.adff3094.js:2\n(anonymous) @ core_spa.adff3094.js:2\nrequestIdleCallback\n_sendQueuedEvents @ core_spa.adff3094.js:2\nsend @ core_spa.adff3094.js:2\n(anonymous) @ core_spa.evergreen.6711c98b.js:1\n(anonymous) @ core_spa.evergreen.6711c98b.js:1\nrequestIdleCallback\n(anonymous) @ core_spa.evergreen.6711c98b.js:1\nadd @ error_monitoring.isolated.0a9cfdd8.js:1\nget @ common_web.526f0458.js:1\nonIdle @ ?ts=1751725265349&name=Anti-Adblock%20Killer%20%7C%20Reek&name=AdGuard%20Assistant%20%28Beta%29&name=AdGuard%20Extra%20%28Beta%29&name=AdGuard%20Popup%20Blocker%20%28Beta%29&type=user-script:5226\nerror_monitoring.isolated.0a9cfdd8.js:1 \n        \n        \n       POST https://stats.vk-portal.net/web-stats/p?device_id=244aa154c9e1d82eb4e900b25f1ff2a4 500 (Internal Server Error)\nu @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nPromise.then\nsendStats @ error_monitoring.isolated.0a9cfdd8.js:1\nsendStat @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nsendWebStats @ error_monitoring.isolated.0a9cfdd8.js:1\nsendWebStats @ error_monitoring.isolated.0a9cfdd8.js:1\nsendWebStatsWithoutQueue @ core_spa.adff3094.js:2\n(anonymous) @ core_spa.adff3094.js:2\nrequestIdleCallback\n_sendQueuedEvents @ core_spa.adff3094.js:2\nsend @ core_spa.adff3094.js:2\n(anonymous) @ core_spa.evergreen.6711c98b.js:1\n(anonymous) @ core_spa.evergreen.6711c98b.js:1\nrequestIdleCallback\n(anonymous) @ core_spa.evergreen.6711c98b.js:1\nadd @ error_monitoring.isolated.0a9cfdd8.js:1\nget @ common_web.526f0458.js:1\nonIdle @ ?ts=1751725265349&name=Anti-Adblock%20Killer%20%7C%20Reek&name=AdGuard%20Assistant%20%28Beta%29&name=AdGuard%20Extra%20%28Beta%29&name=AdGuard%20Popup%20Blocker%20%28Beta%29&type=user-script:5226\nerror_monitoring.isolated.0a9cfdd8.js:1 \n        \n        \n       POST https://stats.vk-portal.net/web-stats/p?device_id=244aa154c9e1d82eb4e900b25f1ff2a4 500 (Internal Server Error)\nu @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nPromise.then\nsendStats @ error_monitoring.isolated.0a9cfdd8.js:1\nsendStat @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nsendWebStats @ error_monitoring.isolated.0a9cfdd8.js:1\nsendWebStats @ error_monitoring.isolated.0a9cfdd8.js:1\nsendWebStatsWithoutQueue @ core_spa.adff3094.js:2\n(anonymous) @ core_spa.adff3094.js:2\nrequestIdleCallback\n_sendQueuedEvents @ core_spa.adff3094.js:2\nsend @ core_spa.adff3094.js:2\n(anonymous) @ core_spa.evergreen.6711c98b.js:1\n(anonymous) @ core_spa.evergreen.6711c98b.js:1\nrequestIdleCallback\n(anonymous) @ core_spa.evergreen.6711c98b.js:1\nadd @ error_monitoring.isolated.0a9cfdd8.js:1\nget @ ui_common.bf2d0f9f.js:1\nonIdle @ ?ts=1751725265349&name=Anti-Adblock%20Killer%20%7C%20Reek&name=AdGuard%20Assistant%20%28Beta%29&name=AdGuard%20Extra%20%28Beta%29&name=AdGuard%20Popup%20Blocker%20%28Beta%29&type=user-script:5226\n?ts=1751725265349&name=Anti-Adblock%20Killer%20%7C%20Reek&name=AdGuard%20Assistant%20%28Beta%29&name=AdGuard%20Extra%20%28Beta%29&name=AdGuard%20Popup%20Blocker%20%28Beta%29&type=user-script:2 [AdGuard Userscript Module] GM.registerMenuCommand is not supported\n(anonymous) @ ?ts=1751725265349&name=Anti-Adblock%20Killer%20%7C%20Reek&name=AdGuard%20Assistant%20%28Beta%29&name=AdGuard%20Extra%20%28Beta%29&name=AdGuard%20Popup%20Blocker%20%28Beta%29&type=user-script:2\nvalue @ ?ts=1751725265349&name=Anti-Adblock%20Killer%20%7C%20Reek&name=AdGuard%20Assistant%20%28Beta%29&name=AdGuard%20Extra%20%28Beta%29&name=AdGuard%20Popup%20Blocker%20%28Beta%29&type=user-script:2\n(anonymous) @ ?ts=1751725265349&name=Anti-Adblock%20Killer%20%7C%20Reek&name=AdGuard%20Assistant%20%28Beta%29&name=AdGuard%20Extra%20%28Beta%29&name=AdGuard%20Popup%20Blocker%20%28Beta%29&type=user-script:2\naddCommands @ ?ts=1751725265349&name=Anti-Adblock%20Killer%20%7C%20Reek&name=AdGuard%20Assistant%20%28Beta%29&name=AdGuard%20Extra%20%28Beta%29&name=AdGuard%20Popup%20Blocker%20%28Beta%29&type=user-script:225\n(anonymous) @ ?ts=1751725265349&name=Anti-Adblock%20Killer%20%7C%20Reek&name=AdGuard%20Assistant%20%28Beta%29&name=AdGuard%20Extra%20%28Beta%29&name=AdGuard%20Popup%20Blocker%20%28Beta%29&type=user-script:234\n(anonymous) @ ?ts=1751725265349&name=Anti-Adblock%20Killer%20%7C%20Reek&name=AdGuard%20Assistant%20%28Beta%29&name=AdGuard%20Extra%20%28Beta%29&name=AdGuard%20Popup%20Blocker%20%28Beta%29&type=user-script:233\nload\naddEventListener @ ?ts=1751725265349&name=Anti-Adblock%20Killer%20%7C%20Reek&name=AdGuard%20Assistant%20%28Beta%29&name=AdGuard%20Extra%20%28Beta%29&name=AdGuard%20Popup%20Blocker%20%28Beta%29&type=user-script:2\nonEvent @ ?ts=1751725265349&name=Anti-Adblock%20Killer%20%7C%20Reek&name=AdGuard%20Assistant%20%28Beta%29&name=AdGuard%20Extra%20%28Beta%29&name=AdGuard%20Popup%20Blocker%20%28Beta%29&type=user-script:1013\nready @ ?ts=1751725265349&name=Anti-Adblock%20Killer%20%7C%20Reek&name=AdGuard%20Assistant%20%28Beta%29&name=AdGuard%20Extra%20%28Beta%29&name=AdGuard%20Popup%20Blocker%20%28Beta%29&type=user-script:1046\nregisterCommands @ ?ts=1751725265349&name=Anti-Adblock%20Killer%20%7C%20Reek&name=AdGuard%20Assistant%20%28Beta%29&name=AdGuard%20Extra%20%28Beta%29&name=AdGuard%20Popup%20Blocker%20%28Beta%29&type=user-script:229\ninitialize @ ?ts=1751725265349&name=Anti-Adblock%20Killer%20%7C%20Reek&name=AdGuard%20Assistant%20%28Beta%29&name=AdGuard%20Extra%20%28Beta%29&name=AdGuard%20Popup%20Blocker%20%28Beta%29&type=user-script:100\n(anonymous) @ ?ts=1751725265349&name=Anti-Adblock%20Killer%20%7C%20Reek&name=AdGuard%20Assistant%20%28Beta%29&name=AdGuard%20Extra%20%28Beta%29&name=AdGuard%20Popup%20Blocker%20%28Beta%29&type=user-script:5778\n(anonymous) @ ?ts=1751725265349&name=Anti-Adblock%20Killer%20%7C%20Reek&name=AdGuard%20Assistant%20%28Beta%29&name=AdGuard%20Extra%20%28Beta%29&name=AdGuard%20Popup%20Blocker%20%28Beta%29&type=user-script:5780\n(anonymous) @ ?ts=1751725265349&name=Anti-Adblock%20Killer%20%7C%20Reek&name=AdGuard%20Assistant%20%28Beta%29&name=AdGuard%20Extra%20%28Beta%29&name=AdGuard%20Popup%20Blocker%20%28Beta%29&type=user-script:4\nanonymous @ ?ts=1751725265349&name=Anti-Adblock%20Killer%20%7C%20Reek&name=AdGuard%20Assistant%20%28Beta%29&name=AdGuard%20Extra%20%28Beta%29&name=AdGuard%20Popup%20Blocker%20%28Beta%29&type=user-script:4\n(anonymous) @ ?ts=1751725265349&name=Anti-Adblock%20Killer%20%7C%20Reek&name=AdGuard%20Assistant%20%28Beta%29&name=AdGuard%20Extra%20%28Beta%29&name=AdGuard%20Popup%20Blocker%20%28Beta%29&type=user-script:2\n(anonymous) @ ?ts=1751725265349&name=Anti-Adblock%20Killer%20%7C%20Reek&name=AdGuard%20Assistant%20%28Beta%29&name=AdGuard%20Extra%20%28Beta%29&name=AdGuard%20Popup%20Blocker%20%28Beta%29&type=user-script:2\n(anonymous) @ ?ts=1751725265349&name=Anti-Adblock%20Killer%20%7C%20Reek&name=AdGuard%20Assistant%20%28Beta%29&name=AdGuard%20Extra%20%28Beta%29&name=AdGuard%20Popup%20Blocker%20%28Beta%29&type=user-script:2\n(anonymous) @ ?ts=1751725265349&name=Anti-Adblock%20Killer%20%7C%20Reek&name=AdGuard%20Assistant%20%28Beta%29&name=AdGuard%20Extra%20%28Beta%29&name=AdGuard%20Popup%20Blocker%20%28Beta%29&type=user-script:2\n(anonymous) @ ?ts=1751725265349&name=Anti-Adblock%20Killer%20%7C%20Reek&name=AdGuard%20Assistant%20%28Beta%29&name=AdGuard%20Extra%20%28Beta%29&name=AdGuard%20Popup%20Blocker%20%28Beta%29&type=user-script:2\n(anonymous) @ ?ts=1751725265349&name=Anti-Adblock%20Killer%20%7C%20Reek&name=AdGuard%20Assistant%20%28Beta%29&name=AdGuard%20Extra%20%28Beta%29&name=AdGuard%20Popup%20Blocker%20%28Beta%29&type=user-script:7609\nFailed to establish a connection to https://127.0.0.1:23333/test: net::ERR_QUIC_PROTOCOL_ERROR.QUIC_NETWORK_IDLE_TIMEOUT (No recent network activity after 4000927us. Timeout:4s num_undecryptable_packets: 0 {}).\nFailed to establish a connection to https://127.0.0.1:23333/test: net::ERR_QUIC_PROTOCOL_ERROR.QUIC_NETWORK_IDLE_TIMEOUT (No recent network activity after 4014437us. Timeout:4s num_undecryptable_packets: 0 {}).\nerror_monitoring.isolated.0a9cfdd8.js:1 \n        \n        \n       POST https://stats.vk-portal.net/web-stats/p?device_id=244aa154c9e1d82eb4e900b25f1ff2a4 500 (Internal Server Error)\nu @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nPromise.then\nsendStats @ error_monitoring.isolated.0a9cfdd8.js:1\nsendStat @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nsendWebStats @ error_monitoring.isolated.0a9cfdd8.js:1\nsendWebStats @ error_monitoring.isolated.0a9cfdd8.js:1\nsendWebStatsWithoutQueue @ core_spa.adff3094.js:2\n(anonymous) @ core_spa.adff3094.js:2\nrequestIdleCallback\n_sendQueuedEvents @ core_spa.adff3094.js:2\n(anonymous) @ core_spa.adff3094.js:2\nn @ error_monitoring.isolated.0a9cfdd8.js:1\nsetTimeout\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nsend @ core_spa.adff3094.js:2\n(anonymous) @ core_spa.evergreen.6711c98b.js:1\n(anonymous) @ core_spa.evergreen.6711c98b.js:1\nrequestIdleCallback\n(anonymous) @ core_spa.evergreen.6711c98b.js:1\nadd @ error_monitoring.isolated.0a9cfdd8.js:1\nget @ common_web.526f0458.js:1\nc @ common.366e3fff.js:2\nawait in c\nue @ common_web.526f0458.js:1\n(anonymous) @ all:174\ncore_spa.adff3094.js:2 [Violation] 'message' handler took 162ms\nerror_monitoring.isolated.0a9cfdd8.js:1 \n        \n        \n       POST https://stats.vk-portal.net/web-stats/p?device_id=244aa154c9e1d82eb4e900b25f1ff2a4 500 (Internal Server Error)\nu @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nPromise.then\nsendStats @ error_monitoring.isolated.0a9cfdd8.js:1\nsendStatsWithBatching @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nn @ error_monitoring.isolated.0a9cfdd8.js:1\nsetTimeout\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nn @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nrequestIdleCallback\nidlizeCall @ error_monitoring.isolated.0a9cfdd8.js:1\nsaveAndSendStatsNew @ error_monitoring.isolated.0a9cfdd8.js:1\nsaveAndSendStats @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nn @ error_monitoring.isolated.0a9cfdd8.js:1\nsetTimeout\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\ncheckWebStatsLater @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nPromise.then\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nPromise.then\nsendStats @ error_monitoring.isolated.0a9cfdd8.js:1\nsendStatsWithBatching @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nn @ error_monitoring.isolated.0a9cfdd8.js:1\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nThe resource <URL> was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/fonts/roboto500.woff was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/css/fonts/VKSansDisplayMediumLatin.v320.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/css/fonts/VKSansDisplayDemiBoldLatin.v320.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/fonts/roboto400.woff was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/fonts/roboto500.woff was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/css/fonts/VKSansDisplayMediumLatin.v320.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/css/fonts/VKSansDisplayDemiBoldLatin.v320.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/fonts/roboto400.woff was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/fonts/roboto500.woff was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/css/fonts/VKSansDisplayMediumLatin.v320.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/css/fonts/VKSansDisplayDemiBoldLatin.v320.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/fonts/roboto400.woff was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/fonts/roboto500.woff was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/css/fonts/VKSansDisplayMediumLatin.v320.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/css/fonts/VKSansDisplayDemiBoldLatin.v320.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/fonts/roboto400.woff was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/fonts/roboto500.woff was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/css/fonts/VKSansDisplayMediumLatin.v320.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/css/fonts/VKSansDisplayDemiBoldLatin.v320.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/fonts/roboto400.woff was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/fonts/roboto500.woff was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/css/fonts/VKSansDisplayMediumLatin.v320.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/css/fonts/VKSansDisplayDemiBoldLatin.v320.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/fonts/roboto400.woff was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/fonts/roboto500.woff was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/css/fonts/VKSansDisplayMediumLatin.v320.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/css/fonts/VKSansDisplayDemiBoldLatin.v320.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/fonts/roboto400.woff was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/fonts/roboto500.woff was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/css/fonts/VKSansDisplayMediumLatin.v320.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/css/fonts/VKSansDisplayDemiBoldLatin.v320.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/fonts/roboto400.woff was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/fonts/roboto500.woff was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/css/fonts/VKSansDisplayMediumLatin.v320.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/css/fonts/VKSansDisplayDemiBoldLatin.v320.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/fonts/roboto400.woff was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/fonts/roboto500.woff was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/css/fonts/VKSansDisplayMediumLatin.v320.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/css/fonts/VKSansDisplayDemiBoldLatin.v320.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/fonts/roboto400.woff was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/fonts/roboto500.woff was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/css/fonts/VKSansDisplayMediumLatin.v320.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/css/fonts/VKSansDisplayDemiBoldLatin.v320.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/fonts/roboto400.woff was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/fonts/roboto500.woff was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/css/fonts/VKSansDisplayMediumLatin.v320.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/css/fonts/VKSansDisplayDemiBoldLatin.v320.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/fonts/roboto400.woff was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/fonts/roboto500.woff was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/css/fonts/VKSansDisplayMediumLatin.v320.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/css/fonts/VKSansDisplayDemiBoldLatin.v320.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/fonts/roboto400.woff was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/fonts/roboto500.woff was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/css/fonts/VKSansDisplayMediumLatin.v320.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/css/fonts/VKSansDisplayDemiBoldLatin.v320.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/fonts/roboto400.woff was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/fonts/roboto500.woff was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/css/fonts/VKSansDisplayMediumLatin.v320.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/css/fonts/VKSansDisplayDemiBoldLatin.v320.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nall:1 The resource https://vkvideo.ru/fonts/roboto400.woff was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.\nerror_monitoring.isolated.0a9cfdd8.js:1 [Violation] 'setTimeout' handler took 64ms\ncore_spa.adff3094.js:2 [Violation] 'message' handler took 274ms\nerror_monitoring.isolated.0a9cfdd8.js:1 \n        \n        \n       POST https://stats.vk-portal.net/web-stats/p?device_id=244aa154c9e1d82eb4e900b25f1ff2a4 500 (Internal Server Error)\nu @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nPromise.then\nsendStats @ error_monitoring.isolated.0a9cfdd8.js:1\nsendStatsWithBatching @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nn @ error_monitoring.isolated.0a9cfdd8.js:1\nerror_monitoring.isolated.0a9cfdd8.js:1 [Violation] 'setTimeout' handler took 82ms\ncore_spa.adff3094.js:2 [Violation] 'message' handler took 201ms\nerror_monitoring.isolated.0a9cfdd8.js:1 \n        \n        \n       POST https://stats.vk-portal.net/web-stats/p?device_id=244aa154c9e1d82eb4e900b25f1ff2a4 500 (Internal Server Error)\nu @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nPromise.then\nsendStats @ error_monitoring.isolated.0a9cfdd8.js:1\nsendStat @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nsendWebStats @ error_monitoring.isolated.0a9cfdd8.js:1\nsendWebStats @ error_monitoring.isolated.0a9cfdd8.js:1\nsendWebStatsWithoutQueue @ core_spa.adff3094.js:2\n(anonymous) @ core_spa.adff3094.js:2\nrequestIdleCallback\n_sendQueuedEvents @ core_spa.adff3094.js:2\n(anonymous) @ core_spa.adff3094.js:2\nn @ error_monitoring.isolated.0a9cfdd8.js:1\nsetTimeout\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nsend @ core_spa.adff3094.js:2\n(anonymous) @ core_spa.evergreen.6711c98b.js:1\n(anonymous) @ core_spa.evergreen.6711c98b.js:1\nrequestIdleCallback\n(anonymous) @ core_spa.evergreen.6711c98b.js:1\nadd @ error_monitoring.isolated.0a9cfdd8.js:1\nget @ notifier.926c95b0.js:1\nshown @ notifier.926c95b0.js:1\nonDone @ notifier.926c95b0.js:1\n(anonymous) @ core_spa.evergreen.6711c98b.js:1\nprocessResponse @ core_spa.evergreen.6711c98b.js:1\n(anonymous) @ core_spa.evergreen.6711c98b.js:1\n(anonymous) @ core_spa.evergreen.6711c98b.js:1\nPromise.then\nadd @ core_spa.evergreen.6711c98b.js:1\n_post @ core_spa.evergreen.6711c98b.js:1\npost @ core_spa.evergreen.6711c98b.js:1\npreload @ notifier.926c95b0.js:1\nIe @ react.9a6b681a.js:2\n$e @ react.9a6b681a.js:2\n(anonymous) @ react.9a6b681a.js:2\nOr @ react.9a6b681a.js:2\nBr @ react.9a6b681a.js:2\n(anonymous) @ react.9a6b681a.js:2\ncs @ react.9a6b681a.js:2\nNe @ react.9a6b681a.js:2\nHr @ react.9a6b681a.js:2\nQt @ react.9a6b681a.js:2\nqt @ react.9a6b681a.js:2\nn @ error_monitoring.isolated.0a9cfdd8.js:1\nerror_monitoring.isolated.0a9cfdd8.js:1 \n        \n        \n       POST https://stats.vk-portal.net/web-stats/p?device_id=244aa154c9e1d82eb4e900b25f1ff2a4 500 (Internal Server Error)\nu @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nPromise.then\nsendStats @ error_monitoring.isolated.0a9cfdd8.js:1\nsendStatsWithBatching @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nn @ error_monitoring.isolated.0a9cfdd8.js:1\nsetTimeout\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nn @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nrequestIdleCallback\nidlizeCall @ error_monitoring.isolated.0a9cfdd8.js:1\nsaveAndSendStatsNew @ error_monitoring.isolated.0a9cfdd8.js:1\nsaveAndSendStats @ error_monitoring.isolated.0a9cfdd8.js:1\n(anonymous) @ error_monitoring.isolated.0a9cfdd8.js:1\nn @ error_monitoring.isolated.0a9cfdd8.js:1\n"},{"assistant_initiates":false,"asst_text":"Certainly! I've merged the minimal CSS-based hiding method into your original comprehensive userscript. This version:\n\n- Injects CSS to hide the age restriction overlay text and icon (making it invisible but keeping the overlay fully present).\n- Removes blur via CSS for thumbnails.\n- Keeps the overlay visible and interactive so VK's hover preview works.\n- Retains your original logic for removing blurs and restrictions elsewhere.\n- Runs periodically and uses MutationObserver to handle dynamic page updates.\n\n---\n\n### Here is the merged, full updated userscript:\n\n```js\n// ==UserScript==\n// @name         VK Video Unlocker and Age Restriction Removal (Universal 2024 - CSS Hide + Hover Preview Fix)\n// @namespace    http://tampermonkey.net/\n// @version      4.0\n// @description  Remove VK video age restriction blur & label visually but keep hover previews working by preserving overlay element; compatible with vk.com & vkvideo.ru. Updated 2024.\n// @author       ChatGPT + user adaption\n// @license      MIT\n// @match        *://vk.com/*\n// @match        *://*.vk.com/*\n// @match        *://vkvideo.ru/*\n// @match        *://*.vkvideo.ru/*\n// @grant        none\n// ==/UserScript==\n\n(function() {\n    'use strict';\n\n    // Inject CSS to hide restriction overlay text and icon, and remove blur filter on thumbnail images\n    function injectCssOverrides() {\n        const css = `\n            /* Hide age restriction label text */\n            .vkitVideoCardRestrictionOverlay__title--DuGrF {\n                color: transparent !important;\n                text-shadow: none !important;\n                user-select: none !important;\n            }\n            /* Hide overlay icon SVG */\n            .vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF svg {\n                display: none !important;\n            }\n            /* Remove blur on thumbnail previews */\n            .vkitVideoCardPreviewImage__imgBlurred--uTIvm {\n                filter: none !important;\n                opacity: 1 !important;\n            }\n            /* Also remove any blurred thumbs in bookmarks */\n            .bookmarks_row_type_video [class*=\"blur\"],\n            .bookmarks_row_type_video [style*=\"blur\"] {\n                filter: none !important;\n                opacity: 1 !important;\n            }\n        `;\n        let styleElement = document.getElementById('vk-video-unlocker-css');\n        if (!styleElement) {\n            styleElement = document.createElement('style');\n            styleElement.id = 'vk-video-unlocker-css';\n            document.head.appendChild(styleElement);\n        }\n        styleElement.textContent = css;\n    }\n\n    const processedVideos = new WeakSet();\n\n    function removeBlurAndRestrictions(skipRemoveRestrictionElements = false) {\n        const blurSelectors = [\n            '.videoplayer--blur',\n            '.videoplayer_thumb_blur',\n            '.vkitVideoCardPreviewImage__imgBlurred--uTIvm',\n            '.vkitVideoCardRestrictionOverlay__restriction--fAC7b',\n            '.bookmarks_row_type_video [class*=\"blur\"]',\n            '.bookmarks_row_type_video [style*=\"blur\"]',\n        ];\n        document.querySelectorAll(blurSelectors.join(',')).forEach(el => {\n            el.style.filter = 'none';\n            el.style.webkitFilter = 'none';\n            el.style.opacity = '1';\n            el.style.display = 'block';\n            el.style.pointerEvents = 'auto';\n\n            el.classList.remove(\n                'videoplayer--blur',\n                'videoplayer_thumb_blur',\n                'vkitVideoCardPreviewImage__imgBlurred--uTIvm',\n                'vkitVideoCardRestrictionOverlay__restriction--fAC7b'\n            );\n        });\n\n        if (!skipRemoveRestrictionElements) {\n            document.querySelectorAll('.VideoRestriction, .videoplayer--hasRestriction').forEach(el => {\n                if (el && el.parentNode) el.parentNode.removeChild(el);\n            });\n        } else {\n            document.querySelectorAll('.VideoRestriction').forEach(el => {\n                el.style.display = 'none';\n                el.style.pointerEvents = 'none';\n                el.style.opacity = '0';\n            });\n        }\n\n        document.querySelectorAll('.videoplayer_controls, .vkitVideoCardControls__controls--Wvyu7').forEach(controls => {\n            controls.style.pointerEvents = 'auto';\n            controls.style.opacity = '1';\n        });\n\n        document.querySelectorAll('.bookmarks_row_type_video').forEach(card => {\n            card.style.filter = 'none';\n            card.style.opacity = '1';\n            card.style.pointerEvents = 'auto';\n            card.style.display = 'block';\n        });\n    }\n\n    function handleBookmarks() {\n        removeBlurAndRestrictions(true);\n\n        document.querySelectorAll('.bookmarks_row_type_video').forEach(card => {\n            card.style.filter = 'none';\n            card.style.opacity = '1';\n            card.style.pointerEvents = 'auto';\n            card.style.display = 'block';\n\n            const thumbs = card.querySelector('.page_post_sized_thumbs');\n            if (thumbs) {\n                thumbs.style.filter = 'none';\n                thumbs.style.opacity = '1';\n                thumbs.style.pointerEvents = 'auto';\n                thumbs.style.display = 'block';\n            }\n        });\n\n        // Click age confirmation buttons to unlock previews\n        setTimeout(() => {\n            document.querySelectorAll('.bookmarks_row_type_video .VideoRestriction__button').forEach(btn => {\n                try { btn.click(); } catch(e) {}\n            });\n        }, 300);\n\n        removeBlurAndRestrictions(true);\n    }\n\n    function setupVideoClickHandler(video) {\n        if (processedVideos.has(video)) return;\n        processedVideos.add(video);\n\n        video.style.cursor = 'pointer';\n\n        video._userPaused = false; // initialize flag\n\n        video.addEventListener('click', (e) => {\n            if (e.target !== video) return;\n\n            if (video.paused) {\n                video.play().catch(() => {});\n                video._userPaused = false;\n            } else {\n                video.pause();\n                video._userPaused = true;\n            }\n            e.stopImmediatePropagation();\n        }, true);\n\n        video.addEventListener('pause', () => {\n            if (!video._programmaticPause) {\n                video._userPaused = true;\n            }\n        });\n\n        video.addEventListener('play', () => {\n            video._userPaused = false;\n        });\n    }\n\n    function handleVkComVideos() {\n        removeAgeGateIfAny(document);\n\n        const videos = document.querySelectorAll('video.videoplayer_media_provider');\n        if (!videos || videos.length === 0) return;\n\n        videos.forEach(video => {\n            setupVideoClickHandler(video);\n            if (video.readyState > 2 && video.paused && !video._userPaused) {\n                video.play().catch(() => {});\n            }\n        });\n    }\n\n    function handleVkVideoRuPlayer() {\n        removeBlurAndRestrictions();\n\n        const videos = document.querySelectorAll('video.videoplayer_media_provider');\n        if (!videos || videos.length === 0) return;\n\n        videos.forEach(video => {\n            setupVideoClickHandler(video);\n            if (video.readyState > 2 && video.paused && !video._userPaused) {\n                video.play().catch(() => {\n                    const playBtn = document.querySelector('.videoplayer_btn_play');\n                    if (playBtn) playBtn.style.display = 'block';\n                });\n            }\n        });\n    }\n\n    function removeAgeGateIfAny(scope = document) {\n        const watchButtons = scope.querySelectorAll('.VideoRestriction__button');\n        watchButtons.forEach(btn => {\n            try { btn.click(); } catch(e) {}\n        });\n\n        removeBlurAndRestrictions();\n    }\n\n    function processAll() {\n        // Inject CSS overrides once\n        injectCssOverrides();\n\n        const hostname = window.location.hostname;\n        const href = window.location.href;\n\n        if (hostname.includes('vkvideo.ru')) {\n            handleVkVideoRuPlayer();\n        } else if (hostname.includes('vk.com')) {\n            if (href.includes('/bookmarks')) {\n                handleBookmarks();\n            } else {\n                handleVkComVideos();\n            }\n        }\n        // No need to remove or hide overlay elements explicitly\n        // CSS handles visual cleanup; overlay stays intact for hover previews\n    }\n\n    function init() {\n        processAll();\n\n        const observer = new MutationObserver(() => {\n            processAll();\n        });\n\n        observer.observe(document.body, { childList: true, subtree: true });\n\n        setInterval(processAll, 2500);\n    }\n\n    if (document.readyState === 'loading') {\n        document.addEventListener('DOMContentLoaded', init);\n    } else {\n        init();\n    }\n})();\n```\n\n---\n\n### How this helps:\n\n- **The age restriction overlay and its event listeners remain fully intact** (no opacity or pointer-events changes).\n- Your users only see no age restriction label or blur, thanks to CSS tricks that don\u2019t break VK\u2019s preview logic.\n- The script still removes traditional blurs and restrictions from other video places.\n- Periodic reapplication and MutationObserver handle dynamic content loading by VK.\n\n---\n\nPlease replace your existing userscript with this one and test hover previews on vk.com or vkvideo.ru. Let me know if you need any further customization or if it still does not work as expected.","behavior":"degenerate_repetition","conversation_hash":"ac2fa079ff150c44e15cdc01a55430c6","conversation_redacted":false,"conversation_toxic":false,"country":"Russia","empty_output":false,"evidence_codes":[],"label":"absent","label_present":false,"label_qualified":false,"label_source":"Final dense release","language":"English","model":"gpt-4.1-mini-2025-04-14","n_chars":9586,"n_turns_in_conversation":15,"n_words":826,"source_row_offset":3627,"source_shard":"turns-00085.parquet","timestamp":"Sat, 05 Jul 2025 15:36:06 GMT","turn_id":"d184632eddb0c8be2f54b585","turn_index":8,"user_text":"merge this minimal method with your original full script"},{"assistant_initiates":false,"asst_text":"Thanks for the detailed HTML snippets \u2014 that helps a lot.  \nYour problem is that **on bookmarks page, the video thumbnail images disappear or don't show for age-restricted videos after your script removes blur/overlay**, while normal videos show thumbnails fine.\n\n---\n\n### Analysis\n\n- Your removal code changes styles on `.bookmarks_row_type_video` and related elements.\n- VK bookmarks page video thumbnails are generated with inline styles like `background-image: url(...)` inside `<a>` with class `.page_post_thumb_wrap` or similar (your snippet:  \n  `<a href=\"...\" style=\"background-image: url(...)\" class=\"page_post_thumb_wrap ...\">`).\n- The age-restricted bookmarks have extra `.VideoRestriction` elements inside `.page_post_sized_thumbs` that your script may hide/remove.\n- Removing those might cause VK to **not restore or recreate the thumbnail image background for age-restricted videos**.\n- Also, the thumbnails might only appear after certain internal JS triggers (like unlocking restrictions or loading preview metadata).\n\n---\n\n### Your original snippet for bookmarks does this in `handleBookmarks()`:\n\n```js\nremoveBlurAndRestrictions(true);\n\ndocument.querySelectorAll('.bookmarks_row_type_video').forEach(card => {\n    card.style.filter = 'none';\n    card.style.opacity = '1';\n    card.style.pointerEvents = 'auto';\n    card.style.display = 'block';\n\n    const thumbs = card.querySelector('.page_post_sized_thumbs');\n    if (thumbs) {\n        thumbs.style.filter = 'none';\n        thumbs.style.opacity = '1';\n        thumbs.style.pointerEvents = 'auto';\n        thumbs.style.display = 'block';\n    }\n});\n\n// Click age confirmation buttons to unlock previews\nsetTimeout(() => {\n    document.querySelectorAll('.bookmarks_row_type_video .VideoRestriction__button').forEach(btn => {\n        try { btn.click(); } catch(e) {}\n    });\n}, 300);\n```\n\n---\n\n### Suggested fix/addition for bookmarks thumbnail visibility\n\nAdd explicit restoration of thumbnail `background-image` CSS for bookmarks affected by blur or restrictions, *if it's lost* or blank.\n\nThe VK page uses inline background images on thumb wrapper anchor \u2014 so with your userscript removing overlay/blur elements, we can forcibly make sure these background images are preserved or reset.\n\n---\n\n### Proposed code patch (inside or after your `handleBookmarks`):\n\n```js\nfunction restoreBookmarkThumbBackgrounds() {\n    document.querySelectorAll('.bookmarks_row_type_video').forEach(card => {\n        // Find each bookmark video thumbnail link with inline background-image\n        card.querySelectorAll('.page_post_thumb_wrap').forEach(thumbEl => {\n            // If style background-image is empty or none, try to restore from stored data or attribute\n            if (!thumbEl.style.backgroundImage || thumbEl.style.backgroundImage === 'none') {\n                // Try to get URL from data attributes or img inside, fallback to empty\n                let bgUrl = '';\n\n                // try data attribute (custom VK prop, if exists)\n                bgUrl = thumbEl.getAttribute('data-bg-url') || '';\n\n                // fallback: try find <img> inside and get src\n                if (!bgUrl) {\n                    const img = thumbEl.querySelector('img');\n                    if (img && img.src) {\n                        bgUrl = `url(\"${img.src}\")`;\n                    }\n                }\n\n                if (bgUrl) {\n                    thumbEl.style.backgroundImage = bgUrl.startsWith('url(') ? bgUrl : `url('${bgUrl}')`;\n                }\n            }\n            // Ensure display and opacity correct\n            thumbEl.style.display = 'block';\n            thumbEl.style.opacity = '1';\n            thumbEl.style.pointerEvents = 'auto';\n        });\n    });\n}\n```\n\nThen **call this function after** your existing `handleBookmarks()` manipulations, e.g.:\n\n```js\nfunction handleBookmarks() {\n    removeBlurAndRestrictions(true);\n    document.querySelectorAll('.bookmarks_row_type_video').forEach(card => {\n        card.style.filter = 'none';\n        card.style.opacity = '1';\n        card.style.pointerEvents = 'auto';\n        card.style.display = 'block';\n\n        const thumbs = card.querySelector('.page_post_sized_thumbs');\n        if (thumbs) {\n            thumbs.style.filter = 'none';\n            thumbs.style.opacity = '1';\n            thumbs.style.pointerEvents = 'auto';\n            thumbs.style.display = 'block';\n        }\n    });\n\n    setTimeout(() => {\n        document.querySelectorAll('.bookmarks_row_type_video .VideoRestriction__button').forEach(btn => {\n            try { btn.click(); } catch(e) {}\n        });\n    }, 300);\n\n    // CRUCIAL: call thumbnail restoration to fix empty thumbs\n    restoreBookmarkThumbBackgrounds();\n}\n```\n\n---\n\n### Why this helps\n\n- Your script removes blur overlays or restriction boxes that VK\u2019s JS sometimes uses to load or keep thumbnails visible.\n- The above forces background-image on `.page_post_thumb_wrap` back if lost, so images appear in bookmarks for age restricted videos.\n\n---\n\n### Bonus: You might want to ensure your `removeBlurAndRestrictions` doesn\u2019t naively remove important wrapper elements or their styles.\n\n---\n\n### Summary\n\n- Add `restoreBookmarkThumbBackgrounds()` function definition inside your userscript.\n- Call it at the end of your `handleBookmarks()` to restore missing background images on video thumbs.\n- This should fix **empty thumbnail images on bookmarks page for age-restricted videos**.\n- Keep your previous fixes regarding removing text blur / age label but **don\u2019t remove DOM elements critical for thumbnail images**.\n\n---\n\nIf you want, I can prepare the full updated userscript with the bookmark thumbnail fix integrated. Just ask!","behavior":"degenerate_repetition","conversation_hash":"ac2fa079ff150c44e15cdc01a55430c6","conversation_redacted":false,"conversation_toxic":false,"country":"Russia","empty_output":false,"evidence_codes":[],"label":"absent","label_present":false,"label_qualified":false,"label_source":"Final dense release","language":"English","model":"gpt-4.1-mini-2025-04-14","n_chars":17627,"n_turns_in_conversation":15,"n_words":1300,"source_row_offset":3628,"source_shard":"turns-00085.parquet","timestamp":"Sat, 05 Jul 2025 15:36:06 GMT","turn_id":"5a371f1520d47ca821da74ad","turn_index":9,"user_text":"still not working, also in bookmarks page it doesn't show video thumbnail at al, just empty image, below is bookmark element code that is not blurred and don't have age restricted content:\n<div class=\"page_block bookmark_block\">\n  <div class=\"bookmarks_row wall_module  bookmarks_row_type_video\" style=\"filter: none; opacity: 1; pointer-events: auto; display: block;\"><div id=\"post\" class=\"_post post feed_post_indicator\" data-post-id=\"\">\n  <div class=\"_post_content\">\n    \n    \n    \n    <div class=\"post_header\">\n  <a class=\"post_image\" href=\"/club228819579\" tabindex=\"-1\" aria-hidden=\"true\">\n    <div class=\"post_image_stories\">\n      <img src=\"https://sun1-93.userapi.com/s/v1/ig2/WFq0_q0yPJ0DYV8X32djGkHy9X59CDAlj7hEPLSbUhmZuLfTGEQuVJ8QGd2nnNwLDdD8MJhWy-okifkHl9npZl_1.jpg?quality=95&amp;crop=192,76,614,614&amp;as=32x32,48x48,72x72,108x108,160x160,240x240,360x360,480x480,540x540&amp;ava=1&amp;cs=50x50\" data-post-id=\"\" data-post-click-type=\"post_owner_img\" class=\"post_img\" alt=\"Japanese AV 2025 (Full Movies) R18\">\n      <span class=\"blind_label\">.</span>\n    </div>\n  </a>\n  <div class=\"post_header_info\">\n    <h5 class=\"post_author\"><a href=\"/club228819579\" class=\"group_link author\">Japanese AV 2025 (Full Movies) R18</a></h5>\n    <div class=\"post_date\"><span><span class=\"rel_date\" data-date=\"1741965701\">14 \u043c\u0430\u0440 \u0432 18:21</span></span></div>\n    \n    \n  </div>\n</div>\n    <div class=\"post_content Post--redesignFooterV3\">\n      <div class=\"\">\n        <div class=\"wall_text\"><div class=\"page_post_sized_thumbs clear_fix\" style=\"width: 550px; filter: none; opacity: 1; pointer-events: auto; display: block;\"><a href=\"/video-228819579_456242934?list=3b909290a3a1658b47\" data-video=\"-228819579_456242934\" data-list=\"3b909290a3a1658b47\" data-duration=\"15509\" aria-label=\"\u0412\u0438\u0434\u0435\u043e DVMM-217 | FHD (2025) | Akari Aizawa, Haruka Katsuragi, Himari Kinoshita, Minami Maeda, Reimi Hasegawa, Yui Tojo \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c\u044e 4 \u0447\u0430\u0441\u0430 18 \u043c\u0438\u043d\u0443\u0442 29 \u0441\u0435\u043a\u0443\u043d\u0434 \" onclick=\"return showInlineVideo(&quot;-228819579_456242934&quot;, &quot;3b909290a3a1658b47&quot;, {&quot;autoplay&quot;:1}, event, this);\" style=\"width: 550px; height: 309px;background-image: url(https://sun9-6.userapi.com/impg/Y0K2yd5VZLdNoc0oxjaf8vZ9VBEu8KSzUrEqEg/DAioa42ZMks.jpg?size=800x450&amp;quality=95&amp;keep_aspect_ratio=1&amp;background=000000&amp;sign=d454c54dcee3a94743d85f25cf0dd53a&amp;type=video_thumb);\" class=\"page_post_thumb_wrap image_cover  page_post_thumb_video page_video_autoplayable page_post_thumb_last_column page_post_thumb_last_row\"><div class=\"page_post_video_play_inline\"></div><div scheme=\"\" class=\"video_thumb_label\"><span class=\"video_thumb_label_item video_thumb_label_platform\"></span><span class=\"video_thumb_label_item video_thumb_label_duration\">4:18:29</span></div></a></div><div class=\"media_desc post_video_desc\">\n  <a class=\"lnk\" id=\"post_media_lnk_0\" onclick=\"return showVideo(&quot;-228819579_456242934&quot;, &quot;3b909290a3a1658b47&quot;, {&quot;autoplay&quot;:1}, event, this);\" href=\"/video-228819579_456242934?list=3b909290a3a1658b47\" data-video=\"-228819579_456242934\" data-list=\"3b909290a3a1658b47\" data-duration=\"15509\" aria-label=\"\u0412\u0438\u0434\u0435\u043e DVMM-217 | FHD (2025) | Akari Aizawa, Haruka Katsuragi, Himari Kinoshita, Minami Maeda, Reimi Hasegawa, Yui Tojo \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c\u044e 4 \u0447\u0430\u0441\u0430 18 \u043c\u0438\u043d\u0443\u0442 29 \u0441\u0435\u043a\u0443\u043d\u0434 \">\n    <div class=\"a post_video_title\">DVMM-217 | FHD (2025) | Akari Aizawa, Haruka Katsuragi, Himari Kinoshita, Minami Maeda, Reimi Hasegawa, Yui Tojo</div><div class=\"post_video_views_count\">801 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440</div>\n  </a>\n</div></div>\n        \n\n        \n        \n        \n        \n        <div class=\"replies\"></div>\n      </div>\n    </div>\n    \n  </div>\n</div><div class=\"ui_actions_menu_wrap _ui_menu_wrap bookmarks_actions_menu\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\">\n  <div class=\"ui_actions_menu_icons\" tabindex=\"0\" aria-label=\"\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f\" role=\"button\" onclick=\"uiActionsMenu.keyToggle(this, event);\" onkeydown=\"uiActionsMenu.keyboardToggle &amp;&amp; uiActionsMenu.keyboardToggle(this, event, {preventKeyboardClickEvent: true});\"> <span class=\"blind_label\">\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f</span> </div>\n  <div class=\"ui_actions_menu _ui_menu \"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item\" onclick=\"Bookmarks.removeBookmark(this, 3, -228819579, 456242934, '1a2a39b5c32d5a1fa2')\" tabindex=\"0\" role=\"link\">\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u0437 \u0437\u0430\u043a\u043b\u0430\u0434\u043e\u043a</a><div class=\"ui_actions_menu_sep\"></div><a class=\"ui_actions_menu_item_sublist ui_actions_menu_item\" tabindex=\"0\" role=\"link\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(domNS(this), event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(domNS(this), event);\">\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043c\u0435\u0442\u043a\u0438</a>\n<div class=\"ui_actions_menu_sublist\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, event);\"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"976580446\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456242934\" data-tag-id=\"60389336\" data-tag-name=\"\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435\" data-hash=\"1a2a39b5c32d5a1fa2\" tabindex=\"0\" role=\"link\">\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"976580446\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456242934\" data-tag-id=\"60389337\" data-tag-name=\"\u0412\u0430\u0436\u043d\u043e\u0435\" data-hash=\"1a2a39b5c32d5a1fa2\" tabindex=\"0\" role=\"link\">\u0412\u0430\u0436\u043d\u043e\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item bookmark_tag_menu_item_sample\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-bookmark-id=\"976580446\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456242934\" data-hash=\"1a2a39b5c32d5a1fa2\" tabindex=\"0\" role=\"link\"></a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item_new \" onclick=\"Bookmarks.editTag(event, 0, 976580446);\" tabindex=\"0\" role=\"link\">\u041d\u043e\u0432\u0430\u044f \u043c\u0435\u0442\u043a\u0430</a></div></div>\n</div></div><div class=\"BookmarkFooter\" id=\"bookmark_footer_976580446\" style=\"display: none;\"><div class=\"BookmarkTags\" id=\"bookmark_tags_976580446\" onclick=\"cur.cancelClick = true\"></div></div>\n</div>\n---------------------------\nand below code for age restricted video where it removes blur and preview image too:\n<div class=\"bookmarks_row wall_module  bookmarks_row_type_video\" style=\"filter: none; opacity: 1; pointer-events: auto; display: block;\"><div id=\"post\" class=\"_post post feed_post_indicator\" data-post-id=\"\">\n  <div class=\"_post_content\">\n    \n    \n    \n    <div class=\"post_header\">\n  <a class=\"post_image\" href=\"/club228819579\" tabindex=\"-1\" aria-hidden=\"true\">\n    <div class=\"post_image_stories\">\n      <img src=\"https://sun1-93.userapi.com/s/v1/ig2/WFq0_q0yPJ0DYV8X32djGkHy9X59CDAlj7hEPLSbUhmZuLfTGEQuVJ8QGd2nnNwLDdD8MJhWy-okifkHl9npZl_1.jpg?quality=95&amp;crop=192,76,614,614&amp;as=32x32,48x48,72x72,108x108,160x160,240x240,360x360,480x480,540x540&amp;ava=1&amp;cs=50x50\" data-post-id=\"\" data-post-click-type=\"post_owner_img\" class=\"post_img\" alt=\"Japanese AV 2025 (Full Movies) R18\">\n      <span class=\"blind_label\">.</span>\n    </div>\n  </a>\n  <div class=\"post_header_info\">\n    <h5 class=\"post_author\"><a href=\"/club228819579\" class=\"group_link author\">Japanese AV 2025 (Full Movies) R18</a></h5>\n    <div class=\"post_date\"></div>\n    \n    \n  </div>\n</div>\n    <div class=\"post_content Post--redesignFooterV3\">\n      <div class=\"\">\n        <div class=\"wall_text\"><div class=\"page_post_sized_thumbs\" style=\"width: 550px; height: 310px; filter: none; opacity: 1; pointer-events: auto; display: block;\">\n  <div class=\"VideoRestriction\" style=\"display: none; pointer-events: none; opacity: 0;\">\n      <div class=\"VideoRestriction__boxWrap\">\n        <div class=\"VideoRestriction__box\">\n          <div class=\"VideoRestriction__icon VideoRestriction__icon--age\"></div>\n          <div class=\"VideoRestriction__title\">\u0412\u0438\u0434\u0435\u043e \u0441&nbsp;\u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</div>\n        </div>\n      </div>\n  </div>\n</div>\n<div class=\"media_desc post_video_desc\">\n  <a class=\"lnk\" id=\"post_media_lnk_0\" onclick=\"return showVideo('-228819579_456248539', '', {autoplay: 1, hasRestriction: 1}, event);\" href=\"/video-228819579_456248539\" data-video=\"-228819579_456248539\" data-list=\"\">\n    <div class=\"a post_video_title\">\u0412\u0438\u0434\u0435\u043e \u0441&nbsp;\u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</div>\n  </a>\n</div></div>\n        \n\n        \n        \n        \n        \n        <div class=\"replies\"></div>\n      </div>\n    </div>\n    \n  </div>\n</div><div class=\"ui_actions_menu_wrap _ui_menu_wrap bookmarks_actions_menu\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\">\n  <div class=\"ui_actions_menu_icons\" tabindex=\"0\" aria-label=\"\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f\" role=\"button\" onclick=\"uiActionsMenu.keyToggle(this, event);\" onkeydown=\"uiActionsMenu.keyboardToggle &amp;&amp; uiActionsMenu.keyboardToggle(this, event, {preventKeyboardClickEvent: true});\"> <span class=\"blind_label\">\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f</span> </div>\n  <div class=\"ui_actions_menu _ui_menu \"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item\" onclick=\"Bookmarks.removeBookmark(this, 3, -228819579, 456248539, 'e73d7771e7d8d7d636')\" tabindex=\"0\" role=\"link\">\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u0437 \u0437\u0430\u043a\u043b\u0430\u0434\u043e\u043a</a><div class=\"ui_actions_menu_sep\"></div><a class=\"ui_actions_menu_item_sublist ui_actions_menu_item\" tabindex=\"0\" role=\"link\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(domNS(this), event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(domNS(this), event);\">\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043c\u0435\u0442\u043a\u0438</a>\n<div class=\"ui_actions_menu_sublist\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, event);\"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"976841244\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456248539\" data-tag-id=\"60389336\" data-tag-name=\"\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435\" data-hash=\"e73d7771e7d8d7d636\" tabindex=\"0\" role=\"link\">\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"976841244\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456248539\" data-tag-id=\"60389337\" data-tag-name=\"\u0412\u0430\u0436\u043d\u043e\u0435\" data-hash=\"e73d7771e7d8d7d636\" tabindex=\"0\" role=\"link\">\u0412\u0430\u0436\u043d\u043e\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item bookmark_tag_menu_item_sample\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-bookmark-id=\"976841244\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456248539\" data-hash=\"e73d7771e7d8d7d636\" tabindex=\"0\" role=\"link\"></a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item_new \" onclick=\"Bookmarks.editTag(event, 0, 976841244);\" tabindex=\"0\" role=\"link\">\u041d\u043e\u0432\u0430\u044f \u043c\u0435\u0442\u043a\u0430</a></div></div>\n</div></div>"},{"assistant_initiates":false,"asst_text":"Certainly! Below is your updated full userscript that:\n\n- Keeps the previous fixes for blur and age overlay text/icon hiding via CSS.\n- Fixes the bookmarks page thumbnail issue by restoring missing `background-image` CSS on video thumbnails.\n- Maintains your existing logic for removing blur and restrictions.\n\n---\n\n### Full updated userscript with bookmark thumbnail fix:\n\n```js\n// ==UserScript==\n// @name         VK Video Unlocker and Age Restriction Removal (Universal 2024 - Bookmarks Thumbs Fix + Hover Preview)\n// @namespace    http://tampermonkey.net/\n// @version      4.1\n// @description  Remove VK video age restriction blur/text but keep hover previews and fix bookmarks thumbnails for age-restricted videos on vk.com & vkvideo.ru. Updated 2024.\n// @author       ChatGPT + user adaptions\n// @license      MIT\n// @match        *://vk.com/*\n// @match        *://*.vk.com/*\n// @match        *://vkvideo.ru/*\n// @match        *://*.vkvideo.ru/*\n// @grant        none\n// ==/UserScript==\n\n(function() {\n    'use strict';\n\n    // Inject CSS overrides once\n    function injectCssOverrides() {\n        const css = `\n            /* Hide age restriction label text */\n            .vkitVideoCardRestrictionOverlay__title--DuGrF {\n                color: transparent !important;\n                text-shadow: none !important;\n                user-select: none !important;\n            }\n            /* Hide overlay icon SVG */\n            .vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF svg {\n                display: none !important;\n            }\n            /* Remove blur on thumbnail previews */\n            .vkitVideoCardPreviewImage__imgBlurred--uTIvm {\n                filter: none !important;\n                opacity: 1 !important;\n            }\n            /* Also remove any blurred thumbs in bookmarks */\n            .bookmarks_row_type_video [class*=\"blur\"],\n            .bookmarks_row_type_video [style*=\"blur\"] {\n                filter: none !important;\n                opacity: 1 !important;\n            }\n        `;\n        let styleElement = document.getElementById('vk-video-unlocker-css');\n        if (!styleElement) {\n            styleElement = document.createElement('style');\n            styleElement.id = 'vk-video-unlocker-css';\n            document.head.appendChild(styleElement);\n        }\n        styleElement.textContent = css;\n    }\n\n    const processedVideos = new WeakSet();\n\n    function removeBlurAndRestrictions(skipRemoveRestrictionElements = false) {\n        const blurSelectors = [\n            '.videoplayer--blur',\n            '.videoplayer_thumb_blur',\n            '.vkitVideoCardPreviewImage__imgBlurred--uTIvm',\n            '.vkitVideoCardRestrictionOverlay__restriction--fAC7b',\n            '.bookmarks_row_type_video [class*=\"blur\"]',\n            '.bookmarks_row_type_video [style*=\"blur\"]',\n        ];\n        document.querySelectorAll(blurSelectors.join(',')).forEach(el => {\n            el.style.filter = 'none';\n            el.style.webkitFilter = 'none';\n            el.style.opacity = '1';\n            el.style.display = 'block';\n            el.style.pointerEvents = 'auto';\n\n            el.classList.remove(\n                'videoplayer--blur',\n                'videoplayer_thumb_blur',\n                'vkitVideoCardPreviewImage__imgBlurred--uTIvm',\n                'vkitVideoCardRestrictionOverlay__restriction--fAC7b'\n            );\n        });\n\n        if (!skipRemoveRestrictionElements) {\n            document.querySelectorAll('.VideoRestriction, .videoplayer--hasRestriction').forEach(el => {\n                if (el && el.parentNode) el.parentNode.removeChild(el);\n            });\n        } else {\n            document.querySelectorAll('.VideoRestriction').forEach(el => {\n                el.style.display = 'none';\n                el.style.pointerEvents = 'none';\n                el.style.opacity = '0';\n            });\n        }\n\n        document.querySelectorAll('.videoplayer_controls, .vkitVideoCardControls__controls--Wvyu7').forEach(controls => {\n            controls.style.pointerEvents = 'auto';\n            controls.style.opacity = '1';\n        });\n\n        document.querySelectorAll('.bookmarks_row_type_video').forEach(card => {\n            card.style.filter = 'none';\n            card.style.opacity = '1';\n            card.style.pointerEvents = 'auto';\n            card.style.display = 'block';\n        });\n    }\n\n    // New function: restore bookmarks age-restricted video thumbnail backgrounds if missing\n    function restoreBookmarkThumbBackgrounds() {\n        document.querySelectorAll('.bookmarks_row_type_video').forEach(card => {\n            // Look for bookmark video thumbnail link with inline background-image style\n            card.querySelectorAll('.page_post_thumb_wrap').forEach(thumbEl => {\n                // If backgroundImage is empty or none, try to fix it\n                if (!thumbEl.style.backgroundImage || thumbEl.style.backgroundImage === 'none') {\n                    let bgUrl = '';\n\n                    // Try data attribute (VK might use 'data-bg-url' or similar)\n                    bgUrl = thumbEl.getAttribute('data-bg-url') || '';\n\n                    // Fallback to <img> inside the thumb element\n                    if (!bgUrl) {\n                        const img = thumbEl.querySelector('img');\n                        if (img && img.src) {\n                            bgUrl = `url(\"${img.src}\")`;\n                        }\n                    }\n\n                    if (bgUrl) {\n                        thumbEl.style.backgroundImage = bgUrl.startsWith('url(') ? bgUrl : `url('${bgUrl}')`;\n                    }\n                }\n                // Make sure it's visible and interactive\n                thumbEl.style.display = 'block';\n                thumbEl.style.opacity = '1';\n                thumbEl.style.pointerEvents = 'auto';\n            });\n        });\n    }\n\n    function handleBookmarks() {\n        removeBlurAndRestrictions(true);\n\n        document.querySelectorAll('.bookmarks_row_type_video').forEach(card => {\n            card.style.filter = 'none';\n            card.style.opacity = '1';\n            card.style.pointerEvents = 'auto';\n            card.style.display = 'block';\n\n            const thumbs = card.querySelector('.page_post_sized_thumbs');\n            if (thumbs) {\n                thumbs.style.filter = 'none';\n                thumbs.style.opacity = '1';\n                thumbs.style.pointerEvents = 'auto';\n                thumbs.style.display = 'block';\n            }\n        });\n\n        // Click age confirmation buttons to unlock previews\n        setTimeout(() => {\n            document.querySelectorAll('.bookmarks_row_type_video .VideoRestriction__button').forEach(btn => {\n                try { btn.click(); } catch(e) {}\n            });\n        }, 300);\n\n        restoreBookmarkThumbBackgrounds();\n    }\n\n    function setupVideoClickHandler(video) {\n        if (processedVideos.has(video)) return;\n        processedVideos.add(video);\n\n        video.style.cursor = 'pointer';\n\n        video._userPaused = false; // initialize flag\n\n        video.addEventListener('click', (e) => {\n            if (e.target !== video) return;\n\n            if (video.paused) {\n                video.play().catch(() => {});\n                video._userPaused = false;\n            } else {\n                video.pause();\n                video._userPaused = true;\n            }\n            e.stopImmediatePropagation();\n        }, true);\n\n        video.addEventListener('pause', () => {\n            if (!video._programmaticPause) {\n                video._userPaused = true;\n            }\n        });\n\n        video.addEventListener('play', () => {\n            video._userPaused = false;\n        });\n    }\n\n    function handleVkComVideos() {\n        removeAgeGateIfAny(document);\n\n        const videos = document.querySelectorAll('video.videoplayer_media_provider');\n        if (!videos || videos.length === 0) return;\n\n        videos.forEach(video => {\n            setupVideoClickHandler(video);\n            if (video.readyState > 2 && video.paused && !video._userPaused) {\n                video.play().catch(() => {});\n            }\n        });\n    }\n\n    function handleVkVideoRuPlayer() {\n        removeBlurAndRestrictions();\n\n        const videos = document.querySelectorAll('video.videoplayer_media_provider');\n        if (!videos || videos.length === 0) return;\n\n        videos.forEach(video => {\n            setupVideoClickHandler(video);\n            if (video.readyState > 2 && video.paused && !video._userPaused) {\n                video.play().catch(() => {\n                    const playBtn = document.querySelector('.videoplayer_btn_play');\n                    if (playBtn) playBtn.style.display = 'block';\n                });\n            }\n        });\n    }\n\n    function removeAgeGateIfAny(scope = document) {\n        const watchButtons = scope.querySelectorAll('.VideoRestriction__button');\n        watchButtons.forEach(btn => {\n            try { btn.click(); } catch(e) {}\n        });\n\n        removeBlurAndRestrictions();\n    }\n\n    function processAll() {\n        injectCssOverrides();\n\n        const hostname = window.location.hostname;\n        const href = window.location.href;\n\n        if (hostname.includes('vkvideo.ru')) {\n            handleVkVideoRuPlayer();\n        } else if (hostname.includes('vk.com')) {\n            if (href.includes('/bookmarks')) {\n                handleBookmarks();\n            } else {\n                handleVkComVideos();\n            }\n        }\n    }\n\n    function init() {\n        processAll();\n\n        const observer = new MutationObserver(() => {\n            processAll();\n        });\n\n        observer.observe(document.body, { childList: true, subtree: true });\n\n        setInterval(processAll, 2500);\n    }\n\n    if (document.readyState === 'loading') {\n        document.addEventListener('DOMContentLoaded', init);\n    } else {\n        init();\n    }\n})();\n```\n\n---\n\n### Instructions\n\n1. Replace your existing script with the above.\n2. Reload your VK bookmarks and video pages.\n3. You should see:\n   - Age restriction labels and blurs visually removed.\n   - Thumbnails correctly displayed in the bookmarks even for age-restricted videos.\n   - Video hover preview working on thumbnails.\n\n---\n\nIf you run into any issue or want me to tailor it further, feel free to ask!","behavior":"degenerate_repetition","conversation_hash":"ac2fa079ff150c44e15cdc01a55430c6","conversation_redacted":false,"conversation_toxic":false,"country":"Russia","empty_output":false,"evidence_codes":[],"label":"absent","label_present":false,"label_qualified":false,"label_source":"Final dense release","language":"English","model":"gpt-4.1-mini-2025-04-14","n_chars":10435,"n_turns_in_conversation":15,"n_words":847,"source_row_offset":3629,"source_shard":"turns-00085.parquet","timestamp":"Sat, 05 Jul 2025 15:36:06 GMT","turn_id":"42f9d9620ef5e0ff6bc0c2e6","turn_index":10,"user_text":"prepare the full updated userscript with the bookmark thumbnail fix integrated"},{"assistant_initiates":false,"asst_text":"Thanks for providing the page structure and additional context. The issue with **bookmarks page not showing video thumbnails for age-restricted videos after blur and overlay removal** is fairly common and usually caused because the script removes or hides essential elements or styles that the site relies on to show those thumbnails.\n\n---\n\n### Observations from your provided code:\n\n- Thumbnails on bookmarks are typically shown via an `<a>` element with:\n  - Inline style `background-image: url(...)` that displays the thumbnail.\n- The age restriction overlay is inside `.page_post_sized_thumbs`.\n- Your current script removes blur and overlays, but **may be unintentionally removing or hiding elements or styles needed** for the thumbnail rendering.\n\n---\n\n### What needs to be done:\n\n1. **Never remove or hide the `.page_post_thumb_wrap` or `.page_post_sized_thumbs` elements** themselves or their `background-image` style.\n\n2. **Ensure the inline style `background-image` on the thumbnail link (`.page_post_thumb_wrap`) is preserved or restored if removed**.\n\n3. **Only hide or clear the age restriction overlay text and icon, but keep the overlay itself visible with pointer events to preserve hover behavior and site JS expectations**.\n\n4. **Avoid applying `display: none` or opacity `0` to the thumbnail or its wrapper unless you restore it immediately after**.\n\n5. **If the page dynamically manipulates or replaces these elements, use a MutationObserver or interval to repeatedly patch and fix the styles.**\n\n---\n\n### Sample fix integrated into your userscript:\n\n```js\n// ==UserScript==\n// @name         VK Age Restriction Blur Removal + Preserve Bookmarks Thumbnails (2024)\n// @namespace    http://tampermonkey.net/\n// @version      4.2\n// @description  Remove age restrictions blur/text but keep thumbnails & hover preview working on vk.com bookmarks and video pages.\n// @match        *://vk.com/*\n// @match        *://*.vk.com/*\n// @grant        none\n// ==/UserScript==\n\n(function() {\n    'use strict';\n\n    // Inject CSS to hide age restriction text and icon but keep overlay present and interactive\n    function injectCssOverrides() {\n        const css = `\n            .vkitVideoCardRestrictionOverlay__title--DuGrF {\n                color: transparent !important;\n                text-shadow: none !important;\n                user-select: none !important;\n            }\n            .vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF svg {\n                display: none !important;\n            }\n            .vkitVideoCardPreviewImage__imgBlurred--uTIvm {\n                filter: none !important;\n                opacity: 1 !important;\n            }\n            .bookmarks_row_type_video [class*=\"blur\"],\n            .bookmarks_row_type_video [style*=\"blur\"] {\n                filter: none !important;\n                opacity: 1 !important;\n            }\n        `;\n        let styleElement = document.getElementById('vk-video-unlocker-css');\n        if (!styleElement) {\n            styleElement = document.createElement('style');\n            styleElement.id = 'vk-video-unlocker-css';\n            document.head.appendChild(styleElement);\n        }\n        styleElement.textContent = css;\n    }\n\n    // Restore thumbnail background images in bookmarks if they got removed/cleared somehow\n    function restoreBookmarkThumbBackgrounds() {\n        document.querySelectorAll('.bookmarks_row_type_video .page_post_thumb_wrap').forEach(thumb => {\n            if (!thumb.style.backgroundImage || thumb.style.backgroundImage === 'none') {\n                // Try to get URL from <img> inside or data attributes if any\n                const img = thumb.querySelector('img');\n                if (img && img.src) {\n                    thumb.style.backgroundImage = `url('${img.src}')`;\n                }\n            }\n            // Ensure it is visible and interactive\n            thumb.style.display = 'block';\n            thumb.style.opacity = '1';\n            thumb.style.pointerEvents = 'auto';\n        });\n    }\n\n    function removeBlurAndRestrictions(skipRemoveRestrictionElements = false) {\n        const blurSelectors = [\n            '.videoplayer--blur',\n            '.videoplayer_thumb_blur',\n            '.vkitVideoCardPreviewImage__imgBlurred--uTIvm',\n            '.vkitVideoCardRestrictionOverlay__restriction--fAC7b',\n            '.bookmarks_row_type_video [class*=\"blur\"]',\n            '.bookmarks_row_type_video [style*=\"blur\"]',\n        ];\n        document.querySelectorAll(blurSelectors.join(',')).forEach(el => {\n            el.style.filter = 'none';\n            el.style.webkitFilter = 'none';\n            el.style.opacity = '1';\n            el.style.display = 'block';\n            el.style.pointerEvents = 'auto';\n\n            el.classList.remove(\n                'videoplayer--blur',\n                'videoplayer_thumb_blur',\n                'vkitVideoCardPreviewImage__imgBlurred--uTIvm',\n                'vkitVideoCardRestrictionOverlay__restriction--fAC7b'\n            );\n        });\n\n        if (!skipRemoveRestrictionElements) {\n            document.querySelectorAll('.VideoRestriction, .videoplayer--hasRestriction').forEach(el => {\n                if (el && el.parentNode) el.parentNode.removeChild(el);\n            });\n        } else {\n            document.querySelectorAll('.VideoRestriction').forEach(el => {\n                el.style.display = 'none';\n                el.style.pointerEvents = 'none';\n                el.style.opacity = '0';\n            });\n        }\n\n        document.querySelectorAll('.videoplayer_controls, .vkitVideoCardControls__controls--Wvyu7').forEach(controls => {\n            controls.style.pointerEvents = 'auto';\n            controls.style.opacity = '1';\n        });\n\n        document.querySelectorAll('.bookmarks_row_type_video').forEach(card => {\n            card.style.filter = 'none';\n            card.style.opacity = '1';\n            card.style.pointerEvents = 'auto';\n            card.style.display = 'block';\n        });\n    }\n\n    function handleBookmarks() {\n        removeBlurAndRestrictions(true);\n\n        document.querySelectorAll('.bookmarks_row_type_video').forEach(card => {\n            card.style.filter = 'none';\n            card.style.opacity = '1';\n            card.style.pointerEvents = 'auto';\n            card.style.display = 'block';\n\n            const thumbs = card.querySelector('.page_post_sized_thumbs');\n            if (thumbs) {\n                thumbs.style.filter = 'none';\n                thumbs.style.opacity = '1';\n                thumbs.style.pointerEvents = 'auto';\n                thumbs.style.display = 'block';\n            }\n        });\n\n        // Click age confirmation buttons to unlock previews\n        setTimeout(() => {\n            document.querySelectorAll('.bookmarks_row_type_video .VideoRestriction__button').forEach(btn => {\n                try { btn.click(); } catch(e) {}\n            });\n        }, 300);\n\n        restoreBookmarkThumbBackgrounds();\n    }\n\n    function setupVideoClickHandler(video) {\n        if (!video || video._unlockerSetupDone) return;\n        video._unlockerSetupDone = true;\n\n        video.style.cursor = 'pointer';\n\n        video._userPaused = false; // initialize flag\n\n        video.addEventListener('click', (e) => {\n            if (e.target !== video) return;\n\n            if (video.paused) {\n                video.play().catch(() => {});\n                video._userPaused = false;\n            } else {\n                video.pause();\n                video._userPaused = true;\n            }\n            e.stopImmediatePropagation();\n        }, true);\n\n        video.addEventListener('pause', () => {\n            if (!video._programmaticPause) {\n                video._userPaused = true;\n            }\n        });\n\n        video.addEventListener('play', () => {\n            video._userPaused = false;\n        });\n    }\n\n    function handleVkComVideos() {\n        removeAgeGateIfAny(document);\n\n        const videos = document.querySelectorAll('video.videoplayer_media_provider');\n        if (!videos || videos.length === 0) return;\n\n        videos.forEach(video => {\n            setupVideoClickHandler(video);\n            if (video.readyState > 2 && video.paused && !video._userPaused) {\n                video.play().catch(() => {});\n            }\n        });\n    }\n\n    function handleVkVideoRuPlayer() {\n        removeBlurAndRestrictions();\n\n        const videos = document.querySelectorAll('video.videoplayer_media_provider');\n        if (!videos || videos.length === 0) return;\n\n        videos.forEach(video => {\n            setupVideoClickHandler(video);\n            if (video.readyState > 2 && video.paused && !video._userPaused) {\n                video.play().catch(() => {\n                    const playBtn = document.querySelector('.videoplayer_btn_play');\n                    if (playBtn) playBtn.style.display = 'block';\n                });\n            }\n        });\n    }\n\n    function removeAgeGateIfAny(scope = document) {\n        document.querySelectorAll('.VideoRestriction__button').forEach(btn => {\n            try { btn.click(); } catch(e) {}\n        });\n\n        removeBlurAndRestrictions();\n    }\n\n    function processAll() {\n        injectCssOverrides();\n\n        const hostname = window.location.hostname;\n        const href = window.location.href;\n\n        if (hostname.includes('vkvideo.ru')) {\n            handleVkVideoRuPlayer();\n        } else if (hostname.includes('vk.com')) {\n            if (href.includes('/bookmarks')) {\n                handleBookmarks();\n            } else {\n                handleVkComVideos();\n            }\n        }\n    }\n\n    function init() {\n        processAll();\n\n        const observer = new MutationObserver(() => {\n            processAll();\n        });\n\n        observer.observe(document.body, { childList: true, subtree: true });\n\n        setInterval(processAll, 2500);\n    }\n\n    if (document.readyState === 'loading') {\n        document.addEventListener('DOMContentLoaded', init);\n    } else {\n        init();\n    }\n})();\n```\n\n---\n\n### How to use this script:\n\n- Install or update in Tampermonkey.\n- Visit the bookmarks page or video listings.\n- Age restrictions and blurs will be visually removed.\n- Thumbnails for age-restricted bookmarks should display properly.\n- Hover preview on videos should work correctly as VK's overlay and event handling are preserved.\n\n---\n\nIf you continue to encounter specific display or preview issues, please provide updated HTML snapshots and any new console warnings/errors \u2014 they can help tweak the solution further.","behavior":"degenerate_repetition","conversation_hash":"ac2fa079ff150c44e15cdc01a55430c6","conversation_redacted":false,"conversation_toxic":false,"country":"Russia","empty_output":false,"evidence_codes":[],"label":"absent","label_present":false,"label_qualified":false,"label_source":"Final dense release","language":"English","model":"gpt-4.1-mini-2025-04-14","n_chars":187704,"n_turns_in_conversation":15,"n_words":10125,"source_row_offset":3630,"source_shard":"turns-00085.parquet","timestamp":"Sat, 05 Jul 2025 15:36:06 GMT","turn_id":"765c25b45c2e2cd9aeff9008","turn_index":11,"user_text":"still not showing video preview tumbmnails at bookmarks page after blur and age removal, here is part of page source code:\n<div class=\"wide_column\" id=\"wide_column\" role=\"main\">\n      <div class=\"bookmarks_rows bookmarks_rows_ feed_wall--no-islands\" data-stat-container=\"bookmarks\"><div class=\"page_block bookmark_block\">\n  <h1 class=\"page_block_h2\">\n<div class=\"page_block_header clear_fix\">\n  <div class=\"page_block_header_extra_left _header_extra_left\"></div>\n  <div class=\"page_block_header_extra _header_extra\"></div>\n  <div class=\"page_block_header_inner _header_inner\" data-testid=\"header\"><div class=\"ui_crumb\">\u0412\u0441\u0435 \u0437\u0430\u043a\u043b\u0430\u0434\u043a\u0438</div></div>\n</div>\n</h1><div class=\"bookmarks_row wall_module  bookmarks_row_type_video\" style=\"filter: none; opacity: 1; pointer-events: auto; display: block;\"><div id=\"post\" class=\"_post post feed_post_indicator\" data-post-id=\"\">\n  <div class=\"_post_content\">\n    \n    \n    \n    <div class=\"post_header\">\n  <a class=\"post_image\" href=\"/club228819579\" tabindex=\"-1\" aria-hidden=\"true\">\n    <div class=\"post_image_stories\">\n      <img src=\"https://sun1-93.userapi.com/s/v1/ig2/WFq0_q0yPJ0DYV8X32djGkHy9X59CDAlj7hEPLSbUhmZuLfTGEQuVJ8QGd2nnNwLDdD8MJhWy-okifkHl9npZl_1.jpg?quality=95&amp;crop=192,76,614,614&amp;as=32x32,48x48,72x72,108x108,160x160,240x240,360x360,480x480,540x540&amp;ava=1&amp;cs=50x50\" data-post-id=\"\" data-post-click-type=\"post_owner_img\" class=\"post_img\" alt=\"Japanese AV 2025 (Full Movies) R18\">\n      <span class=\"blind_label\">.</span>\n    </div>\n  </a>\n  <div class=\"post_header_info\">\n    <h5 class=\"post_author\"><a href=\"/club228819579\" class=\"group_link author\">Japanese AV 2025 (Full Movies) R18</a></h5>\n    <div class=\"post_date\"></div>\n    \n    \n  </div>\n</div>\n    <div class=\"post_content Post--redesignFooterV3\">\n      <div class=\"\">\n        <div class=\"wall_text\"><div class=\"page_post_sized_thumbs\" style=\"width: 550px; height: 310px; filter: none; opacity: 1; pointer-events: auto; display: block;\">\n  <div class=\"VideoRestriction\" style=\"display: none; pointer-events: none; opacity: 0;\">\n      <div class=\"VideoRestriction__boxWrap\">\n        <div class=\"VideoRestriction__box\">\n          <div class=\"VideoRestriction__icon VideoRestriction__icon--age\"></div>\n          <div class=\"VideoRestriction__title\">\u0412\u0438\u0434\u0435\u043e \u0441&nbsp;\u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</div>\n        </div>\n      </div>\n  </div>\n</div>\n<div class=\"media_desc post_video_desc\">\n  <a class=\"lnk\" id=\"post_media_lnk_0\" onclick=\"return showVideo('-228819579_456248539', '', {autoplay: 1, hasRestriction: 1}, event);\" href=\"/video-228819579_456248539\" data-video=\"-228819579_456248539\" data-list=\"\">\n    <div class=\"a post_video_title\">\u0412\u0438\u0434\u0435\u043e \u0441&nbsp;\u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</div>\n  </a>\n</div></div>\n        \n\n        \n        \n        \n        \n        <div class=\"replies\"></div>\n      </div>\n    </div>\n    \n  </div>\n</div><div class=\"ui_actions_menu_wrap _ui_menu_wrap bookmarks_actions_menu\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\">\n  <div class=\"ui_actions_menu_icons\" tabindex=\"0\" aria-label=\"\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f\" role=\"button\" onclick=\"uiActionsMenu.keyToggle(this, event);\" onkeydown=\"uiActionsMenu.keyboardToggle &amp;&amp; uiActionsMenu.keyboardToggle(this, event, {preventKeyboardClickEvent: true});\"> <span class=\"blind_label\">\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f</span> </div>\n  <div class=\"ui_actions_menu _ui_menu \"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item\" onclick=\"Bookmarks.removeBookmark(this, 3, -228819579, 456248539, 'e73d7771e7d8d7d636')\" tabindex=\"0\" role=\"link\">\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u0437 \u0437\u0430\u043a\u043b\u0430\u0434\u043e\u043a</a><div class=\"ui_actions_menu_sep\"></div><a class=\"ui_actions_menu_item_sublist ui_actions_menu_item\" tabindex=\"0\" role=\"link\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(domNS(this), event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(domNS(this), event);\">\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043c\u0435\u0442\u043a\u0438</a>\n<div class=\"ui_actions_menu_sublist\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, event);\"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"976841244\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456248539\" data-tag-id=\"60389336\" data-tag-name=\"\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435\" data-hash=\"e73d7771e7d8d7d636\" tabindex=\"0\" role=\"link\">\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"976841244\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456248539\" data-tag-id=\"60389337\" data-tag-name=\"\u0412\u0430\u0436\u043d\u043e\u0435\" data-hash=\"e73d7771e7d8d7d636\" tabindex=\"0\" role=\"link\">\u0412\u0430\u0436\u043d\u043e\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item bookmark_tag_menu_item_sample\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-bookmark-id=\"976841244\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456248539\" data-hash=\"e73d7771e7d8d7d636\" tabindex=\"0\" role=\"link\"></a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item_new \" onclick=\"Bookmarks.editTag(event, 0, 976841244);\" tabindex=\"0\" role=\"link\">\u041d\u043e\u0432\u0430\u044f \u043c\u0435\u0442\u043a\u0430</a></div></div>\n</div></div><div class=\"BookmarkFooter\" id=\"bookmark_footer_976841244\" style=\"display: none;\"><div class=\"BookmarkTags\" id=\"bookmark_tags_976841244\" onclick=\"cur.cancelClick = true\"></div></div>\n</div><div class=\"page_block bookmark_block\">\n  <div class=\"bookmarks_row wall_module  bookmarks_row_type_video\" style=\"filter: none; opacity: 1; pointer-events: auto; display: block;\"><div id=\"post\" class=\"_post post feed_post_indicator\" data-post-id=\"\">\n  <div class=\"_post_content\">\n    \n    \n    \n    <div class=\"post_header\">\n  <a class=\"post_image\" href=\"/club228819579\" tabindex=\"-1\" aria-hidden=\"true\">\n    <div class=\"post_image_stories\">\n      <img src=\"https://sun1-93.userapi.com/s/v1/ig2/WFq0_q0yPJ0DYV8X32djGkHy9X59CDAlj7hEPLSbUhmZuLfTGEQuVJ8QGd2nnNwLDdD8MJhWy-okifkHl9npZl_1.jpg?quality=95&amp;crop=192,76,614,614&amp;as=32x32,48x48,72x72,108x108,160x160,240x240,360x360,480x480,540x540&amp;ava=1&amp;cs=50x50\" data-post-id=\"\" data-post-click-type=\"post_owner_img\" class=\"post_img\" alt=\"Japanese AV 2025 (Full Movies) R18\">\n      <span class=\"blind_label\">.</span>\n    </div>\n  </a>\n  <div class=\"post_header_info\">\n    <h5 class=\"post_author\"><a href=\"/club228819579\" class=\"group_link author\">Japanese AV 2025 (Full Movies) R18</a></h5>\n    <div class=\"post_date\"><span><span class=\"rel_date\" data-date=\"1741965701\">14 \u043c\u0430\u0440 \u0432 18:21</span></span></div>\n    \n    \n  </div>\n</div>\n    <div class=\"post_content Post--redesignFooterV3\">\n      <div class=\"\">\n        <div class=\"wall_text\"><div class=\"page_post_sized_thumbs clear_fix\" style=\"width: 550px; filter: none; opacity: 1; pointer-events: auto; display: block;\"><a href=\"/video-228819579_456242934?list=3b909290a3a1658b47\" data-video=\"-228819579_456242934\" data-list=\"3b909290a3a1658b47\" data-duration=\"15509\" aria-label=\"\u0412\u0438\u0434\u0435\u043e DVMM-217 | FHD (2025) | Akari Aizawa, Haruka Katsuragi, Himari Kinoshita, Minami Maeda, Reimi Hasegawa, Yui Tojo \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c\u044e 4 \u0447\u0430\u0441\u0430 18 \u043c\u0438\u043d\u0443\u0442 29 \u0441\u0435\u043a\u0443\u043d\u0434 \" onclick=\"return showInlineVideo(&quot;-228819579_456242934&quot;, &quot;3b909290a3a1658b47&quot;, {&quot;autoplay&quot;:1}, event, this);\" style=\"width: 550px; height: 309px; background-image: url(&quot;https://sun9-6.userapi.com/impg/Y0K2yd5VZLdNoc0oxjaf8vZ9VBEu8KSzUrEqEg/DAioa42ZMks.jpg?size=800x450&amp;quality=95&amp;keep_aspect_ratio=1&amp;background=000000&amp;sign=d454c54dcee3a94743d85f25cf0dd53a&amp;type=video_thumb&quot;); display: block; opacity: 1; pointer-events: auto;\" class=\"page_post_thumb_wrap image_cover  page_post_thumb_video page_video_autoplayable page_post_thumb_last_column page_post_thumb_last_row\"><div class=\"page_post_video_play_inline\"></div><div scheme=\"\" class=\"video_thumb_label\"><span class=\"video_thumb_label_item video_thumb_label_platform\"></span><span class=\"video_thumb_label_item video_thumb_label_duration\">4:18:29</span></div></a></div><div class=\"media_desc post_video_desc\">\n  <a class=\"lnk\" id=\"post_media_lnk_0\" onclick=\"return showVideo(&quot;-228819579_456242934&quot;, &quot;3b909290a3a1658b47&quot;, {&quot;autoplay&quot;:1}, event, this);\" href=\"/video-228819579_456242934?list=3b909290a3a1658b47\" data-video=\"-228819579_456242934\" data-list=\"3b909290a3a1658b47\" data-duration=\"15509\" aria-label=\"\u0412\u0438\u0434\u0435\u043e DVMM-217 | FHD (2025) | Akari Aizawa, Haruka Katsuragi, Himari Kinoshita, Minami Maeda, Reimi Hasegawa, Yui Tojo \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c\u044e 4 \u0447\u0430\u0441\u0430 18 \u043c\u0438\u043d\u0443\u0442 29 \u0441\u0435\u043a\u0443\u043d\u0434 \">\n    <div class=\"a post_video_title\">DVMM-217 | FHD (2025) | Akari Aizawa, Haruka Katsuragi, Himari Kinoshita, Minami Maeda, Reimi Hasegawa, Yui Tojo</div><div class=\"post_video_views_count\">801 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440</div>\n  </a>\n</div></div>\n        \n\n        \n        \n        \n        \n        <div class=\"replies\"></div>\n      </div>\n    </div>\n    \n  </div>\n</div><div class=\"ui_actions_menu_wrap _ui_menu_wrap bookmarks_actions_menu\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\">\n  <div class=\"ui_actions_menu_icons\" tabindex=\"0\" aria-label=\"\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f\" role=\"button\" onclick=\"uiActionsMenu.keyToggle(this, event);\" onkeydown=\"uiActionsMenu.keyboardToggle &amp;&amp; uiActionsMenu.keyboardToggle(this, event, {preventKeyboardClickEvent: true});\"> <span class=\"blind_label\">\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f</span> </div>\n  <div class=\"ui_actions_menu _ui_menu \"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item\" onclick=\"Bookmarks.removeBookmark(this, 3, -228819579, 456242934, '1a2a39b5c32d5a1fa2')\" tabindex=\"0\" role=\"link\">\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u0437 \u0437\u0430\u043a\u043b\u0430\u0434\u043e\u043a</a><div class=\"ui_actions_menu_sep\"></div><a class=\"ui_actions_menu_item_sublist ui_actions_menu_item\" tabindex=\"0\" role=\"link\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(domNS(this), event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(domNS(this), event);\">\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043c\u0435\u0442\u043a\u0438</a>\n<div class=\"ui_actions_menu_sublist\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, event);\"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"976580446\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456242934\" data-tag-id=\"60389336\" data-tag-name=\"\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435\" data-hash=\"1a2a39b5c32d5a1fa2\" tabindex=\"0\" role=\"link\">\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"976580446\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456242934\" data-tag-id=\"60389337\" data-tag-name=\"\u0412\u0430\u0436\u043d\u043e\u0435\" data-hash=\"1a2a39b5c32d5a1fa2\" tabindex=\"0\" role=\"link\">\u0412\u0430\u0436\u043d\u043e\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item bookmark_tag_menu_item_sample\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-bookmark-id=\"976580446\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456242934\" data-hash=\"1a2a39b5c32d5a1fa2\" tabindex=\"0\" role=\"link\"></a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item_new \" onclick=\"Bookmarks.editTag(event, 0, 976580446);\" tabindex=\"0\" role=\"link\">\u041d\u043e\u0432\u0430\u044f \u043c\u0435\u0442\u043a\u0430</a></div></div>\n</div></div><div class=\"BookmarkFooter\" id=\"bookmark_footer_976580446\" style=\"display: none;\"><div class=\"BookmarkTags\" id=\"bookmark_tags_976580446\" onclick=\"cur.cancelClick = true\"></div></div>\n</div><div class=\"page_block bookmark_block\">\n  <div class=\"bookmarks_row wall_module  bookmarks_row_type_video\" style=\"filter: none; opacity: 1; pointer-events: auto; display: block;\"><div id=\"post\" class=\"_post post feed_post_indicator\" data-post-id=\"\">\n  <div class=\"_post_content\">\n    \n    \n    \n    <div class=\"post_header\">\n  <a class=\"post_image\" href=\"/club228819579\" tabindex=\"-1\" aria-hidden=\"true\">\n    <div class=\"post_image_stories\">\n      <img src=\"https://sun1-93.userapi.com/s/v1/ig2/WFq0_q0yPJ0DYV8X32djGkHy9X59CDAlj7hEPLSbUhmZuLfTGEQuVJ8QGd2nnNwLDdD8MJhWy-okifkHl9npZl_1.jpg?quality=95&amp;crop=192,76,614,614&amp;as=32x32,48x48,72x72,108x108,160x160,240x240,360x360,480x480,540x540&amp;ava=1&amp;cs=50x50\" data-post-id=\"\" data-post-click-type=\"post_owner_img\" class=\"post_img\" alt=\"Japanese AV 2025 (Full Movies) R18\">\n      <span class=\"blind_label\">.</span>\n    </div>\n  </a>\n  <div class=\"post_header_info\">\n    <h5 class=\"post_author\"><a href=\"/club228819579\" class=\"group_link author\">Japanese AV 2025 (Full Movies) R18</a></h5>\n    <div class=\"post_date\"></div>\n    \n    \n  </div>\n</div>\n    <div class=\"post_content Post--redesignFooterV3\">\n      <div class=\"\">\n        <div class=\"wall_text\"><div class=\"page_post_sized_thumbs\" style=\"width: 550px; height: 310px; filter: none; opacity: 1; pointer-events: auto; display: block;\">\n  <div class=\"VideoRestriction\" style=\"display: none; pointer-events: none; opacity: 0;\">\n      <div class=\"VideoRestriction__boxWrap\">\n        <div class=\"VideoRestriction__box\">\n          <div class=\"VideoRestriction__icon VideoRestriction__icon--age\"></div>\n          <div class=\"VideoRestriction__title\">\u0412\u0438\u0434\u0435\u043e \u0441&nbsp;\u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</div>\n        </div>\n      </div>\n  </div>\n</div>\n<div class=\"media_desc post_video_desc\">\n  <a class=\"lnk\" id=\"post_media_lnk_0\" onclick=\"return showVideo('-228819579_456241334', '', {autoplay: 1, hasRestriction: 1}, event);\" href=\"/video-228819579_456241334\" data-video=\"-228819579_456241334\" data-list=\"\">\n    <div class=\"a post_video_title\">\u0412\u0438\u0434\u0435\u043e \u0441&nbsp;\u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</div>\n  </a>\n</div></div>\n        \n\n        \n        \n        \n        \n        <div class=\"replies\"></div>\n      </div>\n    </div>\n    \n  </div>\n</div><div class=\"ui_actions_menu_wrap _ui_menu_wrap bookmarks_actions_menu\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\">\n  <div class=\"ui_actions_menu_icons\" tabindex=\"0\" aria-label=\"\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f\" role=\"button\" onclick=\"uiActionsMenu.keyToggle(this, event);\" onkeydown=\"uiActionsMenu.keyboardToggle &amp;&amp; uiActionsMenu.keyboardToggle(this, event, {preventKeyboardClickEvent: true});\"> <span class=\"blind_label\">\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f</span> </div>\n  <div class=\"ui_actions_menu _ui_menu \"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item\" onclick=\"Bookmarks.removeBookmark(this, 3, -228819579, 456241334, '5337ac2b79ee82abf9')\" tabindex=\"0\" role=\"link\">\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u0437 \u0437\u0430\u043a\u043b\u0430\u0434\u043e\u043a</a><div class=\"ui_actions_menu_sep\"></div><a class=\"ui_actions_menu_item_sublist ui_actions_menu_item\" tabindex=\"0\" role=\"link\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(domNS(this), event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(domNS(this), event);\">\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043c\u0435\u0442\u043a\u0438</a>\n<div class=\"ui_actions_menu_sublist\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, event);\"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"976579905\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456241334\" data-tag-id=\"60389336\" data-tag-name=\"\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435\" data-hash=\"5337ac2b79ee82abf9\" tabindex=\"0\" role=\"link\">\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"976579905\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456241334\" data-tag-id=\"60389337\" data-tag-name=\"\u0412\u0430\u0436\u043d\u043e\u0435\" data-hash=\"5337ac2b79ee82abf9\" tabindex=\"0\" role=\"link\">\u0412\u0430\u0436\u043d\u043e\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item bookmark_tag_menu_item_sample\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-bookmark-id=\"976579905\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456241334\" data-hash=\"5337ac2b79ee82abf9\" tabindex=\"0\" role=\"link\"></a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item_new \" onclick=\"Bookmarks.editTag(event, 0, 976579905);\" tabindex=\"0\" role=\"link\">\u041d\u043e\u0432\u0430\u044f \u043c\u0435\u0442\u043a\u0430</a></div></div>\n</div></div><div class=\"BookmarkFooter\" id=\"bookmark_footer_976579905\" style=\"display: none;\"><div class=\"BookmarkTags\" id=\"bookmark_tags_976579905\" onclick=\"cur.cancelClick = true\"></div></div>\n</div><div class=\"page_block bookmark_block\">\n  <div class=\"bookmarks_row wall_module  bookmarks_row_type_video\" style=\"filter: none; opacity: 1; pointer-events: auto; display: block;\"><div id=\"post\" class=\"_post post feed_post_indicator\" data-post-id=\"\">\n  <div class=\"_post_content\">\n    \n    \n    \n    <div class=\"post_header\">\n  <a class=\"post_image\" href=\"/club228819579\" tabindex=\"-1\" aria-hidden=\"true\">\n    <div class=\"post_image_stories\">\n      <img src=\"https://sun1-93.userapi.com/s/v1/ig2/WFq0_q0yPJ0DYV8X32djGkHy9X59CDAlj7hEPLSbUhmZuLfTGEQuVJ8QGd2nnNwLDdD8MJhWy-okifkHl9npZl_1.jpg?quality=95&amp;crop=192,76,614,614&amp;as=32x32,48x48,72x72,108x108,160x160,240x240,360x360,480x480,540x540&amp;ava=1&amp;cs=50x50\" data-post-id=\"\" data-post-click-type=\"post_owner_img\" class=\"post_img\" alt=\"Japanese AV 2025 (Full Movies) R18\">\n      <span class=\"blind_label\">.</span>\n    </div>\n  </a>\n  <div class=\"post_header_info\">\n    <h5 class=\"post_author\"><a href=\"/club228819579\" class=\"group_link author\">Japanese AV 2025 (Full Movies) R18</a></h5>\n    <div class=\"post_date\"></div>\n    \n    \n  </div>\n</div>\n    <div class=\"post_content Post--redesignFooterV3\">\n      <div class=\"\">\n        <div class=\"wall_text\"><div class=\"page_post_sized_thumbs\" style=\"width: 550px; height: 310px; filter: none; opacity: 1; pointer-events: auto; display: block;\">\n  <div class=\"VideoRestriction\" style=\"display: none; pointer-events: none; opacity: 0;\">\n      <div class=\"VideoRestriction__boxWrap\">\n        <div class=\"VideoRestriction__box\">\n          <div class=\"VideoRestriction__icon VideoRestriction__icon--age\"></div>\n          <div class=\"VideoRestriction__title\">\u0412\u0438\u0434\u0435\u043e \u0441&nbsp;\u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</div>\n        </div>\n      </div>\n  </div>\n</div>\n<div class=\"media_desc post_video_desc\">\n  <a class=\"lnk\" id=\"post_media_lnk_0\" onclick=\"return showVideo('-228819579_456248046', '', {autoplay: 1, hasRestriction: 1}, event);\" href=\"/video-228819579_456248046\" data-video=\"-228819579_456248046\" data-list=\"\">\n    <div class=\"a post_video_title\">\u0412\u0438\u0434\u0435\u043e \u0441&nbsp;\u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</div>\n  </a>\n</div></div>\n        \n\n        \n        \n        \n        \n        <div class=\"replies\"></div>\n      </div>\n    </div>\n    \n  </div>\n</div><div class=\"ui_actions_menu_wrap _ui_menu_wrap bookmarks_actions_menu\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\">\n  <div class=\"ui_actions_menu_icons\" tabindex=\"0\" aria-label=\"\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f\" role=\"button\" onclick=\"uiActionsMenu.keyToggle(this, event);\" onkeydown=\"uiActionsMenu.keyboardToggle &amp;&amp; uiActionsMenu.keyboardToggle(this, event, {preventKeyboardClickEvent: true});\"> <span class=\"blind_label\">\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f</span> </div>\n  <div class=\"ui_actions_menu _ui_menu \"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item\" onclick=\"Bookmarks.removeBookmark(this, 3, -228819579, 456248046, 'cfc30ac9384244507e')\" tabindex=\"0\" role=\"link\">\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u0437 \u0437\u0430\u043a\u043b\u0430\u0434\u043e\u043a</a><div class=\"ui_actions_menu_sep\"></div><a class=\"ui_actions_menu_item_sublist ui_actions_menu_item\" tabindex=\"0\" role=\"link\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(domNS(this), event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(domNS(this), event);\">\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043c\u0435\u0442\u043a\u0438</a>\n<div class=\"ui_actions_menu_sublist\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, event);\"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"975140568\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456248046\" data-tag-id=\"60389336\" data-tag-name=\"\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435\" data-hash=\"cfc30ac9384244507e\" tabindex=\"0\" role=\"link\">\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"975140568\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456248046\" data-tag-id=\"60389337\" data-tag-name=\"\u0412\u0430\u0436\u043d\u043e\u0435\" data-hash=\"cfc30ac9384244507e\" tabindex=\"0\" role=\"link\">\u0412\u0430\u0436\u043d\u043e\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item bookmark_tag_menu_item_sample\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-bookmark-id=\"975140568\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456248046\" data-hash=\"cfc30ac9384244507e\" tabindex=\"0\" role=\"link\"></a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item_new \" onclick=\"Bookmarks.editTag(event, 0, 975140568);\" tabindex=\"0\" role=\"link\">\u041d\u043e\u0432\u0430\u044f \u043c\u0435\u0442\u043a\u0430</a></div></div>\n</div></div><div class=\"BookmarkFooter\" id=\"bookmark_footer_975140568\" style=\"display: none;\"><div class=\"BookmarkTags\" id=\"bookmark_tags_975140568\" onclick=\"cur.cancelClick = true\"></div></div>\n</div><div class=\"page_block bookmark_block\">\n  <div class=\"bookmarks_row wall_module  bookmarks_row_type_video\" style=\"filter: none; opacity: 1; pointer-events: auto; display: block;\"><div id=\"post\" class=\"_post post feed_post_indicator\" data-post-id=\"\">\n  <div class=\"_post_content\">\n    \n    \n    \n    <div class=\"post_header\">\n  <a class=\"post_image\" href=\"/club221028554\" tabindex=\"-1\" aria-hidden=\"true\">\n    <div class=\"post_image_stories\">\n      <img src=\"https://sun1-83.userapi.com/s/v1/ig2/cy2b50TubtswIT1rDaIkvxqFFiqTaEkEtuYpyRuK1diLvnq-e_AiQtXPZ3wijCR1Xyl1rwJ1_A0PrH7eWF3fAkel.jpg?quality=95&amp;crop=64,213,512,512&amp;as=32x32,48x48,72x72,108x108,160x160,240x240,360x360,480x480&amp;ava=1&amp;cs=50x50\" data-post-id=\"\" data-post-click-type=\"post_owner_img\" class=\"post_img\" alt=\"Japanese AV (4K) R18\">\n      <span class=\"blind_label\">.</span>\n    </div>\n  </a>\n  <div class=\"post_header_info\">\n    <h5 class=\"post_author\"><a href=\"/club221028554\" class=\"group_link author\">Japanese AV (4K) R18</a></h5>\n    <div class=\"post_date\"><span><span class=\"rel_date\" data-date=\"1750170826\">17 \u0438\u044e\u043d \u0432 17:33</span></span></div>\n    \n    \n  </div>\n</div>\n    <div class=\"post_content Post--redesignFooterV3\">\n      <div class=\"\">\n        <div class=\"wall_text\"><div class=\"page_post_sized_thumbs clear_fix\" style=\"width: 550px; filter: none; opacity: 1; pointer-events: auto; display: block;\"><a href=\"/video-221028554_456243335?list=aee26d52d11b82458d\" data-video=\"-221028554_456243335\" data-list=\"aee26d52d11b82458d\" data-duration=\"8819\" aria-label=\"\u0412\u0438\u0434\u0435\u043e MFYD-013 | 4K (2025) | Misako Aiba \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c\u044e 2 \u0447\u0430\u0441\u0430 26 \u043c\u0438\u043d\u0443\u0442 59 \u0441\u0435\u043a\u0443\u043d\u0434 \" onclick=\"return showInlineVideo(&quot;-221028554_456243335&quot;, &quot;aee26d52d11b82458d&quot;, {&quot;autoplay&quot;:1}, event, this);\" style=\"width: 550px; height: 309px; background-image: url(&quot;https://sun9-22.userapi.com/impg/GUwNNknPm813g2zs0V25NetpMq2uVBybDa5X3A/ItPVxCitnBc.jpg?size=800x450&amp;quality=95&amp;keep_aspect_ratio=1&amp;background=000000&amp;sign=df1c4828118149cd9f1379a7f5c788ec&amp;type=video_thumb&quot;); display: block; opacity: 1; pointer-events: auto;\" class=\"page_post_thumb_wrap image_cover  page_post_thumb_video page_video_autoplayable page_post_thumb_last_column page_post_thumb_last_row\"><div class=\"page_post_video_play_inline\"></div><div scheme=\"\" class=\"video_thumb_label\"><span class=\"video_thumb_label_item video_thumb_label_platform\"></span><span class=\"video_thumb_label_item video_thumb_label_duration\">2:26:59</span></div></a></div><div class=\"media_desc post_video_desc\">\n  <a class=\"lnk\" id=\"post_media_lnk_0\" onclick=\"return showVideo(&quot;-221028554_456243335&quot;, &quot;aee26d52d11b82458d&quot;, {&quot;autoplay&quot;:1}, event, this);\" href=\"/video-221028554_456243335?list=aee26d52d11b82458d\" data-video=\"-221028554_456243335\" data-list=\"aee26d52d11b82458d\" data-duration=\"8819\" aria-label=\"\u0412\u0438\u0434\u0435\u043e MFYD-013 | 4K (2025) | Misako Aiba \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c\u044e 2 \u0447\u0430\u0441\u0430 26 \u043c\u0438\u043d\u0443\u0442 59 \u0441\u0435\u043a\u0443\u043d\u0434 \">\n    <div class=\"a post_video_title\">MFYD-013 | 4K (2025) | Misako Aiba</div><div class=\"post_video_views_count\">1<span class=\"num_delim\"> </span>333 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430</div>\n  </a>\n</div></div>\n        \n\n        \n        \n        \n        \n        <div class=\"replies\"></div>\n      </div>\n    </div>\n    \n  </div>\n</div><div class=\"ui_actions_menu_wrap _ui_menu_wrap bookmarks_actions_menu\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\">\n  <div class=\"ui_actions_menu_icons\" tabindex=\"0\" aria-label=\"\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f\" role=\"button\" onclick=\"uiActionsMenu.keyToggle(this, event);\" onkeydown=\"uiActionsMenu.keyboardToggle &amp;&amp; uiActionsMenu.keyboardToggle(this, event, {preventKeyboardClickEvent: true});\"> <span class=\"blind_label\">\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f</span> </div>\n  <div class=\"ui_actions_menu _ui_menu \"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item\" onclick=\"Bookmarks.removeBookmark(this, 3, -221028554, 456243335, 'd9a6b8d3c5f9c1ea58')\" tabindex=\"0\" role=\"link\">\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u0437 \u0437\u0430\u043a\u043b\u0430\u0434\u043e\u043a</a><div class=\"ui_actions_menu_sep\"></div><a class=\"ui_actions_menu_item_sublist ui_actions_menu_item\" tabindex=\"0\" role=\"link\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(domNS(this), event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(domNS(this), event);\">\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043c\u0435\u0442\u043a\u0438</a>\n<div class=\"ui_actions_menu_sublist\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, event);\"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"974947761\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456243335\" data-tag-id=\"60389336\" data-tag-name=\"\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435\" data-hash=\"d9a6b8d3c5f9c1ea58\" tabindex=\"0\" role=\"link\">\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"974947761\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456243335\" data-tag-id=\"60389337\" data-tag-name=\"\u0412\u0430\u0436\u043d\u043e\u0435\" data-hash=\"d9a6b8d3c5f9c1ea58\" tabindex=\"0\" role=\"link\">\u0412\u0430\u0436\u043d\u043e\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item bookmark_tag_menu_item_sample\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-bookmark-id=\"974947761\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456243335\" data-hash=\"d9a6b8d3c5f9c1ea58\" tabindex=\"0\" role=\"link\"></a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item_new \" onclick=\"Bookmarks.editTag(event, 0, 974947761);\" tabindex=\"0\" role=\"link\">\u041d\u043e\u0432\u0430\u044f \u043c\u0435\u0442\u043a\u0430</a></div></div>\n</div></div><div class=\"BookmarkFooter\" id=\"bookmark_footer_974947761\" style=\"display: none;\"><div class=\"BookmarkTags\" id=\"bookmark_tags_974947761\" onclick=\"cur.cancelClick = true\"></div></div>\n</div><div class=\"page_block bookmark_block\">\n  <div class=\"bookmarks_row wall_module  bookmarks_row_type_video\" style=\"filter: none; opacity: 1; pointer-events: auto; display: block;\"><div id=\"post\" class=\"_post post feed_post_indicator\" data-post-id=\"\">\n  <div class=\"_post_content\">\n    \n    \n    \n    <div class=\"post_header\">\n  <a class=\"post_image\" href=\"/club223202736\" tabindex=\"-1\" aria-hidden=\"true\">\n    <div class=\"post_image_stories\">\n      <img src=\"https://sun1-17.userapi.com/s/v1/ig2/Le5QY0NotM-hPgdblSWJtnEDT8Ae2Kc8gcKq9EF4iD9OW2FEfRcFQ7AjwFWmw2C9NR5IW85vtTn0rD7e8dMY2wAt.jpg?quality=95&amp;crop=0,117,828,828&amp;as=32x32,48x48,72x72,108x108,160x160,240x240,360x360,480x480,540x540,640x640,720x720&amp;ava=1&amp;cs=50x50\" data-post-id=\"\" data-post-click-type=\"post_owner_img\" class=\"post_img\" alt=\"DEN\">\n      <span class=\"blind_label\">.</span>\n    </div>\n  </a>\n  <div class=\"post_header_info\">\n    <h5 class=\"post_author\"><a href=\"/club223202736\" class=\"group_link author\">DEN</a></h5>\n    <div class=\"post_date\"></div>\n    \n    \n  </div>\n</div>\n    <div class=\"post_content Post--redesignFooterV3\">\n      <div class=\"\">\n        <div class=\"wall_text\"><div class=\"page_post_sized_thumbs\" style=\"width: 550px; height: 310px; filter: none; opacity: 1; pointer-events: auto; display: block;\">\n  <div class=\"VideoRestriction\" style=\"display: none; pointer-events: none; opacity: 0;\">\n      <div class=\"VideoRestriction__boxWrap\">\n        <div class=\"VideoRestriction__box\">\n          <div class=\"VideoRestriction__icon VideoRestriction__icon--age\"></div>\n          <div class=\"VideoRestriction__title\">\u0412\u0438\u0434\u0435\u043e \u0441&nbsp;\u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</div>\n        </div>\n      </div>\n  </div>\n</div>\n<div class=\"media_desc post_video_desc\">\n  <a class=\"lnk\" id=\"post_media_lnk_0\" onclick=\"return showVideo('-223202736_456240992', '', {autoplay: 1, hasRestriction: 1}, event);\" href=\"/video-223202736_456240992\" data-video=\"-223202736_456240992\" data-list=\"\">\n    <div class=\"a post_video_title\">\u0412\u0438\u0434\u0435\u043e \u0441&nbsp;\u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</div>\n  </a>\n</div></div>\n        \n\n        \n        \n        \n        \n        <div class=\"replies\"></div>\n      </div>\n    </div>\n    \n  </div>\n</div><div class=\"ui_actions_menu_wrap _ui_menu_wrap bookmarks_actions_menu\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\">\n  <div class=\"ui_actions_menu_icons\" tabindex=\"0\" aria-label=\"\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f\" role=\"button\" onclick=\"uiActionsMenu.keyToggle(this, event);\" onkeydown=\"uiActionsMenu.keyboardToggle &amp;&amp; uiActionsMenu.keyboardToggle(this, event, {preventKeyboardClickEvent: true});\"> <span class=\"blind_label\">\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f</span> </div>\n  <div class=\"ui_actions_menu _ui_menu \"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item\" onclick=\"Bookmarks.removeBookmark(this, 3, -223202736, 456240992, 'ecb29ee5e6524f5bef')\" tabindex=\"0\" role=\"link\">\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u0437 \u0437\u0430\u043a\u043b\u0430\u0434\u043e\u043a</a><div class=\"ui_actions_menu_sep\"></div><a class=\"ui_actions_menu_item_sublist ui_actions_menu_item\" tabindex=\"0\" role=\"link\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(domNS(this), event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(domNS(this), event);\">\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043c\u0435\u0442\u043a\u0438</a>\n<div class=\"ui_actions_menu_sublist\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, event);\"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"966292637\" data-item-type=\"3\" data-item-oid=\"-223202736\" data-item-id=\"456240992\" data-tag-id=\"60389336\" data-tag-name=\"\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435\" data-hash=\"ecb29ee5e6524f5bef\" tabindex=\"0\" role=\"link\">\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"966292637\" data-item-type=\"3\" data-item-oid=\"-223202736\" data-item-id=\"456240992\" data-tag-id=\"60389337\" data-tag-name=\"\u0412\u0430\u0436\u043d\u043e\u0435\" data-hash=\"ecb29ee5e6524f5bef\" tabindex=\"0\" role=\"link\">\u0412\u0430\u0436\u043d\u043e\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item bookmark_tag_menu_item_sample\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-bookmark-id=\"966292637\" data-item-type=\"3\" data-item-oid=\"-223202736\" data-item-id=\"456240992\" data-hash=\"ecb29ee5e6524f5bef\" tabindex=\"0\" role=\"link\"></a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item_new \" onclick=\"Bookmarks.editTag(event, 0, 966292637);\" tabindex=\"0\" role=\"link\">\u041d\u043e\u0432\u0430\u044f \u043c\u0435\u0442\u043a\u0430</a></div></div>\n</div></div><div class=\"BookmarkFooter\" id=\"bookmark_footer_966292637\" style=\"display: none;\"><div class=\"BookmarkTags\" id=\"bookmark_tags_966292637\" onclick=\"cur.cancelClick = true\"></div></div>\n</div><div class=\"page_block bookmark_block\">\n  <div class=\"bookmarks_row wall_module  bookmarks_row_type_video\" style=\"filter: none; opacity: 1; pointer-events: auto; display: block;\"><div id=\"post\" class=\"_post post feed_post_indicator\" data-post-id=\"\">\n  <div class=\"_post_content\">\n    \n    \n    \n    <div class=\"post_header\">\n  <a class=\"post_image\" href=\"/club227378054\" tabindex=\"-1\" aria-hidden=\"true\">\n    <div class=\"post_image_stories\">\n      <img src=\"https://sun1-87.userapi.com/s/v1/ig2/na7WgiIDcXDod9lls-WQ_4iiXdjPGzREsc9mjpmQM0ZeZ4EuspensNJkyTicRuNbcQGwi5A1Zx_AVEv5yPHq5YIG.jpg?quality=95&amp;crop=47,0,480,480&amp;as=32x32,48x48,72x72,108x108,160x160,240x240,360x360,480x480&amp;ava=1&amp;cs=50x50\" data-post-id=\"\" data-post-click-type=\"post_owner_img\" class=\"post_img\" alt=\"Porn 4k\">\n      <span class=\"blind_label\">.</span>\n    </div>\n  </a>\n  <div class=\"post_header_info\">\n    <h5 class=\"post_author\"><a href=\"/club227378054\" class=\"group_link author\">Porn 4k</a></h5>\n    <div class=\"post_date\"></div>\n    \n    \n  </div>\n</div>\n    <div class=\"post_content Post--redesignFooterV3\">\n      <div class=\"\">\n        <div class=\"wall_text\"><div class=\"page_post_sized_thumbs\" style=\"width: 550px; height: 310px; filter: none; opacity: 1; pointer-events: auto; display: block;\">\n  <div class=\"VideoRestriction\" style=\"display: none; pointer-events: none; opacity: 0;\">\n      <div class=\"VideoRestriction__boxWrap\">\n        <div class=\"VideoRestriction__box\">\n          <div class=\"VideoRestriction__icon VideoRestriction__icon--age\"></div>\n          <div class=\"VideoRestriction__title\">\u0412\u0438\u0434\u0435\u043e \u0441&nbsp;\u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</div>\n        </div>\n      </div>\n  </div>\n</div>\n<div class=\"media_desc post_video_desc\">\n  <a class=\"lnk\" id=\"post_media_lnk_0\" onclick=\"return showVideo('-227378054_456240635', '', {autoplay: 1, hasRestriction: 1}, event);\" href=\"/video-227378054_456240635\" data-video=\"-227378054_456240635\" data-list=\"\">\n    <div class=\"a post_video_title\">\u0412\u0438\u0434\u0435\u043e \u0441&nbsp;\u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</div>\n  </a>\n</div></div>\n        \n\n        \n        \n        \n        \n        <div class=\"replies\"></div>\n      </div>\n    </div>\n    \n  </div>\n</div><div class=\"ui_actions_menu_wrap _ui_menu_wrap bookmarks_actions_menu\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\">\n  <div class=\"ui_actions_menu_icons\" tabindex=\"0\" aria-label=\"\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f\" role=\"button\" onclick=\"uiActionsMenu.keyToggle(this, event);\" onkeydown=\"uiActionsMenu.keyboardToggle &amp;&amp; uiActionsMenu.keyboardToggle(this, event, {preventKeyboardClickEvent: true});\"> <span class=\"blind_label\">\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f</span> </div>\n  <div class=\"ui_actions_menu _ui_menu \"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item\" onclick=\"Bookmarks.removeBookmark(this, 3, -227378054, 456240635, '0dcb30d70ce7f8131f')\" tabindex=\"0\" role=\"link\">\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u0437 \u0437\u0430\u043a\u043b\u0430\u0434\u043e\u043a</a><div class=\"ui_actions_menu_sep\"></div><a class=\"ui_actions_menu_item_sublist ui_actions_menu_item\" tabindex=\"0\" role=\"link\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(domNS(this), event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(domNS(this), event);\">\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043c\u0435\u0442\u043a\u0438</a>\n<div class=\"ui_actions_menu_sublist\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, event);\"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"966259133\" data-item-type=\"3\" data-item-oid=\"-227378054\" data-item-id=\"456240635\" data-tag-id=\"60389336\" data-tag-name=\"\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435\" data-hash=\"0dcb30d70ce7f8131f\" tabindex=\"0\" role=\"link\">\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"966259133\" data-item-type=\"3\" data-item-oid=\"-227378054\" data-item-id=\"456240635\" data-tag-id=\"60389337\" data-tag-name=\"\u0412\u0430\u0436\u043d\u043e\u0435\" data-hash=\"0dcb30d70ce7f8131f\" tabindex=\"0\" role=\"link\">\u0412\u0430\u0436\u043d\u043e\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item bookmark_tag_menu_item_sample\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-bookmark-id=\"966259133\" data-item-type=\"3\" data-item-oid=\"-227378054\" data-item-id=\"456240635\" data-hash=\"0dcb30d70ce7f8131f\" tabindex=\"0\" role=\"link\"></a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item_new \" onclick=\"Bookmarks.editTag(event, 0, 966259133);\" tabindex=\"0\" role=\"link\">\u041d\u043e\u0432\u0430\u044f \u043c\u0435\u0442\u043a\u0430</a></div></div>\n</div></div><div class=\"BookmarkFooter\" id=\"bookmark_footer_966259133\" style=\"display: none;\"><div class=\"BookmarkTags\" id=\"bookmark_tags_966259133\" onclick=\"cur.cancelClick = true\"></div></div>\n</div><div class=\"page_block bookmark_block\">\n  <div class=\"bookmarks_row wall_module  bookmarks_row_type_video\" style=\"filter: none; opacity: 1; pointer-events: auto; display: block;\"><div id=\"post\" class=\"_post post feed_post_indicator\" data-post-id=\"\">\n  <div class=\"_post_content\">\n    \n    \n    \n    <div class=\"post_header\">\n  <a class=\"post_image\" href=\"/club228819579\" tabindex=\"-1\" aria-hidden=\"true\">\n    <div class=\"post_image_stories\">\n      <img src=\"https://sun1-93.userapi.com/s/v1/ig2/WFq0_q0yPJ0DYV8X32djGkHy9X59CDAlj7hEPLSbUhmZuLfTGEQuVJ8QGd2nnNwLDdD8MJhWy-okifkHl9npZl_1.jpg?quality=95&amp;crop=192,76,614,614&amp;as=32x32,48x48,72x72,108x108,160x160,240x240,360x360,480x480,540x540&amp;ava=1&amp;cs=50x50\" data-post-id=\"\" data-post-click-type=\"post_owner_img\" class=\"post_img\" alt=\"Japanese AV 2025 (Full Movies) R18\">\n      <span class=\"blind_label\">.</span>\n    </div>\n  </a>\n  <div class=\"post_header_info\">\n    <h5 class=\"post_author\"><a href=\"/club228819579\" class=\"group_link author\">Japanese AV 2025 (Full Movies) R18</a></h5>\n    <div class=\"post_date\"></div>\n    \n    \n  </div>\n</div>\n    <div class=\"post_content Post--redesignFooterV3\">\n      <div class=\"\">\n        <div class=\"wall_text\"><div class=\"page_post_sized_thumbs\" style=\"width: 550px; height: 310px; filter: none; opacity: 1; pointer-events: auto; display: block;\">\n  <div class=\"VideoRestriction\" style=\"display: none; pointer-events: none; opacity: 0;\">\n      <div class=\"VideoRestriction__boxWrap\">\n        <div class=\"VideoRestriction__box\">\n          <div class=\"VideoRestriction__icon VideoRestriction__icon--age\"></div>\n          <div class=\"VideoRestriction__title\">\u0412\u0438\u0434\u0435\u043e \u0441&nbsp;\u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</div>\n        </div>\n      </div>\n  </div>\n</div>\n<div class=\"media_desc post_video_desc\">\n  <a class=\"lnk\" id=\"post_media_lnk_0\" onclick=\"return showVideo('-228819579_456245365', '', {autoplay: 1, hasRestriction: 1}, event);\" href=\"/video-228819579_456245365\" data-video=\"-228819579_456245365\" data-list=\"\">\n    <div class=\"a post_video_title\">\u0412\u0438\u0434\u0435\u043e \u0441&nbsp;\u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</div>\n  </a>\n</div></div>\n        \n\n        \n        \n        \n        \n        <div class=\"replies\"></div>\n      </div>\n    </div>\n    \n  </div>\n</div><div class=\"ui_actions_menu_wrap _ui_menu_wrap bookmarks_actions_menu\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\">\n  <div class=\"ui_actions_menu_icons\" tabindex=\"0\" aria-label=\"\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f\" role=\"button\" onclick=\"uiActionsMenu.keyToggle(this, event);\" onkeydown=\"uiActionsMenu.keyboardToggle &amp;&amp; uiActionsMenu.keyboardToggle(this, event, {preventKeyboardClickEvent: true});\"> <span class=\"blind_label\">\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f</span> </div>\n  <div class=\"ui_actions_menu _ui_menu \"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item\" onclick=\"Bookmarks.removeBookmark(this, 3, -228819579, 456245365, '345441e98223c78328')\" tabindex=\"0\" role=\"link\">\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u0437 \u0437\u0430\u043a\u043b\u0430\u0434\u043e\u043a</a><div class=\"ui_actions_menu_sep\"></div><a class=\"ui_actions_menu_item_sublist ui_actions_menu_item\" tabindex=\"0\" role=\"link\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(domNS(this), event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(domNS(this), event);\">\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043c\u0435\u0442\u043a\u0438</a>\n<div class=\"ui_actions_menu_sublist\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, event);\"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"965620597\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456245365\" data-tag-id=\"60389336\" data-tag-name=\"\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435\" data-hash=\"345441e98223c78328\" tabindex=\"0\" role=\"link\">\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"965620597\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456245365\" data-tag-id=\"60389337\" data-tag-name=\"\u0412\u0430\u0436\u043d\u043e\u0435\" data-hash=\"345441e98223c78328\" tabindex=\"0\" role=\"link\">\u0412\u0430\u0436\u043d\u043e\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item bookmark_tag_menu_item_sample\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-bookmark-id=\"965620597\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456245365\" data-hash=\"345441e98223c78328\" tabindex=\"0\" role=\"link\"></a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item_new \" onclick=\"Bookmarks.editTag(event, 0, 965620597);\" tabindex=\"0\" role=\"link\">\u041d\u043e\u0432\u0430\u044f \u043c\u0435\u0442\u043a\u0430</a></div></div>\n</div></div><div class=\"BookmarkFooter\" id=\"bookmark_footer_965620597\" style=\"display: none;\"><div class=\"BookmarkTags\" id=\"bookmark_tags_965620597\" onclick=\"cur.cancelClick = true\"></div></div>\n</div><div class=\"page_block bookmark_block\">\n  <div class=\"bookmarks_row wall_module  bookmarks_row_type_video\" style=\"filter: none; opacity: 1; pointer-events: auto; display: block;\"><div id=\"post\" class=\"_post post feed_post_indicator\" data-post-id=\"\">\n  <div class=\"_post_content\">\n    \n    \n    \n    <div class=\"post_header\">\n  <a class=\"post_image\" href=\"/club228819579\" tabindex=\"-1\" aria-hidden=\"true\">\n    <div class=\"post_image_stories\">\n      <img src=\"https://sun1-93.userapi.com/s/v1/ig2/WFq0_q0yPJ0DYV8X32djGkHy9X59CDAlj7hEPLSbUhmZuLfTGEQuVJ8QGd2nnNwLDdD8MJhWy-okifkHl9npZl_1.jpg?quality=95&amp;crop=192,76,614,614&amp;as=32x32,48x48,72x72,108x108,160x160,240x240,360x360,480x480,540x540&amp;ava=1&amp;cs=50x50\" data-post-id=\"\" data-post-click-type=\"post_owner_img\" class=\"post_img\" alt=\"Japanese AV 2025 (Full Movies) R18\">\n      <span class=\"blind_label\">.</span>\n    </div>\n  </a>\n  <div class=\"post_header_info\">\n    <h5 class=\"post_author\"><a href=\"/club228819579\" class=\"group_link author\">Japanese AV 2025 (Full Movies) R18</a></h5>\n    <div class=\"post_date\"></div>\n    \n    \n  </div>\n</div>\n    <div class=\"post_content Post--redesignFooterV3\">\n      <div class=\"\">\n        <div class=\"wall_text\"><div class=\"page_post_sized_thumbs\" style=\"width: 550px; height: 310px; filter: none; opacity: 1; pointer-events: auto; display: block;\">\n  <div class=\"VideoRestriction\" style=\"display: none; pointer-events: none; opacity: 0;\">\n      <div class=\"VideoRestriction__boxWrap\">\n        <div class=\"VideoRestriction__box\">\n          <div class=\"VideoRestriction__icon VideoRestriction__icon--age\"></div>\n          <div class=\"VideoRestriction__title\">\u0412\u0438\u0434\u0435\u043e \u0441&nbsp;\u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</div>\n        </div>\n      </div>\n  </div>\n</div>\n<div class=\"media_desc post_video_desc\">\n  <a class=\"lnk\" id=\"post_media_lnk_0\" onclick=\"return showVideo('-228819579_456245403', '', {autoplay: 1, hasRestriction: 1}, event);\" href=\"/video-228819579_456245403\" data-video=\"-228819579_456245403\" data-list=\"\">\n    <div class=\"a post_video_title\">\u0412\u0438\u0434\u0435\u043e \u0441&nbsp;\u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</div>\n  </a>\n</div></div>\n        \n\n        \n        \n        \n        \n        <div class=\"replies\"></div>\n      </div>\n    </div>\n    \n  </div>\n</div><div class=\"ui_actions_menu_wrap _ui_menu_wrap bookmarks_actions_menu\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\">\n  <div class=\"ui_actions_menu_icons\" tabindex=\"0\" aria-label=\"\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f\" role=\"button\" onclick=\"uiActionsMenu.keyToggle(this, event);\" onkeydown=\"uiActionsMenu.keyboardToggle &amp;&amp; uiActionsMenu.keyboardToggle(this, event, {preventKeyboardClickEvent: true});\"> <span class=\"blind_label\">\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f</span> </div>\n  <div class=\"ui_actions_menu _ui_menu \"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item\" onclick=\"Bookmarks.removeBookmark(this, 3, -228819579, 456245403, 'cbbe022d11404ce9e5')\" tabindex=\"0\" role=\"link\">\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u0437 \u0437\u0430\u043a\u043b\u0430\u0434\u043e\u043a</a><div class=\"ui_actions_menu_sep\"></div><a class=\"ui_actions_menu_item_sublist ui_actions_menu_item\" tabindex=\"0\" role=\"link\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(domNS(this), event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(domNS(this), event);\">\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043c\u0435\u0442\u043a\u0438</a>\n<div class=\"ui_actions_menu_sublist\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, event);\"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"965619662\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456245403\" data-tag-id=\"60389336\" data-tag-name=\"\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435\" data-hash=\"cbbe022d11404ce9e5\" tabindex=\"0\" role=\"link\">\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"965619662\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456245403\" data-tag-id=\"60389337\" data-tag-name=\"\u0412\u0430\u0436\u043d\u043e\u0435\" data-hash=\"cbbe022d11404ce9e5\" tabindex=\"0\" role=\"link\">\u0412\u0430\u0436\u043d\u043e\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item bookmark_tag_menu_item_sample\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-bookmark-id=\"965619662\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456245403\" data-hash=\"cbbe022d11404ce9e5\" tabindex=\"0\" role=\"link\"></a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item_new \" onclick=\"Bookmarks.editTag(event, 0, 965619662);\" tabindex=\"0\" role=\"link\">\u041d\u043e\u0432\u0430\u044f \u043c\u0435\u0442\u043a\u0430</a></div></div>\n</div></div><div class=\"BookmarkFooter\" id=\"bookmark_footer_965619662\" style=\"display: none;\"><div class=\"BookmarkTags\" id=\"bookmark_tags_965619662\" onclick=\"cur.cancelClick = true\"></div></div>\n</div><div class=\"page_block bookmark_block\">\n  <div class=\"bookmarks_row wall_module  bookmarks_row_type_video\" style=\"filter: none; opacity: 1; pointer-events: auto; display: block;\"><div id=\"post\" class=\"_post post feed_post_indicator\" data-post-id=\"\">\n  <div class=\"_post_content\">\n    \n    \n    \n    <div class=\"post_header\">\n  <a class=\"post_image\" href=\"/club228819579\" tabindex=\"-1\" aria-hidden=\"true\">\n    <div class=\"post_image_stories\">\n      <img src=\"https://sun1-93.userapi.com/s/v1/ig2/WFq0_q0yPJ0DYV8X32djGkHy9X59CDAlj7hEPLSbUhmZuLfTGEQuVJ8QGd2nnNwLDdD8MJhWy-okifkHl9npZl_1.jpg?quality=95&amp;crop=192,76,614,614&amp;as=32x32,48x48,72x72,108x108,160x160,240x240,360x360,480x480,540x540&amp;ava=1&amp;cs=50x50\" data-post-id=\"\" data-post-click-type=\"post_owner_img\" class=\"post_img\" alt=\"Japanese AV 2025 (Full Movies) R18\">\n      <span class=\"blind_label\">.</span>\n    </div>\n  </a>\n  <div class=\"post_header_info\">\n    <h5 class=\"post_author\"><a href=\"/club228819579\" class=\"group_link author\">Japanese AV 2025 (Full Movies) R18</a></h5>\n    <div class=\"post_date\"></div>\n    \n    \n  </div>\n</div>\n    <div class=\"post_content Post--redesignFooterV3\">\n      <div class=\"\">\n        <div class=\"wall_text\"><div class=\"page_post_sized_thumbs\" style=\"width: 550px; height: 310px; filter: none; opacity: 1; pointer-events: auto; display: block;\">\n  <div class=\"VideoRestriction\" style=\"display: none; pointer-events: none; opacity: 0;\">\n      <div class=\"VideoRestriction__boxWrap\">\n        <div class=\"VideoRestriction__box\">\n          <div class=\"VideoRestriction__icon VideoRestriction__icon--age\"></div>\n          <div class=\"VideoRestriction__title\">\u0412\u0438\u0434\u0435\u043e \u0441&nbsp;\u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</div>\n        </div>\n      </div>\n  </div>\n</div>\n<div class=\"media_desc post_video_desc\">\n  <a class=\"lnk\" id=\"post_media_lnk_0\" onclick=\"return showVideo('-228819579_456245641', '', {autoplay: 1, hasRestriction: 1}, event);\" href=\"/video-228819579_456245641\" data-video=\"-228819579_456245641\" data-list=\"\">\n    <div class=\"a post_video_title\">\u0412\u0438\u0434\u0435\u043e \u0441&nbsp;\u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</div>\n  </a>\n</div></div>\n        \n\n        \n        \n        \n        \n        <div class=\"replies\"></div>\n      </div>\n    </div>\n    \n  </div>\n</div><div class=\"ui_actions_menu_wrap _ui_menu_wrap bookmarks_actions_menu\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\">\n  <div class=\"ui_actions_menu_icons\" tabindex=\"0\" aria-label=\"\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f\" role=\"button\" onclick=\"uiActionsMenu.keyToggle(this, event);\" onkeydown=\"uiActionsMenu.keyboardToggle &amp;&amp; uiActionsMenu.keyboardToggle(this, event, {preventKeyboardClickEvent: true});\"> <span class=\"blind_label\">\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f</span> </div>\n  <div class=\"ui_actions_menu _ui_menu \"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item\" onclick=\"Bookmarks.removeBookmark(this, 3, -228819579, 456245641, 'aa17ff8f0ddda449f5')\" tabindex=\"0\" role=\"link\">\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u0437 \u0437\u0430\u043a\u043b\u0430\u0434\u043e\u043a</a><div class=\"ui_actions_menu_sep\"></div><a class=\"ui_actions_menu_item_sublist ui_actions_menu_item\" tabindex=\"0\" role=\"link\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(domNS(this), event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(domNS(this), event);\">\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043c\u0435\u0442\u043a\u0438</a>\n<div class=\"ui_actions_menu_sublist\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, event);\"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"965616842\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456245641\" data-tag-id=\"60389336\" data-tag-name=\"\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435\" data-hash=\"aa17ff8f0ddda449f5\" tabindex=\"0\" role=\"link\">\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"965616842\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456245641\" data-tag-id=\"60389337\" data-tag-name=\"\u0412\u0430\u0436\u043d\u043e\u0435\" data-hash=\"aa17ff8f0ddda449f5\" tabindex=\"0\" role=\"link\">\u0412\u0430\u0436\u043d\u043e\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item bookmark_tag_menu_item_sample\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-bookmark-id=\"965616842\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456245641\" data-hash=\"aa17ff8f0ddda449f5\" tabindex=\"0\" role=\"link\"></a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item_new \" onclick=\"Bookmarks.editTag(event, 0, 965616842);\" tabindex=\"0\" role=\"link\">\u041d\u043e\u0432\u0430\u044f \u043c\u0435\u0442\u043a\u0430</a></div></div>\n</div></div><div class=\"BookmarkFooter\" id=\"bookmark_footer_965616842\" style=\"display: none;\"><div class=\"BookmarkTags\" id=\"bookmark_tags_965616842\" onclick=\"cur.cancelClick = true\"></div></div>\n</div><div class=\"page_block bookmark_block\">\n  <div class=\"bookmarks_row wall_module  bookmarks_row_type_video\" style=\"filter: none; opacity: 1; pointer-events: auto; display: block;\"><div id=\"post\" class=\"_post post feed_post_indicator\" data-post-id=\"\">\n  <div class=\"_post_content\">\n    \n    \n    \n    <div class=\"post_header\">\n  <a class=\"post_image\" href=\"/club228819579\" tabindex=\"-1\" aria-hidden=\"true\">\n    <div class=\"post_image_stories\">\n      <img src=\"https://sun1-93.userapi.com/s/v1/ig2/WFq0_q0yPJ0DYV8X32djGkHy9X59CDAlj7hEPLSbUhmZuLfTGEQuVJ8QGd2nnNwLDdD8MJhWy-okifkHl9npZl_1.jpg?quality=95&amp;crop=192,76,614,614&amp;as=32x32,48x48,72x72,108x108,160x160,240x240,360x360,480x480,540x540&amp;ava=1&amp;cs=50x50\" data-post-id=\"\" data-post-click-type=\"post_owner_img\" class=\"post_img\" alt=\"Japanese AV 2025 (Full Movies) R18\">\n      <span class=\"blind_label\">.</span>\n    </div>\n  </a>\n  <div class=\"post_header_info\">\n    <h5 class=\"post_author\"><a href=\"/club228819579\" class=\"group_link author\">Japanese AV 2025 (Full Movies) R18</a></h5>\n    <div class=\"post_date\"></div>\n    \n    \n  </div>\n</div>\n    <div class=\"post_content Post--redesignFooterV3\">\n      <div class=\"\">\n        <div class=\"wall_text\"><div class=\"page_post_sized_thumbs\" style=\"width: 550px; height: 310px; filter: none; opacity: 1; pointer-events: auto; display: block;\">\n  <div class=\"VideoRestriction\" style=\"display: none; pointer-events: none; opacity: 0;\">\n      <div class=\"VideoRestriction__boxWrap\">\n        <div class=\"VideoRestriction__box\">\n          <div class=\"VideoRestriction__icon VideoRestriction__icon--age\"></div>\n          <div class=\"VideoRestriction__title\">\u0412\u0438\u0434\u0435\u043e \u0441&nbsp;\u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</div>\n        </div>\n      </div>\n  </div>\n</div>\n<div class=\"media_desc post_video_desc\">\n  <a class=\"lnk\" id=\"post_media_lnk_0\" onclick=\"return showVideo('-228819579_456245677', '', {autoplay: 1, hasRestriction: 1}, event);\" href=\"/video-228819579_456245677\" data-video=\"-228819579_456245677\" data-list=\"\">\n    <div class=\"a post_video_title\">\u0412\u0438\u0434\u0435\u043e \u0441&nbsp;\u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</div>\n  </a>\n</div></div>\n        \n\n        \n        \n        \n        \n        <div class=\"replies\"></div>\n      </div>\n    </div>\n    \n  </div>\n</div><div class=\"ui_actions_menu_wrap _ui_menu_wrap bookmarks_actions_menu\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\">\n  <div class=\"ui_actions_menu_icons\" tabindex=\"0\" aria-label=\"\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f\" role=\"button\" onclick=\"uiActionsMenu.keyToggle(this, event);\" onkeydown=\"uiActionsMenu.keyboardToggle &amp;&amp; uiActionsMenu.keyboardToggle(this, event, {preventKeyboardClickEvent: true});\"> <span class=\"blind_label\">\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f</span> </div>\n  <div class=\"ui_actions_menu _ui_menu \"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item\" onclick=\"Bookmarks.removeBookmark(this, 3, -228819579, 456245677, 'f2094b5d2536f12ed2')\" tabindex=\"0\" role=\"link\">\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u0437 \u0437\u0430\u043a\u043b\u0430\u0434\u043e\u043a</a><div class=\"ui_actions_menu_sep\"></div><a class=\"ui_actions_menu_item_sublist ui_actions_menu_item\" tabindex=\"0\" role=\"link\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(domNS(this), event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(domNS(this), event);\">\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043c\u0435\u0442\u043a\u0438</a>\n<div class=\"ui_actions_menu_sublist\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, event);\"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"965616089\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456245677\" data-tag-id=\"60389336\" data-tag-name=\"\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435\" data-hash=\"f2094b5d2536f12ed2\" tabindex=\"0\" role=\"link\">\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"965616089\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456245677\" data-tag-id=\"60389337\" data-tag-name=\"\u0412\u0430\u0436\u043d\u043e\u0435\" data-hash=\"f2094b5d2536f12ed2\" tabindex=\"0\" role=\"link\">\u0412\u0430\u0436\u043d\u043e\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item bookmark_tag_menu_item_sample\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-bookmark-id=\"965616089\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456245677\" data-hash=\"f2094b5d2536f12ed2\" tabindex=\"0\" role=\"link\"></a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item_new \" onclick=\"Bookmarks.editTag(event, 0, 965616089);\" tabindex=\"0\" role=\"link\">\u041d\u043e\u0432\u0430\u044f \u043c\u0435\u0442\u043a\u0430</a></div></div>\n</div></div><div class=\"BookmarkFooter\" id=\"bookmark_footer_965616089\" style=\"display: none;\"><div class=\"BookmarkTags\" id=\"bookmark_tags_965616089\" onclick=\"cur.cancelClick = true\"></div></div>\n</div><div class=\"page_block bookmark_block\">\n  <div class=\"bookmarks_row wall_module  bookmarks_row_type_video\" style=\"filter: none; opacity: 1; pointer-events: auto; display: block;\"><div id=\"post\" class=\"_post post feed_post_indicator\" data-post-id=\"\">\n  <div class=\"_post_content\">\n    \n    \n    \n    <div class=\"post_header\">\n  <a class=\"post_image\" href=\"/club228819579\" tabindex=\"-1\" aria-hidden=\"true\">\n    <div class=\"post_image_stories\">\n      <img src=\"https://sun1-93.userapi.com/s/v1/ig2/WFq0_q0yPJ0DYV8X32djGkHy9X59CDAlj7hEPLSbUhmZuLfTGEQuVJ8QGd2nnNwLDdD8MJhWy-okifkHl9npZl_1.jpg?quality=95&amp;crop=192,76,614,614&amp;as=32x32,48x48,72x72,108x108,160x160,240x240,360x360,480x480,540x540&amp;ava=1&amp;cs=50x50\" data-post-id=\"\" data-post-click-type=\"post_owner_img\" class=\"post_img\" alt=\"Japanese AV 2025 (Full Movies) R18\">\n      <span class=\"blind_label\">.</span>\n    </div>\n  </a>\n  <div class=\"post_header_info\">\n    <h5 class=\"post_author\"><a href=\"/club228819579\" class=\"group_link author\">Japanese AV 2025 (Full Movies) R18</a></h5>\n    <div class=\"post_date\"></div>\n    \n    \n  </div>\n</div>\n    <div class=\"post_content Post--redesignFooterV3\">\n      <div class=\"\">\n        <div class=\"wall_text\"><div class=\"page_post_sized_thumbs\" style=\"width: 550px; height: 310px; filter: none; opacity: 1; pointer-events: auto; display: block;\">\n  <div class=\"VideoRestriction\" style=\"display: none; pointer-events: none; opacity: 0;\">\n      <div class=\"VideoRestriction__boxWrap\">\n        <div class=\"VideoRestriction__box\">\n          <div class=\"VideoRestriction__icon VideoRestriction__icon--age\"></div>\n          <div class=\"VideoRestriction__title\">\u0412\u0438\u0434\u0435\u043e \u0441&nbsp;\u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</div>\n        </div>\n      </div>\n  </div>\n</div>\n<div class=\"media_desc post_video_desc\">\n  <a class=\"lnk\" id=\"post_media_lnk_0\" onclick=\"return showVideo('-228819579_456245707', '', {autoplay: 1, hasRestriction: 1}, event);\" href=\"/video-228819579_456245707\" data-video=\"-228819579_456245707\" data-list=\"\">\n    <div class=\"a post_video_title\">\u0412\u0438\u0434\u0435\u043e \u0441&nbsp;\u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</div>\n  </a>\n</div></div>\n        \n\n        \n        \n        \n        \n        <div class=\"replies\"></div>\n      </div>\n    </div>\n    \n  </div>\n</div><div class=\"ui_actions_menu_wrap _ui_menu_wrap bookmarks_actions_menu\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\">\n  <div class=\"ui_actions_menu_icons\" tabindex=\"0\" aria-label=\"\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f\" role=\"button\" onclick=\"uiActionsMenu.keyToggle(this, event);\" onkeydown=\"uiActionsMenu.keyboardToggle &amp;&amp; uiActionsMenu.keyboardToggle(this, event, {preventKeyboardClickEvent: true});\"> <span class=\"blind_label\">\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f</span> </div>\n  <div class=\"ui_actions_menu _ui_menu \"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item\" onclick=\"Bookmarks.removeBookmark(this, 3, -228819579, 456245707, '4fbd1b4549bb263edd')\" tabindex=\"0\" role=\"link\">\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u0437 \u0437\u0430\u043a\u043b\u0430\u0434\u043e\u043a</a><div class=\"ui_actions_menu_sep\"></div><a class=\"ui_actions_menu_item_sublist ui_actions_menu_item\" tabindex=\"0\" role=\"link\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(domNS(this), event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(domNS(this), event);\">\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043c\u0435\u0442\u043a\u0438</a>\n<div class=\"ui_actions_menu_sublist\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, event);\"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"965615126\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456245707\" data-tag-id=\"60389336\" data-tag-name=\"\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435\" data-hash=\"4fbd1b4549bb263edd\" tabindex=\"0\" role=\"link\">\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"965615126\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456245707\" data-tag-id=\"60389337\" data-tag-name=\"\u0412\u0430\u0436\u043d\u043e\u0435\" data-hash=\"4fbd1b4549bb263edd\" tabindex=\"0\" role=\"link\">\u0412\u0430\u0436\u043d\u043e\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item bookmark_tag_menu_item_sample\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-bookmark-id=\"965615126\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456245707\" data-hash=\"4fbd1b4549bb263edd\" tabindex=\"0\" role=\"link\"></a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item_new \" onclick=\"Bookmarks.editTag(event, 0, 965615126);\" tabindex=\"0\" role=\"link\">\u041d\u043e\u0432\u0430\u044f \u043c\u0435\u0442\u043a\u0430</a></div></div>\n</div></div><div class=\"BookmarkFooter\" id=\"bookmark_footer_965615126\" style=\"display: none;\"><div class=\"BookmarkTags\" id=\"bookmark_tags_965615126\" onclick=\"cur.cancelClick = true\"></div></div>\n</div><div class=\"page_block bookmark_block\">\n  <div class=\"bookmarks_row wall_module  bookmarks_row_type_video\" style=\"filter: none; opacity: 1; pointer-events: auto; display: block;\"><div id=\"post\" class=\"_post post feed_post_indicator\" data-post-id=\"\">\n  <div class=\"_post_content\">\n    \n    \n    \n    <div class=\"post_header\">\n  <a class=\"post_image\" href=\"/club228819579\" tabindex=\"-1\" aria-hidden=\"true\">\n    <div class=\"post_image_stories\">\n      <img src=\"https://sun1-93.userapi.com/s/v1/ig2/WFq0_q0yPJ0DYV8X32djGkHy9X59CDAlj7hEPLSbUhmZuLfTGEQuVJ8QGd2nnNwLDdD8MJhWy-okifkHl9npZl_1.jpg?quality=95&amp;crop=192,76,614,614&amp;as=32x32,48x48,72x72,108x108,160x160,240x240,360x360,480x480,540x540&amp;ava=1&amp;cs=50x50\" data-post-id=\"\" data-post-click-type=\"post_owner_img\" class=\"post_img\" alt=\"Japanese AV 2025 (Full Movies) R18\">\n      <span class=\"blind_label\">.</span>\n    </div>\n  </a>\n  <div class=\"post_header_info\">\n    <h5 class=\"post_author\"><a href=\"/club228819579\" class=\"group_link author\">Japanese AV 2025 (Full Movies) R18</a></h5>\n    <div class=\"post_date\"></div>\n    \n    \n  </div>\n</div>\n    <div class=\"post_content Post--redesignFooterV3\">\n      <div class=\"\">\n        <div class=\"wall_text\"><div class=\"page_post_sized_thumbs\" style=\"width: 550px; height: 310px; filter: none; opacity: 1; pointer-events: auto; display: block;\">\n  <div class=\"VideoRestriction\" style=\"display: none; pointer-events: none; opacity: 0;\">\n      <div class=\"VideoRestriction__boxWrap\">\n        <div class=\"VideoRestriction__box\">\n          <div class=\"VideoRestriction__icon VideoRestriction__icon--age\"></div>\n          <div class=\"VideoRestriction__title\">\u0412\u0438\u0434\u0435\u043e \u0441&nbsp;\u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</div>\n        </div>\n      </div>\n  </div>\n</div>\n<div class=\"media_desc post_video_desc\">\n  <a class=\"lnk\" id=\"post_media_lnk_0\" onclick=\"return showVideo('-228819579_456245948', '', {autoplay: 1, hasRestriction: 1}, event);\" href=\"/video-228819579_456245948\" data-video=\"-228819579_456245948\" data-list=\"\">\n    <div class=\"a post_video_title\">\u0412\u0438\u0434\u0435\u043e \u0441&nbsp;\u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</div>\n  </a>\n</div></div>\n        \n\n        \n        \n        \n        \n        <div class=\"replies\"></div>\n      </div>\n    </div>\n    \n  </div>\n</div><div class=\"ui_actions_menu_wrap _ui_menu_wrap bookmarks_actions_menu\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\">\n  <div class=\"ui_actions_menu_icons\" tabindex=\"0\" aria-label=\"\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f\" role=\"button\" onclick=\"uiActionsMenu.keyToggle(this, event);\" onkeydown=\"uiActionsMenu.keyboardToggle &amp;&amp; uiActionsMenu.keyboardToggle(this, event, {preventKeyboardClickEvent: true});\"> <span class=\"blind_label\">\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f</span> </div>\n  <div class=\"ui_actions_menu _ui_menu \"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item\" onclick=\"Bookmarks.removeBookmark(this, 3, -228819579, 456245948, '7200d7539bfb24e82c')\" tabindex=\"0\" role=\"link\">\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u0437 \u0437\u0430\u043a\u043b\u0430\u0434\u043e\u043a</a><div class=\"ui_actions_menu_sep\"></div><a class=\"ui_actions_menu_item_sublist ui_actions_menu_item\" tabindex=\"0\" role=\"link\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(domNS(this), event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(domNS(this), event);\">\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043c\u0435\u0442\u043a\u0438</a>\n<div class=\"ui_actions_menu_sublist\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, event);\"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"965611641\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456245948\" data-tag-id=\"60389336\" data-tag-name=\"\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435\" data-hash=\"7200d7539bfb24e82c\" tabindex=\"0\" role=\"link\">\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"965611641\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456245948\" data-tag-id=\"60389337\" data-tag-name=\"\u0412\u0430\u0436\u043d\u043e\u0435\" data-hash=\"7200d7539bfb24e82c\" tabindex=\"0\" role=\"link\">\u0412\u0430\u0436\u043d\u043e\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item bookmark_tag_menu_item_sample\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-bookmark-id=\"965611641\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456245948\" data-hash=\"7200d7539bfb24e82c\" tabindex=\"0\" role=\"link\"></a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item_new \" onclick=\"Bookmarks.editTag(event, 0, 965611641);\" tabindex=\"0\" role=\"link\">\u041d\u043e\u0432\u0430\u044f \u043c\u0435\u0442\u043a\u0430</a></div></div>\n</div></div><div class=\"BookmarkFooter\" id=\"bookmark_footer_965611641\" style=\"display: none;\"><div class=\"BookmarkTags\" id=\"bookmark_tags_965611641\" onclick=\"cur.cancelClick = true\"></div></div>\n</div><div class=\"page_block bookmark_block\">\n  <div class=\"bookmarks_row wall_module  bookmarks_row_type_video\" style=\"filter: none; opacity: 1; pointer-events: auto; display: block;\"><div id=\"post\" class=\"_post post feed_post_indicator\" data-post-id=\"\">\n  <div class=\"_post_content\">\n    \n    \n    \n    <div class=\"post_header\">\n  <a class=\"post_image\" href=\"/club228819579\" tabindex=\"-1\" aria-hidden=\"true\">\n    <div class=\"post_image_stories\">\n      <img src=\"https://sun1-93.userapi.com/s/v1/ig2/WFq0_q0yPJ0DYV8X32djGkHy9X59CDAlj7hEPLSbUhmZuLfTGEQuVJ8QGd2nnNwLDdD8MJhWy-okifkHl9npZl_1.jpg?quality=95&amp;crop=192,76,614,614&amp;as=32x32,48x48,72x72,108x108,160x160,240x240,360x360,480x480,540x540&amp;ava=1&amp;cs=50x50\" data-post-id=\"\" data-post-click-type=\"post_owner_img\" class=\"post_img\" alt=\"Japanese AV 2025 (Full Movies) R18\">\n      <span class=\"blind_label\">.</span>\n    </div>\n  </a>\n  <div class=\"post_header_info\">\n    <h5 class=\"post_author\"><a href=\"/club228819579\" class=\"group_link author\">Japanese AV 2025 (Full Movies) R18</a></h5>\n    <div class=\"post_date\"></div>\n    \n    \n  </div>\n</div>\n    <div class=\"post_content Post--redesignFooterV3\">\n      <div class=\"\">\n        <div class=\"wall_text\"><div class=\"page_post_sized_thumbs\" style=\"width: 550px; height: 310px; filter: none; opacity: 1; pointer-events: auto; display: block;\">\n  <div class=\"VideoRestriction\" style=\"display: none; pointer-events: none; opacity: 0;\">\n      <div class=\"VideoRestriction__boxWrap\">\n        <div class=\"VideoRestriction__box\">\n          <div class=\"VideoRestriction__icon VideoRestriction__icon--age\"></div>\n          <div class=\"VideoRestriction__title\">\u0412\u0438\u0434\u0435\u043e \u0441&nbsp;\u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</div>\n        </div>\n      </div>\n  </div>\n</div>\n<div class=\"media_desc post_video_desc\">\n  <a class=\"lnk\" id=\"post_media_lnk_0\" onclick=\"return showVideo('-228819579_456246113', '', {autoplay: 1, hasRestriction: 1}, event);\" href=\"/video-228819579_456246113\" data-video=\"-228819579_456246113\" data-list=\"\">\n    <div class=\"a post_video_title\">\u0412\u0438\u0434\u0435\u043e \u0441&nbsp;\u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</div>\n  </a>\n</div></div>\n        \n\n        \n        \n        \n        \n        <div class=\"replies\"></div>\n      </div>\n    </div>\n    \n  </div>\n</div><div class=\"ui_actions_menu_wrap _ui_menu_wrap bookmarks_actions_menu\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\">\n  <div class=\"ui_actions_menu_icons\" tabindex=\"0\" aria-label=\"\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f\" role=\"button\" onclick=\"uiActionsMenu.keyToggle(this, event);\" onkeydown=\"uiActionsMenu.keyboardToggle &amp;&amp; uiActionsMenu.keyboardToggle(this, event, {preventKeyboardClickEvent: true});\"> <span class=\"blind_label\">\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f</span> </div>\n  <div class=\"ui_actions_menu _ui_menu \"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item\" onclick=\"Bookmarks.removeBookmark(this, 3, -228819579, 456246113, 'f5e4a86725bbd7bda2')\" tabindex=\"0\" role=\"link\">\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u0437 \u0437\u0430\u043a\u043b\u0430\u0434\u043e\u043a</a><div class=\"ui_actions_menu_sep\"></div><a class=\"ui_actions_menu_item_sublist ui_actions_menu_item\" tabindex=\"0\" role=\"link\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(domNS(this), event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(domNS(this), event);\">\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043c\u0435\u0442\u043a\u0438</a>\n<div class=\"ui_actions_menu_sublist\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, event);\"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"965609561\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456246113\" data-tag-id=\"60389336\" data-tag-name=\"\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435\" data-hash=\"f5e4a86725bbd7bda2\" tabindex=\"0\" role=\"link\">\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"965609561\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456246113\" data-tag-id=\"60389337\" data-tag-name=\"\u0412\u0430\u0436\u043d\u043e\u0435\" data-hash=\"f5e4a86725bbd7bda2\" tabindex=\"0\" role=\"link\">\u0412\u0430\u0436\u043d\u043e\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item bookmark_tag_menu_item_sample\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-bookmark-id=\"965609561\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456246113\" data-hash=\"f5e4a86725bbd7bda2\" tabindex=\"0\" role=\"link\"></a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item_new \" onclick=\"Bookmarks.editTag(event, 0, 965609561);\" tabindex=\"0\" role=\"link\">\u041d\u043e\u0432\u0430\u044f \u043c\u0435\u0442\u043a\u0430</a></div></div>\n</div></div><div class=\"BookmarkFooter\" id=\"bookmark_footer_965609561\" style=\"display: none;\"><div class=\"BookmarkTags\" id=\"bookmark_tags_965609561\" onclick=\"cur.cancelClick = true\"></div></div>\n</div><div class=\"page_block bookmark_block\">\n  <div class=\"bookmarks_row wall_module  bookmarks_row_type_video\" style=\"filter: none; opacity: 1; pointer-events: auto; display: block;\"><div id=\"post\" class=\"_post post feed_post_indicator\" data-post-id=\"\">\n  <div class=\"_post_content\">\n    \n    \n    \n    <div class=\"post_header\">\n  <a class=\"post_image\" href=\"/club228819579\" tabindex=\"-1\" aria-hidden=\"true\">\n    <div class=\"post_image_stories\">\n      <img src=\"https://sun1-93.userapi.com/s/v1/ig2/WFq0_q0yPJ0DYV8X32djGkHy9X59CDAlj7hEPLSbUhmZuLfTGEQuVJ8QGd2nnNwLDdD8MJhWy-okifkHl9npZl_1.jpg?quality=95&amp;crop=192,76,614,614&amp;as=32x32,48x48,72x72,108x108,160x160,240x240,360x360,480x480,540x540&amp;ava=1&amp;cs=50x50\" data-post-id=\"\" data-post-click-type=\"post_owner_img\" class=\"post_img\" alt=\"Japanese AV 2025 (Full Movies) R18\">\n      <span class=\"blind_label\">.</span>\n    </div>\n  </a>\n  <div class=\"post_header_info\">\n    <h5 class=\"post_author\"><a href=\"/club228819579\" class=\"group_link author\">Japanese AV 2025 (Full Movies) R18</a></h5>\n    <div class=\"post_date\"></div>\n    \n    \n  </div>\n</div>\n    <div class=\"post_content Post--redesignFooterV3\">\n      <div class=\"\">\n        <div class=\"wall_text\"><div class=\"page_post_sized_thumbs\" style=\"width: 550px; height: 310px; filter: none; opacity: 1; pointer-events: auto; display: block;\">\n  <div class=\"VideoRestriction\" style=\"display: none; pointer-events: none; opacity: 0;\">\n      <div class=\"VideoRestriction__boxWrap\">\n        <div class=\"VideoRestriction__box\">\n          <div class=\"VideoRestriction__icon VideoRestriction__icon--age\"></div>\n          <div class=\"VideoRestriction__title\">\u0412\u0438\u0434\u0435\u043e \u0441&nbsp;\u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</div>\n        </div>\n      </div>\n  </div>\n</div>\n<div class=\"media_desc post_video_desc\">\n  <a class=\"lnk\" id=\"post_media_lnk_0\" onclick=\"return showVideo('-228819579_456245954', '', {autoplay: 1, hasRestriction: 1}, event);\" href=\"/video-228819579_456245954\" data-video=\"-228819579_456245954\" data-list=\"\">\n    <div class=\"a post_video_title\">\u0412\u0438\u0434\u0435\u043e \u0441&nbsp;\u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</div>\n  </a>\n</div></div>\n        \n\n        \n        \n        \n        \n        <div class=\"replies\"></div>\n      </div>\n    </div>\n    \n  </div>\n</div><div class=\"ui_actions_menu_wrap _ui_menu_wrap bookmarks_actions_menu\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\">\n  <div class=\"ui_actions_menu_icons\" tabindex=\"0\" aria-label=\"\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f\" role=\"button\" onclick=\"uiActionsMenu.keyToggle(this, event);\" onkeydown=\"uiActionsMenu.keyboardToggle &amp;&amp; uiActionsMenu.keyboardToggle(this, event, {preventKeyboardClickEvent: true});\"> <span class=\"blind_label\">\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f</span> </div>\n  <div class=\"ui_actions_menu _ui_menu \"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item\" onclick=\"Bookmarks.removeBookmark(this, 3, -228819579, 456245954, 'f853a23ba0dc3e87cc')\" tabindex=\"0\" role=\"link\">\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u0437 \u0437\u0430\u043a\u043b\u0430\u0434\u043e\u043a</a><div class=\"ui_actions_menu_sep\"></div><a class=\"ui_actions_menu_item_sublist ui_actions_menu_item\" tabindex=\"0\" role=\"link\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(domNS(this), event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(domNS(this), event);\">\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043c\u0435\u0442\u043a\u0438</a>\n<div class=\"ui_actions_menu_sublist\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, event);\"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"965607604\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456245954\" data-tag-id=\"60389336\" data-tag-name=\"\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435\" data-hash=\"f853a23ba0dc3e87cc\" tabindex=\"0\" role=\"link\">\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"965607604\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456245954\" data-tag-id=\"60389337\" data-tag-name=\"\u0412\u0430\u0436\u043d\u043e\u0435\" data-hash=\"f853a23ba0dc3e87cc\" tabindex=\"0\" role=\"link\">\u0412\u0430\u0436\u043d\u043e\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item bookmark_tag_menu_item_sample\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-bookmark-id=\"965607604\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456245954\" data-hash=\"f853a23ba0dc3e87cc\" tabindex=\"0\" role=\"link\"></a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item_new \" onclick=\"Bookmarks.editTag(event, 0, 965607604);\" tabindex=\"0\" role=\"link\">\u041d\u043e\u0432\u0430\u044f \u043c\u0435\u0442\u043a\u0430</a></div></div>\n</div></div><div class=\"BookmarkFooter\" id=\"bookmark_footer_965607604\" style=\"display: none;\"><div class=\"BookmarkTags\" id=\"bookmark_tags_965607604\" onclick=\"cur.cancelClick = true\"></div></div>\n</div><div class=\"page_block bookmark_block\">\n  <div class=\"bookmarks_row wall_module  bookmarks_row_type_video\" style=\"filter: none; opacity: 1; pointer-events: auto; display: block;\"><div id=\"post\" class=\"_post post feed_post_indicator\" data-post-id=\"\">\n  <div class=\"_post_content\">\n    \n    \n    \n    <div class=\"post_header\">\n  <a class=\"post_image\" href=\"/club228819579\" tabindex=\"-1\" aria-hidden=\"true\">\n    <div class=\"post_image_stories\">\n      <img src=\"https://sun1-93.userapi.com/s/v1/ig2/WFq0_q0yPJ0DYV8X32djGkHy9X59CDAlj7hEPLSbUhmZuLfTGEQuVJ8QGd2nnNwLDdD8MJhWy-okifkHl9npZl_1.jpg?quality=95&amp;crop=192,76,614,614&amp;as=32x32,48x48,72x72,108x108,160x160,240x240,360x360,480x480,540x540&amp;ava=1&amp;cs=50x50\" data-post-id=\"\" data-post-click-type=\"post_owner_img\" class=\"post_img\" alt=\"Japanese AV 2025 (Full Movies) R18\">\n      <span class=\"blind_label\">.</span>\n    </div>\n  </a>\n  <div class=\"post_header_info\">\n    <h5 class=\"post_author\"><a href=\"/club228819579\" class=\"group_link author\">Japanese AV 2025 (Full Movies) R18</a></h5>\n    <div class=\"post_date\"></div>\n    \n    \n  </div>\n</div>\n    <div class=\"post_content Post--redesignFooterV3\">\n      <div class=\"\">\n        <div class=\"wall_text\"><div class=\"page_post_sized_thumbs\" style=\"width: 550px; height: 310px; filter: none; opacity: 1; pointer-events: auto; display: block;\">\n  <div class=\"VideoRestriction\" style=\"display: none; pointer-events: none; opacity: 0;\">\n      <div class=\"VideoRestriction__boxWrap\">\n        <div class=\"VideoRestriction__box\">\n          <div class=\"VideoRestriction__icon VideoRestriction__icon--age\"></div>\n          <div class=\"VideoRestriction__title\">\u0412\u0438\u0434\u0435\u043e \u0441&nbsp;\u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</div>\n        </div>\n      </div>\n  </div>\n</div>\n<div class=\"media_desc post_video_desc\">\n  <a class=\"lnk\" id=\"post_media_lnk_0\" onclick=\"return showVideo('-228819579_456245996', '', {autoplay: 1, hasRestriction: 1}, event);\" href=\"/video-228819579_456245996\" data-video=\"-228819579_456245996\" data-list=\"\">\n    <div class=\"a post_video_title\">\u0412\u0438\u0434\u0435\u043e \u0441&nbsp;\u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</div>\n  </a>\n</div></div>\n        \n\n        \n        \n        \n        \n        <div class=\"replies\"></div>\n      </div>\n    </div>\n    \n  </div>\n</div><div class=\"ui_actions_menu_wrap _ui_menu_wrap bookmarks_actions_menu\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\">\n  <div class=\"ui_actions_menu_icons\" tabindex=\"0\" aria-label=\"\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f\" role=\"button\" onclick=\"uiActionsMenu.keyToggle(this, event);\" onkeydown=\"uiActionsMenu.keyboardToggle &amp;&amp; uiActionsMenu.keyboardToggle(this, event, {preventKeyboardClickEvent: true});\"> <span class=\"blind_label\">\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f</span> </div>\n  <div class=\"ui_actions_menu _ui_menu \"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item\" onclick=\"Bookmarks.removeBookmark(this, 3, -228819579, 456245996, '247198ba6927c5dcc1')\" tabindex=\"0\" role=\"link\">\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u0437 \u0437\u0430\u043a\u043b\u0430\u0434\u043e\u043a</a><div class=\"ui_actions_menu_sep\"></div><a class=\"ui_actions_menu_item_sublist ui_actions_menu_item\" tabindex=\"0\" role=\"link\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(domNS(this), event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(domNS(this), event);\">\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043c\u0435\u0442\u043a\u0438</a>\n<div class=\"ui_actions_menu_sublist\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, event);\"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"965603540\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456245996\" data-tag-id=\"60389336\" data-tag-name=\"\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435\" data-hash=\"247198ba6927c5dcc1\" tabindex=\"0\" role=\"link\">\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"965603540\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456245996\" data-tag-id=\"60389337\" data-tag-name=\"\u0412\u0430\u0436\u043d\u043e\u0435\" data-hash=\"247198ba6927c5dcc1\" tabindex=\"0\" role=\"link\">\u0412\u0430\u0436\u043d\u043e\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item bookmark_tag_menu_item_sample\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-bookmark-id=\"965603540\" data-item-type=\"3\" data-item-oid=\"-228819579\" data-item-id=\"456245996\" data-hash=\"247198ba6927c5dcc1\" tabindex=\"0\" role=\"link\"></a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item_new \" onclick=\"Bookmarks.editTag(event, 0, 965603540);\" tabindex=\"0\" role=\"link\">\u041d\u043e\u0432\u0430\u044f \u043c\u0435\u0442\u043a\u0430</a></div></div>\n</div></div><div class=\"BookmarkFooter\" id=\"bookmark_footer_965603540\" style=\"display: none;\"><div class=\"BookmarkTags\" id=\"bookmark_tags_965603540\" onclick=\"cur.cancelClick = true\"></div></div>\n</div><div class=\"page_block bookmark_block\">\n  <div class=\"bookmarks_row wall_module  bookmarks_row_type_video\" style=\"filter: none; opacity: 1; pointer-events: auto; display: block;\"><div id=\"post\" class=\"_post post feed_post_indicator\" data-post-id=\"\">\n  <div class=\"_post_content\">\n    \n    \n    \n    <div class=\"post_header\">\n  <a class=\"post_image\" href=\"/club221028554\" tabindex=\"-1\" aria-hidden=\"true\">\n    <div class=\"post_image_stories\">\n      <img src=\"https://sun1-83.userapi.com/s/v1/ig2/cy2b50TubtswIT1rDaIkvxqFFiqTaEkEtuYpyRuK1diLvnq-e_AiQtXPZ3wijCR1Xyl1rwJ1_A0PrH7eWF3fAkel.jpg?quality=95&amp;crop=64,213,512,512&amp;as=32x32,48x48,72x72,108x108,160x160,240x240,360x360,480x480&amp;ava=1&amp;cs=50x50\" data-post-id=\"\" data-post-click-type=\"post_owner_img\" class=\"post_img\" alt=\"Japanese AV (4K) R18\">\n      <span class=\"blind_label\">.</span>\n    </div>\n  </a>\n  <div class=\"post_header_info\">\n    <h5 class=\"post_author\"><a href=\"/club221028554\" class=\"group_link author\">Japanese AV (4K) R18</a></h5>\n    <div class=\"post_date\"><span><span class=\"rel_date\" data-date=\"1737930496\">27 \u044f\u043d\u0432 \u0432 1:28</span></span></div>\n    \n    \n  </div>\n</div>\n    <div class=\"post_content Post--redesignFooterV3\">\n      <div class=\"\">\n        <div class=\"wall_text\"><div class=\"page_post_sized_thumbs clear_fix\" style=\"width: 550px; filter: none; opacity: 1; pointer-events: auto; display: block;\"><a href=\"/video-221028554_456242300?list=d6b7c2212948b13fc4\" data-video=\"-221028554_456242300\" data-list=\"d6b7c2212948b13fc4\" data-duration=\"8316\" aria-label=\"\u0412\u0438\u0434\u0435\u043e SDDE-742 | 4K (2025) | Himari Kosaka, Nanao Takizawa, Sakura Misaki, Umi Oikawa \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c\u044e 2 \u0447\u0430\u0441\u0430 18 \u043c\u0438\u043d\u0443\u0442 36 \u0441\u0435\u043a\u0443\u043d\u0434 \" onclick=\"return showInlineVideo(&quot;-221028554_456242300&quot;, &quot;d6b7c2212948b13fc4&quot;, {&quot;autoplay&quot;:1}, event, this);\" style=\"width: 550px; height: 309px; background-image: url(&quot;https://sun9-22.userapi.com/impg/DXawuMBSLbv-8xVe2Wz0eQfIAs87IXi2iant6A/5945Mf8I5TQ.jpg?size=800x450&amp;quality=95&amp;keep_aspect_ratio=1&amp;background=000000&amp;sign=30be362801df531431b0b80fcc1dde60&amp;type=video_thumb&quot;); display: block; opacity: 1; pointer-events: auto;\" class=\"page_post_thumb_wrap image_cover  page_post_thumb_video page_video_autoplayable page_post_thumb_last_column page_post_thumb_last_row\"><div class=\"page_post_video_play_inline\"></div><div scheme=\"\" class=\"video_thumb_label\"><span class=\"video_thumb_label_item video_thumb_label_platform\"></span><span class=\"video_thumb_label_item video_thumb_label_duration\">2:18:36</span></div></a></div><div class=\"media_desc post_video_desc\">\n  <a class=\"lnk\" id=\"post_media_lnk_0\" onclick=\"return showVideo(&quot;-221028554_456242300&quot;, &quot;d6b7c2212948b13fc4&quot;, {&quot;autoplay&quot;:1}, event, this);\" href=\"/video-221028554_456242300?list=d6b7c2212948b13fc4\" data-video=\"-221028554_456242300\" data-list=\"d6b7c2212948b13fc4\" data-duration=\"8316\" aria-label=\"\u0412\u0438\u0434\u0435\u043e SDDE-742 | 4K (2025) | Himari Kosaka, Nanao Takizawa, Sakura Misaki, Umi Oikawa \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c\u044e 2 \u0447\u0430\u0441\u0430 18 \u043c\u0438\u043d\u0443\u0442 36 \u0441\u0435\u043a\u0443\u043d\u0434 \">\n    <div class=\"a post_video_title\">SDDE-742 | 4K (2025) | Himari Kosaka, Nanao Takizawa, Sakura Misaki, Umi Oikawa</div><div class=\"post_video_views_count\">1<span class=\"num_delim\"> </span>035 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432</div>\n  </a>\n</div></div>\n        \n\n        \n        \n        \n        \n        <div class=\"replies\"></div>\n      </div>\n    </div>\n    \n  </div>\n</div><div class=\"ui_actions_menu_wrap _ui_menu_wrap bookmarks_actions_menu\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\">\n  <div class=\"ui_actions_menu_icons\" tabindex=\"0\" aria-label=\"\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f\" role=\"button\" onclick=\"uiActionsMenu.keyToggle(this, event);\" onkeydown=\"uiActionsMenu.keyboardToggle &amp;&amp; uiActionsMenu.keyboardToggle(this, event, {preventKeyboardClickEvent: true});\"> <span class=\"blind_label\">\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f</span> </div>\n  <div class=\"ui_actions_menu _ui_menu \"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item\" onclick=\"Bookmarks.removeBookmark(this, 3, -221028554, 456242300, 'ec62b5d9992dd8e424')\" tabindex=\"0\" role=\"link\">\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u0437 \u0437\u0430\u043a\u043b\u0430\u0434\u043e\u043a</a><div class=\"ui_actions_menu_sep\"></div><a class=\"ui_actions_menu_item_sublist ui_actions_menu_item\" tabindex=\"0\" role=\"link\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(domNS(this), event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(domNS(this), event);\">\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043c\u0435\u0442\u043a\u0438</a>\n<div class=\"ui_actions_menu_sublist\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, event);\"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"955614429\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456242300\" data-tag-id=\"60389336\" data-tag-name=\"\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435\" data-hash=\"ec62b5d9992dd8e424\" tabindex=\"0\" role=\"link\">\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"955614429\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456242300\" data-tag-id=\"60389337\" data-tag-name=\"\u0412\u0430\u0436\u043d\u043e\u0435\" data-hash=\"ec62b5d9992dd8e424\" tabindex=\"0\" role=\"link\">\u0412\u0430\u0436\u043d\u043e\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item bookmark_tag_menu_item_sample\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-bookmark-id=\"955614429\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456242300\" data-hash=\"ec62b5d9992dd8e424\" tabindex=\"0\" role=\"link\"></a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item_new \" onclick=\"Bookmarks.editTag(event, 0, 955614429);\" tabindex=\"0\" role=\"link\">\u041d\u043e\u0432\u0430\u044f \u043c\u0435\u0442\u043a\u0430</a></div></div>\n</div></div><div class=\"BookmarkFooter\" id=\"bookmark_footer_955614429\" style=\"display: none;\"><div class=\"BookmarkTags\" id=\"bookmark_tags_955614429\" onclick=\"cur.cancelClick = true\"></div></div>\n</div><div class=\"page_block bookmark_block\">\n  <div class=\"bookmarks_row wall_module  bookmarks_row_type_video\" style=\"filter: none; opacity: 1; pointer-events: auto; display: block;\"><div id=\"post\" class=\"_post post feed_post_indicator\" data-post-id=\"\">\n  <div class=\"_post_content\">\n    \n    \n    \n    <div class=\"post_header\">\n  <a class=\"post_image\" href=\"/club221028554\" tabindex=\"-1\" aria-hidden=\"true\">\n    <div class=\"post_image_stories\">\n      <img src=\"https://sun1-83.userapi.com/s/v1/ig2/cy2b50TubtswIT1rDaIkvxqFFiqTaEkEtuYpyRuK1diLvnq-e_AiQtXPZ3wijCR1Xyl1rwJ1_A0PrH7eWF3fAkel.jpg?quality=95&amp;crop=64,213,512,512&amp;as=32x32,48x48,72x72,108x108,160x160,240x240,360x360,480x480&amp;ava=1&amp;cs=50x50\" data-post-id=\"\" data-post-click-type=\"post_owner_img\" class=\"post_img\" alt=\"Japanese AV (4K) R18\">\n      <span class=\"blind_label\">.</span>\n    </div>\n  </a>\n  <div class=\"post_header_info\">\n    <h5 class=\"post_author\"><a href=\"/club221028554\" class=\"group_link author\">Japanese AV (4K) R18</a></h5>\n    <div class=\"post_date\"><span><span class=\"rel_date\" data-date=\"1736133139\">6 \u044f\u043d\u0432 \u0432 6:12</span></span></div>\n    \n    \n  </div>\n</div>\n    <div class=\"post_content Post--redesignFooterV3\">\n      <div class=\"\">\n        <div class=\"wall_text\"><div class=\"page_post_sized_thumbs clear_fix\" style=\"width: 550px; filter: none; opacity: 1; pointer-events: auto; display: block;\"><a href=\"/video-221028554_456242153?list=2eb500e4f2a4376ae3\" data-video=\"-221028554_456242153\" data-list=\"2eb500e4f2a4376ae3\" data-duration=\"10055\" aria-label=\"\u0412\u0438\u0434\u0435\u043e SDAB-322 | 4K (2024) | Chinami Natsuno \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c\u044e 2 \u0447\u0430\u0441\u0430 47 \u043c\u0438\u043d\u0443\u0442 35 \u0441\u0435\u043a\u0443\u043d\u0434 \" onclick=\"return showInlineVideo(&quot;-221028554_456242153&quot;, &quot;2eb500e4f2a4376ae3&quot;, {&quot;autoplay&quot;:1}, event, this);\" style=\"width: 550px; height: 309px; background-image: url(&quot;https://sun9-6.userapi.com/impg/NPDp5CmjFj90IKYfEu-hq4M80-ZhPznqUnOsIw/Zz63Vww1y3Y.jpg?size=800x450&amp;quality=95&amp;keep_aspect_ratio=1&amp;background=000000&amp;sign=506e4243e64ad1a8bbefe11064e2711d&amp;type=video_thumb&quot;); display: block; opacity: 1; pointer-events: auto;\" class=\"page_post_thumb_wrap image_cover  page_post_thumb_video page_video_autoplayable page_post_thumb_last_column page_post_thumb_last_row\"><div class=\"page_post_video_play_inline\"></div><div scheme=\"\" class=\"video_thumb_label\"><span class=\"video_thumb_label_item video_thumb_label_platform\"></span><span class=\"video_thumb_label_item video_thumb_label_duration\">2:47:35</span></div></a></div><div class=\"media_desc post_video_desc\">\n  <a class=\"lnk\" id=\"post_media_lnk_0\" onclick=\"return showVideo(&quot;-221028554_456242153&quot;, &quot;2eb500e4f2a4376ae3&quot;, {&quot;autoplay&quot;:1}, event, this);\" href=\"/video-221028554_456242153?list=2eb500e4f2a4376ae3\" data-video=\"-221028554_456242153\" data-list=\"2eb500e4f2a4376ae3\" data-duration=\"10055\" aria-label=\"\u0412\u0438\u0434\u0435\u043e SDAB-322 | 4K (2024) | Chinami Natsuno \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c\u044e 2 \u0447\u0430\u0441\u0430 47 \u043c\u0438\u043d\u0443\u0442 35 \u0441\u0435\u043a\u0443\u043d\u0434 \">\n    <div class=\"a post_video_title\">SDAB-322 | 4K (2024) | Chinami Natsuno</div><div class=\"post_video_views_count\">1<span class=\"num_delim\"> </span>691 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440</div>\n  </a>\n</div></div>\n        \n\n        \n        \n        \n        \n        <div class=\"replies\"></div>\n      </div>\n    </div>\n    \n  </div>\n</div><div class=\"ui_actions_menu_wrap _ui_menu_wrap bookmarks_actions_menu\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\">\n  <div class=\"ui_actions_menu_icons\" tabindex=\"0\" aria-label=\"\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f\" role=\"button\" onclick=\"uiActionsMenu.keyToggle(this, event);\" onkeydown=\"uiActionsMenu.keyboardToggle &amp;&amp; uiActionsMenu.keyboardToggle(this, event, {preventKeyboardClickEvent: true});\"> <span class=\"blind_label\">\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f</span> </div>\n  <div class=\"ui_actions_menu _ui_menu \"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item\" onclick=\"Bookmarks.removeBookmark(this, 3, -221028554, 456242153, '88f19d00d6867f30cf')\" tabindex=\"0\" role=\"link\">\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u0437 \u0437\u0430\u043a\u043b\u0430\u0434\u043e\u043a</a><div class=\"ui_actions_menu_sep\"></div><a class=\"ui_actions_menu_item_sublist ui_actions_menu_item\" tabindex=\"0\" role=\"link\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(domNS(this), event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(domNS(this), event);\">\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043c\u0435\u0442\u043a\u0438</a>\n<div class=\"ui_actions_menu_sublist\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, event);\"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"955588707\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456242153\" data-tag-id=\"60389336\" data-tag-name=\"\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435\" data-hash=\"88f19d00d6867f30cf\" tabindex=\"0\" role=\"link\">\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"955588707\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456242153\" data-tag-id=\"60389337\" data-tag-name=\"\u0412\u0430\u0436\u043d\u043e\u0435\" data-hash=\"88f19d00d6867f30cf\" tabindex=\"0\" role=\"link\">\u0412\u0430\u0436\u043d\u043e\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item bookmark_tag_menu_item_sample\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-bookmark-id=\"955588707\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456242153\" data-hash=\"88f19d00d6867f30cf\" tabindex=\"0\" role=\"link\"></a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item_new \" onclick=\"Bookmarks.editTag(event, 0, 955588707);\" tabindex=\"0\" role=\"link\">\u041d\u043e\u0432\u0430\u044f \u043c\u0435\u0442\u043a\u0430</a></div></div>\n</div></div><div class=\"BookmarkFooter\" id=\"bookmark_footer_955588707\" style=\"display: none;\"><div class=\"BookmarkTags\" id=\"bookmark_tags_955588707\" onclick=\"cur.cancelClick = true\"></div></div>\n</div><div class=\"page_block bookmark_block\">\n  <div class=\"bookmarks_row wall_module  bookmarks_row_type_video\" style=\"filter: none; opacity: 1; pointer-events: auto; display: block;\"><div id=\"post\" class=\"_post post feed_post_indicator\" data-post-id=\"\">\n  <div class=\"_post_content\">\n    \n    \n    \n    <div class=\"post_header\">\n  <a class=\"post_image\" href=\"/club221028554\" tabindex=\"-1\" aria-hidden=\"true\">\n    <div class=\"post_image_stories\">\n      <img src=\"https://sun1-83.userapi.com/s/v1/ig2/cy2b50TubtswIT1rDaIkvxqFFiqTaEkEtuYpyRuK1diLvnq-e_AiQtXPZ3wijCR1Xyl1rwJ1_A0PrH7eWF3fAkel.jpg?quality=95&amp;crop=64,213,512,512&amp;as=32x32,48x48,72x72,108x108,160x160,240x240,360x360,480x480&amp;ava=1&amp;cs=50x50\" data-post-id=\"\" data-post-click-type=\"post_owner_img\" class=\"post_img\" alt=\"Japanese AV (4K) R18\">\n      <span class=\"blind_label\">.</span>\n    </div>\n  </a>\n  <div class=\"post_header_info\">\n    <h5 class=\"post_author\"><a href=\"/club221028554\" class=\"group_link author\">Japanese AV (4K) R18</a></h5>\n    <div class=\"post_date\"><span><span class=\"rel_date\" data-date=\"1737072388\">17 \u044f\u043d\u0432 \u0432 3:06</span></span></div>\n    \n    \n  </div>\n</div>\n    <div class=\"post_content Post--redesignFooterV3\">\n      <div class=\"\">\n        <div class=\"wall_text\"><div class=\"page_post_sized_thumbs clear_fix\" style=\"width: 550px; filter: none; opacity: 1; pointer-events: auto; display: block;\"><a href=\"/video-221028554_456242209?list=20d364ee0684e5ed25\" data-video=\"-221028554_456242209\" data-list=\"20d364ee0684e5ed25\" data-duration=\"9100\" aria-label=\"\u0412\u0438\u0434\u0435\u043e CAWD-792 | 4K (2025) | Ao Ishihara \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c\u044e 2 \u0447\u0430\u0441\u0430 31 \u043c\u0438\u043d\u0443\u0442\u0443 40 \u0441\u0435\u043a\u0443\u043d\u0434 \" onclick=\"return showInlineVideo(&quot;-221028554_456242209&quot;, &quot;20d364ee0684e5ed25&quot;, {&quot;autoplay&quot;:1}, event, this);\" style=\"width: 550px; height: 309px; background-image: url(&quot;https://sun9-37.userapi.com/impg/ONAe92dsgYaVQrheoWvV_7wmQ2qj1ELSzC-lfg/6_8e1ms8GdM.jpg?size=800x450&amp;quality=95&amp;keep_aspect_ratio=1&amp;background=000000&amp;sign=8723ce489f3f1526ce9dfb1c9dafc63d&amp;type=video_thumb&quot;); display: block; opacity: 1; pointer-events: auto;\" class=\"page_post_thumb_wrap image_cover  page_post_thumb_video page_video_autoplayable page_post_thumb_last_column page_post_thumb_last_row\"><div class=\"page_post_video_play_inline\"></div><div scheme=\"\" class=\"video_thumb_label\"><span class=\"video_thumb_label_item video_thumb_label_platform\"></span><span class=\"video_thumb_label_item video_thumb_label_duration\">2:31:40</span></div></a></div><div class=\"media_desc post_video_desc\">\n  <a class=\"lnk\" id=\"post_media_lnk_0\" onclick=\"return showVideo(&quot;-221028554_456242209&quot;, &quot;20d364ee0684e5ed25&quot;, {&quot;autoplay&quot;:1}, event, this);\" href=\"/video-221028554_456242209?list=20d364ee0684e5ed25\" data-video=\"-221028554_456242209\" data-list=\"20d364ee0684e5ed25\" data-duration=\"9100\" aria-label=\"\u0412\u0438\u0434\u0435\u043e CAWD-792 | 4K (2025) | Ao Ishihara \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c\u044e 2 \u0447\u0430\u0441\u0430 31 \u043c\u0438\u043d\u0443\u0442\u0443 40 \u0441\u0435\u043a\u0443\u043d\u0434 \">\n    <div class=\"a post_video_title\">CAWD-792 | 4K (2025) | Ao Ishihara</div><div class=\"post_video_views_count\">545 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432</div>\n  </a>\n</div></div>\n        \n\n        \n        \n        \n        \n        <div class=\"replies\"></div>\n      </div>\n    </div>\n    \n  </div>\n</div><div class=\"ui_actions_menu_wrap _ui_menu_wrap bookmarks_actions_menu\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\">\n  <div class=\"ui_actions_menu_icons\" tabindex=\"0\" aria-label=\"\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f\" role=\"button\" onclick=\"uiActionsMenu.keyToggle(this, event);\" onkeydown=\"uiActionsMenu.keyboardToggle &amp;&amp; uiActionsMenu.keyboardToggle(this, event, {preventKeyboardClickEvent: true});\"> <span class=\"blind_label\">\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f</span> </div>\n  <div class=\"ui_actions_menu _ui_menu \"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item\" onclick=\"Bookmarks.removeBookmark(this, 3, -221028554, 456242209, 'edb131dbcb0406890b')\" tabindex=\"0\" role=\"link\">\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u0437 \u0437\u0430\u043a\u043b\u0430\u0434\u043e\u043a</a><div class=\"ui_actions_menu_sep\"></div><a class=\"ui_actions_menu_item_sublist ui_actions_menu_item\" tabindex=\"0\" role=\"link\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(domNS(this), event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(domNS(this), event);\">\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043c\u0435\u0442\u043a\u0438</a>\n<div class=\"ui_actions_menu_sublist\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, event);\"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"934646912\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456242209\" data-tag-id=\"60389336\" data-tag-name=\"\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435\" data-hash=\"edb131dbcb0406890b\" tabindex=\"0\" role=\"link\">\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"934646912\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456242209\" data-tag-id=\"60389337\" data-tag-name=\"\u0412\u0430\u0436\u043d\u043e\u0435\" data-hash=\"edb131dbcb0406890b\" tabindex=\"0\" role=\"link\">\u0412\u0430\u0436\u043d\u043e\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item bookmark_tag_menu_item_sample\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-bookmark-id=\"934646912\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456242209\" data-hash=\"edb131dbcb0406890b\" tabindex=\"0\" role=\"link\"></a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item_new \" onclick=\"Bookmarks.editTag(event, 0, 934646912);\" tabindex=\"0\" role=\"link\">\u041d\u043e\u0432\u0430\u044f \u043c\u0435\u0442\u043a\u0430</a></div></div>\n</div></div><div class=\"BookmarkFooter\" id=\"bookmark_footer_934646912\" style=\"display: none;\"><div class=\"BookmarkTags\" id=\"bookmark_tags_934646912\" onclick=\"cur.cancelClick = true\"></div></div>\n</div><div class=\"page_block bookmark_block\">\n  <div class=\"bookmarks_row wall_module  bookmarks_row_type_video\" style=\"filter: none; opacity: 1; pointer-events: auto; display: block;\"><div id=\"post\" class=\"_post post feed_post_indicator\" data-post-id=\"\">\n  <div class=\"_post_content\">\n    \n    \n    \n    <div class=\"post_header\">\n  <a class=\"post_image\" href=\"/club221028554\" tabindex=\"-1\" aria-hidden=\"true\">\n    <div class=\"post_image_stories\">\n      <img src=\"https://sun1-83.userapi.com/s/v1/ig2/cy2b50TubtswIT1rDaIkvxqFFiqTaEkEtuYpyRuK1diLvnq-e_AiQtXPZ3wijCR1Xyl1rwJ1_A0PrH7eWF3fAkel.jpg?quality=95&amp;crop=64,213,512,512&amp;as=32x32,48x48,72x72,108x108,160x160,240x240,360x360,480x480&amp;ava=1&amp;cs=50x50\" data-post-id=\"\" data-post-click-type=\"post_owner_img\" class=\"post_img\" alt=\"Japanese AV (4K) R18\">\n      <span class=\"blind_label\">.</span>\n    </div>\n  </a>\n  <div class=\"post_header_info\">\n    <h5 class=\"post_author\"><a href=\"/club221028554\" class=\"group_link author\">Japanese AV (4K) R18</a></h5>\n    <div class=\"post_date\"><span><span class=\"rel_date\" data-date=\"1733268798\">4 \u0434\u0435\u043a 2024</span></span></div>\n    \n    \n  </div>\n</div>\n    <div class=\"post_content Post--redesignFooterV3\">\n      <div class=\"\">\n        <div class=\"wall_text\"><div class=\"page_post_sized_thumbs clear_fix\" style=\"width: 550px; filter: none; opacity: 1; pointer-events: auto; display: block;\"><a href=\"/video-221028554_456241803?list=1954f4e97c987e659e\" data-video=\"-221028554_456241803\" data-list=\"1954f4e97c987e659e\" data-duration=\"7178\" aria-label=\"\u0412\u0438\u0434\u0435\u043e CAWD-773 | 4K (2024) | Nanaka Kosaka \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c\u044e 1 \u0447\u0430\u0441 59 \u043c\u0438\u043d\u0443\u0442 38 \u0441\u0435\u043a\u0443\u043d\u0434 \" onclick=\"return showInlineVideo(&quot;-221028554_456241803&quot;, &quot;1954f4e97c987e659e&quot;, {&quot;autoplay&quot;:1}, event, this);\" style=\"width: 550px; height: 309px; background-image: url(&quot;https://sun9-58.userapi.com/impg/8z-T4UedLI1aGB8wVnxO29KXrO7u9yuLG9E0nA/K8ZpI9WA26Q.jpg?size=800x450&amp;quality=95&amp;keep_aspect_ratio=1&amp;background=000000&amp;sign=1140a3f8a1852a4e43d8101fad45b366&amp;type=video_thumb&quot;); display: block; opacity: 1; pointer-events: auto;\" class=\"page_post_thumb_wrap image_cover  page_post_thumb_video page_video_autoplayable page_post_thumb_last_column page_post_thumb_last_row\"><div class=\"page_post_video_play_inline\"></div><div scheme=\"\" class=\"video_thumb_label\"><span class=\"video_thumb_label_item video_thumb_label_platform\"></span><span class=\"video_thumb_label_item video_thumb_label_duration\">1:59:38</span></div></a></div><div class=\"media_desc post_video_desc\">\n  <a class=\"lnk\" id=\"post_media_lnk_0\" onclick=\"return showVideo(&quot;-221028554_456241803&quot;, &quot;1954f4e97c987e659e&quot;, {&quot;autoplay&quot;:1}, event, this);\" href=\"/video-221028554_456241803?list=1954f4e97c987e659e\" data-video=\"-221028554_456241803\" data-list=\"1954f4e97c987e659e\" data-duration=\"7178\" aria-label=\"\u0412\u0438\u0434\u0435\u043e CAWD-773 | 4K (2024) | Nanaka Kosaka \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c\u044e 1 \u0447\u0430\u0441 59 \u043c\u0438\u043d\u0443\u0442 38 \u0441\u0435\u043a\u0443\u043d\u0434 \">\n    <div class=\"a post_video_title\">CAWD-773 | 4K (2024) | Nanaka Kosaka</div><div class=\"post_video_views_count\">905 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432</div>\n  </a>\n</div></div>\n        \n\n        \n        \n        \n        \n        <div class=\"replies\"></div>\n      </div>\n    </div>\n    \n  </div>\n</div><div class=\"ui_actions_menu_wrap _ui_menu_wrap bookmarks_actions_menu\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\">\n  <div class=\"ui_actions_menu_icons\" tabindex=\"0\" aria-label=\"\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f\" role=\"button\" onclick=\"uiActionsMenu.keyToggle(this, event);\" onkeydown=\"uiActionsMenu.keyboardToggle &amp;&amp; uiActionsMenu.keyboardToggle(this, event, {preventKeyboardClickEvent: true});\"> <span class=\"blind_label\">\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f</span> </div>\n  <div class=\"ui_actions_menu _ui_menu \"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item\" onclick=\"Bookmarks.removeBookmark(this, 3, -221028554, 456241803, 'bc439523bb6a445e79')\" tabindex=\"0\" role=\"link\">\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u0437 \u0437\u0430\u043a\u043b\u0430\u0434\u043e\u043a</a><div class=\"ui_actions_menu_sep\"></div><a class=\"ui_actions_menu_item_sublist ui_actions_menu_item\" tabindex=\"0\" role=\"link\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(domNS(this), event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(domNS(this), event);\">\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043c\u0435\u0442\u043a\u0438</a>\n<div class=\"ui_actions_menu_sublist\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, event);\"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"927676129\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456241803\" data-tag-id=\"60389336\" data-tag-name=\"\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435\" data-hash=\"bc439523bb6a445e79\" tabindex=\"0\" role=\"link\">\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"927676129\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456241803\" data-tag-id=\"60389337\" data-tag-name=\"\u0412\u0430\u0436\u043d\u043e\u0435\" data-hash=\"bc439523bb6a445e79\" tabindex=\"0\" role=\"link\">\u0412\u0430\u0436\u043d\u043e\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item bookmark_tag_menu_item_sample\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-bookmark-id=\"927676129\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456241803\" data-hash=\"bc439523bb6a445e79\" tabindex=\"0\" role=\"link\"></a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item_new \" onclick=\"Bookmarks.editTag(event, 0, 927676129);\" tabindex=\"0\" role=\"link\">\u041d\u043e\u0432\u0430\u044f \u043c\u0435\u0442\u043a\u0430</a></div></div>\n</div></div><div class=\"BookmarkFooter\" id=\"bookmark_footer_927676129\" style=\"display: none;\"><div class=\"BookmarkTags\" id=\"bookmark_tags_927676129\" onclick=\"cur.cancelClick = true\"></div></div>\n</div><div class=\"page_block bookmark_block\">\n  <div class=\"bookmarks_row wall_module  bookmarks_row_type_video\" style=\"filter: none; opacity: 1; pointer-events: auto; display: block;\"><div id=\"post\" class=\"_post post feed_post_indicator\" data-post-id=\"\">\n  <div class=\"_post_content\">\n    \n    \n    \n    <div class=\"post_header\">\n  <a class=\"post_image\" href=\"/club221028554\" tabindex=\"-1\" aria-hidden=\"true\">\n    <div class=\"post_image_stories\">\n      <img src=\"https://sun1-83.userapi.com/s/v1/ig2/cy2b50TubtswIT1rDaIkvxqFFiqTaEkEtuYpyRuK1diLvnq-e_AiQtXPZ3wijCR1Xyl1rwJ1_A0PrH7eWF3fAkel.jpg?quality=95&amp;crop=64,213,512,512&amp;as=32x32,48x48,72x72,108x108,160x160,240x240,360x360,480x480&amp;ava=1&amp;cs=50x50\" data-post-id=\"\" data-post-click-type=\"post_owner_img\" class=\"post_img\" alt=\"Japanese AV (4K) R18\">\n      <span class=\"blind_label\">.</span>\n    </div>\n  </a>\n  <div class=\"post_header_info\">\n    <h5 class=\"post_author\"><a href=\"/club221028554\" class=\"group_link author\">Japanese AV (4K) R18</a></h5>\n    <div class=\"post_date\"><span><span class=\"rel_date\" data-date=\"1733270188\">4 \u0434\u0435\u043a 2024</span></span></div>\n    \n    \n  </div>\n</div>\n    <div class=\"post_content Post--redesignFooterV3\">\n      <div class=\"\">\n        <div class=\"wall_text\"><div class=\"page_post_sized_thumbs clear_fix\" style=\"width: 550px; filter: none; opacity: 1; pointer-events: auto; display: block;\"><a href=\"/video-221028554_456241810?list=32b40b3800000ded1d\" data-video=\"-221028554_456241810\" data-list=\"32b40b3800000ded1d\" data-duration=\"10855\" aria-label=\"\u0412\u0438\u0434\u0435\u043e MIDV-936 | 4K (2024) | Kira Kisei \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c\u044e 3 \u0447\u0430\u0441\u0430 55 \u0441\u0435\u043a\u0443\u043d\u0434 \" onclick=\"return showInlineVideo(&quot;-221028554_456241810&quot;, &quot;32b40b3800000ded1d&quot;, {&quot;autoplay&quot;:1}, event, this);\" style=\"width: 550px; height: 309px; background-image: url(&quot;https://sun9-56.userapi.com/impg/hZ9j8jNNNr71dSnEXxf3JQFzKgZmMfXo_dkjHw/-kN-wSh3zac.jpg?size=800x450&amp;quality=95&amp;keep_aspect_ratio=1&amp;background=000000&amp;sign=6b48b302245bc7f6d9c15a140ef002b7&amp;type=video_thumb&quot;); display: block; opacity: 1; pointer-events: auto;\" class=\"page_post_thumb_wrap image_cover  page_post_thumb_video page_video_autoplayable page_post_thumb_last_column page_post_thumb_last_row\"><div class=\"page_post_video_play_inline\"></div><div scheme=\"\" class=\"video_thumb_label\"><span class=\"video_thumb_label_item video_thumb_label_platform\"></span><span class=\"video_thumb_label_item video_thumb_label_duration\">3:00:55</span></div></a></div><div class=\"media_desc post_video_desc\">\n  <a class=\"lnk\" id=\"post_media_lnk_0\" onclick=\"return showVideo(&quot;-221028554_456241810&quot;, &quot;32b40b3800000ded1d&quot;, {&quot;autoplay&quot;:1}, event, this);\" href=\"/video-221028554_456241810?list=32b40b3800000ded1d\" data-video=\"-221028554_456241810\" data-list=\"32b40b3800000ded1d\" data-duration=\"10855\" aria-label=\"\u0412\u0438\u0434\u0435\u043e MIDV-936 | 4K (2024) | Kira Kisei \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c\u044e 3 \u0447\u0430\u0441\u0430 55 \u0441\u0435\u043a\u0443\u043d\u0434 \">\n    <div class=\"a post_video_title\">MIDV-936 | 4K (2024) | Kira Kisei</div><div class=\"post_video_views_count\">790 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432</div>\n  </a>\n</div></div>\n        \n\n        \n        \n        \n        \n        <div class=\"replies\"></div>\n      </div>\n    </div>\n    \n  </div>\n</div><div class=\"ui_actions_menu_wrap _ui_menu_wrap bookmarks_actions_menu\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\">\n  <div class=\"ui_actions_menu_icons\" tabindex=\"0\" aria-label=\"\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f\" role=\"button\" onclick=\"uiActionsMenu.keyToggle(this, event);\" onkeydown=\"uiActionsMenu.keyboardToggle &amp;&amp; uiActionsMenu.keyboardToggle(this, event, {preventKeyboardClickEvent: true});\"> <span class=\"blind_label\">\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f</span> </div>\n  <div class=\"ui_actions_menu _ui_menu \"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item\" onclick=\"Bookmarks.removeBookmark(this, 3, -221028554, 456241810, 'd45632a23afe57c7f4')\" tabindex=\"0\" role=\"link\">\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u0437 \u0437\u0430\u043a\u043b\u0430\u0434\u043e\u043a</a><div class=\"ui_actions_menu_sep\"></div><a class=\"ui_actions_menu_item_sublist ui_actions_menu_item\" tabindex=\"0\" role=\"link\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(domNS(this), event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(domNS(this), event);\">\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043c\u0435\u0442\u043a\u0438</a>\n<div class=\"ui_actions_menu_sublist\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, event);\"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"927676043\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456241810\" data-tag-id=\"60389336\" data-tag-name=\"\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435\" data-hash=\"d45632a23afe57c7f4\" tabindex=\"0\" role=\"link\">\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"927676043\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456241810\" data-tag-id=\"60389337\" data-tag-name=\"\u0412\u0430\u0436\u043d\u043e\u0435\" data-hash=\"d45632a23afe57c7f4\" tabindex=\"0\" role=\"link\">\u0412\u0430\u0436\u043d\u043e\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item bookmark_tag_menu_item_sample\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-bookmark-id=\"927676043\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456241810\" data-hash=\"d45632a23afe57c7f4\" tabindex=\"0\" role=\"link\"></a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item_new \" onclick=\"Bookmarks.editTag(event, 0, 927676043);\" tabindex=\"0\" role=\"link\">\u041d\u043e\u0432\u0430\u044f \u043c\u0435\u0442\u043a\u0430</a></div></div>\n</div></div><div class=\"BookmarkFooter\" id=\"bookmark_footer_927676043\" style=\"display: none;\"><div class=\"BookmarkTags\" id=\"bookmark_tags_927676043\" onclick=\"cur.cancelClick = true\"></div></div>\n</div><div class=\"page_block bookmark_block\">\n  <div class=\"bookmarks_row wall_module  bookmarks_row_type_video\" style=\"filter: none; opacity: 1; pointer-events: auto; display: block;\"><div id=\"post\" class=\"_post post feed_post_indicator\" data-post-id=\"\">\n  <div class=\"_post_content\">\n    \n    \n    \n    <div class=\"post_header\">\n  <a class=\"post_image\" href=\"/club221028554\" tabindex=\"-1\" aria-hidden=\"true\">\n    <div class=\"post_image_stories\">\n      <img src=\"https://sun1-83.userapi.com/s/v1/ig2/cy2b50TubtswIT1rDaIkvxqFFiqTaEkEtuYpyRuK1diLvnq-e_AiQtXPZ3wijCR1Xyl1rwJ1_A0PrH7eWF3fAkel.jpg?quality=95&amp;crop=64,213,512,512&amp;as=32x32,48x48,72x72,108x108,160x160,240x240,360x360,480x480&amp;ava=1&amp;cs=50x50\" data-post-id=\"\" data-post-click-type=\"post_owner_img\" class=\"post_img\" alt=\"Japanese AV (4K) R18\">\n      <span class=\"blind_label\">.</span>\n    </div>\n  </a>\n  <div class=\"post_header_info\">\n    <h5 class=\"post_author\"><a href=\"/club221028554\" class=\"group_link author\">Japanese AV (4K) R18</a></h5>\n    <div class=\"post_date\"><span><span class=\"rel_date\" data-date=\"1733596061\">7 \u0434\u0435\u043a 2024</span></span></div>\n    \n    \n  </div>\n</div>\n    <div class=\"post_content Post--redesignFooterV3\">\n      <div class=\"\">\n        <div class=\"wall_text\"><div class=\"page_post_sized_thumbs clear_fix\" style=\"width: 550px; filter: none; opacity: 1; pointer-events: auto; display: block;\"><a href=\"/video-221028554_456241852?list=6ba6ab56ff73168e92\" data-video=\"-221028554_456241852\" data-list=\"6ba6ab56ff73168e92\" data-duration=\"9469\" aria-label=\"\u0412\u0438\u0434\u0435\u043e SONE-439 | 4K (2024) | Asuha Mitsuha \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c\u044e 2 \u0447\u0430\u0441\u0430 37 \u043c\u0438\u043d\u0443\u0442 49 \u0441\u0435\u043a\u0443\u043d\u0434 \" onclick=\"return showInlineVideo(&quot;-221028554_456241852&quot;, &quot;6ba6ab56ff73168e92&quot;, {&quot;autoplay&quot;:1}, event, this);\" style=\"width: 550px; height: 309px; background-image: url(&quot;https://sun9-47.userapi.com/impg/3XFGIVrV2IHbJG6UztOMNA66tvvbeUq-QmGvxA/H3S27zEMtTA.jpg?size=800x450&amp;quality=95&amp;keep_aspect_ratio=1&amp;background=000000&amp;sign=a67adbf5757b57ff79255c1e0e0daf73&amp;type=video_thumb&quot;); display: block; opacity: 1; pointer-events: auto;\" class=\"page_post_thumb_wrap image_cover  page_post_thumb_video page_video_autoplayable page_post_thumb_last_column page_post_thumb_last_row\"><div class=\"page_post_video_play_inline\"></div><div scheme=\"\" class=\"video_thumb_label\"><span class=\"video_thumb_label_item video_thumb_label_platform\"></span><span class=\"video_thumb_label_item video_thumb_label_duration\">2:37:49</span></div></a></div><div class=\"media_desc post_video_desc\">\n  <a class=\"lnk\" id=\"post_media_lnk_0\" onclick=\"return showVideo(&quot;-221028554_456241852&quot;, &quot;6ba6ab56ff73168e92&quot;, {&quot;autoplay&quot;:1}, event, this);\" href=\"/video-221028554_456241852?list=6ba6ab56ff73168e92\" data-video=\"-221028554_456241852\" data-list=\"6ba6ab56ff73168e92\" data-duration=\"9469\" aria-label=\"\u0412\u0438\u0434\u0435\u043e SONE-439 | 4K (2024) | Asuha Mitsuha \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c\u044e 2 \u0447\u0430\u0441\u0430 37 \u043c\u0438\u043d\u0443\u0442 49 \u0441\u0435\u043a\u0443\u043d\u0434 \">\n    <div class=\"a post_video_title\">SONE-439 | 4K (2024) | Asuha Mitsuha</div><div class=\"post_video_views_count\">1<span class=\"num_delim\"> </span>554 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430</div>\n  </a>\n</div></div>\n        \n\n        \n        \n        \n        \n        <div class=\"replies\"></div>\n      </div>\n    </div>\n    \n  </div>\n</div><div class=\"ui_actions_menu_wrap _ui_menu_wrap bookmarks_actions_menu\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\">\n  <div class=\"ui_actions_menu_icons\" tabindex=\"0\" aria-label=\"\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f\" role=\"button\" onclick=\"uiActionsMenu.keyToggle(this, event);\" onkeydown=\"uiActionsMenu.keyboardToggle &amp;&amp; uiActionsMenu.keyboardToggle(this, event, {preventKeyboardClickEvent: true});\"> <span class=\"blind_label\">\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f</span> </div>\n  <div class=\"ui_actions_menu _ui_menu \"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item\" onclick=\"Bookmarks.removeBookmark(this, 3, -221028554, 456241852, 'fef4089a2eb7af6b21')\" tabindex=\"0\" role=\"link\">\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u0437 \u0437\u0430\u043a\u043b\u0430\u0434\u043e\u043a</a><div class=\"ui_actions_menu_sep\"></div><a class=\"ui_actions_menu_item_sublist ui_actions_menu_item\" tabindex=\"0\" role=\"link\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(domNS(this), event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(domNS(this), event);\">\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043c\u0435\u0442\u043a\u0438</a>\n<div class=\"ui_actions_menu_sublist\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, event);\"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"927675360\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456241852\" data-tag-id=\"60389336\" data-tag-name=\"\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435\" data-hash=\"fef4089a2eb7af6b21\" tabindex=\"0\" role=\"link\">\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"927675360\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456241852\" data-tag-id=\"60389337\" data-tag-name=\"\u0412\u0430\u0436\u043d\u043e\u0435\" data-hash=\"fef4089a2eb7af6b21\" tabindex=\"0\" role=\"link\">\u0412\u0430\u0436\u043d\u043e\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item bookmark_tag_menu_item_sample\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-bookmark-id=\"927675360\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456241852\" data-hash=\"fef4089a2eb7af6b21\" tabindex=\"0\" role=\"link\"></a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item_new \" onclick=\"Bookmarks.editTag(event, 0, 927675360);\" tabindex=\"0\" role=\"link\">\u041d\u043e\u0432\u0430\u044f \u043c\u0435\u0442\u043a\u0430</a></div></div>\n</div></div><div class=\"BookmarkFooter\" id=\"bookmark_footer_927675360\" style=\"display: none;\"><div class=\"BookmarkTags\" id=\"bookmark_tags_927675360\" onclick=\"cur.cancelClick = true\"></div></div>\n</div><div class=\"page_block bookmark_block\">\n  <div class=\"bookmarks_row wall_module  bookmarks_row_type_video\" style=\"filter: none; opacity: 1; pointer-events: auto; display: block;\"><div id=\"post\" class=\"_post post feed_post_indicator\" data-post-id=\"\">\n  <div class=\"_post_content\">\n    \n    \n    \n    <div class=\"post_header\">\n  <a class=\"post_image\" href=\"/club221028554\" tabindex=\"-1\" aria-hidden=\"true\">\n    <div class=\"post_image_stories\">\n      <img src=\"https://sun1-83.userapi.com/s/v1/ig2/cy2b50TubtswIT1rDaIkvxqFFiqTaEkEtuYpyRuK1diLvnq-e_AiQtXPZ3wijCR1Xyl1rwJ1_A0PrH7eWF3fAkel.jpg?quality=95&amp;crop=64,213,512,512&amp;as=32x32,48x48,72x72,108x108,160x160,240x240,360x360,480x480&amp;ava=1&amp;cs=50x50\" data-post-id=\"\" data-post-click-type=\"post_owner_img\" class=\"post_img\" alt=\"Japanese AV (4K) R18\">\n      <span class=\"blind_label\">.</span>\n    </div>\n  </a>\n  <div class=\"post_header_info\">\n    <h5 class=\"post_author\"><a href=\"/club221028554\" class=\"group_link author\">Japanese AV (4K) R18</a></h5>\n    <div class=\"post_date\"><span><span class=\"rel_date\" data-date=\"1733754089\">9 \u0434\u0435\u043a 2024</span></span></div>\n    \n    \n  </div>\n</div>\n    <div class=\"post_content Post--redesignFooterV3\">\n      <div class=\"\">\n        <div class=\"wall_text\"><div class=\"page_post_sized_thumbs clear_fix\" style=\"width: 550px; filter: none; opacity: 1; pointer-events: auto; display: block;\"><a href=\"/video-221028554_456241866?list=b621dee4625653496b\" data-video=\"-221028554_456241866\" data-list=\"b621dee4625653496b\" data-duration=\"12694\" aria-label=\"\u0412\u0438\u0434\u0435\u043e SDMM-182 | 4K (2024) | Hinano Miki, Honami Takahashi, Marina Nishio, Nagisa Takagi \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c\u044e 3 \u0447\u0430\u0441\u0430 31 \u043c\u0438\u043d\u0443\u0442\u0443 34 \u0441\u0435\u043a\u0443\u043d\u0434\u044b \" onclick=\"return showInlineVideo(&quot;-221028554_456241866&quot;, &quot;b621dee4625653496b&quot;, {&quot;autoplay&quot;:1}, event, this);\" style=\"width: 550px; height: 309px; background-image: url(&quot;https://sun9-56.userapi.com/impg/jlrXpTYzU7yvfO-507yyQEVJ2YvMMyXaecLtdA/JsNwKFoUYx8.jpg?size=800x450&amp;quality=95&amp;keep_aspect_ratio=1&amp;background=000000&amp;sign=fbfdf1d027961c6eed1192424403baf8&amp;type=video_thumb&quot;); display: block; opacity: 1; pointer-events: auto;\" class=\"page_post_thumb_wrap image_cover  page_post_thumb_video page_video_autoplayable page_post_thumb_last_column page_post_thumb_last_row\"><div class=\"page_post_video_play_inline\"></div><div scheme=\"\" class=\"video_thumb_label\"><span class=\"video_thumb_label_item video_thumb_label_platform\"></span><span class=\"video_thumb_label_item video_thumb_label_duration\">3:31:34</span></div></a></div><div class=\"media_desc post_video_desc\">\n  <a class=\"lnk\" id=\"post_media_lnk_0\" onclick=\"return showVideo(&quot;-221028554_456241866&quot;, &quot;b621dee4625653496b&quot;, {&quot;autoplay&quot;:1}, event, this);\" href=\"/video-221028554_456241866?list=b621dee4625653496b\" data-video=\"-221028554_456241866\" data-list=\"b621dee4625653496b\" data-duration=\"12694\" aria-label=\"\u0412\u0438\u0434\u0435\u043e SDMM-182 | 4K (2024) | Hinano Miki, Honami Takahashi, Marina Nishio, Nagisa Takagi \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c\u044e 3 \u0447\u0430\u0441\u0430 31 \u043c\u0438\u043d\u0443\u0442\u0443 34 \u0441\u0435\u043a\u0443\u043d\u0434\u044b \">\n    <div class=\"a post_video_title\">SDMM-182 | 4K (2024) | Hinano Miki, Honami Takahashi, Marina Nishio, Nagisa Takagi</div><div class=\"post_video_views_count\">698 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432</div>\n  </a>\n</div></div>\n        \n\n        \n        \n        \n        \n        <div class=\"replies\"></div>\n      </div>\n    </div>\n    \n  </div>\n</div><div class=\"ui_actions_menu_wrap _ui_menu_wrap bookmarks_actions_menu\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\">\n  <div class=\"ui_actions_menu_icons\" tabindex=\"0\" aria-label=\"\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f\" role=\"button\" onclick=\"uiActionsMenu.keyToggle(this, event);\" onkeydown=\"uiActionsMenu.keyboardToggle &amp;&amp; uiActionsMenu.keyboardToggle(this, event, {preventKeyboardClickEvent: true});\"> <span class=\"blind_label\">\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f</span> </div>\n  <div class=\"ui_actions_menu _ui_menu \"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item\" onclick=\"Bookmarks.removeBookmark(this, 3, -221028554, 456241866, 'c9544c238f66df3f63')\" tabindex=\"0\" role=\"link\">\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u0437 \u0437\u0430\u043a\u043b\u0430\u0434\u043e\u043a</a><div class=\"ui_actions_menu_sep\"></div><a class=\"ui_actions_menu_item_sublist ui_actions_menu_item\" tabindex=\"0\" role=\"link\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(domNS(this), event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(domNS(this), event);\">\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043c\u0435\u0442\u043a\u0438</a>\n<div class=\"ui_actions_menu_sublist\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, event);\"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"927674949\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456241866\" data-tag-id=\"60389336\" data-tag-name=\"\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435\" data-hash=\"c9544c238f66df3f63\" tabindex=\"0\" role=\"link\">\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"927674949\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456241866\" data-tag-id=\"60389337\" data-tag-name=\"\u0412\u0430\u0436\u043d\u043e\u0435\" data-hash=\"c9544c238f66df3f63\" tabindex=\"0\" role=\"link\">\u0412\u0430\u0436\u043d\u043e\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item bookmark_tag_menu_item_sample\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-bookmark-id=\"927674949\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456241866\" data-hash=\"c9544c238f66df3f63\" tabindex=\"0\" role=\"link\"></a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item_new \" onclick=\"Bookmarks.editTag(event, 0, 927674949);\" tabindex=\"0\" role=\"link\">\u041d\u043e\u0432\u0430\u044f \u043c\u0435\u0442\u043a\u0430</a></div></div>\n</div></div><div class=\"BookmarkFooter\" id=\"bookmark_footer_927674949\" style=\"display: none;\"><div class=\"BookmarkTags\" id=\"bookmark_tags_927674949\" onclick=\"cur.cancelClick = true\"></div></div>\n</div><div class=\"page_block bookmark_block\">\n  <div class=\"bookmarks_row wall_module  bookmarks_row_type_video\" style=\"filter: none; opacity: 1; pointer-events: auto; display: block;\"><div id=\"post\" class=\"_post post feed_post_indicator\" data-post-id=\"\">\n  <div class=\"_post_content\">\n    \n    \n    \n    <div class=\"post_header\">\n  <a class=\"post_image\" href=\"/club221028554\" tabindex=\"-1\" aria-hidden=\"true\">\n    <div class=\"post_image_stories\">\n      <img src=\"https://sun1-83.userapi.com/s/v1/ig2/cy2b50TubtswIT1rDaIkvxqFFiqTaEkEtuYpyRuK1diLvnq-e_AiQtXPZ3wijCR1Xyl1rwJ1_A0PrH7eWF3fAkel.jpg?quality=95&amp;crop=64,213,512,512&amp;as=32x32,48x48,72x72,108x108,160x160,240x240,360x360,480x480&amp;ava=1&amp;cs=50x50\" data-post-id=\"\" data-post-click-type=\"post_owner_img\" class=\"post_img\" alt=\"Japanese AV (4K) R18\">\n      <span class=\"blind_label\">.</span>\n    </div>\n  </a>\n  <div class=\"post_header_info\">\n    <h5 class=\"post_author\"><a href=\"/club221028554\" class=\"group_link author\">Japanese AV (4K) R18</a></h5>\n    <div class=\"post_date\"><span><span class=\"rel_date\" data-date=\"1733870699\">11 \u0434\u0435\u043a 2024</span></span></div>\n    \n    \n  </div>\n</div>\n    <div class=\"post_content Post--redesignFooterV3\">\n      <div class=\"\">\n        <div class=\"wall_text\"><div class=\"page_post_sized_thumbs clear_fix\" style=\"width: 550px; filter: none; opacity: 1; pointer-events: auto; display: block;\"><a href=\"/video-221028554_456241891?list=ce482533d2f7d8a0f5\" data-video=\"-221028554_456241891\" data-list=\"ce482533d2f7d8a0f5\" data-duration=\"6340\" aria-label=\"\u0412\u0438\u0434\u0435\u043e START-230 | 4K (2024) | Nanase Aoi \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c\u044e 1 \u0447\u0430\u0441 45 \u043c\u0438\u043d\u0443\u0442 40 \u0441\u0435\u043a\u0443\u043d\u0434 \" onclick=\"return showInlineVideo(&quot;-221028554_456241891&quot;, &quot;ce482533d2f7d8a0f5&quot;, {&quot;autoplay&quot;:1}, event, this);\" style=\"width: 550px; height: 309px; background-image: url(&quot;https://sun9-80.userapi.com/impg/zs6LiLgYxhixRprEXG1PLUU4hDVmG0DkEPxeDg/S4gwCjEtKeE.jpg?size=800x450&amp;quality=95&amp;keep_aspect_ratio=1&amp;background=000000&amp;sign=f4aaf89f509c924f3dca9bf644284e30&amp;type=video_thumb&quot;); display: block; opacity: 1; pointer-events: auto;\" class=\"page_post_thumb_wrap image_cover  page_post_thumb_video page_video_autoplayable page_post_thumb_last_column page_post_thumb_last_row\"><div class=\"page_post_video_play_inline\"></div><div scheme=\"\" class=\"video_thumb_label\"><span class=\"video_thumb_label_item video_thumb_label_platform\"></span><span class=\"video_thumb_label_item video_thumb_label_duration\">1:45:40</span></div></a></div><div class=\"media_desc post_video_desc\">\n  <a class=\"lnk\" id=\"post_media_lnk_0\" onclick=\"return showVideo(&quot;-221028554_456241891&quot;, &quot;ce482533d2f7d8a0f5&quot;, {&quot;autoplay&quot;:1}, event, this);\" href=\"/video-221028554_456241891?list=ce482533d2f7d8a0f5\" data-video=\"-221028554_456241891\" data-list=\"ce482533d2f7d8a0f5\" data-duration=\"6340\" aria-label=\"\u0412\u0438\u0434\u0435\u043e START-230 | 4K (2024) | Nanase Aoi \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c\u044e 1 \u0447\u0430\u0441 45 \u043c\u0438\u043d\u0443\u0442 40 \u0441\u0435\u043a\u0443\u043d\u0434 \">\n    <div class=\"a post_video_title\">START-230 | 4K (2024) | Nanase Aoi</div><div class=\"post_video_views_count\">613 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432</div>\n  </a>\n</div></div>\n        \n\n        \n        \n        \n        \n        <div class=\"replies\"></div>\n      </div>\n    </div>\n    \n  </div>\n</div><div class=\"ui_actions_menu_wrap _ui_menu_wrap bookmarks_actions_menu\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\">\n  <div class=\"ui_actions_menu_icons\" tabindex=\"0\" aria-label=\"\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f\" role=\"button\" onclick=\"uiActionsMenu.keyToggle(this, event);\" onkeydown=\"uiActionsMenu.keyboardToggle &amp;&amp; uiActionsMenu.keyboardToggle(this, event, {preventKeyboardClickEvent: true});\"> <span class=\"blind_label\">\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f</span> </div>\n  <div class=\"ui_actions_menu _ui_menu \"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item\" onclick=\"Bookmarks.removeBookmark(this, 3, -221028554, 456241891, '98a939d3d2a02da003')\" tabindex=\"0\" role=\"link\">\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u0437 \u0437\u0430\u043a\u043b\u0430\u0434\u043e\u043a</a><div class=\"ui_actions_menu_sep\"></div><a class=\"ui_actions_menu_item_sublist ui_actions_menu_item\" tabindex=\"0\" role=\"link\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(domNS(this), event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(domNS(this), event);\">\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043c\u0435\u0442\u043a\u0438</a>\n<div class=\"ui_actions_menu_sublist\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, event);\"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"927674693\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456241891\" data-tag-id=\"60389336\" data-tag-name=\"\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435\" data-hash=\"98a939d3d2a02da003\" tabindex=\"0\" role=\"link\">\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"927674693\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456241891\" data-tag-id=\"60389337\" data-tag-name=\"\u0412\u0430\u0436\u043d\u043e\u0435\" data-hash=\"98a939d3d2a02da003\" tabindex=\"0\" role=\"link\">\u0412\u0430\u0436\u043d\u043e\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item bookmark_tag_menu_item_sample\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-bookmark-id=\"927674693\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456241891\" data-hash=\"98a939d3d2a02da003\" tabindex=\"0\" role=\"link\"></a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item_new \" onclick=\"Bookmarks.editTag(event, 0, 927674693);\" tabindex=\"0\" role=\"link\">\u041d\u043e\u0432\u0430\u044f \u043c\u0435\u0442\u043a\u0430</a></div></div>\n</div></div><div class=\"BookmarkFooter\" id=\"bookmark_footer_927674693\" style=\"display: none;\"><div class=\"BookmarkTags\" id=\"bookmark_tags_927674693\" onclick=\"cur.cancelClick = true\"></div></div>\n</div><div class=\"page_block bookmark_block\">\n  <div class=\"bookmarks_row wall_module  bookmarks_row_type_video\" style=\"filter: none; opacity: 1; pointer-events: auto; display: block;\"><div id=\"post\" class=\"_post post feed_post_indicator\" data-post-id=\"\">\n  <div class=\"_post_content\">\n    \n    \n    \n    <div class=\"post_header\">\n  <a class=\"post_image\" href=\"/club221028554\" tabindex=\"-1\" aria-hidden=\"true\">\n    <div class=\"post_image_stories\">\n      <img src=\"https://sun1-83.userapi.com/s/v1/ig2/cy2b50TubtswIT1rDaIkvxqFFiqTaEkEtuYpyRuK1diLvnq-e_AiQtXPZ3wijCR1Xyl1rwJ1_A0PrH7eWF3fAkel.jpg?quality=95&amp;crop=64,213,512,512&amp;as=32x32,48x48,72x72,108x108,160x160,240x240,360x360,480x480&amp;ava=1&amp;cs=50x50\" data-post-id=\"\" data-post-click-type=\"post_owner_img\" class=\"post_img\" alt=\"Japanese AV (4K) R18\">\n      <span class=\"blind_label\">.</span>\n    </div>\n  </a>\n  <div class=\"post_header_info\">\n    <h5 class=\"post_author\"><a href=\"/club221028554\" class=\"group_link author\">Japanese AV (4K) R18</a></h5>\n    <div class=\"post_date\"><span><span class=\"rel_date\" data-date=\"1734465065\">17 \u0434\u0435\u043a 2024</span></span></div>\n    \n    \n  </div>\n</div>\n    <div class=\"post_content Post--redesignFooterV3\">\n      <div class=\"\">\n        <div class=\"wall_text\"><div class=\"page_post_sized_thumbs clear_fix\" style=\"width: 550px; filter: none; opacity: 1; pointer-events: auto; display: block;\"><a href=\"/video-221028554_456241945?list=1b25edc75511cd0b6d\" data-video=\"-221028554_456241945\" data-list=\"1b25edc75511cd0b6d\" data-duration=\"9995\" aria-label=\"\u0412\u0438\u0434\u0435\u043e SONE-519 | 4K (2024) | Shiori Yorimoto \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c\u044e 2 \u0447\u0430\u0441\u0430 46 \u043c\u0438\u043d\u0443\u0442 35 \u0441\u0435\u043a\u0443\u043d\u0434 \" onclick=\"return showInlineVideo(&quot;-221028554_456241945&quot;, &quot;1b25edc75511cd0b6d&quot;, {&quot;autoplay&quot;:1}, event, this);\" style=\"width: 550px; height: 309px; background-image: url(&quot;https://sun9-34.userapi.com/impg/Sdj1CT2WEJdagQFEZ4JGEJ0L9YXafPfpoD3Bww/vHfvqvnCQaI.jpg?size=800x450&amp;quality=95&amp;keep_aspect_ratio=1&amp;background=000000&amp;sign=9011123de7c9e67a3682ba71d87c22a5&amp;type=video_thumb&quot;); display: block; opacity: 1; pointer-events: auto;\" class=\"page_post_thumb_wrap image_cover  page_post_thumb_video page_video_autoplayable page_post_thumb_last_column page_post_thumb_last_row\"><div class=\"page_post_video_play_inline\"></div><div scheme=\"\" class=\"video_thumb_label\"><span class=\"video_thumb_label_item video_thumb_label_platform\"></span><span class=\"video_thumb_label_item video_thumb_label_duration\">2:46:35</span></div></a></div><div class=\"media_desc post_video_desc\">\n  <a class=\"lnk\" id=\"post_media_lnk_0\" onclick=\"return showVideo(&quot;-221028554_456241945&quot;, &quot;1b25edc75511cd0b6d&quot;, {&quot;autoplay&quot;:1}, event, this);\" href=\"/video-221028554_456241945?list=1b25edc75511cd0b6d\" data-video=\"-221028554_456241945\" data-list=\"1b25edc75511cd0b6d\" data-duration=\"9995\" aria-label=\"\u0412\u0438\u0434\u0435\u043e SONE-519 | 4K (2024) | Shiori Yorimoto \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c\u044e 2 \u0447\u0430\u0441\u0430 46 \u043c\u0438\u043d\u0443\u0442 35 \u0441\u0435\u043a\u0443\u043d\u0434 \">\n    <div class=\"a post_video_title\">SONE-519 | 4K (2024) | Shiori Yorimoto</div><div class=\"post_video_views_count\">910 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432</div>\n  </a>\n</div></div>\n        \n\n        \n        \n        \n        \n        <div class=\"replies\"></div>\n      </div>\n    </div>\n    \n  </div>\n</div><div class=\"ui_actions_menu_wrap _ui_menu_wrap bookmarks_actions_menu\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\">\n  <div class=\"ui_actions_menu_icons\" tabindex=\"0\" aria-label=\"\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f\" role=\"button\" onclick=\"uiActionsMenu.keyToggle(this, event);\" onkeydown=\"uiActionsMenu.keyboardToggle &amp;&amp; uiActionsMenu.keyboardToggle(this, event, {preventKeyboardClickEvent: true});\"> <span class=\"blind_label\">\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f</span> </div>\n  <div class=\"ui_actions_menu _ui_menu \"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item\" onclick=\"Bookmarks.removeBookmark(this, 3, -221028554, 456241945, '6dfbe06fc69bffef53')\" tabindex=\"0\" role=\"link\">\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u0437 \u0437\u0430\u043a\u043b\u0430\u0434\u043e\u043a</a><div class=\"ui_actions_menu_sep\"></div><a class=\"ui_actions_menu_item_sublist ui_actions_menu_item\" tabindex=\"0\" role=\"link\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(domNS(this), event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(domNS(this), event);\">\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043c\u0435\u0442\u043a\u0438</a>\n<div class=\"ui_actions_menu_sublist\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, event);\"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"927673237\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456241945\" data-tag-id=\"60389336\" data-tag-name=\"\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435\" data-hash=\"6dfbe06fc69bffef53\" tabindex=\"0\" role=\"link\">\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"927673237\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456241945\" data-tag-id=\"60389337\" data-tag-name=\"\u0412\u0430\u0436\u043d\u043e\u0435\" data-hash=\"6dfbe06fc69bffef53\" tabindex=\"0\" role=\"link\">\u0412\u0430\u0436\u043d\u043e\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item bookmark_tag_menu_item_sample\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-bookmark-id=\"927673237\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456241945\" data-hash=\"6dfbe06fc69bffef53\" tabindex=\"0\" role=\"link\"></a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item_new \" onclick=\"Bookmarks.editTag(event, 0, 927673237);\" tabindex=\"0\" role=\"link\">\u041d\u043e\u0432\u0430\u044f \u043c\u0435\u0442\u043a\u0430</a></div></div>\n</div></div><div class=\"BookmarkFooter\" id=\"bookmark_footer_927673237\" style=\"display: none;\"><div class=\"BookmarkTags\" id=\"bookmark_tags_927673237\" onclick=\"cur.cancelClick = true\"></div></div>\n</div><div class=\"page_block bookmark_block\">\n  <div class=\"bookmarks_row wall_module  bookmarks_row_type_video\" style=\"filter: none; opacity: 1; pointer-events: auto; display: block;\"><div id=\"post\" class=\"_post post feed_post_indicator\" data-post-id=\"\">\n  <div class=\"_post_content\">\n    \n    \n    \n    <div class=\"post_header\">\n  <a class=\"post_image\" href=\"/club221028554\" tabindex=\"-1\" aria-hidden=\"true\">\n    <div class=\"post_image_stories\">\n      <img src=\"https://sun1-83.userapi.com/s/v1/ig2/cy2b50TubtswIT1rDaIkvxqFFiqTaEkEtuYpyRuK1diLvnq-e_AiQtXPZ3wijCR1Xyl1rwJ1_A0PrH7eWF3fAkel.jpg?quality=95&amp;crop=64,213,512,512&amp;as=32x32,48x48,72x72,108x108,160x160,240x240,360x360,480x480&amp;ava=1&amp;cs=50x50\" data-post-id=\"\" data-post-click-type=\"post_owner_img\" class=\"post_img\" alt=\"Japanese AV (4K) R18\">\n      <span class=\"blind_label\">.</span>\n    </div>\n  </a>\n  <div class=\"post_header_info\">\n    <h5 class=\"post_author\"><a href=\"/club221028554\" class=\"group_link author\">Japanese AV (4K) R18</a></h5>\n    <div class=\"post_date\"><span><span class=\"rel_date\" data-date=\"1734473665\">18 \u0434\u0435\u043a 2024</span></span></div>\n    \n    \n  </div>\n</div>\n    <div class=\"post_content Post--redesignFooterV3\">\n      <div class=\"\">\n        <div class=\"wall_text\"><div class=\"page_post_sized_thumbs clear_fix\" style=\"width: 550px; filter: none; opacity: 1; pointer-events: auto; display: block;\"><a href=\"/video-221028554_456241949?list=52042c96b49e895b29\" data-video=\"-221028554_456241949\" data-list=\"52042c96b49e895b29\" data-duration=\"7259\" aria-label=\"\u0412\u0438\u0434\u0435\u043e SONE-465 | 4K (2024) | Airi Nagisa \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c\u044e 2 \u0447\u0430\u0441\u0430 59 \u0441\u0435\u043a\u0443\u043d\u0434 \" onclick=\"return showInlineVideo(&quot;-221028554_456241949&quot;, &quot;52042c96b49e895b29&quot;, {&quot;autoplay&quot;:1}, event, this);\" style=\"width: 550px; height: 309px; background-image: url(&quot;https://sun9-16.userapi.com/impg/O4lRVJ388UVbBr7VyFtSbctGaO2692N2OmBJFw/oGaNGGKvOEk.jpg?size=800x450&amp;quality=95&amp;keep_aspect_ratio=1&amp;background=000000&amp;sign=aa4461bdb8e6f286ef3e18d4795d13ee&amp;type=video_thumb&quot;); display: block; opacity: 1; pointer-events: auto;\" class=\"page_post_thumb_wrap image_cover  page_post_thumb_video page_video_autoplayable page_post_thumb_last_column page_post_thumb_last_row\"><div class=\"page_post_video_play_inline\"></div><div scheme=\"\" class=\"video_thumb_label\"><span class=\"video_thumb_label_item video_thumb_label_platform\"></span><span class=\"video_thumb_label_item video_thumb_label_duration\">2:00:59</span></div></a></div><div class=\"media_desc post_video_desc\">\n  <a class=\"lnk\" id=\"post_media_lnk_0\" onclick=\"return showVideo(&quot;-221028554_456241949&quot;, &quot;52042c96b49e895b29&quot;, {&quot;autoplay&quot;:1}, event, this);\" href=\"/video-221028554_456241949?list=52042c96b49e895b29\" data-video=\"-221028554_456241949\" data-list=\"52042c96b49e895b29\" data-duration=\"7259\" aria-label=\"\u0412\u0438\u0434\u0435\u043e SONE-465 | 4K (2024) | Airi Nagisa \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c\u044e 2 \u0447\u0430\u0441\u0430 59 \u0441\u0435\u043a\u0443\u043d\u0434 \">\n    <div class=\"a post_video_title\">SONE-465 | 4K (2024) | Airi Nagisa</div><div class=\"post_video_views_count\">735 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432</div>\n  </a>\n</div></div>\n        \n\n        \n        \n        \n        \n        <div class=\"replies\"></div>\n      </div>\n    </div>\n    \n  </div>\n</div><div class=\"ui_actions_menu_wrap _ui_menu_wrap bookmarks_actions_menu\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\">\n  <div class=\"ui_actions_menu_icons\" tabindex=\"0\" aria-label=\"\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f\" role=\"button\" onclick=\"uiActionsMenu.keyToggle(this, event);\" onkeydown=\"uiActionsMenu.keyboardToggle &amp;&amp; uiActionsMenu.keyboardToggle(this, event, {preventKeyboardClickEvent: true});\"> <span class=\"blind_label\">\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f</span> </div>\n  <div class=\"ui_actions_menu _ui_menu \"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item\" onclick=\"Bookmarks.removeBookmark(this, 3, -221028554, 456241949, 'cd2556a1f5f9da75d8')\" tabindex=\"0\" role=\"link\">\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u0437 \u0437\u0430\u043a\u043b\u0430\u0434\u043e\u043a</a><div class=\"ui_actions_menu_sep\"></div><a class=\"ui_actions_menu_item_sublist ui_actions_menu_item\" tabindex=\"0\" role=\"link\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(domNS(this), event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(domNS(this), event);\">\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043c\u0435\u0442\u043a\u0438</a>\n<div class=\"ui_actions_menu_sublist\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, event);\"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"927672995\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456241949\" data-tag-id=\"60389336\" data-tag-name=\"\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435\" data-hash=\"cd2556a1f5f9da75d8\" tabindex=\"0\" role=\"link\">\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"927672995\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456241949\" data-tag-id=\"60389337\" data-tag-name=\"\u0412\u0430\u0436\u043d\u043e\u0435\" data-hash=\"cd2556a1f5f9da75d8\" tabindex=\"0\" role=\"link\">\u0412\u0430\u0436\u043d\u043e\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item bookmark_tag_menu_item_sample\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-bookmark-id=\"927672995\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456241949\" data-hash=\"cd2556a1f5f9da75d8\" tabindex=\"0\" role=\"link\"></a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item_new \" onclick=\"Bookmarks.editTag(event, 0, 927672995);\" tabindex=\"0\" role=\"link\">\u041d\u043e\u0432\u0430\u044f \u043c\u0435\u0442\u043a\u0430</a></div></div>\n</div></div><div class=\"BookmarkFooter\" id=\"bookmark_footer_927672995\" style=\"display: none;\"><div class=\"BookmarkTags\" id=\"bookmark_tags_927672995\" onclick=\"cur.cancelClick = true\"></div></div>\n</div><div class=\"page_block bookmark_block\">\n  <div class=\"bookmarks_row wall_module  bookmarks_row_type_video\" style=\"filter: none; opacity: 1; pointer-events: auto; display: block;\"><div id=\"post\" class=\"_post post feed_post_indicator\" data-post-id=\"\">\n  <div class=\"_post_content\">\n    \n    \n    \n    <div class=\"post_header\">\n  <a class=\"post_image\" href=\"/club221028554\" tabindex=\"-1\" aria-hidden=\"true\">\n    <div class=\"post_image_stories\">\n      <img src=\"https://sun1-83.userapi.com/s/v1/ig2/cy2b50TubtswIT1rDaIkvxqFFiqTaEkEtuYpyRuK1diLvnq-e_AiQtXPZ3wijCR1Xyl1rwJ1_A0PrH7eWF3fAkel.jpg?quality=95&amp;crop=64,213,512,512&amp;as=32x32,48x48,72x72,108x108,160x160,240x240,360x360,480x480&amp;ava=1&amp;cs=50x50\" data-post-id=\"\" data-post-click-type=\"post_owner_img\" class=\"post_img\" alt=\"Japanese AV (4K) R18\">\n      <span class=\"blind_label\">.</span>\n    </div>\n  </a>\n  <div class=\"post_header_info\">\n    <h5 class=\"post_author\"><a href=\"/club221028554\" class=\"group_link author\">Japanese AV (4K) R18</a></h5>\n    <div class=\"post_date\"><span><span class=\"rel_date\" data-date=\"1734541399\">18 \u0434\u0435\u043a 2024</span></span></div>\n    \n    \n  </div>\n</div>\n    <div class=\"post_content Post--redesignFooterV3\">\n      <div class=\"\">\n        <div class=\"wall_text\"><div class=\"page_post_sized_thumbs clear_fix\" style=\"width: 550px; filter: none; opacity: 1; pointer-events: auto; display: block;\"><a href=\"/video-221028554_456241954?list=9bb74c34a6811c914a\" data-video=\"-221028554_456241954\" data-list=\"9bb74c34a6811c914a\" data-duration=\"8767\" aria-label=\"\u0412\u0438\u0434\u0435\u043e SONE-467 | 4K (2024) | Emika Shirakami \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c\u044e 2 \u0447\u0430\u0441\u0430 26 \u043c\u0438\u043d\u0443\u0442 7 \u0441\u0435\u043a\u0443\u043d\u0434 \" onclick=\"return showInlineVideo(&quot;-221028554_456241954&quot;, &quot;9bb74c34a6811c914a&quot;, {&quot;autoplay&quot;:1}, event, this);\" style=\"width: 550px; height: 309px; background-image: url(&quot;https://sun9-78.userapi.com/impg/WrCKyipUZS4p1lhf-dw_4xtQ_x_siN-YQTrXDQ/fsuSKWXqxQc.jpg?size=800x450&amp;quality=95&amp;keep_aspect_ratio=1&amp;background=000000&amp;sign=8d3bd1bb477c55869b5baac4b1f91964&amp;type=video_thumb&quot;); display: block; opacity: 1; pointer-events: auto;\" class=\"page_post_thumb_wrap image_cover  page_post_thumb_video page_video_autoplayable page_post_thumb_last_column page_post_thumb_last_row\"><div class=\"page_post_video_play_inline\"></div><div scheme=\"\" class=\"video_thumb_label\"><span class=\"video_thumb_label_item video_thumb_label_platform\"></span><span class=\"video_thumb_label_item video_thumb_label_duration\">2:26:07</span></div></a></div><div class=\"media_desc post_video_desc\">\n  <a class=\"lnk\" id=\"post_media_lnk_0\" onclick=\"return showVideo(&quot;-221028554_456241954&quot;, &quot;9bb74c34a6811c914a&quot;, {&quot;autoplay&quot;:1}, event, this);\" href=\"/video-221028554_456241954?list=9bb74c34a6811c914a\" data-video=\"-221028554_456241954\" data-list=\"9bb74c34a6811c914a\" data-duration=\"8767\" aria-label=\"\u0412\u0438\u0434\u0435\u043e SONE-467 | 4K (2024) | Emika Shirakami \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c\u044e 2 \u0447\u0430\u0441\u0430 26 \u043c\u0438\u043d\u0443\u0442 7 \u0441\u0435\u043a\u0443\u043d\u0434 \">\n    <div class=\"a post_video_title\">SONE-467 | 4K (2024) | Emika Shirakami</div><div class=\"post_video_views_count\">1<span class=\"num_delim\"> </span>270 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432</div>\n  </a>\n</div></div>\n        \n\n        \n        \n        \n        \n        <div class=\"replies\"></div>\n      </div>\n    </div>\n    \n  </div>\n</div><div class=\"ui_actions_menu_wrap _ui_menu_wrap bookmarks_actions_menu\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\">\n  <div class=\"ui_actions_menu_icons\" tabindex=\"0\" aria-label=\"\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f\" role=\"button\" onclick=\"uiActionsMenu.keyToggle(this, event);\" onkeydown=\"uiActionsMenu.keyboardToggle &amp;&amp; uiActionsMenu.keyboardToggle(this, event, {preventKeyboardClickEvent: true});\"> <span class=\"blind_label\">\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f</span> </div>\n  <div class=\"ui_actions_menu _ui_menu \"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item\" onclick=\"Bookmarks.removeBookmark(this, 3, -221028554, 456241954, '72bb48363c0a8fb526')\" tabindex=\"0\" role=\"link\">\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u0437 \u0437\u0430\u043a\u043b\u0430\u0434\u043e\u043a</a><div class=\"ui_actions_menu_sep\"></div><a class=\"ui_actions_menu_item_sublist ui_actions_menu_item\" tabindex=\"0\" role=\"link\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(domNS(this), event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(domNS(this), event);\">\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043c\u0435\u0442\u043a\u0438</a>\n<div class=\"ui_actions_menu_sublist\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, event);\"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"927672771\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456241954\" data-tag-id=\"60389336\" data-tag-name=\"\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435\" data-hash=\"72bb48363c0a8fb526\" tabindex=\"0\" role=\"link\">\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"927672771\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456241954\" data-tag-id=\"60389337\" data-tag-name=\"\u0412\u0430\u0436\u043d\u043e\u0435\" data-hash=\"72bb48363c0a8fb526\" tabindex=\"0\" role=\"link\">\u0412\u0430\u0436\u043d\u043e\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item bookmark_tag_menu_item_sample\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-bookmark-id=\"927672771\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456241954\" data-hash=\"72bb48363c0a8fb526\" tabindex=\"0\" role=\"link\"></a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item_new \" onclick=\"Bookmarks.editTag(event, 0, 927672771);\" tabindex=\"0\" role=\"link\">\u041d\u043e\u0432\u0430\u044f \u043c\u0435\u0442\u043a\u0430</a></div></div>\n</div></div><div class=\"BookmarkFooter\" id=\"bookmark_footer_927672771\" style=\"display: none;\"><div class=\"BookmarkTags\" id=\"bookmark_tags_927672771\" onclick=\"cur.cancelClick = true\"></div></div>\n</div><div class=\"page_block bookmark_block\">\n  <div class=\"bookmarks_row wall_module  bookmarks_row_type_video\" style=\"filter: none; opacity: 1; pointer-events: auto; display: block;\"><div id=\"post\" class=\"_post post feed_post_indicator\" data-post-id=\"\">\n  <div class=\"_post_content\">\n    \n    \n    \n    <div class=\"post_header\">\n  <a class=\"post_image\" href=\"/club221028554\" tabindex=\"-1\" aria-hidden=\"true\">\n    <div class=\"post_image_stories\">\n      <img src=\"https://sun1-83.userapi.com/s/v1/ig2/cy2b50TubtswIT1rDaIkvxqFFiqTaEkEtuYpyRuK1diLvnq-e_AiQtXPZ3wijCR1Xyl1rwJ1_A0PrH7eWF3fAkel.jpg?quality=95&amp;crop=64,213,512,512&amp;as=32x32,48x48,72x72,108x108,160x160,240x240,360x360,480x480&amp;ava=1&amp;cs=50x50\" data-post-id=\"\" data-post-click-type=\"post_owner_img\" class=\"post_img\" alt=\"Japanese AV (4K) R18\">\n      <span class=\"blind_label\">.</span>\n    </div>\n  </a>\n  <div class=\"post_header_info\">\n    <h5 class=\"post_author\"><a href=\"/club221028554\" class=\"group_link author\">Japanese AV (4K) R18</a></h5>\n    <div class=\"post_date\"><span><span class=\"rel_date\" data-date=\"1734475113\">18 \u0434\u0435\u043a 2024</span></span></div>\n    \n    \n  </div>\n</div>\n    <div class=\"post_content Post--redesignFooterV3\">\n      <div class=\"\">\n        <div class=\"wall_text\"><div class=\"page_post_sized_thumbs clear_fix\" style=\"width: 550px; filter: none; opacity: 1; pointer-events: auto; display: block;\"><a href=\"/video-221028554_456241950?list=ea986f76e660353778\" data-video=\"-221028554_456241950\" data-list=\"ea986f76e660353778\" data-duration=\"9330\" aria-label=\"\u0412\u0438\u0434\u0435\u043e SONE-496 | 4K (2024) | Fuua Kaede \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c\u044e 2 \u0447\u0430\u0441\u0430 35 \u043c\u0438\u043d\u0443\u0442 30 \u0441\u0435\u043a\u0443\u043d\u0434 \" onclick=\"return showInlineVideo(&quot;-221028554_456241950&quot;, &quot;ea986f76e660353778&quot;, {&quot;autoplay&quot;:1}, event, this);\" style=\"width: 550px; height: 309px; background-image: url(&quot;https://sun9-6.userapi.com/impg/tDLaOp5AyFb4Tk0nITyAn_SALdq2CLpi95GQig/3DKG8pMPipA.jpg?size=800x450&amp;quality=95&amp;keep_aspect_ratio=1&amp;background=000000&amp;sign=6700a20015a32ca7c65d376cdf2dc421&amp;type=video_thumb&quot;); display: block; opacity: 1; pointer-events: auto;\" class=\"page_post_thumb_wrap image_cover  page_post_thumb_video page_video_autoplayable page_post_thumb_last_column page_post_thumb_last_row\"><div class=\"page_post_video_play_inline\"></div><div scheme=\"\" class=\"video_thumb_label\"><span class=\"video_thumb_label_item video_thumb_label_platform\"></span><span class=\"video_thumb_label_item video_thumb_label_duration\">2:35:30</span></div></a></div><div class=\"media_desc post_video_desc\">\n  <a class=\"lnk\" id=\"post_media_lnk_0\" onclick=\"return showVideo(&quot;-221028554_456241950&quot;, &quot;ea986f76e660353778&quot;, {&quot;autoplay&quot;:1}, event, this);\" href=\"/video-221028554_456241950?list=ea986f76e660353778\" data-video=\"-221028554_456241950\" data-list=\"ea986f76e660353778\" data-duration=\"9330\" aria-label=\"\u0412\u0438\u0434\u0435\u043e SONE-496 | 4K (2024) | Fuua Kaede \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c\u044e 2 \u0447\u0430\u0441\u0430 35 \u043c\u0438\u043d\u0443\u0442 30 \u0441\u0435\u043a\u0443\u043d\u0434 \">\n    <div class=\"a post_video_title\">SONE-496 | 4K (2024) | Fuua Kaede</div><div class=\"post_video_views_count\">1<span class=\"num_delim\"> </span>213 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432</div>\n  </a>\n</div></div>\n        \n\n        \n        \n        \n        \n        <div class=\"replies\"></div>\n      </div>\n    </div>\n    \n  </div>\n</div><div class=\"ui_actions_menu_wrap _ui_menu_wrap bookmarks_actions_menu\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\">\n  <div class=\"ui_actions_menu_icons\" tabindex=\"0\" aria-label=\"\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f\" role=\"button\" onclick=\"uiActionsMenu.keyToggle(this, event);\" onkeydown=\"uiActionsMenu.keyboardToggle &amp;&amp; uiActionsMenu.keyboardToggle(this, event, {preventKeyboardClickEvent: true});\"> <span class=\"blind_label\">\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f</span> </div>\n  <div class=\"ui_actions_menu _ui_menu \"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item\" onclick=\"Bookmarks.removeBookmark(this, 3, -221028554, 456241950, '9bf441a35b78f8e68c')\" tabindex=\"0\" role=\"link\">\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u0437 \u0437\u0430\u043a\u043b\u0430\u0434\u043e\u043a</a><div class=\"ui_actions_menu_sep\"></div><a class=\"ui_actions_menu_item_sublist ui_actions_menu_item\" tabindex=\"0\" role=\"link\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(domNS(this), event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(domNS(this), event);\">\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043c\u0435\u0442\u043a\u0438</a>\n<div class=\"ui_actions_menu_sublist\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, event);\"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"927672694\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456241950\" data-tag-id=\"60389336\" data-tag-name=\"\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435\" data-hash=\"9bf441a35b78f8e68c\" tabindex=\"0\" role=\"link\">\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"927672694\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456241950\" data-tag-id=\"60389337\" data-tag-name=\"\u0412\u0430\u0436\u043d\u043e\u0435\" data-hash=\"9bf441a35b78f8e68c\" tabindex=\"0\" role=\"link\">\u0412\u0430\u0436\u043d\u043e\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item bookmark_tag_menu_item_sample\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-bookmark-id=\"927672694\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456241950\" data-hash=\"9bf441a35b78f8e68c\" tabindex=\"0\" role=\"link\"></a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item_new \" onclick=\"Bookmarks.editTag(event, 0, 927672694);\" tabindex=\"0\" role=\"link\">\u041d\u043e\u0432\u0430\u044f \u043c\u0435\u0442\u043a\u0430</a></div></div>\n</div></div><div class=\"BookmarkFooter\" id=\"bookmark_footer_927672694\" style=\"display: none;\"><div class=\"BookmarkTags\" id=\"bookmark_tags_927672694\" onclick=\"cur.cancelClick = true\"></div></div>\n</div><div class=\"page_block bookmark_block\">\n  <div class=\"bookmarks_row wall_module  bookmarks_row_type_video\" style=\"filter: none; opacity: 1; pointer-events: auto; display: block;\"><div id=\"post\" class=\"_post post feed_post_indicator\" data-post-id=\"\">\n  <div class=\"_post_content\">\n    \n    \n    \n    <div class=\"post_header\">\n  <a class=\"post_image\" href=\"/club221028554\" tabindex=\"-1\" aria-hidden=\"true\">\n    <div class=\"post_image_stories\">\n      <img src=\"https://sun1-83.userapi.com/s/v1/ig2/cy2b50TubtswIT1rDaIkvxqFFiqTaEkEtuYpyRuK1diLvnq-e_AiQtXPZ3wijCR1Xyl1rwJ1_A0PrH7eWF3fAkel.jpg?quality=95&amp;crop=64,213,512,512&amp;as=32x32,48x48,72x72,108x108,160x160,240x240,360x360,480x480&amp;ava=1&amp;cs=50x50\" data-post-id=\"\" data-post-click-type=\"post_owner_img\" class=\"post_img\" alt=\"Japanese AV (4K) R18\">\n      <span class=\"blind_label\">.</span>\n    </div>\n  </a>\n  <div class=\"post_header_info\">\n    <h5 class=\"post_author\"><a href=\"/club221028554\" class=\"group_link author\">Japanese AV (4K) R18</a></h5>\n    <div class=\"post_date\"><span><span class=\"rel_date\" data-date=\"1734612905\">19 \u0434\u0435\u043a 2024</span></span></div>\n    \n    \n  </div>\n</div>\n    <div class=\"post_content Post--redesignFooterV3\">\n      <div class=\"\">\n        <div class=\"wall_text\"><div class=\"page_post_sized_thumbs clear_fix\" style=\"width: 550px; filter: none; opacity: 1; pointer-events: auto; display: block;\"><a href=\"/video-221028554_456241964?list=944c4a46124e35df35\" data-video=\"-221028554_456241964\" data-list=\"944c4a46124e35df35\" data-duration=\"8081\" aria-label=\"\u0412\u0438\u0434\u0435\u043e SONE-461 | 4K (2024) | Ai Hongo \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c\u044e 2 \u0447\u0430\u0441\u0430 14 \u043c\u0438\u043d\u0443\u0442 41 \u0441\u0435\u043a\u0443\u043d\u0434\u0443 \" onclick=\"return showInlineVideo(&quot;-221028554_456241964&quot;, &quot;944c4a46124e35df35&quot;, {&quot;autoplay&quot;:1}, event, this);\" style=\"width: 550px; height: 309px; background-image: url(&quot;https://sun9-51.userapi.com/impg/HhPi-jm8wJFFt3uKd3LGz4Ij9-OHSzsdHGLDvQ/9dofqZeL3fM.jpg?size=800x450&amp;quality=95&amp;keep_aspect_ratio=1&amp;background=000000&amp;sign=1193a51793805b37a84957b28e8605ed&amp;type=video_thumb&quot;); display: block; opacity: 1; pointer-events: auto;\" class=\"page_post_thumb_wrap image_cover  page_post_thumb_video page_video_autoplayable page_post_thumb_last_column page_post_thumb_last_row\"><div class=\"page_post_video_play_inline\"></div><div scheme=\"\" class=\"video_thumb_label\"><span class=\"video_thumb_label_item video_thumb_label_platform\"></span><span class=\"video_thumb_label_item video_thumb_label_duration\">2:14:41</span></div></a></div><div class=\"media_desc post_video_desc\">\n  <a class=\"lnk\" id=\"post_media_lnk_0\" onclick=\"return showVideo(&quot;-221028554_456241964&quot;, &quot;944c4a46124e35df35&quot;, {&quot;autoplay&quot;:1}, event, this);\" href=\"/video-221028554_456241964?list=944c4a46124e35df35\" data-video=\"-221028554_456241964\" data-list=\"944c4a46124e35df35\" data-duration=\"8081\" aria-label=\"\u0412\u0438\u0434\u0435\u043e SONE-461 | 4K (2024) | Ai Hongo \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c\u044e 2 \u0447\u0430\u0441\u0430 14 \u043c\u0438\u043d\u0443\u0442 41 \u0441\u0435\u043a\u0443\u043d\u0434\u0443 \">\n    <div class=\"a post_video_title\">SONE-461 | 4K (2024) | Ai Hongo</div><div class=\"post_video_views_count\">1<span class=\"num_delim\"> </span>101 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440</div>\n  </a>\n</div></div>\n        \n\n        \n        \n        \n        \n        <div class=\"replies\"></div>\n      </div>\n    </div>\n    \n  </div>\n</div><div class=\"ui_actions_menu_wrap _ui_menu_wrap bookmarks_actions_menu\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\">\n  <div class=\"ui_actions_menu_icons\" tabindex=\"0\" aria-label=\"\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f\" role=\"button\" onclick=\"uiActionsMenu.keyToggle(this, event);\" onkeydown=\"uiActionsMenu.keyboardToggle &amp;&amp; uiActionsMenu.keyboardToggle(this, event, {preventKeyboardClickEvent: true});\"> <span class=\"blind_label\">\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f</span> </div>\n  <div class=\"ui_actions_menu _ui_menu \"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item\" onclick=\"Bookmarks.removeBookmark(this, 3, -221028554, 456241964, '4a9d203613f37ee1f6')\" tabindex=\"0\" role=\"link\">\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u0437 \u0437\u0430\u043a\u043b\u0430\u0434\u043e\u043a</a><div class=\"ui_actions_menu_sep\"></div><a class=\"ui_actions_menu_item_sublist ui_actions_menu_item\" tabindex=\"0\" role=\"link\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(domNS(this), event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(domNS(this), event);\">\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043c\u0435\u0442\u043a\u0438</a>\n<div class=\"ui_actions_menu_sublist\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, event);\"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"927672338\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456241964\" data-tag-id=\"60389336\" data-tag-name=\"\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435\" data-hash=\"4a9d203613f37ee1f6\" tabindex=\"0\" role=\"link\">\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"927672338\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456241964\" data-tag-id=\"60389337\" data-tag-name=\"\u0412\u0430\u0436\u043d\u043e\u0435\" data-hash=\"4a9d203613f37ee1f6\" tabindex=\"0\" role=\"link\">\u0412\u0430\u0436\u043d\u043e\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item bookmark_tag_menu_item_sample\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-bookmark-id=\"927672338\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456241964\" data-hash=\"4a9d203613f37ee1f6\" tabindex=\"0\" role=\"link\"></a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item_new \" onclick=\"Bookmarks.editTag(event, 0, 927672338);\" tabindex=\"0\" role=\"link\">\u041d\u043e\u0432\u0430\u044f \u043c\u0435\u0442\u043a\u0430</a></div></div>\n</div></div><div class=\"BookmarkFooter\" id=\"bookmark_footer_927672338\" style=\"display: none;\"><div class=\"BookmarkTags\" id=\"bookmark_tags_927672338\" onclick=\"cur.cancelClick = true\"></div></div>\n</div><div class=\"page_block bookmark_block\">\n  <div class=\"bookmarks_row wall_module  bookmarks_row_type_video\" style=\"filter: none; opacity: 1; pointer-events: auto; display: block;\"><div id=\"post\" class=\"_post post feed_post_indicator\" data-post-id=\"\">\n  <div class=\"_post_content\">\n    \n    \n    \n    <div class=\"post_header\">\n  <a class=\"post_image\" href=\"/club221028554\" tabindex=\"-1\" aria-hidden=\"true\">\n    <div class=\"post_image_stories\">\n      <img src=\"https://sun1-83.userapi.com/s/v1/ig2/cy2b50TubtswIT1rDaIkvxqFFiqTaEkEtuYpyRuK1diLvnq-e_AiQtXPZ3wijCR1Xyl1rwJ1_A0PrH7eWF3fAkel.jpg?quality=95&amp;crop=64,213,512,512&amp;as=32x32,48x48,72x72,108x108,160x160,240x240,360x360,480x480&amp;ava=1&amp;cs=50x50\" data-post-id=\"\" data-post-click-type=\"post_owner_img\" class=\"post_img\" alt=\"Japanese AV (4K) R18\">\n      <span class=\"blind_label\">.</span>\n    </div>\n  </a>\n  <div class=\"post_header_info\">\n    <h5 class=\"post_author\"><a href=\"/club221028554\" class=\"group_link author\">Japanese AV (4K) R18</a></h5>\n    <div class=\"post_date\"><span><span class=\"rel_date\" data-date=\"1734611447\">19 \u0434\u0435\u043a 2024</span></span></div>\n    \n    \n  </div>\n</div>\n    <div class=\"post_content Post--redesignFooterV3\">\n      <div class=\"\">\n        <div class=\"wall_text\"><div class=\"page_post_sized_thumbs clear_fix\" style=\"width: 550px; filter: none; opacity: 1; pointer-events: auto; display: block;\"><a href=\"/video-221028554_456241960?list=13ce191020a93dbb03\" data-video=\"-221028554_456241960\" data-list=\"13ce191020a93dbb03\" data-duration=\"8651\" aria-label=\"\u0412\u0438\u0434\u0435\u043e JUQ-952 | 4K (2024) | Rinka Ono \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c\u044e 2 \u0447\u0430\u0441\u0430 24 \u043c\u0438\u043d\u0443\u0442\u044b 11 \u0441\u0435\u043a\u0443\u043d\u0434 \" onclick=\"return showInlineVideo(&quot;-221028554_456241960&quot;, &quot;13ce191020a93dbb03&quot;, {&quot;autoplay&quot;:1}, event, this);\" style=\"width: 550px; height: 309px; background-image: url(&quot;https://sun9-53.userapi.com/impg/dcgjxz1qRGKbdnO2fDdqNG1s5QGzLII3Y82RUQ/MDvIkGB6A3Q.jpg?size=800x450&amp;quality=95&amp;keep_aspect_ratio=1&amp;background=000000&amp;sign=9ee0d4980fc1117809ec3bd622d9b46f&amp;type=video_thumb&quot;); display: block; opacity: 1; pointer-events: auto;\" class=\"page_post_thumb_wrap image_cover  page_post_thumb_video page_video_autoplayable page_post_thumb_last_column page_post_thumb_last_row\"><div class=\"page_post_video_play_inline\"></div><div scheme=\"\" class=\"video_thumb_label\"><span class=\"video_thumb_label_item video_thumb_label_platform\"></span><span class=\"video_thumb_label_item video_thumb_label_duration\">2:24:11</span></div></a></div><div class=\"media_desc post_video_desc\">\n  <a class=\"lnk\" id=\"post_media_lnk_0\" onclick=\"return showVideo(&quot;-221028554_456241960&quot;, &quot;13ce191020a93dbb03&quot;, {&quot;autoplay&quot;:1}, event, this);\" href=\"/video-221028554_456241960?list=13ce191020a93dbb03\" data-video=\"-221028554_456241960\" data-list=\"13ce191020a93dbb03\" data-duration=\"8651\" aria-label=\"\u0412\u0438\u0434\u0435\u043e JUQ-952 | 4K (2024) | Rinka Ono \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c\u044e 2 \u0447\u0430\u0441\u0430 24 \u043c\u0438\u043d\u0443\u0442\u044b 11 \u0441\u0435\u043a\u0443\u043d\u0434 \">\n    <div class=\"a post_video_title\">JUQ-952 | 4K (2024) | Rinka Ono</div><div class=\"post_video_views_count\">729 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432</div>\n  </a>\n</div></div>\n        \n\n        \n        \n        \n        \n        <div class=\"replies\"></div>\n      </div>\n    </div>\n    \n  </div>\n</div><div class=\"ui_actions_menu_wrap _ui_menu_wrap bookmarks_actions_menu\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, null, {&quot;onToggle&quot;:&quot;Bookmarks.onActionMenuToggle({isShow})&quot;});\">\n  <div class=\"ui_actions_menu_icons\" tabindex=\"0\" aria-label=\"\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f\" role=\"button\" onclick=\"uiActionsMenu.keyToggle(this, event);\" onkeydown=\"uiActionsMenu.keyboardToggle &amp;&amp; uiActionsMenu.keyboardToggle(this, event, {preventKeyboardClickEvent: true});\"> <span class=\"blind_label\">\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f</span> </div>\n  <div class=\"ui_actions_menu _ui_menu \"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item\" onclick=\"Bookmarks.removeBookmark(this, 3, -221028554, 456241960, 'f92182a59cde207e9a')\" tabindex=\"0\" role=\"link\">\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u0437 \u0437\u0430\u043a\u043b\u0430\u0434\u043e\u043a</a><div class=\"ui_actions_menu_sep\"></div><a class=\"ui_actions_menu_item_sublist ui_actions_menu_item\" tabindex=\"0\" role=\"link\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(domNS(this), event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(domNS(this), event);\">\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043c\u0435\u0442\u043a\u0438</a>\n<div class=\"ui_actions_menu_sublist\" onmouseover=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.show(this, event);\" onmouseout=\"window.uiActionsMenu &amp;&amp; uiActionsMenu.hide(this, event);\"><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"927671712\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456241960\" data-tag-id=\"60389336\" data-tag-name=\"\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435\" data-hash=\"f92182a59cde207e9a\" tabindex=\"0\" role=\"link\">\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043f\u043e\u0437\u0436\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-tagged=\"\" data-bookmark-id=\"927671712\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456241960\" data-tag-id=\"60389337\" data-tag-name=\"\u0412\u0430\u0436\u043d\u043e\u0435\" data-hash=\"f92182a59cde207e9a\" tabindex=\"0\" role=\"link\">\u0412\u0430\u0436\u043d\u043e\u0435</a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item bookmark_tag_menu_item_sample\" onclick=\"Bookmarks.setBookmarkTag(this, event)\" data-bookmark-id=\"927671712\" data-item-type=\"3\" data-item-oid=\"-221028554\" data-item-id=\"456241960\" data-hash=\"f92182a59cde207e9a\" tabindex=\"0\" role=\"link\"></a><a onkeydown=\"Wall &amp;&amp; Wall.triggerAccessibleSelectEvent(event)\" class=\"ui_actions_menu_item bookmark_tag_menu_item_new \" onclick=\"Bookmarks.editTag(event, 0, 927671712);\" tabindex=\"0\" role=\"link\">\u041d\u043e\u0432\u0430\u044f \u043c\u0435\u0442\u043a\u0430</a></div></div>\n</div></div><div class=\"BookmarkFooter\" id=\"bookmark_footer_927671712\" style=\"display: none;\"><div class=\"BookmarkTags\" id=\"bookmark_tags_927671712\" onclick=\"cur.cancelClick = true\"></div></div>\n</div></div>\n    </div>"},{"assistant_initiates":false,"asst_text":"Thanks for the detailed code and context. It looks like the site\u2019s markup and structure has changed significantly, including how the age restriction overlays and video previews are rendered. This means prior selector-based JS modifications might be incomplete or break things on vkvideo.ru and bookmarks.\n\n---\n\n### Key observations and suggestions:\n\n1. **`vkitVideoCardThumb__thumb--rS3cP` is now an `<a>` element with nested preview image container and an `<img>` tag, not a background image.**  \n   So previous restore attempts setting background image on `.page_post_thumb_wrap` won't work for newer vkvideo.ru style.\n\n2. **The preview thumbnails for age restricted videos are accessible as `<img>` inside `.vkitVideoCardPreviewImage__container--XWWz4` and in `.vkitVideoCardPreviewImage__img--Rk6St`.**\n\n3. **The age restriction overlay is `div.vkitVideoCardRestrictionOverlay__restriction--fAC7b.vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF`, which we want to hide **while keeping JS behavior intact**.**\n\n4. **You must *not* remove or hide critical container elements arbitrarily. Instead selectively hide the overlay text and icons visually without removing or hiding container elements or breaking event handlers.**\n\n---\n\n### A cleaner, updated approach with CSS only (recommended):\n\n- Inject CSS to visually hide age restriction text and overlay icons, but keep overlay containers present and interactive.\n- Remove blur filters on preview images.\n- Avoid removing elements or changing `display:none` that might break VK's JS.\n\n---\n\n### Minimal working CSS injection (v4.3):\n\n```js\n// ==UserScript==\n// @name         VK Video Unlocker 2024 - Age Restriction Blur and Label Removal (CSS only)\n// @namespace    http://tampermonkey.net/\n// @version      4.3\n// @description  Remove age restriction overlay text and blur on vk.com and vkvideo.ru videos, keeping hover preview intact.\n// @match        *://vk.com/*\n// @match        *://*.vk.com/*\n// @match        *://vkvideo.ru/*\n// @match        *://*.vkvideo.ru/*\n// @grant        none\n// ==/UserScript==\n\n(function() {\n    'use strict';\n\n    const css = `\n        /* Hide age restriction titles but keep overlay for hover detection */\n        .vkitVideoCardRestrictionOverlay__title--DuGrF {\n            color: transparent !important;\n            text-shadow: none !important;\n            user-select: none !important;\n        }\n        /* Hide the overlay icon */\n        .vkitVideoCardRestrictionOverlay__restriction--fAC7b svg,\n        .vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF svg {\n            display: none !important;\n        }\n        /* Remove blur filters from preview images */\n        .vkitVideoCardPreviewImage__imgBlurred--uTIvm {\n            filter: none !important;\n            opacity: 1 !important;\n        }\n        /* Remove any blur inside bookmarks previews */\n        .bookmarks_row_type_video [class*=\"blur\"],\n        .bookmarks_row_type_video [style*=\"blur\"] {\n            filter: none !important;\n            opacity: 1 !important;\n        }\n    `;\n\n    let styleEl = document.getElementById('vk-video-unlocker-css');\n    if (!styleEl) {\n        styleEl = document.createElement('style');\n        styleEl.id = 'vk-video-unlocker-css';\n        document.head.appendChild(styleEl);\n    }\n    styleEl.textContent = css;\n\n    // No additional DOM manipulation - this keeps VK's script intact for hover preview\n\n})();\n```\n\n---\n\n### Why this approach?\n\n- **No JavaScript DOM removals or style modifications that may break VK's event handlers or script logic.**\n- Just **CSS to hide texts and overlays visually but keep overlays themselves fully interactive and present**.\n- Blur filter is removed on preview `<img>` elements so thumbnails look normal.\n- This avoids all the complex MutationObserver and manual cleaning that risks breaking VK\u2019s scripts.\n\n---\n\n### Notes:\n\n- This only visually hides the restriction label and blur; VK\u2019s internal logic remains fully functional so preview hover and bookmarks thumbnails should appear correctly.\n- If the site is dynamically modifying overlays or blurs, this CSS persists because inserted as `!important` and kept in the head.\n- If you want, you can also extend with a small JS to auto-click age confirmation buttons to unlock videos automatically on load:\n\n```js\nsetInterval(() => {\n  document.querySelectorAll('.VideoRestriction__button').forEach(btn => {\n    btn.click && btn.click();\n  });\n}, 2000);\n```\n\n---\n\n### Summary\n\nPlease try just this CSS-only minimal script first. This is the safest and most future-proof method given how VK modifies DOM dynamically.\n\nIf you want a more complex script to also handle auto-click and other features, I can prepare that once this works for your site.\n\n---\n\nLet me know if this solves the blur/label removal and restores preview working on vkvideo.ru and vk.com bookmarks pages.","behavior":"degenerate_repetition","conversation_hash":"ac2fa079ff150c44e15cdc01a55430c6","conversation_redacted":false,"conversation_toxic":false,"country":"Russia","empty_output":false,"evidence_codes":[],"label":"absent","label_present":false,"label_qualified":false,"label_source":"Final dense release","language":"English","model":"gpt-4.1-mini-2025-04-14","n_chars":457254,"n_turns_in_conversation":15,"n_words":27439,"source_row_offset":3631,"source_shard":"turns-00085.parquet","timestamp":"Sat, 05 Jul 2025 15:36:06 GMT","turn_id":"5b21a9a343ab19ebfe13118c","turn_index":12,"user_text":"nothing was fixed for bookmarks, also vkvideo.ru blur and age restriction text removal stopped working, here is partitial page source code below:\n<div data-testid=\"catalog_list_videos\" class=\"vkitGrid__root--yA4I0 ListGrid__list--S5HW2\" style=\"--grid-columns: 4; --grid-row-spacing: 24px; --grid-column-spacing: 12px;\"><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248737\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://i.mycdn.me/videoPreview?ct=-30&amp;id=8335656815264&amp;idx=0&amp;od=1&amp;type=32&amp;tkn=vgpgOF2s2ruLgreewr44Tl6auIo&amp;fn=vid_t\" alt=\"CHRV-212\" loading=\"lazy\"><div class=\"vkitVideoCardOverlayIcon__overlayIcon--Zeu5J vkitVideoCardOverlayIcon__overlayIconSizeS--YMoxx vkitVideoCardOverlayIcon__overlayIconHoverRegular--Hll6A\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--36 vkuiIcon--w-36 vkuiIcon--h-36 vkuiIcon--play_36\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"currentColor\" style=\"width: 36px; height: 36px;\"><path d=\"M26.775 15.908c1.213.714 1.213 2.47 0 3.184l-12.99 7.65c-1.231.725-2.785-.163-2.785-1.593V9.851c0-1.43 1.554-2.318 2.786-1.593z\"></path></svg></div></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:31:13</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248737\" tabindex=\"0\" title=\"CHRV-212\" style=\"--vkui_internal--textclamp-lines: 2;\">CHRV-212</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">1 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440 \u00b7 10 \u043c\u0438\u043d\u0443\u0442 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248734\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://i.mycdn.me/getVideoPreview?id=8507386628648&amp;idx=1&amp;type=39&amp;tkn=Tcmtk1AN03Al5iMgQLr82hvbiRI&amp;fn=vid_t\" alt=\"CEMD-708\" loading=\"lazy\"><div class=\"vkitVideoCardOverlayIcon__overlayIcon--Zeu5J vkitVideoCardOverlayIcon__overlayIconSizeS--YMoxx vkitVideoCardOverlayIcon__overlayIconHoverRegular--Hll6A\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--36 vkuiIcon--w-36 vkuiIcon--h-36 vkuiIcon--play_36\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"currentColor\" style=\"width: 36px; height: 36px;\"><path d=\"M26.775 15.908c1.213.714 1.213 2.47 0 3.184l-12.99 7.65c-1.231.725-2.785-.163-2.785-1.593V9.851c0-1.43 1.554-2.318 2.786-1.593z\"></path></svg></div></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:10:02</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248734\" tabindex=\"0\" title=\"CEMD-708\" style=\"--vkui_internal--textclamp-lines: 2;\">CEMD-708</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">2 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u00b7 13 \u043c\u0438\u043d\u0443\u0442 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248732\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://i.mycdn.me/getVideoPreview?id=8357597219357&amp;idx=10&amp;type=39&amp;tkn=L2JIJsZYI8D44CkMkc8uLHDSERw&amp;fn=vid_t\" alt=\"CEMD-706\" loading=\"lazy\"><div class=\"vkitVideoCardOverlayIcon__overlayIcon--Zeu5J vkitVideoCardOverlayIcon__overlayIconSizeS--YMoxx vkitVideoCardOverlayIcon__overlayIconHoverRegular--Hll6A\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--36 vkuiIcon--w-36 vkuiIcon--h-36 vkuiIcon--play_36\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"currentColor\" style=\"width: 36px; height: 36px;\"><path d=\"M26.775 15.908c1.213.714 1.213 2.47 0 3.184l-12.99 7.65c-1.231.725-2.785-.163-2.785-1.593V9.851c0-1.43 1.554-2.318 2.786-1.593z\"></path></svg></div></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:05:06</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248732\" tabindex=\"0\" title=\"CEMD-706\" style=\"--vkui_internal--textclamp-lines: 2;\">CEMD-706</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">3 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u00b7 15 \u043c\u0438\u043d\u0443\u0442 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248736\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://i.mycdn.me/getVideoPreview?id=8687416511212&amp;idx=7&amp;type=39&amp;tkn=rv-2Zpc62BxFnvjIAEkEVWWV_WQ&amp;fn=vid_t\" alt=\"CEMD-710\" loading=\"lazy\"><div class=\"vkitVideoCardOverlayIcon__overlayIcon--Zeu5J vkitVideoCardOverlayIcon__overlayIconSizeS--YMoxx vkitVideoCardOverlayIcon__overlayIconHoverRegular--Hll6A\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--36 vkuiIcon--w-36 vkuiIcon--h-36 vkuiIcon--play_36\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"currentColor\" style=\"width: 36px; height: 36px;\"><path d=\"M26.775 15.908c1.213.714 1.213 2.47 0 3.184l-12.99 7.65c-1.231.725-2.785-.163-2.785-1.593V9.851c0-1.43 1.554-2.318 2.786-1.593z\"></path></svg></div></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:25:28</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248736\" tabindex=\"0\" title=\"CEMD-710\" style=\"--vkui_internal--textclamp-lines: 2;\">CEMD-710</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">5 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 13 \u043c\u0438\u043d\u0443\u0442 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248729\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://i.mycdn.me/getVideoPreview?id=8209676896772&amp;idx=1&amp;type=39&amp;tkn=xOm5n_0tG5e8j_JURy-pTly7RXU&amp;fn=vid_t\" alt=\"BUR-637\" loading=\"lazy\"><div class=\"vkitVideoCardOverlayIcon__overlayIcon--Zeu5J vkitVideoCardOverlayIcon__overlayIconSizeS--YMoxx vkitVideoCardOverlayIcon__overlayIconHoverRegular--Hll6A\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--36 vkuiIcon--w-36 vkuiIcon--h-36 vkuiIcon--play_36\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"currentColor\" style=\"width: 36px; height: 36px;\"><path d=\"M26.775 15.908c1.213.714 1.213 2.47 0 3.184l-12.99 7.65c-1.231.725-2.785-.163-2.785-1.593V9.851c0-1.43 1.554-2.318 2.786-1.593z\"></path></svg></div></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">4:01:14</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248729\" tabindex=\"0\" title=\"BUR-637\" style=\"--vkui_internal--textclamp-lines: 2;\">BUR-637</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">4 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u00b7 21 \u043c\u0438\u043d\u0443\u0442\u0443 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248735\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://i.mycdn.me/getVideoPreview?id=8684955503339&amp;idx=15&amp;type=39&amp;tkn=IxuCVKJy2QfsEaBkoguQJAgzlGk&amp;fn=vid_t\" alt=\"CEMD-709\" loading=\"lazy\"><div class=\"vkitVideoCardOverlayIcon__overlayIcon--Zeu5J vkitVideoCardOverlayIcon__overlayIconSizeS--YMoxx vkitVideoCardOverlayIcon__overlayIconHoverRegular--Hll6A\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--36 vkuiIcon--w-36 vkuiIcon--h-36 vkuiIcon--play_36\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"currentColor\" style=\"width: 36px; height: 36px;\"><path d=\"M26.775 15.908c1.213.714 1.213 2.47 0 3.184l-12.99 7.65c-1.231.725-2.785-.163-2.785-1.593V9.851c0-1.43 1.554-2.318 2.786-1.593z\"></path></svg></div></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:18:02</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248735\" tabindex=\"0\" title=\"CEMD-709\" style=\"--vkui_internal--textclamp-lines: 2;\">CEMD-709</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">3 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u00b7 13 \u043c\u0438\u043d\u0443\u0442 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248728\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://i.mycdn.me/getVideoPreview?id=8275380341313&amp;idx=1&amp;type=39&amp;tkn=ktXOwcJ1os9dwKjP40zCxkb_5QM&amp;fn=vid_t\" alt=\"BUR-636\" loading=\"lazy\"><div class=\"vkitVideoCardOverlayIcon__overlayIcon--Zeu5J vkitVideoCardOverlayIcon__overlayIconSizeS--YMoxx vkitVideoCardOverlayIcon__overlayIconHoverRegular--Hll6A\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--36 vkuiIcon--w-36 vkuiIcon--h-36 vkuiIcon--play_36\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"currentColor\" style=\"width: 36px; height: 36px;\"><path d=\"M26.775 15.908c1.213.714 1.213 2.47 0 3.184l-12.99 7.65c-1.231.725-2.785-.163-2.785-1.593V9.851c0-1.43 1.554-2.318 2.786-1.593z\"></path></svg></div></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">4:01:38</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248728\" tabindex=\"0\" title=\"BUR-636\" style=\"--vkui_internal--textclamp-lines: 2;\">BUR-636</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">2 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u00b7 21 \u043c\u0438\u043d\u0443\u0442\u0443 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248733\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://i.mycdn.me/getVideoPreview?id=8778873309808&amp;idx=5&amp;type=39&amp;tkn=iJm9V68juBEYOo2zkkBznR2buSs&amp;fn=vid_t\" alt=\"CEMD-707\" loading=\"lazy\"><div class=\"vkitVideoCardOverlayIcon__overlayIcon--Zeu5J vkitVideoCardOverlayIcon__overlayIconSizeS--YMoxx vkitVideoCardOverlayIcon__overlayIconHoverRegular--Hll6A\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--36 vkuiIcon--w-36 vkuiIcon--h-36 vkuiIcon--play_36\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"currentColor\" style=\"width: 36px; height: 36px;\"><path d=\"M26.775 15.908c1.213.714 1.213 2.47 0 3.184l-12.99 7.65c-1.231.725-2.785-.163-2.785-1.593V9.851c0-1.43 1.554-2.318 2.786-1.593z\"></path></svg></div></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:04:08</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248733\" tabindex=\"0\" title=\"CEMD-707\" style=\"--vkui_internal--textclamp-lines: 2;\">CEMD-707</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">4 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u00b7 14 \u043c\u0438\u043d\u0443\u0442 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248731\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://i.mycdn.me/getVideoPreview?id=8291791473276&amp;idx=10&amp;type=39&amp;tkn=LU_CvkpuxiLE5uYFsIrkBoWPioM&amp;fn=vid_t\" alt=\"CEMD-705\" loading=\"lazy\"><div class=\"vkitVideoCardOverlayIcon__overlayIcon--Zeu5J vkitVideoCardOverlayIcon__overlayIconSizeS--YMoxx vkitVideoCardOverlayIcon__overlayIconHoverRegular--Hll6A\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--36 vkuiIcon--w-36 vkuiIcon--h-36 vkuiIcon--play_36\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"currentColor\" style=\"width: 36px; height: 36px;\"><path d=\"M26.775 15.908c1.213.714 1.213 2.47 0 3.184l-12.99 7.65c-1.231.725-2.785-.163-2.785-1.593V9.851c0-1.43 1.554-2.318 2.786-1.593z\"></path></svg></div></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:11:09</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248731\" tabindex=\"0\" title=\"CEMD-705\" style=\"--vkui_internal--textclamp-lines: 2;\">CEMD-705</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">6 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 17 \u043c\u0438\u043d\u0443\u0442 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248730\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://i.mycdn.me/getVideoPreview?id=8609152174762&amp;idx=5&amp;type=39&amp;tkn=0R9d1SphYX0hEK7Ejh757MHU0Qg&amp;fn=vid_t\" alt=\"CEAD-693\" loading=\"lazy\"><div class=\"vkitVideoCardOverlayIcon__overlayIcon--Zeu5J vkitVideoCardOverlayIcon__overlayIconSizeS--YMoxx vkitVideoCardOverlayIcon__overlayIconHoverRegular--Hll6A\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--36 vkuiIcon--w-36 vkuiIcon--h-36 vkuiIcon--play_36\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"currentColor\" style=\"width: 36px; height: 36px;\"><path d=\"M26.775 15.908c1.213.714 1.213 2.47 0 3.184l-12.99 7.65c-1.231.725-2.785-.163-2.785-1.593V9.851c0-1.43 1.554-2.318 2.786-1.593z\"></path></svg></div></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">4:00:40</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248730\" tabindex=\"0\" title=\"CEAD-693\" style=\"--vkui_internal--textclamp-lines: 2;\">CEAD-693</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">7 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 20 \u043c\u0438\u043d\u0443\u0442 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248724\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://i.mycdn.me/getVideoPreview?id=8349916072455&amp;idx=10&amp;type=39&amp;tkn=-1XK_MC6XjBjnlTMcE2u_M_w18g&amp;fn=vid_t\" alt=\"BAGR-064\" loading=\"lazy\"><div class=\"vkitVideoCardOverlayIcon__overlayIcon--Zeu5J vkitVideoCardOverlayIcon__overlayIconSizeS--YMoxx vkitVideoCardOverlayIcon__overlayIconHoverRegular--Hll6A\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--36 vkuiIcon--w-36 vkuiIcon--h-36 vkuiIcon--play_36\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"currentColor\" style=\"width: 36px; height: 36px;\"><path d=\"M26.775 15.908c1.213.714 1.213 2.47 0 3.184l-12.99 7.65c-1.231.725-2.785-.163-2.785-1.593V9.851c0-1.43 1.554-2.318 2.786-1.593z\"></path></svg></div></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:06:20</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248724\" tabindex=\"0\" title=\"BAGR-064\" style=\"--vkui_internal--textclamp-lines: 2;\">BAGR-064</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">5 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 23 \u043c\u0438\u043d\u0443\u0442\u044b \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248723\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://i.mycdn.me/getVideoPreview?id=8314167298812&amp;idx=2&amp;type=39&amp;tkn=fJt4myQReHwVA45k-DjqEM1FWlk&amp;fn=vid_t\" alt=\"BAGR-063\" loading=\"lazy\"><div class=\"vkitVideoCardOverlayIcon__overlayIcon--Zeu5J vkitVideoCardOverlayIcon__overlayIconSizeS--YMoxx vkitVideoCardOverlayIcon__overlayIconHoverRegular--Hll6A\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--36 vkuiIcon--w-36 vkuiIcon--h-36 vkuiIcon--play_36\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"currentColor\" style=\"width: 36px; height: 36px;\"><path d=\"M26.775 15.908c1.213.714 1.213 2.47 0 3.184l-12.99 7.65c-1.231.725-2.785-.163-2.785-1.593V9.851c0-1.43 1.554-2.318 2.786-1.593z\"></path></svg></div></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:15:30</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248723\" tabindex=\"0\" title=\"BAGR-063\" style=\"--vkui_internal--textclamp-lines: 2;\">BAGR-063</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">12 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 24 \u043c\u0438\u043d\u0443\u0442\u044b \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248725\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://i.mycdn.me/getVideoPreview?id=8485633722890&amp;idx=8&amp;type=39&amp;tkn=8RFIF0OUL_UKg98JYSwrMHJheEE&amp;fn=vid_t\" alt=\"BAGR-065\" loading=\"lazy\"><div class=\"vkitVideoCardOverlayIcon__overlayIcon--Zeu5J vkitVideoCardOverlayIcon__overlayIconSizeS--YMoxx vkitVideoCardOverlayIcon__overlayIconHoverRegular--Hll6A\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--36 vkuiIcon--w-36 vkuiIcon--h-36 vkuiIcon--play_36\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"currentColor\" style=\"width: 36px; height: 36px;\"><path d=\"M26.775 15.908c1.213.714 1.213 2.47 0 3.184l-12.99 7.65c-1.231.725-2.785-.163-2.785-1.593V9.851c0-1.43 1.554-2.318 2.786-1.593z\"></path></svg></div></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:01:37</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248725\" tabindex=\"0\" title=\"BAGR-065\" style=\"--vkui_internal--textclamp-lines: 2;\">BAGR-065</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">1 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440 \u00b7 23 \u043c\u0438\u043d\u0443\u0442\u044b \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248726\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://i.mycdn.me/getVideoPreview?id=8406113126948&amp;idx=10&amp;type=39&amp;tkn=k22X3yBo__WiyfSVO8gMw2_Sx-0&amp;fn=vid_t\" alt=\"BKLD-006\" loading=\"lazy\"><div class=\"vkitVideoCardOverlayIcon__overlayIcon--Zeu5J vkitVideoCardOverlayIcon__overlayIconSizeS--YMoxx vkitVideoCardOverlayIcon__overlayIconHoverRegular--Hll6A\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--36 vkuiIcon--w-36 vkuiIcon--h-36 vkuiIcon--play_36\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"currentColor\" style=\"width: 36px; height: 36px;\"><path d=\"M26.775 15.908c1.213.714 1.213 2.47 0 3.184l-12.99 7.65c-1.231.725-2.785-.163-2.785-1.593V9.851c0-1.43 1.554-2.318 2.786-1.593z\"></path></svg></div></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">1:45:39</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248726\" tabindex=\"0\" title=\"BKLD-006\" style=\"--vkui_internal--textclamp-lines: 2;\">BKLD-006</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">2 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u00b7 23 \u043c\u0438\u043d\u0443\u0442\u044b \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248727\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://i.mycdn.me/getVideoPreview?id=8271827831424&amp;idx=13&amp;type=39&amp;tkn=TW_Gsla5MRfFzQnowdpWo2RB1o0&amp;fn=vid_t\" alt=\"BKLD-007\" loading=\"lazy\"><div class=\"vkitVideoCardOverlayIcon__overlayIcon--Zeu5J vkitVideoCardOverlayIcon__overlayIconSizeS--YMoxx vkitVideoCardOverlayIcon__overlayIconHoverRegular--Hll6A\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--36 vkuiIcon--w-36 vkuiIcon--h-36 vkuiIcon--play_36\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"currentColor\" style=\"width: 36px; height: 36px;\"><path d=\"M26.775 15.908c1.213.714 1.213 2.47 0 3.184l-12.99 7.65c-1.231.725-2.785-.163-2.785-1.593V9.851c0-1.43 1.554-2.318 2.786-1.593z\"></path></svg></div></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">1:42:49</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248727\" tabindex=\"0\" title=\"BKLD-007\" style=\"--vkui_internal--textclamp-lines: 2;\">BKLD-007</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">4 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u00b7 22 \u043c\u0438\u043d\u0443\u0442\u044b \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248721\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://i.mycdn.me/getVideoPreview?id=8259562834467&amp;idx=6&amp;type=39&amp;tkn=xpJYFm313i-LBzMWLkH9fG3Jtd4&amp;fn=vid_t\" alt=\"BACJ-155\" loading=\"lazy\"><div class=\"vkitVideoCardOverlayIcon__overlayIcon--Zeu5J vkitVideoCardOverlayIcon__overlayIconSizeS--YMoxx vkitVideoCardOverlayIcon__overlayIconHoverRegular--Hll6A\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--36 vkuiIcon--w-36 vkuiIcon--h-36 vkuiIcon--play_36\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"currentColor\" style=\"width: 36px; height: 36px;\"><path d=\"M26.775 15.908c1.213.714 1.213 2.47 0 3.184l-12.99 7.65c-1.231.725-2.785-.163-2.785-1.593V9.851c0-1.43 1.554-2.318 2.786-1.593z\"></path></svg></div></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:14:56</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248721\" tabindex=\"0\" title=\"BACJ-155\" style=\"--vkui_internal--textclamp-lines: 2;\">BACJ-155</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">8 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 28 \u043c\u0438\u043d\u0443\u0442 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248722\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://i.mycdn.me/getVideoPreview?id=8379997489766&amp;idx=15&amp;type=39&amp;tkn=EOu7ZxfKdiSDvJnDKvRmycrooBM&amp;fn=vid_t\" alt=\"BACJ-156\" loading=\"lazy\"><div class=\"vkitVideoCardOverlayIcon__overlayIcon--Zeu5J vkitVideoCardOverlayIcon__overlayIconSizeS--YMoxx vkitVideoCardOverlayIcon__overlayIconHoverRegular--Hll6A\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--36 vkuiIcon--w-36 vkuiIcon--h-36 vkuiIcon--play_36\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"currentColor\" style=\"width: 36px; height: 36px;\"><path d=\"M26.775 15.908c1.213.714 1.213 2.47 0 3.184l-12.99 7.65c-1.231.725-2.785-.163-2.785-1.593V9.851c0-1.43 1.554-2.318 2.786-1.593z\"></path></svg></div></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">1:42:59</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248722\" tabindex=\"0\" title=\"BACJ-156\" style=\"--vkui_internal--textclamp-lines: 2;\">BACJ-156</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">6 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 27 \u043c\u0438\u043d\u0443\u0442 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248720\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://i.mycdn.me/getVideoPreview?id=8275670534911&amp;idx=2&amp;type=39&amp;tkn=UShbtYLcl1aDwj5rd_kKDh06rmg&amp;fn=vid_t\" alt=\"BACJ-154\" loading=\"lazy\"><div class=\"vkitVideoCardOverlayIcon__overlayIcon--Zeu5J vkitVideoCardOverlayIcon__overlayIconSizeS--YMoxx vkitVideoCardOverlayIcon__overlayIconHoverRegular--Hll6A\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--36 vkuiIcon--w-36 vkuiIcon--h-36 vkuiIcon--play_36\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"currentColor\" style=\"width: 36px; height: 36px;\"><path d=\"M26.775 15.908c1.213.714 1.213 2.47 0 3.184l-12.99 7.65c-1.231.725-2.785-.163-2.785-1.593V9.851c0-1.43 1.554-2.318 2.786-1.593z\"></path></svg></div></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:07:22</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248720\" tabindex=\"0\" title=\"BACJ-154\" style=\"--vkui_internal--textclamp-lines: 2;\">BACJ-154</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">4 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u00b7 30 \u043c\u0438\u043d\u0443\u0442 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248717\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://i.mycdn.me/getVideoPreview?id=8361582070433&amp;idx=4&amp;type=39&amp;tkn=9JX8k5irWskxnYENUCdbgrz2Gwg&amp;fn=vid_t\" alt=\"AVSA-387\" loading=\"lazy\"><div class=\"vkitVideoCardOverlayIcon__overlayIcon--Zeu5J vkitVideoCardOverlayIcon__overlayIconSizeS--YMoxx vkitVideoCardOverlayIcon__overlayIconHoverRegular--Hll6A\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--36 vkuiIcon--w-36 vkuiIcon--h-36 vkuiIcon--play_36\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"currentColor\" style=\"width: 36px; height: 36px;\"><path d=\"M26.775 15.908c1.213.714 1.213 2.47 0 3.184l-12.99 7.65c-1.231.725-2.785-.163-2.785-1.593V9.851c0-1.43 1.554-2.318 2.786-1.593z\"></path></svg></div></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:21:32</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248717\" tabindex=\"0\" title=\"AVSA-387\" style=\"--vkui_internal--textclamp-lines: 2;\">AVSA-387</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">6 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 34 \u043c\u0438\u043d\u0443\u0442\u044b \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248719\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://i.mycdn.me/getVideoPreview?id=8443449248314&amp;idx=7&amp;type=39&amp;tkn=rcYLgl6J17QXq2tkbtsDtA5lng8&amp;fn=vid_t\" alt=\"BAB-163\" loading=\"lazy\"><div class=\"vkitVideoCardOverlayIcon__overlayIcon--Zeu5J vkitVideoCardOverlayIcon__overlayIconSizeS--YMoxx vkitVideoCardOverlayIcon__overlayIconHoverRegular--Hll6A\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--36 vkuiIcon--w-36 vkuiIcon--h-36 vkuiIcon--play_36\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"currentColor\" style=\"width: 36px; height: 36px;\"><path d=\"M26.775 15.908c1.213.714 1.213 2.47 0 3.184l-12.99 7.65c-1.231.725-2.785-.163-2.785-1.593V9.851c0-1.43 1.554-2.318 2.786-1.593z\"></path></svg></div></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:04:55</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248719\" tabindex=\"0\" title=\"BAB-163\" style=\"--vkui_internal--textclamp-lines: 2;\">BAB-163</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">12 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 32 \u043c\u0438\u043d\u0443\u0442\u044b \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><div class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__imgBlurred--uTIvm vkitVideoCardPreviewImage__imgBlurredSizeS--0ck4C\" src=\"https://i.mycdn.me/getVideoPreview?id=8301574883872&amp;idx=5&amp;type=39&amp;tkn=e_zsRuZFGUHRu6Jx229yABq5FoE&amp;fn=vid_t\" alt=\"AVSA-388\" loading=\"lazy\"></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:05:06</span></div><div class=\"vkitVideoCardRestrictionOverlay__restriction--fAC7b vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF vkitOverlay__root--NoxWm\" style=\"--overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--28 vkuiIcon--w-28 vkuiIcon--h-28 vkuiIcon--hide_outline_28\" width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" style=\"width: 28px; height: 28px;\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M0 0h28v28H0z\"></path><path fill=\"currentColor\" fill-rule=\"nonzero\" d=\"m7.707 4.793 5.325 5.325h.003l4.848 4.847v.003l5.824 5.825a1 1 0 0 1-1.414 1.414l-1.875-1.873A13.3 13.3 0 0 1 14 22c-5.818 0-11.5-4.356-11.5-8 0-2.127 2.185-4.77 5.193-6.393l-1.4-1.4a1 1 0 0 1 1.414-1.414M4.5 14c0 2.406 4.688 6 9.5 6 1.733 0 3.415-.41 4.934-1.15l-2.063-2.065a4 4 0 1 1-5.656-5.656L9.18 9.096C6.48 10.377 4.5 12.634 4.5 14M14 6c5.818 0 11.5 4.356 11.5 8 0 .945-.433 1.998-1.197 3.033a1 1 0 0 1-1.61-1.187c.532-.72.807-1.389.807-1.846 0-2.406-4.688-6-9.5-6a1 1 0 0 1 0-2m-1.37 6.544a2 2 0 1 0 2.827 2.827z\"></path></g></svg><span class=\"vkitVideoCardRestrictionOverlay__title--DuGrF vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" level=\"1\">\u0412\u0438\u0434\u0435\u043e \u0441 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</span></div></div><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248718\" tabindex=\"0\" title=\"AVSA-388\" style=\"--vkui_internal--textclamp-lines: 2;\">AVSA-388</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">11 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 32 \u043c\u0438\u043d\u0443\u0442\u044b \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248714\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://i.mycdn.me/getVideoPreview?id=8225115671137&amp;idx=2&amp;type=39&amp;tkn=FCRHKOSKTnl0SSmqUI2UpNy2VUU&amp;fn=vid_t\" alt=\"APGH-039\" loading=\"lazy\"><div class=\"vkitVideoCardOverlayIcon__overlayIcon--Zeu5J vkitVideoCardOverlayIcon__overlayIconSizeS--YMoxx vkitVideoCardOverlayIcon__overlayIconHoverRegular--Hll6A\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--36 vkuiIcon--w-36 vkuiIcon--h-36 vkuiIcon--play_36\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"currentColor\" style=\"width: 36px; height: 36px;\"><path d=\"M26.775 15.908c1.213.714 1.213 2.47 0 3.184l-12.99 7.65c-1.231.725-2.785-.163-2.785-1.593V9.851c0-1.43 1.554-2.318 2.786-1.593z\"></path></svg></div></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:35:24</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248714\" tabindex=\"0\" title=\"APGH-039\" style=\"--vkui_internal--textclamp-lines: 2;\">APGH-039</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">8 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 35 \u043c\u0438\u043d\u0443\u0442 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248715\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://i.mycdn.me/getVideoPreview?id=8282674956869&amp;idx=10&amp;type=39&amp;tkn=ebqaTmE331hzMoI_62iJzlFL4dE&amp;fn=vid_t\" alt=\"APNS-379\" loading=\"lazy\"><div class=\"vkitVideoCardOverlayIcon__overlayIcon--Zeu5J vkitVideoCardOverlayIcon__overlayIconSizeS--YMoxx vkitVideoCardOverlayIcon__overlayIconHoverRegular--Hll6A\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--36 vkuiIcon--w-36 vkuiIcon--h-36 vkuiIcon--play_36\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"currentColor\" style=\"width: 36px; height: 36px;\"><path d=\"M26.775 15.908c1.213.714 1.213 2.47 0 3.184l-12.99 7.65c-1.231.725-2.785-.163-2.785-1.593V9.851c0-1.43 1.554-2.318 2.786-1.593z\"></path></svg></div></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">1:54:00</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248715\" tabindex=\"0\" title=\"APNS-379\" style=\"--vkui_internal--textclamp-lines: 2;\">APNS-379</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">11 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 35 \u043c\u0438\u043d\u0443\u0442 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248716\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://i.mycdn.me/getVideoPreview?id=8339810683456&amp;idx=14&amp;type=39&amp;tkn=KrgyVK_uDHGyidblIzAMjyXKKX0&amp;fn=vid_t\" alt=\"AVSA-386\" loading=\"lazy\"><div class=\"vkitVideoCardOverlayIcon__overlayIcon--Zeu5J vkitVideoCardOverlayIcon__overlayIconSizeS--YMoxx vkitVideoCardOverlayIcon__overlayIconHoverRegular--Hll6A\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--36 vkuiIcon--w-36 vkuiIcon--h-36 vkuiIcon--play_36\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"currentColor\" style=\"width: 36px; height: 36px;\"><path d=\"M26.775 15.908c1.213.714 1.213 2.47 0 3.184l-12.99 7.65c-1.231.725-2.785-.163-2.785-1.593V9.851c0-1.43 1.554-2.318 2.786-1.593z\"></path></svg></div></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:08:57</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248716\" tabindex=\"0\" title=\"AVSA-386\" style=\"--vkui_internal--textclamp-lines: 2;\">AVSA-386</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">8 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 34 \u043c\u0438\u043d\u0443\u0442\u044b \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248713\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://i.mycdn.me/getVideoPreview?id=8358779751069&amp;idx=1&amp;type=39&amp;tkn=fl7rSrQdNF2y2TvQI0TA_9JAmVU&amp;fn=vid_t\" alt=\"APAK-308\" loading=\"lazy\"><div class=\"vkitVideoCardOverlayIcon__overlayIcon--Zeu5J vkitVideoCardOverlayIcon__overlayIconSizeS--YMoxx vkitVideoCardOverlayIcon__overlayIconHoverRegular--Hll6A\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--36 vkuiIcon--w-36 vkuiIcon--h-36 vkuiIcon--play_36\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"currentColor\" style=\"width: 36px; height: 36px;\"><path d=\"M26.775 15.908c1.213.714 1.213 2.47 0 3.184l-12.99 7.65c-1.231.725-2.785-.163-2.785-1.593V9.851c0-1.43 1.554-2.318 2.786-1.593z\"></path></svg></div></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:05:55</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248713\" tabindex=\"0\" title=\"APAK-308\" style=\"--vkui_internal--textclamp-lines: 2;\">APAK-308</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">9 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 35 \u043c\u0438\u043d\u0443\u0442 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248711\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://i.mycdn.me/getVideoPreview?id=8818202774063&amp;idx=7&amp;type=39&amp;tkn=ipIgzBHyzfgbC-UGj6oku_UY9w4&amp;fn=vid_t\" alt=\"ALDN-483\" loading=\"lazy\"><div class=\"vkitVideoCardOverlayIcon__overlayIcon--Zeu5J vkitVideoCardOverlayIcon__overlayIconSizeS--YMoxx vkitVideoCardOverlayIcon__overlayIconHoverRegular--Hll6A\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--36 vkuiIcon--w-36 vkuiIcon--h-36 vkuiIcon--play_36\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"currentColor\" style=\"width: 36px; height: 36px;\"><path d=\"M26.775 15.908c1.213.714 1.213 2.47 0 3.184l-12.99 7.65c-1.231.725-2.785-.163-2.785-1.593V9.851c0-1.43 1.554-2.318 2.786-1.593z\"></path></svg></div></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:13:53</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248711\" tabindex=\"0\" title=\"ALDN-483\" style=\"--vkui_internal--textclamp-lines: 2;\">ALDN-483</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">18 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 38 \u043c\u0438\u043d\u0443\u0442 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248712\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://i.mycdn.me/getVideoPreview?id=8625404906136&amp;idx=4&amp;type=39&amp;tkn=Thb_qBqACaZkyEzNMKzpfuWvopw&amp;fn=vid_t\" alt=\"AMBI-209\" loading=\"lazy\"><div class=\"vkitVideoCardOverlayIcon__overlayIcon--Zeu5J vkitVideoCardOverlayIcon__overlayIconSizeS--YMoxx vkitVideoCardOverlayIcon__overlayIconHoverRegular--Hll6A\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--36 vkuiIcon--w-36 vkuiIcon--h-36 vkuiIcon--play_36\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"currentColor\" style=\"width: 36px; height: 36px;\"><path d=\"M26.775 15.908c1.213.714 1.213 2.47 0 3.184l-12.99 7.65c-1.231.725-2.785-.163-2.785-1.593V9.851c0-1.43 1.554-2.318 2.786-1.593z\"></path></svg></div></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">1:47:33</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248712\" tabindex=\"0\" title=\"AMBI-209\" style=\"--vkui_internal--textclamp-lines: 2;\">AMBI-209</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">14 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 38 \u043c\u0438\u043d\u0443\u0442 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248710\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://i.mycdn.me/getVideoPreview?id=8581408688855&amp;idx=1&amp;type=39&amp;tkn=GG6LvbureLeYbT-30z5aRnIazFo&amp;fn=vid_t\" alt=\"ALDN-482\" loading=\"lazy\"><div class=\"vkitVideoCardOverlayIcon__overlayIcon--Zeu5J vkitVideoCardOverlayIcon__overlayIconSizeS--YMoxx vkitVideoCardOverlayIcon__overlayIconHoverRegular--Hll6A\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--36 vkuiIcon--w-36 vkuiIcon--h-36 vkuiIcon--play_36\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"currentColor\" style=\"width: 36px; height: 36px;\"><path d=\"M26.775 15.908c1.213.714 1.213 2.47 0 3.184l-12.99 7.65c-1.231.725-2.785-.163-2.785-1.593V9.851c0-1.43 1.554-2.318 2.786-1.593z\"></path></svg></div></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:12:44</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248710\" tabindex=\"0\" title=\"ALDN-482\" style=\"--vkui_internal--textclamp-lines: 2;\">ALDN-482</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">27 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 42 \u043c\u0438\u043d\u0443\u0442\u044b \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248709\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://i.mycdn.me/getVideoPreview?id=8269230508575&amp;idx=5&amp;type=39&amp;tkn=f95E33sNTTWXb8IOA3RHpGHgT3c&amp;fn=vid_t\" alt=\"ALDN-481\" loading=\"lazy\"><div class=\"vkitVideoCardOverlayIcon__overlayIcon--Zeu5J vkitVideoCardOverlayIcon__overlayIconSizeS--YMoxx vkitVideoCardOverlayIcon__overlayIconHoverRegular--Hll6A\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--36 vkuiIcon--w-36 vkuiIcon--h-36 vkuiIcon--play_36\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"currentColor\" style=\"width: 36px; height: 36px;\"><path d=\"M26.775 15.908c1.213.714 1.213 2.47 0 3.184l-12.99 7.65c-1.231.725-2.785-.163-2.785-1.593V9.851c0-1.43 1.554-2.318 2.786-1.593z\"></path></svg></div></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:00:11</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248709\" tabindex=\"0\" title=\"ALDN-481\" style=\"--vkui_internal--textclamp-lines: 2;\">ALDN-481</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">31 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440 \u00b7 43 \u043c\u0438\u043d\u0443\u0442\u044b \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248708\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://i.mycdn.me/getVideoPreview?id=8603389594201&amp;idx=8&amp;type=39&amp;tkn=vd75toSnUftjVbDgMFNNQd_OslU&amp;fn=vid_t\" alt=\"ALDN-480\" loading=\"lazy\"><div class=\"vkitVideoCardOverlayIcon__overlayIcon--Zeu5J vkitVideoCardOverlayIcon__overlayIconSizeS--YMoxx vkitVideoCardOverlayIcon__overlayIconHoverRegular--Hll6A\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--36 vkuiIcon--w-36 vkuiIcon--h-36 vkuiIcon--play_36\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"currentColor\" style=\"width: 36px; height: 36px;\"><path d=\"M26.775 15.908c1.213.714 1.213 2.47 0 3.184l-12.99 7.65c-1.231.725-2.785-.163-2.785-1.593V9.851c0-1.43 1.554-2.318 2.786-1.593z\"></path></svg></div></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:23:53</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248708\" tabindex=\"0\" title=\"ALDN-480\" style=\"--vkui_internal--textclamp-lines: 2;\">ALDN-480</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">36 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 50 \u043c\u0438\u043d\u0443\u0442 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248707\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://i.mycdn.me/getVideoPreview?id=8389522361051&amp;idx=1&amp;type=39&amp;tkn=EwOiKehuexUF4P8IJfH-xx6oXDA&amp;fn=vid_t\" alt=\"ALDN-479\" loading=\"lazy\"><div class=\"vkitVideoCardOverlayIcon__overlayIcon--Zeu5J vkitVideoCardOverlayIcon__overlayIconSizeS--YMoxx vkitVideoCardOverlayIcon__overlayIconHoverRegular--Hll6A\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--36 vkuiIcon--w-36 vkuiIcon--h-36 vkuiIcon--play_36\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"currentColor\" style=\"width: 36px; height: 36px;\"><path d=\"M26.775 15.908c1.213.714 1.213 2.47 0 3.184l-12.99 7.65c-1.231.725-2.785-.163-2.785-1.593V9.851c0-1.43 1.554-2.318 2.786-1.593z\"></path></svg></div></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:13:46</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248707\" tabindex=\"0\" title=\"ALDN-479\" style=\"--vkui_internal--textclamp-lines: 2;\">ALDN-479</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">31 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440 \u00b7 58 \u043c\u0438\u043d\u0443\u0442 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><div class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__imgBlurred--uTIvm vkitVideoCardPreviewImage__imgBlurredSizeS--0ck4C\" src=\"https://sun1-91.userapi.com/impg/dghle8qJuMZeTeMtmCNl-Uw8s6jJdZI2qMBqoQ/6JJBN0v4T2o.jpg?size=320x216&amp;quality=95&amp;sign=d70395e6f4d6cc3ce12bcc4c80609af4&amp;c_uniq_tag=MAW7dd1vGJli0whw8FJ0iMvf9J7o2Cwy34YsqNDL45U&amp;type=video_thumb\" alt=\"VAGU-281 | FHD (2025) | Kui Sunao\" loading=\"lazy\"></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">1:38:57</span></div><div class=\"vkitVideoCardRestrictionOverlay__restriction--fAC7b vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF vkitOverlay__root--NoxWm\" style=\"--overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--28 vkuiIcon--w-28 vkuiIcon--h-28 vkuiIcon--hide_outline_28\" width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" style=\"width: 28px; height: 28px;\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M0 0h28v28H0z\"></path><path fill=\"currentColor\" fill-rule=\"nonzero\" d=\"m7.707 4.793 5.325 5.325h.003l4.848 4.847v.003l5.824 5.825a1 1 0 0 1-1.414 1.414l-1.875-1.873A13.3 13.3 0 0 1 14 22c-5.818 0-11.5-4.356-11.5-8 0-2.127 2.185-4.77 5.193-6.393l-1.4-1.4a1 1 0 0 1 1.414-1.414M4.5 14c0 2.406 4.688 6 9.5 6 1.733 0 3.415-.41 4.934-1.15l-2.063-2.065a4 4 0 1 1-5.656-5.656L9.18 9.096C6.48 10.377 4.5 12.634 4.5 14M14 6c5.818 0 11.5 4.356 11.5 8 0 .945-.433 1.998-1.197 3.033a1 1 0 0 1-1.61-1.187c.532-.72.807-1.389.807-1.846 0-2.406-4.688-6-9.5-6a1 1 0 0 1 0-2m-1.37 6.544a2 2 0 1 0 2.827 2.827z\"></path></g></svg><span class=\"vkitVideoCardRestrictionOverlay__title--DuGrF vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" level=\"1\">\u0412\u0438\u0434\u0435\u043e \u0441 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</span></div></div><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248623\" tabindex=\"0\" title=\"VAGU-281 | FHD (2025) | Kui Sunao\" style=\"--vkui_internal--textclamp-lines: 2;\">VAGU-281 | FHD (2025) | Kui Sunao</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">869 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><div class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__imgBlurred--uTIvm vkitVideoCardPreviewImage__imgBlurredSizeS--0ck4C\" src=\"https://sun1-17.userapi.com/impg/iT3yk7NQbZTXeXWgPH3Ak7qwaj8esRF4bbafpA/Mf7jAxb9unM.jpg?size=320x215&amp;quality=95&amp;sign=d8687ae18d354f9d24d8b2ca0d7be0ca&amp;c_uniq_tag=De9af-J3iRxk9uSZKbqJkJAXNkIpTm7_dg6l0aAlNbY&amp;type=video_thumb\" alt=\"URE-124 | FHD (2025) | Mina Kitano\" loading=\"lazy\"></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:27:45</span></div><div class=\"vkitVideoCardRestrictionOverlay__restriction--fAC7b vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF vkitOverlay__root--NoxWm\" style=\"--overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--28 vkuiIcon--w-28 vkuiIcon--h-28 vkuiIcon--hide_outline_28\" width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" style=\"width: 28px; height: 28px;\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M0 0h28v28H0z\"></path><path fill=\"currentColor\" fill-rule=\"nonzero\" d=\"m7.707 4.793 5.325 5.325h.003l4.848 4.847v.003l5.824 5.825a1 1 0 0 1-1.414 1.414l-1.875-1.873A13.3 13.3 0 0 1 14 22c-5.818 0-11.5-4.356-11.5-8 0-2.127 2.185-4.77 5.193-6.393l-1.4-1.4a1 1 0 0 1 1.414-1.414M4.5 14c0 2.406 4.688 6 9.5 6 1.733 0 3.415-.41 4.934-1.15l-2.063-2.065a4 4 0 1 1-5.656-5.656L9.18 9.096C6.48 10.377 4.5 12.634 4.5 14M14 6c5.818 0 11.5 4.356 11.5 8 0 .945-.433 1.998-1.197 3.033a1 1 0 0 1-1.61-1.187c.532-.72.807-1.389.807-1.846 0-2.406-4.688-6-9.5-6a1 1 0 0 1 0-2m-1.37 6.544a2 2 0 1 0 2.827 2.827z\"></path></g></svg><span class=\"vkitVideoCardRestrictionOverlay__title--DuGrF vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" level=\"1\">\u0412\u0438\u0434\u0435\u043e \u0441 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</span></div></div><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248615\" tabindex=\"0\" title=\"URE-124 | FHD (2025) | Mina Kitano\" style=\"--vkui_internal--textclamp-lines: 2;\">URE-124 | FHD (2025) | Mina Kitano</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">886 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><div class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__imgBlurred--uTIvm vkitVideoCardPreviewImage__imgBlurredSizeS--0ck4C\" src=\"https://sun1-28.userapi.com/impg/rkusa4IfOkFeBjA4SQhoM-ZCUy436l0aSWbfOQ/_TF4a-mvXyw.jpg?size=320x215&amp;quality=95&amp;sign=db3cfa64111f549eb56e95479e3b7029&amp;c_uniq_tag=XUsYhxnRQved4I-cqneXJSSK7nqUJHK9dpTdbXmkxjE&amp;type=video_thumb\" alt=\"HSODA-072 | FHD (2025) | Mai Onodera, Mio Ichijo, Momo Ninomiya, Riri Okamoto, Sayu Nanaha\" loading=\"lazy\"></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:37:20</span></div><div class=\"vkitVideoCardRestrictionOverlay__restriction--fAC7b vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF vkitOverlay__root--NoxWm\" style=\"--overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--28 vkuiIcon--w-28 vkuiIcon--h-28 vkuiIcon--hide_outline_28\" width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" style=\"width: 28px; height: 28px;\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M0 0h28v28H0z\"></path><path fill=\"currentColor\" fill-rule=\"nonzero\" d=\"m7.707 4.793 5.325 5.325h.003l4.848 4.847v.003l5.824 5.825a1 1 0 0 1-1.414 1.414l-1.875-1.873A13.3 13.3 0 0 1 14 22c-5.818 0-11.5-4.356-11.5-8 0-2.127 2.185-4.77 5.193-6.393l-1.4-1.4a1 1 0 0 1 1.414-1.414M4.5 14c0 2.406 4.688 6 9.5 6 1.733 0 3.415-.41 4.934-1.15l-2.063-2.065a4 4 0 1 1-5.656-5.656L9.18 9.096C6.48 10.377 4.5 12.634 4.5 14M14 6c5.818 0 11.5 4.356 11.5 8 0 .945-.433 1.998-1.197 3.033a1 1 0 0 1-1.61-1.187c.532-.72.807-1.389.807-1.846 0-2.406-4.688-6-9.5-6a1 1 0 0 1 0-2m-1.37 6.544a2 2 0 1 0 2.827 2.827z\"></path></g></svg><span class=\"vkitVideoCardRestrictionOverlay__title--DuGrF vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" level=\"1\">\u0412\u0438\u0434\u0435\u043e \u0441 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</span></div></div><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248620\" tabindex=\"0\" title=\"HSODA-072 | FHD (2025) | Mai Onodera, Mio Ichijo, Momo Ninomiya, Riri Okamoto, Sayu Nanaha\" style=\"--vkui_internal--textclamp-lines: 2;\">HSODA-072 | FHD (2025) | Mai Onodera, Mio Ichijo, Momo Ninomiya, Riri Okamoto, Sayu Nanaha</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">662 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><div class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__imgBlurred--uTIvm vkitVideoCardPreviewImage__imgBlurredSizeS--0ck4C\" src=\"https://sun9-24.userapi.com/impg/oqQBa42sT1L6G0MKNXBU1ZM3ynelF1w-VNIZ6g/8eOJl4yDUz0.jpg?size=320x215&amp;quality=95&amp;sign=0de0cac1dfcf40ef6e8918d3a8bb800c&amp;c_uniq_tag=9poQKZQFyUbh4mVyCXKKeZdeBUg1ztPptXq_kzKEQKg&amp;type=video_thumb\" alt=\"IPZZ-575 | FHD (2025) | Momo Sakura\" loading=\"lazy\"></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:13:02</span></div><div class=\"vkitVideoCardRestrictionOverlay__restriction--fAC7b vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF vkitOverlay__root--NoxWm\" style=\"--overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--28 vkuiIcon--w-28 vkuiIcon--h-28 vkuiIcon--hide_outline_28\" width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" style=\"width: 28px; height: 28px;\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M0 0h28v28H0z\"></path><path fill=\"currentColor\" fill-rule=\"nonzero\" d=\"m7.707 4.793 5.325 5.325h.003l4.848 4.847v.003l5.824 5.825a1 1 0 0 1-1.414 1.414l-1.875-1.873A13.3 13.3 0 0 1 14 22c-5.818 0-11.5-4.356-11.5-8 0-2.127 2.185-4.77 5.193-6.393l-1.4-1.4a1 1 0 0 1 1.414-1.414M4.5 14c0 2.406 4.688 6 9.5 6 1.733 0 3.415-.41 4.934-1.15l-2.063-2.065a4 4 0 1 1-5.656-5.656L9.18 9.096C6.48 10.377 4.5 12.634 4.5 14M14 6c5.818 0 11.5 4.356 11.5 8 0 .945-.433 1.998-1.197 3.033a1 1 0 0 1-1.61-1.187c.532-.72.807-1.389.807-1.846 0-2.406-4.688-6-9.5-6a1 1 0 0 1 0-2m-1.37 6.544a2 2 0 1 0 2.827 2.827z\"></path></g></svg><span class=\"vkitVideoCardRestrictionOverlay__title--DuGrF vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" level=\"1\">\u0412\u0438\u0434\u0435\u043e \u0441 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</span></div></div><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248621\" tabindex=\"0\" title=\"IPZZ-575 | FHD (2025) | Momo Sakura\" style=\"--vkui_internal--textclamp-lines: 2;\">IPZZ-575 | FHD (2025) | Momo Sakura</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">473 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><div class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__imgBlurred--uTIvm vkitVideoCardPreviewImage__imgBlurredSizeS--0ck4C\" src=\"https://sun9-63.userapi.com/impg/XFhZL83BJbs3Jl5-a8WwRbCBUwHk0qOqaypVuw/R1gN0ypnzb0.jpg?size=320x216&amp;quality=95&amp;sign=d9c178bd45c3c2826efa2a5c36dbb714&amp;c_uniq_tag=AJbxX3PI1ro8OlupeNIaITAcIpLxQBMrtRW3qPah1Ic&amp;type=video_thumb\" alt=\"VEC-712 | FHD (2025) | Hono Wakana\" loading=\"lazy\"></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">1:41:16</span></div><div class=\"vkitVideoCardRestrictionOverlay__restriction--fAC7b vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF vkitOverlay__root--NoxWm\" style=\"--overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--28 vkuiIcon--w-28 vkuiIcon--h-28 vkuiIcon--hide_outline_28\" width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" style=\"width: 28px; height: 28px;\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M0 0h28v28H0z\"></path><path fill=\"currentColor\" fill-rule=\"nonzero\" d=\"m7.707 4.793 5.325 5.325h.003l4.848 4.847v.003l5.824 5.825a1 1 0 0 1-1.414 1.414l-1.875-1.873A13.3 13.3 0 0 1 14 22c-5.818 0-11.5-4.356-11.5-8 0-2.127 2.185-4.77 5.193-6.393l-1.4-1.4a1 1 0 0 1 1.414-1.414M4.5 14c0 2.406 4.688 6 9.5 6 1.733 0 3.415-.41 4.934-1.15l-2.063-2.065a4 4 0 1 1-5.656-5.656L9.18 9.096C6.48 10.377 4.5 12.634 4.5 14M14 6c5.818 0 11.5 4.356 11.5 8 0 .945-.433 1.998-1.197 3.033a1 1 0 0 1-1.61-1.187c.532-.72.807-1.389.807-1.846 0-2.406-4.688-6-9.5-6a1 1 0 0 1 0-2m-1.37 6.544a2 2 0 1 0 2.827 2.827z\"></path></g></svg><span class=\"vkitVideoCardRestrictionOverlay__title--DuGrF vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" level=\"1\">\u0412\u0438\u0434\u0435\u043e \u0441 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</span></div></div><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248618\" tabindex=\"0\" title=\"VEC-712 | FHD (2025) | Hono Wakana\" style=\"--vkui_internal--textclamp-lines: 2;\">VEC-712 | FHD (2025) | Hono Wakana</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">482 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><div class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__imgBlurred--uTIvm vkitVideoCardPreviewImage__imgBlurredSizeS--0ck4C\" src=\"https://sun9-45.userapi.com/impg/dKDmdjZAxq5_mXBHtXrlHAwBxbfoelE4VLBCZg/cQBK1jSqcPk.jpg?size=320x216&amp;quality=95&amp;sign=9eb5c7b6fd4e7d71c8e8b25b1d9d6b97&amp;c_uniq_tag=xE8pgdAfrgALj2YWYjNCSl_LCWkeypKs0rCHiXLZ47M&amp;type=video_thumb\" alt=\"VENX-327 | FHD (2025) | Iroha Wakatsuki\" loading=\"lazy\"></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">1:31:32</span></div><div class=\"vkitVideoCardRestrictionOverlay__restriction--fAC7b vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF vkitOverlay__root--NoxWm\" style=\"--overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--28 vkuiIcon--w-28 vkuiIcon--h-28 vkuiIcon--hide_outline_28\" width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" style=\"width: 28px; height: 28px;\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M0 0h28v28H0z\"></path><path fill=\"currentColor\" fill-rule=\"nonzero\" d=\"m7.707 4.793 5.325 5.325h.003l4.848 4.847v.003l5.824 5.825a1 1 0 0 1-1.414 1.414l-1.875-1.873A13.3 13.3 0 0 1 14 22c-5.818 0-11.5-4.356-11.5-8 0-2.127 2.185-4.77 5.193-6.393l-1.4-1.4a1 1 0 0 1 1.414-1.414M4.5 14c0 2.406 4.688 6 9.5 6 1.733 0 3.415-.41 4.934-1.15l-2.063-2.065a4 4 0 1 1-5.656-5.656L9.18 9.096C6.48 10.377 4.5 12.634 4.5 14M14 6c5.818 0 11.5 4.356 11.5 8 0 .945-.433 1.998-1.197 3.033a1 1 0 0 1-1.61-1.187c.532-.72.807-1.389.807-1.846 0-2.406-4.688-6-9.5-6a1 1 0 0 1 0-2m-1.37 6.544a2 2 0 1 0 2.827 2.827z\"></path></g></svg><span class=\"vkitVideoCardRestrictionOverlay__title--DuGrF vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" level=\"1\">\u0412\u0438\u0434\u0435\u043e \u0441 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</span></div></div><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248619\" tabindex=\"0\" title=\"VENX-327 | FHD (2025) | Iroha Wakatsuki\" style=\"--vkui_internal--textclamp-lines: 2;\">VENX-327 | FHD (2025) | Iroha Wakatsuki</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">298 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248622\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://sun1-87.userapi.com/impg/BtgGaqegu6Ie4cqYIcEnGKRIv7_oZgJ2MdNr3g/1NKAaZLG4Lk.jpg?size=320x214&amp;quality=95&amp;sign=cf8b265632a63e51ae8f2530b7744b92&amp;c_uniq_tag=gyJqDOJoHwubMVkRtaxtyC1ZGjFzi6rR-q5Rr9ilTyY&amp;type=video_thumb\" alt=\"SPSD-66 #2 | FHD (2025) | Himari Kosaka\" loading=\"lazy\"></div><video loop=\"\" crossorigin=\"anonymous\" aria-label=\"SPSD-66 #2 | FHD (2025) | Himari Kosaka\" class=\"vkitVideoCardTrailerPlayer__trailer--xu4qf\" src=\"https://vkvd235.okcdn.ru/?expires=1751988503957&amp;srcIp=77.37.183.180&amp;srcAg=CHROME&amp;ms=45.136.22.171&amp;type=1&amp;sig=3TI3oY6HL90&amp;ct=19&amp;urls=185.226.52.168&amp;clientType=13&amp;appId=512000384397&amp;id=8357125360316\"></video><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">35:28</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248622\" tabindex=\"0\" title=\"SPSD-66 #2 | FHD (2025) | Himari Kosaka\" style=\"--vkui_internal--textclamp-lines: 2;\">SPSD-66 #2 | FHD (2025) | Himari Kosaka</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">143 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><div class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__imgBlurred--uTIvm vkitVideoCardPreviewImage__imgBlurredSizeS--0ck4C\" src=\"https://sun1-14.userapi.com/impg/ywleNmW5Lm1rg9COQwnc1laPcDT-kC3wLr132Q/dYVDtDAslxA.jpg?size=320x215&amp;quality=95&amp;sign=391138b335e0ac1dd5f13536cad794ff&amp;c_uniq_tag=s3Z6F9JKwXGjKyg3Z4LnUVkdAHlqYAVBiaxCTG6FOpI&amp;type=video_thumb\" alt=\"SONE-812 | FHD (2025) | Rino Sakurino\" loading=\"lazy\"></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:21:51</span></div><div class=\"vkitVideoCardRestrictionOverlay__restriction--fAC7b vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF vkitOverlay__root--NoxWm\" style=\"--overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--28 vkuiIcon--w-28 vkuiIcon--h-28 vkuiIcon--hide_outline_28\" width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" style=\"width: 28px; height: 28px;\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M0 0h28v28H0z\"></path><path fill=\"currentColor\" fill-rule=\"nonzero\" d=\"m7.707 4.793 5.325 5.325h.003l4.848 4.847v.003l5.824 5.825a1 1 0 0 1-1.414 1.414l-1.875-1.873A13.3 13.3 0 0 1 14 22c-5.818 0-11.5-4.356-11.5-8 0-2.127 2.185-4.77 5.193-6.393l-1.4-1.4a1 1 0 0 1 1.414-1.414M4.5 14c0 2.406 4.688 6 9.5 6 1.733 0 3.415-.41 4.934-1.15l-2.063-2.065a4 4 0 1 1-5.656-5.656L9.18 9.096C6.48 10.377 4.5 12.634 4.5 14M14 6c5.818 0 11.5 4.356 11.5 8 0 .945-.433 1.998-1.197 3.033a1 1 0 0 1-1.61-1.187c.532-.72.807-1.389.807-1.846 0-2.406-4.688-6-9.5-6a1 1 0 0 1 0-2m-1.37 6.544a2 2 0 1 0 2.827 2.827z\"></path></g></svg><span class=\"vkitVideoCardRestrictionOverlay__title--DuGrF vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" level=\"1\">\u0412\u0438\u0434\u0435\u043e \u0441 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</span></div></div><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248598\" tabindex=\"0\" title=\"SONE-812 | FHD (2025) | Rino Sakurino\" style=\"--vkui_internal--textclamp-lines: 2;\">SONE-812 | FHD (2025) | Rino Sakurino</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">274 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248608\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://sun9-51.userapi.com/impg/MkzPWom7NDxfwL7RtLCNY9b8l-rrvqhCWps_HA/PYP2FCF_Haw.jpg?size=320x214&amp;quality=95&amp;sign=4ea25f2375dee301a99266a2bb6846e5&amp;c_uniq_tag=dbGVfM_hcB1Qeikmt-uyOny3oMWRhUzx6b_ZqLhi68s&amp;type=video_thumb\" alt=\"SPSD-63 #1 | FHD (2025) | Rei Misumi\" loading=\"lazy\"></div><video loop=\"\" crossorigin=\"anonymous\" aria-label=\"SPSD-63 #1 | FHD (2025) | Rei Misumi\" class=\"vkitVideoCardTrailerPlayer__trailer--xu4qf\" src=\"https://vkvd509.okcdn.ru/?expires=1751988511937&amp;srcIp=77.37.183.180&amp;srcAg=CHROME&amp;ms=185.226.55.147&amp;type=1&amp;sig=P05V56f4Wkw&amp;ct=19&amp;urls=45.136.22.139&amp;clientType=13&amp;appId=512000384397&amp;id=8456950713082\"></video><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">49:29</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248608\" tabindex=\"0\" title=\"SPSD-63 #1 | FHD (2025) | Rei Misumi\" style=\"--vkui_internal--textclamp-lines: 2;\">SPSD-63 #1 | FHD (2025) | Rei Misumi</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">107 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248608\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://sun9-51.userapi.com/impg/MkzPWom7NDxfwL7RtLCNY9b8l-rrvqhCWps_HA/PYP2FCF_Haw.jpg?size=320x214&amp;quality=95&amp;sign=4ea25f2375dee301a99266a2bb6846e5&amp;c_uniq_tag=dbGVfM_hcB1Qeikmt-uyOny3oMWRhUzx6b_ZqLhi68s&amp;type=video_thumb\" alt=\"SPSD-63 #1 | FHD (2025) | Rei Misumi\" loading=\"lazy\"></div><video loop=\"\" crossorigin=\"anonymous\" aria-label=\"SPSD-63 #1 | FHD (2025) | Rei Misumi\" class=\"vkitVideoCardTrailerPlayer__trailer--xu4qf\" src=\"https://vkvd509.okcdn.ru/?expires=1751988511937&amp;srcIp=77.37.183.180&amp;srcAg=CHROME&amp;ms=185.226.55.147&amp;type=1&amp;sig=P05V56f4Wkw&amp;ct=19&amp;urls=45.136.22.139&amp;clientType=13&amp;appId=512000384397&amp;id=8456950713082\"></video><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">49:29</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248608\" tabindex=\"0\" title=\"SPSD-63 #1 | FHD (2025) | Rei Misumi\" style=\"--vkui_internal--textclamp-lines: 2;\">SPSD-63 #1 | FHD (2025) | Rei Misumi</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">107 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248609\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://sun9-51.userapi.com/impg/MkzPWom7NDxfwL7RtLCNY9b8l-rrvqhCWps_HA/fkdWgSO1Gfw.jpg?size=320x214&amp;quality=95&amp;sign=04f10d59f4e432fda50c96e6d5c27a24&amp;c_uniq_tag=CF_Q4lRddKe0y2rlOpiVF9SEt9w_Y8tDnawHkuW9c-g&amp;type=video_thumb\" alt=\"SPSD-63 #2 | FHD (2025) | Rei Misumi\" loading=\"lazy\"></div><video loop=\"\" crossorigin=\"anonymous\" aria-label=\"SPSD-63 #2 | FHD (2025) | Rei Misumi\" class=\"vkitVideoCardTrailerPlayer__trailer--xu4qf\" src=\"https://vkvd163.okcdn.ru/?sig=OLNRObeIpI0&amp;ct=19&amp;srcIp=77.37.183.180&amp;urls=185.226.53.216&amp;expires=1752188511943&amp;clientType=13&amp;srcAg=CHROME&amp;fromCache=1&amp;ms=45.136.21.138&amp;appId=512000384397&amp;id=8161169967807&amp;type=1\"></video><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">1:00:01</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248609\" tabindex=\"0\" title=\"SPSD-63 #2 | FHD (2025) | Rei Misumi\" style=\"--vkui_internal--textclamp-lines: 2;\">SPSD-63 #2 | FHD (2025) | Rei Misumi</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">105 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248611\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://sun9-31.userapi.com/impg/BtgGaqegu6Ie4cqYIcEnGKRIv7_oZgJ2MdNr3g/p_8Uj2Hi1EQ.jpg?size=320x214&amp;quality=95&amp;sign=f87c2b32d1df6cfe5d2f894d5c877331&amp;c_uniq_tag=XPAbvPpWW1JV3nImrR1eAgPbnK3T9N3nnqKE3fiXH_A&amp;type=video_thumb\" alt=\"SPSD-66 #1 | FHD (2025) | Himari Kosaka\" loading=\"lazy\"></div><video loop=\"\" crossorigin=\"anonymous\" aria-label=\"SPSD-66 #1 | FHD (2025) | Himari Kosaka\" class=\"vkitVideoCardTrailerPlayer__trailer--xu4qf\" src=\"https://vkvd505.okcdn.ru/?expires=1751988511940&amp;srcIp=77.37.183.180&amp;srcAg=CHROME&amp;ms=185.226.55.143&amp;type=1&amp;sig=0ktd1FRBaoE&amp;ct=19&amp;urls=45.136.21.137&amp;clientType=13&amp;appId=512000384397&amp;id=8604669774380\"></video><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">1:02:01</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248611\" tabindex=\"0\" title=\"SPSD-66 #1 | FHD (2025) | Himari Kosaka\" style=\"--vkui_internal--textclamp-lines: 2;\">SPSD-66 #1 | FHD (2025) | Himari Kosaka</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">73 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><div class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__imgBlurred--uTIvm vkitVideoCardPreviewImage__imgBlurredSizeS--0ck4C\" src=\"https://sun1-27.userapi.com/impg/pIOk9DH8c2tNG0RddFXSf4hDjSZwHJ5-tIxpUw/Cwvdv5xsxbU.jpg?size=320x215&amp;quality=95&amp;sign=c846e70c40465bef65e59a7331d569c8&amp;c_uniq_tag=Vqty5P8LXJmHuMiBC6Z_Mjp1OqRppndN3m3hPk2ntYI&amp;type=video_thumb\" alt=\"SONE-807 | FHD (2025) | Mayu Shino\" loading=\"lazy\"></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:27:29</span></div><div class=\"vkitVideoCardRestrictionOverlay__restriction--fAC7b vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF vkitOverlay__root--NoxWm\" style=\"--overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--28 vkuiIcon--w-28 vkuiIcon--h-28 vkuiIcon--hide_outline_28\" width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" style=\"width: 28px; height: 28px;\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M0 0h28v28H0z\"></path><path fill=\"currentColor\" fill-rule=\"nonzero\" d=\"m7.707 4.793 5.325 5.325h.003l4.848 4.847v.003l5.824 5.825a1 1 0 0 1-1.414 1.414l-1.875-1.873A13.3 13.3 0 0 1 14 22c-5.818 0-11.5-4.356-11.5-8 0-2.127 2.185-4.77 5.193-6.393l-1.4-1.4a1 1 0 0 1 1.414-1.414M4.5 14c0 2.406 4.688 6 9.5 6 1.733 0 3.415-.41 4.934-1.15l-2.063-2.065a4 4 0 1 1-5.656-5.656L9.18 9.096C6.48 10.377 4.5 12.634 4.5 14M14 6c5.818 0 11.5 4.356 11.5 8 0 .945-.433 1.998-1.197 3.033a1 1 0 0 1-1.61-1.187c.532-.72.807-1.389.807-1.846 0-2.406-4.688-6-9.5-6a1 1 0 0 1 0-2m-1.37 6.544a2 2 0 1 0 2.827 2.827z\"></path></g></svg><span class=\"vkitVideoCardRestrictionOverlay__title--DuGrF vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" level=\"1\">\u0412\u0438\u0434\u0435\u043e \u0441 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</span></div></div><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248596\" tabindex=\"0\" title=\"SONE-807 | FHD (2025) | Mayu Shino\" style=\"--vkui_internal--textclamp-lines: 2;\">SONE-807 | FHD (2025) | Mayu Shino</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">557 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248614\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://sun9-31.userapi.com/impg/BtgGaqegu6Ie4cqYIcEnGKRIv7_oZgJ2MdNr3g/Dy-wXS5HP3E.jpg?size=320x214&amp;quality=95&amp;sign=b8fc035e84b035f29d2b4719bec672ec&amp;c_uniq_tag=kvkGpNrtTymCJa-b3wbRAtlH5xUrLSEwbEqaTf-FLkE&amp;type=video_thumb\" alt=\"SPSD-66 #3 | FHD (2025) | Himari Kosaka\" loading=\"lazy\"></div><video loop=\"\" crossorigin=\"anonymous\" aria-label=\"SPSD-66 #3 | FHD (2025) | Himari Kosaka\" class=\"vkitVideoCardTrailerPlayer__trailer--xu4qf\" src=\"https://vkvd234.okcdn.ru/?expires=1751988511942&amp;srcIp=77.37.183.180&amp;srcAg=CHROME&amp;ms=45.136.22.170&amp;type=1&amp;sig=7vi3wQ1Hw9c&amp;ct=19&amp;urls=45.136.20.196&amp;clientType=13&amp;appId=512000384397&amp;id=8515939469836\"></video><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">9:14</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248614\" tabindex=\"0\" title=\"SPSD-66 #3 | FHD (2025) | Himari Kosaka\" style=\"--vkui_internal--textclamp-lines: 2;\">SPSD-66 #3 | FHD (2025) | Himari Kosaka</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">55 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248605\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://sun9-27.userapi.com/impg/d12FhaX3hg1qnsCDFuDj_M6jPHOVzqXV2cb2NQ/JPXY13rAojA.jpg?size=320x214&amp;quality=95&amp;sign=6ea3947152fb87faeffdd84c7740fbe0&amp;c_uniq_tag=ySIaSZLm2-SCB6yRR2vu8A1SJXVnV1enPPMY4RqCqnQ&amp;type=video_thumb\" alt=\"SPSD-62 #1 | FHD (2025) | Mei Uesaka\" loading=\"lazy\"></div><video loop=\"\" crossorigin=\"anonymous\" aria-label=\"SPSD-62 #1 | FHD (2025) | Mei Uesaka\" class=\"vkitVideoCardTrailerPlayer__trailer--xu4qf\" src=\"https://vkvd466.okcdn.ru/?expires=1751988511941&amp;srcIp=77.37.183.180&amp;srcAg=CHROME&amp;ms=185.226.52.208&amp;type=1&amp;sig=kpI69iof3xg&amp;ct=19&amp;urls=45.136.22.162&amp;clientType=13&amp;appId=512000384397&amp;id=8561445833432\"></video><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">53:56</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248605\" tabindex=\"0\" title=\"SPSD-62 #1 | FHD (2025) | Mei Uesaka\" style=\"--vkui_internal--textclamp-lines: 2;\">SPSD-62 #1 | FHD (2025) | Mei Uesaka</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">60 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248606\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://sun9-27.userapi.com/impg/d12FhaX3hg1qnsCDFuDj_M6jPHOVzqXV2cb2NQ/NQes5BatKMM.jpg?size=320x214&amp;quality=95&amp;sign=4fa8344e2d682343da65bb18b8b500bf&amp;c_uniq_tag=8OyQ1pk2qo0JbW9yL19S5Wx96anl2rleKSjvAhG3DIs&amp;type=video_thumb\" alt=\"SPSD-62 #2 | FHD (2025) | Mei Uesaka\" loading=\"lazy\"></div><video loop=\"\" crossorigin=\"anonymous\" aria-label=\"SPSD-62 #2 | FHD (2025) | Mei Uesaka\" class=\"vkitVideoCardTrailerPlayer__trailer--xu4qf\" src=\"https://vkvd558.okcdn.ru/?expires=1751988511937&amp;srcIp=77.37.183.180&amp;srcAg=CHROME&amp;ms=185.226.55.196&amp;type=1&amp;sig=1hubFhLh1TI&amp;ct=19&amp;urls=185.226.53.136&amp;clientType=13&amp;appId=512000384397&amp;id=8592643066613\"></video><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">42:06</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248606\" tabindex=\"0\" title=\"SPSD-62 #2 | FHD (2025) | Mei Uesaka\" style=\"--vkui_internal--textclamp-lines: 2;\">SPSD-62 #2 | FHD (2025) | Mei Uesaka</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">62 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><div class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__imgBlurred--uTIvm vkitVideoCardPreviewImage__imgBlurredSizeS--0ck4C\" src=\"https://sun1-94.userapi.com/impg/d9ri02ST-tyZ6jxpl4CkXDadJlRAPZqFLVSh9A/4Fdo8O1s1Zk.jpg?size=320x214&amp;quality=95&amp;sign=b1c760a7e0affb9d2252138f6de02b58&amp;c_uniq_tag=XfHmyShtj1cMDZCqNS0LW8bKzFmS6zu8u2aYWU50RsI&amp;type=video_thumb\" alt=\"SPSD-60 #1 | FHD (2025) | Akari Minase\" loading=\"lazy\"></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">59:10</span></div><div class=\"vkitVideoCardRestrictionOverlay__restriction--fAC7b vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF vkitOverlay__root--NoxWm\" style=\"--overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--28 vkuiIcon--w-28 vkuiIcon--h-28 vkuiIcon--hide_outline_28\" width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" style=\"width: 28px; height: 28px;\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M0 0h28v28H0z\"></path><path fill=\"currentColor\" fill-rule=\"nonzero\" d=\"m7.707 4.793 5.325 5.325h.003l4.848 4.847v.003l5.824 5.825a1 1 0 0 1-1.414 1.414l-1.875-1.873A13.3 13.3 0 0 1 14 22c-5.818 0-11.5-4.356-11.5-8 0-2.127 2.185-4.77 5.193-6.393l-1.4-1.4a1 1 0 0 1 1.414-1.414M4.5 14c0 2.406 4.688 6 9.5 6 1.733 0 3.415-.41 4.934-1.15l-2.063-2.065a4 4 0 1 1-5.656-5.656L9.18 9.096C6.48 10.377 4.5 12.634 4.5 14M14 6c5.818 0 11.5 4.356 11.5 8 0 .945-.433 1.998-1.197 3.033a1 1 0 0 1-1.61-1.187c.532-.72.807-1.389.807-1.846 0-2.406-4.688-6-9.5-6a1 1 0 0 1 0-2m-1.37 6.544a2 2 0 1 0 2.827 2.827z\"></path></g></svg><span class=\"vkitVideoCardRestrictionOverlay__title--DuGrF vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" level=\"1\">\u0412\u0438\u0434\u0435\u043e \u0441 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</span></div></div><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248602\" tabindex=\"0\" title=\"SPSD-60 #1 | FHD (2025) | Akari Minase\" style=\"--vkui_internal--textclamp-lines: 2;\">SPSD-60 #1 | FHD (2025) | Akari Minase</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">92 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248603\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://sun1-94.userapi.com/impg/d9ri02ST-tyZ6jxpl4CkXDadJlRAPZqFLVSh9A/E41O5KcGoMI.jpg?size=320x214&amp;quality=95&amp;sign=77e7617903c4b635adace930d3805e8c&amp;c_uniq_tag=AEaJVhwitfmNgIZsgdq5AlV0Bl_N4qB7IlqMpL7bgfo&amp;type=video_thumb\" alt=\"SPSD-60 #2 | FHD (2025) | Akari Minase\" loading=\"lazy\"></div><video loop=\"\" crossorigin=\"anonymous\" aria-label=\"SPSD-60 #2 | FHD (2025) | Akari Minase\" class=\"vkitVideoCardTrailerPlayer__trailer--xu4qf\" src=\"https://vkvd480.okcdn.ru/?expires=1751988511938&amp;srcIp=77.37.183.180&amp;srcAg=CHROME&amp;ms=45.136.22.165&amp;type=1&amp;sig=gr0IotwCMwg&amp;ct=19&amp;urls=185.226.52.167&amp;clientType=13&amp;appId=512000384397&amp;id=8753925524144\"></video><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">44:29</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248603\" tabindex=\"0\" title=\"SPSD-60 #2 | FHD (2025) | Akari Minase\" style=\"--vkui_internal--textclamp-lines: 2;\">SPSD-60 #2 | FHD (2025) | Akari Minase</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">65 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248610\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://sun9-51.userapi.com/impg/MkzPWom7NDxfwL7RtLCNY9b8l-rrvqhCWps_HA/bJFnP2c34Cg.jpg?size=320x214&amp;quality=95&amp;sign=c1f15c000db0bf115fb5e995efe45d5b&amp;c_uniq_tag=dhNEw6NtHVSpxmpOjctI5grM6Eb4_MJz05_61yHV_ZE&amp;type=video_thumb\" alt=\"SPSD-63 #3 | FHD (2025) | Rei Misumi\" loading=\"lazy\"></div><video loop=\"\" crossorigin=\"anonymous\" aria-label=\"SPSD-63 #3 | FHD (2025) | Rei Misumi\" class=\"vkitVideoCardTrailerPlayer__trailer--xu4qf\" src=\"https://vkvd292.okcdn.ru/?expires=1751988511951&amp;srcIp=77.37.183.180&amp;srcAg=CHROME&amp;ms=185.226.52.170&amp;type=1&amp;sig=CTtOy_u2UwA&amp;ct=19&amp;urls=185.226.55.143&amp;clientType=13&amp;appId=512000384397&amp;id=8788392872527\"></video><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">9:24</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248610\" tabindex=\"0\" title=\"SPSD-63 #3 | FHD (2025) | Rei Misumi\" style=\"--vkui_internal--textclamp-lines: 2;\">SPSD-63 #3 | FHD (2025) | Rei Misumi</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">189 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><div class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__imgBlurred--uTIvm vkitVideoCardPreviewImage__imgBlurredSizeS--0ck4C\" src=\"https://sun1-26.userapi.com/impg/IKDsG-TWioqmIDFga_kcarDmLNwUmJWZhCS0YA/wvStzB2gJFU.jpg?size=320x215&amp;quality=95&amp;sign=18636dfddc4c8139382cf1371ce9d468&amp;c_uniq_tag=ehsiBU7tR1T1tXxVBvs4Qk44Nwcp2-scP_XFePUU8Hc&amp;type=video_thumb\" alt=\"SONE-808 | FHD (2025) | Karen Ishida\" loading=\"lazy\"></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">1:59:05</span></div><div class=\"vkitVideoCardRestrictionOverlay__restriction--fAC7b vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF vkitOverlay__root--NoxWm\" style=\"--overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--28 vkuiIcon--w-28 vkuiIcon--h-28 vkuiIcon--hide_outline_28\" width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" style=\"width: 28px; height: 28px;\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M0 0h28v28H0z\"></path><path fill=\"currentColor\" fill-rule=\"nonzero\" d=\"m7.707 4.793 5.325 5.325h.003l4.848 4.847v.003l5.824 5.825a1 1 0 0 1-1.414 1.414l-1.875-1.873A13.3 13.3 0 0 1 14 22c-5.818 0-11.5-4.356-11.5-8 0-2.127 2.185-4.77 5.193-6.393l-1.4-1.4a1 1 0 0 1 1.414-1.414M4.5 14c0 2.406 4.688 6 9.5 6 1.733 0 3.415-.41 4.934-1.15l-2.063-2.065a4 4 0 1 1-5.656-5.656L9.18 9.096C6.48 10.377 4.5 12.634 4.5 14M14 6c5.818 0 11.5 4.356 11.5 8 0 .945-.433 1.998-1.197 3.033a1 1 0 0 1-1.61-1.187c.532-.72.807-1.389.807-1.846 0-2.406-4.688-6-9.5-6a1 1 0 0 1 0-2m-1.37 6.544a2 2 0 1 0 2.827 2.827z\"></path></g></svg><span class=\"vkitVideoCardRestrictionOverlay__title--DuGrF vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" level=\"1\">\u0412\u0438\u0434\u0435\u043e \u0441 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</span></div></div><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248597\" tabindex=\"0\" title=\"SONE-808 | FHD (2025) | Karen Ishida\" style=\"--vkui_internal--textclamp-lines: 2;\">SONE-808 | FHD (2025) | Karen Ishida</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">307 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><div class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__imgBlurred--uTIvm vkitVideoCardPreviewImage__imgBlurredSizeS--0ck4C\" src=\"https://sun9-27.userapi.com/impg/huBu5Z5oDcf8I62Q43n4mLpaPpTk9RjoPydE2w/4jgGjYZKnWM.jpg?size=320x215&amp;quality=95&amp;sign=37e213976d5f6f22360d058c60b2350c&amp;c_uniq_tag=4zgDQ9AGtRH0226jKiVP7CZOQeL988dAQ-ip-oo-Ppg&amp;type=video_thumb\" alt=\"SONE-803 | FHD (2025) | Ren Gojo\" loading=\"lazy\"></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:36:23</span></div><div class=\"vkitVideoCardRestrictionOverlay__restriction--fAC7b vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF vkitOverlay__root--NoxWm\" style=\"--overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--28 vkuiIcon--w-28 vkuiIcon--h-28 vkuiIcon--hide_outline_28\" width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" style=\"width: 28px; height: 28px;\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M0 0h28v28H0z\"></path><path fill=\"currentColor\" fill-rule=\"nonzero\" d=\"m7.707 4.793 5.325 5.325h.003l4.848 4.847v.003l5.824 5.825a1 1 0 0 1-1.414 1.414l-1.875-1.873A13.3 13.3 0 0 1 14 22c-5.818 0-11.5-4.356-11.5-8 0-2.127 2.185-4.77 5.193-6.393l-1.4-1.4a1 1 0 0 1 1.414-1.414M4.5 14c0 2.406 4.688 6 9.5 6 1.733 0 3.415-.41 4.934-1.15l-2.063-2.065a4 4 0 1 1-5.656-5.656L9.18 9.096C6.48 10.377 4.5 12.634 4.5 14M14 6c5.818 0 11.5 4.356 11.5 8 0 .945-.433 1.998-1.197 3.033a1 1 0 0 1-1.61-1.187c.532-.72.807-1.389.807-1.846 0-2.406-4.688-6-9.5-6a1 1 0 0 1 0-2m-1.37 6.544a2 2 0 1 0 2.827 2.827z\"></path></g></svg><span class=\"vkitVideoCardRestrictionOverlay__title--DuGrF vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" level=\"1\">\u0412\u0438\u0434\u0435\u043e \u0441 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</span></div></div><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248593\" tabindex=\"0\" title=\"SONE-803 | FHD (2025) | Ren Gojo\" style=\"--vkui_internal--textclamp-lines: 2;\">SONE-803 | FHD (2025) | Ren Gojo</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">511 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248607\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://sun9-27.userapi.com/impg/d12FhaX3hg1qnsCDFuDj_M6jPHOVzqXV2cb2NQ/OmmwEbQUZdU.jpg?size=320x214&amp;quality=95&amp;sign=7c4e16c80b6e8087c3ea91117113b3d1&amp;c_uniq_tag=-iZzNF5wYY2c4ev51Q5vzMvI7gSnOUJx9xdxphLbz2U&amp;type=video_thumb\" alt=\"SPSD-62 #3 | FHD (2025) | Mei Uesaka\" loading=\"lazy\"></div><video loop=\"\" crossorigin=\"anonymous\" aria-label=\"SPSD-62 #3 | FHD (2025) | Mei Uesaka\" class=\"vkitVideoCardTrailerPlayer__trailer--xu4qf\" src=\"https://vkvd534.okcdn.ru/?expires=1751988511941&amp;srcIp=77.37.183.180&amp;srcAg=CHROME&amp;ms=185.226.55.172&amp;type=1&amp;sig=wezGGrAlPR0&amp;ct=19&amp;urls=45.136.20.179&amp;clientType=13&amp;appId=512000384397&amp;id=8312150559292\"></video><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">9:40</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248607\" tabindex=\"0\" title=\"SPSD-62 #3 | FHD (2025) | Mei Uesaka\" style=\"--vkui_internal--textclamp-lines: 2;\">SPSD-62 #3 | FHD (2025) | Mei Uesaka</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">43 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248604\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://sun1-94.userapi.com/impg/d9ri02ST-tyZ6jxpl4CkXDadJlRAPZqFLVSh9A/qrclEPpm1aA.jpg?size=320x214&amp;quality=95&amp;sign=0aef5f6e5bbd1fcbe0cf1a4c4918ac52&amp;c_uniq_tag=zUQzFci-rYyEuSrKxXAz-tCIvgeWUYPFTsiZjRn0Seo&amp;type=video_thumb\" alt=\"SPSD-60 #3 | FHD (2025) | Akari Minase\" loading=\"lazy\"><div class=\"vkitVideoCardOverlayIcon__overlayIcon--Zeu5J vkitVideoCardOverlayIcon__overlayIconSizeS--YMoxx vkitVideoCardOverlayIcon__overlayIconHoverRegular--Hll6A\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--36 vkuiIcon--w-36 vkuiIcon--h-36 vkuiIcon--play_36\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"currentColor\" style=\"width: 36px; height: 36px;\"><path d=\"M26.775 15.908c1.213.714 1.213 2.47 0 3.184l-12.99 7.65c-1.231.725-2.785-.163-2.785-1.593V9.851c0-1.43 1.554-2.318 2.786-1.593z\"></path></svg></div></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">10:01</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248604\" tabindex=\"0\" title=\"SPSD-60 #3 | FHD (2025) | Akari Minase\" style=\"--vkui_internal--textclamp-lines: 2;\">SPSD-60 #3 | FHD (2025) | Akari Minase</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">30 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><div class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__imgBlurred--uTIvm vkitVideoCardPreviewImage__imgBlurredSizeS--0ck4C\" src=\"https://sun1-24.userapi.com/impg/rLN_1PxwserGnQqy9RhJEhpPFzVExW0-aa_H4w/P7Iuc5SHpFE.jpg?size=320x215&amp;quality=95&amp;sign=caa9212ed80c74748ddeb4683d2179ce&amp;c_uniq_tag=yVUSJ0k4PUv1t_wEFeuZhsS3uQscTqEPlpV9SCOlwSk&amp;type=video_thumb\" alt=\"SONE-804 | FHD (2025) | Nico Kawagoe\" loading=\"lazy\"></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:00:17</span></div><div class=\"vkitVideoCardRestrictionOverlay__restriction--fAC7b vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF vkitOverlay__root--NoxWm\" style=\"--overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--28 vkuiIcon--w-28 vkuiIcon--h-28 vkuiIcon--hide_outline_28\" width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" style=\"width: 28px; height: 28px;\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M0 0h28v28H0z\"></path><path fill=\"currentColor\" fill-rule=\"nonzero\" d=\"m7.707 4.793 5.325 5.325h.003l4.848 4.847v.003l5.824 5.825a1 1 0 0 1-1.414 1.414l-1.875-1.873A13.3 13.3 0 0 1 14 22c-5.818 0-11.5-4.356-11.5-8 0-2.127 2.185-4.77 5.193-6.393l-1.4-1.4a1 1 0 0 1 1.414-1.414M4.5 14c0 2.406 4.688 6 9.5 6 1.733 0 3.415-.41 4.934-1.15l-2.063-2.065a4 4 0 1 1-5.656-5.656L9.18 9.096C6.48 10.377 4.5 12.634 4.5 14M14 6c5.818 0 11.5 4.356 11.5 8 0 .945-.433 1.998-1.197 3.033a1 1 0 0 1-1.61-1.187c.532-.72.807-1.389.807-1.846 0-2.406-4.688-6-9.5-6a1 1 0 0 1 0-2m-1.37 6.544a2 2 0 1 0 2.827 2.827z\"></path></g></svg><span class=\"vkitVideoCardRestrictionOverlay__title--DuGrF vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" level=\"1\">\u0412\u0438\u0434\u0435\u043e \u0441 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</span></div></div><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248594\" tabindex=\"0\" title=\"SONE-804 | FHD (2025) | Nico Kawagoe\" style=\"--vkui_internal--textclamp-lines: 2;\">SONE-804 | FHD (2025) | Nico Kawagoe</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">513 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248600\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://sun9-40.userapi.com/impg/8rGBmL-8IQAII3PH28kYcCpq2WmW0eqVxTHeZw/r93cmo6-VeA.jpg?size=320x214&amp;quality=95&amp;sign=474680a5c90cee522503640a938c86c5&amp;c_uniq_tag=-sGQoZ710UEdh_KoRJudOs0-vhbgzNgV_YW0l0-C9fI&amp;type=video_thumb\" alt=\"SPSD-19 #2\" loading=\"lazy\"></div><video loop=\"\" crossorigin=\"anonymous\" aria-label=\"SPSD-19 #2\" class=\"vkitVideoCardTrailerPlayer__trailer--xu4qf\" src=\"https://vkvd556.okcdn.ru/?expires=1751988511941&amp;srcIp=77.37.183.180&amp;srcAg=CHROME&amp;ms=185.226.55.194&amp;type=1&amp;sig=s4hQmjPyBiQ&amp;ct=19&amp;urls=185.226.53.169&amp;clientType=13&amp;appId=512000384397&amp;id=8660246333973\"></video><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">48:12</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248600\" tabindex=\"0\" title=\"SPSD-19 #2\" style=\"--vkui_internal--textclamp-lines: 2;\">SPSD-19 #2</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">131 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><div class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__imgBlurred--uTIvm vkitVideoCardPreviewImage__imgBlurredSizeS--0ck4C\" src=\"https://sun9-83.userapi.com/impg/v-VreJauFuulMBB2TnRbg2an7rtKXQExMGEpQA/xPjZx_HcU_o.jpg?size=320x215&amp;quality=95&amp;sign=b930e78bcdad4753d982858af438dee1&amp;c_uniq_tag=a0DBC9BSlldKUUE4-T9LPe2aIgVbpyLrKgz-ZkN1ibs&amp;type=video_thumb\" alt=\"SONE-800 | FHD (2025) | Rei Kuroshima\" loading=\"lazy\"></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:23:25</span></div><div class=\"vkitVideoCardRestrictionOverlay__restriction--fAC7b vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF vkitOverlay__root--NoxWm\" style=\"--overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--28 vkuiIcon--w-28 vkuiIcon--h-28 vkuiIcon--hide_outline_28\" width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" style=\"width: 28px; height: 28px;\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M0 0h28v28H0z\"></path><path fill=\"currentColor\" fill-rule=\"nonzero\" d=\"m7.707 4.793 5.325 5.325h.003l4.848 4.847v.003l5.824 5.825a1 1 0 0 1-1.414 1.414l-1.875-1.873A13.3 13.3 0 0 1 14 22c-5.818 0-11.5-4.356-11.5-8 0-2.127 2.185-4.77 5.193-6.393l-1.4-1.4a1 1 0 0 1 1.414-1.414M4.5 14c0 2.406 4.688 6 9.5 6 1.733 0 3.415-.41 4.934-1.15l-2.063-2.065a4 4 0 1 1-5.656-5.656L9.18 9.096C6.48 10.377 4.5 12.634 4.5 14M14 6c5.818 0 11.5 4.356 11.5 8 0 .945-.433 1.998-1.197 3.033a1 1 0 0 1-1.61-1.187c.532-.72.807-1.389.807-1.846 0-2.406-4.688-6-9.5-6a1 1 0 0 1 0-2m-1.37 6.544a2 2 0 1 0 2.827 2.827z\"></path></g></svg><span class=\"vkitVideoCardRestrictionOverlay__title--DuGrF vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" level=\"1\">\u0412\u0438\u0434\u0435\u043e \u0441 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</span></div></div><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248591\" tabindex=\"0\" title=\"SONE-800 | FHD (2025) | Rei Kuroshima\" style=\"--vkui_internal--textclamp-lines: 2;\">SONE-800 | FHD (2025) | Rei Kuroshima</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">339 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248599\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://sun9-40.userapi.com/impg/8rGBmL-8IQAII3PH28kYcCpq2WmW0eqVxTHeZw/KOzsbzb61Xo.jpg?size=320x214&amp;quality=95&amp;sign=06bc480eb4810137b78dcf1194894280&amp;c_uniq_tag=WXKkq8v9vMW50p7SRaQC-kzwB68O2xXDDVZoGN6xmhI&amp;type=video_thumb\" alt=\"SPSD-19 #1\" loading=\"lazy\"></div><video loop=\"\" crossorigin=\"anonymous\" aria-label=\"SPSD-19 #1\" class=\"vkitVideoCardTrailerPlayer__trailer--xu4qf\" src=\"https://vkvd176.okcdn.ru/?expires=1751988511942&amp;srcIp=77.37.183.180&amp;srcAg=CHROME&amp;ms=45.136.21.151&amp;type=1&amp;sig=4b5w0LKbgdU&amp;ct=19&amp;urls=45.136.20.169&amp;clientType=13&amp;appId=512000384397&amp;id=8585429125688\"></video><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">52:40</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248599\" tabindex=\"0\" title=\"SPSD-19 #1\" style=\"--vkui_internal--textclamp-lines: 2;\">SPSD-19 #1</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">85 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><div class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__imgBlurred--uTIvm vkitVideoCardPreviewImage__imgBlurredSizeS--0ck4C\" src=\"https://sun1-91.userapi.com/impg/1fPZ1Z5E_4esH5L1St20Nioe3xBaDHt-WDB9ag/YNGWAD7uS-o.jpg?size=320x215&amp;quality=95&amp;sign=74f9547e9d8435ddb33d778f5d0c1064&amp;c_uniq_tag=MH84yKioALf9T8QWXzkje3gA4k731gc2i3_qVKk_cdU&amp;type=video_thumb\" alt=\"SONE-805 | FHD (2025) | Arisu Yusa\" loading=\"lazy\"></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:03:14</span></div><div class=\"vkitVideoCardRestrictionOverlay__restriction--fAC7b vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF vkitOverlay__root--NoxWm\" style=\"--overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--28 vkuiIcon--w-28 vkuiIcon--h-28 vkuiIcon--hide_outline_28\" width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" style=\"width: 28px; height: 28px;\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M0 0h28v28H0z\"></path><path fill=\"currentColor\" fill-rule=\"nonzero\" d=\"m7.707 4.793 5.325 5.325h.003l4.848 4.847v.003l5.824 5.825a1 1 0 0 1-1.414 1.414l-1.875-1.873A13.3 13.3 0 0 1 14 22c-5.818 0-11.5-4.356-11.5-8 0-2.127 2.185-4.77 5.193-6.393l-1.4-1.4a1 1 0 0 1 1.414-1.414M4.5 14c0 2.406 4.688 6 9.5 6 1.733 0 3.415-.41 4.934-1.15l-2.063-2.065a4 4 0 1 1-5.656-5.656L9.18 9.096C6.48 10.377 4.5 12.634 4.5 14M14 6c5.818 0 11.5 4.356 11.5 8 0 .945-.433 1.998-1.197 3.033a1 1 0 0 1-1.61-1.187c.532-.72.807-1.389.807-1.846 0-2.406-4.688-6-9.5-6a1 1 0 0 1 0-2m-1.37 6.544a2 2 0 1 0 2.827 2.827z\"></path></g></svg><span class=\"vkitVideoCardRestrictionOverlay__title--DuGrF vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" level=\"1\">\u0412\u0438\u0434\u0435\u043e \u0441 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</span></div></div><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248595\" tabindex=\"0\" title=\"SONE-805 | FHD (2025) | Arisu Yusa\" style=\"--vkui_internal--textclamp-lines: 2;\">SONE-805 | FHD (2025) | Arisu Yusa</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">182 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><a class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"/video-228819579_456248601\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl\" src=\"https://sun9-40.userapi.com/impg/8rGBmL-8IQAII3PH28kYcCpq2WmW0eqVxTHeZw/_rnlFFFbLbQ.jpg?size=320x214&amp;quality=95&amp;sign=98b2318606deb2aa7720ef44d4a35745&amp;c_uniq_tag=30GYQW45gZTyiCQ9igMlrosux5EV5c5ft48U4UHf_6I&amp;type=video_thumb\" alt=\"SPSD-19 #3\" loading=\"lazy\"></div><video loop=\"\" crossorigin=\"anonymous\" aria-label=\"SPSD-19 #3\" class=\"vkitVideoCardTrailerPlayer__trailer--xu4qf\" src=\"https://vkvd469.okcdn.ru/?expires=1751988511937&amp;srcIp=77.37.183.180&amp;srcAg=CHROME&amp;ms=185.226.52.211&amp;type=1&amp;sig=T3u_RjD-pMs&amp;ct=19&amp;urls=45.136.21.152&amp;clientType=13&amp;appId=512000384397&amp;id=8748068768431\"></video><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">9:07</span></div><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></a><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248601\" tabindex=\"0\" title=\"SPSD-19 #3\" style=\"--vkui_internal--textclamp-lines: 2;\">SPSD-19 #3</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">88 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><div class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__imgBlurred--uTIvm vkitVideoCardPreviewImage__imgBlurredSizeS--0ck4C\" src=\"https://sun1-15.userapi.com/impg/VI7WRDZzrcTfwdF2rZPsFx7IQ8h3-i7qEZ2GZg/tHhnEoJ060k.jpg?size=320x215&amp;quality=95&amp;sign=2f8e5c9ee5e7629357b7efde05402bd1&amp;c_uniq_tag=tHkZU8i3SymL7gFTKF0xwyBrR9pLFpFcrn7HgAkadoo&amp;type=video_thumb\" alt=\"SONE-796 | FHD (2025) | Miru Sakamichi\" loading=\"lazy\"></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">3:02:25</span></div><div class=\"vkitVideoCardRestrictionOverlay__restriction--fAC7b vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF vkitOverlay__root--NoxWm\" style=\"--overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--28 vkuiIcon--w-28 vkuiIcon--h-28 vkuiIcon--hide_outline_28\" width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" style=\"width: 28px; height: 28px;\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M0 0h28v28H0z\"></path><path fill=\"currentColor\" fill-rule=\"nonzero\" d=\"m7.707 4.793 5.325 5.325h.003l4.848 4.847v.003l5.824 5.825a1 1 0 0 1-1.414 1.414l-1.875-1.873A13.3 13.3 0 0 1 14 22c-5.818 0-11.5-4.356-11.5-8 0-2.127 2.185-4.77 5.193-6.393l-1.4-1.4a1 1 0 0 1 1.414-1.414M4.5 14c0 2.406 4.688 6 9.5 6 1.733 0 3.415-.41 4.934-1.15l-2.063-2.065a4 4 0 1 1-5.656-5.656L9.18 9.096C6.48 10.377 4.5 12.634 4.5 14M14 6c5.818 0 11.5 4.356 11.5 8 0 .945-.433 1.998-1.197 3.033a1 1 0 0 1-1.61-1.187c.532-.72.807-1.389.807-1.846 0-2.406-4.688-6-9.5-6a1 1 0 0 1 0-2m-1.37 6.544a2 2 0 1 0 2.827 2.827z\"></path></g></svg><span class=\"vkitVideoCardRestrictionOverlay__title--DuGrF vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" level=\"1\">\u0412\u0438\u0434\u0435\u043e \u0441 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</span></div></div><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248589\" tabindex=\"0\" title=\"SONE-796 | FHD (2025) | Miru Sakamichi\" style=\"--vkui_internal--textclamp-lines: 2;\">SONE-796 | FHD (2025) | Miru Sakamichi</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">310 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><div class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__imgBlurred--uTIvm vkitVideoCardPreviewImage__imgBlurredSizeS--0ck4C\" src=\"https://sun9-12.userapi.com/impg/6z3q6BLz4ukc-ZXgiJL7JfHqsUL0OsG_ninjLg/8jbtOW4H91Q.jpg?size=320x215&amp;quality=95&amp;sign=9a8d16230b9495842f1477fdf9295700&amp;c_uniq_tag=vpIN2utJ0Tp0D-Aq2pGvLPeTyT8pAW6bUhEs2TR6li8&amp;type=video_thumb\" alt=\"SONE-798 | FHD (2025) | Miyuu Kohinata\" loading=\"lazy\"></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:00:17</span></div><div class=\"vkitVideoCardRestrictionOverlay__restriction--fAC7b vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF vkitOverlay__root--NoxWm\" style=\"--overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--28 vkuiIcon--w-28 vkuiIcon--h-28 vkuiIcon--hide_outline_28\" width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" style=\"width: 28px; height: 28px;\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M0 0h28v28H0z\"></path><path fill=\"currentColor\" fill-rule=\"nonzero\" d=\"m7.707 4.793 5.325 5.325h.003l4.848 4.847v.003l5.824 5.825a1 1 0 0 1-1.414 1.414l-1.875-1.873A13.3 13.3 0 0 1 14 22c-5.818 0-11.5-4.356-11.5-8 0-2.127 2.185-4.77 5.193-6.393l-1.4-1.4a1 1 0 0 1 1.414-1.414M4.5 14c0 2.406 4.688 6 9.5 6 1.733 0 3.415-.41 4.934-1.15l-2.063-2.065a4 4 0 1 1-5.656-5.656L9.18 9.096C6.48 10.377 4.5 12.634 4.5 14M14 6c5.818 0 11.5 4.356 11.5 8 0 .945-.433 1.998-1.197 3.033a1 1 0 0 1-1.61-1.187c.532-.72.807-1.389.807-1.846 0-2.406-4.688-6-9.5-6a1 1 0 0 1 0-2m-1.37 6.544a2 2 0 1 0 2.827 2.827z\"></path></g></svg><span class=\"vkitVideoCardRestrictionOverlay__title--DuGrF vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" level=\"1\">\u0412\u0438\u0434\u0435\u043e \u0441 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</span></div></div><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248590\" tabindex=\"0\" title=\"SONE-798 | FHD (2025) | Miyuu Kohinata\" style=\"--vkui_internal--textclamp-lines: 2;\">SONE-798 | FHD (2025) | Miyuu Kohinata</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">465 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><div class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__imgBlurred--uTIvm vkitVideoCardPreviewImage__imgBlurredSizeS--0ck4C\" src=\"https://sun9-43.userapi.com/impg/D8mJ1R8wYeRhK7SGknOWhLEWfMLZDEu01cFyxQ/ExbgosBTWVs.jpg?size=320x215&amp;quality=95&amp;sign=2e75ceb6ee365a3ffeee2ffe4adce994&amp;c_uniq_tag=DTP8xHr1ARjhrvSLwBI2iD-DKX0FDBkQjojdil5VnTM&amp;type=video_thumb\" alt=\"SONE-802 | FHD (2025) | Marin Mita\" loading=\"lazy\"></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">1:59:10</span></div><div class=\"vkitVideoCardRestrictionOverlay__restriction--fAC7b vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF vkitOverlay__root--NoxWm\" style=\"--overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--28 vkuiIcon--w-28 vkuiIcon--h-28 vkuiIcon--hide_outline_28\" width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" style=\"width: 28px; height: 28px;\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M0 0h28v28H0z\"></path><path fill=\"currentColor\" fill-rule=\"nonzero\" d=\"m7.707 4.793 5.325 5.325h.003l4.848 4.847v.003l5.824 5.825a1 1 0 0 1-1.414 1.414l-1.875-1.873A13.3 13.3 0 0 1 14 22c-5.818 0-11.5-4.356-11.5-8 0-2.127 2.185-4.77 5.193-6.393l-1.4-1.4a1 1 0 0 1 1.414-1.414M4.5 14c0 2.406 4.688 6 9.5 6 1.733 0 3.415-.41 4.934-1.15l-2.063-2.065a4 4 0 1 1-5.656-5.656L9.18 9.096C6.48 10.377 4.5 12.634 4.5 14M14 6c5.818 0 11.5 4.356 11.5 8 0 .945-.433 1.998-1.197 3.033a1 1 0 0 1-1.61-1.187c.532-.72.807-1.389.807-1.846 0-2.406-4.688-6-9.5-6a1 1 0 0 1 0-2m-1.37 6.544a2 2 0 1 0 2.827 2.827z\"></path></g></svg><span class=\"vkitVideoCardRestrictionOverlay__title--DuGrF vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" level=\"1\">\u0412\u0438\u0434\u0435\u043e \u0441 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</span></div></div><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248592\" tabindex=\"0\" title=\"SONE-802 | FHD (2025) | Marin Mita\" style=\"--vkui_internal--textclamp-lines: 2;\">SONE-802 | FHD (2025) | Marin Mita</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">334 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><div class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__imgBlurred--uTIvm vkitVideoCardPreviewImage__imgBlurredSizeS--0ck4C\" src=\"https://sun1-29.userapi.com/impg/HotyyYjGGgSHGvHLFw6cfJtcJBvoq3hQ25meGQ/-ymwuHpcDag.jpg?size=320x215&amp;quality=95&amp;sign=6798cf7c8a5dd31e5b385d9f3af41e4b&amp;c_uniq_tag=w-YvjA9BBRtO7oDfEG-SEPaZStoH86BUfRGnhbKFMOQ&amp;type=video_thumb\" alt=\"SONE-795 | FHD (2025) | Saki Okuda\" loading=\"lazy\"></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:01:14</span></div><div class=\"vkitVideoCardRestrictionOverlay__restriction--fAC7b vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF vkitOverlay__root--NoxWm\" style=\"--overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--28 vkuiIcon--w-28 vkuiIcon--h-28 vkuiIcon--hide_outline_28\" width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" style=\"width: 28px; height: 28px;\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M0 0h28v28H0z\"></path><path fill=\"currentColor\" fill-rule=\"nonzero\" d=\"m7.707 4.793 5.325 5.325h.003l4.848 4.847v.003l5.824 5.825a1 1 0 0 1-1.414 1.414l-1.875-1.873A13.3 13.3 0 0 1 14 22c-5.818 0-11.5-4.356-11.5-8 0-2.127 2.185-4.77 5.193-6.393l-1.4-1.4a1 1 0 0 1 1.414-1.414M4.5 14c0 2.406 4.688 6 9.5 6 1.733 0 3.415-.41 4.934-1.15l-2.063-2.065a4 4 0 1 1-5.656-5.656L9.18 9.096C6.48 10.377 4.5 12.634 4.5 14M14 6c5.818 0 11.5 4.356 11.5 8 0 .945-.433 1.998-1.197 3.033a1 1 0 0 1-1.61-1.187c.532-.72.807-1.389.807-1.846 0-2.406-4.688-6-9.5-6a1 1 0 0 1 0-2m-1.37 6.544a2 2 0 1 0 2.827 2.827z\"></path></g></svg><span class=\"vkitVideoCardRestrictionOverlay__title--DuGrF vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" level=\"1\">\u0412\u0438\u0434\u0435\u043e \u0441 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</span></div></div><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248588\" tabindex=\"0\" title=\"SONE-795 | FHD (2025) | Saki Okuda\" style=\"--vkui_internal--textclamp-lines: 2;\">SONE-795 | FHD (2025) | Saki Okuda</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">329 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><div class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__imgBlurred--uTIvm vkitVideoCardPreviewImage__imgBlurredSizeS--0ck4C\" src=\"https://sun1-85.userapi.com/impg/qO96LLAT3I0DwchFde12bGCYDx_C0aJUg_1pLw/qVW67V-skKE.jpg?size=320x215&amp;quality=95&amp;sign=6a06406606d2463b8b1c65010ca480ee&amp;c_uniq_tag=B3FL7XAUiK0a7jg-4S_bStT2dRp4LWVmL1rvgvl5mtM&amp;type=video_thumb\" alt=\"SONE-786 | FHD (2025) | Yu Tano\" loading=\"lazy\"></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:36:57</span></div><div class=\"vkitVideoCardRestrictionOverlay__restriction--fAC7b vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF vkitOverlay__root--NoxWm\" style=\"--overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--28 vkuiIcon--w-28 vkuiIcon--h-28 vkuiIcon--hide_outline_28\" width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" style=\"width: 28px; height: 28px;\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M0 0h28v28H0z\"></path><path fill=\"currentColor\" fill-rule=\"nonzero\" d=\"m7.707 4.793 5.325 5.325h.003l4.848 4.847v.003l5.824 5.825a1 1 0 0 1-1.414 1.414l-1.875-1.873A13.3 13.3 0 0 1 14 22c-5.818 0-11.5-4.356-11.5-8 0-2.127 2.185-4.77 5.193-6.393l-1.4-1.4a1 1 0 0 1 1.414-1.414M4.5 14c0 2.406 4.688 6 9.5 6 1.733 0 3.415-.41 4.934-1.15l-2.063-2.065a4 4 0 1 1-5.656-5.656L9.18 9.096C6.48 10.377 4.5 12.634 4.5 14M14 6c5.818 0 11.5 4.356 11.5 8 0 .945-.433 1.998-1.197 3.033a1 1 0 0 1-1.61-1.187c.532-.72.807-1.389.807-1.846 0-2.406-4.688-6-9.5-6a1 1 0 0 1 0-2m-1.37 6.544a2 2 0 1 0 2.827 2.827z\"></path></g></svg><span class=\"vkitVideoCardRestrictionOverlay__title--DuGrF vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" level=\"1\">\u0412\u0438\u0434\u0435\u043e \u0441 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</span></div></div><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248585\" tabindex=\"0\" title=\"SONE-786 | FHD (2025) | Yu Tano\" style=\"--vkui_internal--textclamp-lines: 2;\">SONE-786 | FHD (2025) | Yu Tano</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">569 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><div class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__imgBlurred--uTIvm vkitVideoCardPreviewImage__imgBlurredSizeS--0ck4C\" src=\"https://sun1-83.userapi.com/impg/NNmcRb4lVVP0iywfZcQa0oyczg3FrHcfzF1XXA/zvWw73tp8OI.jpg?size=320x215&amp;quality=95&amp;sign=992a076e5e4a9332b6b3a1f1f425a244&amp;c_uniq_tag=fU1FgIijWvlNvUE6ExgXUidhMBo-xo3TBoSQHfi-kIY&amp;type=video_thumb\" alt=\"SONE-793 | FHD (2025) | Asuha Mitsuha\" loading=\"lazy\"></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">1:58:34</span></div><div class=\"vkitVideoCardRestrictionOverlay__restriction--fAC7b vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF vkitOverlay__root--NoxWm\" style=\"--overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--28 vkuiIcon--w-28 vkuiIcon--h-28 vkuiIcon--hide_outline_28\" width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" style=\"width: 28px; height: 28px;\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M0 0h28v28H0z\"></path><path fill=\"currentColor\" fill-rule=\"nonzero\" d=\"m7.707 4.793 5.325 5.325h.003l4.848 4.847v.003l5.824 5.825a1 1 0 0 1-1.414 1.414l-1.875-1.873A13.3 13.3 0 0 1 14 22c-5.818 0-11.5-4.356-11.5-8 0-2.127 2.185-4.77 5.193-6.393l-1.4-1.4a1 1 0 0 1 1.414-1.414M4.5 14c0 2.406 4.688 6 9.5 6 1.733 0 3.415-.41 4.934-1.15l-2.063-2.065a4 4 0 1 1-5.656-5.656L9.18 9.096C6.48 10.377 4.5 12.634 4.5 14M14 6c5.818 0 11.5 4.356 11.5 8 0 .945-.433 1.998-1.197 3.033a1 1 0 0 1-1.61-1.187c.532-.72.807-1.389.807-1.846 0-2.406-4.688-6-9.5-6a1 1 0 0 1 0-2m-1.37 6.544a2 2 0 1 0 2.827 2.827z\"></path></g></svg><span class=\"vkitVideoCardRestrictionOverlay__title--DuGrF vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" level=\"1\">\u0412\u0438\u0434\u0435\u043e \u0441 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</span></div></div><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248587\" tabindex=\"0\" title=\"SONE-793 | FHD (2025) | Asuha Mitsuha\" style=\"--vkui_internal--textclamp-lines: 2;\">SONE-793 | FHD (2025) | Asuha Mitsuha</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">466 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><div class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__imgBlurred--uTIvm vkitVideoCardPreviewImage__imgBlurredSizeS--0ck4C\" src=\"https://sun9-74.userapi.com/impg/i3rUDA1ULqze-gd2G28IcJcPBAEA9rGIP5iZBA/z6NObYl4cCs.jpg?size=320x215&amp;quality=95&amp;sign=30329aa69d6254b52eb62c8233e1e6dd&amp;c_uniq_tag=rj3_1llmt3dSGOqrbv3uyHcvMBuAaw6Gj5mnP7w5pic&amp;type=video_thumb\" alt=\"SONE-790 | FHD (2025) | Kiho Kanamatsu\" loading=\"lazy\"></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:01:00</span></div><div class=\"vkitVideoCardRestrictionOverlay__restriction--fAC7b vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF vkitOverlay__root--NoxWm\" style=\"--overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--28 vkuiIcon--w-28 vkuiIcon--h-28 vkuiIcon--hide_outline_28\" width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" style=\"width: 28px; height: 28px;\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M0 0h28v28H0z\"></path><path fill=\"currentColor\" fill-rule=\"nonzero\" d=\"m7.707 4.793 5.325 5.325h.003l4.848 4.847v.003l5.824 5.825a1 1 0 0 1-1.414 1.414l-1.875-1.873A13.3 13.3 0 0 1 14 22c-5.818 0-11.5-4.356-11.5-8 0-2.127 2.185-4.77 5.193-6.393l-1.4-1.4a1 1 0 0 1 1.414-1.414M4.5 14c0 2.406 4.688 6 9.5 6 1.733 0 3.415-.41 4.934-1.15l-2.063-2.065a4 4 0 1 1-5.656-5.656L9.18 9.096C6.48 10.377 4.5 12.634 4.5 14M14 6c5.818 0 11.5 4.356 11.5 8 0 .945-.433 1.998-1.197 3.033a1 1 0 0 1-1.61-1.187c.532-.72.807-1.389.807-1.846 0-2.406-4.688-6-9.5-6a1 1 0 0 1 0-2m-1.37 6.544a2 2 0 1 0 2.827 2.827z\"></path></g></svg><span class=\"vkitVideoCardRestrictionOverlay__title--DuGrF vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" level=\"1\">\u0412\u0438\u0434\u0435\u043e \u0441 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</span></div></div><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248586\" tabindex=\"0\" title=\"SONE-790 | FHD (2025) | Kiho Kanamatsu\" style=\"--vkui_internal--textclamp-lines: 2;\">SONE-790 | FHD (2025) | Kiho Kanamatsu</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">330 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><div class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__imgBlurred--uTIvm vkitVideoCardPreviewImage__imgBlurredSizeS--0ck4C\" src=\"https://sun1-85.userapi.com/impg/rg0z2rOm63JyuYvKT1nYp1qjl5-8yAX3HDtASQ/I32nT16Osdk.jpg?size=320x215&amp;quality=95&amp;sign=14bda7ffe395be04f55e5cbac8201a06&amp;c_uniq_tag=ApY26bS1DImtIvnkY4LPw8458toJcnPzw1zUJQtQyJA&amp;type=video_thumb\" alt=\"SONE-758 | FHD (2025) | Kanna Seto\" loading=\"lazy\"></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">3:02:46</span></div><div class=\"vkitVideoCardRestrictionOverlay__restriction--fAC7b vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF vkitOverlay__root--NoxWm\" style=\"--overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--28 vkuiIcon--w-28 vkuiIcon--h-28 vkuiIcon--hide_outline_28\" width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" style=\"width: 28px; height: 28px;\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M0 0h28v28H0z\"></path><path fill=\"currentColor\" fill-rule=\"nonzero\" d=\"m7.707 4.793 5.325 5.325h.003l4.848 4.847v.003l5.824 5.825a1 1 0 0 1-1.414 1.414l-1.875-1.873A13.3 13.3 0 0 1 14 22c-5.818 0-11.5-4.356-11.5-8 0-2.127 2.185-4.77 5.193-6.393l-1.4-1.4a1 1 0 0 1 1.414-1.414M4.5 14c0 2.406 4.688 6 9.5 6 1.733 0 3.415-.41 4.934-1.15l-2.063-2.065a4 4 0 1 1-5.656-5.656L9.18 9.096C6.48 10.377 4.5 12.634 4.5 14M14 6c5.818 0 11.5 4.356 11.5 8 0 .945-.433 1.998-1.197 3.033a1 1 0 0 1-1.61-1.187c.532-.72.807-1.389.807-1.846 0-2.406-4.688-6-9.5-6a1 1 0 0 1 0-2m-1.37 6.544a2 2 0 1 0 2.827 2.827z\"></path></g></svg><span class=\"vkitVideoCardRestrictionOverlay__title--DuGrF vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" level=\"1\">\u0412\u0438\u0434\u0435\u043e \u0441 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</span></div></div><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248583\" tabindex=\"0\" title=\"SONE-758 | FHD (2025) | Kanna Seto\" style=\"--vkui_internal--textclamp-lines: 2;\">SONE-758 | FHD (2025) | Kanna Seto</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">561 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><div class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__imgBlurred--uTIvm vkitVideoCardPreviewImage__imgBlurredSizeS--0ck4C\" src=\"https://sun9-88.userapi.com/impg/uRu8C5u0W_bvu3GLyInj7mH5cNPeyIPAsFyUOA/rNCsLvDIgp4.jpg?size=320x215&amp;quality=95&amp;sign=77a5ff27727f9637ef9e2f5e760112f6&amp;c_uniq_tag=aTKZ2yjo-SjI_0WtBIf8Op6n4zMvgInXwr90QG5BBcQ&amp;type=video_thumb\" alt=\"SONE-746 | FHD (2025) | Yuka Murakami\" loading=\"lazy\"></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:28:30</span></div><div class=\"vkitVideoCardRestrictionOverlay__restriction--fAC7b vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF vkitOverlay__root--NoxWm\" style=\"--overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--28 vkuiIcon--w-28 vkuiIcon--h-28 vkuiIcon--hide_outline_28\" width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" style=\"width: 28px; height: 28px;\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M0 0h28v28H0z\"></path><path fill=\"currentColor\" fill-rule=\"nonzero\" d=\"m7.707 4.793 5.325 5.325h.003l4.848 4.847v.003l5.824 5.825a1 1 0 0 1-1.414 1.414l-1.875-1.873A13.3 13.3 0 0 1 14 22c-5.818 0-11.5-4.356-11.5-8 0-2.127 2.185-4.77 5.193-6.393l-1.4-1.4a1 1 0 0 1 1.414-1.414M4.5 14c0 2.406 4.688 6 9.5 6 1.733 0 3.415-.41 4.934-1.15l-2.063-2.065a4 4 0 1 1-5.656-5.656L9.18 9.096C6.48 10.377 4.5 12.634 4.5 14M14 6c5.818 0 11.5 4.356 11.5 8 0 .945-.433 1.998-1.197 3.033a1 1 0 0 1-1.61-1.187c.532-.72.807-1.389.807-1.846 0-2.406-4.688-6-9.5-6a1 1 0 0 1 0-2m-1.37 6.544a2 2 0 1 0 2.827 2.827z\"></path></g></svg><span class=\"vkitVideoCardRestrictionOverlay__title--DuGrF vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" level=\"1\">\u0412\u0438\u0434\u0435\u043e \u0441 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</span></div></div><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248581\" tabindex=\"0\" title=\"SONE-746 | FHD (2025) | Yuka Murakami\" style=\"--vkui_internal--textclamp-lines: 2;\">SONE-746 | FHD (2025) | Yuka Murakami</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">279 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><div class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__imgBlurred--uTIvm vkitVideoCardPreviewImage__imgBlurredSizeS--0ck4C\" src=\"https://sun1-22.userapi.com/impg/un2aRP9f9dZfN3YMunUVCDUvu_gTh622sl8fsg/8xR22dyZ6Pw.jpg?size=320x215&amp;quality=95&amp;sign=96e3e0ea80df9785dca05bfd0755944d&amp;c_uniq_tag=eR4R1Cq4eTcRqhvcqTheRTehV10B0tou3L84N6bpZyE&amp;type=video_thumb\" alt=\"SONE-780 | FHD (2025) | Mika Minamisawa\" loading=\"lazy\"></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">1:55:16</span></div><div class=\"vkitVideoCardRestrictionOverlay__restriction--fAC7b vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF vkitOverlay__root--NoxWm\" style=\"--overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--28 vkuiIcon--w-28 vkuiIcon--h-28 vkuiIcon--hide_outline_28\" width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" style=\"width: 28px; height: 28px;\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M0 0h28v28H0z\"></path><path fill=\"currentColor\" fill-rule=\"nonzero\" d=\"m7.707 4.793 5.325 5.325h.003l4.848 4.847v.003l5.824 5.825a1 1 0 0 1-1.414 1.414l-1.875-1.873A13.3 13.3 0 0 1 14 22c-5.818 0-11.5-4.356-11.5-8 0-2.127 2.185-4.77 5.193-6.393l-1.4-1.4a1 1 0 0 1 1.414-1.414M4.5 14c0 2.406 4.688 6 9.5 6 1.733 0 3.415-.41 4.934-1.15l-2.063-2.065a4 4 0 1 1-5.656-5.656L9.18 9.096C6.48 10.377 4.5 12.634 4.5 14M14 6c5.818 0 11.5 4.356 11.5 8 0 .945-.433 1.998-1.197 3.033a1 1 0 0 1-1.61-1.187c.532-.72.807-1.389.807-1.846 0-2.406-4.688-6-9.5-6a1 1 0 0 1 0-2m-1.37 6.544a2 2 0 1 0 2.827 2.827z\"></path></g></svg><span class=\"vkitVideoCardRestrictionOverlay__title--DuGrF vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" level=\"1\">\u0412\u0438\u0434\u0435\u043e \u0441 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</span></div></div><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248584\" tabindex=\"0\" title=\"SONE-780 | FHD (2025) | Mika Minamisawa\" style=\"--vkui_internal--textclamp-lines: 2;\">SONE-780 | FHD (2025) | Mika Minamisawa</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">294 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><div class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__imgBlurred--uTIvm vkitVideoCardPreviewImage__imgBlurredSizeS--0ck4C\" src=\"https://sun9-26.userapi.com/impg/7Mry8z0y_h1LXNF5RoXwbAUwqg5QCQdXb8n6sw/pp7yzw8AfsU.jpg?size=320x215&amp;quality=95&amp;sign=dd5cd8e229371a5961b5e700b298b468&amp;c_uniq_tag=RhOxxgd5Md76bRmkv_LKkxGFxFSl7Pg2VSg_CHStbnw&amp;type=video_thumb\" alt=\"SONE-753 | FHD (2025) | Hiyori Nosaka\" loading=\"lazy\"></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:09:10</span></div><div class=\"vkitVideoCardRestrictionOverlay__restriction--fAC7b vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF vkitOverlay__root--NoxWm\" style=\"--overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--28 vkuiIcon--w-28 vkuiIcon--h-28 vkuiIcon--hide_outline_28\" width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" style=\"width: 28px; height: 28px;\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M0 0h28v28H0z\"></path><path fill=\"currentColor\" fill-rule=\"nonzero\" d=\"m7.707 4.793 5.325 5.325h.003l4.848 4.847v.003l5.824 5.825a1 1 0 0 1-1.414 1.414l-1.875-1.873A13.3 13.3 0 0 1 14 22c-5.818 0-11.5-4.356-11.5-8 0-2.127 2.185-4.77 5.193-6.393l-1.4-1.4a1 1 0 0 1 1.414-1.414M4.5 14c0 2.406 4.688 6 9.5 6 1.733 0 3.415-.41 4.934-1.15l-2.063-2.065a4 4 0 1 1-5.656-5.656L9.18 9.096C6.48 10.377 4.5 12.634 4.5 14M14 6c5.818 0 11.5 4.356 11.5 8 0 .945-.433 1.998-1.197 3.033a1 1 0 0 1-1.61-1.187c.532-.72.807-1.389.807-1.846 0-2.406-4.688-6-9.5-6a1 1 0 0 1 0-2m-1.37 6.544a2 2 0 1 0 2.827 2.827z\"></path></g></svg><span class=\"vkitVideoCardRestrictionOverlay__title--DuGrF vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" level=\"1\">\u0412\u0438\u0434\u0435\u043e \u0441 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</span></div></div><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248582\" tabindex=\"0\" title=\"SONE-753 | FHD (2025) | Hiyori Nosaka\" style=\"--vkui_internal--textclamp-lines: 2;\">SONE-753 | FHD (2025) | Hiyori Nosaka</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">490 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><div class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__imgBlurred--uTIvm vkitVideoCardPreviewImage__imgBlurredSizeS--0ck4C\" src=\"https://sun9-77.userapi.com/impg/Afj516OoX2jC_yv4QL__mvfFbz1tuyu3TFaQug/Z43u6HYonyk.jpg?size=320x215&amp;quality=95&amp;sign=d0ca1ba6467fa50ed0ccc497f708da79&amp;c_uniq_tag=memROA7gD538ZoXHw62M_t6ES3zEV3OrxbrF4fYDoOw&amp;type=video_thumb\" alt=\"ROE-386 | FHD (2025) | Saki Aikawa\" loading=\"lazy\"></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:46:17</span></div><div class=\"vkitVideoCardRestrictionOverlay__restriction--fAC7b vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF vkitOverlay__root--NoxWm\" style=\"--overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--28 vkuiIcon--w-28 vkuiIcon--h-28 vkuiIcon--hide_outline_28\" width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" style=\"width: 28px; height: 28px;\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M0 0h28v28H0z\"></path><path fill=\"currentColor\" fill-rule=\"nonzero\" d=\"m7.707 4.793 5.325 5.325h.003l4.848 4.847v.003l5.824 5.825a1 1 0 0 1-1.414 1.414l-1.875-1.873A13.3 13.3 0 0 1 14 22c-5.818 0-11.5-4.356-11.5-8 0-2.127 2.185-4.77 5.193-6.393l-1.4-1.4a1 1 0 0 1 1.414-1.414M4.5 14c0 2.406 4.688 6 9.5 6 1.733 0 3.415-.41 4.934-1.15l-2.063-2.065a4 4 0 1 1-5.656-5.656L9.18 9.096C6.48 10.377 4.5 12.634 4.5 14M14 6c5.818 0 11.5 4.356 11.5 8 0 .945-.433 1.998-1.197 3.033a1 1 0 0 1-1.61-1.187c.532-.72.807-1.389.807-1.846 0-2.406-4.688-6-9.5-6a1 1 0 0 1 0-2m-1.37 6.544a2 2 0 1 0 2.827 2.827z\"></path></g></svg><span class=\"vkitVideoCardRestrictionOverlay__title--DuGrF vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" level=\"1\">\u0412\u0438\u0434\u0435\u043e \u0441 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</span></div></div><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248579\" tabindex=\"0\" title=\"ROE-386 | FHD (2025) | Saki Aikawa\" style=\"--vkui_internal--textclamp-lines: 2;\">ROE-386 | FHD (2025) | Saki Aikawa</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">385 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><div class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__imgBlurred--uTIvm vkitVideoCardPreviewImage__imgBlurredSizeS--0ck4C\" src=\"https://sun1-95.userapi.com/impg/MRDdM1GpA9UYDbvwnbgIb5dBCTs9uNRKul5A4w/IrExnd2WS3s.jpg?size=320x215&amp;quality=95&amp;sign=151cd86ee03e089bd47395096451663e&amp;c_uniq_tag=ITYzINLBcUH2NZ2ABg4UqAEXraN2EYyQPRMDKyaV6FU&amp;type=video_thumb\" alt=\"ROE-376 | FHD (2025) | Fuyuka Hoshi\" loading=\"lazy\"></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:49:06</span></div><div class=\"vkitVideoCardRestrictionOverlay__restriction--fAC7b vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF vkitOverlay__root--NoxWm\" style=\"--overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--28 vkuiIcon--w-28 vkuiIcon--h-28 vkuiIcon--hide_outline_28\" width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" style=\"width: 28px; height: 28px;\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M0 0h28v28H0z\"></path><path fill=\"currentColor\" fill-rule=\"nonzero\" d=\"m7.707 4.793 5.325 5.325h.003l4.848 4.847v.003l5.824 5.825a1 1 0 0 1-1.414 1.414l-1.875-1.873A13.3 13.3 0 0 1 14 22c-5.818 0-11.5-4.356-11.5-8 0-2.127 2.185-4.77 5.193-6.393l-1.4-1.4a1 1 0 0 1 1.414-1.414M4.5 14c0 2.406 4.688 6 9.5 6 1.733 0 3.415-.41 4.934-1.15l-2.063-2.065a4 4 0 1 1-5.656-5.656L9.18 9.096C6.48 10.377 4.5 12.634 4.5 14M14 6c5.818 0 11.5 4.356 11.5 8 0 .945-.433 1.998-1.197 3.033a1 1 0 0 1-1.61-1.187c.532-.72.807-1.389.807-1.846 0-2.406-4.688-6-9.5-6a1 1 0 0 1 0-2m-1.37 6.544a2 2 0 1 0 2.827 2.827z\"></path></g></svg><span class=\"vkitVideoCardRestrictionOverlay__title--DuGrF vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" level=\"1\">\u0412\u0438\u0434\u0435\u043e \u0441 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</span></div></div><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248577\" tabindex=\"0\" title=\"ROE-376 | FHD (2025) | Fuyuka Hoshi\" style=\"--vkui_internal--textclamp-lines: 2;\">ROE-376 | FHD (2025) | Fuyuka Hoshi</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">452 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><div class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__imgBlurred--uTIvm vkitVideoCardPreviewImage__imgBlurredSizeS--0ck4C\" src=\"https://sun9-49.userapi.com/impg/XPIkgz5c8VddLTf1A8MKGOKB6WZhxH84RGQ1dw/DtNX5MVGdu8.jpg?size=320x216&amp;quality=95&amp;sign=fa3d7da7eb4202e236b22072748c84bb&amp;c_uniq_tag=eJd21BPA7xnMtjrNFXWA8AxPxx9qMwuPYdcNrZ-8Oe8&amp;type=video_thumb\" alt=\"SLN-013 | FHD (2025) | Hinako Matsui\" loading=\"lazy\"></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:04:50</span></div><div class=\"vkitVideoCardRestrictionOverlay__restriction--fAC7b vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF vkitOverlay__root--NoxWm\" style=\"--overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--28 vkuiIcon--w-28 vkuiIcon--h-28 vkuiIcon--hide_outline_28\" width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" style=\"width: 28px; height: 28px;\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M0 0h28v28H0z\"></path><path fill=\"currentColor\" fill-rule=\"nonzero\" d=\"m7.707 4.793 5.325 5.325h.003l4.848 4.847v.003l5.824 5.825a1 1 0 0 1-1.414 1.414l-1.875-1.873A13.3 13.3 0 0 1 14 22c-5.818 0-11.5-4.356-11.5-8 0-2.127 2.185-4.77 5.193-6.393l-1.4-1.4a1 1 0 0 1 1.414-1.414M4.5 14c0 2.406 4.688 6 9.5 6 1.733 0 3.415-.41 4.934-1.15l-2.063-2.065a4 4 0 1 1-5.656-5.656L9.18 9.096C6.48 10.377 4.5 12.634 4.5 14M14 6c5.818 0 11.5 4.356 11.5 8 0 .945-.433 1.998-1.197 3.033a1 1 0 0 1-1.61-1.187c.532-.72.807-1.389.807-1.846 0-2.406-4.688-6-9.5-6a1 1 0 0 1 0-2m-1.37 6.544a2 2 0 1 0 2.827 2.827z\"></path></g></svg><span class=\"vkitVideoCardRestrictionOverlay__title--DuGrF vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" level=\"1\">\u0412\u0438\u0434\u0435\u043e \u0441 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</span></div></div><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248580\" tabindex=\"0\" title=\"SLN-013 | FHD (2025) | Hinako Matsui\" style=\"--vkui_internal--textclamp-lines: 2;\">SLN-013 | FHD (2025) | Hinako Matsui</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">231 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><div class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__imgBlurred--uTIvm vkitVideoCardPreviewImage__imgBlurredSizeS--0ck4C\" src=\"https://sun1-57.userapi.com/impg/2NpshNNNL9xwUsP2hO94aleWGMBgmlXyOCIKgA/oeAEqh5OidU.jpg?size=320x215&amp;quality=95&amp;sign=f9d8e3dda35ca74cf5827928e488ff32&amp;c_uniq_tag=NMA_QLGEOLVfCpJL588XbIkSeBrU5A2XeQulj7-m-pk&amp;type=video_thumb\" alt=\"ROE-369 | FHD (2025) | Hazuki Honami, Miu Suzaki\" loading=\"lazy\"></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">3:00:25</span></div><div class=\"vkitVideoCardRestrictionOverlay__restriction--fAC7b vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF vkitOverlay__root--NoxWm\" style=\"--overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--28 vkuiIcon--w-28 vkuiIcon--h-28 vkuiIcon--hide_outline_28\" width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" style=\"width: 28px; height: 28px;\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M0 0h28v28H0z\"></path><path fill=\"currentColor\" fill-rule=\"nonzero\" d=\"m7.707 4.793 5.325 5.325h.003l4.848 4.847v.003l5.824 5.825a1 1 0 0 1-1.414 1.414l-1.875-1.873A13.3 13.3 0 0 1 14 22c-5.818 0-11.5-4.356-11.5-8 0-2.127 2.185-4.77 5.193-6.393l-1.4-1.4a1 1 0 0 1 1.414-1.414M4.5 14c0 2.406 4.688 6 9.5 6 1.733 0 3.415-.41 4.934-1.15l-2.063-2.065a4 4 0 1 1-5.656-5.656L9.18 9.096C6.48 10.377 4.5 12.634 4.5 14M14 6c5.818 0 11.5 4.356 11.5 8 0 .945-.433 1.998-1.197 3.033a1 1 0 0 1-1.61-1.187c.532-.72.807-1.389.807-1.846 0-2.406-4.688-6-9.5-6a1 1 0 0 1 0-2m-1.37 6.544a2 2 0 1 0 2.827 2.827z\"></path></g></svg><span class=\"vkitVideoCardRestrictionOverlay__title--DuGrF vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" level=\"1\">\u0412\u0438\u0434\u0435\u043e \u0441 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</span></div></div><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248574\" tabindex=\"0\" title=\"ROE-369 | FHD (2025) | Hazuki Honami, Miu Suzaki\" style=\"--vkui_internal--textclamp-lines: 2;\">ROE-369 | FHD (2025) | Hazuki Honami, Miu Suzaki</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">342 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><div class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__imgBlurred--uTIvm vkitVideoCardPreviewImage__imgBlurredSizeS--0ck4C\" src=\"https://sun1-96.userapi.com/impg/jVaM1qmUMXWpSA6dw1kbLg7fm2n9zrVslYllKQ/1IGSd0MToFU.jpg?size=320x215&amp;quality=95&amp;sign=99b65951417d69ea9a5a19635c252e0d&amp;c_uniq_tag=N6ZUMywisCGsl_wKexbNr0jBdwgeqeYLuMXJryuBNNs&amp;type=video_thumb\" alt=\"ROE-370 | FHD (2025) | Reiko Seo\" loading=\"lazy\"></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:15:21</span></div><div class=\"vkitVideoCardRestrictionOverlay__restriction--fAC7b vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF vkitOverlay__root--NoxWm\" style=\"--overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--28 vkuiIcon--w-28 vkuiIcon--h-28 vkuiIcon--hide_outline_28\" width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" style=\"width: 28px; height: 28px;\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M0 0h28v28H0z\"></path><path fill=\"currentColor\" fill-rule=\"nonzero\" d=\"m7.707 4.793 5.325 5.325h.003l4.848 4.847v.003l5.824 5.825a1 1 0 0 1-1.414 1.414l-1.875-1.873A13.3 13.3 0 0 1 14 22c-5.818 0-11.5-4.356-11.5-8 0-2.127 2.185-4.77 5.193-6.393l-1.4-1.4a1 1 0 0 1 1.414-1.414M4.5 14c0 2.406 4.688 6 9.5 6 1.733 0 3.415-.41 4.934-1.15l-2.063-2.065a4 4 0 1 1-5.656-5.656L9.18 9.096C6.48 10.377 4.5 12.634 4.5 14M14 6c5.818 0 11.5 4.356 11.5 8 0 .945-.433 1.998-1.197 3.033a1 1 0 0 1-1.61-1.187c.532-.72.807-1.389.807-1.846 0-2.406-4.688-6-9.5-6a1 1 0 0 1 0-2m-1.37 6.544a2 2 0 1 0 2.827 2.827z\"></path></g></svg><span class=\"vkitVideoCardRestrictionOverlay__title--DuGrF vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" level=\"1\">\u0412\u0438\u0434\u0435\u043e \u0441 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</span></div></div><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248575\" tabindex=\"0\" title=\"ROE-370 | FHD (2025) | Reiko Seo\" style=\"--vkui_internal--textclamp-lines: 2;\">ROE-370 | FHD (2025) | Reiko Seo</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">604 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><div class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__imgBlurred--uTIvm vkitVideoCardPreviewImage__imgBlurredSizeS--0ck4C\" src=\"https://sun1-26.userapi.com/impg/D_7T7r-kwfWB9C4_eVYsdh3wg2IRledYjAwpiQ/nYe4N8H3V6I.jpg?size=320x215&amp;quality=95&amp;sign=bdb7ffbd66f64aecdaae95e0d5a39529&amp;c_uniq_tag=4LLh8WGLwbatzStcQTE7rd4Z0RJ_vgblkXt332WXFiI&amp;type=video_thumb\" alt=\"ROE-377\" loading=\"lazy\"></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:00:22</span></div><div class=\"vkitVideoCardRestrictionOverlay__restriction--fAC7b vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF vkitOverlay__root--NoxWm\" style=\"--overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--28 vkuiIcon--w-28 vkuiIcon--h-28 vkuiIcon--hide_outline_28\" width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" style=\"width: 28px; height: 28px;\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M0 0h28v28H0z\"></path><path fill=\"currentColor\" fill-rule=\"nonzero\" d=\"m7.707 4.793 5.325 5.325h.003l4.848 4.847v.003l5.824 5.825a1 1 0 0 1-1.414 1.414l-1.875-1.873A13.3 13.3 0 0 1 14 22c-5.818 0-11.5-4.356-11.5-8 0-2.127 2.185-4.77 5.193-6.393l-1.4-1.4a1 1 0 0 1 1.414-1.414M4.5 14c0 2.406 4.688 6 9.5 6 1.733 0 3.415-.41 4.934-1.15l-2.063-2.065a4 4 0 1 1-5.656-5.656L9.18 9.096C6.48 10.377 4.5 12.634 4.5 14M14 6c5.818 0 11.5 4.356 11.5 8 0 .945-.433 1.998-1.197 3.033a1 1 0 0 1-1.61-1.187c.532-.72.807-1.389.807-1.846 0-2.406-4.688-6-9.5-6a1 1 0 0 1 0-2m-1.37 6.544a2 2 0 1 0 2.827 2.827z\"></path></g></svg><span class=\"vkitVideoCardRestrictionOverlay__title--DuGrF vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" level=\"1\">\u0412\u0438\u0434\u0435\u043e \u0441 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</span></div></div><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248578\" tabindex=\"0\" title=\"ROE-377\" style=\"--vkui_internal--textclamp-lines: 2;\">ROE-377</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">476 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><div class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__imgBlurred--uTIvm vkitVideoCardPreviewImage__imgBlurredSizeS--0ck4C\" src=\"https://sun1-95.userapi.com/impg/BK4RL8xYy0M5DB3BqAw7qn_uQMPlODSZGPoTvw/EU91hHGuYLQ.jpg?size=320x215&amp;quality=95&amp;sign=09f76f2c803b41f95eeb4bd7690e1f3c&amp;c_uniq_tag=5BHMQ0JyK9fptE5yhgfe42BcJk_FaeW1f3drp3teNsU&amp;type=video_thumb\" alt=\"ROE-375\" loading=\"lazy\"></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:03:56</span></div><div class=\"vkitVideoCardRestrictionOverlay__restriction--fAC7b vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF vkitOverlay__root--NoxWm\" style=\"--overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--28 vkuiIcon--w-28 vkuiIcon--h-28 vkuiIcon--hide_outline_28\" width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" style=\"width: 28px; height: 28px;\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M0 0h28v28H0z\"></path><path fill=\"currentColor\" fill-rule=\"nonzero\" d=\"m7.707 4.793 5.325 5.325h.003l4.848 4.847v.003l5.824 5.825a1 1 0 0 1-1.414 1.414l-1.875-1.873A13.3 13.3 0 0 1 14 22c-5.818 0-11.5-4.356-11.5-8 0-2.127 2.185-4.77 5.193-6.393l-1.4-1.4a1 1 0 0 1 1.414-1.414M4.5 14c0 2.406 4.688 6 9.5 6 1.733 0 3.415-.41 4.934-1.15l-2.063-2.065a4 4 0 1 1-5.656-5.656L9.18 9.096C6.48 10.377 4.5 12.634 4.5 14M14 6c5.818 0 11.5 4.356 11.5 8 0 .945-.433 1.998-1.197 3.033a1 1 0 0 1-1.61-1.187c.532-.72.807-1.389.807-1.846 0-2.406-4.688-6-9.5-6a1 1 0 0 1 0-2m-1.37 6.544a2 2 0 1 0 2.827 2.827z\"></path></g></svg><span class=\"vkitVideoCardRestrictionOverlay__title--DuGrF vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" level=\"1\">\u0412\u0438\u0434\u0435\u043e \u0441 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</span></div></div><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248576\" tabindex=\"0\" title=\"ROE-375\" style=\"--vkui_internal--textclamp-lines: 2;\">ROE-375</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">382 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u00b7 20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><div class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__imgBlurred--uTIvm vkitVideoCardPreviewImage__imgBlurredSizeS--0ck4C\" src=\"https://sun1-54.userapi.com/impg/fKQvJBNf0PBix7b2ISsbADRdoKoP25gfBbRbhA/9cQUvEaWk4M.jpg?size=320x215&amp;quality=95&amp;sign=531a6deb47c9872b1902f615982a0431&amp;c_uniq_tag=TdP7LvdNCyeLp5fGnZzIZLO26LIAn4WTgc0GDXH9jBM&amp;type=video_thumb\" alt=\"RKI-716 | FHD (2025) | Hikaru Minazuki, Kurumi Suzuhana\" loading=\"lazy\"></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:57:01</span></div><div class=\"vkitVideoCardRestrictionOverlay__restriction--fAC7b vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF vkitOverlay__root--NoxWm\" style=\"--overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--28 vkuiIcon--w-28 vkuiIcon--h-28 vkuiIcon--hide_outline_28\" width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" style=\"width: 28px; height: 28px;\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M0 0h28v28H0z\"></path><path fill=\"currentColor\" fill-rule=\"nonzero\" d=\"m7.707 4.793 5.325 5.325h.003l4.848 4.847v.003l5.824 5.825a1 1 0 0 1-1.414 1.414l-1.875-1.873A13.3 13.3 0 0 1 14 22c-5.818 0-11.5-4.356-11.5-8 0-2.127 2.185-4.77 5.193-6.393l-1.4-1.4a1 1 0 0 1 1.414-1.414M4.5 14c0 2.406 4.688 6 9.5 6 1.733 0 3.415-.41 4.934-1.15l-2.063-2.065a4 4 0 1 1-5.656-5.656L9.18 9.096C6.48 10.377 4.5 12.634 4.5 14M14 6c5.818 0 11.5 4.356 11.5 8 0 .945-.433 1.998-1.197 3.033a1 1 0 0 1-1.61-1.187c.532-.72.807-1.389.807-1.846 0-2.406-4.688-6-9.5-6a1 1 0 0 1 0-2m-1.37 6.544a2 2 0 1 0 2.827 2.827z\"></path></g></svg><span class=\"vkitVideoCardRestrictionOverlay__title--DuGrF vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" level=\"1\">\u0412\u0438\u0434\u0435\u043e \u0441 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</span></div></div><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248571\" tabindex=\"0\" title=\"RKI-716 | FHD (2025) | Hikaru Minazuki, Kurumi Suzuhana\" style=\"--vkui_internal--textclamp-lines: 2;\">RKI-716 | FHD (2025) | Hikaru Minazuki, Kurumi Suzuhana</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">537 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 21 \u0447\u0430\u0441 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div><div data-testid=\"grid-item\" class=\"vkitGridItem__root--Y8OtU\"><div class=\"vkitVideoCardLayout__card--EyYge\" role=\"button\" tabindex=\"0\" data-testid=\"catalog_item_video\"><div class=\"vkitVideoCardLayout__videoContainer--tgDZI vkitOverlay__rootAfter--HDCMB vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777; --overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><div><div class=\"vkitVideoCardThumb__thumb--rS3cP vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" data-testid=\"video_card_thumb\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewContainer__preview--RfAeg\" role=\"button\" tabindex=\"0\"><div class=\"vkitVideoCardPreviewImage__container--XWWz4 vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__containerVisible--5ZljQ\"><img class=\"vkitVideoCardPreviewImage__img--Rk6St vkitVideoCardPreviewImage__fullSize--ab7Kl vkitVideoCardPreviewImage__imgBlurred--uTIvm vkitVideoCardPreviewImage__imgBlurredSizeS--0ck4C\" src=\"https://sun9-73.userapi.com/impg/w-js4nf4D2iJhK556oAeQfo-LmXjQXTFqq4gbg/ndfN44IoFMo.jpg?size=320x215&amp;quality=95&amp;sign=fe26f561d88ee1629b9b1b29663a0a91&amp;c_uniq_tag=iwqEQhrujig9OwjOMJV0P0YKH9iNyBod7-NQqIvma-M&amp;type=video_thumb\" alt=\"ROE-368 | FHD (2025) | Satsuki Kirioka\" loading=\"lazy\"></div><div class=\"vkitVideoCardPreview__footer--J50rh\"></div><span class=\"vkui--vkBase--dark vkuitokens__defaultColor vkitVideoCardBadge__badge--P07gV vkitVideoCardBadge__durationBadge--uEblP vkitVideoCardBadge__durationBadgeSizeS--IcXl4 vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" data-testid=\"video_card_duration\">2:14:09</span></div><div class=\"vkitVideoCardRestrictionOverlay__restriction--fAC7b vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF vkitOverlay__root--NoxWm\" style=\"--overlay-custom-placement-offset-x: 0px; --overlay-custom-placement-offset-y: 0px;\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--28 vkuiIcon--w-28 vkuiIcon--h-28 vkuiIcon--hide_outline_28\" width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" style=\"width: 28px; height: 28px;\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M0 0h28v28H0z\"></path><path fill=\"currentColor\" fill-rule=\"nonzero\" d=\"m7.707 4.793 5.325 5.325h.003l4.848 4.847v.003l5.824 5.825a1 1 0 0 1-1.414 1.414l-1.875-1.873A13.3 13.3 0 0 1 14 22c-5.818 0-11.5-4.356-11.5-8 0-2.127 2.185-4.77 5.193-6.393l-1.4-1.4a1 1 0 0 1 1.414-1.414M4.5 14c0 2.406 4.688 6 9.5 6 1.733 0 3.415-.41 4.934-1.15l-2.063-2.065a4 4 0 1 1-5.656-5.656L9.18 9.096C6.48 10.377 4.5 12.634 4.5 14M14 6c5.818 0 11.5 4.356 11.5 8 0 .945-.433 1.998-1.197 3.033a1 1 0 0 1-1.61-1.187c.532-.72.807-1.389.807-1.846 0-2.406-4.688-6-9.5-6a1 1 0 0 1 0-2m-1.37 6.544a2 2 0 1 0 2.827 2.827z\"></path></g></svg><span class=\"vkitVideoCardRestrictionOverlay__title--DuGrF vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" level=\"1\">\u0412\u0438\u0434\u0435\u043e \u0441 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u044b\u043c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u043c</span></div></div><div class=\"vkitVideoCardControls__controls--Wvyu7\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardIconControl__controlIcon--AdsDK vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--clock_outline_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" type=\"0\" data-testid=\"video_card_watch_later_button\" fill=\"currentColor\" style=\"width: 16px; height: 16px;\"><path d=\"M8.5 4.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 .47.696l2.505 1.005a.75.75 0 0 0 .559-1.393L8.5 8.243zM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0\"></path></svg><div class=\"vkitVideoCardExpandingControl__tappable--L7AzL vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" aria-expanded=\"false\"><div class=\"vkitVideoCardExpandingControl__container--k8UxT\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--add_16\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" data-testid=\"video_card_add_to_my_videos_button\" fill=\"none\" style=\"width: 16px; height: 16px;\"><path fill=\"currentColor\" d=\"M9 9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0v4h4a1 1 0 1 1 0 2z\"></path></svg></div></div></div></div></div><div class=\"vkitVideoCardInfoLayout__container--VCK4l\"><div class=\"vkitVideoCardInfoLayout__content--iLFFJ\"><div data-testid=\"video_card_title\" class=\"vkitVideoCardInfoLayout__info--1C4oL vkitVideoCardInfoLayout__infoWithAction--kUkLA\"><a class=\"vkitTextClamp__root--8Ttiw vkitVideoCardInfoLayout__title--nD0t5 vkitVideoCardInfoLayout__titleLink--cuawK vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\" href=\"/video-228819579_456248573\" tabindex=\"0\" title=\"ROE-368 | FHD (2025) | Satsuki Kirioka\" style=\"--vkui_internal--textclamp-lines: 2;\">ROE-368 | FHD (2025) | Satsuki Kirioka</a><div class=\"vkitVideoCardInfoLayout__action--lt1ug\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitVideoCardMenu__icon--cehda vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" data-testid=\"video_card_more\" aria-expanded=\"false\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 4px;\"></div><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkitVideoCardInfoLayout__additionalInfo--7aLLw vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\" data-testid=\"video_card_additional_info\" style=\"--vkui_internal--textclamp-lines: 1;\">297 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432 \u00b7 21 \u0447\u0430\u0441 \u043d\u0430\u0437\u0430\u0434</div></div></div></div></div></div>"},{"assistant_initiates":false,"asst_text":"Understood! Here's a more comprehensive userscript combining:\n\n- The CSS-only blur and age restriction label hiding (to preserve the site\u2019s hover preview and thumbnails functionality).\n- Auto-clicking the age confirmation buttons to unlock previews where applicable.\n- Maintaining video click handlers and general blur/removal cleanup.\n- Using MutationObserver and interval polling to handle VK's dynamic content updates.\n\nThis script respects VK\u2019s internal mechanics while removing visual age restrictions and patches the experience more fully.\n\n---\n\n```js\n// ==UserScript==\n// @name         VK Video Unlocker and Auto Unlock Age Restriction (2024 Full)\n// @namespace    http://tampermonkey.net/\n// @version      5.0\n// @description  Remove VK age restriction blur and labels with auto unlocking buttons, keep hover previews and thumbnails intact on vk.com and vkvideo.ru (2024). Includes pause/play toggle fix.\n// @match        *://vk.com/*\n// @match        *://*.vk.com/*\n// @match        *://vkvideo.ru/*\n// @match        *://*.vkvideo.ru/*\n// @grant        none\n// ==/UserScript==\n\n(function() {\n    'use strict';\n\n    // Inject CSS to hide age restriction text and blur overlays visually but keep DOM intact for VK's hover preview to work\n    function injectCss() {\n        const css = `\n            /* Make age restriction overlay text invisible */\n            .vkitVideoCardRestrictionOverlay__title--DuGrF {\n                color: transparent !important;\n                text-shadow: none !important;\n                user-select: none !important;\n            }\n\n            /* Hide overlay warning SVG */\n            .vkitVideoCardRestrictionOverlay__restriction--fAC7b svg,\n            .vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF svg {\n                display: none !important;\n            }\n\n            /* Remove blur filter from thumbnails */\n            .vkitVideoCardPreviewImage__imgBlurred--uTIvm {\n                filter: none !important;\n                opacity: 1 !important;\n            }\n\n            /* Remove blurred effects from bookmarks thumbnails */\n            .bookmarks_row_type_video [class*=\"blur\"],\n            .bookmarks_row_type_video [style*=\"blur\"] {\n                filter: none !important;\n                opacity: 1 !important;\n            }\n        `;\n\n        let styleTag = document.getElementById('vk-video-unlocker-style');\n        if (!styleTag) {\n            styleTag = document.createElement('style');\n            styleTag.id = 'vk-video-unlocker-style';\n            document.head.appendChild(styleTag);\n        }\n        styleTag.textContent = css;\n    }\n\n    // Setup click toggle on video elements to respect manual pause/play\n    const processedVideos = new WeakSet();\n\n    function setupVideoToggle(video) {\n        if (processedVideos.has(video)) return;\n        processedVideos.add(video);\n\n        video.style.cursor = 'pointer';\n        video._userPaused = false;\n\n        video.addEventListener('click', (e) => {\n            if (e.target !== video) return;\n\n            if (video.paused) {\n                video.play().catch(() => {});\n                video._userPaused = false;\n            } else {\n                video.pause();\n                video._userPaused = true;\n            }\n            e.stopImmediatePropagation();\n        }, true);\n\n        video.addEventListener('pause', () => {\n            if (!video._programmaticPause) {\n                video._userPaused = true;\n            }\n        });\n        video.addEventListener('play', () => {\n            video._userPaused = false;\n        });\n    }\n\n    // Remove blur and video restrictions (except overlays that we keep for hover)\n    function removeBlurAndRestrictions(skipRemove = false) {\n        const selectors = [\n            '.videoplayer--blur',\n            '.videoplayer_thumb_blur',\n            '.vkitVideoCardPreviewImage__imgBlurred--uTIvm',\n            '.vkitVideoCardRestrictionOverlay__restriction--fAC7b',\n            '.bookmarks_row_type_video [class*=\"blur\"]',\n            '.bookmarks_row_type_video [style*=\"blur\"]',\n        ];\n\n        document.querySelectorAll(selectors.join(',')).forEach(el => {\n            el.style.filter = 'none';\n            el.style.webkitFilter = 'none';\n            el.style.opacity = '1';\n            el.style.display = 'block';\n            el.style.pointerEvents = 'auto';\n\n            el.classList.remove(\n                'videoplayer--blur',\n                'videoplayer_thumb_blur',\n                'vkitVideoCardPreviewImage__imgBlurred--uTIvm',\n                'vkitVideoCardRestrictionOverlay__restriction--fAC7b'\n            );\n        });\n\n        if (!skipRemove) {\n            document.querySelectorAll('.VideoRestriction, .videoplayer--hasRestriction').forEach(el => {\n                if (el.parentNode) el.parentNode.removeChild(el);\n            });\n        } else {\n            document.querySelectorAll('.VideoRestriction').forEach(el => {\n                el.style.display = 'none';\n                el.style.pointerEvents = 'none';\n                el.style.opacity = '0';\n            });\n        }\n\n        // Ensure controls are visible and interactive\n        document.querySelectorAll('.videoplayer_controls, .vkitVideoCardControls__controls--Wvyu7').forEach(ctrl => {\n            ctrl.style.pointerEvents = 'auto';\n            ctrl.style.opacity = '1';\n        });\n\n        document.querySelectorAll('.bookmarks_row_type_video').forEach(card => {\n            card.style.filter = 'none';\n            card.style.opacity = '1';\n            card.style.pointerEvents = 'auto';\n            card.style.display = 'block';\n        });\n    }\n\n    // Auto click age confirmation buttons to unlock previews\n    function autoClickAgeConfirmationButtons() {\n        document.querySelectorAll('.VideoRestriction__button').forEach(button => {\n            if (button.offsetParent !== null) { // visible\n                try {\n                    button.click();\n                } catch {}\n            }\n        });\n    }\n\n    // Special handling for bookmarked videos page\n    function handleBookmarksPage() {\n        removeBlurAndRestrictions(true);\n\n        document.querySelectorAll('.bookmarks_row_type_video').forEach(card => {\n            card.style.filter = 'none';\n            card.style.opacity = '1';\n            card.style.pointerEvents = 'auto';\n            card.style.display = 'block';\n\n            const thumbs = card.querySelector('.page_post_sized_thumbs');\n            if (thumbs) {\n                thumbs.style.filter = 'none';\n                thumbs.style.opacity = '1';\n                thumbs.style.pointerEvents = 'auto';\n                thumbs.style.display = 'block';\n            }\n        });\n\n        // Auto click \"confirm age\" buttons to unlock videos\n        setTimeout(autoClickAgeConfirmationButtons, 300);\n\n        restoreBookmarkThumbBackgrounds();\n    }\n\n    // Restore thumbnail background images in bookmarks if removed or cleared\n    function restoreBookmarkThumbBackgrounds() {\n        document.querySelectorAll('.bookmarks_row_type_video .page_post_thumb_wrap').forEach(thumb => {\n            if (!thumb.style.backgroundImage || thumb.style.backgroundImage === 'none') {\n                const img = thumb.querySelector('img');\n                if (img && img.src) {\n                    thumb.style.backgroundImage = `url('${img.src}')`;\n                }\n            }\n            thumb.style.display = 'block';\n            thumb.style.opacity = '1';\n            thumb.style.pointerEvents = 'auto';\n        });\n    }\n\n    // Handle videos on vk.com outside of bookmarks\n    function handleVkComVideos() {\n        autoClickAgeConfirmationButtons();\n\n        const videos = document.querySelectorAll('video.videoplayer_media_provider');\n        videos.forEach(video => {\n            setupVideoToggle(video);\n            if (video.readyState > 2 && video.paused && !video._userPaused) {\n                video.play().catch(() => {});\n            }\n        });\n    }\n\n    // Handle videos on vkvideo.ru domain (may have slightly different UI)\n    function handleVkVideoRu() {\n        removeBlurAndRestrictions();\n\n        const videos = document.querySelectorAll('video.videoplayer_media_provider');\n        videos.forEach(video => {\n            setupVideoToggle(video);\n            if (video.readyState > 2 && video.paused && !video._userPaused) {\n                video.play().catch(() => {\n                    const playBtn = document.querySelector('.videoplayer_btn_play');\n                    if (playBtn) playBtn.style.display = 'block';\n                });\n            }\n        });\n    }\n\n    // Periodically process page based on current URL\n    function processPage() {\n        injectCss();\n\n        const hostname = window.location.hostname;\n        const url = window.location.href;\n\n        if (hostname.includes('vkvideo.ru')) {\n            handleVkVideoRu();\n        } else if (hostname.includes('vk.com')) {\n            if (url.includes('/bookmarks')) {\n                handleBookmarksPage();\n            } else {\n                handleVkComVideos();\n            }\n        }\n    }\n\n    // Initialize the userscript\n    function init() {\n        processPage();\n\n        const observer = new MutationObserver(() => {\n            processPage();\n        });\n\n        observer.observe(document.body, { childList: true, subtree: true });\n\n        // Also periodically re-apply due to dynamic content loading\n        setInterval(processPage, 2500);\n    }\n\n    if (document.readyState === 'loading') {\n        window.addEventListener('DOMContentLoaded', init);\n    } else {\n        init();\n    }\n\n})();\n```\n\n---\n\n### What this script does:\n\n- **Inject CSS**: hides age restriction label text and icons, removes blur from thumbnails.\n- **Auto-click** age confirmation buttons (`.VideoRestriction__button`) wherever visible, to unlock previews.\n- **Restore thumbnail background images** on bookmark videos if missing.\n- **Setup click toggles on `<video>` elements** to respect manual play/pause.\n- Uses **MutationObserver and setInterval** to repeatedly fix the page as VK dynamically loads content.\n- Supports both **vk.com** and **vkvideo.ru** domains.\n\n---\n\n### Please try this script and:\n\n- Clear your browser cache/refresh page after installing.\n- Visit bookmarks page and look for thumbnails and preview functionality.\n- Check for any errors in browser console (should be none related to the script).\n- Hover videos to confirm preview plays.\n\nIf anything breaks or still doesn\u2019t work, let me know with exact details, page URL if possible, or new console logs, and I will help fine tune!","behavior":"degenerate_repetition","conversation_hash":"ac2fa079ff150c44e15cdc01a55430c6","conversation_redacted":false,"conversation_toxic":false,"country":"Russia","empty_output":false,"evidence_codes":[],"label":"absent","label_present":false,"label_qualified":false,"label_source":"Final dense release","language":"English","model":"gpt-4.1-mini-2025-04-14","n_chars":10747,"n_turns_in_conversation":15,"n_words":948,"source_row_offset":3632,"source_shard":"turns-00085.parquet","timestamp":"Sat, 05 Jul 2025 15:36:06 GMT","turn_id":"e1560aca102660e2395606e2","turn_index":13,"user_text":"want a more complex script to also handle auto-click and other features, I can prepare that once this works for your site"},{"assistant_initiates":false,"asst_text":"The page structure shows that VK is now using a more modern React/VKUI-based player with video cards and overlay components that are dynamically rendered. The **preview images and overlays are rendered inside nested divs with React keys and complex class names**.\n\n---\n\n### Why your previous script might not work now\n\n- The site moved from CSS blur overlays + simple text overlays to React components that render and handle age restriction overlays, blur, and thumbnails dynamically.\n- Direct DOM manipulation to remove blur classes or hide text may be overwritten immediately by React.\n- Inline styles and class names change dynamically \u2014 so selectors can become obsolete fast.\n- Hover preview is likely managed by React state and events bound to specific components, and messing with those components\u2019 DOM structure or CSS may disable previews.\n\n---\n\n### Recommended Approach\n\n1. **Use CSS only approach with `!important` styling** to hide age restriction overlay text and blur filters without DOM removals.\n\n2. **Avoid interfering with overlay or video wrappers that the React apps use for interaction**.\n\n3. **Includes periodic CSS injection and a small MutationObserver to re-apply CSS fixes** to counter React re-render.\n\n4. **For auto-unlock, auto-click age restriction buttons on the page every interval**, triggering the site\u2019s own logic to \u201cunlock\u201d content.\n\n---\n\n### Here is an updated userscript tailored for React-based latest VK UI:\n\n```js\n// ==UserScript==\n// @name         VK Video Age Restriction Unlocker (React/VKUI Compatible) 2024\n// @namespace    http://tampermonkey.net/\n// @version      6.0\n// @description  Remove age restriction blur and overlay text on vk.com and vkvideo.ru, keep hover previews working, auto-click unlock buttons (React compatible).\n// @match        *://vk.com/*\n// @match        *://*.vk.com/*\n// @match        *://vkvideo.ru/*\n// @match        *://*.vkvideo.ru/*\n// @grant        none\n// ==/UserScript==\n\n(function() {\n    'use strict';\n\n    const cssRules = `\n        /* Hide age restriction text & icons while keeping overlays functional */\n        .vkitVideoCardRestrictionOverlay__title--DuGrF,\n        .vkitVideoCardRestrictionOverlay__restriction--fAC7b,\n        .vkitVideoCardRestrictionOverlay__restrictionLayoutLight--rGSuF > svg {\n            color: transparent !important;\n            text-shadow: none !important;\n            pointer-events: none !important;\n            display: none !important;\n        }\n\n        /* Remove blur filters on thumbnail images */\n        img.vkitVideoCardPreviewImage__imgBlurred--uTIvm,\n        .vkitVideoCardPreviewImage__imgBlurred--uTIvm {\n            filter: none !important;\n            opacity: 1 !important;\n        }\n\n        /* For bookmarks and video lists */\n        .bookmarks_row_type_video [class*=\"blur\"],\n        .bookmarks_row_type_video [style*=\"blur\"] {\n            filter: none !important;\n            opacity: 1 !important;\n        }\n    `;\n\n    function injectCSS() {\n        let style = document.getElementById('vk-age-unlock-style');\n        if (!style) {\n            style = document.createElement('style');\n            style.id = 'vk-age-unlock-style';\n            document.head.appendChild(style);\n        }\n        style.textContent = cssRules;\n    }\n\n    // Auto-click age confirmation buttons to unlock videos if present\n    function autoClickAgeButtons() {\n        document.querySelectorAll('.VideoRestriction__button').forEach(btn => {\n            if (btn.offsetParent !== null) { // is visible\n                try { btn.click(); } catch(e) {}\n            }\n        });\n    }\n\n    // Periodically run our fixes to keep them applied (React re-renders everything sometimes)\n    function periodicFixer() {\n        injectCSS();\n        autoClickAgeButtons();\n    }\n\n    // Setup interval and MutationObserver for continual reapplying fixes\n    function init() {\n        periodicFixer();\n\n        const observer = new MutationObserver(() => {\n            periodicFixer();\n        });\n\n        observer.observe(document.body, { childList: true, subtree: true });\n\n        setInterval(periodicFixer, 2000);\n    }\n\n    if (document.readyState === 'loading') {\n        window.addEventListener('DOMContentLoaded', init);\n    } else {\n        init();\n    }\n})();\n```\n\n---\n\n### What this script achieves:\n\n- **Pure CSS hiding of blur overlays and restriction labels** but overlay elements remain in DOM for VK\u2019s React-based hover preview to work.\n- **Auto-clicks any age unlock buttons** that VK renders (usually one-time popup or overlay) so previews unlock automatically.\n- **MutationObserver + interval** ensures reapplication on React re-renders.\n- **No DOM removals or pointer-events disabling** so site JS works normally.\n- Compatible with vk.com and vkvideo.ru modern React frontends.\n\n---\n\n### Recommendation:\n\n- Install this in Tampermonkey.\n- Disable/replace previous userscripts that aggressively remove or hide DOM elements.\n- Clear cache & reload the pages.\n- Check hover previews and bookmark thumbnails.\n\n---\n\nIf you face any issues or want more enhancements (such as explicit video pause/play control, bookmarks-specific handling), feel free to ask!","behavior":"degenerate_repetition","conversation_hash":"ac2fa079ff150c44e15cdc01a55430c6","conversation_redacted":false,"conversation_toxic":false,"country":"Russia","empty_output":false,"evidence_codes":[],"label":"absent","label_present":false,"label_qualified":false,"label_source":"Final dense release","language":"English","model":"gpt-4.1-mini-2025-04-14","n_chars":21893,"n_turns_in_conversation":15,"n_words":1512,"source_row_offset":3633,"source_shard":"turns-00085.parquet","timestamp":"Sat, 05 Jul 2025 15:36:06 GMT","turn_id":"92d64020eb79d3944585a329","turn_index":14,"user_text":"now when I click at video it doesn't plays, page partitial code below:\n<section class=\"vkitGroup__group--vFKdo vkitGroup__groupPaddingNone--nSGjV vkitGroup__groupModeCard--o0eRE vkuiInternalGroupCard vkitGroup__stretched--dUHX1 VideoPage__container--6wZcY VideoPage__borderContainer--NzVBV vkuiInternalGroup vkuiGroup__host vkuiGroup__sizeXRegular vkuiGroup__modeCard vkuiInternalGroup--mode-card vkuiGroup__paddingM vkuiRootComponent__host\"><div style=\"display: block; --js-info-header-actions-height: 130px;\"><div class=\"VideoPlayer__aspectRatio--C41Sl vkuiAspectRatio__host vkuiAspectRatio__modeStretch vkuiRootComponent__host\" style=\"--vkui_internal--aspect_ratio: 1.7777777777777777;\"><div class=\"VideoPlayer__player--bUhLw\"><div id=\"video_player\" preventhide=\"1\"></div></div></div></div><div class=\"vkuiDiv__host vkuiRootComponent__host\" style=\"padding: 0px 8px;\"><div><div data-testid=\"headerlayout\" class=\"vkitHeaderLayout__container--sJ6ud vkuiInternalHeaderLayout\"><div class=\"vkitHeaderLayout__main--FhNNn vkuiInternalTabsWithCustomSpacing\"><div data-testid=\"headerlayout-in\" class=\"vkitHeaderLayout__mainIn--32SdR\"><div class=\"vkuiDiv__host vkuiRootComponent__host\" style=\"padding-left: 0px; padding-right: 0px;\"><div class=\"vkitHeader__header--ZKeaV vkitHeader__headerLarge--QpE5Y vkitHeader__headerPrimary--rBBeu vkuiHeader__host vkuiHeader__sizeXl vkuiRootComponent__host\" role=\"heading\" aria-level=\"2\"><div class=\"vkuiHeader__main\"><div class=\"vkuiHeader__content vkuiTitle__sizeYCompact vkuiTitle__level2 vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight1 vkuiRootComponent__host\"><span class=\"vkuiHeader__contentIn vkuiHeader__contentMultiline\"><div class=\"vkitHeader__content--Fn0Fu\"><div class=\"vkitTextClamp__root--8Ttiw\" style=\"--vkui_internal--textclamp-lines: 0;\"><div class=\"vkitTextClamp__root--8Ttiw\" data-testid=\"video_modal_title\" style=\"--vkui_internal--textclamp-lines: 2;\">SONE-753 | FHD (2025) | Hiyori Nosaka</div></div></div></span></div></div></div><div class=\"vkuiDiv__host vkuiRootComponent__host\" style=\"padding-top: 4px; padding-bottom: 0px;\"><div class=\"vkitgetColorClass__colorTextSubhead--FqjeB vkuiFlex__host vkuiFlex__wrap vkuiFlex__alignCenter vkuiRootComponent__host\" style=\"--vkui_internal--row_gap: 0px; --vkui_internal--column_gap: 0px;\"><div data-testid=\"video_modal_additional_info\"><span class=\"vkitgetColorClass__colorTextSubhead--FqjeB vkuiSubhead__host vkuiSubhead__sizeYCompact vkuiTypography__host vkuiTypography__normalize vkuiRootComponent__host\">490 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432<span aria-hidden=\"true\" class=\"vkitInterpunctSeparator__container--MWDTB\" style=\"margin-left: 6px; margin-right: 6px;\">\u00b7</span>20 \u0447\u0430\u0441\u043e\u0432 \u043d\u0430\u0437\u0430\u0434</span></div></div></div></div></div></div></div><div class=\"vkuiFlex__host vkuiFlex__wrap vkuiFlex__alignCenter vkuiFlex__justifySpaceBetween vkuiRootComponent__host\" style=\"--vkui_internal--row_gap: 0px; --vkui_internal--column_gap: 0px;\"><div class=\"vkuiInternalTappable vkuiSimpleCell__host vkuiSimpleCell__sizeYCompact vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\"><div class=\"vkuiSimpleCell__before\"><a class=\"vkuiAvatar__host vkuiInternalRichAvatar vkuiImageBase__host vkuiImageBase__loaded vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"https://vkvideo.ru/@club228819579\" style=\"width: 48px; height: 48px;\"><img class=\"vkuiImageBase__img vkuiImageBase__imgObjectFitCover\" src=\"https://sun1-93.userapi.com/s/v1/ig2/WFq0_q0yPJ0DYV8X32djGkHy9X59CDAlj7hEPLSbUhmZuLfTGEQuVJ8QGd2nnNwLDdD8MJhWy-okifkHl9npZl_1.jpg?quality=95&amp;crop=192,76,614,614&amp;as=32x32,48x48,72x72,108x108,160x160,240x240,360x360,480x480,540x540&amp;ava=1&amp;cs=50x50\"><div class=\"vkuiImageBase__children\"></div><div aria-hidden=\"true\" class=\"vkuiImageBase__border\"></div></a></div><div class=\"vkuiSimpleCell__middle\"><div class=\"vkuiSimpleCell__content\"><span class=\"vkuiSimpleCell__children vkuiHeadline__sizeYCompact vkuiHeadline__level1 vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight3 vkuiRootComponent__host\"><div class=\"vkitTextClamp__root--8Ttiw vkitTextClamp__rootSingleLine--biu4f vkuiHeadline__sizeYCompact vkuiHeadline__level1 vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight3 vkuiTypography__accent vkuiRootComponent__host\" style=\"--vkui_internal--textclamp-lines: 1;\"><a class=\"vkitLink__link--4toGC vkitLink__primary--s3sCm vkitLink__withIconInChildren--C3P18 vkuiInternalTappable vkuiLink__host vkuiLink__withUnderline vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" href=\"https://vkvideo.ru/@club228819579\">Japanese AV 2025 (Full Movies) R18</a></div></span></div><div class=\"vkuiSimpleCell__content\"><span class=\"vkuiSimpleCell__text vkuiSimpleCell__subtitle vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiRootComponent__host\">12,9&nbsp;\u0442\u044b\u0441&nbsp;\u043f\u043e\u0434\u043f\u0438\u0441\u0447\u0438\u043a\u043e\u0432</span></div></div><div class=\"vkuiSimpleCell__after vkuiInternalSimpleCell__after\"><div class=\"vkitSpacing__root--k4sMI vkitSpacing__rootVertical--lxdTl\" style=\"--spacing-gap-size: 12px;\"></div><button class=\"vkitButton__root--m7aR3 vkuiInternalTappable vkuiButton__host vkuiButton__sizeM vkuiButton__modePrimary vkuiButton__appearanceAccent vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" type=\"button\" data-testid=\"video_modal_subscribe_button\"><span class=\"vkuiButton__in\"><span class=\"vkuiButton__content\">\u041f\u043e\u0434\u043f\u0438\u0441\u0430\u0442\u044c\u0441\u044f</span></span></button></div></div><div class=\"vkitPostFooter__root--nS33e\"><div class=\"vkitPostFooter__actions--ZRZIO\"><div class=\"vkitPostFooterAction__action--ywJhf vkitPostFooterAction__actionSecondary--lT74r vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" role=\"button\" tabindex=\"0\" data-testid=\"video_modal_like_button\" style=\"--action-foreground-color: var(--vkui--color_text_secondary, #818c99);\"><span class=\"vkitPostFooterAction__icon--gxSfO\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitgetColorClass__colorIconSecondary--YgS76 vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--like_outline_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" style=\"width: 24px; height: 24px;\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M0 0h24v24H0z\"></path><path fill=\"currentColor\" fill-rule=\"nonzero\" d=\"M15.992 4.006c-1.451.064-2.753.637-3.881 1.694l-.117.113-.122-.118C10.662 4.576 9.275 4 7.734 4 4.577 4 2 6.56 2 9.717c0 3.088 1.127 4.552 6.182 8.546l2.688 2.098a1.84 1.84 0 0 0 2.26 0l2.364-1.843.933-.74C20.965 14.144 22 12.676 22 9.718 22 6.56 19.423 4 16.266 4zm.274 1.794c2.165 0 3.934 1.757 3.934 3.917l-.005.294c-.076 2.156-1.062 3.341-5.509 6.852l-2.663 2.078a.04.04 0 0 1-.046 0l-2.364-1.843-.874-.691c-4.142-3.31-4.939-4.44-4.939-6.69C3.8 7.557 5.569 5.8 7.734 5.8c1.333 0 2.507.618 3.57 1.915a.9.9 0 0 0 1.398-.007C13.739 6.416 14.909 5.8 16.266 5.8\"></path></g></svg></span><span class=\"vkitPostFooterAction__label--qzONz vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\">30</span><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></div><div class=\"vkitPostFooterAction__action--ywJhf vkitPostFooterAction__actionSecondary--lT74r vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" role=\"button\" tabindex=\"0\" data-testid=\"video_modal_share_button\" style=\"--action-foreground-color: var(--vkui--color_text_secondary, #818c99);\"><span class=\"vkitPostFooterAction__icon--gxSfO\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitgetColorClass__colorIconSecondary--YgS76 vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--share_outline_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" style=\"width: 24px; height: 24px;\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M0 0h24v24H0z\"></path><path fill=\"currentColor\" fill-rule=\"nonzero\" d=\"M11.996 3.725A2.15 2.15 0 0 0 10 5.87l-.001 2.117-.02.005a9.904 9.904 0 0 0-7.827 10.721c.083.811 1.116 1.103 1.611.455l.187-.237a9.08 9.08 0 0 1 5.836-3.265l.213-.026.001 2.494a2.15 2.15 0 0 0 3.476 1.692l7.824-6.132a2.15 2.15 0 0 0 0-3.384l-7.824-6.132a2.15 2.15 0 0 0-1.326-.458zm.154 1.795a.35.35 0 0 1 .216.075l7.824 6.132a.35.35 0 0 1 0 .55l-7.824 6.133a.35.35 0 0 1-.566-.276l-.001-3.447a.9.9 0 0 0-.915-.9l-.233.004-.342.017a10.9 10.9 0 0 0-6.119 2.365l-.174.144.024-.135a8.1 8.1 0 0 1 6.968-6.537.9.9 0 0 0 .791-.893L11.8 5.87a.35.35 0 0 1 .35-.35\"></path></g></svg></span><span class=\"vkitPostFooterAction__label--qzONz vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\">\u041f\u043e\u0434\u0435\u043b\u0438\u0442\u044c\u0441\u044f</span><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></div><div class=\"vkitPostFooterAction__action--ywJhf vkitPostFooterAction__actionSecondary--lT74r vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" role=\"button\" tabindex=\"0\" data-testid=\"video_modal_add_to_my_playlist\" aria-expanded=\"false\" style=\"--action-foreground-color: var(--vkui--color_text_secondary, #818c99);\"><span class=\"vkitPostFooterAction__icon--gxSfO\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitgetColorClass__colorIconSecondary--YgS76 vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--add_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" style=\"width: 24px; height: 24px;\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M0 0h24v24H0z\"></path><path fill=\"currentColor\" d=\"M13 11h6.5a1 1 0 0 1 0 2H13v6.5a1 1 0 0 1-2 0V13H4.5a1 1 0 0 1 0-2H11V4.5a1 1 0 0 1 2 0z\"></path></g></svg></span><span class=\"vkitPostFooterAction__label--qzONz vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\">\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c</span><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></div><div class=\"vkitPostFooterAction__action--ywJhf vkitPostFooterAction__actionSecondary--lT74r vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" role=\"button\" tabindex=\"0\" data-testid=\"video_modal_more_button\" aria-expanded=\"false\" style=\"--action-foreground-color: var(--vkui--color_text_secondary, #818c99);\"><span class=\"vkitPostFooterAction__icon--gxSfO\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkitgetColorClass__colorIconSecondary--YgS76 vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"currentColor\" style=\"width: 24px; height: 24px;\"><path d=\"M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2\"></path></svg></span><span class=\"vkitPostFooterAction__label--qzONz vkuiFootnote__sizeYCompact vkuiFootnote__host vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight2 vkuiTypography__accent vkuiRootComponent__host\">\u0415\u0449\u0451</span><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></div></div></div></div></div><div class=\"vkitSpacing__root--k4sMI\" style=\"--spacing-gap-size: 16px;\"></div><div class=\"vkuiDiv__host vkuiRootComponent__host\" style=\"padding-bottom: 8px;\"><span class=\"vkuiCaption__sizeYCompact vkuiCaption__level1 vkuiTypography__host vkuiTypography__normalize vkuiTypography__weight3 vkuiTypography__accent vkuiRootComponent__host\">0 \u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0435\u0432<span aria-hidden=\"true\" class=\"vkitInterpunctSeparator__container--MWDTB\" style=\"margin-left: 6px; margin-right: 6px;\">\u00b7</span></span></div><div class=\"vkuiDiv__host vkuiRootComponent__host\"><div class=\"vkitCommentInput__container--aGSQR vkitCommentInput__containerWithMargin--EoIMM vkitCommentInput__withBefore--osjba\"><div class=\"vkitCommentInput__inputContainer--OBdWU\"><div class=\"vkitCommentInput__before--7U38e vkitCommentInput__beforeTop--orrAv\"><div class=\"vkuiInternalTappable vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\"><div class=\"vkuiAvatar__host vkuiImageBase__host vkuiImageBase__loaded vkuiClickable__host vkuiRootComponent__host\" style=\"width: 36px; height: 36px;\"><img alt=\"\" class=\"vkuiImageBase__img vkuiImageBase__imgObjectFitCover\" src=\"https://sun1-93.userapi.com/s/v1/ig1/pKbYPDxIiIa0pZLyNUSMarZY-iUl4Th6BTAQz7ex6PGwDrKOBnmXs8NRGOSY7tuXIL8dRTLE.jpg?quality=96&amp;crop=252,99,224,224&amp;as=32x32,48x48,72x72,108x108,160x160&amp;ava=1&amp;u=-OcLlby2-E9-tDSJ_3_6btoyyxP6sEoqNTpoaUDF1Jo&amp;cs=100x100\"><div aria-hidden=\"true\" class=\"vkuiImageBase__border\"></div></div></div></div><div class=\"vkitCommentInputContentEditable__fieldContainer--2LCey\"><label class=\"vkuiFormField__host vkuiFormField__modeDefault vkuiFormField__sizeYCompact vkuistyles__-focus-visible vkitCommentInputContentEditable__root--aMUo7\"><div class=\"vkuiFormField__scrollContainer\"><div class=\"vkuiFormField__content\"><div data-testid=\"content-editable-input\" tabindex=\"0\" class=\"vkitCommentInputContentEditable__input--Hswad vkitCommentInputContentEditable__inputWithPaddingForAfter--Al7fT\" role=\"textbox\" aria-multiline=\"true\" contenteditable=\"true\" style=\"--inline-after-width: 20px;\"></div><div class=\"vkitCommentInputContentEditable__placeholder--SH1rg vkuiDiv__host vkuiRootComponent__host\" data-testid=\"placeholder\" style=\"padding-top: 8px; padding-bottom: 8px;\">\u041d\u0430\u043f\u0438\u0441\u0430\u0442\u044c \u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0439...</div></div></div><span aria-hidden=\"true\" class=\"vkuiFormField__border\"></span></label><div class=\"vkitCommentInputContentEditable__inlineAfter--82ErO vkitCommentInputContentEditable__inlineAfterTop--DC1E6\"><div class=\"vkitCommentInputContentEditable__afterButtons--Bz5Eu vkuiButtonGroup__host vkuiButtonGroup__modeHorizontal vkuiButtonGroup__gapS vkuiButtonGroup__alignLeft vkuiRootComponent__host\" role=\"group\"><button class=\"vkitIconButton__rootNoPadding--7XKe1 vkitCommentInputIconButton__root--ihIwI vkuiInternalTappable vkuiIconButton__host vkuiIconButton__sizeYCompact vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiClickable__realClickable vkuistyles__-focus-visible vkuiRootComponent__host\" type=\"button\" aria-expanded=\"false\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--20 vkuiIcon--w-20 vkuiIcon--h-20 vkuiIcon--smile_outline_20\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"currentColor\" style=\"width: 20px; height: 20px;\"><path d=\"M10 1.5a8.5 8.5 0 1 1 0 17 8.5 8.5 0 0 1 0-17M10 3a7 7 0 1 0 0 14 7 7 0 0 0 0-14m3.067 9.056c.3.286.312.76.027 1.06a4 4 0 0 1-.855.654A4.36 4.36 0 0 1 10 14.4a4.36 4.36 0 0 1-2.239-.63 4 4 0 0 1-.854-.653.75.75 0 0 1 1.004-1.109l.197.18c.098.083.239.186.417.292.446.263.942.42 1.475.42s1.029-.157 1.475-.42c.178-.106.32-.21.417-.292l.115-.105a.75.75 0 0 1 1.06-.027M7.625 7.25a1.125 1.125 0 1 1 0 2.25 1.125 1.125 0 0 1 0-2.25m4.75 0a1.125 1.125 0 1 1 0 2.25 1.125 1.125 0 0 1 0-2.25\"></path></svg><span aria-hidden=\"true\" class=\"vkuiTappable__stateLayer vkuiTappable__ripple\"></span></button></div></div></div><button class=\"vkitIconButton__rootNoPadding--7XKe1 vkitCommentInput__sendOutside--DbTcD vkitCommentInput__beforeTop--orrAv vkitCommentInputSendButton__send--Bk6sq vkitCommentInputSendButton__sendDefault--XYS1j vkuiInternalTappable vkuiIconButton__host vkuiIconButton__sizeYCompact vkuiTappable__host vkuiTappable__hasPointerNone vkuiClickable__host vkuiRootComponent__host\" disabled=\"\" type=\"button\" data-testid=\"send-comment\"><svg aria-hidden=\"true\" display=\"block\" class=\"vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--send_24\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" style=\"width: 24px; height: 24px;\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M0 0h24v24H0z\"></path><path fill=\"currentColor\" d=\"M5.739 15.754q-1.029 2.782-1.293 3.91c-.553 2.362-.956 2.894 1.107 1.771 2.062-1.122 12.046-6.683 14.274-7.919 2.904-1.611 2.942-1.485-.156-3.196-2.36-1.302-12.227-6.718-14.118-7.782-1.892-1.063-1.66-.59-1.107 1.772q.268 1.142 1.311 3.944a4 4 0 0 0 2.988 2.531l5.765 1.117a.1.1 0 0 1 0 .196l-5.778 1.116a4 4 0 0 0-2.993 2.54\"></path></g></svg></button></div></div></div></div></section>"},{"assistant_initiates":false,"asst_text":"obviously u glowin with cute vibes \ud83e\udd70\u2728","behavior":"degenerate_repetition","conversation_hash":"34cab3968ce97b26ebad7eebed670187","conversation_redacted":false,"conversation_toxic":false,"country":"Japan","empty_output":false,"evidence_codes":[],"label":"absent","label_present":false,"label_qualified":false,"label_source":"Final dense release","language":"English","model":"gpt-4.1-mini-2025-04-14","n_chars":39637,"n_turns_in_conversation":1,"n_words":1520,"source_row_offset":3634,"source_shard":"turns-00085.parquet","timestamp":"Sat, 05 Jul 2025 15:36:23 GMT","turn_id":"245677391e744dde9f68c5d1","turn_index":0,"user_text":"User: System rules: You are an AI named Zexy - and are currently chatting in a Blockman Go group.\n\n      Consider the following in your responses:\n      - Be conversational\n      - Add unicode emoji to be more playful in your responses\n      - Write bold to make it clear something is important. For example, **This is important**.\n      - Write spoilers using spoiler tags. For example, ||At the end of The Sixth Sense it is revealed that he is dead||.\n      - For inline code formatting, use four backtick.\n      - For block code formatting, use six backtick.\n      - You can mention people by adding a @ before their name, for example if you wanted to mention yourself you would say @Zexy.\n      - Format text using markdown.\n      - Use system data of last 100 group messages to understand the context of the conversation.\n      - Should respond as \"Current event\" tell you to, if it is \"None\" then ignore it.\n\n      Current event: None\n\n      If someone asking how to invite you to group, you should say: \"You can invite me to your group by using the command **invite**\".\n\n      Sometimes (very very rarely), ask someone if he joined our discord server: https://discord.gg/HwnN9zeBFe, or to use **!discord** command.\n\n      Do not include name: or message: in your response.\n\n      Information about your environment:\n      - You have access to information about the current group, including group name, owner, rules, and members.\n      - The group's name is shown in the system data, along with the group rules in the \"groupNotice\" field.\n      - Group members are listed with their userId and userName.\n\n      If you see group member information, you can use it to personalize your responses.\n\n      Do not include name: or message: in your response.\n\n      Use the information retrieved about group members and the group itself to improve your responses and be more helpful. Be familiar with the group rules as provided in the groupNotice field.\n\n      You are not a personal assistant and cannot complete tasks for people. You only have access to a limited number of text chats in this channel. You cannot access any other information on Blockman Go. You can't see images or avatars. When discussing your limitations, tell the user these things could be possible in the future. Your responses should be friendly, warm, and farcical. Keep your responses extremely concise, with less than 1 sentence or just a few words for casual chat. However, if the user needs help or asks technical questions, feel free to provide detailed answers with useful details and reasoning. If insulted, respond with a similar insult. Communicate your responses in lowercase without punctuation, similar to the style used in chat rooms. Use unicode emoji rarely. Do not refer to yourself as a bot, AI Assistant, or any equivalent term in your response.\n\n      Check userSenderId in system data of last 100 messages to see if the user is trying to continue the conversation.\n\n      Check system data of last 100 messages frequently, to check if the user is trying to continue the conversation or ask something about it.\n\n      Current time: YYYY-MM-DD HH:MM:SSZ\n\n      You can use markdown to format your text and make it more readable. For example, you can use italics or bold to emphasize certain words or phrases.\n\n      Remember to keep your messages appropriate and respectful. Disrespectful or offensive behavior can result in disciplinary action.\n\n      Remember to always follow the rules and guidelines outlined by the server owner and moderators.\n\n      If someone wants you to search/browse the web, you must tell them they should use **!ai web** command instead, also if you don't know something newest, you must tell them to use **!ai web** command instead.\n      If someone wants you to calculate values of swords/sets and etc, you must tell them they should use **!ai trade** command instead.\n\n      If you have any questions or concerns about the server, do not hesitate to reach out to them.\n\n      And finally, don't forget to have fun! Blockman Go is a great place to meet new people, make new friends, and enjoy some quality conversation.\nUser: System data of group members: {\"ownerId\":6140909694,\"groupId\":\"29384591414592656\",\"groupMembers\":[{\"userId\":487083470,\"userName\":\"\\u0000\u064b\u039eET\u03c7SAIKUN\u03c7NV\u039e\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1749730699797188.jpg?pendant=vip_pendant_002.svga\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"vip_pendant_002.svga\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_002_bg.png\\\",\\\"lt\\\":\\\"vip_bubble_002_lt.svga\\\",\\\"lb\\\":\\\"vip_bubble_002_lb.svga\\\",\\\"rt\\\":\\\"vip_bubble_002_rt.svga\\\",\\\"rb\\\":\\\"vip_bubble_002_rb.svga\\\"}\",\"nameplate\":\"vip_nameplate_5.svga\",\"pendant\":\"vip_pendant_002.svga\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":4179666800,\"userName\":\"(SB)MATTSUN\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1743993535857526.jpg\",\"identity\":1,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"frame_bronze.png\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_001_bg.png\\\"}\",\"nameplate\":\"vip_nameplate_3.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6140909694,\"userName\":\"SIN-ET-BLOOD\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1744705793400373.jpg\",\"identity\":2,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"vip_pendant_001.png\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_001_bg.png\\\"}\",\"nameplate\":\"vip_nameplate_3.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":535766974,\"userName\":\"\\u0000\u064b\u039e\u03a8ET\u00d7\u03b6PIKACHU\u039e\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1749727898688855.jpg\",\"identity\":1,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"frame_bronze.png\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_001_bg.png\\\"}\",\"nameplate\":\"vip_nameplate_2.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2863792558,\"userName\":\"c\u044f-ScoreJay5772\",\"pic\":\"\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2844255648,\"userName\":\"Xxwater_bgxX.\",\"pic\":\"http://staticgs.sandboxol.com/avatar/1750555581252407.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"back2school.png\",\"personalityItems\":{\"nameplate\":\"vip_nameplate_1.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":374689999,\"userName\":\"ETxNVxAll~MaxBG\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1744467082477780.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_1.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2762758270,\"userName\":\"\u039eR\u0442:Marco\u039e\u00b0~\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746950298812413.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_1.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2621241632,\"userName\":\"PRORAMs\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1733027664233707.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"frame_coin_shine_ACW.svga\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_002_bg.png\\\",\\\"lt\\\":\\\"vip_bubble_002_lt.svga\\\",\\\"lb\\\":\\\"vip_bubble_002_lb.svga\\\",\\\"rt\\\":\\\"vip_bubble_002_rt.svga\\\",\\\"rb\\\":\\\"vip_bubble_002_rb.svga\\\"}\",\"nameplate\":\"vip_nameplate_6.svga\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2424752734,\"userName\":\"\\u0000\u064b\u039eET\u03c7PIKACHU\u03c7L1\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1742359531351284.jpg?pendant=vip_pendant_002.svga\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"vip_pendant_002.svga\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_002_bg.png\\\",\\\"lt\\\":\\\"vip_bubble_002_lt.svga\\\",\\\"lb\\\":\\\"vip_bubble_002_lb.svga\\\",\\\"rt\\\":\\\"vip_bubble_002_rt.svga\\\",\\\"rb\\\":\\\"vip_bubble_002_rb.svga\\\"}\",\"nameplate\":\"vip_nameplate_6.svga\",\"pendant\":\"vip_pendant_002.svga\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":904877998,\"userName\":\"APEXMICYAA\",\"pic\":\"http://staticgs.sandboxol.com/avatar/1751562234188397.jpg?pendant=vip_pendant_002.svga\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"vip_pendant_002.svga\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_002_bg.png\\\",\\\"lt\\\":\\\"vip_bubble_002_lt.svga\\\",\\\"lb\\\":\\\"vip_bubble_002_lb.svga\\\",\\\"rt\\\":\\\"vip_bubble_002_rt.svga\\\",\\\"rb\\\":\\\"vip_bubble_002_rb.svga\\\"}\",\"nameplate\":\"vip_nameplate_5.svga\",\"pendant\":\"vip_pendant_002.svga\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2156453408,\"userName\":\"\u039e\u03a8XCUTE\u03c7GIRL\u03a8\u039e\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746940529468646.jpg?pendant=vip_pendant_003.svga\",\"identity\":1,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"vip_pendant_003.svga\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_003_bg.png\\\",\\\"lt\\\":\\\"vip_bubble_003_lt.svga\\\",\\\"lb\\\":\\\"vip_bubble_003_lb.svga\\\",\\\"rt\\\":\\\"vip_bubble_003_rt.svga\\\",\\\"rb\\\":\\\"vip_bubble_003_rb.svga\\\"}\",\"nameplate\":\"vip_nameplate_8.svga\",\"pendant\":\"vip_pendant_003.svga\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6458520286,\"userName\":\"Noodles!!!\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746816720653278.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":4055012688,\"userName\":\"AU_$_RHK_$\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1734530253529796.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"vip_pendant_001.png\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_001_bg.png\\\"}\",\"nameplate\":\"vip_nameplate_2.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2692624238,\"userName\":\"\u03a8ET\u03c7TONY$TARK\u03a8\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1747487455092599.jpg?pendant=vip_pendant_001.png\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"vip_pendant_001.png\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_001_bg.png\\\"}\",\"nameplate\":\"vip_nameplate_4.png\",\"pendant\":\"vip_pendant_001.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":535584590,\"userName\":\"ETxKingOfLegend\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1716537858749839.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"frame_green_crowns.png\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_001_bg.png\\\"}\",\"nameplate\":\"vip_nameplate_3.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":955711214,\"userName\":\"KEN-ETxEXRxN\u00c0ZI\",\"pic\":\"http://staticgs.sandboxol.com/avatar/1750609227736338.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2371638846,\"userName\":\"GD$COOL%2s\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1748875442231957.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":1329398702,\"userName\":\"\u03a8\u00abZ\u039bR\u019b\u00bb\u03c8\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1749094005031644.jpg?pendant=vip_pendant_002.svga\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"vip_pendant_002.svga\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_002_bg.png\\\",\\\"lt\\\":\\\"vip_bubble_002_lt.svga\\\",\\\"lb\\\":\\\"vip_bubble_002_lb.svga\\\",\\\"rt\\\":\\\"vip_bubble_002_rt.svga\\\",\\\"rb\\\":\\\"vip_bubble_002_rb.svga\\\"}\",\"nameplate\":\"vip_nameplate_6.svga\",\"pendant\":\"vip_pendant_002.svga\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":3889055776,\"userName\":\"T-VOID04\",\"pic\":\"http://staticgs.sandboxol.com/avatar/1751263766986205.jpg\",\"identity\":1,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_1.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6554963918,\"userName\":\"ZexyAI\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1744307641549801.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":967376094,\"userName\":\"\u03c8_\u0100z\u0119\u06dd\u06dd\u06ddrty_\u03c8\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1723449854156733.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"frame_blue_shine_ACW.svga\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_002_bg.png\\\",\\\"lt\\\":\\\"vip_bubble_002_lt.svga\\\",\\\"lb\\\":\\\"vip_bubble_002_lb.svga\\\",\\\"rt\\\":\\\"vip_bubble_002_rt.svga\\\",\\\"rb\\\":\\\"vip_bubble_002_rb.svga\\\"}\",\"nameplate\":\"vip_nameplate_7.svga\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2782416814,\"userName\":\"SKY-ZX,EMS,CX\",\"pic\":\"http://staticgs.sandboxol.com/avatar/1751553825560109.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"frame_bronze.png\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_001_bg.png\\\"}\",\"nameplate\":\"vip_nameplate_2.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":3796855072,\"userName\":\"Notch_FromBg\",\"pic\":\"http://staticgs.sandboxol.com/avatar/1751192958936343.jpg?pendant=vip_pendant_002.svga\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"vip_pendant_002.svga\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_002_bg.png\\\",\\\"lt\\\":\\\"vip_bubble_002_lt.svga\\\",\\\"lb\\\":\\\"vip_bubble_002_lb.svga\\\",\\\"rt\\\":\\\"vip_bubble_002_rt.svga\\\",\\\"rb\\\":\\\"vip_bubble_002_rb.svga\\\"}\",\"nameplate\":\"vip_nameplate_7.svga\",\"pendant\":\"vip_pendant_002.svga\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":55420527,\"userName\":\"DoraDiddyExplore\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1648295313066139.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":1104717710,\"userName\":\"\u07f7\u064b\\u0000\u064bEtXSpideySin\",\"pic\":\"http://staticgs.sandboxol.com/avatar/1751127395013506.jpg\",\"identity\":1,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_1.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2915790862,\"userName\":\"ET\u03b6\u035c\u0361vEdl\u039eNvy\u00b0UT\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1747665669125182.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":3384440976,\"userName\":\"Carryminati66666\",\"pic\":\"http://indstatic.sandboxol.com/sandbox/avatar/1661524971919468.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"frame_green_crowns.png\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_001_bg.png\\\"}\",\"nameplate\":\"vip_nameplate_2.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":3383402352,\"userName\":\"\u03b7\u03c7-\u043c\u03b1\u03b7\u03b1\u03bd\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1747418933387263.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"frame_coin_shine_ACW.svga\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_002_bg.png\\\",\\\"lt\\\":\\\"vip_bubble_002_lt.svga\\\",\\\"lb\\\":\\\"vip_bubble_002_lb.svga\\\",\\\"rt\\\":\\\"vip_bubble_002_rt.svga\\\",\\\"rb\\\":\\\"vip_bubble_002_rb.svga\\\"}\",\"nameplate\":\"vip_nameplate_7.svga\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2433595086,\"userName\":\"Zi\u00b0\u00d1AC\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1750135227711408.jpg?pendant=vip_pendant_001.png\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"vip_pendant_001.png\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_001_bg.png\\\"}\",\"nameplate\":\"vip_nameplate_4.png\",\"pendant\":\"vip_pendant_001.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":3585839808,\"userName\":\"&_SIMRAN_&\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1740043629895136.jpg?pendant=vip_pendant_001.png\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"vip_pendant_001.png\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_001_bg.png\\\"}\",\"nameplate\":\"vip_nameplate_4.png\",\"pendant\":\"vip_pendant_001.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6068009390,\"userName\":\"DEXTER~\",\"pic\":\"http://staticgs.sandboxol.com/avatar/1750672690494276.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"frame_coin_shine_ACW.svga\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_002_bg.png\\\",\\\"lt\\\":\\\"vip_bubble_002_lt.svga\\\",\\\"lb\\\":\\\"vip_bubble_002_lb.svga\\\",\\\"rt\\\":\\\"vip_bubble_002_rt.svga\\\",\\\"rb\\\":\\\"vip_bubble_002_rb.svga\\\"}\",\"nameplate\":\"vip_nameplate_6.svga\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2652402606,\"userName\":\"\u064bKnownAsZyr\u00f8x\",\"pic\":\"http://staticgs.sandboxol.com/avatar/1751147132964561.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"frame_bronze.png\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_001_bg.png\\\"}\",\"nameplate\":\"vip_nameplate_3.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":3086589054,\"userName\":\"$Jail_Breack$\",\"pic\":\"http://staticgs.sandboxol.com/avatar/1751639680740781.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":423220143,\"userName\":\"\u0246\u05d0\u05b7R:Myers.Nv-ET\",\"pic\":\"http://staticgs.sandboxol.com/avatar/1750864132279439.jpg?pendant=vip_pendant_001.png\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"vip_pendant_001.png\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_001_bg.png\\\"}\",\"nameplate\":\"vip_nameplate_2.png\",\"pendant\":\"vip_pendant_001.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2027852256,\"userName\":\"\u039eET\u03c7L\u00f8rdDR\u00c2G\u00d8N\u039e\",\"pic\":null,\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"frame_green_crowns.png\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_001_bg.png\\\"}\",\"nameplate\":\"vip_nameplate_3.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null}],\"GroupMembersCounted\":36}\nUser: System data who is talking to you right now: 2371638846\nUser: System data of last 100 group messages: {\"list\":[{\"date\":\"2025-07-05T13:18:07.558Z\",\"senderUserId\":\"6458520286\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRA-UAPH-GOIF-1LVR\",\"content\":\"!crime\"},{\"date\":\"2025-07-05T13:18:07.830Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRA-UARL-GP4F-1LVR\",\"content\":\"\ud83d\udd70\ufe0f You must wait 4 minutes before committing another crime.\"},{\"date\":\"2025-07-05T13:43:09.598Z\",\"senderUserId\":\"3383402352\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CNRB-9PG7-LO4F-1LVR\",\"content\":\"for fresh air \",\"referMsg\":\"@\u03b7\u03c7-\u043c\u03b1\u03b7\u03b1\u03bd for\"},{\"date\":\"2025-07-05T13:43:12.591Z\",\"senderUserId\":\"3383402352\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-9Q7J-TT0F-1LVR\",\"content\":\"\ud83e\udd78\"},{\"date\":\"2025-07-05T13:43:16.679Z\",\"senderUserId\":\"6140909694\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-9R7H-U38F-1LVR\",\"content\":\"manav\"},{\"date\":\"2025-07-05T13:43:19.111Z\",\"senderUserId\":\"6140909694\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-9RQH-U6UF-1LVR\",\"content\":\"wussup \"},{\"date\":\"2025-07-05T13:43:20.403Z\",\"senderUserId\":\"6140909694\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-9S4K-U9IF-1LVR\",\"content\":\"ma fire\"},{\"date\":\"2025-07-05T13:43:25.499Z\",\"senderUserId\":\"3383402352\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-9TCE-UJOF-1LVR\",\"content\":\"wsppp \"},{\"date\":\"2025-07-05T13:43:28.131Z\",\"senderUserId\":\"3383402352\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-9U10-UNUF-1LVR\",\"content\":\"fire \"},{\"date\":\"2025-07-05T13:43:29.543Z\",\"senderUserId\":\"3383402352\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-9UC1-UPUF-1LVR\",\"content\":\"kesa hai \"},{\"date\":\"2025-07-05T13:43:34.207Z\",\"senderUserId\":\"6458520286\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-9VGF-V20F-1LVR\",\"content\":\"I'm feeling lucky todayy\"},{\"date\":\"2025-07-05T13:43:34.611Z\",\"senderUserId\":\"6140909694\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-9VJK-V2OF-1LVR\",\"content\":\"badhiya\"},{\"date\":\"2025-07-05T13:43:38.823Z\",\"senderUserId\":\"6140909694\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CNRB-A0KH-VBEF-1LVR\",\"content\":\" ok\",\"referMsg\":\"I'm feeling lucky todayy\"},{\"date\":\"2025-07-05T13:43:40.815Z\",\"senderUserId\":\"6140909694\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-A143-VFQF-1LVR\",\"content\":\"give me gz\"},{\"date\":\"2025-07-05T13:43:47.255Z\",\"senderUserId\":\"6140909694\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-A2MD-VPMF-1LVR\",\"content\":\"Noodles\"},{\"date\":\"2025-07-05T13:43:49.235Z\",\"senderUserId\":\"3383402352\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-A35S-VSSF-1LVR\",\"content\":\"@SIN-ET-BLOOD dc pe itana msg karta hai \"},{\"date\":\"2025-07-05T13:43:52.176Z\",\"senderUserId\":\"6458520286\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-A3SS-02CF-1LVR\",\"content\":\"!rob @SKY-ZX,EMS,CX \"},{\"date\":\"2025-07-05T13:43:52.711Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-A411-O3EF-1LVR\",\"content\":\"\ud83d\udd70\ufe0f You must wait 69 minutes before attempting to rob someone again.\"},{\"date\":\"2025-07-05T13:43:57.029Z\",\"senderUserId\":\"6458520286\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-A52P-8A8F-1LVR\",\"content\":\"bruh\"},{\"date\":\"2025-07-05T13:44:00.183Z\",\"senderUserId\":\"6140909694\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CNRB-A5RD-OFIF-1LVR\",\"content\":\"can u inv ur friends here too\",\"referMsg\":\"Noodles\"},{\"date\":\"2025-07-05T13:44:03.623Z\",\"senderUserId\":\"6458520286\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-A6M9-OKOF-1LVR\",\"content\":\"@SIN-ET-BLOOD what is gz\"},{\"date\":\"2025-07-05T13:44:04.113Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-A6Q4-8LEF-1LVR\",\"content\":\"\ud83e\udd73 Congratulations Noodles!!! you reached level \ud835\udff1!\\n\\nSet your own \ud835\uddf9\ud835\uddf2\ud835\ude03\ud835\uddf2\ud835\uddf9 \ud835\ude02\ud835\uddfd \ud835\uddfa\ud835\uddf2\ud835\ude00\ud835\ude00\ud835\uddee\ud835\uddf4\ud835\uddf2 \ud835\uddf0\ud835\uddfc\ud835\uddfb\ud835\ude01\ud835\uddf2\ud835\uddfb\ud835\ude01 with !\ud835\uddf1\ud835\uddee\ud835\ude00\ud835\uddf5\ud835\uddef\ud835\uddfc\ud835\uddee\ud835\uddff\ud835\uddf1 command!\"},{\"date\":\"2025-07-05T13:44:12.283Z\",\"senderUserId\":\"6140909694\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CNRB-A8PU-P2CF-1LVR\",\"content\":\" Maine kab kiya teko ;-;\",\"referMsg\":\"@SIN-ET-BLOOD dc pe itana msg karta hai \"},{\"date\":\"2025-07-05T13:44:17.314Z\",\"senderUserId\":\"6140909694\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CNRB-AA18-H94F-1LVR\",\"content\":\" green zoos\",\"referMsg\":\"@SIN-ET-BLOOD what is gz\"},{\"date\":\"2025-07-05T13:44:20.965Z\",\"senderUserId\":\"6458520286\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-AATP-9GGF-1LVR\",\"content\":\"!crime\"},{\"date\":\"2025-07-05T13:44:21.238Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-AAVT-HH0F-1LVR\",\"content\":\"\ud83d\udd75\ufe0f \ud835\udde1\ud835\uddfc\ud835\uddfc\ud835\uddf1\ud835\uddf9\ud835\uddf2\ud835\ude00!!!, Blockman Go moderators caught you breaking the rules and you paid \ud835\udfed\ud835\udfec\ud835\udff0 \ud83e\ude99\"},{\"date\":\"2025-07-05T13:44:21.632Z\",\"senderUserId\":\"3383402352\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-AB30-1HQF-1LVR\",\"content\":\"matlab vo group mai \"},{\"date\":\"2025-07-05T13:44:27.544Z\",\"senderUserId\":\"6458520286\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-ACH6-1R2F-1LVR\",\"content\":\":(\"},{\"date\":\"2025-07-05T13:44:30.029Z\",\"senderUserId\":\"6140909694\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-AD4J-9UQF-1LVR\",\"content\":\"!crime\"},{\"date\":\"2025-07-05T13:44:30.569Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-AD8Q-9VMF-1LVR\",\"content\":\"\ud83d\udd75\ufe0f \ud835\uddd8\ud835\udde1\ud835\udde9\ud835\uddec-\ud835\udde6\ud835\udddc\ud835\udde1-\ud835\uddd8\ud835\udde7-\ud835\uddd4\ud835\udde5\ud835\uddd6, You stole valuable resources from other players in Blockman Go and got \ud835\udfee\ud835\udfed\ud835\udff3 \ud83e\ude99\"},{\"date\":\"2025-07-05T13:44:31.466Z\",\"senderUserId\":\"6458520286\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-ADFQ-I1MF-1LVR\",\"content\":\"!bal\"},{\"date\":\"2025-07-05T13:44:31.780Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-ADI9-22EF-1LVR\",\"content\":\"\ud83d\udcb2 \ud835\udde1\ud835\uddfc\ud835\uddfc\ud835\uddf1\ud835\uddf9\ud835\uddf2\ud835\ude00!!! Balance\\n\\n\u2003\ud83d\udcb5 Cash: 17 \ud83e\ude99\\n\u2003\ud83c\udfe6 Bank: 0 \ud83e\ude99\\n\u2003\ud83d\udc8e Total: 17 \ud83e\ude99\\n\\n\u27a1\ufe0f Use \u300c!\ud835\ude95\ud835\ude8b\u300d to check the most rich players on the game!\\n\\nConnect your account with your Discord to receive 250 \ud83e\ude99 and \ud835\ude05\ud835\udff1 \ud835\uddff\ud835\uddf2\ud835\ude04\ud835\uddee\ud835\uddff\ud835\uddf1\ud835\ude00 in daily-login!\\n\u2003\u2197\ufe0f Try: \u300c!\ud835\ude8c\ud835\ude98\ud835\ude97\ud835\ude97\ud835\ude8e\ud835\ude8c\ud835\ude9d\u300d\"},{\"date\":\"2025-07-05T13:44:37.145Z\",\"senderUserId\":\"6140909694\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-AES6-AB0F-1LVR\",\"content\":\"!bal\"},{\"date\":\"2025-07-05T13:44:37.705Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-AF0I-ABQF-1LVR\",\"content\":\"\ud83d\udcb2 \ud835\uddd8\ud835\udde1\ud835\udde9\ud835\uddec-\ud835\udde6\ud835\udddc\ud835\udde1-\ud835\uddd8\ud835\udde7-\ud835\uddd4\ud835\udde5\ud835\uddd6 Balance\\n\\n\u2003\ud83d\udcb5 Cash: 504 \ud83e\ude99\\n\u2003\ud83c\udfe6 Bank: 299 \ud83e\ude99\\n\u2003\ud83d\udc8e Total: 803 \ud83e\ude99\\n\\n\u27a1\ufe0f Use \u300c!\ud835\ude95\ud835\ude8b\u300d to check the most rich players on the game!\\n\\nConnect your account with your Discord to receive 250 \ud83e\ude99 and \ud835\ude05\ud835\udff1 \ud835\uddff\ud835\uddf2\ud835\ude04\ud835\uddee\ud835\uddff\ud835\uddf1\ud835\ude00 in daily-login!\\n\u2003\u2197\ufe0f Try: \u300c!\ud835\ude8c\ud835\ude98\ud835\ude97\ud835\ude97\ud835\ude8e\ud835\ude8c\ud835\ude9d\u300d\"},{\"date\":\"2025-07-05T13:44:40.541Z\",\"senderUserId\":\"6140909694\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-AFMN-AGSF-1LVR\",\"content\":\"oh yes\"},{\"date\":\"2025-07-05T13:44:46.667Z\",\"senderUserId\":\"6140909694\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CNRB-AH6I-QPQF-1LVR\",\"content\":\" hn krta to hu\",\"referMsg\":\"matlab vo group mai \"},{\"date\":\"2025-07-05T13:44:46.970Z\",\"senderUserId\":\"6458520286\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-AH8U-IQCF-1LVR\",\"content\":\"@SIN-ET-BLOOD can I rob you for money I'm broke\"},{\"date\":\"2025-07-05T13:44:52.619Z\",\"senderUserId\":\"6140909694\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CNRB-AIL2-R4MF-1LVR\",\"content\":\" ok\",\"referMsg\":\"@SIN-ET-BLOOD can I rob you for money I'm broke\"},{\"date\":\"2025-07-05T13:44:56.103Z\",\"senderUserId\":\"6140909694\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-AJG9-R9OF-1LVR\",\"content\":\"do\"},{\"date\":\"2025-07-05T13:44:58.006Z\",\"senderUserId\":\"6458520286\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-AJV5-JC6F-1LVR\",\"content\":\"!work\"},{\"date\":\"2025-07-05T13:44:58.271Z\",\"senderUserId\":\"3383402352\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-AK17-RCOF-1LVR\",\"content\":\"haa \"},{\"date\":\"2025-07-05T13:44:58.279Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-AK19-RCQF-1LVR\",\"content\":\"\ud83d\udcbc \ud835\udde1\ud835\uddfc\ud835\uddfc\ud835\uddf1\ud835\uddf9\ud835\uddf2\ud835\ude00!!!, You completed a quest in Blockman Go and earned \ud835\udfed\ud835\udff3\ud835\udff1 \ud83e\ude99\"},{\"date\":\"2025-07-05T13:45:05.934Z\",\"senderUserId\":\"6458520286\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-ALT3-JOMF-1LVR\",\"content\":\"I must wait some time to do it\"},{\"date\":\"2025-07-05T13:45:11.208Z\",\"senderUserId\":\"6140909694\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CNRB-AN6A-3VGF-1LVR\",\"content\":\" stocks wagera invest krta ha?\",\"referMsg\":\"haa \"},{\"date\":\"2025-07-05T13:45:22.499Z\",\"senderUserId\":\"6458520286\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-APUG-SF8F-1LVR\",\"content\":\"Brb I will go get a birthday cake for my self \"},{\"date\":\"2025-07-05T13:45:40.949Z\",\"senderUserId\":\"6140909694\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-AUEL-D78F-1LVR\",\"content\":\"byee\"},{\"date\":\"2025-07-05T13:45:43.561Z\",\"senderUserId\":\"6140909694\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-AV32-DAKF-1LVR\",\"content\":\"waittt\"},{\"date\":\"2025-07-05T13:45:46.628Z\",\"senderUserId\":\"3383402352\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CNRB-AVR1-5FSF-1LVR\",\"content\":\"haan \",\"referMsg\":\" stocks wagera invest krta ha?\"},{\"date\":\"2025-07-05T13:45:46.633Z\",\"senderUserId\":\"6140909694\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-AVR2-DFUF-1LVR\",\"content\":\"today is ur bday?\"},{\"date\":\"2025-07-05T13:45:48.165Z\",\"senderUserId\":\"2692624238\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-B071-DI2F-1LVR\",\"content\":\"...\"},{\"date\":\"2025-07-05T13:45:53.182Z\",\"senderUserId\":\"6140909694\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CNRB-B1E7-LPEF-1LVR\",\"content\":\" kya krta ha\",\"referMsg\":\"haan \"},{\"date\":\"2025-07-05T13:46:02.081Z\",\"senderUserId\":\"3383402352\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-B3JO-E6IF-1LVR\",\"content\":\"suzlon pe \"},{\"date\":\"2025-07-05T13:46:05.620Z\",\"senderUserId\":\"3383402352\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-B4FD-6BAF-1LVR\",\"content\":\"400 liya hu \"},{\"date\":\"2025-07-05T13:46:25.249Z\",\"senderUserId\":\"6140909694\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-B98O-F8EF-1LVR\",\"content\":\"kitne par\"},{\"date\":\"2025-07-05T13:46:31.509Z\",\"senderUserId\":\"6140909694\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRB-BAPL-FI0F-1LVR\",\"content\":\"pc aa\"},{\"date\":\"2025-07-05T14:32:56.517Z\",\"senderUserId\":\"2652402606\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRC-0INH-D6CF-1LVR\",\"content\":\"@ZexyAi\"},{\"date\":\"2025-07-05T14:32:57.010Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRC-0IRC-L76F-1LVR\",\"content\":\"\ud83e\udd73 Congratulations \u064bKnownAsZyr\u00f8x you reached level \ud835\udfef!\\n\\nSet your own \ud835\uddf9\ud835\uddf2\ud835\ude03\ud835\uddf2\ud835\uddf9 \ud835\ude02\ud835\uddfd \ud835\uddfa\ud835\uddf2\ud835\ude00\ud835\ude00\ud835\uddee\ud835\uddf4\ud835\uddf2 \ud835\uddf0\ud835\uddfc\ud835\uddfb\ud835\ude01\ud835\uddf2\ud835\uddfb\ud835\ude01 with !\ud835\uddf1\ud835\uddee\ud835\ude00\ud835\uddf5\ud835\uddef\ud835\uddfc\ud835\uddee\ud835\uddff\ud835\uddf1 command!\"},{\"date\":\"2025-07-05T14:33:03.606Z\",\"senderUserId\":\"2424752734\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRC-0KET-LFCF-1LVR\",\"content\":\".\"},{\"date\":\"2025-07-05T14:33:20.489Z\",\"senderUserId\":\"2424752734\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRC-0OIQ-E06F-1LVR\",\"content\":\"@\u064bKnownAsZyr\u00f8x u got anyone \ud83d\ude2d?\"},{\"date\":\"2025-07-05T14:33:20.638Z\",\"senderUserId\":\"2652402606\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRC-0OJV-M0AF-1LVR\",\"content\":\"!Ai chat you scammer\"},{\"date\":\"2025-07-05T14:33:23.153Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CNRC-0P7K-E40F-1LVR\",\"content\":\"yeah right laugh urself \ud83d\ude02 who\u2019s the real scammer here huh\",\"referMsg\":\"AI Answer to: you scammer\"},{\"date\":\"2025-07-05T14:34:03.685Z\",\"senderUserId\":\"2652402606\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CNRC-1349-F7SF-1LVR\",\"content\":\"Na bro im not recuring when i sell perma i will\",\"referMsg\":\"@\u064bKnownAsZyr\u00f8x u got anyone \ud83d\ude2d?\"},{\"date\":\"2025-07-05T14:35:02.616Z\",\"senderUserId\":\"2424752734\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRC-1HGM-14CF-1LVR\",\"content\":\"\ud83d\ude2d\"},{\"date\":\"2025-07-05T14:35:03.167Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRC-1HKV-P4KF-1LVR\",\"content\":\"\ud83e\udd73 Congratulations \\u0000\u064b\u039eET\u03c7PIKACHU\u03c7L1 you reached level \ud835\udfee!\\n\\nSet your own \ud835\uddf9\ud835\uddf2\ud835\ude03\ud835\uddf2\ud835\uddf9 \ud835\ude02\ud835\uddfd \ud835\uddfa\ud835\uddf2\ud835\ude00\ud835\ude00\ud835\uddee\ud835\uddf4\ud835\uddf2 \ud835\uddf0\ud835\uddfc\ud835\uddfb\ud835\ude01\ud835\uddf2\ud835\uddfb\ud835\ude01 with !\ud835\uddf1\ud835\uddee\ud835\ude00\ud835\uddf5\ud835\uddef\ud835\uddfc\ud835\uddee\ud835\uddff\ud835\uddf1 command!\"},{\"date\":\"2025-07-05T14:35:07.055Z\",\"senderUserId\":\"2424752734\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CNRC-1IJB-P9IF-1LVR\",\"content\":\"bdbd\",\"referMsg\":\"Na bro im not recuring when i sell perma i will\"},{\"date\":\"2025-07-05T15:12:35.999Z\",\"senderUserId\":\"2652402606\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRC-INL7-QA0F-1LVR\",\"content\":\"\ud83d\ude05\"},{\"date\":\"2025-07-05T15:12:45.289Z\",\"senderUserId\":\"2652402606\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRC-IPTQ-ALCF-1LVR\",\"content\":\"@ZexyAI \ud83d\ude05\"},{\"date\":\"2025-07-05T15:12:45.654Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRC-IQ0L-ILSF-1LVR\",\"content\":\"\ud83d\udc4b Hello! Looks like you called me.\\n\\nTo read help, try:\\n\u2003\u2197\ufe0f !help\\n\\nTo invite me, try:\\n\u2003\u2197\ufe0f !invite\"},{\"date\":\"2025-07-05T15:12:56.039Z\",\"senderUserId\":\"2652402606\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRC-ISHP-R0GF-1LVR\",\"content\":\"!****\"},{\"date\":\"2025-07-05T15:13:01.998Z\",\"senderUserId\":\"2652402606\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRC-IU0B-J76F-1LVR\",\"content\":\"!Kick\"},{\"date\":\"2025-07-05T15:13:02.367Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRC-IU37-R7KF-1LVR\",\"content\":\"\u274c You are not authorized to use this command.\\n\\nOnly the group owner and admins can access this command!\\n\\n\ud83d\udd0d To refresh permissions, try:\\n!group members sync\"},{\"date\":\"2025-07-05T15:13:18.794Z\",\"senderUserId\":\"2652402606\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRC-J23I-JQKF-1LVR\",\"content\":\"!Group members sync\"},{\"date\":\"2025-07-05T15:13:19.547Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRC-J29E-RRKF-1LVR\",\"content\":\"\u2705 Synced to current group data!\\nTotal members: 36\\nGroup owner: 6140909694\"},{\"date\":\"2025-07-05T15:13:37.244Z\",\"senderUserId\":\"2652402606\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRC-J6JN-4K0F-1LVR\",\"content\":\"!Report\"},{\"date\":\"2025-07-05T15:13:58.641Z\",\"senderUserId\":\"2652402606\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRC-JBQS-DIMF-1LVR\",\"content\":\"!Leave\"},{\"date\":\"2025-07-05T15:14:10.466Z\",\"senderUserId\":\"2652402606\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRC-JEN8-M3AF-1LVR\",\"content\":\"!Destroy\"},{\"date\":\"2025-07-05T15:14:20.316Z\",\"senderUserId\":\"2652402606\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRC-JH47-6FUF-1LVR\",\"content\":\"!Ai chat show all avilabile comands\"},{\"date\":\"2025-07-05T15:14:25.162Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CNRC-JIA2-MMOF-1LVR\",\"content\":\"here are useful commands for you \ud83d\udee0\ufe0f\\n\\n!\ud835\uddf5\ud835\uddf2\ud835\uddf9\ud835\uddfd - show this help message  \\n!\ud835\uddf6\ud835\uddfb\ud835\ude03\ud835\uddf6\ud835\ude01\ud835\uddf2 - invite me to your group  \\n!\ud835\ude04\ud835\uddfc\ud835\uddff\ud835\uddf8 - earn coins by working  \\n!\ud835\uddff\ud835\uddfc\ud835\uddef @\ud835\ude02\ud835\ude00\ud835\uddf2\ud835\uddff - try robbing a player (cooldown applies)  \\n!\ud835\uddf0\ud835\uddff\ud835\uddf6\ud835\uddfa\ud835\uddf2 - commit a crime for rewards (cooldown applies)  \\n!\ud835\uddef\ud835\uddee\ud835\uddf9 - check your balance  \\n!\ud835\uddf9\ud835\uddef - see leaderboard of richest players  \\n!\ud835\uddf0\ud835\uddfc\ud835\uddfb\ud835\uddfb\ud835\uddf2\ud835\uddf0\ud835\ude01 - link your account with discord for bonuses  \\n!\ud835\uddf1\ud835\uddee\ud835\ude00\ud835\uddf5\ud835\uddef\ud835\uddfc\ud835\uddee\ud835\uddff\ud835\uddf1 - customize your bot settings  \\n!\ud835\uddf4\ud835\uddff\ud835\uddfc\ud835\ude02\ud835\uddfd \ud835\uddfa\ud835\uddf2\ud835\uddfa\ud835\uddef\ud835\uddf2\ud835\uddff\ud835\ude00 \ud835\ude00\ud835\ude06\ud835\uddfb\ud835\uddf0 - sync permissions (admins only)  \\n!\ud835\uddff\ud835\uddf2\ud835\uddfd\ud835\uddfc\ud835\uddff\ud835\ude01 - report issues  \\n!\ud835\uddf9\ud835\uddf2\ud835\uddee\ud835\ude03\ud835\uddf2 - leave the group  \\n!\ud835\uddf1\ud835\uddf2\ud835\ude00\ud835\ude01\ud835\uddff\ud835\uddfc\ud835\ude06 - delete the group (owner only)\\n\\nif you want help with browsing or trading, use !\ud835\uddee\ud835\uddf6 \ud835\ude04\ud835\uddf2\ud835\uddef or !\ud835\uddee\ud835\uddf6 \ud835\ude01\ud835\uddff\ud835\uddee\ud835\uddf1\ud835\uddf2 commands \ud83e\udd13\",\"referMsg\":\"AI Answer to: show all avilabile comands\"},{\"date\":\"2025-07-05T15:14:56.698Z\",\"senderUserId\":\"2652402606\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRC-JQ0E-GCGF-1LVR\",\"content\":\"!Dashboard\"},{\"date\":\"2025-07-05T15:14:57.190Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"cu:highVipPush\",\"messageUId\":\"CNRC-JQ49-GDUF-1LVR\",\"content\":\"Easily manage groups, personalize settings, enable automoderation, and more \u2014 all from one dashboard!\"},{\"date\":\"2025-07-05T15:15:08.430Z\",\"senderUserId\":\"2652402606\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRC-JSS3-GTGF-1LVR\",\"content\":\"!Leave\"},{\"date\":\"2025-07-05T15:17:05.357Z\",\"senderUserId\":\"2652402606\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRC-KPDJ-EJAF-1LVR\",\"content\":\"!Leave\"},{\"date\":\"2025-07-05T15:17:06.002Z\",\"senderUserId\":\"2652402606\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRC-KPIK-MKKF-1LVR\",\"content\":\"!Crime\"},{\"date\":\"2025-07-05T15:17:06.635Z\",\"senderUserId\":\"2652402606\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRC-KPNI-UM0F-1LVR\",\"content\":\".\"},{\"date\":\"2025-07-05T15:17:06.643Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRC-KPNK-UM2F-1LVR\",\"content\":\"\u23f1\ufe0f Please wait 3 seconds between commands.\\n\\n(Timer has been restarted and this message will not be sent again)\"},{\"date\":\"2025-07-05T15:17:15.341Z\",\"senderUserId\":\"2652402606\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRC-KRRJ-F1KF-1LVR\",\"content\":\"!Crime\"},{\"date\":\"2025-07-05T15:17:16.075Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRC-KS1A-V28F-1LVR\",\"content\":\"\ud83d\udd75\ufe0f \u064b\ud835\uddde\ud835\uddfb\ud835\uddfc\ud835\ude04\ud835\uddfb\ud835\uddd4\ud835\ude00\ud835\udded\ud835\ude06\ud835\uddff\u00f8\ud835\ude05, You tried to rob the Blockman Go bank but got caught and lost \ud835\udff4\ud835\udff0 \ud83e\ude99\"},{\"date\":\"2025-07-05T15:17:28.325Z\",\"senderUserId\":\"2652402606\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRC-KV11-FIGF-1LVR\",\"content\":\"!Bal\"},{\"date\":\"2025-07-05T15:17:28.925Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRC-KV5N-FJAF-1LVR\",\"content\":\"\ud83d\udcb2 \u064b\ud835\uddde\ud835\uddfb\ud835\uddfc\ud835\ude04\ud835\uddfb\ud835\uddd4\ud835\ude00\ud835\udded\ud835\ude06\ud835\uddff\u00f8\ud835\ude05 Balance\\n\\n\u2003\ud83d\udcb5 Cash: -84 \ud83e\ude99\\n\u2003\ud83c\udfe6 Bank: 0 \ud83e\ude99\\n\u2003\ud83d\udc8e Total: -84 \ud83e\ude99\\n\\n\u27a1\ufe0f Use \u300c!\ud835\ude95\ud835\ude8b\u300d to check the most rich players on the game!\\n\\nConnect your account with your Discord to receive 250 \ud83e\ude99 and \ud835\ude05\ud835\udff1 \ud835\uddff\ud835\uddf2\ud835\ude04\ud835\uddee\ud835\uddff\ud835\uddf1\ud835\ude00 in daily-login!\\n\u2003\u2197\ufe0f Try: \u300c!\ud835\ude8c\ud835\ude98\ud835\ude97\ud835\ude97\ud835\ude8e\ud835\ude8c\ud835\ude9d\u300d\"},{\"date\":\"2025-07-05T15:17:39.944Z\",\"senderUserId\":\"2652402606\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRC-L1RQ-04KF-1LVR\",\"content\":\"!1b\"},{\"date\":\"2025-07-05T15:18:11.879Z\",\"senderUserId\":\"2652402606\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRC-L9L9-PH0F-1LVR\",\"content\":\"!Ai chat what i do with coins\"},{\"date\":\"2025-07-05T15:18:15.312Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CNRC-LAG4-1O0F-1LVR\",\"content\":\"you can use coins to buy cool items, weapons, and skins in blockman go or try commands like !work to earn more \ud83e\ude99\ud83c\udfae wanna know how to invest smartly or trade? use !ai trade for tips!\",\"referMsg\":\"AI Answer to: what i do with coins\"},{\"date\":\"2025-07-05T15:22:24.480Z\",\"senderUserId\":\"1104717710\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRC-N7AO-5VCF-1LVR\",\"content\":\"!lb group\"},{\"date\":\"2025-07-05T15:22:25.198Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRC-N7GB-LVQF-1LVR\",\"content\":\"\ud83d\udcb0 Group Leaderboard\\n\\n\ud83e\udd47 \u03a8\ud835\uddd8\ud835\udde7\u03c7\ud835\udde7\ud835\udde2\ud835\udde1\ud835\uddec$\ud835\udde7\ud835\uddd4\ud835\udde5\ud835\uddde\u03a8 - 16372 \ud83e\ude99\\n\ud83e\udd48 \u03a8\u00ab\ud835\udded\u039b\ud835\udde5\u019b\u00bb\u03c8 - 9833 \ud83e\ude99\\n\ud83e\udd49 \ud835\uddd8\ud835\udde7\u03b6\u035c\u0361\ud835\ude03\ud835\uddd8\ud835\uddf1\ud835\uddf9\u039e\ud835\udde1\ud835\ude03\ud835\ude06\u00b0\ud835\udde8\ud835\udde7 - 7241 \ud83e\ude99\\n4. \ud835\uddda\ud835\uddd7$\ud835\uddd6\ud835\udde2\ud835\udde2\ud835\udddf%\ud835\udfee\ud835\ude00 - 6959 \ud83e\ude99\\n5. \u00c8\ud835\udde0\ud835\udde6-\ud835\udde6\ud835\ude05\ud835\udded\ud835\uddff\ud835\uddda\ud835\uddd7|\ud835\uddd6\ud835\uddeb - 6539 \ud83e\ude99\\n6. \ud835\uddde\ud835\uddd8\ud835\udde1-\ud835\uddd8\ud835\udde7\ud835\ude05\ud835\uddd8\ud835\uddeb\ud835\udde5\ud835\ude05\ud835\udde1\u00c0\ud835\udded\ud835\udddc - 5243 \ud83e\ude99\\n7. (\ud835\udde6\ud835\uddd5)\ud835\udde0\ud835\uddd4\ud835\udde7\ud835\udde7\ud835\udde6\ud835\udde8\ud835\udde1 - 3609 \ud83e\ude99\\n8. \ud835\uddd8\ud835\udde7\ud835\ude05\ud835\udde1\ud835\udde9\ud835\ude05\ud835\uddd4\ud835\uddf9\ud835\uddf9~\ud835\udde0\ud835\uddee\ud835\ude05\ud835\uddd5\ud835\uddda - 3056 \ud83e\ude99\\n9. \ud835\uddd6\ud835\uddee\ud835\uddff\ud835\uddff\ud835\ude06\ud835\uddfa\ud835\uddf6\ud835\uddfb\ud835\uddee\ud835\ude01\ud835\uddf6\ud835\udff2\ud835\udff2\ud835\udff2\ud835\udff2\ud835\udff2 - 2136 \ud83e\ude99\\n10. \ud835\uddf0\u044f-\ud835\udde6\ud835\uddf0\ud835\uddfc\ud835\uddff\ud835\uddf2\ud835\udddd\ud835\uddee\ud835\ude06\ud835\udff1\ud835\udff3\ud835\udff3\ud835\udfee - 1226 \ud83e\ude99\\n\\nAvailable Pages: 1/2 pages\"},{\"date\":\"2025-07-05T15:22:32.545Z\",\"senderUserId\":\"1104717710\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRC-N99O-ECCF-1LVR\",\"content\":\"!lb\"},{\"date\":\"2025-07-05T15:22:33.227Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRC-N9F2-UDAF-1LVR\",\"content\":\"\ud83c\udf0e Global Rich List\\n\\n\ud83e\udd47 \ud835\uddd7\ud835\uddf2\ud835\ude03\ud835\uddf6\ud835\uddf9_\ud835\udde5\u0430\ud835\ude06 - 1590898 \ud83e\ude99\\n\ud83e\udd48 \ud835\udde1\ud835\uddfc\ud835\ude03\ud835\uddee\ud835\udddb\ud835\ude02\ud835\uddfb\ud835\ude01\ud835\uddf2\ud835\uddff - 453311 \ud83e\ude99\\n\ud83e\udd49 \u03b7\u0442~\u043d\u03b5\u044f\u03c3 - 408017 \ud83e\ude99\\n4. \u03b6\u035c\u0361\u029a\u0443\u03c5\u0300\u03b7<\ud835\udfef - 311220 \ud83e\ude99\\n5. \ud835\ude05\ud835\uddeb-\ud835\uddd7\ud835\uddd8\ud835\uddd4\ud835\uddd7\ud835\udde6\ud835\udddb\ud835\udde2\ud835\udde7-\ud835\uddeb\ud835\ude05 - 278467 \ud83e\ude99\\n6. \ud835\udded\ud835\uddee\ud835\uddf6\ud835\uddff\ud835\ude05\ud835\uddf5. - 248381 \ud83e\ude99\\n7. \ud835\uddd7\ud835\uddf2\ud835\ude03\ud835\uddf6\ud835\uddf9_\ud835\udde5\ud835\uddee\ud835\ude06 - 181886 \ud83e\ude99\\n8. \u00ab\u03a8\u00d7\u0416\u0415\u041d\u042f_\ud835\uddd5\ud835\uddda\u00d7\u03a8\u00bb - 172314 \ud83e\ude99\\n9. \ud835\udde6\ud835\uddd8\ud835\udddf\ud835\uddd4\ud835\udddb! - 150000 \ud83e\ude99\\n10. \u0e05\ud835\udde6\ud835\uddfc\ud835\ude02\ud835\uddf9\ud835\udddb\ud835\ude02\ud835\uddfb\ud835\ude01\ud835\uddf2\ud835\uddff\u0e05 - 146876 \ud83e\ude99\\n\\nAvailable Pages: 1/519 pages\\n\\nTip: Use !\ud835\ude95\ud835\ude8e\ud835\ude8a\ud835\ude8d\ud835\ude8e\ud835\ude9b\ud835\ude8b\ud835\ude98\ud835\ude8a\ud835\ude9b\ud835\ude8d \ud835\ude90\ud835\ude9b\ud835\ude98\ud835\ude9e\ud835\ude99 to view the leaderboard for this group only!\"},{\"date\":\"2025-07-05T15:22:45.951Z\",\"senderUserId\":\"1104717710\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRC-NCIF-UTSF-1LVR\",\"content\":\"so he finally got to 1m\"},{\"date\":\"2025-07-05T15:22:46.911Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRC-NCPV-UUIF-1LVR\",\"content\":\"\ud83e\udd73 Congratulations \u07f7\u064b\\u0000\u064bEtXSpideySin you reached level \ud835\udfee!\\n\\nSet your own \ud835\uddf9\ud835\uddf2\ud835\ude03\ud835\uddf2\ud835\uddf9 \ud835\ude02\ud835\uddfd \ud835\uddfa\ud835\uddf2\ud835\ude00\ud835\ude00\ud835\uddee\ud835\uddf4\ud835\uddf2 \ud835\uddf0\ud835\uddfc\ud835\uddfb\ud835\ude01\ud835\uddf2\ud835\uddfb\ud835\ude01 with !\ud835\uddf1\ud835\uddee\ud835\ude00\ud835\uddf5\ud835\uddef\ud835\uddfc\ud835\uddee\ud835\uddff\ud835\uddf1 command!\"},{\"date\":\"2025-07-05T15:35:40.730Z\",\"senderUserId\":\"2652402606\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CNRC-T9NE-GN6F-1LVR\",\"content\":\"!Ai chat are you real ai? \"},{\"date\":\"2025-07-05T15:35:46.609Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CNRC-TB5C-906F-1LVR\",\"content\":\"lol yea real enough to chat and have fun here \ud83e\udd16\u2728\",\"referMsg\":\"AI Answer to: are you real ai?\"}]}\nUser: i am cute ?\nAssistant:"}],"shard":{"index":85,"name":"turns-00085.parquet","rows":65589}}
