{"id":2302,"date":"2025-08-26T00:06:43","date_gmt":"2025-08-26T06:06:43","guid":{"rendered":"https:\/\/ddmx.cc\/?p=2302"},"modified":"2025-08-26T00:06:46","modified_gmt":"2025-08-26T06:06:46","slug":"problematizacion-web-interactiva","status":"publish","type":"post","link":"https:\/\/ddmx.cc\/blog\/archivos\/2302","title":{"rendered":"\u00bfProblematizaci\u00f3n? &#8211;  Web Interactiva"},"content":{"rendered":"\n<!DOCTYPE html>\n<html lang=\"es\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>El Viaje de la Problematizaci\u00f3n<\/title>\n    <script src=\"https:\/\/cdn.tailwindcss.com\"><\/script>\n    <link rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\">\n    <link rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin>\n    <link href=\"https:\/\/fonts.googleapis.com\/css2?family=Inter:wght@400;600;700&#038;display=swap\" rel=\"stylesheet\">\n    <!-- Chosen Palette: Warm Neutrals -->\n    <!-- Application Structure Plan: He dise\u00f1ado una SPA de desplazamiento vertical que lleva al usuario en un viaje conceptual. Comienza con el problema (el 'muro' de las certezas), luego contrasta la realidad din\u00e1mica con el pensamiento est\u00e1tico, ofrece un ejercicio interactivo para 'derribar' una certeza, explica las herramientas (di\u00e1logo y escucha) y concluye con el objetivo final (autonom\u00eda). Esta estructura narrativa es m\u00e1s atractiva y efectiva para un tema filos\u00f3fico que un simple tablero o una presentaci\u00f3n lineal, ya que refleja el proceso de transformaci\u00f3n personal que describe el texto. -->\n    <!-- Visualization & Content Choices: Dado que el informe es puramente conceptual y no contiene datos cuantitativos, he optado por no usar librer\u00edas de gr\u00e1ficos. En su lugar, he creado met\u00e1foras visuales y diagramas utilizando HTML y Tailwind CSS. El elemento central es un ejercicio interactivo (Objetivo: Organizar\/Transformar) que deconstruye una 'certeza' a trav\u00e9s de clics del usuario, mostrando el cambio de un prejuicio a preguntas abiertas. Esto se logra con JavaScript simple. Otros diagramas, como el flujo hacia la autonom\u00eda (Objetivo: Organizar), tambi\u00e9n se construyen con HTML\/CSS para mantener la aplicaci\u00f3n ligera y visualmente coherente. -->\n    <!-- CONFIRMATION: NO SVG graphics used. NO Mermaid JS used. -->\n    <style>\n        body {\n            font-family: 'Inter', sans-serif;\n            background-color: #FDFBF8;\n            color: #4A4A4A;\n        }\n        .fade-in {\n            opacity: 0;\n            transform: translateY(20px);\n            transition: opacity 0.6s ease-out, transform 0.6s ease-out;\n        }\n        .fade-in.visible {\n            opacity: 1;\n            transform: translateY(0);\n        }\n        .wall {\n            background-image: linear-gradient(45deg, #E2D9D1 25%, transparent 25%), linear-gradient(-45deg, #E2D9D1 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #E2D9D1 75%), linear-gradient(-45deg, transparent 75%, #E2D9D1 75%);\n            background-size: 20px 20px;\n            background-color: #F0EBE5;\n            transition: opacity 0.5s ease-in-out;\n        }\n        .crack-animation {\n            animation: crack 0.5s forwards;\n        }\n        @keyframes crack {\n            0% { opacity: 1; transform: scale(1); }\n            50% { opacity: 0.5; transform: scale(1.02); }\n            100% { opacity: 0; transform: scale(0.98); }\n        }\n        .btn-primary {\n            background-color: #A68B7C;\n            color: #FFFFFF;\n            transition: background-color 0.3s ease;\n        }\n        .btn-primary:hover {\n            background-color: #8E7667;\n        }\n        .step-connector::after {\n            content: '';\n            position: absolute;\n            left: 50%;\n            top: 100%;\n            transform: translateX(-50%);\n            width: 2px;\n            height: 3rem;\n            background-color: #D1C4B8;\n        }\n    <\/style>\n<\/head>\n<body class=\"antialiased\">\n\n    <header class=\"text-center py-12 px-4\">\n        <h1 class=\"text-4xl md:text-5xl font-bold text-[#6B5B51] mb-4\">El Viaje de la Problematizaci\u00f3n<\/h1>\n        <p class=\"text-lg md:text-xl max-w-3xl mx-auto text-gray-600\">Una exploraci\u00f3n interactiva para ver m\u00e1s all\u00e1 de nuestras ideas fijas y entender la realidad.<\/p>\n    <\/header>\n\n    <main class=\"container mx-auto px-4 pb-20\">\n\n        <!-- Section 1: The Wall of Certainty -->\n        <section id=\"section-wall\" class=\"text-center py-16 fade-in\">\n            <h2 class=\"text-3xl font-bold text-[#6B5B51] mb-4\">1. El Muro de las \u00abCertezas\u00bb<\/h2>\n            <p class=\"max-w-2xl mx-auto mb-8 text-gray-600\">\n                A menudo, construimos un muro entre nosotros y la realidad. Este muro est\u00e1 hecho de \u00abcertezas\u00bb: ideas fijas y prejuicios que creemos sin cuestionar. Nos impiden ver el mundo como realmente es, en su constante cambio.\n            <\/p>\n            <div class=\"wall w-full max-w-md h-48 mx-auto rounded-lg shadow-md flex items-center justify-center\">\n                <span id=\"wall-text\" class=\"text-2xl font-bold text-[#6B5B51] bg-[#FDFBF8] bg-opacity-80 px-4 py-2 rounded\">Tus Ideas Fijas<\/span>\n            <\/div>\n        <\/section>\n\n        <!-- Section 2: Reality vs. Mindset -->\n        <section id=\"section-contrast\" class=\"py-16 fade-in\">\n            <h2 class=\"text-3xl font-bold text-center text-[#6B5B51] mb-12\">2. Realidad Din\u00e1mica vs. Mente Est\u00e1tica<\/h2>\n            <div class=\"grid md:grid-cols-2 gap-8 max-w-5xl mx-auto\">\n                <div class=\"border-2 border-[#D1C4B8] p-6 rounded-lg shadow-sm\">\n                    <h3 class=\"text-2xl font-semibold text-center mb-4 text-[#A68B7C]\">La Realidad en Movimiento<\/h3>\n                    <p class=\"text-center mb-4\">La realidad es como un r\u00edo, siempre fluyendo y cambiando gracias a nuestras acciones e interacciones.<\/p>\n                    <div class=\"h-48 rounded-md overflow-hidden relative\">\n                        <div class=\"absolute inset-0 bg-gradient-to-r from-[#E0D8D0] to-[#F0EBE5] animate-pulse\"><\/div>\n                        <p class=\"absolute inset-0 flex items-center justify-center text-5xl opacity-20\">\ud83c\udf0a<\/p>\n                    <\/div>\n                <\/div>\n                <div class=\"border-2 border-gray-300 p-6 rounded-lg shadow-sm\">\n                    <h3 class=\"text-2xl font-semibold text-center mb-4 text-gray-500\">Nuestra Mente Est\u00e1tica<\/h3>\n                    <p class=\"text-center mb-4\">Nuestras ideas, en cambio, a menudo son r\u00edgidas y no se actualizan, qued\u00e1ndose atr\u00e1s.<\/p>\n                    <div class=\"h-48 bg-gray-200 rounded-md flex items-center justify-center\">\n                         <p class=\"text-5xl opacity-40\">\ud83e\uddf1<\/p>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/section>\n\n        <!-- Section 3: Interactive Example -->\n        <section id=\"section-interactive\" class=\"py-16 fade-in\">\n            <h2 class=\"text-3xl font-bold text-center text-[#6B5B51] mb-4\">3. Derribando una Certeza<\/h2>\n            <p class=\"max-w-2xl mx-auto mb-12 text-center text-gray-600\">\n                Veamos c\u00f3mo funciona la problematizaci\u00f3n. Tomemos una certeza com\u00fan y usaremos preguntas para romperla y llegar a una comprensi\u00f3n m\u00e1s profunda y real. Haz clic para empezar.\n            <\/p>\n            <div id=\"interactive-exercise\" class=\"bg-white p-8 rounded-xl shadow-lg max-w-2xl mx-auto text-center transition-all duration-500 min-h-[20rem] flex flex-col justify-center\">\n                <div id=\"certainty-box\">\n                    <p class=\"text-gray-500 mb-2\">La Certeza:<\/p>\n                    <h3 class=\"text-2xl md:text-3xl font-bold text-[#6B5B51] mb-8\">\u00abLos maestros no leen.\u00bb<\/h3>\n                    <button id=\"start-btn\" class=\"btn-primary font-bold py-3 px-8 rounded-full text-lg\">\n                        Empezar a Problematizar\n                    <\/button>\n                <\/div>\n                <div id=\"questions-box\" class=\"hidden\">\n                    <div id=\"question-display\" class=\"mb-8\">\n                        <p class=\"text-gray-500 mb-2\" id=\"question-label\">Pregunta 1:<\/p>\n                        <p class=\"text-xl md:text-2xl font-semibold text-[#8E7667]\" id=\"question-text\"><\/p>\n                    <\/div>\n                    <button id=\"next-btn\" class=\"btn-primary font-bold py-2 px-6 rounded-full\">\n                        Siguiente Pregunta\n                    <\/button>\n                <\/div>\n                 <div id=\"result-box\" class=\"hidden\">\n                    <p class=\"text-gray-500 mb-2\">Conclusi\u00f3n:<\/p>\n                    <p class=\"text-xl md:text-2xl font-semibold text-green-700\">Hemos pasado de un prejuicio paralizante a una reflexi\u00f3n que abre posibilidades de acci\u00f3n y mejora.<\/p>\n                <\/div>\n            <\/div>\n        <\/section>\n\n        <!-- Section 4: The Tools -->\n        <section id=\"section-tools\" class=\"py-16 fade-in\">\n            <h2 class=\"text-3xl font-bold text-center text-[#6B5B51] mb-12\">4. Las Herramientas Clave<\/h2>\n             <p class=\"max-w-2xl mx-auto mb-12 text-center text-gray-600\">\n                Para problematizar no se necesitan f\u00f3rmulas complejas, sino dos pr\u00e1cticas humanas fundamentales que nos conectan con los dem\u00e1s y con la realidad.\n            <\/p>\n            <div class=\"flex flex-col md:flex-row justify-center items-center gap-8 md:gap-16\">\n                <div class=\"text-center\">\n                    <div class=\"bg-[#E0D8D0] rounded-full h-32 w-32 flex items-center justify-center mx-auto mb-4\">\n                        <span class=\"text-5xl\">\ud83d\udcac<\/span>\n                    <\/div>\n                    <h3 class=\"text-2xl font-semibold text-[#A68B7C]\">Di\u00e1logo<\/h3>\n                    <p class=\"max-w-xs\">Conversar para intercambiar ideas, no para imponerlas. Es un encuentro de perspectivas.<\/p>\n                <\/div>\n                <div class=\"text-center\">\n                    <div class=\"bg-[#E0D8D0] rounded-full h-32 w-32 flex items-center justify-center mx-auto mb-4\">\n                        <span class=\"text-5xl\">\ud83d\udc42<\/span>\n                    <\/div>\n                    <h3 class=\"text-2xl font-semibold text-[#A68B7C]\">Escucha<\/h3>\n                    <p class=\"max-w-xs\">Prestar atenci\u00f3n real a lo que otros dicen para comprender su mundo y su experiencia.<\/p>\n                <\/div>\n            <\/div>\n        <\/section>\n\n        <!-- Section 5: The Goal -->\n        <section id=\"section-goal\" class=\"py-16 fade-in\">\n            <h2 class=\"text-3xl font-bold text-center text-[#6B5B51] mb-4\">5. El Objetivo Final: Ser Sujetos Aut\u00f3nomos<\/h2>\n            <p class=\"max-w-3xl mx-auto mb-12 text-center text-gray-600\">\n                El fin de la problematizaci\u00f3n no es solo pensar mejor, sino actuar mejor. Es un camino para recuperar nuestra capacidad de construir nuestro propio camino, entendiendo la realidad y haci\u00e9ndonos cargo de ella.\n            <\/p>\n            <div class=\"flex flex-col items-center space-y-8\">\n                <div class=\"relative text-center step-connector\">\n                    <div class=\"bg-white border-2 border-[#D1C4B8] rounded-full p-4 w-56\">\n                        <p class=\"font-bold text-[#A68B7C]\">1. Cuestionar Certezas<\/p>\n                        <p class=\"text-sm\">Romper con los prejuicios.<\/p>\n                    <\/div>\n                <\/div>\n                <div class=\"relative text-center step-connector\">\n                    <div class=\"bg-white border-2 border-[#D1C4B8] rounded-full p-4 w-56\">\n                        <p class=\"font-bold text-[#A68B7C]\">2. Comprender lo que Pasa<\/p>\n                        <p class=\"text-sm\">Conectarse con la realidad.<\/p>\n                    <\/div>\n                <\/div>\n                <div class=\"relative text-center\">\n                     <div class=\"bg-[#A68B7C] text-white rounded-full p-6 w-64 shadow-lg\">\n                        <p class=\"font-bold text-xl\">3. Actuar con Sentido<\/p>\n                        <p>Construir tu propio camino.<\/p>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/section>\n\n    <\/main>\n\n    <footer class=\"text-center py-8 border-t border-gray-200\">\n        <p class=\"text-gray-500\">Una aplicaci\u00f3n interactiva basada en el an\u00e1lisis de la \u00abProblematizaci\u00f3n de la realidad\u00bb.<\/p>\n    <\/footer>\n\n    <script>\n        document.addEventListener('DOMContentLoaded', () => {\n            const fadeInElements = document.querySelectorAll('.fade-in');\n            const observer = new IntersectionObserver((entries) => {\n                entries.forEach(entry => {\n                    if (entry.isIntersecting) {\n                        entry.target.classList.add('visible');\n                    }\n                });\n            }, { threshold: 0.1 });\n\n            fadeInElements.forEach(el => {\n                observer.observe(el);\n            });\n\n            const startBtn = document.getElementById('start-btn');\n            const certaintyBox = document.getElementById('certainty-box');\n            const questionsBox = document.getElementById('questions-box');\n            const resultBox = document.getElementById('result-box');\n            const nextBtn = document.getElementById('next-btn');\n            const questionLabel = document.getElementById('question-label');\n            const questionText = document.getElementById('question-text');\n            const wall = document.querySelector('.wall');\n            const wallText = document.getElementById('wall-text');\n\n            const questions = [\n                \"\u00bfQu\u00e9 tipo de cosas, espec\u00edficamente, no leen?\",\n                \"\u00bfConocemos sus verdaderos intereses y pasiones?\",\n                \"\u00bfQu\u00e9 estamos haciendo nosotros para fomentar y facilitar la lectura?\"\n            ];\n            let currentQuestionIndex = 0;\n\n            startBtn.addEventListener('click', () => {\n                certaintyBox.classList.add('hidden');\n                questionsBox.classList.remove('hidden');\n                displayQuestion();\n            });\n\n            nextBtn.addEventListener('click', () => {\n                currentQuestionIndex++;\n                if (currentQuestionIndex < questions.length) {\n                    displayQuestion();\n                } else {\n                    questionsBox.classList.add('hidden');\n                    resultBox.classList.remove('hidden');\n                    wall.classList.add('crack-animation');\n                    wallText.textContent = \"Realidad Abierta\";\n                }\n            });\n\n            function displayQuestion() {\n                questionLabel.textContent = `Pregunta ${currentQuestionIndex + 1}:`;\n                questionText.textContent = questions[currentQuestionIndex];\n                if (currentQuestionIndex === questions.length - 1) {\n                    nextBtn.textContent = 'Ver Conclusi\u00f3n';\n                }\n            }\n        });\n    <\/script>\n\n<\/body>\n<\/html>\n\n","protected":false},"excerpt":{"rendered":"<p>El Viaje de la Problematizaci\u00f3n El Viaje de la Problematizaci\u00f3n Una exploraci\u00f3n interactiva para ver m\u00e1s all\u00e1 de nuestras ideas fijas y entender la realidad. 1. El Muro de las \u00abCertezas\u00bb A menudo, construimos un muro entre nosotros y la realidad. Este muro est\u00e1 hecho de \u00abcertezas\u00bb: ideas fijas y prejuicios que creemos sin cuestionar. [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":2303,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"rop_custom_images_group":[],"rop_custom_messages_group":[],"rop_publish_now":"no","rop_publish_now_accounts":{"facebook_2925173004293474_260002561269783":""},"rop_publish_now_history":[{"account":"facebook_2925173004293474_260002561269783","service":"facebook","timestamp":1756188430,"status":"success"}],"rop_publish_now_status":"done","site-container-style":"default","site-container-layout":"default","site-sidebar-layout":"default","site-transparent-header":"default","disable-article-header":"default","disable-site-header":"default","disable-site-footer":"default","disable-content-area-spacing":"default","footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[18],"tags":[],"class_list":["post-2302","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-consejo-tecnico-escolar"],"_wp_page_template":null,"_wp_attachment_metadata":null,"_wp_attached_file":null,"_wp_attachment_context":null,"_elementor_edit_mode":"","_elementor_template_type":"","_wp_attachment_backup_sizes":null,"_wpas_feature_enabled":"1","_wpas_is_tweetstorm":null,"_wpas_mess":"","_thumbnail_id":"2303","_wpas_done_all":"","_wp_attachment_image_alt":null,"_oembed_953a61d5df8c3836a556d8d39803bf3c":null,"_oembed_time_953a61d5df8c3836a556d8d39803bf3c":null,"_wpas_skip_28712532":null,"_oembed_4a4bb227a6bbfc1286813ba1a53587ee":null,"_oembed_time_4a4bb227a6bbfc1286813ba1a53587ee":null,"_oembed_b65f030d0e4fe78a9f2aa20ef42c0e18":null,"_oembed_time_b65f030d0e4fe78a9f2aa20ef42c0e18":null,"_oembed_f6a64b4156635a0bc55b4c4bbc364650":null,"_oembed_time_f6a64b4156635a0bc55b4c4bbc364650":null,"_oembed_a22c2ada96445daed271c1dcee845f2b":null,"_menu_item_type":null,"_menu_item_menu_item_parent":null,"_menu_item_object_id":null,"_menu_item_object":null,"_menu_item_target":null,"_menu_item_classes":null,"_menu_item_xfn":null,"_menu_item_url":null,"_menu_item_orphaned":null,"_wp_attachment_custom_header_last_used_cozibee":null,"_wp_attachment_is_custom_header":null,"_wp_attachment_is_custom_background":null,"_oembed_0fce63d053e1c840acdaf9784da4fc8b":null,"_oembed_time_0fce63d053e1c840acdaf9784da4fc8b":null,"_oembed_868a97a741381805139bcba376ff0625":null,"_oembed_time_868a97a741381805139bcba376ff0625":null,"_oembed_e579f188e1e4ab796dbace1957f8fbde":null,"_oembed_time_e579f188e1e4ab796dbace1957f8fbde":null,"_oembed_3aa5ccda408558f57932bf67f990a691":null,"_oembed_time_3aa5ccda408558f57932bf67f990a691":null,"_oembed_c2491fa9a9f5cdc93a304b975729ea15":null,"_oembed_time_c2491fa9a9f5cdc93a304b975729ea15":null,"_oembed_5d0a0fbc199d09fc11425162a9492c14":null,"_oembed_time_5d0a0fbc199d09fc11425162a9492c14":null,"_oembed_ba589a8b01cad13e4e566584052cb77a":null,"_oembed_time_ba589a8b01cad13e4e566584052cb77a":null,"_oembed_30669573d2b5e70ea857547628b634da":null,"_oembed_time_30669573d2b5e70ea857547628b634da":null,"_oembed_c6c454880f54c026403650bfc764daa8":null,"_oembed_time_c6c454880f54c026403650bfc764daa8":null,"_oembed_3d570b3811c404e494d6a02452207e66":null,"_oembed_time_3d570b3811c404e494d6a02452207e66":null,"_oembed_4e4c64d45329ac65f2ecba3f1098156b":null,"_oembed_time_4e4c64d45329ac65f2ecba3f1098156b":null,"_oembed_26ea7d7572a89a903bdcc029628ad5b2":null,"_oembed_time_26ea7d7572a89a903bdcc029628ad5b2":null,"_oembed_a7e95c0362f8dba8c04afb28dfeba5c4":null,"_oembed_time_a7e95c0362f8dba8c04afb28dfeba5c4":null,"_oembed_e5b9ced47b1732d259a5d4aeddd9f86b":null,"_oembed_time_e5b9ced47b1732d259a5d4aeddd9f86b":null,"_oembed_5b4c9d950ab8f0e6ee36bf1d03b97fa2":null,"_oembed_time_5b4c9d950ab8f0e6ee36bf1d03b97fa2":null,"_oembed_b49cdec356d7242bb8a49d9c9f01bc06":null,"_oembed_time_b49cdec356d7242bb8a49d9c9f01bc06":null,"_oembed_304f4ae101daf3ec11ce08903a61e1a1":null,"_oembed_time_304f4ae101daf3ec11ce08903a61e1a1":null,"_oembed_83e577f7d02d35ed039e43ba03038e30":null,"_oembed_time_83e577f7d02d35ed039e43ba03038e30":null,"_oembed_ac101d4e0aa9c1e0993fbaffe57d0fc5":null,"_oembed_time_ac101d4e0aa9c1e0993fbaffe57d0fc5":null,"_oembed_b8411cad4c872303f3f389c0550cfc51":null,"_oembed_time_b8411cad4c872303f3f389c0550cfc51":null,"_oembed_a21a162044b7b51413df6eac11ad958f":null,"_oembed_time_a21a162044b7b51413df6eac11ad958f":null,"_oembed_fba64fc3e6e979fc9c4aa99f0afe7d79":null,"_oembed_time_fba64fc3e6e979fc9c4aa99f0afe7d79":null,"_oembed_76d1c5765b2bc8197eba722fa7cc4244":null,"_oembed_time_76d1c5765b2bc8197eba722fa7cc4244":null,"_oembed_1af62fd759021cc0b68eaa004effd6d5":null,"_oembed_time_1af62fd759021cc0b68eaa004effd6d5":null,"_oembed_2aeeb91d42a24ab084a9cb37fb3b67f1":null,"_oembed_time_2aeeb91d42a24ab084a9cb37fb3b67f1":null,"_oembed_a20b7becc3d5a90f749947d58de23463":null,"_oembed_time_a20b7becc3d5a90f749947d58de23463":null,"_oembed_8796659fa365a11c137d85033d2e7b2c":null,"_jetpack_post_was_ever_published":null,"_jetpack_newsletter_access":null,"_jetpack_newsletter_tier_id":null,"_oembed_5e6fd9549f847190c195ab03255f6ae1":null,"_oembed_554eaf78a040947b2cdd90835d8cd276":null,"_oembed_time_554eaf78a040947b2cdd90835d8cd276":null,"_oembed_7271f435f5fb97d3120864ad34adb6c3":null,"_oembed_time_7271f435f5fb97d3120864ad34adb6c3":null,"_oembed_1fa2fbab810b9b626ad7cc0992ad6aaf":null,"_oembed_time_1fa2fbab810b9b626ad7cc0992ad6aaf":null,"_oembed_64d2135e548c4ce907bc35b61950835b":null,"_oembed_time_64d2135e548c4ce907bc35b61950835b":null,"_oembed_b06e05f997fbefc05e29757e11f828c6":null,"_oembed_time_b06e05f997fbefc05e29757e11f828c6":null,"_oembed_8ce37cc1b7e4dd2fc03872862421313f":null,"_oembed_time_8ce37cc1b7e4dd2fc03872862421313f":null,"_oembed_2158468bd8321669930d1e9681ce2bef":null,"_oembed_time_2158468bd8321669930d1e9681ce2bef":null,"_oembed_ce1b323d791120f5404dbf8cceb57366":null,"_oembed_time_ce1b323d791120f5404dbf8cceb57366":null,"_oembed_21a8242fe71dbeda6363d1536af838e8":null,"_oembed_time_21a8242fe71dbeda6363d1536af838e8":null,"_oembed_eb56dfdacfea2f082dd29cd9084ec889":null,"_wp_old_slug":null,"_oembed_630acfcb06b9afa6ddad824949b84793":null,"_pingme":null,"_encloseme":null,"_oembed_5a7c9eb8a81530ecf9e4e972c23ba731":null,"_oembed_f2fd7c802a7374c43ea88d0097870f1b":null,"_oembed_time_f2fd7c802a7374c43ea88d0097870f1b":null,"_oembed_time_5a7c9eb8a81530ecf9e4e972c23ba731":null,"_oembed_6a91eb9d3d56701e2bf3c9752e96e963":null,"_oembed_c420e9b8b4ecc62da9e432b3ac6a775c":null,"_oembed_725a018f8f3c315b019b5027147af17c":null,"_oembed_fbaa8b858f2c2b8bd17bd9f041381fd0":null,"_oembed_b1333ac22358b86e275b521bfe898d6c":null,"_oembed_81a8344c3ba22ed7e81d42d93e039c83":null,"_oembed_e8b758a02e7baa37faf81b4537e12296":null,"_oembed_f176d255aad93b4de0d42f54076770bd":null,"_oembed_b39b53a24b9c3ddc8f4d0334bdf02260":null,"_oembed_172d3f081ea3bc54cd6f27cf98769eac":null,"_oembed_a121a60eb9062ad69062a9659affb999":null,"_wp_desired_post_slug":null,"_wp_attachment_custom_header_last_used_blogstream":null,"_edit_lock":"1756188408:2","_last_editor_used_jetpack":null,"_jetpack_related_posts_cache":null,"_edit_last":"2","_wp_trash_meta_status":null,"_wp_trash_meta_time":null,"footnotes":"","jetpack_publicize_connections":[],"_links":{"self":[{"href":"https:\/\/ddmx.cc\/blog\/wp-json\/wp\/v2\/posts\/2302","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ddmx.cc\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ddmx.cc\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ddmx.cc\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/ddmx.cc\/blog\/wp-json\/wp\/v2\/comments?post=2302"}],"version-history":[{"count":1,"href":"https:\/\/ddmx.cc\/blog\/wp-json\/wp\/v2\/posts\/2302\/revisions"}],"predecessor-version":[{"id":2304,"href":"https:\/\/ddmx.cc\/blog\/wp-json\/wp\/v2\/posts\/2302\/revisions\/2304"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ddmx.cc\/blog\/wp-json\/wp\/v2\/media\/2303"}],"wp:attachment":[{"href":"https:\/\/ddmx.cc\/blog\/wp-json\/wp\/v2\/media?parent=2302"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ddmx.cc\/blog\/wp-json\/wp\/v2\/categories?post=2302"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ddmx.cc\/blog\/wp-json\/wp\/v2\/tags?post=2302"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}