
            <script>
            (function(){
                const timer = [{"countdown_start":"","countdown_end":"2027\/02\/16 10:00","countdown_text":"To the conference remains:","turn_off_countdown_button":"true"}];
                // normalize datetime strings
                for (let i = 0; i < timer.length; i++) {
                    if (timer[i] && timer[i]["countdown_end"]) {
                        timer[i]["countdown_end"] = timer[i]["countdown_end"].replace(/\//g, "-").replace(" ", "T");
                    }
                }

                const TR = {"day_one":"day_one","day_two":"day_two","day_five":"day_five","hour_one":"hour_one","hour_two":"hour_two","hour_five":"hour_five","minute_one":"minute_one","minute_two":"minute_two","minute_five":"minute_five","second_one":"second_one","second_two":"second_two","second_five":"second_five","day":"day","hour":"hour","minute":"minute","second":"second","day_singular":"day","day_plural":"days","hour_singular":"hour","hour_plural":"hours","minute_singular":"minute","minute_plural":"minutes","second_singular":"second","second_plural":"seconds","register_text":"<span>REGISTER<br\/>Get a free ticket<\/span>","register_link":"\/en\/registration\/","countdown_btn_text":"Book a stand","countdown_btn_url":"\/en\/become-an-exhibitor"};
                const locale = "en_US";
                const showSeconds = true;
                const targetId = 98897;

                jQuery(document).ready(function($) {
                    const intervals = {};
                    let j = 0; // pointer to current timer item

                    function updateCountdownStop(elementId) {
                        if (intervals[elementId]) {
                            clearInterval(intervals[elementId]);
                            delete intervals[elementId];
                        }
                    }

                    function pluralizePolish(count, singular, plural, pluralGenitive) {
                        if (count === 1 || (count % 10 === 1 && count % 100 !== 11)) {
                            return count + " " + singular;
                        } else if (count % 10 >= 2 && count % 10 <= 4 && (count % 100 < 10 || count % 100 >= 20)) {
                            return count + " " + plural;
                        } else {
                            return count + " " + pluralGenitive;
                        }
                    }

                    function pluralizeEnglish(count, noun) {
                        return count + " " + (count === 1 ? noun : (noun + "s"));
                    }

                    function pluralizeGerman(count, singular, plural) {
                        return count + " " + (count === 1 ? singular : plural);
                    }

                    // Wrapper using TR translations
                    function buildEndMessage(days, hours, minutes, seconds) {
                        if (locale === "pl_PL") {
                            const d = pluralizePolish(days, TR.day_one, TR.day_two, TR.day_five);
                            const h = pluralizePolish(hours, TR.hour_one, TR.hour_two, TR.hour_five);
                            const m = pluralizePolish(minutes, TR.minute_one, TR.minute_two, TR.minute_five);
                            const s = showSeconds ? " " + pluralizePolish(seconds, TR.second_one, TR.second_two, TR.second_five) : "";
                            return d + " " + h + " " + m + s;
                        } else if (locale === "de_DE") {
                            const d = pluralizeGerman(days, TR.day_singular, TR.day_plural);
                            const h = pluralizeGerman(hours, TR.hour_singular, TR.hour_plural);
                            const m = pluralizeGerman(minutes, TR.minute_singular, TR.minute_plural);
                            const s = showSeconds ? " " + pluralizeGerman(seconds, TR.second_singular, TR.second_plural) : "";
                            return d + " " + h + " " + m + s;
                        } else {
                            const d = pluralizeEnglish(days, TR.day);
                            const h = pluralizeEnglish(hours, TR.hour);
                            const m = pluralizeEnglish(minutes, TR.minute);
                            const s = showSeconds ? " " + pluralizeEnglish(seconds, TR.second) : "";
                            return d + " " + h + " " + m + s;
                        }
                    }

                    function updateCountdown(elementId) {
                        // ensure we clear previous interval if exists
                        updateCountdownStop(elementId);

                        intervals[elementId] = setInterval(function() {
                            if (typeof timer[j] !== "undefined" && timer[j] != null) {
                                const rightNow = new Date();
                                const endTime = new Date(timer[j]["countdown_end"]);
                                // keep hours as-is; in case you need timezone adjustments, handle here
                                endTime.setHours(endTime.getHours());
                                const distance = endTime - rightNow;

                                const days = Math.floor(distance / (1000 * 60 * 60 * 24));
                                const hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
                                const minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
                                const seconds = Math.floor((distance % (1000 * 60)) / 1000);

                                let endMessage = "";

                                if (distance < 0) {
                                    // move to next timer entry
                                    j++;
                                    if (typeof timer[j] !== "undefined" && timer[j] != null && timer[j]["countdown_text"] != "") {
                                        $("#timer-header-text-" + elementId).text(timer[j]["countdown_text"]);
                                        $("#timer-button-" + elementId).text(timer[j]["countdown_btn_text"]);
                                        $("#timer-button-" + elementId).attr("href", timer[j]["countdown_btn_url"]);
                                    }
                                } else {
                                    endMessage = buildEndMessage(days, hours, minutes, seconds);
                                    $("#pwe-countdown-timer-" + elementId).text(endMessage);
                                }
                            } else {
                                // no more timers; stop and hide
                                updateCountdownStop(elementId);
                                $("#pwe-countdown-timer-" + elementId).parent().hide(0);
                            }
                        }, 1000);
                    }

                    // start
                    updateCountdown(targetId);

                    // Change button on sticky main timer (existing logic)
                    function handleClassChange(mutationsList, observer) {
                        for (let mutation of mutationsList) {
                            if (mutation.type === "attributes" && mutation.attributeName === "class") {
                                const targetElement = mutation.target;
                                const customBtn = document.getElementById("timer-button-" + targetId);
                                const hasStuckedClass = targetElement.classList.contains("is_stucked");
                                if (customBtn) {
                                    const buttonLink = customBtn.href || "";
                                    if (hasStuckedClass) {
                                        // use translations from TR
                                        customBtn.innerHTML = TR.register_text || '<span>Zarejestruj się<br/>Odbierz darmowy bilet</span>';
                                        customBtn.href = TR.register_link || "/rejestracja/";
                                    } else {
                                        customBtn.innerHTML = "<span>" + (TR.countdown_btn_text || "Zostań wystawcą") + "</span>";
                                        customBtn.href = TR.countdown_btn_url || "/zostan-wystawca/";
                                    }
                                }
                            }
                        }
                    }

                    let is_stucked = false;
                    const targetElement = document.querySelector(".sticky-element");
                    const mainTimerElement = document.querySelector("#main-timer");
                    const observer = new MutationObserver(handleClassChange);

                    if (mainTimerElement) {
                        const config = { attributes: true, attributeFilter: ["class"] };
                        const showRegisterBarValue = mainTimerElement.getAttribute("data-show-register-bar");
                        if (targetElement && showRegisterBarValue !== "true") {
                            observer.observe(targetElement, config);
                            targetElement.setAttribute("data-is-stucked", is_stucked);
                        }
                    }
                });
            })();
            </script>
            

<script>console.log("org-name_en")</script><script>console.log("537")</script><script>console.log("org-name_pl")</script><script>console.log("537")</script>{"id":253,"date":"2024-01-29T14:17:58","date_gmt":"2024-01-29T13:17:58","guid":{"rendered":"https:\/\/warsawstone.com\/?page_id=253"},"modified":"2026-01-27T10:47:43","modified_gmt":"2026-01-27T09:47:43","slug":"conferences","status":"publish","type":"page","link":"https:\/\/warsawstone.com\/en\/conferences\/","title":{"rendered":"Stone Industry and Stone Processing Technology Conference"},"content":{"rendered":"<div class=\"wpb-content-wrapper\"><p>[vc_row][vc_column width=&#8221;1\/1&#8243;]<div class=\"pwelement pwelement_93044\">\r\n        <style>\r\n            .row-parent:has(.pwelement_93044 .pwe-header) {\r\n                max-width: 100%;\r\n                padding: 0 !important;\r\n            }\r\n            .wpb_column:has(.pwelement_93044 .pwe-header) {\r\n                max-width: 100%;\r\n            }\r\n            .pwelement_93044 .pwe-header-wrapper {\r\n                min-height: 60vh;\r\n                max-width: 1200px;\r\n                margin: 0 auto;\r\n                display: flex;\r\n                z-index: 2;\r\n            }\r\n            .pwelement_93044 .pwe-header-logo {\r\n                max-width: 400px !important;\r\n                width: 100%;\r\n                height: auto;\r\n                z-index: 1;\r\n            }\r\n            .pwelement_93044 .pwe-header-background {\r\n                background-size: cover;\r\n                background-repeat: no-repeat;\r\n                background-position: center;\r\n            }\r\n            .pwelement_93044 .pwe-header-text {\r\n                padding: 18px 0;\r\n                z-index: 1;\r\n            }\r\n            .pwelement_93044 .pwe-header-text :is(h1, h2), .pwe-header .pwe-logotypes-title h4 {\r\n                color: #000000;\r\n                text-transform: uppercase;\r\n                text-align: center;\r\n                width: auto;\r\n            }\r\n            .pwelement_93044 .pwe-header .pwe-logotypes-title {\r\n                justify-content: center;\r\n            }\r\n            .pwelement_93044 .pwe-header .pwe-logotypes-title h4 {\r\n                box-shadow: 9px 9px 0px -6px #000000;\r\n            }\r\n            .pwelement_93044 .pwe-header-text h1 {\r\n                font-size: 30px;\r\n            }\r\n            .pwelement_93044 .pwe-header-text h2 {\r\n                font-size: 36px;\r\n            }\r\n            .pwelement_93044 .pwe-header .slides div p,\r\n            .pwelement_93044 .pwe-header .pwe-logotypes-gallery-wrapper div p{\r\n                color: #000000;\r\n            }\r\n            .pwelement_93044 .pwe-header .dots-container {\r\n                display: none !important;\r\n            }\r\n            .pwelement_93044 .pwe-header .pwe-header-logotypes {\r\n                transition: .3s ease;\r\n                opacity: 0;\r\n            }\r\n            @media (min-width: 300px) and (max-width: 1200px) {\r\n                .pwelement_93044 .pwe-header-text h1 {\r\n                    font-size: calc(20px + (30 - 20) * ( (100vw - 300px) \/ (1200 - 300) ));\r\n                }\r\n                .pwelement_93044 .pwe-header-text h2 {\r\n                    font-size: calc(24px + (36 - 24) * ( (100vw - 300px) \/ (1200 - 300) ));\r\n                }\r\n            }\r\n            @media (max-width: 960px) {\r\n                .row-parent:has(.pwelement_93044 .pwe-header) {\r\n                    padding: 0 !important;\r\n                }\r\n                .pwelement_93044 .pwe-btn-container a {\r\n                    min-width: 280px !important;\r\n                }\r\n            }\r\n        <\/style>\r\n    <style>\r\n        @media (max-width: 569px) {\r\n            #pweHeader .pwe-header-container {\r\n                background-image: url(\/doc\/header_mobile.webp) !important;\r\n            }\r\n        }\r\n    <\/style>\r\n<style>\r\n    .pwelement_93044 .pwe-header-container:before {\r\n        content: \"\";\r\n        position: absolute;\r\n        top: 0;\r\n        left: 0;\r\n        right: 0;\r\n        bottom: 0;\r\n        background-color: ;\r\n        opacity: 0;\r\n        z-index: 0;\r\n    }\r\n    .pwelement_93044 .pwe-header-wrapper {\r\n        min-height: auto !important;\r\n        flex-direction: column;\r\n        justify-content: center;\r\n        align-items: center;\r\n    }\r\n    .pwelement_93044 .header-wrapper-column {\r\n        max-width: 650px;\r\n        width: 100%;\r\n        justify-content: space-evenly;\r\n        align-items: center;\r\n        display: flex;\r\n        flex-direction: column;\r\n        padding: 36px;\r\n    }\r\n    .pwelement_93044 .pwe-header-simple-logo {\r\n        display: flex;\r\n        flex-direction: column;\r\n        justify-content: center;\r\n        align-items: center;\r\n        gap: 18px;\r\n    }\r\n    .pwelement_93044 .pwe-header-simple-logo .pwe-btn-container {\r\n        width: 240px;\r\n        height: 50px;\r\n        padding: 0;\r\n    }\r\n    .pwelement_93044 .pwe-header .pwe-btn {\r\n        background-color: #424242 !important;\r\n        border: #424242 !important;\r\n        color: white !important;\r\n        width: 100%;\r\n        height: 100%;\r\n        transform: scale(1) !important;\r\n        text-transform: uppercase;\r\n        transition: .3s ease;\r\n        font-size: 15px;\r\n        font-weight: 600;\r\n        padding: 6px 18px !important;\r\n        letter-spacing: 0.1em;\r\n        text-align: center;\r\n        display: flex;\r\n        justify-content: center;\r\n        align-items: center;\r\n    }\r\n    .pwelement_93044 .pwe-header-simple-logo .pwe-btn:hover {\r\n        color: white;\r\n        background-color: #2e2e2e!important;\r\n        border: 2px solid #2e2e2e!important;\r\n    }\r\n    .pwelement_93044 .pwe-header-text {\r\n        display: flex;\r\n        flex-direction: column-reverse;\r\n    }\r\n    .pwelement_93044 .pwe-header-text h2 {\r\n        font-size: 40px;\r\n        margin: 0;\r\n    }\r\n    @media (max-width: 1200px) {\r\n        .pwelement_93044 .pwe-header-text h2 {\r\n            font-size: calc(24px + (40 - 24) * ( (100vw - 300px) \/ (1200 - 300) ));\r\n        }\r\n    }\r\n    @media (min-width: 960px) {\r\n        .pwelement_93044 .pwe-header-wrapper {\r\n            min-height: 350px !important;\r\n            height: 350px;\r\n        }\r\n        .pwelement_93044 .header-wrapper-column {\r\n            max-width: 1200px;\r\n            flex-direction: row;\r\n            gap: 60px;\r\n        }\r\n    }\r\n    @media (max-width: 960px) {\r\n        .pwelement_93044 .header-wrapper-column {\r\n            padding: 18px;\r\n        }\r\n    }\r\n<\/style>\r\n\r\n<div id=\"pweHeader\" class=\"pwe-header\">\r\n    <div style=\"background-image: url(https:\/\/warsawstone.com\/doc\/background.webp);\"  class=\"pwe-header-container pwe-header-background\">\r\n        <div class=\"pwe-header-wrapper\">\r\n\r\n            <div class=\"header-wrapper-column\">\r\n                    <div class=\"pwe-header-simple-logo\">\r\n                        <img decoding=\"async\" class=\"pwe-header-logo\" src=\"\/doc\/kongres-color.webp\" alt=\"logo-Stone Poland\">\r\n                        <div id=\"pweBtnRegistration\" class=\"pwe-btn-container header-button\">\r\n                            <a id=\"main-content\" class=\"pwe-link pwe-btn\" href=\"\/en\/registration\/\" alt=\"link to registration\">Take part<\/span><\/a>\r\n                        <\/div>\r\n                    <\/div>\r\n                <div class=\"pwe-header-text\">\r\n                    <h1>Stone Industry and Stone Processing Technology Conference<\/h1>\r\n                    <h2>february 16-18, 2027<\/h2>\r\n                <\/div>\r\n            <\/div>\r\n\r\n        <\/div>\r\n    <\/div>\r\n<\/div><\/div>[\/vc_column][\/vc_row][vc_row row_height_percent=&#8221;0&#8243; override_padding=&#8221;yes&#8221; h_padding=&#8221;2&#8243; top_padding=&#8221;2&#8243; bottom_padding=&#8221;0&#8243; overlay_alpha=&#8221;50&#8243; gutter_size=&#8221;3&#8243; column_width_percent=&#8221;100&#8243; shift_y=&#8221;0&#8243; z_index=&#8221;0&#8243; uncode_shortcode_id=&#8221;147349&#8243;][vc_column width=&#8221;1\/1&#8243;]<div class=\"pwelement pwelement_47295\"><div style=\"visibility: hidden; width: 0; height: 0;\" id=\"main-content\">...<\/div><style>\r\n                    .row-parent:has(.pwelement_47295) {\r\n                        background: #dccdb0;\r\n                        max-width: 100%;\r\n                        padding: 0 !important;\r\n                    }\r\n                    .row-parent:has(.pwelement_47295) {\r\n                        background: #dccdb0;\r\n                        max-width: 100%;\r\n                        padding: 0 !important;\r\n                    }\r\n                    .pwelement_47295 #main-timer p {\r\n                        color: white!important;\r\n                        margin: 9px auto;\r\n                        font-size: 18px !important;\r\n                    }\r\n                    .pwelement_47295 .pwe-btn {\r\n                        color: white!important;\r\n                        background-color: #424242!important;\r\n                        border: 1px solid #424242!important;\r\n                        margin: 9px 18px;\r\n                        transform: scale(1) !important;\r\n                    }\r\n                    .pwelement_47295 .pwe-btn:hover {\r\n                        color: white!important;\r\n                        background-color: #2e2e2e!important;\r\n                        border: 1px solid #2e2e2e!important;\r\n                    }\r\n                    .pwelement_47295 .pwe-timer-text {\r\n                        font-weight: 700;\r\n                        text-transform: uppercase;\r\n                        margin: 9px auto;\r\n                    }\r\n                    .pwelement_47295 .countdown-container {\r\n                        display: flex;\r\n                        justify-content: space-evenly;\r\n                        flex-wrap: wrap;\r\n                        \r\n                        align-items: center;\r\n                        max-width: 1200px;\r\n                        margin: 0 auto;\r\n                    }\r\n                    .pwelement_47295 .pwe-countdown-timer {\r\n                        min-width: 450px;\r\n                        text-align: center;\r\n                    }\r\n                    @media (min-width: 300px) and (max-width: 1200px) {\r\n                        .pwelement_47295 #main-timer p {\r\n                            font-size: calc(14px + (18 - 14) * ( (100vw - 300px) \/ (1200 - 300) )) !important;\r\n                        }\r\n                    }\r\n                    @media (max-width:570px){\r\n                        .pwelement_47295 .countdown-container {\r\n                            display: flex;\r\n                            flex-wrap: wrap;\r\n                            justify-content: space-evenly;\r\n                            align-items: baseline;\r\n                            margin: 8px auto;\r\n                        }\r\n                        .pwelement_47295 .pwe-countdown-timer {\r\n                            min-width: 100%;\r\n                        }\r\n                        .pwelement_47295 #main-timer p {\r\n                            margin: 0 auto;\r\n                        }\r\n                    }\r\n                    @media (max-width:959px){\r\n                        .wpb_column:has(.pwelement_47295) {\r\n                            padding-top: 0 !important;\r\n                        }\r\n                    }<\/style><div id=\"main-timer\" class=\"countdown-container\" data-show-register-bar=\"\"><p id=\"timer-header-text-98897\" class=\"timer-header-text pwe-timer-text\">To the conference remains:<\/p><p id=\"pwe-countdown-timer-98897\" class=\"pwe-countdown-timer pwe-timer-text\">\r\n                        266 days 20 hours 56 minutes 57  seconds \r\n                            <\/p><\/div><\/div>[\/vc_column][\/vc_row][vc_row unlock_row=&#8221;&#8221; row_height_percent=&#8221;0&#8243; overlay_alpha=&#8221;50&#8243; gutter_size=&#8221;3&#8243; column_width_percent=&#8221;100&#8243; shift_y=&#8221;0&#8243; z_index=&#8221;0&#8243; mobile_visibility=&#8221;yes&#8221; uncode_shortcode_id=&#8221;185675&#8243; row_name=&#8221;program&#8221;][vc_column width=&#8221;1\/1&#8243;][vc_custom_heading heading_semantic=&#8221;h4&#8243; text_size=&#8221;h4&#8243; text_transform=&#8221;uppercase&#8221; uncode_shortcode_id=&#8221;201998&#8243; el_class=&#8221;main-heading-text&#8221;]Participate in the industry events as part of the Stone Industry and Stone Processing Technology Conference:[\/vc_custom_heading][\/vc_column][\/vc_row][vc_row row_height_percent=&#8221;0&#8243; overlay_alpha=&#8221;50&#8243; gutter_size=&#8221;3&#8243; column_width_percent=&#8221;100&#8243; shift_y=&#8221;0&#8243; z_index=&#8221;0&#8243; uncode_shortcode_id=&#8221;559790&#8243; row_name=&#8221;program&#8221;][vc_column width=&#8221;1\/1&#8243;]<div id=\"conference-cap\" class=\"conference_cap__main-container\"><div class=\"conference_cap__conf-slug-navigation\"><img decoding=\"async\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/stone-2026-pzk\/conf_img_en.jpg\" alt=\"stone-2026-pzk\" id=\"nav_stone-2026-pzk\" class=\"conference_cap__conf-slug-img\"><img decoding=\"async\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/stone-2026-abra\/conf_img_en.webp\" alt=\"stone-2026-abra\" id=\"nav_stone-2026-abra\" class=\"conference_cap__conf-slug-img\"><img decoding=\"async\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/concrete-2026-pcbc\/conf_img_en.webp\" alt=\"concrete-2026-pcbc\" id=\"nav_concrete-2026-pcbc\" class=\"conference_cap__conf-slug-img\"><img decoding=\"async\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/stone-2026-pzp\/conf_img_en.webp\" alt=\"stone-2026-pzp\" id=\"nav_stone-2026-pzp\" class=\"conference_cap__conf-slug-img\"><img decoding=\"async\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/stone-medal-2026\/conf_img_en.webp\" alt=\"stone-medal-2026\" id=\"nav_stone-medal-2026\" class=\"conference_cap__conf-slug-img\"><img decoding=\"async\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/panel-trendow-stone-2026\/conf_img_en.webp\" alt=\"panel-trendow-stone-2026\" id=\"nav_panel-trendow-stone-2026\" class=\"conference_cap__conf-slug-img\"><\/div><div class=\"conference_cap__conf-slugs-container\"><div id=\"conf_panel-trendow-stone-2026\" class=\"conference_cap__conf-slug\"><div class=\"conference_cap__conf-slug-header\">\r\n                                <img decoding=\"async\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/panel-trendow-stone-2026\/conf_img_en.webp\" alt=\"TRENDS PANEL\" class=\"conference_cap__conf-slug-image\">\r\n                                <div class=\"conference_cap__after-header-html\"><\/div>\r\n                                <div class=\"conference_cap__after-patrons-html\"><\/div>\r\n                                <h2 class=\"conference_cap__conf-slug-location\">TARGET STUDIO <br> Hall D<\/h2>\r\n                                <div class=\"conference_cap__after-location-html\"><\/div>\r\n                                <h2 class=\"conference_cap__conf-slug-title\">TRENDS PANEL<\/h2>\r\n                                <div class=\"conference_cap__after-title-html\"><\/div>\r\n                                <div class=\"conference_cap__conf-button\">\r\n                                    <a href=\"\/en\/registration\/\">Receive a free ticket<\/a>\r\n                                <\/div><\/div><div class=\"conference_cap__conf-slug-navigation-days\"><button id=\"tab_panel-trendow-stone-2026_day-1\" class=\"conference_cap__conf-slug-navigation-day\">Day 1<\/button><button id=\"tab_panel-trendow-stone-2026_day-2\" class=\"conference_cap__conf-slug-navigation-day\">Dzie\u0144 2<\/button><\/div><div class=\"conference_cap__conf-slug-contents\">\r\n                                        <div id=\"content_panel-trendow-stone-2026_day-1\" class=\"conference_cap__conf-slug-content\">\r\n                                            <div class=\"conference_cap__before-day-html\"><\/div>\r\n                                                <div class=\"conference_cap__lecture-container\"><div id=\"panel-trendow-stone-2026_day-1_pre-1\" class=\"conference_cap__lecture-box\"><div class=\"conference_cap__lecture-speaker\"><div class=\"conference_cap__lecture-speaker-img\"><div class=\"pwe-box-speakers-img\"><img decoding=\"async\" class=\"pwe-box-speaker\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/panel-trendow-stone-2026\/IMG-20251227-WA0028.webp?v=1769432945838\" alt=\"speaker portrait\"\r\n                    style=\"position:relative; z-index:1; top:unset; left:unset; max-width: 80%;;\" \/><\/div><\/div><button class=\"conference_cap__lecture-speaker-btn\" data-lecture-id=\"panel-trendow-stone-2026_day-1_pre-1\">BIO<\/button><\/div>\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\">13:00 - 13:30<\/h4><h5 class=\"conference_cap__lecture-name\">JADRANKAMEN d.o.o.  Ivan Kapitanovi\u0107<\/h5><h4 class=\"conference_cap__lecture-title\">Company history and an extensive list of references from around the world (churches, hotels, government buildings)<\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><div id=\"panel-trendow-stone-2026_day-1_pre-2\" class=\"conference_cap__lecture-box\"><div class=\"conference_cap__lecture-speaker\"><div class=\"conference_cap__lecture-speaker-img\"><div class=\"pwe-box-speakers-img\"><img decoding=\"async\" class=\"pwe-box-speaker\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/panel-trendow-stone-2026\/Cezary%20Kowalczyk.webp?v=1770801435999\" alt=\"speaker portrait\"\r\n                    style=\"position:relative; z-index:1; top:unset; left:unset; max-width: 80%;;\" \/><\/div><\/div><button class=\"conference_cap__lecture-speaker-btn\" data-lecture-id=\"panel-trendow-stone-2026_day-1_pre-2\">BIO<\/button><\/div>\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\">13:45 - 14:15<\/h4><h5 class=\"conference_cap__lecture-name\">Technistone Polska sp.z o.o.  Cezary Kowalczyk<\/h5><h4 class=\"conference_cap__lecture-title\">The cheapest material does not win. Why should you trust the Technistone brand?<\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><div id=\"panel-trendow-stone-2026_day-1_pre-3\" class=\"conference_cap__lecture-box\"><div class=\"conference_cap__lecture-speaker\"><div class=\"conference_cap__lecture-speaker-img\"><div class=\"pwe-box-speakers-img\"><img decoding=\"async\" class=\"pwe-box-speaker\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/panel-trendow-stone-2026\/35ff8f87-6de4-48fb-8a49-b0a87c5094e3.webp?v=1770891942167\" alt=\"speaker portrait\"\r\n                    style=\"position:relative; z-index:1; top:unset; left:unset; max-width: 80%;;\" \/><\/div><\/div><button class=\"conference_cap__lecture-speaker-btn\" data-lecture-id=\"panel-trendow-stone-2026_day-1_pre-3\">BIO<\/button><\/div>\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\">14:15 - 14:30<\/h4><h5 class=\"conference_cap__lecture-name\">AN WANG Sp.z o.o. An Dun<\/h5><h4 class=\"conference_cap__lecture-title\">Presentation of AN WANG Sp. z o.o.<\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><div id=\"panel-trendow-stone-2026_day-1_pre-4\" class=\"conference_cap__lecture-box\"><div class=\"conference_cap__lecture-speaker\"><div class=\"conference_cap__lecture-speaker-img\"><div class=\"pwe-box-speakers-img\"><img decoding=\"async\" class=\"pwe-box-speaker\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/panel-trendow-stone-2026\/Alfred%20Marian%20(1).webp?v=1771329686980\" alt=\"speaker portrait\"\r\n                    style=\"position:relative; z-index:1; top:-20px; left:10px; max-width: 50%;margin-top: 20px;\" \/><img decoding=\"async\" class=\"pwe-box-speaker\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/panel-trendow-stone-2026\/Wlodzimierz-ratajczak%20(1).webp?v=1771329756804\" alt=\"speaker portrait\"\r\n                    style=\"position:relative; z-index:2; top:0; left:-10px; max-width: 50%;;\" \/><\/div><\/div><button class=\"conference_cap__lecture-speaker-btn\" data-lecture-id=\"panel-trendow-stone-2026_day-1_pre-4\">BIO<\/button><\/div>\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\">14:30-15:30<\/h4><h5 class=\"conference_cap__lecture-name\">Alfred Marian Sroka, Polish Association of Stone Products Producers<br>W\u0142odzimierz Ratajczak, Association of Engineers and Technicians of the Building Materials Industry<\/h5><h4 class=\"conference_cap__lecture-title\">Errors and irregularities made in the selection of natural stone during the construction of buildings<\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><p>A lecture by stone industry experts Alfred Marian Sroka and W\u0142odzimierz Ratajczak will focus on the most common mistakes made when selecting natural stone in construction. The lecture will discuss key factors influencing the durability, aesthetics, and functionality of stone projects. The speakers will highlight the consequences of incorrectly matching the material to the operating conditions and how to avoid costly mistakes related to stone selection and installation.Additionally, participants will receive practical tips on the correct selection of raw materials, processing technologies, and methods for protecting stone from external factors. The lecture will be an excellent opportunity to gain valuable knowledge for architects, contractors, and investors seeking the best solutions for using natural stone in buildings.<\/p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><div id=\"panel-trendow-stone-2026_day-1_pre-5\" class=\"conference_cap__lecture-box\"><div class=\"conference_cap__lecture-speaker\"><\/div>\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\"><\/h4><h4 class=\"conference_cap__lecture-title\">Share your knowledge on stage and become a speaker! If you would like to present your lecture during the event and reach a wide audience, please send your application to: media2@warsawexpo.eu. Participation as a speaker is completely free of charge, but the number of places is limited - participation is decided on a first-come, first-served basis. We look forward to seeing you there!<\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><\/div>\r\n                                            <div class=\"conference_cap__after-day-html\"><\/div><\/div>\r\n                                        <div id=\"content_panel-trendow-stone-2026_day-2\" class=\"conference_cap__conf-slug-content\">\r\n                                            <div class=\"conference_cap__before-day-html\"><\/div>\r\n                                                <div class=\"conference_cap__lecture-container\"><div id=\"panel-trendow-stone-2026_day-2_pre-1\" class=\"conference_cap__lecture-box\"><div class=\"conference_cap__lecture-speaker\"><div class=\"conference_cap__lecture-speaker-img\"><div class=\"pwe-box-speakers-img\"><img decoding=\"async\" class=\"pwe-box-speaker\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/panel-trendow-stone-2026\/Wojciech%20Bizub.webp?v=1769594133126\" alt=\"speaker portrait\"\r\n                    style=\"position:relative; z-index:1; top:unset; left:unset; max-width: 80%;;\" \/><\/div><\/div><button class=\"conference_cap__lecture-speaker-btn\" data-lecture-id=\"panel-trendow-stone-2026_day-2_pre-1\">BIO<\/button><\/div>\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\">11:30-12:30<\/h4><h5 class=\"conference_cap__lecture-name\">Wojciech Bizub, CEO WBIZNES<\/h5><h4 class=\"conference_cap__lecture-title\">Marketing in the times of digital revolution - how to acquire customers from the internet who will apply themselves?<\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><p>Wojciech will discuss the 4 levers of marketing. Participants will learn why a good product alone isn't enough in times of global competition. How can you leverage AI (artificial intelligence) and digitization to lift the cloak of invisibility from your company?<\/p><p><strong>Additionally, we invite you to stand D4.11 for consultations with our experts.<\/strong><\/p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><div id=\"panel-trendow-stone-2026_day-2_pre-2\" class=\"conference_cap__lecture-box\"><div class=\"conference_cap__lecture-speaker\"><div class=\"conference_cap__lecture-speaker-img\"><div class=\"pwe-box-speakers-img\"><img decoding=\"async\" class=\"pwe-box-speaker\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/panel-trendow-stone-2026\/20250828_133746.webp?v=1770978160303\" alt=\"speaker portrait\"\r\n                    style=\"position:relative; z-index:1; top:unset; left:unset; max-width: 80%;;\" \/><\/div><\/div><button class=\"conference_cap__lecture-speaker-btn\" data-lecture-id=\"panel-trendow-stone-2026_day-2_pre-2\">BIO<\/button><\/div>\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\">12:30 - 13:30<\/h4><h5 class=\"conference_cap__lecture-name\">Nowy Kamieniarz Tomasz Szyperski<\/h5><h4 class=\"conference_cap__lecture-title\">\u201c\u015awi\u0119ty Spok\u00f3j\u201d (Holy Peace) \u2013 a modern InterRisk protection program for the stone industry in cooperation with Global Assistance Polska<\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><div id=\"panel-trendow-stone-2026_day-2_pre-3\" class=\"conference_cap__lecture-box\"><div class=\"conference_cap__lecture-speaker\"><div class=\"conference_cap__lecture-speaker-img\"><div class=\"pwe-box-speakers-img\"><img decoding=\"async\" class=\"pwe-box-speaker\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/panel-trendow-stone-2026\/Cezary%20Kowalczyk.webp?v=1770801558842\" alt=\"speaker portrait\"\r\n                    style=\"position:relative; z-index:1; top:unset; left:unset; max-width: 80%;;\" \/><\/div><\/div><button class=\"conference_cap__lecture-speaker-btn\" data-lecture-id=\"panel-trendow-stone-2026_day-2_pre-3\">BIO<\/button><\/div>\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\">14:30 - 15:00<\/h4><h5 class=\"conference_cap__lecture-name\">Technistone Polska sp.z o.o.  Cezary Kowalczyk<\/h5><h4 class=\"conference_cap__lecture-title\">The cheapest material does not win. Quality is not always about price, it is about choice.<\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><div id=\"panel-trendow-stone-2026_day-2_pre-4\" class=\"conference_cap__lecture-box\"><div class=\"conference_cap__lecture-speaker\"><div class=\"conference_cap__lecture-speaker-img\"><div class=\"pwe-box-speakers-img\"><img decoding=\"async\" class=\"pwe-box-speaker\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/panel-trendow-stone-2026\/JSW.webp?v=1770887278840\" alt=\"speaker portrait\"\r\n                    style=\"position:relative; z-index:1; top:unset; left:unset; max-width: 80%;;\" \/><\/div><\/div><button class=\"conference_cap__lecture-speaker-btn\" data-lecture-id=\"panel-trendow-stone-2026_day-2_pre-4\">BIO<\/button><\/div>\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\">15:00 - 15:15<\/h4><h5 class=\"conference_cap__lecture-name\">WKG Sp. z o.o. Jaros\u0142aw \u015awiadek<\/h5><h4 class=\"conference_cap__lecture-title\">The role of natural stones in sustainable architecture.<\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><div id=\"panel-trendow-stone-2026_day-2_pre-5\" class=\"conference_cap__lecture-box\"><div class=\"conference_cap__lecture-speaker\"><div class=\"conference_cap__lecture-speaker-img\"><div class=\"pwe-box-speakers-img\"><img decoding=\"async\" class=\"pwe-box-speaker\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/panel-trendow-stone-2026\/image001.webp?v=1770887510254\" alt=\"speaker portrait\"\r\n                    style=\"position:relative; z-index:1; top:unset; left:unset; max-width: 80%;;\" \/><\/div><\/div><button class=\"conference_cap__lecture-speaker-btn\" data-lecture-id=\"panel-trendow-stone-2026_day-2_pre-5\">BIO<\/button><\/div>\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\">15:15 - 15:30<\/h4><h5 class=\"conference_cap__lecture-name\">LITOS Anil Taneja<\/h5><h4 class=\"conference_cap__lecture-title\">Discover the possibilities and new applications in natural stone.<\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><\/div>\r\n                                            <div class=\"conference_cap__after-day-html\"><\/div><\/div><\/div><div class=\"conference_cap__after-all-html\"><\/div><\/div><div id=\"conf_stone-medal-2026\" class=\"conference_cap__conf-slug\"><div class=\"conference_cap__conf-slug-header\"><div class=\"conference_cap_medal_ceremony__main-container\">\r\n                <div class=\"conference_cap_medal_ceremony__title\">\r\n                    <h2>Medal Ceremony<\/h2>\r\n                <\/div>\r\n                <div class=\"conference_cap_medal_ceremony__ceremony-container\">\r\n                    <div class=\"conference_cap_medal_ceremony__date\">\r\n                        <h4>Date<\/h4>\r\n                        <span>17 february <br> time. 12:00<\/span>\r\n                    <\/div>\r\n                    <div class=\"conference_cap_medal_ceremony__location\">\r\n                        <h4>Location<\/h4>\r\n                        <span>Hall D<br> Trade Fair Studio<\/span>\r\n                    <\/div>\r\n                <\/div>\r\n            <\/div><p>Trade Fair Medals Award Ceremony<\/p>\r\n                                <div class=\"conference_cap__conf-button\">\r\n                                    <a href=\"\/en\/registration\/\">Receive a free ticket<\/a>\r\n                                <\/div><\/div><\/div><div id=\"conf_stone-2026-pzk\" class=\"conference_cap__conf-slug\"><div class=\"conference_cap__conf-slug-header\">\r\n                                <img decoding=\"async\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/stone-2026-pzk\/conf_img_en.jpg\" alt=\"Challenges and Future of the Stone Industry - TECHNOLOGIES, DIRECTIONS OF DEVELOPMENT\" class=\"conference_cap__conf-slug-image\">\r\n                                <div class=\"conference_cap__after-header-html\"><\/div>\r\n                                    <div class=\"conference_cap__conf-organizer-wrapper old\">\r\n                                        <h2 class=\"conference_cap__conf-organizer-title\">Conference Organizer<\/h2>\r\n                                        <div class=\"conference_cap__conf-organizer-logo\">\r\n                                            <img decoding=\"async\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/stone-2026-pzk\/organizer\/conf_organizer.webp\" alt=\"Polish Stonework Association\" class=\"conference_cap__conf-org-logo\">\r\n                                            <span class=\"conference_cap__conf-organizer-logo-title\">Polish Stonework Association<\/span>\r\n                                        <\/div>\r\n                                    <\/div>\r\n                                <div class=\"conference_cap__after-patrons-html\"><\/div>\r\n                                <h2 class=\"conference_cap__conf-slug-location\">Hall D <br> Conference room 1<\/h2>\r\n                                <div class=\"conference_cap__after-location-html\"><\/div>\r\n                                <h2 class=\"conference_cap__conf-slug-title\">Challenges and Future of the Stone Industry - TECHNOLOGIES, DIRECTIONS OF DEVELOPMENT<\/h2>\r\n                                <div class=\"conference_cap__after-title-html\"><\/div><p><span style=\"font-size: large\"><strong>We invite you to a conference devoted to the future of the stone industry <\/strong>\u2014 an event that combines law, technology and practice. This is a unique opportunity to learn about upcoming changes, discover modern solutions used in construction, funeral and monument renovation stonework, and prepare your company for the challenges of a dynamically changing market.<\/span><\/p><p><br><\/p>\r\n                                <div class=\"conference_cap__conf-button\">\r\n                                    <a href=\"\/en\/registration\/\">Receive a free ticket<\/a>\r\n                                <\/div><\/div><div class=\"conference_cap__conf-slug-navigation-days\"><button id=\"tab_stone-2026-pzk_day-1\" class=\"conference_cap__conf-slug-navigation-day\">18\/02\/2026<\/button><\/div><div class=\"conference_cap__conf-slug-contents\">\r\n                                        <div id=\"content_stone-2026-pzk_day-1\" class=\"conference_cap__conf-slug-content\">\r\n                                            <div class=\"conference_cap__before-day-html\"><\/div>\r\n                                                <div class=\"conference_cap__lecture-container\"><div id=\"stone-2026-pzk_day-1_pre-1\" class=\"conference_cap__lecture-box\">\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\">11:15-11:20<\/h4><h5 class=\"conference_cap__lecture-name\">Dariusz Dr\u0105g, Development Director, Ptak Warsaw Expo<\/h5><h4 class=\"conference_cap__lecture-title\">Opening of the conference<\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><div id=\"stone-2026-pzk_day-1_pre-2\" class=\"conference_cap__lecture-box\">\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\">11:20-11:40<\/h4><h5 class=\"conference_cap__lecture-name\">Anita Pabich-Antosik, \u0141ukasiewicz Research Network \u2013 Warsaw Institute of Technology<\/h5><h4 class=\"conference_cap__lecture-title\">Trust the Science: How Does Natural Stone Research Support the Construction Industry and Architects?<\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><div id=\"stone-2026-pzk_day-1_pre-3\" class=\"conference_cap__lecture-box\">\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\">11:40-12:00<\/h4><h5 class=\"conference_cap__lecture-name\">Dr. Aleksander Byrdy, Eng., Cracow University of Technology<\/h5><h4 class=\"conference_cap__lecture-title\">Causes of damage to ventilated facades with sandstone cladding<\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><div id=\"stone-2026-pzk_day-1_pre-4\" class=\"conference_cap__lecture-box\">\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\">12:00-12:20<\/h4><h5 class=\"conference_cap__lecture-name\">Jacek Soboszek, OPTOLITH<\/h5><h4 class=\"conference_cap__lecture-title\">Selection of modern construction chemicals for the installation of horizontal stone cladding<\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><div id=\"stone-2026-pzk_day-1_pre-5\" class=\"conference_cap__lecture-box\">\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\">12:20-12:40<\/h4><h5 class=\"conference_cap__lecture-name\">Dr. Andrzej Kazberuk, Faculty of Conservation and Restoration of Works of Art in Warsaw, Department of Conservation and Restoration of Sculpture and Architectural Elements<\/h5><h4 class=\"conference_cap__lecture-title\">About the conservation and idea of \u200b\u200bthe stone frieze from the St. Lawrence Collegiate Church in Zhovkva, Ukraine<\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><div id=\"stone-2026-pzk_day-1_pre-6\" class=\"conference_cap__lecture-box\">\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\">12:40-13:00<\/h4><h5 class=\"conference_cap__lecture-name\">Dariusz Chrzanowski, ABAKOR D. Chrzanowski<\/h5><h4 class=\"conference_cap__lecture-title\">Tombstones, Columbariums and Urns: New Directions for Development<\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><div id=\"stone-2026-pzk_day-1_pre-7\" class=\"conference_cap__lecture-box\">\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\">13:00-13:20<\/h4><h5 class=\"conference_cap__lecture-name\">Arkadiusz Majcher, TESM sp. z o.o. sp.k.<\/h5><h4 class=\"conference_cap__lecture-title\">From aggregate to stonemasonry on the example of gneiss from Doboszowice<\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><div id=\"stone-2026-pzk_day-1_pre-8\" class=\"conference_cap__lecture-box\">\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\">13:20 -13:40<\/h4><h5 class=\"conference_cap__lecture-name\">Pawe\u0142 Chrzanowski, Dalmierze.pl \u2013 Leica<\/h5><h4 class=\"conference_cap__lecture-title\">Modern measurement technologies in stonemasonry<\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><div id=\"stone-2026-pzk_day-1_pre-9\" class=\"conference_cap__lecture-box\">\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\">13:40-14:00<\/h4><h5 class=\"conference_cap__lecture-name\">Micha\u0142 Firlej, Polish Stonemasonry Association<\/h5><h4 class=\"conference_cap__lecture-title\">New rules for introducing stone construction products<\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><\/div>\r\n                                            <div class=\"conference_cap__after-day-html\"><\/div><\/div><\/div><div class=\"conference_cap__after-all-html\"><\/div><\/div><div id=\"conf_stone-2026-abra\" class=\"conference_cap__conf-slug\"><div class=\"conference_cap__conf-slug-header\">\r\n                                <img decoding=\"async\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/stone-2026-abra\/conf_img_en.webp\" alt=\"17th edition of the \u2018Sandblasting Master\u2019 competition\" class=\"conference_cap__conf-slug-image\">\r\n                                <div class=\"conference_cap__after-header-html\"><\/div>\r\n                                    <div class=\"conference_cap__conf-organizer-wrapper old\">\r\n                                        <h2 class=\"conference_cap__conf-organizer-title\">Conference Organizer<\/h2>\r\n                                        <div class=\"conference_cap__conf-organizer-logo\">\r\n                                            <img decoding=\"async\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/stone-2026-abra\/organizer\/conf_organizer.webp\" alt=\"ABRA\" class=\"conference_cap__conf-org-logo\">\r\n                                            <span class=\"conference_cap__conf-organizer-logo-title\">ABRA<\/span>\r\n                                        <\/div>\r\n                                    <\/div>\r\n                                <div class=\"conference_cap__after-patrons-html\"><\/div>\r\n                                <h2 class=\"conference_cap__conf-slug-location\">Hall D <br> stand D4.62<\/h2>\r\n                                <div class=\"conference_cap__after-location-html\"><\/div>\r\n                                <h2 class=\"conference_cap__conf-slug-title\">17th edition of the \u2018Sandblasting Master\u2019 competition<\/h2>\r\n                                <div class=\"conference_cap__after-title-html\"><\/div><p style=\"text-align: left\"><strong>Become the Sandblasting Master 2026!\u00a0<\/strong><\/p><p style=\"text-align: left\"><br><\/p><p style=\"text-align: left\">Join the competition organized by <strong>ABRA <\/strong>and <strong>Ptak Warsaw Expo<\/strong> during <strong>Stone Poland Trade<\/strong> <strong>Fair.<\/strong><\/p><p style=\"text-align: left\"><strong>ABRA from Opole<\/strong>, a pioneer and market leader in stone processing machinery, is pleased to invite professionals to take part in<strong> the 17th edition of the \u201cSandblasting Master\u201d competition<\/strong>. For over 16 years, this prestigious event has accompanied the most important industry trade fairs in Poland, promoting precision, technological expertise, and the highest workmanship standards.<\/p><p style=\"text-align: left\">As a family-owned company with over 30 years of experience, ABRA has been delivering innovative solutions to the stone industry. We were the first to introduce dust-free sandblasting machines to the market, and today thousands of our machines operate in workshops and production plants worldwide. The competition is a unique opportunity to test your skills and explore the latest technologies developed in close cooperation with our users.<\/p><p style=\"text-align: left\"><strong>What is the challenge?<\/strong><\/p><p style=\"text-align: left\">Participants are tasked with sandblasting an identical pattern into a stone slab while maintaining the same technical parameters. To ensure maximum safety and top-quality results, the competition is conducted using:\u00a0<\/p><ul><li style=\"text-align: left\">Sandmaster dust-free sandblasting machine,\u00a0<\/li><li style=\"text-align: left\">a specialized sandblasting arm, which reduces operator fatigue, stabilizes movement, and ensures perfectly even lettering without the risk of damaging the stencil film.\u00a0<\/li><\/ul><p><strong><\/strong><\/p><p style=\"text-align: left\"><strong><strong>Where and when?<\/strong><\/strong><\/p><p><\/p><p style=\"text-align: left\">The competition will take place <strong>during Stone Poland Trade Fair at Ptak Warsaw Expo<\/strong> (Nadarzyn near Warsaw):\u00a0<\/p><ul><li style=\"text-align: left\">Competition dates: February 17\u201318, 2026\u00a0<\/li><li style=\"text-align: left\">Registration: Hall D, ABRA booth No. D4.62<\/li><\/ul><p><strong><\/strong><\/p><p style=\"text-align: left\"><strong><strong>Valuable prizes await!<\/strong><\/strong><\/p><p><\/p><p style=\"text-align: left\">Compete for the podium and win prizes with a total value of several thousand euros:\u00a0<\/p><ul><li style=\"text-align: left\">1st Place: Sandmaster Compact dust-free sandblaster (value: PLN 14,500) \u2013 a mobile bestseller in ABRA\u2019s portfolio\u00a0<\/li><li style=\"text-align: left\">2nd Place: 3 rolls of Hard-series sandblasting film (value approx. PLN 1,000)\u00a0<\/li><li style=\"text-align: left\">3rd Place: 2 rolls of sandblasting film (value approx. PLN 600)\u00a0\u00a0<\/li><\/ul><p><strong><\/strong><\/p><p style=\"text-align: left\"><strong><strong>Grand Final<\/strong><\/strong><\/p><p><\/p><p style=\"text-align: left\"><strong>The announcement of results and the official award ceremony will take place on Wednesday, February 18, 2026 at 4:00 PM at the Trade Fair Studio of Ptak Warsaw Expo.<\/strong><\/p><p style=\"text-align: left\"><strong>How to participate?<\/strong><\/p><p style=\"text-align: left\">Simply visit the ABRA booth on the first or second day of the fair, complete the registration form, and demonstrate your experience in sandblasting stone memorial plaques.\u00a0<\/p><p style=\"text-align: left\">Take on the challenge and join the elite of industry professionals!\u00a0<\/p><p style=\"text-align: left\"><strong>See you at booth D4.62!<\/strong><\/p>\r\n                                <div class=\"conference_cap__conf-button\">\r\n                                    <a href=\"\/en\/registration\/\">Receive a free ticket<\/a>\r\n                                <\/div><\/div><div class=\"conference_cap__conf-slug-contents\">\r\n                                        <div id=\"content_stone-2026-abra_day-1\" class=\"conference_cap__conf-slug-content\">\r\n                                            <div class=\"conference_cap__before-day-html\"><\/div>\r\n                                                <div class=\"conference_cap__lecture-container\"><div id=\"stone-2026-abra_day-1_pre-1\" class=\"conference_cap__lecture-box\">\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\"><\/h4><h4 class=\"conference_cap__lecture-title\"><\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><\/div>\r\n                                            <div class=\"conference_cap__after-day-html\"><\/div><\/div>\r\n                                        <div id=\"content_stone-2026-abra_day-2\" class=\"conference_cap__conf-slug-content\">\r\n                                            <div class=\"conference_cap__before-day-html\"><\/div>\r\n                                                <div class=\"conference_cap__lecture-container\"><div id=\"stone-2026-abra_day-2_pre-1\" class=\"conference_cap__lecture-box\">\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\"><\/h4><h4 class=\"conference_cap__lecture-title\"><\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><\/div>\r\n                                            <div class=\"conference_cap__after-day-html\"><\/div><\/div>\r\n                                        <div id=\"content_stone-2026-abra_day-3\" class=\"conference_cap__conf-slug-content\">\r\n                                            <div class=\"conference_cap__before-day-html\"><\/div>\r\n                                                <div class=\"conference_cap__lecture-container\"><div id=\"stone-2026-abra_day-3_pre-1\" class=\"conference_cap__lecture-box\">\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\"><\/h4><h4 class=\"conference_cap__lecture-title\"><\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><\/div>\r\n                                            <div class=\"conference_cap__after-day-html\"><\/div><\/div><\/div><div class=\"conference_cap__after-all-html\"><\/div><\/div><div id=\"conf_concrete-2026-pcbc\" class=\"conference_cap__conf-slug\"><div class=\"conference_cap__conf-slug-header\">\r\n                                <img decoding=\"async\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/concrete-2026-pcbc\/conf_img_en.webp\" alt=\"The concrete industry under scrutiny \u2013 new responsibilities, risks and opportunities\" class=\"conference_cap__conf-slug-image\">\r\n                                <div class=\"conference_cap__after-header-html\"><\/div>\r\n                                    <div class=\"conference_cap__conf-organizer-wrapper old\">\r\n                                        <h2 class=\"conference_cap__conf-organizer-title\">Conference Organizer<\/h2>\r\n                                        <div class=\"conference_cap__conf-organizer-logo\">\r\n                                            <img decoding=\"async\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/concrete-2026-pcbc\/organizer\/conf_organizer.webp\" alt=\"Polish Centre for Testing and Certification S.A.\" class=\"conference_cap__conf-org-logo\">\r\n                                            <span class=\"conference_cap__conf-organizer-logo-title\">Polish Centre for Testing and Certification S.A.<\/span>\r\n                                        <\/div>\r\n                                    <\/div>\r\n                                <div class=\"conference_cap__after-patrons-html\"><\/div>\r\n                                <h2 class=\"conference_cap__conf-slug-location\">Conference room no. 1 <br> HALL C<\/h2>\r\n                                <div class=\"conference_cap__after-location-html\"><\/div>\r\n                                <h2 class=\"conference_cap__conf-slug-title\">The concrete industry under scrutiny \u2013 new responsibilities, risks and opportunities<\/h2>\r\n                                <div class=\"conference_cap__after-title-html\"><\/div>\r\n                                <div class=\"conference_cap__conf-button\">\r\n                                    <a href=\"\/en\/registration\/\">Receive a free ticket<\/a>\r\n                                <\/div><\/div><div class=\"conference_cap__conf-slug-navigation-days\"><button id=\"tab_concrete-2026-pcbc_day-1\" class=\"conference_cap__conf-slug-navigation-day\">17\/02\/2026<\/button><\/div><div class=\"conference_cap__conf-slug-contents\">\r\n                                        <div id=\"content_concrete-2026-pcbc_day-1\" class=\"conference_cap__conf-slug-content\">\r\n                                            <div class=\"conference_cap__before-day-html\"><\/div>\r\n                                                <div class=\"conference_cap__lecture-container\"><div id=\"concrete-2026-pcbc_day-1_pre-1\" class=\"conference_cap__lecture-box\"><div class=\"conference_cap__lecture-speaker\"><div class=\"conference_cap__lecture-speaker-img\"><div class=\"pwe-box-speakers-img\"><img decoding=\"async\" class=\"pwe-box-speaker\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/concrete-2026-pcbc\/Karolina%20OTTA.webp?v=1768571064540\" alt=\"speaker portrait\"\r\n                    style=\"position:relative; z-index:1; top:unset; left:unset; max-width: 80%;;\" \/><\/div><\/div><button class=\"conference_cap__lecture-speaker-btn\" data-lecture-id=\"concrete-2026-pcbc_day-1_pre-1\">BIO<\/button><\/div>\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\">12.00 -12.30<\/h4><h5 class=\"conference_cap__lecture-name\">Karolina Otta-Ptach, Polish Centre for Testing and Certification Ltd.<\/h5><h4 class=\"conference_cap__lecture-title\">CPR2 \u2013 Revolution?<\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><div id=\"concrete-2026-pcbc_day-1_pre-2\" class=\"conference_cap__lecture-box\"><div class=\"conference_cap__lecture-speaker\"><div class=\"conference_cap__lecture-speaker-img\"><div class=\"pwe-box-speakers-img\"><img decoding=\"async\" class=\"pwe-box-speaker\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/concrete-2026-pcbc\/Artur%20Golda.webp?v=1768570993069\" alt=\"speaker portrait\"\r\n                    style=\"position:relative; z-index:1; top:-20px; left:10px; max-width: 50%;margin-top: 20px;\" \/><img decoding=\"async\" class=\"pwe-box-speaker\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/concrete-2026-pcbc\/Maciej%20Gruszczy\u0144ski.webp?v=1768571137550\" alt=\"speaker portrait\"\r\n                    style=\"position:relative; z-index:2; top:0; left:-10px; max-width: 50%;;\" \/><\/div><\/div><button class=\"conference_cap__lecture-speaker-btn\" data-lecture-id=\"concrete-2026-pcbc_day-1_pre-2\">BIO<\/button><\/div>\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\">12.30 - 13.30 <\/h4><h5 class=\"conference_cap__lecture-name\">Dr in\u017c. Artur Golda, Heidelberg Materials Poland<br>Maciej Gruszczy\u0144ski, PhD, Eng. Association of Ready-Mixed Concrete Producers in Poland<\/h5><h4 class=\"conference_cap__lecture-title\">Changes in the standardisation of PN-EN 206<\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><div id=\"concrete-2026-pcbc_day-1_pre-3\" class=\"conference_cap__lecture-box\"><div class=\"conference_cap__lecture-speaker\"><div class=\"conference_cap__lecture-speaker-img\"><div class=\"pwe-box-speakers-img\"><img decoding=\"async\" class=\"pwe-box-speaker\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/concrete-2026-pcbc\/Rafa\u0142%20\u015awita\u0142a.webp?v=1768571715616\" alt=\"speaker portrait\"\r\n                    style=\"position:relative; z-index:1; top:unset; left:unset; max-width: 80%;;\" \/><\/div><\/div><button class=\"conference_cap__lecture-speaker-btn\" data-lecture-id=\"concrete-2026-pcbc_day-1_pre-3\">BIO<\/button><\/div>\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\">13.30 \u2013 14.30<\/h4><h5 class=\"conference_cap__lecture-name\">Rafa\u0142 \u015awita\u0142a, technical and commercial advisor at Hufgard Poland<\/h5><h4 class=\"conference_cap__lecture-title\">The use of polymer-cement mortars in infrastructure and industry<\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><\/div>\r\n                                            <div class=\"conference_cap__after-day-html\"><\/div><\/div><\/div><div class=\"conference_cap__after-all-html\"><\/div><\/div><div id=\"conf_stone-2026-pzp\" class=\"conference_cap__conf-slug\"><div class=\"conference_cap__conf-slug-header\">\r\n                                <img decoding=\"async\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/stone-2026-pzp\/conf_img_en.webp\" alt=\"SHOWS AND WORKSHOPS ZONE\" class=\"conference_cap__conf-slug-image\">\r\n                                <div class=\"conference_cap__after-header-html\"><\/div>\r\n            <style>\r\n                #conf_stone-2026-pzp .pwe-slides {\r\n                    visibility: hidden;\r\n                    opacity: 0;\r\n                    height: 0;\r\n                    width: 0;\r\n                    transition: .3s ease;\r\n                }\r\n                #conf_stone-2026-pzp .slick-slide {\r\n                    height: auto;\r\n                }\r\n                #conf_stone-2026-pzp .pwe-arrow {\r\n                    display: block;\r\n                    position: absolute;\r\n                    top: 50%;\r\n                    transform: translate(0, -50%);\r\n                    font-size: 60px;\r\n                    font-weight: 700;\r\n                    z-index: 1;\r\n                    cursor: pointer;\r\n                }\r\n                #conf_stone-2026-pzp .pwe-arrow-prev {\r\n                    left: 14px;\r\n                }\r\n                #conf_stone-2026-pzp .pwe-arrow-next {\r\n                    right: 14px;\r\n                }\r\n                #conf_stone-2026-pzp .slick-dots {\r\n                    position: relative;\r\n                    width: 100%;\r\n                    max-width: 90px;\r\n                    overflow: hidden;\r\n                    white-space: nowrap;\r\n                    padding: 0 !important;\r\n                    list-style: none;\r\n                    margin: auto !important;\r\n                }\r\n                #conf_stone-2026-pzp .slick-dots li {\r\n                    width: 16px;\r\n                    height: 16px;\r\n                    margin: 0 7px;\r\n                    background-color: #bbb;\r\n                    border: none;\r\n                    border-radius: 50%;\r\n                }\r\n                #conf_stone-2026-pzp .slick-dots li button {\r\n                    opacity: 0;\r\n                }\r\n                #conf_stone-2026-pzp .slick-dots li.slick-active {\r\n                    transform-origin: center;\r\n                    background: #424242;\r\n                }\r\n            <\/style>\r\n            <script>\r\n                jQuery(function ($) {\r\n                    const pweElement = $(\"#conf_stone-2026-pzp\");\r\n                    const slickSlider = $(\"#conf_stone-2026-pzp .pwe-slides\");\r\n                    const sliderArrows = $(\"#conf_stone-2026-pzp .pwe-arrow\");\r\n                    const totalSlides = slickSlider.children().length;\r\n\r\n                    const sliderDotsDisplay = \"true\";\r\n                    const sliderArrowsDisplay = \"\";\r\n                    const slidesToShowSetting = 7;\r\n\r\n                    \/\/ Function to initialize Slick Slider\r\n                    function initializeSlick(arrowsEnabled = false, dotsEnabled = false) {\r\n                        const currentSlidesToShow = getInitialSlidesToShow();\r\n\r\n                        \/\/ Destroy Slick if already initialized\r\n                        if (slickSlider.hasClass(\"slick-initialized\")) {\r\n                            slickSlider.slick(\"unslick\");\r\n                        }\r\n\r\n                        \/\/ Initialize Slick Slider\r\n                        slickSlider.slick({\r\n                            infinite: true,\r\n                            slidesToShow: currentSlidesToShow,\r\n                            slidesToScroll: 1,\r\n                            arrows: arrowsEnabled,\r\n                            nextArrow: $(\"#conf_stone-2026-pzp .pwe-arrow-next\"),\r\n                            prevArrow: $(\"#conf_stone-2026-pzp .pwe-arrow-prev\"),\r\n                            autoplay: true,\r\n                            autoplaySpeed: 5000,\r\n                            speed: 600,\r\n                            dots: dotsEnabled,\r\n                            cssEase: \"linear\",\r\n                            \r\n                            swipeToSlide: true,\r\n                            \r\n                            \r\n                        });\r\n\r\n                        \/\/ Hide arrows if arrows are disabled\r\n                        if (!arrowsEnabled) {\r\n                            sliderArrows.hide();\r\n                        } else {\r\n                            sliderArrows.show();\r\n                        }\r\n\r\n                        monitorRoleAttributes();\r\n                    }\r\n\r\n                    \/\/ Function to monitor role=\"tabpanel\" and remove it if it\"s added\r\n                    function monitorRoleAttributes() {\r\n                        \/\/ Create a MutationObserver to watch for changes in the DOM\r\n                        const observer = new MutationObserver(function(mutationsList) {\r\n                            for (const mutation of mutationsList) {\r\n                                if (mutation.type === \"attributes\" && mutation.attributeName === \"role\") {\r\n                                    const target = mutation.target;\r\n                                    if (target.getAttribute(\"role\") === \"tabpanel\") {\r\n                                        target.removeAttribute(\"role\"); \/\/ Remove role=\"tabpanel\"\r\n                                    }\r\n                                }\r\n                            }\r\n                        });\r\n\r\n                        \/\/ Target all img elements inside .two-cols-logotypes\r\n                        const targetNodes = document.querySelectorAll(\".two-cols-logotypes img\");\r\n\r\n                        \/\/ Observe changes in these elements\r\n                        targetNodes.forEach(node => {\r\n                            observer.observe(node, {\r\n                                attributes: true \/\/ Watch for attribute changes\r\n                            });\r\n                        });\r\n                    }\r\n\r\n                    \/\/ Settings for slidesToShow based on breakpoints\r\n                    function getInitialSlidesToShow() {\r\n                        const elementWidth = pweElement.width();\r\n                        \r\n                return  elementWidth < 400 ? 2 :\r\n                        elementWidth < 600 ? 3 :\r\n                        elementWidth < 1100 ? 5 :\r\n                        slidesToShowSetting;\r\n                \r\n                    }\r\n\r\n                    \/\/ Check if arrows and dots should be enabled\r\n                    function updateSlickSettings() {\r\n                        const currentSlidesToShow = getInitialSlidesToShow();\r\n                        let dotsEnabled = totalSlides > currentSlidesToShow && sliderDotsDisplay === \"true\";\r\n                        let arrowsEnabled = totalSlides > currentSlidesToShow && sliderArrowsDisplay === \"true\";\r\n\r\n                        initializeSlick(arrowsEnabled, dotsEnabled);\r\n\r\n                        if (dotsEnabled) {\r\n                            slickSlider.on(\"afterChange\", function (event, slick, currentSlide) {\r\n                                const $slickDots = $(event.target).find(\".slick-dots\");\r\n                                const dotWidth = 30;\r\n\r\n                                \/\/ Calculate the offset based on the currentSlide index\r\n                                const scrollPosition = (currentSlide - 1) * dotWidth;\r\n\r\n                                \/\/ Set scrollLeft directly on the .slick-dots container\r\n                                $slickDots.animate({ scrollLeft: scrollPosition }, 300);\r\n                            });\r\n                        }\r\n                    }\r\n\r\n                    \/\/ Initialize slider on document ready\r\n                    updateSlickSettings();\r\n\r\n                    \/\/ Reinitialize slider on window resize and element resize\r\n                    const resizeObserver = new ResizeObserver(() => {\r\n                        updateSlickSettings();\r\n                    });\r\n\r\n                    resizeObserver.observe(pweElement[0]);\r\n\r\n                    slickSlider.css({\r\n                        \"visibility\": \"visible\",\r\n                        \"opacity\": \"1\",\r\n                        \"height\": \"auto\",\r\n                        \"width\": \"auto\"\r\n                    });\r\n\r\n                });\r\n            <\/script>\r\n                                        <h2 class=\"conference_cap__conf-logotypes-title\">ORGANISERS OF SHOWS AND WORKSHOPS<\/h2>\r\n                                        <div class=\"conference_patroni_logos pwe-slides\"><div class=\"conference_cap__patrons-container-logo\"><img decoding=\"async\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/stone-2026-pzp\/patrons\/logo%20pzp%20(1).webp\" data-no-lazy=\"1\" alt=\"Patron Logo\" class=\"conference_patroni_logo\"><\/div><div class=\"conference_cap__patrons-container-logo\"><img decoding=\"async\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/stone-2026-pzp\/patrons\/Wim-plate-1-1%20(1).webp\" data-no-lazy=\"1\" alt=\"Patron Logo\" class=\"conference_patroni_logo\"><\/div><div class=\"conference_cap__patrons-container-logo\"><img decoding=\"async\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/stone-2026-pzp\/patrons\/WIM%20(3).webp\" data-no-lazy=\"1\" alt=\"Patron Logo\" class=\"conference_patroni_logo\"><\/div><\/div>\r\n                                <div class=\"conference_cap__after-patrons-html\"><\/div>\r\n                                <h2 class=\"conference_cap__conf-slug-location\">Hall D <br> stand 2.54<\/h2>\r\n                                <div class=\"conference_cap__after-location-html\"><\/div>\r\n                                <h2 class=\"conference_cap__conf-slug-title\">SHOWS AND WORKSHOPS ZONE<\/h2>\r\n                                <div class=\"conference_cap__after-title-html\"><\/div><p>We invite you to the Stonemasonry Zone, dedicated to stonemasons, contractors, architects, and interior designers.<\/p><p>This is a place where theory meets practice \u2013 participants can gain real-world experience working with natural stone, sintered quartz, and modern installation systems used in bathroom and premium interior finishing.<\/p><p><br><\/p><p>On-site, you will learn about solutions supporting precise stone installation and safe finishing \u2013 including system modules and products for installation\/gluing\/sealing, as well as opportunities for training and industry-specific workshops.<\/p><p>\u2022 WIM PLATTE SYSTEM \u2013 modular washbasins with a factory-defined slope and integrated linear or point drain, coated with two-component waterproofing (100% waterproof) and ready for tile finishing.\u00a0<\/p><p>\u2022 Selected products for stonemasonry for gluing, sealing, grouting, and assembly work, including:WIM STRONG, WIM EPOXYD HQ, WIM STRONG TURBO, WIM CLAMPS, WIM R2, WIM MATT SILICONE, WIM CEMENT FLOOR, WIM FLEX WHITE, WIM OFF-WHITE SILICONE, WIMOLASTIC, WIM FLEXBAND.<\/p><p>\u2022 Information about our industry support: training, courses, and expertise.<\/p><p><br><\/p><p>Don't miss this opportunity!<\/p><p>Come, learn, and test modern solutions in practice!<\/p>\r\n                                <div class=\"conference_cap__conf-button\">\r\n                                    <a href=\"\/en\/registration\/\">Receive a free ticket<\/a>\r\n                                <\/div><\/div><div class=\"conference_cap__conf-slug-contents\">\r\n                                        <div id=\"content_stone-2026-pzp_day-1\" class=\"conference_cap__conf-slug-content\">\r\n                                            <div class=\"conference_cap__before-day-html\"><\/div>\r\n                                                <div class=\"conference_cap__lecture-container\"><div id=\"stone-2026-pzp_day-1_pre-1\" class=\"conference_cap__lecture-box\">\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\"><\/h4><h4 class=\"conference_cap__lecture-title\"><\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><\/div>\r\n                                            <div class=\"conference_cap__after-day-html\"><\/div><\/div>\r\n                                        <div id=\"content_stone-2026-pzp_day-2\" class=\"conference_cap__conf-slug-content\">\r\n                                            <div class=\"conference_cap__before-day-html\"><\/div>\r\n                                                <div class=\"conference_cap__lecture-container\"><div id=\"stone-2026-pzp_day-2_pre-1\" class=\"conference_cap__lecture-box\">\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\"><\/h4><h4 class=\"conference_cap__lecture-title\"><\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><\/div>\r\n                                            <div class=\"conference_cap__after-day-html\"><\/div><\/div>\r\n                                        <div id=\"content_stone-2026-pzp_day-3\" class=\"conference_cap__conf-slug-content\">\r\n                                            <div class=\"conference_cap__before-day-html\"><\/div>\r\n                                                <div class=\"conference_cap__lecture-container\"><div id=\"stone-2026-pzp_day-3_pre-1\" class=\"conference_cap__lecture-box\">\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\"><\/h4><h4 class=\"conference_cap__lecture-title\"><\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><\/div>\r\n                                            <div class=\"conference_cap__after-day-html\"><\/div><\/div><\/div><div class=\"conference_cap__after-all-html\"><div data-html-inject-id=\"konferencja-galeria\"><\/div><\/div><\/div><\/div><\/div>[\/vc_column][\/vc_row][vc_section overlay_alpha=&#8221;50&#8243; uncode_shortcode_id=&#8221;195037&#8243; el_id=&#8221;panel-trendow&#8221; el_class=&#8221;konferencja&#8221;][vc_row][vc_column width=&#8221;1\/1&#8243;]<div class=\"pwelement pwelement_96219\">\r\n            <style>\r\n                .pwelement_96219 .pwe-header-conference {\r\n                    position: relative;\r\n                    display: flex;\r\n                    flex-direction: column;\r\n                    justify-content: center;\r\n                    align-items: center;\r\n                    background-position: center;\r\n                    min-height: 150px;\r\n                }\r\n                .pwelement_96219 .pwe-header-conference:before {\r\n                    content: \"\";\r\n                    position: absolute;\r\n                    top: 0;\r\n                    left: 0;\r\n                    right: 0;\r\n                    bottom: 0;\r\n                    background-color: black;\r\n                    opacity: 0.8;\r\n                    z-index: 0;\r\n                }\r\n                .pwelement_96219 .pwe-header-conference-wrapper {\r\n                    \r\n                }\r\n                .pwelement_96219 .pwe-header-conference-content {\r\n                    position: relative;\r\n                    display: flex;\r\n                    flex-direction: column; \r\n                    justify-content: center;\r\n                    align-items: center;\r\n                    padding: 18px;\r\n                    z-index: 1;\r\n                }\r\n                .pwelement_96219 .pwe-header-conference-content h4 {\r\n                        text-align: center;\r\n                        text-transform: uppercase;\r\n                        margin: 0;\r\n                        color: white;\r\n                        text-shadow: 2px 2px black !important;;\r\n                }\r\n                .pwelement_96219 .pwe-header-conference-title {\r\n                    font-size: 24px;\r\n                }\r\n                .pwelement_96219 .pwe-header-conference-description {\r\n                    padding-top: 8px;\r\n                }\r\n                @media (max-width:640px) {\r\n                    .pwelement_96219 .pwe-header-conference-title {\r\n                        font-size: 20px;\r\n                    }\r\n                    .pwelement_96219 .pwe-header-conference-description {\r\n                        font-size: 16px;\r\n                    }\r\n                }\r\n            <\/style>\r\n            \r\n            <div id=\"PWEHeaderConference-49263\" class=\"pwe-header-conference\" style=\"background-image: url(\/wp-content\/plugins\/pwe-media\/media\/conference-background.webp)\">\r\n                <div class=\"pwe-header-conference-wrapper\">\r\n                    <div class=\"pwe-header-conference-content\">\r\n                        <h4 class=\"pwe-header-conference-title\">Trends panel and presentations of exhibitors<\/h4>\r\n                        \r\n                    <\/div>\r\n                <\/div>\r\n            <\/div><\/div><div class=\"pwelement pwelement_33354\">\r\n            <style>\r\n                #PWETrendsPanel .pwe-trends-panel-contact-block p,\r\n                #PWETrendsPanel .pwe-trends-panel-link {\r\n                    margin: 0;\r\n                }\r\n                #PWETrendsPanel .pwe-trends-panel-link a {\r\n                    color: #424242 !important;\r\n                    transition: .3s ease\r\n                }\r\n                #PWETrendsPanel .pwe-trends-panel-link a:hover {\r\n                    color: #dccdb0 !important;\r\n                }\r\n            <\/style>\r\n            \r\n            <div id=\"PWETrendsPanel\" class=\"pwe-trends-panel\">\r\n                <div class=\"pwe-trends-panel-wrapper\"><h4>Trends and presentation panel:<\/strong><\/h4>\r\n<p>A promotional initiative during which each of our exhibitors can give a lecture at the price of the purchased stand. The topic of the presentation is free, but we recommend that it be consistent with the theme of the fair and refer to industry news, which will always encourage a wider group of visitors to get to know your company! All information about your lectures will be made available on our website.<\/p>\r\n<br>\r\n<div class=\"pwe-trends-panel-contact-block\">\r\n    <p><strong>How to register:<\/strong><\/p>\r\n    <p>Contact the person responsible for the project by e-mail:<\/p>\r\n    <p class=\"pwe-trends-panel-link\"><strong><a href=\"mailto:wydarzenia@warsawexpo.eu\">wydarzenia@warsawexpo.eu<\/a><\/strong><\/p>\r\n    <p class=\"pwe-trends-panel-link\"><strong><a href=\"tel:+48 506 905 615\">+48 506 905 615<\/a><\/strong><\/p>\r\n<\/div>\r\n\r\n<p><strong>The order of applications is decisive!<\/strong><\/p>\r\n\r\n<p>Do you have an interesting idea to organize a promotional event during the fair? We are open to supporting the organization of interesting projects! We have professionally furnished conference rooms equipped with, among others, a stage, interpreter booths, VIP rooms and a fantastic sound system. At your disposal is a wide range of additional equipment, free outdoor parking, rooms for self-adaptation and technical support from the Ptak Warsaw Expo team.<\/p>\r\n\r\n<p>If you have any additional questions, please contact the marketing department:<\/p>\r\n<p class=\"pwe-trends-panel-link\"><strong><a href=\"mailto:konsultantmarketingowy@warsawexpo.eu\" style=\"display:flex; flex-wrap:wrap;\"><span style=\"display:block;\">konsultantmarketingowy<\/span><span style=\"display:block;\">@warsawexpo.eu<\/span><\/a><\/strong><\/p><\/div>\r\n            <\/div><\/div>[\/vc_column][\/vc_row][\/vc_section][vc_row][vc_column width=&#8221;1\/1&#8243;]<div class=\"pwelement pwelement_78994 pwe_logotypes\">\r\n            <style>\r\n            <\/style>\r\n            <style>\r\n                .pwelement_78994 .pwe-container-logotypes-gallery {\r\n                    z-index: 1;\r\n                }\r\n                .pwelement_78994.pwe_logotypes .pwe-logo-item-container {\r\n                    box-shadow: none;\r\n                    \r\n                    border-radius: 10px;\r\n                    overflow: hidden;\r\n                    padding: 5px;\r\n                    background-color: white !important;\r\n                }\r\n                .pwelement_78994 .pwe-header-logotypes .pwe-logo-item-container,\r\n                .pwelement_78994 .pwe-logo-item-container {\r\n                    margin: 5px;\r\n                }\r\n                .pwelement_78994 .pwe-logo-item {\r\n                    max-width: 140px;\r\n                    140px\r\n                    display: flex;\r\n                    flex-direction: column;\r\n                    justify-content: center;\r\n                    align-items: center;\r\n                    margin: 0 auto;\r\n                }\r\n                .pwelement_78994 .pwe-logo-item p {\r\n                    margin: 8px 0 0;\r\n                    font-size: 14px;\r\n                    font-weight: 500;\r\n                }\r\n                .pwelement_78994 .slick-slide .pwe-logo-item {\r\n                    max-width: 100%;\r\n                }\r\n                .pwelement_78994 .pwe-logo-item img {\r\n                    object-fit: contain;\r\n                    aspect-ratio: 3 \/ 2;\r\n                }\r\n                .pwelement_78994 .pwe-logotypes-title {\r\n                    display: flex;\r\n                    justify-content: left;\r\n                }\r\n                .pwe-logotypes-title h4 {\r\n                    margin: 0;\r\n                }\r\n                .row-parent:has(.pwelement_78994 .pwe-full-width)  {\r\n                    max-width: 100% !important;\r\n                }\r\n                .pwelement_78994 .pwe-white-logotypes img,\r\n                .pwelement_78994 .pwe-header .pwe-logotypes-gallery-wrapper img {\r\n                    filter: brightness(0) invert(1);\r\n                    transition: all .3s ease;\r\n                }\r\n                .pwelement_78994 .pwe-white-logotypes img:hover,\r\n                .pwelement_78994 .pwe-header .pwe-logotypes-gallery-wrapper img:hover {\r\n                    filter: none;\r\n                }\r\n                .pwelement_78994 .pwe-logo-original img {\r\n                    filter: none !important;\r\n                }\r\n                .pwelement_78994 .pwe-color-logotypes .pwe-logo-item img {\r\n                    filter: none !important;\r\n                }\r\n                .pwelement_78994 .pwe-header .pwe-logotypes-title {\r\n                    justify-content: center;\r\n                }\r\n\r\n                .pwelement_78994 .pwe-logo-item-container p {\r\n                    text-transform: uppercase;\r\n                    font-size: 12px;\r\n                    font-weight: 700;\r\n                    color: black;\r\n                    white-space: break-spaces;\r\n                    text-align: center;\r\n                    line-height: 1.1 !important;\r\n                    margin: 5px;\r\n                }\r\n            <\/style>\r\n                <div id=\"pweLogotypes-45973\" class=\"pwe-container-logotypes-gallery\">\r\n                    <div class=\"pwe-logotypes-title main-heading-text\">\r\n                        <h4 class=\"pwe-uppercase\"><span>patrons of the trade fair and conference<\/span><\/h4>\r\n                    <\/div>\r\n                    <div class=\"pwe-slides pwe-logotypes-gallery-wrapper\">\r\n                                        <div class=\"pwe-logo-item-container\" style=\"\">\r\n                                            <div class=\"pwe-logo-item \" style=\" \">\r\n                                                <img decoding=\"async\" id=\"budo-sfera-logo\" alt=\"Media Patronbudo-sfera-logo\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/warsawstone-com\/partners\/patron-medialny\/budo-sfera-logo.webp\"\/>\r\n                                                <p>media patron<\/p>\r\n                                            <\/div>\r\n                                        <\/div>\r\n                                        <div class=\"pwe-logo-item-container\" style=\"\">\r\n                                            <div class=\"pwe-logo-item \" style=\" \">\r\n                                                <img decoding=\"async\" id=\"budowlane-materialy-logo\" alt=\"Media Patronbudowlane-materialy-logo\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/warsawstone-com\/partners\/patron-medialny\/budowlane-materialy-logo.webp\"\/>\r\n                                                <p>media patron<\/p>\r\n                                            <\/div>\r\n                                        <\/div>\r\n                                        <div class=\"pwe-logo-item-container\" style=\"\">\r\n                                            <div class=\"pwe-logo-item \" style=\" \">\r\n                                                <img decoding=\"async\" id=\"budownictwo-logo\" alt=\"Media Patronbudownictwo-logo\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/warsawstone-com\/partners\/patron-medialny\/budownictwo-logo.webp\"\/>\r\n                                                <p>media patron<\/p>\r\n                                            <\/div>\r\n                                        <\/div>\r\n                                        <div class=\"pwe-logo-item-container\" style=\"\">\r\n                                            <div class=\"pwe-logo-item \" style=\" \">\r\n                                                <img decoding=\"async\" id=\"czas-na-wnetrze-logo\" alt=\"Media Patronczas-na-wnetrze-logo\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/warsawstone-com\/partners\/patron-medialny\/czas-na-wnetrze-logo.webp\"\/>\r\n                                                <p>media patron<\/p>\r\n                                            <\/div>\r\n                                        <\/div>\r\n                                        <div class=\"pwe-logo-item-container\" style=\"\">\r\n                                            <div class=\"pwe-logo-item \" style=\" \">\r\n                                                <img decoding=\"async\" id=\"ekspert-budowlany-logo\" alt=\"Media Patronekspert-budowlany-logo\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/warsawstone-com\/partners\/patron-medialny\/ekspert-budowlany-logo.webp\"\/>\r\n                                                <p>media patron<\/p>\r\n                                            <\/div>\r\n                                        <\/div>\r\n                                        <div class=\"pwe-logo-item-container\" style=\"\">\r\n                                            <div class=\"pwe-logo-item \" style=\" \">\r\n                                                <img decoding=\"async\" id=\"forum-firm-logo\" alt=\"Media Patronforum-firm-logo\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/warsawstone-com\/partners\/patron-medialny\/forum-firm-logo.webp\"\/>\r\n                                                <p>media patron<\/p>\r\n                                            <\/div>\r\n                                        <\/div>\r\n                                        <div class=\"pwe-logo-item-container\" style=\"\">\r\n                                            <div class=\"pwe-logo-item \" style=\" \">\r\n                                                <img decoding=\"async\" id=\"kurier_kamieniarski\" alt=\"Media Patronkurier_kamieniarski\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/warsawstone-com\/partners\/patron-medialny\/kurier_kamieniarski.webp\"\/>\r\n                                                <p>media patron<\/p>\r\n                                            <\/div>\r\n                                        <\/div>\r\n                                        <div class=\"pwe-logo-item-container\" style=\"\">\r\n                                            <div class=\"pwe-logo-item \" style=\" \">\r\n                                                <img decoding=\"async\" id=\"murator\" alt=\"Media Patronmurator\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/warsawstone-com\/partners\/patron-medialny\/murator.webp\"\/>\r\n                                                <p>media patron<\/p>\r\n                                            <\/div>\r\n                                        <\/div>\r\n                                        <div class=\"pwe-logo-item-container\" style=\"\">\r\n                                            <div class=\"pwe-logo-item \" style=\" \">\r\n                                                <img decoding=\"async\" id=\"muratorplus\" alt=\"Media Patronmuratorplus\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/warsawstone-com\/partners\/patron-medialny\/muratorplus.webp\"\/>\r\n                                                <p>media patron<\/p>\r\n                                            <\/div>\r\n                                        <\/div>\r\n                                        <div class=\"pwe-logo-item-container\" style=\"\">\r\n                                            <div class=\"pwe-logo-item \" style=\" \">\r\n                                                <img decoding=\"async\" id=\"narzedzia-polska-logo\" alt=\"Media Patronnarzedzia-polska-logo\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/warsawstone-com\/partners\/patron-medialny\/narzedzia-polska-logo.webp\"\/>\r\n                                                <p>media patron<\/p>\r\n                                            <\/div>\r\n                                        <\/div>\r\n                                        <div class=\"pwe-logo-item-container\" style=\"\">\r\n                                            <div class=\"pwe-logo-item \" style=\" \">\r\n                                                <img decoding=\"async\" id=\"nowy-kamieniarz-logo\" alt=\"Media Patronnowy-kamieniarz-logo\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/warsawstone-com\/partners\/patron-medialny\/nowy-kamieniarz-logo.webp\"\/>\r\n                                                <p>media patron<\/p>\r\n                                            <\/div>\r\n                                        <\/div>\r\n                                        <div class=\"pwe-logo-item-container\" style=\"\">\r\n                                            <div class=\"pwe-logo-item \" style=\" \">\r\n                                                <img decoding=\"async\" id=\"URZ\u0104DZAMY_PATRON_MEDIALNY\" alt=\"Media PatronURZ\u0104DZAMY_PATRON_MEDIALNY\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/warsawstone-com\/partners\/patron-medialny\/URZ\u0104DZAMY_PATRON_MEDIALNY.webp\"\/>\r\n                                                <p>media patron<\/p>\r\n                                            <\/div>\r\n                                        <\/div>\r\n                                        <div class=\"pwe-logo-item-container\" style=\"\">\r\n                                            <div class=\"pwe-logo-item \" style=\" \">\r\n                                                <img decoding=\"async\" id=\"ABOUT_DECOR_PATRON_MEDIALNY\" alt=\"Media PatronABOUT_DECOR_PATRON_MEDIALNY\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/warsawstone-com\/partners\/patron-medialny\/ABOUT_DECOR_PATRON_MEDIALNY.webp\"\/>\r\n                                                <p>media patron<\/p>\r\n                                            <\/div>\r\n                                        <\/div>\r\n                                        <div class=\"pwe-logo-item-container\" style=\"\">\r\n                                            <div class=\"pwe-logo-item \" style=\" \">\r\n                                                <img decoding=\"async\" id=\"ARCHITEKTURA_PATRON_MEDIALNY\" alt=\"Media PatronARCHITEKTURA_PATRON_MEDIALNY\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/warsawstone-com\/partners\/patron-medialny\/ARCHITEKTURA_PATRON_MEDIALNY.webp\"\/>\r\n                                                <p>media patron<\/p>\r\n                                            <\/div>\r\n                                        <\/div>\r\n                                        <div class=\"pwe-logo-item-container\" style=\"\">\r\n                                            <div class=\"pwe-logo-item \" style=\" \">\r\n                                                <img decoding=\"async\" id=\"architektura-info-2-logo\" alt=\"Media Patronarchitektura-info-2-logo\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/warsawstone-com\/partners\/patron-medialny\/architektura-info-2-logo.webp\"\/>\r\n                                                <p>media patron<\/p>\r\n                                            <\/div>\r\n                                        <\/div>\r\n                                        <div class=\"pwe-logo-item-container\" style=\"\">\r\n                                            <div class=\"pwe-logo-item \" style=\" \">\r\n                                                <img decoding=\"async\" id=\"architektura-info-logo\" alt=\"Media Patronarchitektura-info-logo\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/warsawstone-com\/partners\/patron-medialny\/architektura-info-logo.webp\"\/>\r\n                                                <p>media patron<\/p>\r\n                                            <\/div>\r\n                                        <\/div>\r\n                                        <div class=\"pwe-logo-item-container\" style=\"\">\r\n                                            <div class=\"pwe-logo-item \" style=\" \">\r\n                                                <img decoding=\"async\" id=\"image\" alt=\"Media Patronimage\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/warsawstone-com\/partners\/patron-medialny\/image.webp\"\/>\r\n                                                <p>media patron<\/p>\r\n                                            <\/div>\r\n                                        <\/div>\r\n                                        <div class=\"pwe-logo-item-container\" style=\"\">\r\n                                            <div class=\"pwe-logo-item \" style=\" \">\r\n                                                <img decoding=\"async\" id=\"logo_forcenews\" alt=\"Media Patronlogo_forcenews\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/warsawstone-com\/partners\/patron-medialny\/logo_forcenews.webp\"\/>\r\n                                                <p>media patron<\/p>\r\n                                            <\/div>\r\n                                        <\/div>\r\n                                        <div class=\"pwe-logo-item-container\" style=\"\">\r\n                                            <div class=\"pwe-logo-item \" style=\" \">\r\n                                                <img decoding=\"async\" id=\"LOGO_A&B\" alt=\"Media PatronLOGO_A&B\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/warsawstone-com\/partners\/patron-medialny\/LOGO_A&B.webp\"\/>\r\n                                                <p>media patron<\/p>\r\n                                            <\/div>\r\n                                        <\/div>\r\n                                        <div class=\"pwe-logo-item-container\" style=\"\">\r\n                                            <div class=\"pwe-logo-item \" style=\" \">\r\n                                                <img decoding=\"async\" id=\"89\" alt=\"Media Patron89\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/warsawstone-com\/partners\/patron-medialny\/89.webp\"\/>\r\n                                                <p>media patron<\/p>\r\n                                            <\/div>\r\n                                        <\/div>\r\n                                        <div class=\"pwe-logo-item-container\" style=\"\">\r\n                                            <div class=\"pwe-logo-item \" style=\" \">\r\n                                                <img decoding=\"async\" id=\"abra\" alt=\"Content Partnerabra\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/warsawstone-com\/partners\/partner-merytoryczny\/abra.webp\"\/>\r\n                                                <p>content partner<\/p>\r\n                                            <\/div>\r\n                                        <\/div>\r\n                                        <div class=\"pwe-logo-item-container\" style=\"\">\r\n                                            <div class=\"pwe-logo-item \" style=\" \">\r\n                                                <img decoding=\"async\" id=\"wbiznes (1)\" alt=\"Content Partnerwbiznes (1)\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/warsawstone-com\/partners\/partner-merytoryczny\/wbiznes (1).webp\"\/>\r\n                                                <p>content partner<\/p>\r\n                                            <\/div>\r\n                                        <\/div>\r\n                    <\/div>\r\n                <\/div>\r\n            <style>\r\n                #pweLogotypes-45973 .pwe-slides {\r\n                    visibility: hidden;\r\n                    opacity: 0;\r\n                    height: 0;\r\n                    width: 0;\r\n                    transition: .3s ease;\r\n                }\r\n                #pweLogotypes-45973 .slick-slide {\r\n                    height: auto;\r\n                }\r\n                #pweLogotypes-45973 .pwe-arrow {\r\n                    display: block;\r\n                    position: absolute;\r\n                    top: 50%;\r\n                    transform: translate(0, -50%);\r\n                    font-size: 60px;\r\n                    font-weight: 700;\r\n                    z-index: 1;\r\n                    cursor: pointer;\r\n                }\r\n                #pweLogotypes-45973 .pwe-arrow-prev {\r\n                    left: 14px;\r\n                }\r\n                #pweLogotypes-45973 .pwe-arrow-next {\r\n                    right: 14px;\r\n                }\r\n                #pweLogotypes-45973 .slick-dots {\r\n                    position: relative;\r\n                    width: 100%;\r\n                    max-width: 90px;\r\n                    overflow: hidden;\r\n                    white-space: nowrap;\r\n                    padding: 0 !important;\r\n                    list-style: none;\r\n                    margin: auto !important;\r\n                }\r\n                #pweLogotypes-45973 .slick-dots li {\r\n                    width: 16px;\r\n                    height: 16px;\r\n                    margin: 0 7px;\r\n                    background-color: #bbb;\r\n                    border: none;\r\n                    border-radius: 50%;\r\n                }\r\n                #pweLogotypes-45973 .slick-dots li button {\r\n                    opacity: 0;\r\n                }\r\n                #pweLogotypes-45973 .slick-dots li.slick-active {\r\n                    transform-origin: center;\r\n                    background: #424242;\r\n                }\r\n            <\/style>\r\n                <style>\r\n                    #pweLogotypes-45973 .pwe-arrow-prev {\r\n                        left: -26px;\r\n                    }\r\n                    #pweLogotypes-45973 .pwe-arrow-next {\r\n                        right: -26px;\r\n                    }\r\n                <\/style>\r\n            <script>\r\n                jQuery(function ($) {\r\n                    const pweElement = $(\"#pweLogotypes-45973\");\r\n                    const slickSlider = $(\"#pweLogotypes-45973 .pwe-slides\");\r\n                    const sliderArrows = $(\"#pweLogotypes-45973 .pwe-arrow\");\r\n                    const totalSlides = slickSlider.children().length;\r\n\r\n                    const sliderDotsDisplay = \"true\";\r\n                    const sliderArrowsDisplay = \"\";\r\n                    const slidesToShowSetting = 7;\r\n\r\n                    \/\/ Function to initialize Slick Slider\r\n                    function initializeSlick(arrowsEnabled = false, dotsEnabled = false) {\r\n                        const currentSlidesToShow = getInitialSlidesToShow();\r\n\r\n                        \/\/ Destroy Slick if already initialized\r\n                        if (slickSlider.hasClass(\"slick-initialized\")) {\r\n                            slickSlider.slick(\"unslick\");\r\n                        }\r\n\r\n                        \/\/ Initialize Slick Slider\r\n                        slickSlider.slick({\r\n                            infinite: true,\r\n                            slidesToShow: currentSlidesToShow,\r\n                            slidesToScroll: 1,\r\n                            arrows: arrowsEnabled,\r\n                            nextArrow: $(\"#pweLogotypes-45973 .pwe-arrow-next\"),\r\n                            prevArrow: $(\"#pweLogotypes-45973 .pwe-arrow-prev\"),\r\n                            autoplay: true,\r\n                            autoplaySpeed: 5000,\r\n                            speed: 600,\r\n                            dots: dotsEnabled,\r\n                            cssEase: \"linear\",\r\n                            \r\n                            swipeToSlide: true,\r\n                            \r\n                            \r\n                        });\r\n\r\n                        \/\/ Hide arrows if arrows are disabled\r\n                        if (!arrowsEnabled) {\r\n                            sliderArrows.hide();\r\n                        } else {\r\n                            sliderArrows.show();\r\n                        }\r\n\r\n                        monitorRoleAttributes();\r\n                    }\r\n\r\n                    \/\/ Function to monitor role=\"tabpanel\" and remove it if it\"s added\r\n                    function monitorRoleAttributes() {\r\n                        \/\/ Create a MutationObserver to watch for changes in the DOM\r\n                        const observer = new MutationObserver(function(mutationsList) {\r\n                            for (const mutation of mutationsList) {\r\n                                if (mutation.type === \"attributes\" && mutation.attributeName === \"role\") {\r\n                                    const target = mutation.target;\r\n                                    if (target.getAttribute(\"role\") === \"tabpanel\") {\r\n                                        target.removeAttribute(\"role\"); \/\/ Remove role=\"tabpanel\"\r\n                                    }\r\n                                }\r\n                            }\r\n                        });\r\n\r\n                        \/\/ Target all img elements inside .two-cols-logotypes\r\n                        const targetNodes = document.querySelectorAll(\".two-cols-logotypes img\");\r\n\r\n                        \/\/ Observe changes in these elements\r\n                        targetNodes.forEach(node => {\r\n                            observer.observe(node, {\r\n                                attributes: true \/\/ Watch for attribute changes\r\n                            });\r\n                        });\r\n                    }\r\n\r\n                    \/\/ Settings for slidesToShow based on breakpoints\r\n                    function getInitialSlidesToShow() {\r\n                        const elementWidth = pweElement.width();\r\n                        \r\n                return  elementWidth < 400 ? 2 :\r\n                        elementWidth < 600 ? 3 :\r\n                        elementWidth < 960 ? 5:\r\n                        slidesToShowSetting;\r\n                \r\n                    }\r\n\r\n                    \/\/ Check if arrows and dots should be enabled\r\n                    function updateSlickSettings() {\r\n                        const currentSlidesToShow = getInitialSlidesToShow();\r\n                        let dotsEnabled = totalSlides > currentSlidesToShow && sliderDotsDisplay === \"true\";\r\n                        let arrowsEnabled = totalSlides > currentSlidesToShow && sliderArrowsDisplay === \"true\";\r\n\r\n                        initializeSlick(arrowsEnabled, dotsEnabled);\r\n\r\n                        if (dotsEnabled) {\r\n                            slickSlider.on(\"afterChange\", function (event, slick, currentSlide) {\r\n                                const $slickDots = $(event.target).find(\".slick-dots\");\r\n                                const dotWidth = 30;\r\n\r\n                                \/\/ Calculate the offset based on the currentSlide index\r\n                                const scrollPosition = (currentSlide - 1) * dotWidth;\r\n\r\n                                \/\/ Set scrollLeft directly on the .slick-dots container\r\n                                $slickDots.animate({ scrollLeft: scrollPosition }, 300);\r\n                            });\r\n                        }\r\n                    }\r\n\r\n                    \/\/ Initialize slider on document ready\r\n                    updateSlickSettings();\r\n\r\n                    \/\/ Reinitialize slider on window resize and element resize\r\n                    const resizeObserver = new ResizeObserver(() => {\r\n                        updateSlickSettings();\r\n                    });\r\n\r\n                    resizeObserver.observe(pweElement[0]);\r\n\r\n                    slickSlider.css({\r\n                        \"visibility\": \"visible\",\r\n                        \"opacity\": \"1\",\r\n                        \"height\": \"auto\",\r\n                        \"width\": \"auto\"\r\n                    });\r\n\r\n                });\r\n            <\/script>\r\n        <script>\r\n            document.addEventListener(\"DOMContentLoaded\", function () {\r\n                const get_database_fairs_data = [{\"id\":\"3\",\"fair_name_pl\":\"Robotics Warsaw\",\"fair_name_en\":\"Robotics Warsaw\",\"fair_desc_pl\":\"Bran\\u017cowe Targi Robotyki Przemys\\u0142owej\",\"fair_desc_en\":\"Industry Trade Fair for Industrial Robotics\",\"fair_short_desc_pl\":\"Targi Robotyki Przemys\\u0142owej\",\"fair_short_desc_en\":\"Industrial Robotics Trade Fair\",\"fair_full_desc_pl\":\"<strong>Robotics Warsaw<\\\/strong> to kluczowe wydarzenie bran\\u017cowe, prezentuj\\u0105ce automatyzacj\\u0119 przemys\\u0142ow\\u0105, roboty mobilne, sztuczn\\u0105 inteligencj\\u0119 w robotyce oraz technologie wizyjne. Zaprezentowane zostan\\u0105 rozwi\\u0105zania z zakresu sterowania robotami, integracji system\\u00f3w automatyki oraz automatyzacji magazynowej. \\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Odkryj rozwi\\u0105zania w robotyce przemys\\u0142owej i automatyzacji.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach prowadzonych przez ekspert\\u00f3w z bran\\u017cy robotyki.\\r\\n<br><br><strong>Nawi\\u0105\\u017c relacje:<\\\/strong> Spotkaj lider\\u00f3w bran\\u017cy, nawi\\u0105\\u017c cenne kontakty i zwi\\u0119ksz przewag\\u0119 konkurencyjn\\u0105 na rynku.\",\"fair_full_desc_en\":\"<strong>Robotics Warsaw<\\\/strong> is a key industry event showcasing industrial automation, mobile robots, artificial intelligence in robotics, and vision technologies. It features solutions in robot control, advanced automation system integration, and warehouse automation. \\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover solutions in industrial robotics and automation.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Attend conferences led by experts in the robotics industry.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2027\\\/02\\\/02\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2027\\\/02\\\/04\",\"fair_date_end_hour\":null,\"fair_edition\":\"3\",\"fair_visitors\":\"5000\",\"fair_exhibitors\":\"70\",\"fair_countries\":\"8\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2026\\\",\\\"fair_visitors_current\\\":\\\"5680\\\",\\\"fair_foreign_current\\\":\\\"330\\\",\\\"fair_exhibitors_current\\\":\\\"65\\\",\\\"fair_countries_current\\\":\\\"28\\\",\\\"fair_area_current\\\":\\\"14000\\\",\\\"fair_year_previous\\\":\\\"2025\\\",\\\"fair_visitors_previous\\\":\\\"5201\\\",\\\"fair_foreign_previous\\\":\\\"293\\\",\\\"fair_exhibitors_previous\\\":\\\"59\\\",\\\"fair_countries_previous\\\":\\\"8\\\",\\\"fair_area_previous\\\":\\\"12000\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/RoboticsWarsaw\\\/\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/robotics_warsaw\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/robotics-warsaw\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/playlist?list=PL0uv62TZgbz9KzMlQfsTqJs9g6DhNC8gF\",\"fair_color_accent\":\"#002b46\",\"fair_color_main2\":\"#49c2cb\",\"fair_hall\":\"C1, C2\",\"fair_area\":\"15000\",\"fair_kw\":\"2178\",\"fair_badge\":\"robotics\",\"fair_domain\":\"roboticswarsaw.com\",\"fair_shop\":\"{\\\"products\\\":{\\\"smycze\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"logotyp\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-planu\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"vip-room\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-restauracji\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wieczoru\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-vip-gold\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wkladki-reklamowej\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"lokowanie-w-sms\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"post-promocyjny\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-publikacji\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zdjecia-stoiska\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wideo-promocyjne\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"relacja\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wywiad\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wspoltworzony-post\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"hostessa\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-przestrzeni\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"roll-up-winder\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zaproszenie-w-wysy\\u0142ce\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-24x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-15x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-6x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"stand-reklamowy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"materialy-reklamowe\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-wzmianka\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"naklejka-podlogowa\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"komunikat-w-radiowezle\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-barierkach\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flagobaner\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flaga-na-maszcie\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"pozycjonowanie-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"skaner-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"1000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"240\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-wieczor-branzowy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false}},\\\"options\\\":{\\\"margin\\\":\\\"\\\"}}\",\"fair_group\":\"gr2\",\"category_pl\":\"Przemys\\u0142\",\"category_en\":\"Industry\",\"konf_name\":\"Industrial Robotics Congress\",\"konf_title_pl\":\"Bran\\u017cowa Konferencja Robotyki Przemys\\u0142owej\",\"konf_title_en\":\"Industry Conference on Industrial Robotics\",\"fair_kw_new\":\"47, 48\",\"fair_kw_old_arch\":\"2026-1580;2027-2178;\",\"fair_kw_new_arch\":\"2026-47,48;\",\"fair_entrance\":null},{\"id\":\"117\",\"fair_name_pl\":\"Warsaw Fleet Expo\",\"fair_name_en\":\"Warsaw Fleet Expo\",\"fair_desc_pl\":\"Bran\\u017cowe Targi Floty Samochodowej\",\"fair_desc_en\":\"Industry Trade Fair for Automotive Fleet\",\"fair_short_desc_pl\":\"Targi Rozwi\\u0105za\\u0144 dla Flot Samochodowych\",\"fair_short_desc_en\":\"Fleet Solutions Trade Fair\",\"fair_full_desc_pl\":\"<strong>Warsaw Fleet Expo<\\\/strong> to najwa\\u017cniejsze wydarzenie po\\u015bwi\\u0119cone nowoczesnym rozwi\\u0105zaniom dla flot samochodowych, prezentuj\\u0105ce innowacje w zakresie zarz\\u0105dzania pojazdami, optymalizacji koszt\\u00f3w i zr\\u00f3wnowa\\u017conego transportu. Na targach znajdziesz najnowsze modele samochod\\u00f3w osobowych i dostawczych, technologie wspieraj\\u0105ce elektromobilno\\u015b\\u0107 oraz inteligentne systemy telematyczne.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Poznaj najnowsze technologie flotowe, w tym elektryczne i hybrydowe nap\\u0119dy, systemy ADAS oraz inteligentne rozwi\\u0105zania telematyczne.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w panelach eksperckich na temat finansowania flot, bezpiecze\\u0144stwa na drodze oraz strategii obni\\u017cenia emisji CO\\u2082.\\r\\n<br><br><strong>Nawi\\u0105\\u017c relacje:<\\\/strong> Spotkaj lider\\u00f3w bran\\u017cy, nawi\\u0105\\u017c cenne kontakty i zwi\\u0119ksz przewag\\u0119 konkurencyjn\\u0105 na rynku.\",\"fair_full_desc_en\":\"<strong>Warsaw Fleet Expo<\\\/strong> is the most important event dedicated to modern solutions for vehicle fleets, showcasing innovations in vehicle management, cost optimization, and sustainable transport. The trade fair features the latest models of passenger and commercial vehicles, technologies supporting electromobility, and intelligent telematics systems.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover the latest fleet technologies, including electric and hybrid drives, ADAS systems, and intelligent telematics solutions.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Take part in expert panels on fleet financing, road safety, and CO\\u2082 emission reduction strategies.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2027\\\/02\\\/02\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2027\\\/02\\\/04\",\"fair_date_end_hour\":null,\"fair_edition\":\"2\",\"fair_visitors\":\"5000\",\"fair_exhibitors\":\"70\",\"fair_countries\":\"12\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2026\\\",\\\"fair_visitors_current\\\":\\\"3107\\\",\\\"fair_foreign_current\\\":\\\"159\\\",\\\"fair_exhibitors_current\\\":\\\"72\\\",\\\"fair_countries_current\\\":\\\"15\\\",\\\"fair_area_current\\\":\\\"12000\\\",\\\"fair_year_previous\\\":\\\"\\\",\\\"fair_visitors_previous\\\":\\\"\\\",\\\"fair_foreign_previous\\\":\\\"\\\",\\\"fair_exhibitors_previous\\\":\\\"\\\",\\\"fair_countries_previous\\\":\\\"\\\",\\\"fair_area_previous\\\":\\\"\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/warsawfleetexpo\\\/\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/fleet_expo\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/warsaw-fleet-expo\\\/\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/@ptakwarsawexpo2557\",\"fair_color_accent\":\"#16608d\",\"fair_color_main2\":\"#0cb4ce\",\"fair_hall\":\"B1, B2\",\"fair_area\":\"15000\",\"fair_kw\":\"2174\",\"fair_badge\":\"fleetexpo\",\"fair_domain\":\"warsawfleetexpo.com\",\"fair_shop\":null,\"fair_group\":\"gr2\",\"category_pl\":\"Motoryzacja\",\"category_en\":\"Automotive\",\"konf_name\":\"Fleet Management Summit\",\"konf_title_pl\":\"Konferencja Rozwi\\u0105za\\u0144 dla Flot Samochodowych\",\"konf_title_en\":\"Industry Conference for Automotive Fleet\",\"fair_kw_new\":\"46\",\"fair_kw_old_arch\":\"2026-952;2027-2174;\",\"fair_kw_new_arch\":\"2026-46;\",\"fair_entrance\":null},{\"id\":\"131\",\"fair_name_pl\":\"Warsaw Gift & Deco\",\"fair_name_en\":\"Warsaw Gift & Deco\",\"fair_desc_pl\":\"Mi\\u0119dzynarodowe Targi Upomink\\u00f3w i Dekoracji\",\"fair_desc_en\":\"International Trade Fair for Gifts and Decorations\",\"fair_short_desc_pl\":\"Targi Upomink\\u00f3w i Dekoracji\",\"fair_short_desc_en\":\"Gifts and Decorations Trade Fair\",\"fair_full_desc_pl\":\"<strong>Warsaw Gift & Deco<\\\/strong> to kluczowe wydarzenie bran\\u017cowe, prezentuj\\u0105ce upominki, dekoracje wn\\u0119trz, bi\\u017cuteri\\u0119, akcesoria modowe oraz personalizowane produkty. Znajdziesz tu r\\u00f3wnie\\u017c dzie\\u0142a sztuki, r\\u0119kodzie\\u0142o, zabawki, ro\\u015bliny i akcesoria ogrodnicze, kt\\u00f3re inspiruj\\u0105 do tworzenia unikalnych przestrzeni i wyj\\u0105tkowych prezent\\u00f3w.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Odkryj najnowsze trendy w upominkach, dekoracjach i personalizowanych prezentach.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach ekspert\\u00f3w z bran\\u017cy upomink\\u00f3w i designu wn\\u0119trz.\\r\\n<br><br><strong>Nawi\\u0105\\u017c relacje:<\\\/strong> Spotkaj lider\\u00f3w bran\\u017cy, nawi\\u0105\\u017c cenne kontakty i zwi\\u0119ksz przewag\\u0119 konkurencyjn\\u0105 na rynku.\",\"fair_full_desc_en\":\"<strong>Warsaw Gift & Deco<\\\/strong> is a key industry event showcasing gifts, home decorations, jewelry, fashion accessories, and personalized products. Explore artworks, handicrafts, toys, plants, gardening accessories, and creative solutions that inspire the creation of unique spaces and exceptional gifts for every occasion.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover the latest trends in gifts, decorations, and personalized presents.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Join experts for insightful conferences on the gift industry and interior design.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2027\\\/02\\\/02\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2027\\\/02\\\/04\",\"fair_date_end_hour\":null,\"fair_edition\":\"7\",\"fair_visitors\":\"19219\",\"fair_exhibitors\":\"413\",\"fair_countries\":\"15\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2026\\\",\\\"fair_visitors_current\\\":\\\"20281\\\",\\\"fair_foreign_current\\\":\\\"540\\\",\\\"fair_exhibitors_current\\\":\\\"413\\\",\\\"fair_countries_current\\\":\\\"12\\\",\\\"fair_area_current\\\":\\\"50000\\\",\\\"fair_year_previous\\\":\\\"2025\\\",\\\"fair_visitors_previous\\\":\\\"19219\\\",\\\"fair_foreign_previous\\\":\\\"532\\\",\\\"fair_exhibitors_previous\\\":\\\" 413\\\",\\\"fair_countries_previous\\\":\\\"15\\\",\\\"fair_area_previous\\\":\\\"50000\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/warsawgiftdeco\\\/\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/warsawgiftdeco\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/warsawhomegiftdeco\\\/\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/playlist?list=PL0uv62TZgbz9GKXNAzZpYAHBPif7cM4jw\",\"fair_color_accent\":\"#f59871\",\"fair_color_main2\":\"#824378\",\"fair_hall\":\"F3, F4\",\"fair_area\":\"50000\",\"fair_kw\":\"2205\",\"fair_badge\":\"gift\",\"fair_domain\":\"warsawgiftshow.com\",\"fair_shop\":\"{\\\"products\\\":{\\\"smycze\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"logotyp\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-planu\\\":{\\\"prod_price_pl\\\":\\\"6000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"vip-room\\\":{\\\"prod_price_pl\\\":\\\"18000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-restauracji\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wieczoru\\\":{\\\"prod_price_pl\\\":\\\"80000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-vip-gold\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wkladki-reklamowej\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"lokowanie-w-sms\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"post-promocyjny\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-publikacji\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zdjecia-stoiska\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wideo-promocyjne\\\":{\\\"prod_price_pl\\\":\\\"2500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"relacja\\\":{\\\"prod_price_pl\\\":\\\"800\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wywiad\\\":{\\\"prod_price_pl\\\":\\\"3500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wspoltworzony-post\\\":{\\\"prod_price_pl\\\":\\\"1500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"hostessa\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-przestrzeni\\\":{\\\"prod_price_pl\\\":\\\"800\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"roll-up-winder\\\":{\\\"prod_price_pl\\\":\\\"1400\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zaproszenie-w-wysy\\u0142ce\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-24x6\\\":{\\\"prod_price_pl\\\":\\\"28000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-15x6\\\":{\\\"prod_price_pl\\\":\\\"25000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-6x6\\\":{\\\"prod_price_pl\\\":\\\"22000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"stand-reklamowy\\\":{\\\"prod_price_pl\\\":\\\"3500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"materialy-reklamowe\\\":{\\\"prod_price_pl\\\":\\\"4500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"5500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-wzmianka\\\":{\\\"prod_price_pl\\\":\\\"2500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"naklejka-podlogowa\\\":{\\\"prod_price_pl\\\":\\\"600\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"komunikat-w-radiowezle\\\":{\\\"prod_price_pl\\\":\\\"700\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-barierkach\\\":{\\\"prod_price_pl\\\":\\\"1300\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flagobaner\\\":{\\\"prod_price_pl\\\":\\\"1400\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flaga-na-maszcie\\\":{\\\"prod_price_pl\\\":\\\"1600\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"pozycjonowanie-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"800\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"2000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"skaner-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"1800\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-wieczor-branzowy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false}},\\\"options\\\":{\\\"margin\\\":\\\"\\\"}}\",\"fair_group\":\"gr3\",\"category_pl\":\"Dom\",\"category_en\":\"Home\",\"konf_name\":\"Home Accents Conference\",\"konf_title_pl\":\"Mi\\u0119dzynarodowa Konferencja Bran\\u017cy Dekoracyjnej\",\"konf_title_en\":\"International Conference of the Decorating Industry\",\"fair_kw_new\":\"51\",\"fair_kw_old_arch\":\"2027-2205;2026-1670;2025-1118;2024-761;2023-589;2022-224;\",\"fair_kw_new_arch\":\"2026-51;\",\"fair_entrance\":null},{\"id\":\"132\",\"fair_name_pl\":\"Warsaw Garden Expo\",\"fair_name_en\":\"Warsaw Garden Expo\",\"fair_desc_pl\":\"Mi\\u0119dzynarodowe Targi Ogrodnictwa\",\"fair_desc_en\":\"International Horticultural Trade Fair\",\"fair_short_desc_pl\":\"Targi Ogrodnictwa\",\"fair_short_desc_en\":\"Gardening Trade Trade Fair\",\"fair_full_desc_pl\":\"<strong>Warsaw Garden Expo<\\\/strong> to kluczowe wydarzenie bran\\u017cowe, prezentuj\\u0105ce najnowsze rozwi\\u0105zania w architekturze krajobrazu, florystyce i technice ogrodniczej. Zaprezentowane zostan\\u0105 meble ogrodowe, narz\\u0119dzia, o\\u015bwietlenie, szklarnie, doniczki oraz akcesoria do BBQ. \\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Odkryj innowacje w architekturze krajobrazu i technice ogrodniczej.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach prowadzonych przez ekspert\\u00f3w z bran\\u017cy ogrodniczej.\\r\\n<br><br><strong>Nawi\\u0105\\u017c relacje:<\\\/strong> Spotkaj lider\\u00f3w bran\\u017cy, nawi\\u0105\\u017c cenne kontakty i zwi\\u0119ksz przewag\\u0119 konkurencyjn\\u0105 na rynku.\",\"fair_full_desc_en\":\"<strong>Warsaw Garden Expo<\\\/strong> is a key industry event showcasing the latest solutions in landscape architecture, floristry, and gardening technology. It features garden furniture, tools, lighting, greenhouses, pots, and BBQ accessories. \\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover innovations in landscape architecture and gardening technology.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Attend conferences led by experts in the gardening industry.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2027\\\/02\\\/02\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2027\\\/02\\\/04\",\"fair_date_end_hour\":null,\"fair_edition\":\"7\",\"fair_visitors\":\"19219\",\"fair_exhibitors\":\"413\",\"fair_countries\":\"7\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2026\\\",\\\"fair_visitors_current\\\":\\\"20281\\\",\\\"fair_foreign_current\\\":\\\"540\\\",\\\"fair_exhibitors_current\\\":\\\"413\\\",\\\"fair_countries_current\\\":\\\"12\\\",\\\"fair_area_current\\\":\\\"50000\\\",\\\"fair_year_previous\\\":\\\"2025\\\",\\\"fair_visitors_previous\\\":\\\"19219\\\",\\\"fair_foreign_previous\\\":\\\"744\\\",\\\"fair_exhibitors_previous\\\":\\\" 413\\\",\\\"fair_countries_previous\\\":\\\"7\\\",\\\"fair_area_previous\\\":\\\"50000\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/warsawgardenexpo\\\/\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/warsaw_garden_expo\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/warsawgardenexpo\\\/\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/playlist?list=PL0uv62TZgbz_jCxkb-ypYs5w2mVYp6ibn\",\"fair_color_accent\":\"#3fa535\",\"fair_color_main2\":\"#94bf24\",\"fair_hall\":\"E\",\"fair_area\":\"50000\",\"fair_kw\":\"2203\",\"fair_badge\":\"gardenexpo\",\"fair_domain\":\"warsawgardenexpo.com\",\"fair_shop\":\"{\\\"products\\\":{\\\"smycze\\\":{\\\"prod_price_pl\\\":\\\"6000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"logotyp\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-planu\\\":{\\\"prod_price_pl\\\":\\\"6000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"vip-room\\\":{\\\"prod_price_pl\\\":\\\"18000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"4500\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-restauracji\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wieczoru\\\":{\\\"prod_price_pl\\\":\\\"80000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"20000\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-vip-gold\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wkladki-reklamowej\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"lokowanie-w-sms\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"post-promocyjny\\\":{\\\"prod_price_pl\\\":\\\"1600\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-publikacji\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zdjecia-stoiska\\\":{\\\"prod_price_pl\\\":\\\"1100\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wideo-promocyjne\\\":{\\\"prod_price_pl\\\":\\\"2500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"relacja\\\":{\\\"prod_price_pl\\\":\\\"800\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wywiad\\\":{\\\"prod_price_pl\\\":\\\"3500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wspoltworzony-post\\\":{\\\"prod_price_pl\\\":\\\"1500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"hostessa\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-przestrzeni\\\":{\\\"prod_price_pl\\\":\\\"800\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"roll-up-winder\\\":{\\\"prod_price_pl\\\":\\\"1400\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zaproszenie-w-wysy\\u0142ce\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-24x6\\\":{\\\"prod_price_pl\\\":\\\"28000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-15x6\\\":{\\\"prod_price_pl\\\":\\\"25000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-6x6\\\":{\\\"prod_price_pl\\\":\\\"22000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"stand-reklamowy\\\":{\\\"prod_price_pl\\\":\\\"3500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"materialy-reklamowe\\\":{\\\"prod_price_pl\\\":\\\"4500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"5500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-wzmianka\\\":{\\\"prod_price_pl\\\":\\\"2500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"naklejka-podlogowa\\\":{\\\"prod_price_pl\\\":\\\"600\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"komunikat-w-radiowezle\\\":{\\\"prod_price_pl\\\":\\\"700\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-barierkach\\\":{\\\"prod_price_pl\\\":\\\"1300\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flagobaner\\\":{\\\"prod_price_pl\\\":\\\"1400\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flaga-na-maszcie\\\":{\\\"prod_price_pl\\\":\\\"1600\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"pozycjonowanie-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"800\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"2000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"skaner-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"1800\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-wieczor-branzowy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false}},\\\"options\\\":{\\\"margin\\\":\\\"\\\"}}\",\"fair_group\":\"gr3\",\"category_pl\":\"Dom\",\"category_en\":\"Home\",\"konf_name\":\"Garden Innovations Conference\",\"konf_title_pl\":\"Konferencja Bran\\u017cy Ogrodniczej\",\"konf_title_en\":\"Gardening Industry Conference\",\"fair_kw_new\":\"50\",\"fair_kw_old_arch\":\"2023-589;2024-761;2025-1118;2026-1648;2027-2203;\",\"fair_kw_new_arch\":\"2026-1648;\",\"fair_entrance\":null},{\"id\":\"140\",\"fair_name_pl\":\"INTRALOGISTICA POLAND EXPO\",\"fair_name_en\":\"INTRALOGISTICA POLAND EXPO\",\"fair_desc_pl\":\"Mi\\u0119dzynarodowe Targi Logistyki Magazynowej\",\"fair_desc_en\":\"International Trade Fair for Warehouse Logistics\",\"fair_short_desc_pl\":\"Targi Logistyki Magazynowej\",\"fair_short_desc_en\":\"Warehouse Logistics Trade Fair\",\"fair_full_desc_pl\":\"<strong>INTRALOGISTICA POLAND EXPO<\\\/strong> to kluczowe wydarzenie bran\\u017cowe, prezentuj\\u0105ce systemy magazynowe, urz\\u0105dzenia transportowe oraz technologie automatyki i robotyki magazynowej. Zostan\\u0105 zaprezentowane rozwi\\u0105zania z zakresu WMS, system\\u00f3w RFID oraz zarz\\u0105dzania transportem wewn\\u0119trznym. \\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Poznaj innowacje w systemach magazynowych i automatyzacji.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach prowadzonych przez ekspert\\u00f3w intralogistyki.\\r\\n<br><br><strong>Nawi\\u0105\\u017c relacje:<\\\/strong> Spotkaj lider\\u00f3w bran\\u017cy, nawi\\u0105\\u017c cenne kontakty i zwi\\u0119ksz przewag\\u0119 konkurencyjn\\u0105 na rynku.\",\"fair_full_desc_en\":\"<strong>INTRALOGISTICA POLAND EXPO<\\\/strong> is a key industry event showcasing warehouse systems, transport devices, and automation and robotics technologies. It features solutions in WMS, RFID systems, advanced warehouse and efficient internal transport management.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover innovations in warehouse systems and automation.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Attend conferences led by experts in intralogistics.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2027\\\/02\\\/02\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2027\\\/02\\\/04\",\"fair_date_end_hour\":null,\"fair_edition\":\"4\",\"fair_visitors\":\"6544\",\"fair_exhibitors\":\"159\",\"fair_countries\":\"12\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2026\\\",\\\"fair_visitors_current\\\":\\\"7204\\\",\\\"fair_foreign_current\\\":\\\"508\\\",\\\"fair_exhibitors_current\\\":\\\"193\\\",\\\"fair_countries_current\\\":\\\"26\\\",\\\"fair_area_current\\\":\\\"20000\\\",\\\"fair_year_previous\\\":\\\"2025\\\",\\\"fair_visitors_previous\\\":\\\"6544\\\",\\\"fair_foreign_previous\\\":\\\"409\\\",\\\"fair_exhibitors_previous\\\":\\\"159\\\",\\\"fair_countries_previous\\\":\\\"12\\\",\\\"fair_area_previous\\\":\\\"18000\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/intralogisticaexpo\\\/\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/intralogisticapolandexpo\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/intralogistica-poland-expo\\\/\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/playlist?list=PL0uv62TZgbz8N1g-NUvCk4zD2A_haJndG\",\"fair_color_accent\":\"#0055ad\",\"fair_color_main2\":\"#ff8d0a\",\"fair_hall\":\"D1, D2\",\"fair_area\":\"15000\",\"fair_kw\":\"2190\",\"fair_badge\":\"intralogistica\",\"fair_domain\":\"intralogisticapoland.com\",\"fair_shop\":\"{\\\"products\\\":{\\\"smycze\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"logotyp\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-planu\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"vip-room\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-restauracji\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wieczoru\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-vip-gold\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wkladki-reklamowej\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"lokowanie-w-sms\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"post-promocyjny\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-publikacji\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zdjecia-stoiska\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wideo-promocyjne\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"relacja\\\":{\\\"prod_price_pl\\\":\\\"1000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wywiad\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wspoltworzony-post\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"hostessa\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-przestrzeni\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"roll-up-winder\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zaproszenie-w-wysy\\u0142ce\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-24x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"Ograniczony limit\\\",\\\"prod_image_text_en\\\":\\\"Limited quantity\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-15x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"Ograniczony limit\\\",\\\"prod_image_text_en\\\":\\\"Limited quantity\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-6x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"Ograniczony limit\\\",\\\"prod_image_text_en\\\":\\\"Limited quantity\\\",\\\"sold_out\\\":false},\\\"stand-reklamowy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"materialy-reklamowe\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-wzmianka\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"naklejka-podlogowa\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"komunikat-w-radiowezle\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-barierkach\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flagobaner\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flaga-na-maszcie\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"pozycjonowanie-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"1000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"skaner-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"1000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"240\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-wieczor-branzowy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false}},\\\"options\\\":{\\\"margin\\\":\\\"\\\"}}\",\"fair_group\":\"gr2\",\"category_pl\":\"Przemys\\u0142\",\"category_en\":\"Industry\",\"konf_name\":\"Warehouse Logistics Conference\",\"konf_title_pl\":\"Konferencja Bran\\u017cy Logistyki Magazynowej\",\"konf_title_en\":\"Warehouse Logistics Industry Conference\",\"fair_kw_new\":\"48, 47\",\"fair_kw_old_arch\":\"2027-2190;2026-1592;2025-1081;2024-790;\",\"fair_kw_new_arch\":\"2026-48,47;\",\"fair_entrance\":null},{\"id\":\"163\",\"fair_name_pl\":\"Smart Home Expo\",\"fair_name_en\":\"Smart Home Expo\",\"fair_desc_pl\":\"Mi\\u0119dzynarodowe Targi Automatyki Wn\\u0119trz i Budynk\\u00f3w Mieszkalnych\",\"fair_desc_en\":\"International Trade Fair for Interior and Residential Building Automation\",\"fair_short_desc_pl\":\"Targi Automatyki Budynk\\u00f3w i Wn\\u0119trz\",\"fair_short_desc_en\":\"Building Automation and Interior Automation Trade Fair\",\"fair_full_desc_pl\":\"<strong>Smart Home&IoT Expo<\\\/strong> to kluczowe wydarzenie bran\\u017cowe, prezentuj\\u0105ce technologie automatyzacji domowej, inteligentnych urz\\u0105dze\\u0144 i zarz\\u0105dzania energi\\u0105. Zaprezentowane zostan\\u0105 systemy bezpiecze\\u0144stwa, fotowoltaika, o\\u015bwietlenie LED, asystenci g\\u0142osowi oraz technologie IoT. \\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Odkryj innowacje w automatyzacji domowej i technologiach IoT.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach ekspert\\u00f3w w dziedzinie smart home i IoT.\\r\\n<br><br><strong>Nawi\\u0105\\u017c relacje:<\\\/strong> Spotkaj lider\\u00f3w bran\\u017cy, nawi\\u0105\\u017c cenne kontakty i zwi\\u0119ksz przewag\\u0119 konkurencyjn\\u0105 na rynku.\",\"fair_full_desc_en\":\"<strong>Smart Home&IoT Expo<\\\/strong> is a key industry event presenting home automation technologies, smart devices, and energy management solutions. It will showcase security systems, photovoltaic panels, LED lighting, voice assistants, and IoT solutions. \\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover innovations in home automation and IoT technologies.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Participate in conferences led by experts in the field of smart home and IoT.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2027\\\/02\\\/23\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2027\\\/02\\\/25\",\"fair_date_end_hour\":null,\"fair_edition\":\"3\",\"fair_visitors\":\"5465\",\"fair_exhibitors\":\"57\",\"fair_countries\":\"38\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2026\\\",\\\"fair_visitors_current\\\":\\\"8044\\\",\\\"fair_foreign_current\\\":\\\"502\\\",\\\"fair_exhibitors_current\\\":\\\"114\\\",\\\"fair_countries_current\\\":\\\"31\\\",\\\"fair_area_current\\\":\\\"18000\\\",\\\"fair_year_previous\\\":\\\"2025\\\",\\\"fair_visitors_previous\\\":\\\"5465\\\",\\\"fair_foreign_previous\\\":\\\"345\\\",\\\"fair_exhibitors_previous\\\":\\\"57\\\",\\\"fair_countries_previous\\\":\\\"38\\\",\\\"fair_area_previous\\\":\\\"15000\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/TargiSmartHomeExpo\\\/\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/smart_home_expo\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/smart-homeexpo\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/watch?v=ZqB-bDHMyvk\",\"fair_color_accent\":\"#012f6d\",\"fair_color_main2\":\"#8e0e65\",\"fair_hall\":\"D1, D2\",\"fair_area\":\"15000\",\"fair_kw\":\"2219\",\"fair_badge\":\"smarthome\",\"fair_domain\":\"smarthomeexpo.pl\",\"fair_shop\":\"{\\\"products\\\":{\\\"smycze\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"logotyp\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-planu\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"vip-room\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-restauracji\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wieczoru\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-vip-gold\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wkladki-reklamowej\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"lokowanie-w-sms\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"post-promocyjny\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-publikacji\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zdjecia-stoiska\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wideo-promocyjne\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"relacja\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wywiad\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wspoltworzony-post\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"hostessa\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-przestrzeni\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"roll-up-winder\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zaproszenie-w-wysy\\u0142ce\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-24x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-15x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-6x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"stand-reklamowy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"materialy-reklamowe\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-wzmianka\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"naklejka-podlogowa\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"komunikat-w-radiowezle\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-barierkach\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flagobaner\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flaga-na-maszcie\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"pozycjonowanie-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"skaner-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"1000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"240\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-wieczor-branzowy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false}},\\\"options\\\":{\\\"margin\\\":\\\"\\\"}}\",\"fair_group\":\"gr2\",\"category_pl\":\"Dom\",\"category_en\":\"Home\",\"konf_name\":\"Interior Automation Conference\",\"konf_title_pl\":\"Konferencja Automatyki Wn\\u0119trz i Budynk\\u00f3w Mieszkalnych\",\"konf_title_en\":\"Interior and Building Automation Conference\",\"fair_kw_new\":\"55, 49\",\"fair_kw_old_arch\":\"2027-2219;2026-1650;2025-1273;\",\"fair_kw_new_arch\":\"2026-55, 49;\",\"fair_entrance\":null},{\"id\":\"165\",\"fair_name_pl\":\"Stone Poland\",\"fair_name_en\":\"Stone Poland\",\"fair_desc_pl\":\"Mi\\u0119dzynarodowe Targi Kamienia i Maszyn Kamieniarskich\",\"fair_desc_en\":\"International Trade Fair of Natural Stone and Stonework Machinery\",\"fair_short_desc_pl\":\"Targi Kamienia i Maszyn Kamieniarskich\",\"fair_short_desc_en\":\"Stone and Stoneworking Machines Trade Fair\",\"fair_full_desc_pl\":\"<strong>Stone Poland<\\\/strong> to kluczowe wydarzenie bran\\u017cowe, prezentuj\\u0105ce kamie\\u0144 naturalny, maszyny kamieniarskie i narz\\u0119dzia do obr\\u00f3bki. Zaprezentowane zostan\\u0105 zautomatyzowane procesy produkcji, materia\\u0142y kompozytowe oraz rozwi\\u0105zania ekologiczne. Poznaj innowacje w architekturze, projektowaniu, renowacji i przemy\\u015ble kamieniarskim.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Odkryj nowoczesne technologie i zastosowania kamienia naturalnego.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach prowadzonych przez ekspert\\u00f3w z bran\\u017cy kamieniarskiej.\\r\\n<br><br><strong>Nawi\\u0105\\u017c relacje:<\\\/strong> Spotkaj lider\\u00f3w bran\\u017cy, nawi\\u0105\\u017c cenne kontakty i zwi\\u0119ksz przewag\\u0119 konkurencyjn\\u0105 na rynku.\",\"fair_full_desc_en\":\"<strong>Stone Poland<\\\/strong> is a key event in the industry, presenting natural stone, stone machinery, and processing tools. Automated production processes, composite materials, and eco-friendly solutions will be showcased. Discover innovations in architecture, design, renovation, and the stone sector.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover modern technologies and applications of natural stone.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Participate in conferences led by experts from the stone industry.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2027\\\/02\\\/16\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2027\\\/02\\\/18\",\"fair_date_end_hour\":null,\"fair_edition\":\"3\",\"fair_visitors\":\"6480\",\"fair_exhibitors\":\"115\",\"fair_countries\":\"8\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2026\\\",\\\"fair_visitors_current\\\":\\\"6983\\\",\\\"fair_foreign_current\\\":\\\"854\\\",\\\"fair_exhibitors_current\\\":\\\"141\\\",\\\"fair_countries_current\\\":\\\"33\\\",\\\"fair_area_current\\\":\\\"22000\\\",\\\"fair_year_previous\\\":\\\"2025\\\",\\\"fair_visitors_previous\\\":\\\"6480\\\",\\\"fair_foreign_previous\\\":\\\"762\\\",\\\"fair_exhibitors_previous\\\":\\\"115\\\",\\\"fair_countries_previous\\\":\\\"8\\\",\\\"fair_area_previous\\\":\\\"20000\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/TargiStoneExpo\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/warsawstoneexpo\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/stone-poland-expo\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/watch?v=8I7VOuKxXUQ\",\"fair_color_accent\":\"#dccdb0\",\"fair_color_main2\":\"#424242\",\"fair_hall\":\"D1, D2\",\"fair_area\":\"20000\",\"fair_kw\":\"2200\",\"fair_badge\":\"stone\",\"fair_domain\":\"warsawstone.com\",\"fair_shop\":\"{\\\"products\\\":{\\\"smycze\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"logotyp\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-planu\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"vip-room\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-restauracji\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wieczoru\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-vip-gold\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wkladki-reklamowej\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"lokowanie-w-sms\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"post-promocyjny\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-publikacji\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zdjecia-stoiska\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wideo-promocyjne\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"relacja\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wywiad\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wspoltworzony-post\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"hostessa\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-przestrzeni\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"roll-up-winder\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zaproszenie-w-wysy\\u0142ce\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-24x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-15x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-6x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"stand-reklamowy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"materialy-reklamowe\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-wzmianka\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"naklejka-podlogowa\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"komunikat-w-radiowezle\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-barierkach\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flagobaner\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flaga-na-maszcie\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"pozycjonowanie-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"skaner-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"1000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"240\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-wieczor-branzowy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false}},\\\"options\\\":{\\\"margin\\\":\\\"\\\"}}\",\"fair_group\":\"gr2\",\"category_pl\":\"Budownictwo\",\"category_en\":\"Construction\",\"konf_name\":\"Stone&Machines Conference\",\"konf_title_pl\":\"Konferencja Bran\\u017cy Kamieniarskiej i Technologii Obr\\u00f3bki Kamienia\",\"konf_title_en\":\"Stone Industry and Stone Processing Technology Conference\",\"fair_kw_new\":\"54\",\"fair_kw_old_arch\":\"2027-2200;2026-1677;2025-863;\",\"fair_kw_new_arch\":\"2026- 54;\",\"fair_entrance\":null},{\"id\":\"176\",\"fair_name_pl\":\"Wood Tech Expo\",\"fair_name_en\":\"Wood Tech Expo\",\"fair_desc_pl\":\"Targi Technologii Obr\\u00f3bki Drewna i Produkcji Mebli\",\"fair_desc_en\":\"Trade Fair for Woodworking Technology and Furniture Production\",\"fair_short_desc_pl\":\"Targi Technologii Drewna i Meblarstwa\",\"fair_short_desc_en\":\"Woodworking and Furniture Technology Trade Fair\",\"fair_full_desc_pl\":\"<strong>Wood Tech Warsaw Expo<\\\/strong> to kluczowe wydarzenie bran\\u017cowe, prezentuj\\u0105ce technologie obr\\u00f3bki drewna, maszyny, narz\\u0119dzia i urz\\u0105dzenia. Zaprezentowane zostan\\u0105 materia\\u0142y drewniane, drewno konstrukcyjne, tarcica, systemy monta\\u017cowe oraz logistyka i magazynowanie. Poznaj innowacje kszta\\u0142tuj\\u0105ce przysz\\u0142o\\u015b\\u0107 przemys\\u0142u drzewnego.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Znajdziesz tu najnowsze technologie w obr\\u00f3bce drewna i produkcji mebli.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach ekspert\\u00f3w w dziedzinie technologii drewna i mebli.\\r\\n<br><br><strong>Nawi\\u0105\\u017c relacje:<\\\/strong> Spotkaj lider\\u00f3w bran\\u017cy, nawi\\u0105\\u017c cenne kontakty i zwi\\u0119ksz przewag\\u0119 konkurencyjn\\u0105 na rynku.\",\"fair_full_desc_en\":\"<strong>Wood Tech Warsaw Expo<\\\/strong> is a key industry event showcasing wood processing technologies, machinery, tools, and equipment. The exhibition will feature wood materials, structural timber, lumber, assembly systems, and solutions for logistics and storage. Discover groundbreaking innovations shaping the future of the wood industry.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Explore the latest technologies in wood processing and furniture manufacturing.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Participate in conferences led by experts in the field of wood and furniture technologies.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2027\\\/03\\\/02\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2027\\\/03\\\/04\",\"fair_date_end_hour\":null,\"fair_edition\":\"6\",\"fair_visitors\":\"10833\",\"fair_exhibitors\":\"168\",\"fair_countries\":\"29\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2026\\\",\\\"fair_visitors_current\\\":\\\"12043\\\",\\\"fair_foreign_current\\\":\\\"612\\\",\\\"fair_exhibitors_current\\\":\\\"182\\\",\\\"fair_countries_current\\\":\\\"31\\\",\\\"fair_area_current\\\":\\\"27000\\\",\\\"fair_year_previous\\\":\\\"2025\\\",\\\"fair_visitors_previous\\\":\\\"10833\\\",\\\"fair_foreign_previous\\\":\\\"518\\\",\\\"fair_exhibitors_previous\\\":\\\"168\\\",\\\"fair_countries_previous\\\":\\\"29\\\",\\\"fair_area_previous\\\":\\\"25000\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/WoodTechWarsawExpo\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/woodtechwarsawexpo\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/wood-tech-warsaw-expo\\\/\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/playlist?list=PL0uv62TZgbz_qjvsF8PB0X6RJu-TobT7P\",\"fair_color_accent\":\"#472D0D\",\"fair_color_main2\":\"#f6b300\",\"fair_hall\":\"D, C3,C4\",\"fair_area\":\"25000\",\"fair_kw\":\"2256\",\"fair_badge\":\"wood\",\"fair_domain\":\"woodwarsawexpo.com\",\"fair_shop\":\"{\\\"products\\\":{\\\"smycze\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"logotyp\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-planu\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"vip-room\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-restauracji\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wieczoru\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-vip-gold\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wkladki-reklamowej\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"lokowanie-w-sms\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"post-promocyjny\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-publikacji\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zdjecia-stoiska\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wideo-promocyjne\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"relacja\\\":{\\\"prod_price_pl\\\":\\\"1000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wywiad\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wspoltworzony-post\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"hostessa\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-przestrzeni\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"roll-up-winder\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zaproszenie-w-wysy\\u0142ce\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-24x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-15x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-6x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"stand-reklamowy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"materialy-reklamowe\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-wzmianka\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"naklejka-podlogowa\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"komunikat-w-radiowezle\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-barierkach\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flagobaner\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flaga-na-maszcie\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"pozycjonowanie-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"1000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"skaner-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"1000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"240\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-wieczor-branzowy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false}},\\\"options\\\":{\\\"margin\\\":\\\"\\\"}}\",\"fair_group\":\"gr2\",\"category_pl\":\"Budownictwo, Przemys\\u0142\",\"category_en\":\"Construction, Industry\",\"konf_name\":\"Woodworking Technology Conference\",\"konf_title_pl\":\"Konferencja Bran\\u017cy Obr\\u00f3bki Drewna\",\"konf_title_en\":\"Woodworking Industry Conference\",\"fair_kw_new\":\"77\",\"fair_kw_old_arch\":\"2027-2256;2026-1695;2024-722;2023-516;2025-1104;2022-323;\",\"fair_kw_new_arch\":\"2026-77;\",\"fair_entrance\":null},{\"id\":\"178\",\"fair_name_pl\":\"Warsaw HVAC Expo\",\"fair_name_en\":\"Warsaw HVAC Expo\",\"fair_desc_pl\":\"Mi\\u0119dzynarodowe Targi HVAC\",\"fair_desc_en\":\"International HVAC Trade Fair\",\"fair_short_desc_pl\":\"Targi HVAC\",\"fair_short_desc_en\":\"HVAC Trade Fair\",\"fair_full_desc_pl\":\"<strong>Warsaw HVAC Expo<\\\/strong> to kluczowe wydarzenie bran\\u017cowe, prezentuj\\u0105ce technologie ogrzewania, wentylacji i klimatyzacji. Zaprezentowane zostan\\u0105 pompy ciep\\u0142a, systemy automatyzacji, filtry powietrza oraz energooszcz\\u0119dne rozwi\\u0105zania. Odkryj innowacje w projektowaniu system\\u00f3w, izolacji i us\\u0142ugach serwisowych dla bran\\u017cy HVAC.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Poznaj nowoczesne technologie w ogrzewaniu, wentylacji i klimatyzacji.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach ekspert\\u00f3w w dziedzinie system\\u00f3w HVAC.\\r\\n<br><br><strong>Nawi\\u0105\\u017c relacje:<\\\/strong> Spotkaj lider\\u00f3w bran\\u017cy, nawi\\u0105\\u017c cenne kontakty i zwi\\u0119ksz przewag\\u0119 konkurencyjn\\u0105 na rynku.\",\"fair_full_desc_en\":\"<strong>Warsaw HVAC Expo<\\\/strong> is a key industry event that presents cutting-edge heating, ventilation, and air conditioning technologies. It will feature heat pumps, automation systems, air filters, and energy-efficient solutions. Explore groundbreaking innovations in system design, insulation, and comprehensive HVAC services.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover modern technologies in heating, ventilation, and air conditioning.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Participate in conferences led by experts in the field of HVAC systems.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2027\\\/02\\\/23\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2027\\\/02\\\/25\",\"fair_date_end_hour\":null,\"fair_edition\":\"5\",\"fair_visitors\":\"19101\",\"fair_exhibitors\":\"403\",\"fair_countries\":\"41\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2026\\\",\\\"fair_visitors_current\\\":\\\"21010\\\",\\\"fair_foreign_current\\\":\\\"1953\\\",\\\"fair_exhibitors_current\\\":\\\"433\\\",\\\"fair_countries_current\\\":\\\"46\\\",\\\"fair_area_current\\\":\\\"60000\\\",\\\"fair_year_previous\\\":\\\"2025\\\",\\\"fair_visitors_previous\\\":\\\"19101\\\",\\\"fair_foreign_previous\\\":\\\"1776\\\",\\\"fair_exhibitors_previous\\\":\\\"403\\\",\\\"fair_countries_previous\\\":\\\"41\\\",\\\"fair_area_previous\\\":\\\"60000\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/warsawhvacexpo\\\/\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/miedzynarodowe_targi_hvac\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/warsaw-hvac-expo\\\/\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/playlist?list=PL0uv62TZgbz-bXyiTx06g9vPyxrgFJlA0\",\"fair_color_accent\":\"#5b8dc3\",\"fair_color_main2\":\"#e37b08\",\"fair_hall\":\"E, F\",\"fair_area\":\"60000\",\"fair_kw\":\"2210\",\"fair_badge\":\"hvac\",\"fair_domain\":\"warsawhvacexpo.com\",\"fair_shop\":\"{\\\"products\\\":{\\\"smycze\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"logotyp\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-planu\\\":{\\\"prod_price_pl\\\":\\\"6000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"vip-room\\\":{\\\"prod_price_pl\\\":\\\"17000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-restauracji\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wieczoru\\\":{\\\"prod_price_pl\\\":\\\"80000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-vip-gold\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wkladki-reklamowej\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"lokowanie-w-sms\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"post-promocyjny\\\":{\\\"prod_price_pl\\\":\\\"1800\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-publikacji\\\":{\\\"prod_price_pl\\\":\\\"1200\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zdjecia-stoiska\\\":{\\\"prod_price_pl\\\":\\\"1300\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wideo-promocyjne\\\":{\\\"prod_price_pl\\\":\\\"2500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"relacja\\\":{\\\"prod_price_pl\\\":\\\"700\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wywiad\\\":{\\\"prod_price_pl\\\":\\\"3500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wspoltworzony-post\\\":{\\\"prod_price_pl\\\":\\\"1300\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"hostessa\\\":{\\\"prod_price_pl\\\":\\\"1400\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-przestrzeni\\\":{\\\"prod_price_pl\\\":\\\"700\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"roll-up-winder\\\":{\\\"prod_price_pl\\\":\\\"1300\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zaproszenie-w-wysy\\u0142ce\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-24x6\\\":{\\\"prod_price_pl\\\":\\\"29000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-15x6\\\":{\\\"prod_price_pl\\\":\\\"25000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-6x6\\\":{\\\"prod_price_pl\\\":\\\"20000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"stand-reklamowy\\\":{\\\"prod_price_pl\\\":\\\"3500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"materialy-reklamowe\\\":{\\\"prod_price_pl\\\":\\\"4500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"6000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"5000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-wzmianka\\\":{\\\"prod_price_pl\\\":\\\"2500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"naklejka-podlogowa\\\":{\\\"prod_price_pl\\\":\\\"500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"komunikat-w-radiowezle\\\":{\\\"prod_price_pl\\\":\\\"700\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-barierkach\\\":{\\\"prod_price_pl\\\":\\\"1300\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flagobaner\\\":{\\\"prod_price_pl\\\":\\\"1500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flaga-na-maszcie\\\":{\\\"prod_price_pl\\\":\\\"1700\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"pozycjonowanie-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"700\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"1400\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"1800\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"skaner-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"1600\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-wieczor-branzowy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false}},\\\"options\\\":{\\\"margin\\\":\\\"\\\"}}\",\"fair_group\":\"gr3\",\"category_pl\":\"Budownictwo, Energetyka\",\"category_en\":\"Construction, Energy\",\"konf_name\":\"HVAC Innovations Summit\",\"konf_title_pl\":\"Mi\\u0119dzynarodowa konferencja bran\\u017cy HVAC\",\"konf_title_en\":\"International HVAC industry conference\",\"fair_kw_new\":\"49, 55\",\"fair_kw_old_arch\":\"2024-703;2023-573;2025-1089;2026-1659;2027-2210;\",\"fair_kw_new_arch\":\"2026-49, 55;\",\"fair_entrance\":null},{\"id\":\"194\",\"fair_name_pl\":\"SAFETY & RESCUE Expo Poland\",\"fair_name_en\":\"SAFETY & RESCUE Expo Poland\",\"fair_desc_pl\":\"Targi Technologii dla Ratownictwa, Obrony Cywilnej i Zapobiegania Sytuacjom Kryzysowym\",\"fair_desc_en\":\"Technology Trade Fair for Rescue, Civil Defense and Emergency Prevention\",\"fair_short_desc_pl\":\"Targi Technologii dla Ratownictwa i Obrony Cywilnej\",\"fair_short_desc_en\":\"Emergency and Civil Defense Technology Trade Fair\",\"fair_full_desc_pl\":\"<strong>SAFETY & RESCUE Expo Poland<\\\/strong> to kluczowe wydarzenie bran\\u017cowe, prezentuj\\u0105ce zarz\\u0105dzanie kryzysowe, technologie bezza\\u0142ogowe, sprz\\u0119t ratowniczy i systemy zabezpiecze\\u0144. Zaprezentowane zostan\\u0105 wyposa\\u017cenie ochronne, infrastruktura awaryjna i symulacje. Poznaj rozwi\\u0105zania kszta\\u0142tuj\\u0105ce przysz\\u0142o\\u015b\\u0107 bezpiecze\\u0144stwa i ratownictwa. \\r\\n\\r\\n<br><br><strong>Tw&oacute;rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Odkryj innowacje w zarz\\u0105dzaniu kryzysowym i ratownictwie.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach ekspert&oacute;w z bran\\u017cy zarz\\u0105dzania kryzysowego i technologii ratowniczych.\\r\\n<br><br><strong>Nawi\\u0105\\u017c relacje:<\\\/strong> Spotkaj lider&oacute;w bran\\u017cy, nawi\\u0105\\u017c cenne kontakty i zwi\\u0119ksz przewag\\u0119 konkurencyjn\\u0105 na rynku.\",\"fair_full_desc_en\":\"<strong>SAFETY & RESCUE Expo Poland<\\\/strong> is a key industry event presenting crisis management, unmanned technologies, rescue equipment, and advanced security systems. The event will showcase protective gear, emergency infrastructure, and innovative simulation solutions. Discover solutions shaping the future of safety and rescue.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover innovations in crisis management and rescue operations.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Join experts for insightful conferences on crisis management and rescue technologies.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2027\\\/03\\\/02\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2027\\\/03\\\/04\",\"fair_date_end_hour\":null,\"fair_edition\":\"2\",\"fair_visitors\":\"5000\",\"fair_exhibitors\":\"90\",\"fair_countries\":\"12\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2026\\\",\\\"fair_visitors_current\\\":\\\"25033\\\",\\\"fair_foreign_current\\\":\\\"2144\\\",\\\"fair_exhibitors_current\\\":\\\"362\\\",\\\"fair_countries_current\\\":\\\"52\\\",\\\"fair_area_current\\\":\\\"60000\\\",\\\"fair_year_previous\\\":\\\"\\\",\\\"fair_visitors_previous\\\":\\\"0\\\",\\\"fair_foreign_previous\\\":\\\"0\\\",\\\"fair_exhibitors_previous\\\":\\\"0\\\",\\\"fair_countries_previous\\\":\\\"0\\\",\\\"fair_area_previous\\\":\\\"0\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/safety.rescue.expo\\\/\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/safety_rescue_warsaw\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/safety-rescue-expo-poland\\\/\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/@ptakwarsawexpo2557\",\"fair_color_accent\":\"#7a92a7\",\"fair_color_main2\":\"#d03c39\",\"fair_hall\":\"C1, C2\",\"fair_area\":\"15000\",\"fair_kw\":\"2225\",\"fair_badge\":\"safetyrescue\",\"fair_domain\":\"safetyrescueexpo.com\",\"fair_shop\":\"{\\\"products\\\":{\\\"smycze\\\":{\\\"prod_price_pl\\\":\\\"15000\\\",\\\"prod_price_desc_pl\\\":\\\"netto\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"3572\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"logotyp\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-planu\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"vip-room\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-restauracji\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wieczoru\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-vip-gold\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wkladki-reklamowej\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"lokowanie-w-sms\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"post-promocyjny\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-publikacji\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zdjecia-stoiska\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wideo-promocyjne\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"relacja\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wywiad\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wspoltworzony-post\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"hostessa\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-przestrzeni\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"roll-up-winder\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zaproszenie-w-wysy\\u0142ce\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-24x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-15x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-6x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"stand-reklamowy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"materialy-reklamowe\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-wzmianka\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"naklejka-podlogowa\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"komunikat-w-radiowezle\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-barierkach\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flagobaner\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flaga-na-maszcie\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"pozycjonowanie-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"skaner-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-wieczor-branzowy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false}},\\\"options\\\":{\\\"margin\\\":\\\"\\\"}}\",\"fair_group\":\"gr2\",\"category_pl\":\"Medycyna\",\"category_en\":\"Medical\",\"konf_name\":\"Crisis & Safety Forum\",\"konf_title_pl\":\"Bran\\u017cowa Konferencja Technologii dla Ratownictwa, Obrony Cywilnej i Zapobiegania Sytuacjom Kryzysowym\",\"konf_title_en\":\"Industry Conference on Technologies for Rescue, Civil Defense and Emergency Prevention\",\"fair_kw_new\":\"60\",\"fair_kw_old_arch\":\"2026-1473;2027-2225;\",\"fair_kw_new_arch\":\"2026-60;\",\"fair_entrance\":null},{\"id\":\"200\",\"fair_name_pl\":\"ISOLTEX\",\"fair_name_en\":\"ISOLTEX\",\"fair_desc_pl\":\"Targi Technologii Izolacyjnych dla Przemys\\u0142u\",\"fair_desc_en\":\"Industrial Insulation Technology Trade Fair\",\"fair_short_desc_pl\":\"Targi Technologii Izolacyjnych dla Przemys\\u0142u\",\"fair_short_desc_en\":\"Industrial Insulation Technologies Trade Fair\",\"fair_full_desc_pl\":\"<strong>ISOLTEX<\\\/strong> to kluczowe wydarzenie bran\\u017cowe, prezentuj\\u0105ce technologie izolacji termicznej, akustycznej, przeciwwilgociowej i ognioodpornej. Znajdziesz tu innowacje w ekologicznych materia\\u0142ach, systemach monta\\u017cowych, recyklingu oraz projektowaniu izolacji. Odkryj przysz\\u0142o\\u015b\\u0107 zr\\u00f3wnowa\\u017conych rozwi\\u0105za\\u0144 dla przemys\\u0142u i budownictwa.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Odkryj innowacyjne rozwi\\u0105zania w izolacjach termicznych i akustycznych.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach ekspert\\u00f3w z bran\\u017cy izolacji i zr\\u00f3wnowa\\u017conych materia\\u0142\\u00f3w budowlanych.\\r\\n<br><br><strong>Nawi\\u0105\\u017c relacje:<\\\/strong> Spotkaj lider\\u00f3w bran\\u017cy, nawi\\u0105\\u017c cenne kontakty i zwi\\u0119ksz przewag\\u0119 konkurencyjn\\u0105 na rynku.\",\"fair_full_desc_en\":\"<strong>ISOLTEX<\\\/strong> is a key industry event presenting technologies for thermal, acoustic, moisture, and fire insulation. The exhibition will feature innovations in eco-friendly materials, installation systems, recycling solutions, and insulation design. Discover the future of sustainable solutions for construction and industry.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover innovative solutions in thermal and acoustic insulation.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Join experts for insightful conferences on insulation and sustainable construction materials.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2027\\\/02\\\/23\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2027\\\/02\\\/25\",\"fair_date_end_hour\":null,\"fair_edition\":\"2\",\"fair_visitors\":\"5000\",\"fair_exhibitors\":\"70\",\"fair_countries\":\"8\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2026\\\",\\\"fair_visitors_current\\\":\\\"2071\\\",\\\"fair_foreign_current\\\":\\\"107\\\",\\\"fair_exhibitors_current\\\":\\\"61\\\",\\\"fair_countries_current\\\":\\\"27\\\",\\\"fair_area_current\\\":\\\"15000\\\",\\\"fair_year_previous\\\":\\\"\\\",\\\"fair_visitors_previous\\\":\\\"0\\\",\\\"fair_foreign_previous\\\":\\\"0\\\",\\\"fair_exhibitors_previous\\\":\\\"0\\\",\\\"fair_countries_previous\\\":\\\"0\\\",\\\"fair_area_previous\\\":\\\"0\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/TargiIsoltex\\\/\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/isoltex_expo\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/isoltex-targi\\\/\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/@ptakwarsawexpo2557\\\/featured\",\"fair_color_accent\":\"#514236\",\"fair_color_main2\":\"#424b54\",\"fair_hall\":\"C1, C2\",\"fair_area\":\"15000\",\"fair_kw\":\"2216\",\"fair_badge\":\"isoltex\",\"fair_domain\":\"isoltexexpo.com\",\"fair_shop\":null,\"fair_group\":\"gr2\",\"category_pl\":\"Przemys\\u0142\",\"category_en\":\"Industry\",\"konf_name\":\"Insulation Tech Conference\",\"konf_title_pl\":\"Konferencja Bran\\u017cy Technologii Izolacyjnych dla Przemys\\u0142u\",\"konf_title_en\":\"Insulation Technology Industry Conference\",\"fair_kw_new\":\"57\",\"fair_kw_old_arch\":\"2026-1245;2027-2216;\",\"fair_kw_new_arch\":\"2026-57;\",\"fair_entrance\":null},{\"id\":\"207\",\"fair_name_pl\":\"Concrete Expo\",\"fair_name_en\":\"Concrete Expo\",\"fair_desc_pl\":\"Targi Technologii i Zastosowa\\u0144 Betonu w Przemy\\u015ble i Budownictwie\",\"fair_desc_en\":\"Trade Fair for Concrete Technology and Applications in Industry and Construction\",\"fair_short_desc_pl\":\"Targi Technologii Betonu w Przemy\\u015ble i Budownictwie\",\"fair_short_desc_en\":\"Concrete Technologies in Industry and Construction Trade Fair\",\"fair_full_desc_pl\":\"<strong>Concrete Expo<\\\/strong> to wydarzenie skupiaj\\u0105ce najnowsze technologie produkcji i obr\\u00f3bki betonu. Prezentujemy maszyny i urz\\u0105dzenia do prefabrykacji, transportu oraz mieszania betonu, a tak\\u017ce innowacyjne rozwi\\u0105zania w zbrojeniu, chemii budowlanej i konstrukcjach betonowych. Odkryj nowoczesne materia\\u0142y oraz systemy wzmacniania i izolacji.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Poznaj innowacyjne technologie produkcji i obr\\u00f3bki betonu.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach ekspert\\u00f3w z bran\\u017cy betonu i technologii budowlanych.\\r\\n<br><br><strong>Nawi\\u0105\\u017c relacje:<\\\/strong> Spotkaj lider\\u00f3w bran\\u017cy, nawi\\u0105\\u017c cenne kontakty i zwi\\u0119ksz przewag\\u0119 konkurencyjn\\u0105 na rynku.\",\"fair_full_desc_en\":\"<strong>Concrete Expo<\\\/strong> is an event focused on the latest technologies in concrete production and processing. It showcases machines and equipment for precast production, transport, and mixing, as well as innovative solutions in reinforcement, construction chemicals, and concrete structures. Discover modern materials and insulation solutions.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover innovative technologies for concrete production and processing.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Join experts for insightful conferences on concrete and construction technologies.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2027\\\/02\\\/16\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2027\\\/02\\\/18\",\"fair_date_end_hour\":null,\"fair_edition\":\"3\",\"fair_visitors\":\"3249\",\"fair_exhibitors\":\"53\",\"fair_countries\":\"15\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2026\\\",\\\"fair_visitors_current\\\":\\\"3580\\\",\\\"fair_foreign_current\\\":\\\"304\\\",\\\"fair_exhibitors_current\\\":\\\"67\\\",\\\"fair_countries_current\\\":\\\"22\\\",\\\"fair_area_current\\\":\\\"15000\\\",\\\"fair_year_previous\\\":\\\"2025\\\",\\\"fair_visitors_previous\\\":\\\"3249\\\",\\\"fair_foreign_previous\\\":\\\"289\\\",\\\"fair_exhibitors_previous\\\":\\\"53\\\",\\\"fair_countries_previous\\\":\\\"15\\\",\\\"fair_area_previous\\\":\\\"15000\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/ConcreteExpo\\\/\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/concreteexpo\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/warsaw-concrete-expo\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/watch?v=KVFVz1XSe3g\",\"fair_color_accent\":\"#063444\",\"fair_color_main2\":\"#ff8201\",\"fair_hall\":\"C1, C2\",\"fair_area\":\"15000\",\"fair_kw\":\"2197\",\"fair_badge\":\"concrete\",\"fair_domain\":\"concreteexpo.pl\",\"fair_shop\":\"{\\\"products\\\":{\\\"smycze\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"logotyp\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-planu\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"vip-room\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-restauracji\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wieczoru\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-vip-gold\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wkladki-reklamowej\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"lokowanie-w-sms\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"post-promocyjny\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-publikacji\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zdjecia-stoiska\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wideo-promocyjne\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"relacja\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wywiad\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wspoltworzony-post\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"hostessa\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-przestrzeni\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"roll-up-winder\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zaproszenie-w-wysy\\u0142ce\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-24x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-15x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-6x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"stand-reklamowy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"materialy-reklamowe\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-wzmianka\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"naklejka-podlogowa\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"komunikat-w-radiowezle\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-barierkach\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flagobaner\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flaga-na-maszcie\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"pozycjonowanie-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"skaner-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"1000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"240\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-wieczor-branzowy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false}},\\\"options\\\":{\\\"margin\\\":\\\"\\\"}}\",\"fair_group\":\"gr2\",\"category_pl\":\"Przemys\\u0142\",\"category_en\":\"Industry\",\"konf_name\":\"Concrete Tech Forum\",\"konf_title_pl\":\"Kongres Technologii i Zastosowa\\u0144 Betonu w Przemy\\u015ble i Budownictwie\",\"konf_title_en\":\"Congress of Concrete Technology and Applications in Industry and Construction\",\"fair_kw_new\":\"56\",\"fair_kw_old_arch\":\"2025-1325;2026-1857;2027-2197\",\"fair_kw_new_arch\":\"2026-56;\",\"fair_entrance\":null},{\"id\":\"274\",\"fair_name_pl\":\"FutureCity Expo\",\"fair_name_en\":\"FutureCity Expo\",\"fair_desc_pl\":\"Targi Inteligentnych Technologii Miejskich\",\"fair_desc_en\":\"Smart Urban Technologies Trade Fair\",\"fair_short_desc_pl\":\"Targi Inteligentnych Technologii Miejskich\",\"fair_short_desc_en\":\"Smart Urban Technologies Trade Fair\",\"fair_full_desc_pl\":\"<strong>FUTURE CITY EXPO<\\\/strong> to kompleksowe wydarzenie bran\\u017cowe po\\u015bwi\\u0119cone inteligentnym technologiom miejskim i nowoczesnym koncepcjom rozwoju miast. Targi stanowi\\u0105 interdyscyplinarn\\u0105 platform\\u0119 prezentuj\\u0105c\\u0105 innowacje w zakresie transportu publicznego, elektromobilno\\u015bci, energetyki, cyfryzacji administracji, urbanistyki i zielonej infrastruktury.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Poznaj innowacyjne technologie, rozwi\\u0105zania i koncepcje, kt\\u00f3re kszta\\u0142tuj\\u0105 przysz\\u0142o\\u015b\\u0107 miast oraz strategie zr\\u00f3wnowa\\u017conego rozwoju urbanistycznego.\\r\\n\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach i prezentacjach lider\\u00f3w bran\\u017cy, ekspert\\u00f3w smart city, urbanistyki, technologii miejskich i zr\\u00f3wnowa\\u017conego rozwoju.\\r\\n\\r\\n<br><br><strong>Nawi\\u0105\\u017c relacje:<\\\/strong> Spotkaj lider\\u00f3w bran\\u017cy, nawi\\u0105\\u017c cenne kontakty i zwi\\u0119ksz przewag\\u0119 konkurencyjn\\u0105 na rynku.\",\"fair_full_desc_en\":\"<strong>FUTURE CITY EXPO<\\\/strong> is a comprehensive industry event dedicated to smart urban technologies and modern concepts for city development. The trade fair serves as an interdisciplinary platform showcasing innovations in public transport, electromobility, energy, digital administration, urban planning, and green infrastructure.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover innovative technologies, solutions, and concepts that are shaping the future of cities and strategies for sustainable urban development.\\r\\n\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Take part in conferences and presentations by industry leaders, smart city experts, urban planners, and specialists in urban technology and sustainability.\\r\\n\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and strengthen your competitive advantage in the market.\",\"fair_date_start\":\"2027\\\/02\\\/09\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2027\\\/02\\\/11\",\"fair_date_end_hour\":null,\"fair_edition\":\"1\",\"fair_visitors\":\"5000\",\"fair_exhibitors\":\"90\",\"fair_countries\":\"12\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"\\\",\\\"fair_visitors_current\\\":\\\"5000\\\",\\\"fair_foreign_current\\\":\\\"400\\\",\\\"fair_exhibitors_current\\\":\\\"90\\\",\\\"fair_countries_current\\\":\\\"12\\\",\\\"fair_area_current\\\":\\\"15000\\\",\\\"fair_year_previous\\\":\\\"\\\",\\\"fair_visitors_previous\\\":\\\"0\\\",\\\"fair_foreign_previous\\\":\\\"0\\\",\\\"fair_exhibitors_previous\\\":\\\"0\\\",\\\"fair_countries_previous\\\":\\\"0\\\",\\\"fair_area_previous\\\":\\\"0\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/futurecityexpo\\\/\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/futurecityexpo\\\/\",\"fair_linkedin\":null,\"fair_youtube\":null,\"fair_color_accent\":\"#101938\",\"fair_color_main2\":\"#323232\",\"fair_hall\":\"A1, A2\",\"fair_area\":\"15000\",\"fair_kw\":\"1964\",\"fair_badge\":\"futurecity\",\"fair_domain\":\"futurecityexpo.pl\",\"fair_shop\":null,\"fair_group\":\"gr1\",\"category_pl\":\"Inne\",\"category_en\":\"Other\",\"konf_name\":\"Smart Metropolis Forum\",\"konf_title_pl\":\"Kongres Inteligentnych Technologii Miejskich\",\"konf_title_en\":\"Smart Urban Technologies Congress\",\"fair_kw_new\":null,\"fair_kw_old_arch\":null,\"fair_kw_new_arch\":null,\"fair_entrance\":null},{\"id\":\"276\",\"fair_name_pl\":\"URBAN GreenTech Expo\",\"fair_name_en\":\"URBAN GreenTech Expo\",\"fair_desc_pl\":\"Targi Urz\\u0105dze\\u0144 i Technologii do Utrzymania Zielonych Teren\\u00f3w Miejskich\",\"fair_desc_en\":\"Trade Fair of Equipment and Technologies for the Maintenance of Urban Green Areas\",\"fair_short_desc_pl\":\"Targi Utrzymania Teren\\u00f3w Zielonych\",\"fair_short_desc_en\":\"Green Area Maintenance Trade Fair\",\"fair_full_desc_pl\":\"<strong>URBAN GreenTech Expo<\\\/strong> to jedyne w Polsce specjalistyczne targi bran\\u017cowe prezentuj\\u0105ce sprz\\u0119t i technologie do utrzymania\\r\\nteren\\u00f3w zielonych w miastach. Znajdziesz tu autonomiczne kosiarki, sprz\\u0119t do utrzymania park\\u00f3w, inteligentne systemy nawadniania\\r\\ni retencji wody, modu\\u0142owe dachy oraz fasady zielone, rozwi\\u0105zania smart do monitoringu ro\\u015blinno\\u015bci, a tak\\u017ce oprogramowanie GIS i IoT\\r\\nwspieraj\\u0105ce zr\\u00f3wnowa\\u017cone zarz\\u0105dzanie przestrzeni\\u0105.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Poznaj innowacje w piel\\u0119gnacji zieleni, gospodarce komunalnej i urbangreen\\u2011tech.\\r\\n\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach ekspert\\u00f3w od architektury krajobrazu, klimatycznej adaptacji oraz inteligentnych miast.\\r\\n\\r\\n<br><br><strong>Nawi\\u0105\\u017c relacje:<\\\/strong> Spotkaj lider\\u00f3w bran\\u017cy, nawi\\u0105\\u017c cenne kontakty i zwi\\u0119ksz przewag\\u0119 konkurencyjn\\u0105 na rynku.\",\"fair_full_desc_en\":\"<strong>URBAN GreenTech Expo<\\\/strong> is the only specialized trade fair in Poland showcasing equipment and technologies for maintaining green urban spaces. Here you'll find autonomous mowers, park maintenance machinery, intelligent irrigation and water retention systems, modular green roofs and facades, smart vegetation monitoring solutions, as well as GIS and IoT software for sustainable space management.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover innovations in green area maintenance, municipal services, and urban green-tech.\\r\\n\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Take part in expert conferences on landscape architecture, climate adaptation, and smart cities.\\r\\n\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, make valuable contacts, and boost your competitive edge in the market.\",\"fair_date_start\":\"2027\\\/02\\\/09\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2027\\\/02\\\/11\",\"fair_date_end_hour\":null,\"fair_edition\":\"1\",\"fair_visitors\":\"5000\",\"fair_exhibitors\":\"90\",\"fair_countries\":\"12\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"\\\",\\\"fair_visitors_current\\\":\\\"5000\\\",\\\"fair_foreign_current\\\":\\\"400\\\",\\\"fair_exhibitors_current\\\":\\\"90\\\",\\\"fair_countries_current\\\":\\\"12\\\",\\\"fair_area_current\\\":\\\"15000\\\",\\\"fair_year_previous\\\":\\\"\\\",\\\"fair_visitors_previous\\\":\\\"0\\\",\\\"fair_foreign_previous\\\":\\\"0\\\",\\\"fair_exhibitors_previous\\\":\\\"0\\\",\\\"fair_countries_previous\\\":\\\"0\\\",\\\"fair_area_previous\\\":\\\"0\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/urbangreentechexpo\\\/\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/urbangreentechexpo\\\/\",\"fair_linkedin\":null,\"fair_youtube\":null,\"fair_color_accent\":\"#092514\",\"fair_color_main2\":\"#222222\",\"fair_hall\":\"D1, D2\",\"fair_area\":\"15000\",\"fair_kw\":\"1908\",\"fair_badge\":\"urbangreen\",\"fair_domain\":\"urbangreentechexpo.com\",\"fair_shop\":null,\"fair_group\":\"gr1\",\"category_pl\":\"Inne\",\"category_en\":\"Other\",\"konf_name\":\"Urban GreenTech Summit\",\"konf_title_pl\":\"Konferencja Urz\\u0105dze\\u0144 i Technologii do Utrzymania Zielonych Teren\\u00f3w Miejskich\",\"konf_title_en\":\"Conference on Equipment and Technologies for Urban Green Space Maintenance\",\"fair_kw_new\":\"52\",\"fair_kw_old_arch\":null,\"fair_kw_new_arch\":null,\"fair_entrance\":null},{\"id\":\"281\",\"fair_name_pl\":\"Modular & Prefab Expo\",\"fair_name_en\":\"Modular & Prefab Expo\",\"fair_desc_pl\":\"Targi Technologii Budownictwa Modu\\u0142owego i Materia\\u0142\\u00f3w Prefabrykowanych\",\"fair_desc_en\":\"Trade Fair for Modular Construction Technology and Prefabricated Materials\",\"fair_short_desc_pl\":\"Targi Budownictwa Modu\\u0142owego i Prefabrykat\\u00f3w\",\"fair_short_desc_en\":\"Modular Construction and Prefabrication Trade Fair\",\"fair_full_desc_pl\":\"<strong>MODULAR & PREFAB EXPO<\\\/strong> to kompleksowe wydarzenie bran\\u017cowe po\\u015bwi\\u0119cone technologiom prefabrykacji i budownictwa modu\\u0142owego. Targi stanowi\\u0105 interdyscyplinarn\\u0105 platform\\u0119 prezentuj\\u0105c\\u0105 innowacje w zakresie konstrukcji drewnianych, dom\\u00f3w modu\\u0142owych i szkieletowych, nowoczesnych materia\\u0142\\u00f3w budowlanych, maszyn produkcyjnych, instalacji oraz zr\\u00f3wnowa\\u017conych rozwi\\u0105za\\u0144 dla sektora budowlanego.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Poznaj innowacyjne technologie i rozwi\\u0105zania, kt\\u00f3re kszta\\u0142tuj\\u0105 przysz\\u0142o\\u015b\\u0107 prefabrykacji i budownictwa modu\\u0142owego.\\r\\n\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach ekspert\\u00f3w prefabrykacji, budownictwa modu\\u0142owego, i innowacyjnych technologii.\\u201d\\r\\n\\r\\n<br><br><strong>Nawi\\u0105\\u017c relacje:<\\\/strong> Spotkaj lider\\u00f3w bran\\u017cy, nawi\\u0105\\u017c cenne kontakty i zwi\\u0119ksz przewag\\u0119 konkurencyjn\\u0105 na rynku.\",\"fair_full_desc_en\":\"<strong>MODULAR & PREFAB EXPO<\\\/strong> is a comprehensive industry event dedicated to prefabrication technologies and modular construction. The trade fair serves as an interdisciplinary platform showcasing innovations in timber structures, modular and timber-frame houses, modern building materials, production machinery, installations, and sustainable solutions for the construction sector.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover innovative technologies and solutions that are shaping the future of prefabrication and modular construction.\\r\\n\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Take part in conferences with experts in prefabrication, modular construction, and innovative technologies.\\r\\n\\r\\n<br><br><strong>Build relationships:<\\\/strong> Meet industry leaders, establish valuable connections, and gain a competitive advantage in the market.\",\"fair_date_start\":\"2027\\\/03\\\/02\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2027\\\/03\\\/04\",\"fair_date_end_hour\":null,\"fair_edition\":\"2\",\"fair_visitors\":\"5000\",\"fair_exhibitors\":\"90\",\"fair_countries\":\"12\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2026\\\",\\\"fair_visitors_current\\\":\\\"3902\\\",\\\"fair_foreign_current\\\":\\\"230\\\",\\\"fair_exhibitors_current\\\":\\\"53\\\",\\\"fair_countries_current\\\":\\\"31\\\",\\\"fair_area_current\\\":\\\"10000\\\",\\\"fair_year_previous\\\":\\\"\\\",\\\"fair_visitors_previous\\\":\\\"0\\\",\\\"fair_foreign_previous\\\":\\\"0\\\",\\\"fair_exhibitors_previous\\\":\\\"0\\\",\\\"fair_countries_previous\\\":\\\"0\\\",\\\"fair_area_previous\\\":\\\"0\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/modularprefabexpo\\\/\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/modular_prefab_expo\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/modular-prefab-expo\",\"fair_youtube\":null,\"fair_color_accent\":\"#343428\",\"fair_color_main2\":\"#fe8302\",\"fair_hall\":\"C1, C2\",\"fair_area\":\"15000\",\"fair_kw\":\"2253\",\"fair_badge\":\"modularprefabe\",\"fair_domain\":\"modularprefabexpopoland.com\",\"fair_shop\":null,\"fair_group\":\"gr2\",\"category_pl\":\"Budownictwo\",\"category_en\":\"Construction\",\"konf_name\":\"Modular & Prefab Construction Forum\",\"konf_title_pl\":\"Konferencja Technologii Budownictwa Modu\\u0142owego i Materia\\u0142\\u00f3w Prefabrykowanych\",\"konf_title_en\":\"Conference on Modular Construction Technologies and Prefabricated Materials\",\"fair_kw_new\":\"64\",\"fair_kw_old_arch\":\"2026-1959;2027-2253\",\"fair_kw_new_arch\":\"2026-64\",\"fair_entrance\":null},{\"id\":\"288\",\"fair_name_pl\":\"Gun & Shooting Expo\",\"fair_name_en\":\"Gun & Shooting Expo\",\"fair_desc_pl\":\"Targi broni cywilnej, akcesori\\u00f3w i bezpiecze\\u0144stwa osobistego\",\"fair_desc_en\":\"Trade Fair of Civilian Firearms, Accessories and Personal Security\",\"fair_short_desc_pl\":\"Targi broni cywilnej i bezpiecze\\u0144stwa\",\"fair_short_desc_en\":\"Trade Fair of Civilian Firearms and Security\",\"fair_full_desc_pl\":\"<strong>Gun & Shooting Expo<\\\/strong> to kompleksowe wydarzenie bran\\u017cowe po\\u015bwi\\u0119cone sprz\\u0119towi i technologiom dla legalnego rynku broni cywilnej. Targi gromadz\\u0105 producent\\u00f3w, dystrybutor\\u00f3w, operator\\u00f3w strzelnic oraz pasjonat\\u00f3w, prezentuj\\u0105c bro\\u0144 i optyk\\u0119, amunicj\\u0119 i komponenty, akcesoria, sejfy S1, systemy zabezpiecze\\u0144, trena\\u017cery VR i laserowe, oprogramowanie oraz odzie\\u017c ochronn\\u0105.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy: <\\\/strong> Sprawd\\u017a swoje mo\\u017cliwo\\u015bci na profesjonalnych symulatorach, poznaj techniki analizy strza\\u0142u i skorzystaj z wiedzy trener\\u00f3w oraz instruktor\\u00f3w.\\r\\n\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w prezentacjach ekspert\\u00f3w zajmuj\\u0105cych si\\u0119 bezpiecze\\u0144stwem, przepisami oraz odpowiedzialnym u\\u017cytkowaniem broni.\\r\\n\\r\\n<br><br><strong>Nawi\\u0105\\u017c relacje:<\\\/strong> Spotkaj producent\\u00f3w, dystrybutor\\u00f3w i operator\\u00f3w strzelnic, aby nawi\\u0105za\\u0107 warto\\u015bciowe kontakty i rozwija\\u0107 projekty szybciej.\",\"fair_full_desc_en\":\"<strong>Gun & Shooting Expo<\\\/strong> is a comprehensive industry event dedicated to equipment and technologies for the legal civilian firearms market. The fair brings together manufacturers, distributors, shooting range operators, and enthusiasts, presenting firearms and optics, ammunition and components, accessories, S1 safes, security systems, VR and laser trainers, software, and protective gear.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Test yourself on professional simulators, explore shot analysis techniques, and learn from trainers and instructors.\\r\\n\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Take part in presentations by experts on safety, regulations, and responsible firearm ownership.\\r\\n\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet manufacturers, distributors, and range operators to establish valuable contacts and accelerate projects.\",\"fair_date_start\":\"2027\\\/03\\\/02\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2027\\\/03\\\/04\",\"fair_date_end_hour\":null,\"fair_edition\":\"2\",\"fair_visitors\":null,\"fair_exhibitors\":null,\"fair_countries\":null,\"estimations\":\"{\\\"fair_year_current\\\":\\\"2026\\\",\\\"fair_visitors_current\\\":\\\"25033\\\",\\\"fair_foreign_current\\\":\\\"2144\\\",\\\"fair_exhibitors_current\\\":\\\"362\\\",\\\"fair_countries_current\\\":\\\"52\\\",\\\"fair_area_current\\\":\\\"60000\\\",\\\"fair_year_previous\\\":\\\"\\\",\\\"fair_visitors_previous\\\":\\\"0\\\",\\\"fair_foreign_previous\\\":\\\"0\\\",\\\"fair_exhibitors_previous\\\":\\\"0\\\",\\\"fair_countries_previous\\\":\\\"0\\\",\\\"fair_area_previous\\\":\\\"0\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/profile.php?id=61583525067130#\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/gun_shooting_expo\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/gun-shooting-expo\\\/\",\"fair_youtube\":null,\"fair_color_accent\":\"#9e8e64\",\"fair_color_main2\":\"#2b4a38\",\"fair_hall\":\"B1, B2\",\"fair_area\":null,\"fair_kw\":\"2207\",\"fair_badge\":\"gunshot\",\"fair_domain\":\"gunshootingexpo.com\",\"fair_shop\":\"{\\\"products\\\":{\\\"smycze\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"logotyp\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-planu\\\":{\\\"prod_price_pl\\\":\\\"5500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"vip-room\\\":{\\\"prod_price_pl\\\":\\\"17000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-restauracji\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wieczoru\\\":{\\\"prod_price_pl\\\":\\\"70000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-vip-gold\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wkladki-reklamowej\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"lokowanie-w-sms\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"post-promocyjny\\\":{\\\"prod_price_pl\\\":\\\"1800\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-publikacji\\\":{\\\"prod_price_pl\\\":\\\"1300\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zdjecia-stoiska\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wideo-promocyjne\\\":{\\\"prod_price_pl\\\":\\\"2500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"relacja\\\":{\\\"prod_price_pl\\\":\\\"700\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wywiad\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wspoltworzony-post\\\":{\\\"prod_price_pl\\\":\\\"1500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"hostessa\\\":{\\\"prod_price_pl\\\":\\\"1200\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-przestrzeni\\\":{\\\"prod_price_pl\\\":\\\"700\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"roll-up-winder\\\":{\\\"prod_price_pl\\\":\\\"1200\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zaproszenie-w-wysy\\u0142ce\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-24x6\\\":{\\\"prod_price_pl\\\":\\\"27000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-15x6\\\":{\\\"prod_price_pl\\\":\\\"24000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-6x6\\\":{\\\"prod_price_pl\\\":\\\"18000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"stand-reklamowy\\\":{\\\"prod_price_pl\\\":\\\"3500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"materialy-reklamowe\\\":{\\\"prod_price_pl\\\":\\\"4000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"6000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"5000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-wzmianka\\\":{\\\"prod_price_pl\\\":\\\"2000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"naklejka-podlogowa\\\":{\\\"prod_price_pl\\\":\\\"450\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"komunikat-w-radiowezle\\\":{\\\"prod_price_pl\\\":\\\"600\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-barierkach\\\":{\\\"prod_price_pl\\\":\\\"1200\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flagobaner\\\":{\\\"prod_price_pl\\\":\\\"1300\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flaga-na-maszcie\\\":{\\\"prod_price_pl\\\":\\\"1400\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"pozycjonowanie-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"600\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"1500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"2000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"skaner-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"650\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false}},\\\"options\\\":{\\\"margin\\\":\\\"\\\"}}\",\"fair_group\":\"gr2\",\"category_pl\":\"Inne\",\"category_en\":\"Other\",\"konf_name\":\"International Security & Firearms Forum\",\"konf_title_pl\":\"Konferencja broni cywilnej, akcesori\\u00f3w i bezpiecze\\u0144stwa osobistego\",\"konf_title_en\":\"Conference on Civilian Firearms, Accessories, and Personal Security\",\"fair_kw_new\":\"66\",\"fair_kw_old_arch\":\"2026-2003;2027-2207\",\"fair_kw_new_arch\":\"2026- 66;\",\"fair_entrance\":null},{\"id\":\"292\",\"fair_name_pl\":\"Eco World Poland\",\"fair_name_en\":\"Eco World Poland\",\"fair_desc_pl\":\"Bran\\u017cowe Targi Technologii Ochrony \\u015arodowiska\",\"fair_desc_en\":\"Environmental Protection Technology Trade Fair\",\"fair_short_desc_pl\":\"Targi Ochrony \\u015arodowiska\",\"fair_short_desc_en\":\"Environmental Protection Trade Fair\",\"fair_full_desc_pl\":\"<strong>ECO WORLD POLAND<\\\/strong> to targi dedykowane technologiom ochrony \\u015brodowiska, recyklingowi, jako\\u015bci powietrza, wody i energii oraz zr\\u00f3wnowa\\u017conej transformacji gospodarki. Wydarzenie prezentuje innowacyjne rozwi\\u0105zania w zakresie gospodarki obiegu zamkni\\u0119tego, przetwarzania odpad\\u00f3w komunalnych, termicznego przekszta\\u0142cania i recyklingu ZSEE. Nie zabraknie tak\\u017ce temat\\u00f3w zwi\\u0105zanych z biogazem, ochron\\u0105 klimatu, Smart City i gospodark\\u0105 wodno-\\u015bciekow\\u0105.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Poznaj nowoczesne technologie dla bran\\u017cy \\u015brodowiskowej \\u2013 od automatyzacji i sortowania po monitoring emisji, ESG, finansowanie i gospodark\\u0119 cyrkularn\\u0105.\\r\\n\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach z udzia\\u0142em ekspert\\u00f3w w dziedzinie ochrony \\u015brodowiska, recyklingu, gospodarki obiegu zamkni\\u0119tego.\\r\\n\\r\\n<br><br><strong>Nawi\\u0105\\u017c relacje:<\\\/strong> Spotkaj producent\\u00f3w, dostawc\\u00f3w i lider\\u00f3w rynku uszczelnie\\u0144, nawi\\u0105\\u017c cenne kontakty i rozwijaj swoj\\u0105 przewag\\u0119 konkurencyjn\\u0105.\",\"fair_full_desc_en\":\"<strong>ECO WORLD POLAND<\\\/strong> is a trade fair dedicated to environmental protection technologies, recycling, air, water and energy quality, and the sustainable transformation of the economy. The event showcases innovative solutions in circular economy, municipal waste processing, thermal conversion, and WEEE recycling. Topics will also include biogas, climate protection, Smart City, and water and sewage management.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover cutting-edge technologies for the environmental sector \\u2013 from automation and sorting to emission monitoring, ESG, financing, and the circular economy.\\r\\n\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Take part in conferences featuring experts in environmental protection, recycling, and the circular economy.\\r\\n\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet manufacturers, suppliers, and market leaders, establish valuable contacts, and strengthen your competitive edge.\",\"fair_date_start\":\"2027\\\/02\\\/09\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2027\\\/02\\\/11\",\"fair_date_end_hour\":null,\"fair_edition\":\"1\",\"fair_visitors\":null,\"fair_exhibitors\":null,\"fair_countries\":null,\"estimations\":\"{\\\"fair_year_current\\\":\\\"2025\\\",\\\"fair_visitors_current\\\":\\\"5000\\\",\\\"fair_foreign_current\\\":\\\"400\\\",\\\"fair_exhibitors_current\\\":\\\"90\\\",\\\"fair_countries_current\\\":\\\"12\\\",\\\"fair_area_current\\\":\\\"15000\\\",\\\"fair_year_previous\\\":\\\"\\\",\\\"fair_visitors_previous\\\":\\\"0\\\",\\\"fair_foreign_previous\\\":\\\"0\\\",\\\"fair_exhibitors_previous\\\":\\\"0\\\",\\\"fair_countries_previous\\\":\\\"0\\\",\\\"fair_area_previous\\\":\\\"0\\\"}\",\"fair_facebook\":null,\"fair_instagram\":null,\"fair_linkedin\":null,\"fair_youtube\":null,\"fair_color_accent\":\"#9da95d\",\"fair_color_main2\":\"#162922\",\"fair_hall\":null,\"fair_area\":null,\"fair_kw\":\"2049\",\"fair_badge\":\"ecoworld\",\"fair_domain\":\"ecoworldpoland.com\",\"fair_shop\":null,\"fair_group\":\"gr1\",\"category_pl\":\"Inne\",\"category_en\":\"Other\",\"konf_name\":\"Eco Innovation Forum\",\"konf_title_pl\":\"Konferencja Technologii Ochrony \\u015arodowiska\",\"konf_title_en\":\"Environmental Protection Technology Conference\",\"fair_kw_new\":null,\"fair_kw_old_arch\":null,\"fair_kw_new_arch\":null,\"fair_entrance\":null},{\"id\":\"296\",\"fair_name_pl\":\"Drone World Expo\",\"fair_name_en\":\"Drone World Expo\",\"fair_desc_pl\":\"Targi Technologii i Zastosowa\\u0144 Dron\\u00f3w i System\\u00f3w Bezza\\u0142ogowych\",\"fair_desc_en\":\"Trade Fair for Drone and Unmanned Systems Technology and Applications\",\"fair_short_desc_pl\":\"Targi Dron\\u00f3w i System\\u00f3w Bezza\\u0142ogowych\",\"fair_short_desc_en\":\"Drone and Unmanned Systems Trade Fair\",\"fair_full_desc_pl\":\"<strong>Drone World Expo<\\\/strong> to wiod\\u0105ce wydarzenie bran\\u017cowe prezentuj\\u0105ce zaawansowane technologie dronowe i bezza\\u0142ogowe systemy powietrzne. W\\u015br\\u00f3d prezentowanych rozwi\\u0105za\\u0144 znajd\\u0105 si\\u0119 drony inspekcyjne i przemys\\u0142owe, specjalistyczne jednostki dla s\\u0142u\\u017cb ratunkowych i mundurowych, precyzyjne drony geodezyjne, fotogrametryczne oraz inne specjalistyczne rozwi\\u0105zania\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Odkryj prze\\u0142omowe technologie dronowe dla przemys\\u0142u.\\r\\n\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach ekspert\\u00f3w ekspert\\u00f3w dronowych i UAS.\\r\\n\\r\\n<br><br><strong>Nawi\\u0105\\u017c relacje:<\\\/strong> Spotkaj lider\\u00f3w bran\\u017cy, nawi\\u0105\\u017c cenne kontakty i zwi\\u0119ksz przewag\\u0119 konkurencyjn\\u0105 na rynku.\",\"fair_full_desc_en\":\"<strong>Drone World Expo<\\\/strong> is a leading industry event showcasing advanced drone technologies and unmanned aerial systems. Among the presented solutions will be inspection and industrial drones, specialized units for emergency and uniformed services, precise surveying and photogrammetry drones, as well as other specialized applications.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover breakthrough drone technologies for industry.\\r\\n\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Take part in expert conferences on drones and UAS.\\r\\n\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive edge in the market.\",\"fair_date_start\":\"2027\\\/03\\\/02\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2027\\\/03\\\/04\",\"fair_date_end_hour\":null,\"fair_edition\":\"2\",\"fair_visitors\":null,\"fair_exhibitors\":null,\"fair_countries\":null,\"estimations\":\"{\\\"fair_year_current\\\":\\\"2026\\\",\\\"fair_visitors_current\\\":\\\"25033\\\",\\\"fair_foreign_current\\\":\\\"2144\\\",\\\"fair_exhibitors_current\\\":\\\"362\\\",\\\"fair_countries_current\\\":\\\"52\\\",\\\"fair_area_current\\\":\\\"60000\\\",\\\"fair_year_previous\\\":\\\"\\\",\\\"fair_visitors_previous\\\":\\\"0\\\",\\\"fair_foreign_previous\\\":\\\"0\\\",\\\"fair_exhibitors_previous\\\":\\\"0\\\",\\\"fair_countries_previous\\\":\\\"0\\\",\\\"fair_area_previous\\\":\\\"0\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/DroneTechPolandExpo\\\/\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/dronetechpolandexpo\\\/pl\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/drone-world-expo\\\/\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/@ptakwarsawexpo2557\",\"fair_color_accent\":\"#4b595c\",\"fair_color_main2\":\"#ff6b35\",\"fair_hall\":\"D1, D2\",\"fair_area\":null,\"fair_kw\":\"2229\",\"fair_badge\":\"dronetech\",\"fair_domain\":\"droneworldexpo.pl\",\"fair_shop\":null,\"fair_group\":\"gr2\",\"category_pl\":\"Przemys\\u0142\",\"category_en\":\"Industry\",\"konf_name\":\"SkyTech Intelligence Summit\",\"konf_title_pl\":\"Konferencja Technologii i Zastosowa\\u0144 Dron\\u00f3w Cywilnych i System\\u00f3w Bezza\\u0142ogowych\",\"konf_title_en\":\"Conference for Civil Drone Technologies and Applications and Unmanned Systems\",\"fair_kw_new\":\"59\",\"fair_kw_old_arch\":\"2026-1776;2027-2229;\",\"fair_kw_new_arch\":\"2026- 59;\",\"fair_entrance\":null},{\"id\":\"301\",\"fair_name_pl\":\"Warsaw Security & Defence Expo\",\"fair_name_en\":\"Warsaw Security & Defence Expo\",\"fair_desc_pl\":\"Zintegrowany blok targowy\",\"fair_desc_en\":\"Integrated trade fair block\",\"fair_short_desc_pl\":\"Zintegrowany blok targowy\",\"fair_short_desc_en\":\"Integrated trade fair block\",\"fair_full_desc_pl\":null,\"fair_full_desc_en\":null,\"fair_date_start\":\"2027\\\/03\\\/02\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2027\\\/03\\\/04\",\"fair_date_end_hour\":null,\"fair_edition\":\"2\",\"fair_visitors\":null,\"fair_exhibitors\":null,\"fair_countries\":null,\"estimations\":\"{\\\"fair_year_current\\\":\\\"2026\\\",\\\"fair_visitors_current\\\":\\\"25033\\\",\\\"fair_foreign_current\\\":\\\"2144\\\",\\\"fair_exhibitors_current\\\":\\\"362\\\",\\\"fair_countries_current\\\":\\\"52\\\",\\\"fair_area_current\\\":\\\"60000\\\",\\\"fair_year_previous\\\":\\\"\\\",\\\"fair_visitors_previous\\\":\\\"0\\\",\\\"fair_foreign_previous\\\":\\\"0\\\",\\\"fair_exhibitors_previous\\\":\\\"0\\\",\\\"fair_countries_previous\\\":\\\"0\\\",\\\"fair_area_previous\\\":\\\"0\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/WarsawDefenceSecurityExpo\\\/\",\"fair_instagram\":null,\"fair_linkedin\":null,\"fair_youtube\":null,\"fair_color_accent\":\"#135da0\",\"fair_color_main2\":\"#43b9ad\",\"fair_hall\":null,\"fair_area\":null,\"fair_kw\":\"1776\",\"fair_badge\":\"securitydefence\",\"fair_domain\":\"warsawsecuritydefenceexpo.com\",\"fair_shop\":null,\"fair_group\":\"gr2\",\"category_pl\":null,\"category_en\":null,\"konf_name\":\"Security & Defence Forum\",\"konf_title_pl\":\"Security & Defence Forum\",\"konf_title_en\":\"Security & Defence Forum\",\"fair_kw_new\":\"59, 60, 66\",\"fair_kw_old_arch\":null,\"fair_kw_new_arch\":\"2026-59, 60, 66;\",\"fair_entrance\":null}];\r\n                const get_database_logotypes_data = [{\"id\":\"3739\",\"fair_id\":\"165\",\"logos_url\":\"\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/partner-targow\\\/Polish_chamber.webp\",\"logos_type\":\"partner-targow\",\"logos_order\":\"1\",\"logos_alt\":\"Polish_chamber\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-05-23 07:08:48\",\"created_at\":\"2025-05-23 07:08:48\",\"meta_data\":\"{\\\"slug\\\": \\\"partner-targow\\\", \\\"desc_pl\\\": \\\"Partner Targ\\u00f3w\\\", \\\"desc_en\\\": \\\"Fair Partner\\\"}\"},{\"id\":\"3740\",\"fair_id\":\"165\",\"logos_url\":\"\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/partner-targow\\\/polski_zwiazek_kamieniarstwa.webp\",\"logos_type\":\"partner-targow\",\"logos_order\":\"2\",\"logos_alt\":\"Polski_zwiazek_kamieniarstwa\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-05-23 07:08:48\",\"created_at\":\"2025-05-23 07:08:48\",\"meta_data\":\"{\\\"slug\\\": \\\"partner-targow\\\", \\\"desc_pl\\\": \\\"Partner Targ\\u00f3w\\\", \\\"desc_en\\\": \\\"Fair Partner\\\"}\"},{\"id\":\"3741\",\"fair_id\":\"165\",\"logos_url\":\"\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/partner-targow\\\/UKASIEWICZ_SIEC_BADAWCZA.webp\",\"logos_type\":\"partner-targow\",\"logos_order\":\"3\",\"logos_alt\":\"UKASIEWICZ_SIEC_BADAWCZA\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-05-23 07:08:48\",\"created_at\":\"2025-05-23 07:08:48\",\"meta_data\":\"{\\\"slug\\\": \\\"partner-targow\\\", \\\"desc_pl\\\": \\\"Partner Targ\\u00f3w\\\", \\\"desc_en\\\": \\\"Fair Partner\\\"}\"},{\"id\":\"3742\",\"fair_id\":\"165\",\"logos_url\":\"\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/partner-targow\\\/Federacja.webp\",\"logos_type\":\"partner-targow\",\"logos_order\":\"4\",\"logos_alt\":\"Federacja\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-05-23 07:08:48\",\"created_at\":\"2025-05-23 07:08:48\",\"meta_data\":\"{\\\"slug\\\": \\\"partner-targow\\\", \\\"desc_pl\\\": \\\"Partner Targ\\u00f3w\\\", \\\"desc_en\\\": \\\"Fair Partner\\\"}\"},{\"id\":\"3744\",\"fair_id\":\"165\",\"logos_url\":\"\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/partner-targow\\\/kit_1.webp\",\"logos_type\":\"partner-targow\",\"logos_order\":\"5\",\"logos_alt\":\"Kit_1\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2026-02-10 14:10:02\",\"created_at\":\"2025-05-23 07:08:48\",\"meta_data\":\"{\\\"slug\\\": \\\"partner-targow\\\", \\\"desc_pl\\\": \\\"Partner Targ\\u00f3w\\\", \\\"desc_en\\\": \\\"Fair Partner\\\"}\"},{\"id\":\"3745\",\"fair_id\":\"165\",\"logos_url\":\"\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/partner-targow\\\/OSPWZK.webp\",\"logos_type\":\"partner-targow\",\"logos_order\":\"6\",\"logos_alt\":\"OSPWZK\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":\"{\\\"logos_alt\\\":\\\"OSPWZK\\\",\\\"logos_alt_en\\\":null,\\\"logos_link\\\":null,\\\"logos_link_en\\\":null,\\\"logos_exh_name\\\":null,\\\"logos_pl_PL\\\":\\\"true\\\",\\\"logos_en_US\\\":\\\"true\\\",\\\"logos_de_DE\\\":\\\"true\\\"}\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2026-02-10 14:10:02\",\"created_at\":\"2025-05-23 07:08:48\",\"meta_data\":\"{\\\"slug\\\": \\\"partner-targow\\\", \\\"desc_pl\\\": \\\"Partner Targ\\u00f3w\\\", \\\"desc_en\\\": \\\"Fair Partner\\\"}\"},{\"id\":\"7438\",\"fair_id\":\"165\",\"logos_url\":\"\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/partner-targow\\\/pzp.webp\",\"logos_type\":\"partner-targow\",\"logos_order\":\"7\",\"logos_alt\":null,\"logos_link\":null,\"logos_exh_name\":null,\"data\":\"{\\\"logos_alt\\\":\\\"Pzp\\\",\\\"logos_alt_en\\\":\\\"Pzp\\\",\\\"logos_alt_de\\\":\\\"Pzp\\\",\\\"logos_pl_PL\\\":\\\"true\\\",\\\"logos_en_US\\\":\\\"true\\\",\\\"logos_de_DE\\\":\\\"true\\\"}\",\"updated\":\"magdalena.szkoda@warsawexpo.eu\",\"updated_at\":\"2026-02-10 14:10:02\",\"created_at\":\"2026-02-10 14:10:00\",\"meta_data\":\"{\\\"slug\\\": \\\"partner-targow\\\", \\\"desc_pl\\\": \\\"Partner Targ\\u00f3w\\\", \\\"desc_en\\\": \\\"Fair Partner\\\"}\"},{\"id\":\"3747\",\"fair_id\":\"165\",\"logos_url\":\"\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/budo-sfera-logo.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"1\",\"logos_alt\":\"Budo-sfera-logo\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-12-11 09:20:28\",\"created_at\":\"2025-05-23 07:08:57\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"3748\",\"fair_id\":\"165\",\"logos_url\":\"\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/budowlane-materialy-logo.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"2\",\"logos_alt\":\"Budowlane-materialy-logo\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-12-11 09:20:28\",\"created_at\":\"2025-05-23 07:08:57\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"3749\",\"fair_id\":\"165\",\"logos_url\":\"\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/budownictwo-logo.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"3\",\"logos_alt\":\"Budownictwo-logo\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-12-11 09:20:28\",\"created_at\":\"2025-05-23 07:08:57\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"3750\",\"fair_id\":\"165\",\"logos_url\":\"\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/czas-na-wnetrze-logo.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"4\",\"logos_alt\":\"Czas-na-wnetrze-logo\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-12-11 09:20:28\",\"created_at\":\"2025-05-23 07:08:57\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"3751\",\"fair_id\":\"165\",\"logos_url\":\"\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/ekspert-budowlany-logo.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"5\",\"logos_alt\":\"Ekspert-budowlany-logo\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-12-11 09:20:28\",\"created_at\":\"2025-05-23 07:08:57\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"3752\",\"fair_id\":\"165\",\"logos_url\":\"\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/forum-firm-logo.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"6\",\"logos_alt\":\"Forum-firm-logo\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-12-11 09:20:28\",\"created_at\":\"2025-05-23 07:08:57\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"3754\",\"fair_id\":\"165\",\"logos_url\":\"\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/kurier_kamieniarski.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"7\",\"logos_alt\":\"Kurier_kamieniarski\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-12-11 09:20:31\",\"created_at\":\"2025-05-23 07:08:57\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"3755\",\"fair_id\":\"165\",\"logos_url\":\"\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/murator.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"8\",\"logos_alt\":\"Murator\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-12-11 09:20:31\",\"created_at\":\"2025-05-23 07:08:57\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"3756\",\"fair_id\":\"165\",\"logos_url\":\"\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/muratorplus.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"9\",\"logos_alt\":\"Muratorplus\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-12-11 09:20:31\",\"created_at\":\"2025-05-23 07:08:57\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"3757\",\"fair_id\":\"165\",\"logos_url\":\"\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/narzedzia-polska-logo.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"10\",\"logos_alt\":\"Narzedzia-polska-logo\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-12-11 09:20:31\",\"created_at\":\"2025-05-23 07:08:57\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"3758\",\"fair_id\":\"165\",\"logos_url\":\"\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/nowy-kamieniarz-logo.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"11\",\"logos_alt\":\"Nowy-kamieniarz-logo\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-12-11 09:20:31\",\"created_at\":\"2025-05-23 07:08:57\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"3760\",\"fair_id\":\"165\",\"logos_url\":\"\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/URZ\\u0104DZAMY_PATRON_MEDIALNY.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"12\",\"logos_alt\":\"URZ\\u0104DZAMY_PATRON_MEDIALNY\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-12-11 09:20:31\",\"created_at\":\"2025-05-23 07:08:57\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"3762\",\"fair_id\":\"165\",\"logos_url\":\"\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/ABOUT_DECOR_PATRON_MEDIALNY.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"13\",\"logos_alt\":\"ABOUT_DECOR_PATRON_MEDIALNY\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-12-11 09:20:31\",\"created_at\":\"2025-05-23 07:08:57\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"3763\",\"fair_id\":\"165\",\"logos_url\":\"\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/ARCHITEKTURA_PATRON_MEDIALNY.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"14\",\"logos_alt\":\"ARCHITEKTURA_PATRON_MEDIALNY\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-12-11 09:20:31\",\"created_at\":\"2025-05-23 07:08:57\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"3764\",\"fair_id\":\"165\",\"logos_url\":\"\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/architektura-info-2-logo.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"15\",\"logos_alt\":\"Architektura-info-2-logo\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-12-11 09:20:31\",\"created_at\":\"2025-05-23 07:08:57\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"3765\",\"fair_id\":\"165\",\"logos_url\":\"\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/architektura-info-logo.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"16\",\"logos_alt\":\"Architektura-info-logo\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-12-11 09:20:31\",\"created_at\":\"2025-05-23 07:08:57\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"5032\",\"fair_id\":\"165\",\"logos_url\":\"\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/image.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"17\",\"logos_alt\":\"Image\",\"logos_link\":\"https:\\\/\\\/factories.pl\\\/\",\"logos_exh_name\":null,\"data\":null,\"updated\":\"julia.witek@warsawexpo.eu\",\"updated_at\":\"2025-12-11 09:20:31\",\"created_at\":\"2025-08-29 11:37:43\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"6179\",\"fair_id\":\"165\",\"logos_url\":\"\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/logo_forcenews.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"18\",\"logos_alt\":\"Logo_forcenews\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"yelyzaveta.kholieva@warsawexpo.eu\",\"updated_at\":\"2025-12-11 09:20:31\",\"created_at\":\"2025-10-31 14:59:18\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"6549\",\"fair_id\":\"165\",\"logos_url\":\"\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/LOGO_A&B.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"19\",\"logos_alt\":null,\"logos_link\":null,\"logos_exh_name\":null,\"data\":\"{\\\"logos_alt\\\":\\\"LOGO_A&B\\\",\\\"logos_alt_en\\\":\\\"LOGO_A&B\\\",\\\"logos_alt_de\\\":\\\"LOGO_A&B\\\",\\\"logos_pl_PL\\\":\\\"true\\\",\\\"logos_en_US\\\":\\\"true\\\",\\\"logos_de_DE\\\":\\\"true\\\"}\",\"updated\":\"yelyzaveta.kholieva@warsawexpo.eu\",\"updated_at\":\"2025-12-11 09:20:31\",\"created_at\":\"2025-12-04 11:19:42\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"6622\",\"fair_id\":\"165\",\"logos_url\":\"\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/89.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"20\",\"logos_alt\":null,\"logos_link\":null,\"logos_exh_name\":null,\"data\":\"{\\\"logos_alt\\\":\\\"89\\\",\\\"logos_alt_en\\\":\\\"89\\\",\\\"logos_alt_de\\\":\\\"89\\\",\\\"logos_pl_PL\\\":\\\"true\\\",\\\"logos_en_US\\\":\\\"true\\\",\\\"logos_de_DE\\\":\\\"true\\\"}\",\"updated\":\"yelyzaveta.kholieva@warsawexpo.eu\",\"updated_at\":\"2025-12-11 09:20:31\",\"created_at\":\"2025-12-10 08:30:39\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"7440\",\"fair_id\":\"165\",\"logos_url\":\"\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/partner-merytoryczny\\\/abra.webp\",\"logos_type\":\"partner-merytoryczny\",\"logos_order\":\"1\",\"logos_alt\":null,\"logos_link\":null,\"logos_exh_name\":null,\"data\":\"{\\\"logos_alt\\\":\\\"Abra\\\",\\\"logos_alt_en\\\":\\\"Abra\\\",\\\"logos_alt_de\\\":\\\"Abra\\\",\\\"logos_pl_PL\\\":\\\"true\\\",\\\"logos_en_US\\\":\\\"true\\\",\\\"logos_de_DE\\\":\\\"true\\\"}\",\"updated\":\"magdalena.szkoda@warsawexpo.eu\",\"updated_at\":\"2026-02-10 14:12:36\",\"created_at\":\"2026-02-10 14:12:36\",\"meta_data\":\"{\\\"slug\\\": \\\"partner-merytoryczny\\\", \\\"desc_pl\\\": \\\"Partner Merytoryczny\\\", \\\"desc_en\\\": \\\"Content Partner\\\"}\"},{\"id\":\"7483\",\"fair_id\":\"165\",\"logos_url\":\"\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/partner-merytoryczny\\\/wbiznes (1).webp\",\"logos_type\":\"partner-merytoryczny\",\"logos_order\":\"2\",\"logos_alt\":null,\"logos_link\":null,\"logos_exh_name\":null,\"data\":\"{\\\"logos_alt\\\":\\\"Wbiznes (1)\\\",\\\"logos_alt_en\\\":\\\"Wbiznes (1)\\\",\\\"logos_alt_de\\\":\\\"Wbiznes (1)\\\",\\\"logos_pl_PL\\\":\\\"true\\\",\\\"logos_en_US\\\":\\\"true\\\",\\\"logos_de_DE\\\":\\\"true\\\"}\",\"updated\":\"monika.ferenc@warsawexpo.eu\",\"updated_at\":\"2026-02-12 13:03:11\",\"created_at\":\"2026-02-12 13:03:06\",\"meta_data\":\"{\\\"slug\\\": \\\"partner-merytoryczny\\\", \\\"desc_pl\\\": \\\"Partner Merytoryczny\\\", \\\"desc_en\\\": \\\"Content Partner\\\"}\"},{\"id\":\"3734\",\"fair_id\":\"165\",\"logos_url\":\"\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/europe-event\\\/Stone+tec N\\u00fcrnberg (Nuremberg, Niemcy) - Stone+tec N\\u00fcrnberg (Nuremberg, Germany).webp\",\"logos_type\":\"europe-event\",\"logos_order\":\"1\",\"logos_alt\":\"Stone+tec N\\u00fcrnberg (Nuremberg, Niemcy) - Stone+tec N\\u00fcrnberg (Nuremberg, Germany)\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-05-23 07:08:34\",\"created_at\":\"2025-05-23 07:08:34\",\"meta_data\":\"{\\\"slug\\\": \\\"europe-event\\\", \\\"desc_pl\\\": \\\"Wydarzenie Europa\\\", \\\"desc_en\\\": \\\"Europe Event\\\"}\"},{\"id\":\"3735\",\"fair_id\":\"165\",\"logos_url\":\"\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/europe-event\\\/Tecna (Rimini, W\\u0142ochy) - Tecna (Rimini, Italy).webp\",\"logos_type\":\"europe-event\",\"logos_order\":\"2\",\"logos_alt\":\"Tecna (Rimini, W\\u0142ochy) - Tecna (Rimini, Italy)\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-05-23 07:08:34\",\"created_at\":\"2025-05-23 07:08:34\",\"meta_data\":\"{\\\"slug\\\": \\\"europe-event\\\", \\\"desc_pl\\\": \\\"Wydarzenie Europa\\\", \\\"desc_en\\\": \\\"Europe Event\\\"}\"},{\"id\":\"3736\",\"fair_id\":\"165\",\"logos_url\":\"\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/europe-event\\\/The Natural Stone Show (Londyn, UK) - The Natural Stone Show (London, UK).webp\",\"logos_type\":\"europe-event\",\"logos_order\":\"3\",\"logos_alt\":\"The Natural Stone Show (Londyn, UK) - The Natural Stone Show (London, UK)\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-05-23 07:08:34\",\"created_at\":\"2025-05-23 07:08:34\",\"meta_data\":\"{\\\"slug\\\": \\\"europe-event\\\", \\\"desc_pl\\\": \\\"Wydarzenie Europa\\\", \\\"desc_en\\\": \\\"Europe Event\\\"}\"},{\"id\":\"3737\",\"fair_id\":\"165\",\"logos_url\":\"\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/europe-event\\\/Marmomacc (Werona, W\\u0142ochy) - Marmomacc (Verona, Italy).webp\",\"logos_type\":\"europe-event\",\"logos_order\":\"4\",\"logos_alt\":\"Marmomacc (Werona, W\\u0142ochy) - Marmomacc (Verona, Italy)\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-05-23 07:08:34\",\"created_at\":\"2025-05-23 07:08:34\",\"meta_data\":\"{\\\"slug\\\": \\\"europe-event\\\", \\\"desc_pl\\\": \\\"Wydarzenie Europa\\\", \\\"desc_en\\\": \\\"Europe Event\\\"}\"},{\"id\":\"3738\",\"fair_id\":\"165\",\"logos_url\":\"\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/europe-event\\\/Stone Expo (Warszawa, Polska) - Stone Expo (Warsaw, Poland).webp\",\"logos_type\":\"europe-event\",\"logos_order\":\"5\",\"logos_alt\":\"Stone Expo (Warszawa, Polska) - Stone Expo (Warsaw, Poland)\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-05-23 07:08:34\",\"created_at\":\"2025-05-23 07:08:34\",\"meta_data\":\"{\\\"slug\\\": \\\"europe-event\\\", \\\"desc_pl\\\": \\\"Wydarzenie Europa\\\", \\\"desc_en\\\": \\\"Europe Event\\\"}\"},{\"id\":\"5008\",\"fair_id\":\"165\",\"logos_url\":\"\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/miedzynarodowy-patron-medialny\\\/thumbnail_ExpoTobi-300_200.webp\",\"logos_type\":\"miedzynarodowy-patron-medialny\",\"logos_order\":\"1\",\"logos_alt\":\"Thumbnail_ExpoTobi-300_200\",\"logos_link\":\"https:\\\/\\\/expotobi.com\\\/\",\"logos_exh_name\":null,\"data\":null,\"updated\":\"julia.witek@warsawexpo.eu\",\"updated_at\":\"2025-08-27 09:03:56\",\"created_at\":\"2025-08-27 09:03:52\",\"meta_data\":\"{\\\"slug\\\": \\\"miedzynarodowy-patron-medialny\\\", \\\"desc_pl\\\": \\\"Mi\\u0119dzynarodowy Patron Medialny\\\", \\\"desc_en\\\": \\\"International Media Patron\\\"}\"},{\"id\":\"6876\",\"fair_id\":\"165\",\"logos_url\":\"\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/miedzynarodowy-patron-medialny\\\/logo_stone_news.webp\",\"logos_type\":\"miedzynarodowy-patron-medialny\",\"logos_order\":\"2\",\"logos_alt\":null,\"logos_link\":null,\"logos_exh_name\":null,\"data\":\"{\\\"logos_alt\\\":\\\"Logo_stone_news\\\",\\\"logos_alt_en\\\":\\\"Logo_stone_news\\\",\\\"logos_alt_de\\\":\\\"Logo_stone_news\\\",\\\"logos_pl_PL\\\":\\\"true\\\",\\\"logos_en_US\\\":\\\"true\\\",\\\"logos_de_DE\\\":\\\"true\\\"}\",\"updated\":\"yelyzaveta.kholieva@warsawexpo.eu\",\"updated_at\":\"2025-12-30 07:46:36\",\"created_at\":\"2025-12-30 07:46:36\",\"meta_data\":\"{\\\"slug\\\": \\\"miedzynarodowy-patron-medialny\\\", \\\"desc_pl\\\": \\\"Mi\\u0119dzynarodowy Patron Medialny\\\", \\\"desc_en\\\": \\\"International Media Patron\\\"}\"},{\"id\":\"6714\",\"fair_id\":\"165\",\"logos_url\":\"\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/header-partner-targow\\\/polski_zwiazek_kamieniarstwa.webp\",\"logos_type\":\"header-partner-targow\",\"logos_order\":\"1\",\"logos_alt\":null,\"logos_link\":null,\"logos_exh_name\":null,\"data\":\"{\\\"logos_alt\\\":\\\"Polski_zwiazek_kamieniarstwa\\\",\\\"logos_alt_en\\\":\\\"Polski_zwiazek_kamieniarstwa\\\",\\\"logos_alt_de\\\":\\\"Polski_zwiazek_kamieniarstwa\\\",\\\"logos_pl_PL\\\":\\\"true\\\",\\\"logos_en_US\\\":\\\"true\\\",\\\"logos_de_DE\\\":\\\"true\\\"}\",\"updated\":\"jakub.chola@warsawexpo.eu\",\"updated_at\":\"2025-12-15 13:36:40\",\"created_at\":\"2025-12-15 13:36:40\",\"meta_data\":\"{\\\"slug\\\": \\\"header-partner-targow\\\", \\\"desc_pl\\\": \\\"Partner Targ\\u00f3w\\\", \\\"desc_en\\\": \\\"Fair Partner\\\"}\"},{\"id\":\"7238\",\"fair_id\":\"165\",\"logos_url\":\"\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/header-partner-targow\\\/OSPWZK.webp\",\"logos_type\":\"header-partner-targow\",\"logos_order\":\"2\",\"logos_alt\":null,\"logos_link\":null,\"logos_exh_name\":null,\"data\":\"{\\\"logos_alt\\\":\\\"OSPWZK\\\",\\\"logos_alt_en\\\":\\\"OSPWZK\\\",\\\"logos_alt_de\\\":\\\"OSPWZK\\\",\\\"logos_pl_PL\\\":\\\"true\\\",\\\"logos_en_US\\\":\\\"true\\\",\\\"logos_de_DE\\\":\\\"true\\\"}\",\"updated\":\"magdalena.szkoda@warsawexpo.eu\",\"updated_at\":\"2026-01-23 13:43:35\",\"created_at\":\"2026-01-23 13:43:35\",\"meta_data\":\"{\\\"slug\\\": \\\"header-partner-targow\\\", \\\"desc_pl\\\": \\\"Partner Targ\\u00f3w\\\", \\\"desc_en\\\": \\\"Fair Partner\\\"}\"},{\"id\":\"7439\",\"fair_id\":\"165\",\"logos_url\":\"\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/header-partner-targow\\\/pzp.webp\",\"logos_type\":\"header-partner-targow\",\"logos_order\":\"3\",\"logos_alt\":null,\"logos_link\":null,\"logos_exh_name\":null,\"data\":\"{\\\"logos_alt\\\":\\\"Pzp\\\",\\\"logos_alt_en\\\":\\\"Pzp\\\",\\\"logos_alt_de\\\":\\\"Pzp\\\",\\\"logos_pl_PL\\\":\\\"true\\\",\\\"logos_en_US\\\":\\\"true\\\",\\\"logos_de_DE\\\":\\\"true\\\"}\",\"updated\":\"magdalena.szkoda@warsawexpo.eu\",\"updated_at\":\"2026-02-10 14:10:21\",\"created_at\":\"2026-02-10 14:10:21\",\"meta_data\":\"{\\\"slug\\\": \\\"header-partner-targow\\\", \\\"desc_pl\\\": \\\"Partner Targ\\u00f3w\\\", \\\"desc_en\\\": \\\"Fair Partner\\\"}\"}];\r\n                const get_database_meta_data = [{\"id\":\"1\",\"slug\":\"euro_rate\",\"meta_data\":\"4.2453\",\"rights\":\"none\",\"updated\":\"NBP Api\",\"updated_at\":\"2026-05-24 16:00:06\",\"created_at\":\"2025-05-06 12:53:04\"},{\"id\":\"3\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"partner-targow\\\", \\\"desc_pl\\\": \\\"Partner Targ\\u00f3w\\\", \\\"desc_en\\\": \\\"Fair Partner\\\"}\",\"rights\":\"all\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2025-05-21 10:11:55\",\"created_at\":\"2025-05-06 10:55:51\"},{\"id\":\"5\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\",\"rights\":\"all\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2025-05-21 10:11:49\",\"created_at\":\"2025-05-06 12:07:14\"},{\"id\":\"6\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"partner-merytoryczny\\\", \\\"desc_pl\\\": \\\"Partner Merytoryczny\\\", \\\"desc_en\\\": \\\"Content Partner\\\"}\",\"rights\":\"all\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2025-05-15 08:38:35\",\"created_at\":\"2025-05-06 12:18:18\"},{\"id\":\"7\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"partner-strategiczny\\\", \\\"desc_pl\\\": \\\"Partner Strategiczny\\\", \\\"desc_en\\\": \\\"Strategic Partner\\\"}\",\"rights\":\"all\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2025-05-15 08:38:19\",\"created_at\":\"2025-05-12 07:17:44\"},{\"id\":\"8\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"partner-honorowy\\\", \\\"desc_pl\\\": \\\"Partner Honorowy\\\", \\\"desc_en\\\": \\\"Honorary Partner\\\"}\",\"rights\":\"all\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2025-05-13 13:24:40\",\"created_at\":\"2025-05-12 07:18:41\"},{\"id\":\"9\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"kraj-partnerski\\\", \\\"desc_pl\\\": \\\"Kraj Partnerski\\\", \\\"desc_en\\\": \\\"Partner Country\\\"}\",\"rights\":\"admin\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2025-05-13 13:24:50\",\"created_at\":\"2025-05-12 07:19:43\"},{\"id\":\"10\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"europe-event\\\", \\\"desc_pl\\\": \\\"Wydarzenie Europa\\\", \\\"desc_en\\\": \\\"Europe Event\\\"}\",\"rights\":\"all\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-09-15 07:21:07\",\"created_at\":\"2025-05-15 08:36:07\"},{\"id\":\"11\",\"slug\":\"patrons\",\"meta_data\":\"{ \\\"slug\\\": \\\"international-partner\\\",\\\"desc_pl\\\": \\\"Patronat Mi\\u0119dzynarodowy\\\",\\\"desc_en\\\": \\\"International Patrons\\\"}\",\"rights\":\"all\",\"updated\":\"marek.rumianek@warsawexpo.eu\",\"updated_at\":\"2025-05-21 12:40:39\",\"created_at\":\"2025-05-21 12:40:39\"},{\"id\":\"12\",\"slug\":\"patrons\",\"meta_data\":\"{ \\\"slug\\\": \\\"principal-partner\\\",\\\"desc_pl\\\": \\\"Partner G\\u0142\\u00f3wny\\\",\\\"desc_en\\\": \\\"Principal Partner\\\"}\",\"rights\":\"all\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-05-21 14:13:58\",\"created_at\":\"2025-05-21 14:13:58\"},{\"id\":\"13\",\"slug\":\"patrons\",\"meta_data\":\"{ \\\"slug\\\": \\\"industry-media-partner\\\",\\\"desc_pl\\\": \\\"Patron Medialny Bran\\u017cowy\\\",\\\"desc_en\\\": \\\"Industry Media Partner\\\"}\",\"rights\":\"all\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-05-21 14:16:11\",\"created_at\":\"2025-05-21 14:16:11\"},{\"id\":\"14\",\"slug\":\"patrons\",\"meta_data\":\"{ \\\"slug\\\": \\\"organizatorzy-konferencji\\\",\\\"desc_pl\\\": \\\"Organizatorzy Konferencji\\\",\\\"desc_en\\\": \\\"Conference Organizers\\\"}\",\"rights\":\"admin\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-05-22 10:12:56\",\"created_at\":\"2025-05-22 10:12:56\"},{\"id\":\"15\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"partner-branzowy\\\", \\\"desc_pl\\\": \\\"Partner Bran\\u017cowy\\\", \\\"desc_en\\\": \\\"Industry Partner\\\"}\",\"rights\":\"all\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-05-22 10:39:25\",\"created_at\":\"2025-05-22 10:39:25\"},{\"id\":\"18\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"miedzynarodowy-patron-medialny\\\", \\\"desc_pl\\\": \\\"Mi\\u0119dzynarodowy Patron Medialny\\\", \\\"desc_en\\\": \\\"International Media Patron\\\"}\",\"rights\":\"all\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-05-22 10:59:19\",\"created_at\":\"2025-05-22 10:59:19\"},{\"id\":\"19\",\"slug\":\"hubspot_marketing\",\"meta_data\":\"pat-eu1-924602da-c7a3-405d-9150-2bf0e39b9e4a\",\"rights\":\"admin\",\"updated\":\"marek.rumianek@warsawexpo.eu\",\"updated_at\":\"2025-06-10 14:16:15\",\"created_at\":\"2025-06-10 13:25:42\"},{\"id\":\"20\",\"slug\":\"hubspot_fokus\",\"meta_data\":\"pat-eu1-1f774a12-244b-445e-b668-5fd620e8dd07\",\"rights\":\"admin\",\"updated\":\"marek.rumianek@warsawexpo.eu\",\"updated_at\":\"2025-07-16 09:15:42\",\"created_at\":\"2025-06-12 07:39:06\"},{\"id\":\"22\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"partner-konferencji-green-gas-poland\\\", \\\"desc_pl\\\": \\\"Partner Konferencji Green Gas Poland\\\", \\\"desc_en\\\": \\\"Conference Partner Green Gas Poland\\\"}\",\"rights\":\"all\",\"updated\":\"piotr.krupniewski@warsawexpo.eu\",\"updated_at\":\"2025-06-23 07:11:13\",\"created_at\":\"2025-06-13 09:42:10\"},{\"id\":\"23\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"header-partner-targow\\\", \\\"desc_pl\\\": \\\"Partner Targ\\u00f3w\\\", \\\"desc_en\\\": \\\"Fair Partner\\\"}\",\"rights\":\"all\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-07-25 09:48:56\",\"created_at\":\"2025-07-25 09:48:56\"},{\"id\":\"24\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"header-partner-merytoryczny\\\", \\\"desc_pl\\\": \\\"Partner Merytoryczny\\\", \\\"desc_en\\\": \\\"Content Partner\\\"}\",\"rights\":\"all\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-07-25 09:49:16\",\"created_at\":\"2025-07-25 09:49:16\"},{\"id\":\"25\",\"slug\":\"exh_catalog_address\",\"meta_data\":\"https:\\\/\\\/export.www2.pwe-expoplanner.com\\\/mapa.php?token=\",\"rights\":\"admin\",\"updated\":\"piotr.krupniewski@warsawexpo.eu\",\"updated_at\":\"2025-07-28 08:09:17\",\"created_at\":\"2025-07-28 07:58:17\"},{\"id\":\"26\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"header-partner-organizacyjny\\\", \\\"desc_pl\\\": \\\"Partner Organizacyjny\\\", \\\"desc_en\\\": \\\"Organizational partner\\\"}\",\"rights\":\"all\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-07-29 08:17:38\",\"created_at\":\"2025-07-29 08:17:38\"},{\"id\":\"27\",\"slug\":\"hubspot_marketing_production\",\"meta_data\":\"pat-eu1-69a65631-cc32-4701-9130-73ce00e52e15\",\"rights\":\"admin\",\"updated\":\"marek.rumianek@warsawexpo.eu\",\"updated_at\":\"2025-08-12 07:43:33\",\"created_at\":\"2025-08-12 07:43:33\"},{\"id\":\"29\",\"slug\":\"header_order\",\"meta_data\":\"header-partner-organizacyjny,partner-konferencji,header-partner-targow,header-partner-merytoryczny\",\"rights\":\"224\",\"updated\":\"marek.rumianek@warsawexpo.eu\",\"updated_at\":\"2025-09-18 08:43:44\",\"created_at\":\"2025-09-18 07:50:15\"},{\"id\":\"30\",\"slug\":\"header_order\",\"meta_data\":\"partner-konferencji,header-partner-targow,header-partner-organizacyjny,header-partner-merytoryczny\",\"rights\":\"175\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2025-09-18 10:26:18\",\"created_at\":\"2025-09-18 08:48:20\"},{\"id\":\"31\",\"slug\":\"header_order\",\"meta_data\":\"header-partner-targow,header-patronat-honorowy,header-partner-merytoryczny,header-partner-organizacyjny,header-partner-targow-i-konferencji,header-partner-strategiczny,header-organizator-conferencji,header-partner-branzowy,header-wspolorganizator,header-patronat-polskiego-towarzystwa-technologow-zywnosci,header-glowni-partnerzy,header-patronat-warsaw-pack,header-partner-konferencji,header-prelegenci,header-prelegent,header-partner-radiowy,header-glowny-patron-medialny,header-partner-instytucjonalny\",\"rights\":\"186\",\"updated\":\"marek.rumianek@warsawexpo.eu\",\"updated_at\":\"2026-02-27 13:43:52\",\"created_at\":\"2025-09-18 10:17:46\"},{\"id\":\"33\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"header-partner-targow-i-konferencji\\\", \\\"desc_pl\\\": \\\"Partner Targ\\u00f3w i Konferencji\\\", \\\"desc_en\\\": \\\"Trade Fair and Conference Partner\\\"}\",\"rights\":\"all\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-09-18 11:22:08\",\"created_at\":\"2025-09-18 11:22:08\"},{\"id\":\"34\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"header-patronat-honorowy\\\", \\\"desc_pl\\\": \\\"Patronat Honorowy\\\", \\\"desc_en\\\": \\\"Honorary Patronage\\\"}\",\"rights\":\"all\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2025-09-18 11:57:07\",\"created_at\":\"2025-09-18 11:57:07\"},{\"id\":\"35\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"header-partner-strategiczny\\\", \\\"desc_pl\\\": \\\"Partner Strategiczny\\\", \\\"desc_en\\\": \\\"Strategic Partner\\\"}\",\"rights\":\"all\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2025-09-18 12:00:44\",\"created_at\":\"2025-09-18 11:59:10\"},{\"id\":\"36\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"header-organizator-conferencji\\\", \\\"desc_pl\\\": \\\"Organizator Konferencji\\\", \\\"desc_en\\\": \\\"Conference Organizer\\\"}\",\"rights\":\"all\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2025-09-18 12:02:26\",\"created_at\":\"2025-09-18 12:02:26\"},{\"id\":\"37\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"header-partner-branzowy\\\", \\\"desc_pl\\\": \\\"Partner Bran\\u017cowy\\\", \\\"desc_en\\\": \\\"Industry Partner\\\"}\",\"rights\":\"all\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2025-09-18 12:06:13\",\"created_at\":\"2025-09-18 12:06:13\"},{\"id\":\"38\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"header-wspolorganizator\\\", \\\"desc_pl\\\": \\\"Wsp\\u00f3\\u0142organizator\\\", \\\"desc_en\\\": \\\"Co-organizer\\\"}\",\"rights\":\"all\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2025-09-18 12:08:11\",\"created_at\":\"2025-09-18 12:08:11\"},{\"id\":\"39\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"header-patronat-polskiego-towarzystwa-technologow-zywnosci\\\", \\\"desc_pl\\\": \\\"Patronat Polskiego Towarzystwa Technolog\\u00f3w \\u017bywno\\u015bci\\\", \\\"desc_en\\\": \\\"Patronage of the Polish Society of Food Technologists\\\"}\",\"rights\":\"all\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2025-09-18 12:19:11\",\"created_at\":\"2025-09-18 12:13:26\"},{\"id\":\"40\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"header-glowni-partnerzy\\\", \\\"desc_pl\\\": \\\"G\\u0142\\u00f3wni Partnerzy\\\", \\\"desc_en\\\": \\\"Main Partners\\\"}\",\"rights\":\"all\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-09-26 10:06:06\",\"created_at\":\"2025-09-26 10:05:10\"},{\"id\":\"41\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"header-patronat-warsaw-pack\\\", \\\"desc_pl\\\": \\\"Patronat Warsaw Pack\\\", \\\"desc_en\\\": \\\"Patronage of Warsaw Pack\\\"}\",\"rights\":\"all\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-10-03 14:11:15\",\"created_at\":\"2025-10-03 14:11:15\"},{\"id\":\"42\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"header-partner-konferencji\\\", \\\"desc_pl\\\": \\\"Partner Konferencji\\\", \\\"desc_en\\\": \\\"Conference Partner\\\"}\",\"rights\":\"all\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-10-06 09:20:04\",\"created_at\":\"2025-10-06 09:20:04\"},{\"id\":\"43\",\"slug\":\"header_order\",\"meta_data\":\"header-partner-targow,header-partner-merytoryczny,header-partner-organizacyjny,header-partner-targow-i-konferencji,header-patronat-honorowy,header-partner-strategiczny,header-organizator-conferencji,header-partner-branzowy,header-wspolorganizator,header-patronat-polskiego-towarzystwa-technologow-zywnosci,header-glowni-partnerzy,header-patronat-warsaw-pack,header-partner-konferencji\",\"rights\":\"203\",\"updated\":\"marek.rumianek@warsawexpo.eu\",\"updated_at\":\"2025-10-15 07:40:58\",\"created_at\":\"2025-10-15 07:40:58\"},{\"id\":\"44\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"header-prelegenci\\\", \\\"desc_pl\\\": \\\"Prelegenci\\\", \\\"desc_en\\\": \\\"Speakers\\\"}\",\"rights\":\"all\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-10-15 10:18:52\",\"created_at\":\"2025-10-15 10:18:52\"},{\"id\":\"45\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"header-prelegent\\\", \\\"desc_pl\\\": \\\"Prelegent\\\", \\\"desc_en\\\": \\\"Speaker\\\"}\",\"rights\":\"all\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-10-15 10:30:06\",\"created_at\":\"2025-10-15 10:30:06\"},{\"id\":\"46\",\"slug\":\"header_order\",\"meta_data\":\"header-partner-targow,header-partner-merytoryczny,header-partner-branzowy,header-patronat-honorowy,header-partner-organizacyjny,header-partner-targow-i-konferencji,header-partner-strategiczny,header-organizator-conferencji,header-wspolorganizator,header-patronat-polskiego-towarzystwa-technologow-zywnosci,header-glowni-partnerzy,header-patronat-warsaw-pack,header-partner-konferencji,header-prelegenci,header-prelegent\",\"rights\":\"243\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-10-17 08:51:29\",\"created_at\":\"2025-10-16 11:45:07\"},{\"id\":\"47\",\"slug\":\"header_order\",\"meta_data\":\"header-wspolorganizator,header-partner-targow-i-konferencji,header-partner-targow,header-partner-merytoryczny,header-partner-organizacyjny,header-patronat-honorowy,header-partner-strategiczny,header-organizator-conferencji,header-partner-branzowy,header-patronat-polskiego-towarzystwa-technologow-zywnosci,header-glowni-partnerzy,header-patronat-warsaw-pack,header-partner-konferencji,header-prelegenci,header-prelegent,header-partner-radiowy\",\"rights\":\"159\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-12-03 09:53:09\",\"created_at\":\"2025-10-16 11:46:54\"},{\"id\":\"48\",\"slug\":\"exh_catalog_address_2\",\"meta_data\":\"https:\\\/\\\/backend-production-e57c.up.railway.app\\\/public\\\/exhibitions\\\/\",\"rights\":\"admin\",\"updated\":\"jakub.chola@warsawexpo.eu\",\"updated_at\":\"2026-05-04 07:53:42\",\"created_at\":\"2025-10-16 12:31:04\"},{\"id\":\"49\",\"slug\":\"header_order\",\"meta_data\":\"header-partner-merytoryczny,header-partner-targow-i-konferencji,header-patronat-polskiego-towarzystwa-technologow-zywnosci,header-partner-targow,header-partner-organizacyjny,header-patronat-honorowy,header-partner-strategiczny,header-organizator-conferencji,header-partner-branzowy,header-wspolorganizator,header-glowni-partnerzy,header-patronat-warsaw-pack,header-partner-konferencji,header-prelegenci,header-prelegent\",\"rights\":\"177\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2025-10-16 13:41:58\",\"created_at\":\"2025-10-16 13:41:43\"},{\"id\":\"50\",\"slug\":\"exh_catalog_address_doc\",\"meta_data\":\"\\\/doc\\\/pwe-exhibitors-data.json\",\"rights\":\"admin\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2025-10-17 07:54:20\",\"created_at\":\"2025-10-17 07:54:20\"},{\"id\":\"51\",\"slug\":\"cron_secret_pass\",\"meta_data\":\"fM8mYEIEr4HC\",\"rights\":\"admin\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2025-10-17 08:14:01\",\"created_at\":\"2025-10-17 08:14:01\"},{\"id\":\"52\",\"slug\":\"header_order\",\"meta_data\":\"header-partner-targow-i-konferencji,header-patronat-warsaw-pack,header-partner-targow,header-partner-merytoryczny,header-partner-organizacyjny,header-patronat-honorowy,header-partner-strategiczny,header-organizator-conferencji,header-partner-branzowy,header-wspolorganizator,header-patronat-polskiego-towarzystwa-technologow-zywnosci,header-glowni-partnerzy,header-partner-konferencji,header-prelegenci,header-prelegent\",\"rights\":\"154\",\"updated\":\"jakub.chola@warsawexpo.eu\",\"updated_at\":\"2025-10-28 14:33:23\",\"created_at\":\"2025-10-28 14:33:23\"},{\"id\":\"53\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"header-partner-radiowy\\\", \\\"desc_pl\\\": \\\"Partner Radiowy\\\", \\\"desc_en\\\": \\\"Radio Partner\\\"}\",\"rights\":\"all\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2025-11-10 12:52:03\",\"created_at\":\"2025-11-10 12:52:03\"},{\"id\":\"54\",\"slug\":\"header_order\",\"meta_data\":\"header-partner-targow-i-konferencji,header-partner-targow,header-partner-merytoryczny,header-partner-organizacyjny,header-patronat-honorowy,header-partner-strategiczny,header-organizator-conferencji,header-partner-branzowy,header-wspolorganizator,header-patronat-polskiego-towarzystwa-technologow-zywnosci,header-glowni-partnerzy,header-patronat-warsaw-pack,header-partner-konferencji,header-prelegenci,header-prelegent,header-partner-radiowy\",\"rights\":\"3\",\"updated\":\"marek.rumianek@warsawexpo.eu\",\"updated_at\":\"2026-01-08 13:37:00\",\"created_at\":\"2026-01-08 13:37:00\"},{\"id\":\"55\",\"slug\":\"header_order\",\"meta_data\":\"header-partner-instytucjonalny,header-partner-strategiczny,header-patronat-honorowy,header-partner-merytoryczny,header-partner-targow,header-partner-branzowy,header-partner-organizacyjny,header-partner-targow-i-konferencji,header-organizator-conferencji,header-wspolorganizator,header-patronat-polskiego-towarzystwa-technologow-zywnosci,header-glowni-partnerzy,header-patronat-warsaw-pack,header-partner-konferencji,header-prelegenci,header-prelegent,header-partner-radiowy,header-glowny-patron-medialny\",\"rights\":\"296\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2026-01-26 15:14:45\",\"created_at\":\"2026-01-08 13:50:55\"},{\"id\":\"56\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"glowny-patron-medialny\\\", \\\"desc_pl\\\": \\\"G\\u0142\\u00f3wny Patron Medialny\\\", \\\"desc_en\\\": \\\"Main Media Patron\\\"}\",\"rights\":\"all\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2026-01-09 09:58:28\",\"created_at\":\"2026-01-09 09:58:28\"},{\"id\":\"57\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"header-glowny-patron-medialny\\\", \\\"desc_pl\\\": \\\"G\\u0142\\u00f3wny Patron Medialny\\\", \\\"desc_en\\\": \\\"Main Media Patron\\\"}\",\"rights\":\"all\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2026-01-09 10:01:30\",\"created_at\":\"2026-01-09 10:01:30\"},{\"id\":\"62\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"header-partner-instytucjonalny\\\", \\\"desc_pl\\\": \\\"Partner Instytucjonalny\\\", \\\"desc_en\\\": \\\"Institutional Partner\\\"}\",\"rights\":\"all\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2026-01-26 15:09:24\",\"created_at\":\"2026-01-26 15:09:24\"},{\"id\":\"66\",\"slug\":\"category\",\"meta_data\":\"{\\\"en\\\":\\\"automation\\\",\\\"cs\\\":\\\"automatika\\\",\\\"de\\\":\\\"Automatisierung\\\",\\\"lt\\\":\\\"automatizavimas\\\",\\\"lv\\\":\\\"automatika\\\",\\\"ru\\\":\\\"\\u0430\\u0432\\u0442\\u043e\\u043c\\u0430\\u0442\\u0438\\u043a\\u0430\\\",\\\"sk\\\":\\\"automatiz\\u00e1cia\\\",\\\"uk\\\":\\\"\\u0430\\u0432\\u0442\\u043e\\u043c\\u0430\\u0442\\u0438\\u043a\\u0430\\\"}\",\"rights\":\"all\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2026-01-30 10:44:23\",\"created_at\":\"2026-01-30 10:44:23\"},{\"id\":\"68\",\"slug\":\"cron_catalog_secret_pass\",\"meta_data\":\"iR8gCdZlITxRvVBS\",\"rights\":\"all\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2026-02-10 08:51:18\",\"created_at\":\"2026-02-10 08:51:18\"},{\"id\":\"69\",\"slug\":\"header_order\",\"meta_data\":\"header-partner-merytoryczny,header-partner-targow,header-partner-organizacyjny,header-partner-targow-i-konferencji,header-patronat-honorowy,header-partner-strategiczny,header-organizator-conferencji,header-partner-branzowy,header-wspolorganizator,header-patronat-polskiego-towarzystwa-technologow-zywnosci,header-glowni-partnerzy,header-patronat-warsaw-pack,header-partner-konferencji,header-prelegenci,header-prelegent,header-partner-radiowy,header-glowny-patron-medialny,header-partner-instytucjonalny\",\"rights\":\"200\",\"updated\":\"anna.bartyzel@warsawexpo.eu\",\"updated_at\":\"2026-02-20 14:01:24\",\"created_at\":\"2026-02-20 14:01:24\"},{\"id\":\"70\",\"slug\":\"header_order\",\"meta_data\":\"header-patronat-honorowy,header-partner-targow,header-partner-merytoryczny,header-partner-branzowy,header-partner-organizacyjny,header-partner-targow-i-konferencji,header-partner-strategiczny,header-organizator-conferencji,header-wspolorganizator,header-patronat-polskiego-towarzystwa-technologow-zywnosci,header-glowni-partnerzy,header-patronat-warsaw-pack,header-partner-konferencji,header-prelegenci,header-prelegent,header-partner-radiowy,header-glowny-patron-medialny,header-partner-instytucjonalny\",\"rights\":\"194\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2026-02-27 09:36:53\",\"created_at\":\"2026-02-27 09:36:53\"},{\"id\":\"71\",\"slug\":\"header_order\",\"meta_data\":\"header-partner-strategiczny,header-partner-targow,header-partner-targow-i-konferencji,header-partner-merytoryczny,header-partner-organizacyjny,header-patronat-honorowy,header-organizator-conferencji,header-partner-branzowy,header-wspolorganizator,header-patronat-polskiego-towarzystwa-technologow-zywnosci,header-glowni-partnerzy,header-patronat-warsaw-pack,header-partner-konferencji,header-prelegenci,header-prelegent,header-partner-radiowy,header-glowny-patron-medialny,header-partner-instytucjonalny\",\"rights\":\"181\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2026-03-02 14:47:25\",\"created_at\":\"2026-03-02 14:47:25\"},{\"id\":\"72\",\"slug\":\"logos_meta_order\",\"meta_data\":\"{\\\"header-patronat-honorowy\\\":\\\"2\\\",\\\"header-partner-targow\\\":\\\"1\\\",\\\"header-partner-merytoryczny\\\":\\\"3\\\",\\\"header-partner-organizacyjny\\\":\\\"4\\\",\\\"header-partner-targow-i-konferencji\\\":\\\"5\\\",\\\"header-partner-strategiczny\\\":\\\"6\\\",\\\"header-organizator-conferencji\\\":\\\"7\\\",\\\"header-partner-branzowy\\\":\\\"8\\\",\\\"header-wspolorganizator\\\":\\\"9\\\",\\\"header-patronat-polskiego-towarzystwa-technologow-zywnosci\\\":\\\"10\\\",\\\"header-glowni-partnerzy\\\":\\\"11\\\",\\\"header-patronat-warsaw-pack\\\":\\\"12\\\",\\\"header-partner-konferencji\\\":\\\"13\\\",\\\"header-prelegenci\\\":\\\"14\\\",\\\"header-prelegent\\\":\\\"15\\\",\\\"header-partner-radiowy\\\":\\\"16\\\",\\\"header-glowny-patron-medialny\\\":\\\"17\\\",\\\"header-partner-instytucjonalny\\\":\\\"18\\\",\\\"partner-merytoryczny\\\":\\\"21\\\",\\\"patron-medialny\\\":\\\"22\\\",\\\"partner-targow\\\":\\\"23\\\",\\\"partner-strategiczny\\\":\\\"24\\\",\\\"partner-honorowy\\\":\\\"25\\\",\\\"kraj-partnerski\\\":\\\"26\\\",\\\"international-partner\\\":\\\"26\\\",\\\"europe-event\\\":\\\"27\\\",\\\"principal-partner\\\":\\\"28\\\",\\\"industry-media-partner\\\":\\\"29\\\",\\\"organizatorzy-konferencji\\\":\\\"30\\\",\\\"partner-branzowy\\\":\\\"31\\\",\\\"miedzynarodowy-patron-medialny\\\":\\\"31\\\",\\\"partner-konferencji-green-gas-poland\\\":\\\"32\\\",\\\"glowny-patron-medialny\\\":\\\"33\\\"}\",\"rights\":\"186\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2026-05-06 08:53:25\",\"created_at\":\"2026-03-03 09:01:58\"},{\"id\":\"73\",\"slug\":\"logos_meta_order\",\"meta_data\":\"{\\\"header-patronat-honorowy\\\":\\\"1\\\",\\\"header-partner-targow\\\":\\\"2\\\",\\\"header-partner-merytoryczny\\\":\\\"3\\\",\\\"header-partner-branzowy\\\":\\\"4\\\",\\\"header-partner-organizacyjny\\\":\\\"5\\\",\\\"header-partner-targow-i-konferencji\\\":\\\"6\\\",\\\"header-partner-strategiczny\\\":\\\"7\\\",\\\"header-organizator-conferencji\\\":\\\"8\\\",\\\"header-wspolorganizator\\\":\\\"9\\\",\\\"header-patronat-polskiego-towarzystwa-technologow-zywnosci\\\":\\\"10\\\",\\\"header-glowni-partnerzy\\\":\\\"11\\\",\\\"header-patronat-warsaw-pack\\\":\\\"12\\\",\\\"header-partner-konferencji\\\":\\\"13\\\",\\\"header-prelegenci\\\":\\\"14\\\",\\\"header-prelegent\\\":\\\"15\\\",\\\"header-partner-radiowy\\\":\\\"16\\\",\\\"header-glowny-patron-medialny\\\":\\\"17\\\",\\\"header-partner-instytucjonalny\\\":\\\"18\\\",\\\"partner-targow\\\":\\\"19\\\",\\\"patron-medialny\\\":\\\"20\\\",\\\"partner-merytoryczny\\\":\\\"21\\\",\\\"partner-strategiczny\\\":\\\"22\\\",\\\"partner-honorowy\\\":\\\"23\\\",\\\"kraj-partnerski\\\":\\\"24\\\",\\\"europe-event\\\":\\\"25\\\",\\\"international-partner\\\":\\\"26\\\",\\\"principal-partner\\\":\\\"27\\\",\\\"industry-media-partner\\\":\\\"28\\\",\\\"organizatorzy-konferencji\\\":\\\"29\\\",\\\"partner-branzowy\\\":\\\"30\\\",\\\"miedzynarodowy-patron-medialny\\\":\\\"31\\\",\\\"partner-konferencji-green-gas-poland\\\":\\\"32\\\",\\\"glowny-patron-medialny\\\":\\\"33\\\"}\",\"rights\":\"194\",\"updated\":\"marek.rumianek@warsawexpo.eu\",\"updated_at\":\"2026-03-03 09:58:10\",\"created_at\":\"2026-03-03 09:57:29\"},{\"id\":\"74\",\"slug\":\"europe-event\",\"meta_data\":\"\\\"3626,717,718,719,3063,3064,3065,7799,3066,3067,3625,3627,3628,3629,7800,715,716\\\"\",\"rights\":\"99199\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2026-03-04 12:38:49\",\"created_at\":\"2026-03-03 15:26:45\"},{\"id\":\"75\",\"slug\":\"logos_meta_order\",\"meta_data\":\"{\\\"europe-event\\\":\\\"3\\\",\\\"partner-targow\\\":\\\"2\\\",\\\"patron-medialny\\\":\\\"3\\\",\\\"partner-strategiczny\\\":\\\"4\\\",\\\"international-partner\\\":\\\"5\\\",\\\"partner-merytoryczny\\\":\\\"6\\\",\\\"partner-konferencji\\\":\\\"7\\\",\\\"miedzynarodowy-patron-medialny\\\":\\\"8\\\",\\\"header-partner-strategiczny\\\":\\\"9\\\",\\\"header-partner-targow-i-konferencji\\\":\\\"10\\\",\\\"header-patronat-honorowy\\\":\\\"11\\\",\\\"partner-honorowy\\\":\\\"12\\\",\\\"kraj-partnerski\\\":\\\"13\\\",\\\"principal-partner\\\":\\\"14\\\",\\\"industry-media-partner\\\":\\\"15\\\",\\\"organizatorzy-konferencji\\\":\\\"16\\\",\\\"partner-branzowy\\\":\\\"17\\\",\\\"partner-konferencji-green-gas-poland\\\":\\\"18\\\",\\\"header-partner-targow\\\":\\\"19\\\",\\\"header-partner-merytoryczny\\\":\\\"20\\\",\\\"header-partner-organizacyjny\\\":\\\"21\\\",\\\"header-organizator-conferencji\\\":\\\"22\\\",\\\"header-partner-branzowy\\\":\\\"23\\\",\\\"header-wspolorganizator\\\":\\\"24\\\",\\\"header-patronat-polskiego-towarzystwa-technologow-zywnosci\\\":\\\"25\\\",\\\"header-glowni-partnerzy\\\":\\\"26\\\",\\\"header-patronat-warsaw-pack\\\":\\\"27\\\",\\\"header-partner-konferencji\\\":\\\"28\\\",\\\"header-prelegenci\\\":\\\"29\\\",\\\"header-prelegent\\\":\\\"30\\\",\\\"header-partner-radiowy\\\":\\\"31\\\",\\\"glowny-patron-medialny\\\":\\\"32\\\",\\\"header-glowny-patron-medialny\\\":\\\"33\\\",\\\"header-partner-instytucjonalny\\\":\\\"34\\\"}\",\"rights\":\"99199\",\"updated\":\"marek.rumianek@warsawexpo.eu\",\"updated_at\":\"2026-03-04 09:40:18\",\"created_at\":\"2026-03-04 09:40:15\"},{\"id\":\"76\",\"slug\":\"patron-medialny\",\"meta_data\":\"\\\"729,730,734,3079,3080,3081,3082,3083,3088,3091,3092,3093,3096,3097,3098,3099,3104,3111,3112,3113,3637,3638,3639,3640,3641,3642,3643,3644,3645,3649,3646,3648,3650,4289,4376,4519,4535,4536,4638,5022,5637,6226,6506,7727\\\"\",\"rights\":\"99199\",\"updated\":\"marek.rumianek@warsawexpo.eu\",\"updated_at\":\"2026-03-04 10:09:31\",\"created_at\":\"2026-03-04 10:09:31\"},{\"id\":\"77\",\"slug\":\"partner-targow\",\"meta_data\":\"\\\"723,720,721,722,724,3073,3074,3075,3077,3631,3632,3633,3635,3636,4207,4332,4412,4446,5636\\\"\",\"rights\":\"99199\",\"updated\":\"marek.rumianek@warsawexpo.eu\",\"updated_at\":\"2026-03-30 14:20:23\",\"created_at\":\"2026-03-04 10:59:17\"},{\"id\":\"78\",\"slug\":\"europe-event\",\"meta_data\":\"\\\"2729,2730,2731,2732,2733,5853,5856,5857,5858,5859,6529,6532,6530,6531,6533\\\"\",\"rights\":\"99399\",\"updated\":\"marek.rumianek@warsawexpo.eu\",\"updated_at\":\"2026-03-04 12:37:57\",\"created_at\":\"2026-03-04 12:37:57\"},{\"id\":\"79\",\"slug\":\"logos_meta_order\",\"meta_data\":\"{\\\"header-partner-targow-i-konferencji\\\":\\\"2\\\",\\\"header-patronat-warsaw-pack\\\":\\\"3\\\",\\\"header-partner-targow\\\":\\\"3\\\",\\\"header-partner-merytoryczny\\\":\\\"4\\\",\\\"header-partner-organizacyjny\\\":\\\"5\\\",\\\"header-patronat-honorowy\\\":\\\"6\\\",\\\"header-partner-strategiczny\\\":\\\"1\\\",\\\"header-organizator-conferencji\\\":\\\"8\\\",\\\"header-partner-branzowy\\\":\\\"9\\\",\\\"header-wspolorganizator\\\":\\\"10\\\",\\\"header-patronat-polskiego-towarzystwa-technologow-zywnosci\\\":\\\"11\\\",\\\"header-glowni-partnerzy\\\":\\\"12\\\",\\\"header-partner-konferencji\\\":\\\"13\\\",\\\"header-prelegenci\\\":\\\"14\\\",\\\"header-prelegent\\\":\\\"15\\\",\\\"partner-targow\\\":\\\"16\\\",\\\"patron-medialny\\\":\\\"17\\\",\\\"partner-merytoryczny\\\":\\\"18\\\",\\\"partner-strategiczny\\\":\\\"19\\\",\\\"partner-honorowy\\\":\\\"20\\\",\\\"europe-event\\\":\\\"22\\\",\\\"international-partner\\\":\\\"23\\\",\\\"principal-partner\\\":\\\"24\\\",\\\"industry-media-partner\\\":\\\"25\\\",\\\"partner-branzowy\\\":\\\"27\\\",\\\"miedzynarodowy-patron-medialny\\\":\\\"28\\\",\\\"partner-konferencji-green-gas-poland\\\":\\\"29\\\",\\\"header-partner-radiowy\\\":\\\"30\\\",\\\"glowny-patron-medialny\\\":\\\"31\\\",\\\"header-glowny-patron-medialny\\\":\\\"32\\\",\\\"header-partner-instytucjonalny\\\":\\\"33\\\"}\",\"rights\":\"154\",\"updated\":\"m.wolinska@warsawexpo.eu\",\"updated_at\":\"2026-03-27 10:35:59\",\"created_at\":\"2026-03-04 12:57:07\"},{\"id\":\"80\",\"slug\":\"logos_meta_order\",\"meta_data\":\"{\\\"partner-targow\\\":\\\"1\\\",\\\"patron-medialny\\\":\\\"2\\\",\\\"partner-merytoryczny\\\":\\\"3\\\",\\\"partner-strategiczny\\\":\\\"4\\\",\\\"partner-honorowy\\\":\\\"5\\\",\\\"kraj-partnerski\\\":\\\"6\\\",\\\"europe-event\\\":\\\"7\\\",\\\"international-partner\\\":\\\"8\\\",\\\"principal-partner\\\":\\\"9\\\",\\\"industry-media-partner\\\":\\\"10\\\",\\\"organizatorzy-konferencji\\\":\\\"11\\\",\\\"miedzynarodowy-patron-medialny\\\":\\\"13\\\",\\\"partner-konferencji-green-gas-poland\\\":\\\"14\\\",\\\"header-partner-merytoryczny\\\":\\\"16\\\",\\\"partner-branzowy\\\":\\\"8\\\",\\\"header-partner-organizacyjny\\\":\\\"17\\\",\\\"header-partner-targow\\\":\\\"18\\\",\\\"header-partner-targow-i-konferencji\\\":\\\"18\\\",\\\"header-patronat-honorowy\\\":\\\"19\\\",\\\"header-partner-strategiczny\\\":\\\"20\\\",\\\"header-organizator-conferencji\\\":\\\"21\\\",\\\"header-partner-branzowy\\\":\\\"22\\\",\\\"header-wspolorganizator\\\":\\\"23\\\",\\\"header-patronat-polskiego-towarzystwa-technologow-zywnosci\\\":\\\"24\\\",\\\"header-glowni-partnerzy\\\":\\\"25\\\",\\\"header-patronat-warsaw-pack\\\":\\\"26\\\",\\\"header-partner-konferencji\\\":\\\"27\\\",\\\"header-prelegenci\\\":\\\"28\\\",\\\"header-prelegent\\\":\\\"29\\\",\\\"header-partner-radiowy\\\":\\\"30\\\",\\\"glowny-patron-medialny\\\":\\\"31\\\",\\\"header-glowny-patron-medialny\\\":\\\"32\\\",\\\"header-partner-instytucjonalny\\\":\\\"33\\\"}\",\"rights\":\"89\",\"updated\":\"marek.rumianek@warsawexpo.eu\",\"updated_at\":\"2026-03-06 13:43:29\",\"created_at\":\"2026-03-06 13:34:15\"},{\"id\":\"86\",\"slug\":\"logos_meta_order\",\"meta_data\":\"{\\\"partner-targow\\\":\\\"1\\\",\\\"header-partner-strategiczny\\\":\\\"1\\\",\\\"patron-medialny\\\":\\\"2\\\",\\\"header-organizator-conferencji\\\":\\\"2\\\",\\\"partner-merytoryczny\\\":\\\"3\\\",\\\"header-partner-targow\\\":\\\"3\\\",\\\"partner-strategiczny\\\":\\\"4\\\",\\\"partner-honorowy\\\":\\\"5\\\",\\\"kraj-partnerski\\\":\\\"6\\\",\\\"europe-event\\\":\\\"7\\\",\\\"international-partner\\\":\\\"8\\\",\\\"principal-partner\\\":\\\"9\\\",\\\"industry-media-partner\\\":\\\"10\\\",\\\"organizatorzy-konferencji\\\":\\\"11\\\",\\\"partner-branzowy\\\":\\\"12\\\",\\\"miedzynarodowy-patron-medialny\\\":\\\"13\\\",\\\"partner-konferencji-green-gas-poland\\\":\\\"14\\\",\\\"header-partner-merytoryczny\\\":\\\"16\\\",\\\"header-partner-organizacyjny\\\":\\\"17\\\",\\\"header-partner-targow-i-konferencji\\\":\\\"18\\\",\\\"header-patronat-honorowy\\\":\\\"19\\\",\\\"header-partner-branzowy\\\":\\\"22\\\",\\\"header-wspolorganizator\\\":\\\"23\\\",\\\"header-patronat-polskiego-towarzystwa-technologow-zywnosci\\\":\\\"24\\\",\\\"header-glowni-partnerzy\\\":\\\"25\\\",\\\"header-patronat-warsaw-pack\\\":\\\"26\\\",\\\"header-partner-konferencji\\\":\\\"27\\\",\\\"header-prelegenci\\\":\\\"28\\\",\\\"header-prelegent\\\":\\\"29\\\",\\\"header-partner-radiowy\\\":\\\"30\\\",\\\"glowny-patron-medialny\\\":\\\"31\\\",\\\"header-glowny-patron-medialny\\\":\\\"32\\\",\\\"header-partner-instytucjonalny\\\":\\\"33\\\"}\",\"rights\":\"11\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2026-04-07 11:54:22\",\"created_at\":\"2026-04-07 07:46:37\"},{\"id\":\"87\",\"slug\":\"logos_meta_order\",\"meta_data\":\"{\\\"partner-targow\\\":\\\"1\\\",\\\"patron-medialny\\\":\\\"2\\\",\\\"partner-merytoryczny\\\":\\\"3\\\",\\\"partner-strategiczny\\\":\\\"4\\\",\\\"partner-honorowy\\\":\\\"5\\\",\\\"europe-event\\\":\\\"7\\\",\\\"international-partner\\\":\\\"8\\\",\\\"principal-partner\\\":\\\"9\\\",\\\"industry-media-partner\\\":\\\"10\\\",\\\"partner-branzowy\\\":\\\"12\\\",\\\"miedzynarodowy-patron-medialny\\\":\\\"13\\\",\\\"partner-konferencji-green-gas-poland\\\":\\\"14\\\",\\\"header-partner-targow\\\":\\\"19\\\",\\\"header-partner-merytoryczny\\\":\\\"16\\\",\\\"header-partner-organizacyjny\\\":\\\"17\\\",\\\"header-partner-targow-i-konferencji\\\":\\\"18\\\",\\\"header-patronat-honorowy\\\":\\\"15\\\",\\\"header-partner-strategiczny\\\":\\\"20\\\",\\\"header-organizator-conferencji\\\":\\\"21\\\",\\\"header-partner-branzowy\\\":\\\"22\\\",\\\"header-wspolorganizator\\\":\\\"23\\\",\\\"header-patronat-polskiego-towarzystwa-technologow-zywnosci\\\":\\\"24\\\",\\\"header-glowni-partnerzy\\\":\\\"25\\\",\\\"header-patronat-warsaw-pack\\\":\\\"26\\\",\\\"header-partner-konferencji\\\":\\\"27\\\",\\\"header-prelegenci\\\":\\\"28\\\",\\\"header-prelegent\\\":\\\"29\\\",\\\"header-partner-radiowy\\\":\\\"30\\\",\\\"glowny-patron-medialny\\\":\\\"31\\\",\\\"header-glowny-patron-medialny\\\":\\\"32\\\",\\\"header-partner-instytucjonalny\\\":\\\"33\\\"}\",\"rights\":\"147\",\"updated\":\"magdalena.szkoda@warsawexpo.eu\",\"updated_at\":\"2026-04-16 11:21:33\",\"created_at\":\"2026-04-16 11:21:18\"},{\"id\":\"88\",\"slug\":\"logos_meta_order\",\"meta_data\":\"{\\\"partner-targow\\\":\\\"1\\\",\\\"patron-medialny\\\":\\\"2\\\",\\\"partner-merytoryczny\\\":\\\"3\\\",\\\"partner-strategiczny\\\":\\\"4\\\",\\\"partner-honorowy\\\":\\\"5\\\",\\\"europe-event\\\":\\\"7\\\",\\\"international-partner\\\":\\\"8\\\",\\\"principal-partner\\\":\\\"9\\\",\\\"industry-media-partner\\\":\\\"10\\\",\\\"partner-branzowy\\\":\\\"12\\\",\\\"miedzynarodowy-patron-medialny\\\":\\\"13\\\",\\\"partner-konferencji-green-gas-poland\\\":\\\"14\\\",\\\"header-partner-targow\\\":\\\"18\\\",\\\"header-partner-merytoryczny\\\":\\\"16\\\",\\\"header-partner-organizacyjny\\\":\\\"17\\\",\\\"header-partner-targow-i-konferencji\\\":\\\"15\\\",\\\"header-patronat-honorowy\\\":\\\"19\\\",\\\"header-partner-strategiczny\\\":\\\"20\\\",\\\"header-organizator-conferencji\\\":\\\"21\\\",\\\"header-partner-branzowy\\\":\\\"22\\\",\\\"header-wspolorganizator\\\":\\\"23\\\",\\\"header-patronat-polskiego-towarzystwa-technologow-zywnosci\\\":\\\"24\\\",\\\"header-glowni-partnerzy\\\":\\\"25\\\",\\\"header-patronat-warsaw-pack\\\":\\\"26\\\",\\\"header-partner-konferencji\\\":\\\"27\\\",\\\"header-prelegenci\\\":\\\"28\\\",\\\"header-prelegent\\\":\\\"29\\\",\\\"header-partner-radiowy\\\":\\\"30\\\",\\\"glowny-patron-medialny\\\":\\\"31\\\",\\\"header-glowny-patron-medialny\\\":\\\"32\\\",\\\"header-partner-instytucjonalny\\\":\\\"33\\\"}\",\"rights\":\"138\",\"updated\":\"m.wolinska@warsawexpo.eu\",\"updated_at\":\"2026-05-06 08:02:10\",\"created_at\":\"2026-05-06 08:02:05\"}];\r\n                const updated_images_url = [{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/budo-sfera-logo.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/budowlane-materialy-logo.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/budownictwo-logo.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/czas-na-wnetrze-logo.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/ekspert-budowlany-logo.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/forum-firm-logo.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/kurier_kamieniarski.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/murator.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/muratorplus.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/narzedzia-polska-logo.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/nowy-kamieniarz-logo.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/URZ\\u0104DZAMY_PATRON_MEDIALNY.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/ABOUT_DECOR_PATRON_MEDIALNY.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/ARCHITEKTURA_PATRON_MEDIALNY.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/architektura-info-2-logo.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/architektura-info-logo.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/image.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/logo_forcenews.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/LOGO_A&B.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/patron-medialny\\\/89.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/partner-merytoryczny\\\/abra.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Content Partner\",\"logotypes_name\":\"Content Partner\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/warsawstone-com\\\/partners\\\/partner-merytoryczny\\\/wbiznes (1).webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Content Partner\",\"logotypes_name\":\"Content Partner\"}];\r\n\r\n                \/\/ console.log(get_database_logotypes_data);\r\n\r\n                \/\/ if (updated_images_url != null) {\r\n                \/\/     updated_images_url.forEach(logo => {\r\n                \/\/         if (logo.site !== \"\" && logo.site != null) {\r\n                \/\/             console.log(\"url:\" + logo.img + \" \" + \"link:\" + logo.site);\r\n                \/\/         }\r\n                \/\/     });\r\n                \/\/ }\r\n\r\n                \/\/ Funkcja do sprawdzania statusu obrazu\r\n                function checkImage(url, callback) {\r\n                    const img = new Image();\r\n                    img.onload = () => callback(true);\r\n                    img.onerror = () => callback(false);\r\n                    img.src = url;\r\n                }\r\n\r\n                document.querySelectorAll(\".pwe-logo-item img\").forEach(img => {\r\n                    const url = img.getAttribute(\"src\");\r\n\r\n                    \/\/ Check if the image exists\r\n                    checkImage(url, exists => {\r\n                        if (!exists) {\r\n                            \/\/ Delete the entire image container\r\n                            const container = img.closest(\".pwe-logo-item-container\");\r\n                            if (container) {\r\n                                container.remove();\r\n                            }\r\n                        }\r\n                    });\r\n                });\r\n\r\n            });\r\n        <\/script><\/div>[\/vc_column][\/vc_row][vc_row row_height_percent=&#8221;0&#8243; overlay_alpha=&#8221;50&#8243; gutter_size=&#8221;3&#8243; column_width_percent=&#8221;100&#8243; shift_y=&#8221;0&#8243; z_index=&#8221;0&#8243; desktop_visibility=&#8221;yes&#8221; medium_visibility=&#8221;yes&#8221; mobile_visibility=&#8221;yes&#8221; uncode_shortcode_id=&#8221;165162&#8243; el_class=&#8221;opinions-slider&#8221; el_id=&#8221;rekomendacje&#8221;][vc_column column_width_percent=&#8221;100&#8243; gutter_size=&#8221;3&#8243; overlay_alpha=&#8221;50&#8243; shift_x=&#8221;0&#8243; shift_y=&#8221;0&#8243; shift_y_down=&#8221;0&#8243; z_index=&#8221;0&#8243; medium_width=&#8221;0&#8243; mobile_width=&#8221;0&#8243; width=&#8221;1\/1&#8243; uncode_shortcode_id=&#8221;305695&#8243;][vc_custom_heading heading_semantic=&#8221;h4&#8243; text_size=&#8221;h4&#8243; uncode_shortcode_id=&#8221;864064&#8243; el_class=&#8221;main-heading-text&#8221;]Speakers&#8217; comments[\/vc_custom_heading]<style><\/style><div id=\"info-speaker-77809\" class=\"info-speaker\">\r\n        <style>\r\n            #info-speaker-77809 {\r\n                text-align: center;\r\n                display: flex;\r\n                justify-content: center;\r\n                flex-wrap: wrap;\r\n                gap: 18px;\r\n            }\r\n            #info-speaker-77809 .pwe-speaker {\r\n                width: 150px !important;\r\n                min-width: 150px;\r\n                display: flex;\r\n                flex-direction: column;\r\n                text-align: center;\r\n                justify-content: space-between;\r\n                gap: 14px;\r\n            }\r\n            #info-speaker-77809 .pwe-speaker-name {\r\n                color: black;\r\n            }\r\n            #info-speaker-77809 .pwe-speaker-img {\r\n                width: 100%;\r\n                border-radius: 0;\r\n                margin: 0 auto;\r\n                aspect-ratio: 1\/1;\r\n                object-fit: cover;\r\n            }\r\n            #info-speaker-77809 .pwe-speaker-excerpt {\r\n                display: flex;\r\n                flex-direction: column;\r\n                gap: 14px;\r\n            }\r\n            #info-speaker-77809 .pwe-speaker-btn {\r\n                margin: 10px auto !important;\r\n                color: white;\r\n                background-color: #dccdb0;\r\n                border: 1px solid #dccdb0;\r\n                padding: 6px 16px;\r\n                font-weight: 600;\r\n                width: 80px;\r\n                border-radius: 10px;\r\n                transition: .3s ease;\r\n            }\r\n            #info-speaker-77809 .pwe-speaker-btn:hover {\r\n                color: white;\r\n                background-color: #c8b99c!important;\r\n                border: 1px solid #c8b99c!important;\r\n            }\r\n            #pweSpeakerModal-44071 {\r\n                position: fixed;\r\n                z-index: 9999;\r\n                left: 0;\r\n                top: 0;\r\n                width: 100%;\r\n                height: 100%;\r\n                overflow: hidden;\r\n                background-color: rgba(0, 0, 0, 0.7);\r\n                display: flex;\r\n                justify-content: center;\r\n                align-items: center;\r\n                visibility: hidden;\r\n                transition: opacity 0.3s, visibility 0.3s;\r\n            }\r\n            #pweSpeakerModal-44071 .pwe-speaker-modal-content {\r\n                position: relative;\r\n                background-color: #fefefe;\r\n                margin: 15% auto;\r\n                padding: 20px;\r\n                border: 1px solid #888;\r\n                border-radius: 20px;\r\n                overflow-y: auto;\r\n                width: 80%;\r\n                max-width: 700px;\r\n                max-height: 90%;\r\n                transition: transform 0.3s;\r\n                transform: scale(0);\r\n            }\r\n            #pweSpeakerModal-44071 .pwe-speaker-modal-close {\r\n                position: absolute;\r\n                right: 18px;\r\n                top: -6px;\r\n                color: #000;\r\n                float: right;\r\n                font-size: 50px;\r\n                font-weight: bold;\r\n                transition: transform 0.3s;\r\n                font-family: monospace;\r\n            }\r\n            #pweSpeakerModal-44071 .pwe-speaker-modal-close:hover,\r\n            #pweSpeakerModal-44071 .pwe-speaker-modal-close:focus {\r\n                color: black;\r\n                text-decoration: none;\r\n                cursor: pointer;\r\n                transform: scale(1.2);\r\n            }\r\n            #pweSpeakerModal-44071 .pwe-speaker-modal-title,\r\n            #pweSpeakerModal-44071 .pwe-speaker-modal-excerpt,\r\n            #pweSpeakerModal-44071 .pwe-speaker-modal-desc {\r\n                margin: 18px 0 0;\r\n            }\r\n            #pweSpeakerModal-44071 .pwe-speaker-modal-excerpt {\r\n                text-align: center;\r\n                max-width: 80%;\r\n            }\r\n            #pweSpeakerModal-44071.is-visible {\r\n                opacity: 1;\r\n                visibility: visible;\r\n            }\r\n            #pweSpeakerModal-44071.is-visible .pwe-speaker-modal-content {\r\n                transform: scale(1);\r\n            }\r\n            #pweSpeakerModal-44071.is-visible .pwe-speaker-modal-image {\r\n                border-radius: 10px;\r\n            }\r\n        <\/style>\r\n                <style>\r\n                        #PWESpeakersSlider-36120 {\r\n                                width: 100%;\r\n                                overflow: hidden;\r\n                                margin: 0 !important;\r\n                                -webkit-touch-callout: none; \r\n                                -webkit-user-select: none;\r\n                                -khtml-user-select: none;\r\n                                -moz-user-select: none; \r\n                                -ms-user-select: none; \r\n                                user-select: none;\r\n                                opacity: 0;\r\n                        }\r\n                        #PWESpeakersSlider-36120 .slides {\r\n                                display: flex;\r\n                                align-items: stretch;\r\n                                justify-content: space-between;\r\n                                margin: 0 !important;\r\n                                min-height: 0 !important;\r\n                                min-width: 0 !important;\r\n                                pointer-events: auto;\r\n                        }\r\n                        #PWESpeakersSlider-36120 .pwe-speaker {\r\n                                padding:0;\r\n                                object-fit: contain !important;\r\n                                flex: 1;\r\n                        }\r\n                        #PWESpeakersSlider-36120 .pwe-speaker :is(span, p, h2, h3, h4, h5) {\r\n                                margin: 0 !important;\r\n                        }\r\n                        #PWESpeakersSlider-36120 .pwe-speaker-container{\r\n                                margin: 5px !important;\r\n                                padding: 10px;\r\n                        }\r\n                        #PWESpeakersSlider-36120 .pwe-speaker-img {\r\n                                background-repeat: no-repeat;\r\n                                background-position: center;\r\n                                background-size: cover;\r\n                        }\r\n                        #PWESpeakersSlider-36120 .pwe-speaker-name {\r\n                                font-size: 24px;\r\n                                color: #dccdb0;\r\n                        }\r\n                        #PWESpeakersSlider-36120 .pwe-speaker-excerpt {\r\n                                color: #dccdb0;\r\n                        }\r\n                        @keyframes slideAnimation {\r\n                                from {\r\n                                        transform: translateX(100%);\r\n                                }\r\n                                to {\r\n                                        transform: translateX(0);\r\n                                }\r\n                        }\r\n                        #PWESpeakersSlider-36120 .slides .slide {\r\n                                animation: slideAnimation 0.5s ease-in-out;\r\n                        }\r\n                <\/style>\r\n                <div id=\"PWESpeakersSlider-36120\" class=\"pwe-speakers-slider\">\r\n                        <div class=\"slides\"><\/div>\r\n                        <style>\r\n                                #PWESpeakersSlider-36120 .dots-container {\r\n                                        display: none;\r\n                                        text-align: center;\r\n                                        margin-top: 18px !important;\r\n                                }\r\n                                #PWESpeakersSlider-36120 .dot {\r\n                                        display: inline-block;\r\n                                        width: 15px;\r\n                                        height: 15px;\r\n                                        border-radius: 50%;\r\n                                        background-color: #bbb;\r\n                                        margin: 0 5px;\r\n                                        cursor: pointer;\r\n                                }\r\n                                #PWESpeakersSlider-36120 .dot.active {\r\n                                        background-color: #dccdb0;\r\n                                }   \r\n                        <\/style>\r\n                        <div class=\"dots-container\">\r\n                                <span class=\"dot active\"><\/span>\r\n                                <span class=\"dot\"><\/span>\r\n                                <span class=\"dot\"><\/span>\r\n                        <\/div><\/div>\r\n                <script>\r\n                        jQuery(function ($) {                         \r\n                                const slider = document.querySelector(\"#PWESpeakersSlider-36120\");\r\n                                const slides = slider.querySelector(\".slides\");\r\n                                const images = slides.querySelectorAll(\".pwe-speaker\");     \r\n                                \r\n                                const dotsContainer = slider.querySelector(\".dots-container\");\r\n                                const dots = slider.querySelectorAll(\".dots-container .dot\");\r\n\r\n                                let isMouseOver = false;\r\n                                let isDragging = false;\r\n                                \r\n                                let imagesMulti = \"\";\r\n                                const slidesWidth = slides.clientWidth;\r\n                                \r\n                                if (slidesWidth < 420) {\r\n                                        imagesMulti = 1;\r\n                                } else if (slidesWidth < 768) {\r\n                                        imagesMulti = 2;\r\n                                } else {\r\n                                        imagesMulti = 3;\r\n                                }\r\n                                \r\n                                if(imagesMulti >=  0){\r\n                                        $(\"#PWESpeakersSlider-36120 .slides\").each(function(){\r\n                                                $(this).css(\"justify-content\", \"center\");\r\n                                                if ($(this).children().length > 0){\r\n                                                        $(this).children().slice(0).remove();\r\n                                                };\r\n\r\n                                        });\r\n                                        const imageWidth = Math.floor((slidesWidth - imagesMulti * 10) \/ imagesMulti);\r\n                                        images.forEach((image) => {\r\n                                                image.style.maxWidth = imageWidth + \"px\";\r\n                                                image.style.minWidth = imageWidth + \"px\";\r\n                                        });\r\n                                } else {\r\n                                        const imageWidth = Math.floor((slidesWidth - imagesMulti * 10) \/ imagesMulti);\r\n                                        images.forEach((image) => {\r\n                                                image.style.minWidth = imageWidth + \"px\";\r\n                                                image.style.maxWidth = imageWidth + \"px\";\r\n                                        });\r\n                                        const slidesTransform =  (imageWidth + 10) * 0;\r\n\r\n                                        slides.style.transform = `translateX(-${slidesTransform}px)`;\r\n\r\n                                        if (dotsContainer) {\r\n                                                dotsContainer.style.display = \"block\";\r\n                                        }\r\n\r\n                                        function nextSlide() {\r\n                                                slides.querySelectorAll(\"#PWESpeakersSlider-36120 .pwe-speaker-container\").forEach(function(image){\r\n                                                        image.classList.add(\"slide\");\r\n                                                })\r\n\r\n                                                const firstSlide = slides.firstElementChild;\r\n                                                if (firstSlide) {\r\n                                                        firstSlide.classList.add(\"first-slide\");\r\n\r\n                                                        \/\/ Przesuwamy pierwszy slajd na koniec\r\n                                                        slides.appendChild(firstSlide);\r\n\r\n                                                        setTimeout(() => {\r\n                                                        firstSlide.classList.remove(\"first-slide\");\r\n                                                        }, 1500);\r\n                                                }\r\n\r\n                                                setTimeout(function() {\r\n                                                        slides.querySelectorAll(\"#PWESpeakersSlider-36120 .pwe-speaker-container\").forEach(function(image){\r\n                                                                image.classList.remove(\"slide\");\r\n                                                        })\r\n                                                }, 1500);\r\n\r\n                                                updateCurrentSlide(1);\r\n                                        }                       \r\n\r\n                                        slider.addEventListener(\"mousemove\", function() {\r\n                                                isMouseOver = true;\r\n                                        });\r\n                                        \r\n                                        slider.addEventListener(\"mouseleave\", function() {\r\n                                                isMouseOver = false;\r\n                                        });\r\n\r\n                                        let isDown = false;\r\n                                        let startX;\r\n                                        let startY;\r\n                                        let slideMove = 0;\r\n                                        let currentSlide = 0;\r\n\r\n                                        function updateDots() {\r\n                                                if (dots[currentSlide]) {\r\n                                                        dots.forEach(dot => dot.classList.remove(\"active\"));\r\n                                                        dots[currentSlide].classList.add(\"active\");\r\n                                                }\r\n                                        }\r\n\r\n                                        function updateCurrentSlide(delta) {\r\n                                                currentSlide = (currentSlide + delta + dots.length) % dots.length;\r\n                                                updateDots();\r\n                                        }\r\n\r\n                                        slider.addEventListener(\"mousedown\", (e) => {\r\n                                                isDown = true;\r\n                                                slider.classList.add(\"active\");\r\n                                                startX = e.pageX - slider.offsetLeft;\r\n                                        });\r\n\r\n                                        slider.addEventListener(\"mouseleave\", () => {\r\n                                                isDown = false;\r\n                                                slider.classList.remove(\"active\");\r\n                                                resetSlider(slideMove);\r\n                                                slideMove = 0;\r\n                                        });\r\n\r\n                                        slider.addEventListener(\"mouseup\", () => {\r\n                                                isDown = false;\r\n                                                slider.classList.remove(\"active\");\r\n                                                resetSlider(slideMove);\r\n                                                slideMove = 0;\r\n                                        });\r\n\r\n                                        slider.addEventListener(\"mousemove\", (e) => {\r\n                                                if (!isDown) return;\r\n                                                e.preventDefault();\r\n                                                let preventDefaultNextTime = true;\r\n\r\n                                                $(e.target).parent().on(\"click\", function(event) {\r\n                                                        if (preventDefaultNextTime) {\r\n                                                                event.preventDefault();\r\n                                                                preventDefaultNextTime = true;\r\n\r\n                                                                setTimeout(() => {\r\n                                                                        preventDefaultNextTime = false;\r\n                                                                }, 200);\r\n                                                        }\r\n                                                });\r\n                                                const x = e.pageX - slider.offsetLeft;\r\n                                                const walk = (x - startX);\r\n                                                const transformWalk = slidesTransform - walk;\r\n                                                slides.style.transform = `translateX(-${transformWalk}px)`;\r\n                                                slideMove = (walk \/ imageWidth);\r\n                                        });\r\n\r\n                                        \/\/ Kod obs\u0142uguj\u0105cy przesuwanie dotykiem na urz\u0105dzeniach mobilnych\r\n\r\n                                        slider.addEventListener(\"touchstart\", (e) => {\r\n                                                isDown = true;\r\n                                                slider.classList.add(\"active\");\r\n                                                startX = e.touches[0].pageX - slider.offsetLeft;\r\n                                                startY = e.touches[0].pageY;\r\n                                        });\r\n\r\n                                        slider.addEventListener(\"touchend\", () => {\r\n                                                isDown = false;\r\n                                                slider.classList.remove(\"active\");\r\n                                                resetSlider(slideMove);\r\n                                                slideMove = 0;\r\n                                        });\r\n\r\n                                        slider.addEventListener(\"touchmove\", (e) => {\r\n                                                if (!isDown) return;\r\n                                        \r\n                                                if (!e.cancelable) return; \/\/ Dodajemy ten warunek, aby unikn\u0105\u0107 b\u0142\u0119du\r\n                                        \r\n                                                const x = e.touches[0].pageX - slider.offsetLeft;\r\n                                                const y = e.touches[0].pageY;\r\n                                                const walk = (x - startX);\r\n                                                const verticalDiff = Math.abs(y - startY);\r\n                                        \r\n                                                if (Math.abs(walk) > verticalDiff) { \/\/ Tylko je\u015bli ruch poziomy jest wi\u0119kszy ni\u017c pionowy\r\n                                                        e.preventDefault();\r\n                                                        const transformWalk = slidesTransform - walk;\r\n                                                        slides.style.transform = `translateX(-${transformWalk}px)`;\r\n                                                        slideMove = (walk \/ imageWidth);\r\n                                                }\r\n                                        });\r\n                                        \r\n                                        const resetSlider = (slideWalk) => {\r\n                                                const slidesMove = Math.abs(Math.round(slideWalk));\r\n                                                for(i = 0; i < slidesMove; i++){\r\n                                                        if (slideWalk > 0) {\r\n                                                                const lastSlide = slides.lastElementChild;\r\n                                                                if (lastSlide) {\r\n                                                                        lastSlide.classList.add(\"last-slide\");\r\n                                                                        slides.insertBefore(lastSlide, slides.firstChild);\r\n                                                                        lastSlide.classList.remove(\"last-slide\");\r\n                                                                        \r\n                                                                        updateCurrentSlide(-1);\r\n                                                                        \r\n                                                                }\r\n                                                        } else {\r\n                                                                const firstSlide = slides.firstElementChild;\r\n                                                                if (firstSlide) {\r\n                                                                        firstSlide.classList.add(\"first-slide\");\r\n                                                                        slides.appendChild(firstSlide);\r\n                                                                        firstSlide.classList.remove(\"first-slide\");\r\n                                                                       \r\n                                                                        updateCurrentSlide(1);\r\n                                                                        \r\n                                                                }\r\n                                                        }\r\n                                                }\r\n                                                slides.style.transform = `translateX(-${slidesTransform}px)`;\r\n                                        }\r\n                                        setInterval(function() {\r\n                                                if(!isMouseOver) { \r\n                                                        nextSlide()\r\n                                                }\r\n                                        }, 3000);\r\n                                }\r\n\r\n                                if (slider) {\r\n                                        slider.style.opacity = 1;\r\n                                        slider.style.transition = \"opacity 0.3s ease\";\r\n                                }\r\n                        });                 \r\n                <\/script>\r\n            <script>\r\n                document.addEventListener(\"DOMContentLoaded\", function () {\r\n                    const speakers = document.querySelectorAll(\"#info-speaker-77809 .pwe-speaker\");\r\n                    \r\n                    speakers.forEach((speaker) => {\r\n                        const img = speaker.querySelector(\".pwe-speaker-img\");\r\n                        const name = speaker.querySelector(\".pwe-speaker-name\");\r\n                        const excerpt = speaker.querySelector(\".pwe-speaker-excerpt\");\r\n                        const desc = speaker.querySelector(\".pwe-speaker-desc\");\r\n                        const btn = speaker.querySelector(\".pwe-speaker-btn\");\r\n\r\n                        if (!desc || desc.textContent.trim() === \"\" && desc.children.length === 0) {\r\n                            speaker.style.justifyContent = \"flex-start\";\r\n                        }\r\n\r\n                        if (img && img.src == undefined) {\r\n                            const backgroundImage = window.getComputedStyle(img).getPropertyValue(\"background-image\");\r\n                            \/\/ Extracting the URL from the background-image value in the slider\r\n                            const urlMatch = backgroundImage.match(\/url\\(\\\"?(.*?)\\\"?\\)\/);\r\n                            const imageUrl = urlMatch ? urlMatch[1] : null;\r\n                            if (imageUrl) {\r\n                                img.src = imageUrl;\r\n                            }\r\n                        }\r\n                        \r\n                        if (btn) {\r\n                            btn.addEventListener(\"click\", function() {\r\n                                const modalDiv = document.createElement(\"div\");\r\n                                modalDiv.className = \"pwe-speaker-modal\";\r\n                                modalDiv.id = \"pweSpeakerModal-44071\";\r\n                                modalDiv.innerHTML = `\r\n                                    <div class=\"pwe-speaker-modal-content\" style=\"display:flex; flex-direction:column; align-items:center; padding:20px;\">\r\n                                        <span class=\"pwe-speaker-modal-close\">&times;<\/span>\r\n                                        <img decoding=\"async\" class=\"pwe-speaker-modal-image\" src=\"\" alt=\"Speaker Image\" style=\"width:100%; max-width:150px;\">\r\n                                        <h5 class=\"pwe-speaker-modal-title\">${name.innerHTML}<\/h5>\r\n                                        <div class=\"pwe-speaker-modal-desc\">${desc.innerHTML}<\/div>\r\n                                    <\/div>\r\n                                `;\r\n\r\n                                if (img) {\r\n                                    modalDiv.querySelector(\".pwe-speaker-modal-image\").src = img.src;\r\n                                } else {\r\n                                    modalDiv.querySelector(\".pwe-speaker-modal-image\").style.display = \"none\";\r\n                                }\r\n                                \r\n                                document.body.appendChild(modalDiv);\r\n                                requestAnimationFrame(() => {\r\n                                    modalDiv.classList.add(\"is-visible\");\r\n                                });\r\n                                disableScroll();\r\n\r\n                                \/\/ Close modal\r\n                                modalDiv.querySelector(\".pwe-speaker-modal-close\").addEventListener(\"click\", function() {\r\n                                    modalDiv.classList.remove(\"is-visible\");\r\n                                    setTimeout(() => {\r\n                                        modalDiv.remove();\r\n                                        enableScroll();\r\n                                    }, 300); \/\/ Czekaj na zako\u0144czenie animacji przed usuni\u0119ciem\r\n                                });\r\n\r\n                                modalDiv.addEventListener(\"click\", function(event) {\r\n                                    if (event.target === modalDiv) {\r\n                                        modalDiv.classList.remove(\"is-visible\");\r\n                                        setTimeout(() => {\r\n                                            modalDiv.remove();\r\n                                            enableScroll();\r\n                                        }, 300);\r\n                                    }\r\n                                });\r\n                            });\r\n                        }\r\n                    });\r\n                });\r\n\r\n                \/\/ Functions to turn scrolling off and on\r\n                function disableScroll() {\r\n                    document.body.style.overflow = \"hidden\";\r\n                    document.documentElement.style.overflow = \"hidden\";\r\n                }\r\n                function enableScroll() {\r\n                    document.body.style.overflow = \"\";\r\n                    document.documentElement.style.overflow = \"\";\r\n                }\r\n            <\/script>\r\n        <\/div>[\/vc_column][\/vc_row][vc_row][vc_column width=&#8221;1\/1&#8243;]<div class=\"pwelement pwelement_22841\">\r\n            <style>\r\n                #pweConfSideEvents :is(.conf-side-row, .conf-side-footer){\r\n                    margin-top: 36px;\r\n                    display: flex;\r\n                    justify-content: space-between;\r\n                    align-items: center;\r\n                }\r\n                #pweConfSideEvents .side-event-image{\r\n                    max-width: 35%;\r\n                }\r\n                #pweConfSideEvents .side-event-text{\r\n                    max-width: 60%;\r\n                }\r\n                #pweConfSideEvents .side-event-footer-btn{\r\n                    max-width: 20%;\r\n                    margin: auto;\r\n                }\r\n                #pweConfSideEvents .side-event-footer-text{\r\n                    max-width: 75%;\r\n                }\r\n                #pweConfSideEvents :is(.side-event-text h5, .side-event-heading-text){\r\n                    margin-top: 0;\r\n                    text-transform: uppercase;\r\n                    padding: 0 12px 10px 0;\r\n                    box-shadow: 9px 9px 0px -6px #dccdb0;\r\n                }\r\n                @media (max-width:569px){\r\n                    #pweConfSideEvents :is(.conf-side-row, .conf-side-footer){\r\n                        flex-direction: column;\r\n                    }\r\n                    #pweConfSideEvents :is(.side-event-image, .side-event-text, .side-event-footer-btn, .side-event-footer-text){\r\n                        margin-top: 9px;\r\n                        max-width: 100%;\r\n                    }\r\n                    #pweConfSideEvents :is(h5, h4){\r\n                        margin: auto;\r\n                    }\r\n                }\r\n            <\/style>\r\n        \r\n            <div id=\"pweConfSideEvents\">\r\n                <h4 class=\"side-event-heading-text\">     See what else we have prepared<\/h4>\r\n                <div class=\"conf-side-row\">\r\n                    <div class=\"side-event-image\">\r\n                        <img decoding=\"async\" src=\"\/wp-content\/plugins\/pwe-media\/media\/kafelek-medale2.webp\">\r\n                    <\/div>\r\n                    <div class=\"side-event-text\">\r\n                        <h5>    Celebrating Excellence: Medal Awards Ceremony<\/h5>\r\n                        <p>    This event honors the best of the best, highlighting their contributions to the industry\u2019s development and showcasing the most advanced solutions in the following categories:<\/p>\r\n                        <p>    <strong>Trade Fair Premiere:<\/strong> Recognition for exhibitors who introduced innovative products or services at the fair, presenting them to the public for the first time.<\/p>\r\n                        <p>    <strong>Innovation:<\/strong> An award for companies that have presented groundbreaking technologies or solutions with the potential to revolutionize the industry.<\/p>\r\n                        <p>    <strong>Trade Fair Display:<\/strong> A prize awarded for exceptional booth design and aesthetics that stand out for their creativity and attract visitors\u2019 attention.<\/p>\r\n                        <p>    <strong>Trade Fair Product:<\/strong> An award for exhibitors whose product stands out for its quality, functionality, and significance for the industry\u2019s development, earning recognition from both visitors and experts.<\/p>\r\n                    <\/div>\r\n                <\/div>\r\n                <div class=\"conf-side-row\"><div class=\"side-event-text\">\r\n                        <h5>    The trade fair studio<\/h5>\r\n                        <p>    We invite you to the <strong>Trade Fair Studio<\/strong>, where during exclusive interviews with industry experts and outstanding exhibitors, you will learn about the latest trends and innovative solutions. In this inspiring environment, market leaders will share their experiences and visions for the future, providing valuable insights and knowledge. The <strong>Trade Fair Studio<\/strong> is also connected with the <strong>Medal Award Ceremony<\/strong>, where distinguished exhibitors are honored, adding prestige to the event and highlighting the importance of innovation and excellence in the industry..<\/p>\r\n                        <p><\/p>\r\n                    <\/div><div class=\"side-event-image\">\r\n                            <img decoding=\"async\" src=\"\/wp-content\/plugins\/pwe-media\/media\/kafelek-studio-en.webp\">\r\n                        <\/div><\/div>\r\n                <div class=\"conf-side-row\">\r\n                    <div class=\"side-event-image\">\r\n                        <img decoding=\"async\" src=\"\/wp-content\/plugins\/pwe-media\/media\/kafelek-networking-en.webp\">\r\n                    <\/div>\r\n                    <div class=\"side-event-text\">\r\n                        <h5>    Inspiring conversations and new opportunities \u2013 the networking zone awaits!<\/h5>\r\n                        <p>    <strong>The B2B Networking Zone is an extension of the conference<\/strong>, offering participants a unique opportunity to engage in direct discussions with speakers and other industry experts. In this zone, attendees can exchange insights, ask questions, and establish valuable business connections in a more informal atmosphere.<\/p>\r\n                        <p>    Join us to deepen your knowledge, continue the inspiring discussions from the conference, and form valuable relationships that can benefit both you and your company!<\/p>\r\n                    <\/div>\r\n                <\/div>\r\n                    \r\n            <\/div>\r\n        <\/div>[\/vc_column][\/vc_row][vc_row][vc_column width=&#8221;1\/1&#8243;]<div class=\"pwelement pwelement_13117\">\r\n            <style>\r\n                .row-parent:has(.pwelement_13117 .pwe-container-conference-section) {\r\n                    max-width: 100% !important;\r\n                    padding: 0 !important;  \r\n                }\r\n                .pwelement_13117 .pwe-container-conference-section {\r\n                    position: relative;\r\n                    background-position: center;\r\n                }\r\n                .pwelement_13117 .pwe-container-conference-section:before {\r\n                    content: \"\";\r\n                    position: absolute;\r\n                    top: 0;\r\n                    left: 0;\r\n                    right: 0;\r\n                    bottom: 0;\r\n                    background-color: #dccdb0;\r\n                    opacity: 0.8;\r\n                    z-index: 0;\r\n                }\r\n                .pwelement_13117 .pwe-conference-section-columns {\r\n                    position: relative;\r\n                    max-width: 1200px;\r\n                    margin: 0 auto;\r\n                    display: flex;\r\n                    gap: 18px;\r\n                    z-index: 1;\r\n                }\r\n                .pwelement_13117 .pwe-conference-section-column {\r\n                    display: flex;\r\n                    flex-direction: column;\r\n                    justify-content: center;\r\n                    gap: 18px;\r\n                    width: 50%;\r\n                }\r\n                .pwelement_13117 .pwe-conference-section-logo {\r\n                    max-width: 400px;\r\n                }\r\n                .pwelement_13117 .pwe-conference-section-logo img {\r\n                    width: 100%;\r\n                }\r\n                .pwelement_13117 .pwe-btn-container {\r\n                    padding-top: 0 !important;\r\n                }\r\n                .pwelement_13117 .pwe-conference-section-btn .pwe-link {\r\n                    transform: none !important;\r\n                    color: white !important;\r\n                    background-color: #424242 !important;\r\n                    border: 1px solid #424242 !important;\r\n                }\r\n                .pwelement_13117 .pwe-conference-section-btn .pwe-link:hover {\r\n                    color: white !important;\r\n                    background-color: #2e2e2e !important;\r\n                    border: 1px solid #2e2e2e !important;\r\n                }\r\n                @media (max-width:960px){\r\n                    .pwelement_13117 .pwe-conference-section-columns {\r\n                        flex-direction: column;\r\n                        padding: 36px;\r\n                        gap: 36px;\r\n                    }\r\n                    .pwelement_13117 .pwe-conference-section-column {\r\n                        width: 100%;\r\n                        gap: 18px;\r\n                    }\r\n                    .pwelement_13117 .pwe-conference-logo-column,\r\n                    .pwelement_13117 .pwe-conference-section-logo {\r\n                        margin: 0 auto;\r\n                    }\r\n                }  \r\n            <\/style>\r\n                <style>\r\n                    .pwelement_13117 .pwe-conference-section-columns {\r\n                        padding: 36px;\r\n                    }\r\n                    .pwelement_13117 .pwe-conference-logo-column {\r\n                        align-items: center;\r\n                    }\r\n                    .pwelement_13117 .pwe-gallery-thumbs {\r\n                        display: flex;\r\n                        flex-direction: column;\r\n                        width: 100%;\r\n                    }\r\n                    .pwelement_13117 .pwe-gallery-desc-wrapper .pwe-btn-container,\r\n                    .pwelement_13117 .pwe-gallery-thumbs-wrapper .pwe-btn-container {\r\n                        display: flex;\r\n                        justify-content: left;\r\n                        text-align: center;\r\n                    }\r\n                    .pwelement_13117 .pwe-gallery-thumbs-top,\r\n                    .pwelement_13117 .pwe-gallery-thumbs-bottom {\r\n                        display: flex;\r\n                        flex-wrap: wrap;\r\n                        width: 100%;\r\n                    }\r\n                    .pwelement_13117 .pwe-gallery-thumbs-top img,\r\n                    .pwelement_13117 .pwe-gallery-thumbs-bottom img {\r\n                        width: 50%;\r\n                        padding: 5px;\r\n                        border-radius: 16px;\r\n                    }\r\n                    .pwelement_13117 .slides img {\r\n                        border-radius: 16px;\r\n                    }\r\n                <\/style>\r\n\r\n                <div id=\"pweConfSection\" class=\"pwe-container-conference-section\" style=\"background-image: url(\/wp-content\/plugins\/pwe-media\/media\/conference-background.webp);\">\r\n                    <div class=\"pwe-conference-section-columns\">\r\n                        <div class=\"pwe-conference-section-column pwe-conference-gallery-column\">\r\n                            <div class=\"pwe-gallery-thumbs\">\r\n                                <div class=\"pwe-gallery-thumbs-top\">\r\n                                    <img decoding=\"async\" class=\"mini-img\" src=\"\/wp-content\/plugins\/pwe-media\/media\/events-mini\/event_1.webp\" alt=\"mini gallery picture\">\r\n                                    <img decoding=\"async\" class=\"mini-img\" src=\"\/wp-content\/plugins\/pwe-media\/media\/events-mini\/event_2.webp\" alt=\"mini gallery picture\">\r\n                                <\/div>\r\n                                <div class=\"pwe-gallery-thumbs-bottom\">\r\n                                    <img decoding=\"async\" class=\"mini-img\" src=\"\/wp-content\/plugins\/pwe-media\/media\/events-mini\/event_3.webp\" alt=\"mini gallery picture\">\r\n                                    <img decoding=\"async\" class=\"mini-img\" src=\"\/wp-content\/plugins\/pwe-media\/media\/events-mini\/event_4.webp\" alt=\"mini gallery picture\">\r\n                                <\/div>\r\n                            <\/div>  \r\n                            <div class=\"pwe-conference-section-btn\">\r\n                                <div class=\"pwe-btn-container\">    <a class=\"pwe-link btn pwe-btn\" href=\"\/en\/gallery\/\" alt=\"link to gallery\">Go to gallery<\/a><\/div> \r\n                            <\/div>   \r\n                                 \r\n                        <\/div> \r\n                        <div class=\"pwe-conference-section-column pwe-conference-logo-column\">\r\n                            <div class=\"pwe-conference-section-logo\">\r\n                                <img decoding=\"async\" src=\"\/doc\/kongres.webp\" alt=\"conference logo\">\r\n                            <\/div>\r\n                            <div class=\"pwe-conference-section-btn\">\r\n                                <div class=\"pwe-btn-container\">\r\n                                    <a class=\"pwe-link btn pwe-btn\" href=\"\/en\/registration\/\">Register and take part<\/a><\/a>  \r\n                                <\/div>\r\n                            <\/div>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div>\r\n            <\/div>[\/vc_column][\/vc_row][vc_row row_height_percent=&#8221;0&#8243; overlay_alpha=&#8221;50&#8243; gutter_size=&#8221;3&#8243; column_width_percent=&#8221;100&#8243; shift_y=&#8221;0&#8243; z_index=&#8221;0&#8243; uncode_shortcode_id=&#8221;179300&#8243; el_id=&#8221;konferencja-galeria&#8221; el_class=&#8221;konferencja-galeria&#8221;][vc_column width=&#8221;1\/1&#8243;]<div class=\"pwelement pwelement_67653\"><style>\r\n                                            \/* Columns *\/\r\n                                            #pweMediaGallery-63293 .pwe-media-gallery {\r\n                                                column-gap: 0;\r\n                                            }\r\n                                            #pweMediaGallery-63293 .pwe-media-gallery-image {\r\n                                                padding: 5px;\r\n                                            }\r\n                                            #pweMediaGallery-63293 .pwe-media-gallery-image img {\r\n                                                border-radius: 0px;\r\n                                            }\r\n                                            @media (min-width: 960px) {\r\n                                                #pweMediaGallery-63293 .pwe-media-gallery {\r\n                                                    column-count: 3;\r\n                                                }\r\n                                            }\r\n                                            @media (max-width: 959px) {\r\n                                                #pweMediaGallery-63293 .pwe-media-gallery {\r\n                                                    column-count: 2;\r\n                                                }\r\n                                            }\r\n                                            @media (max-width: 480px) {\r\n                                                #pweMediaGallery-63293 .pwe-media-gallery {\r\n                                                    column-count: 2;\r\n                                                }\r\n                                            } \r\n                                        <\/style>\r\n            <div id=\"pweMediaGallery-63293\" class=\"pwe-container-media-gallery\">\r\n                <div class=\"pwe-media-gallery-wrapper\">\r\n                        <div class=\"pwe-gallery-container pwe-media-gallery\">\r\n                        <link href=\"\/wp-content\/plugins\/PWElements\/includes\/media-gallery\/assets\/justified-gallery\/justifiedGallery.css\" rel=\"stylesheet\">\r\n                        <script src=\"\/wp-content\/plugins\/PWElements\/includes\/media-gallery\/assets\/justified-gallery\/jquery.justifiedGallery.js\"><\/script>\r\n                        <div class=\"pwe-media-gallery-image\">\r\n                                                <img decoding=\"async\" src=\"https:\/\/warsawstone.com\/wp-content\/uploads\/2026\/01\/1.jpg\" style=\"\">\r\n                                            <\/div><div class=\"pwe-media-gallery-image\">\r\n                                                <img decoding=\"async\" src=\"https:\/\/warsawstone.com\/wp-content\/uploads\/2026\/01\/2.jpg\" style=\"\">\r\n                                            <\/div><div class=\"pwe-media-gallery-image\">\r\n                                                <img decoding=\"async\" src=\"https:\/\/warsawstone.com\/wp-content\/uploads\/2026\/01\/3.jpg\" style=\"\">\r\n                                            <\/div><div class=\"pwe-media-gallery-image\">\r\n                                                <img decoding=\"async\" src=\"https:\/\/warsawstone.com\/wp-content\/uploads\/2026\/01\/4.jpg\" style=\"\">\r\n                                            <\/div><div class=\"pwe-media-gallery-image\">\r\n                                                <img decoding=\"async\" src=\"https:\/\/warsawstone.com\/wp-content\/uploads\/2026\/01\/5.jpg\" style=\"\">\r\n                                            <\/div><div class=\"pwe-media-gallery-image\">\r\n                                                <img decoding=\"async\" src=\"https:\/\/warsawstone.com\/wp-content\/uploads\/2026\/01\/6.jpg\" style=\"\">\r\n                                            <\/div><div class=\"pwe-media-gallery-image\">\r\n                                                <img decoding=\"async\" src=\"https:\/\/warsawstone.com\/wp-content\/uploads\/2026\/01\/7.jpg\" style=\"\">\r\n                                            <\/div><\/div>  \r\n                <\/div>\r\n            <\/div>\r\n                    <script>\r\n                    {\r\n                        let enableScrolling = true;\r\n                        window.isDragging = false;\r\n\r\n                        const imagesArray = Array.from(document.querySelectorAll(\"#pweMediaGallery-63293 .pwe-media-gallery-image img\"));\r\n                \r\n                        imagesArray.forEach((image, index) => {\r\n                            image.addEventListener(\"click\", (e) => {\r\n\r\n                                if (window.isDraggingMedia) {\r\n                                    e.preventDefault(); \/\/ Block the opening of the modal if there was movement\r\n                                    window.isDraggingMedia = false; \/\/ Reset the flag after the click is handled\r\n                                    return;\r\n                                }\r\n\r\n                                \/\/ Create popup\r\n                                const popupDiv = document.createElement(\"div\");\r\n                                popupDiv.className = \"pwe-media-gallery-popup\";\r\n\r\n                                \/\/ Left arrow for previous image\r\n                                const leftArrow = document.createElement(\"span\");\r\n                                leftArrow.innerHTML = \"&#10094;\"; \/\/ HTML entity for left arrow\r\n                                leftArrow.className = \"pwe-media-gallery-left-arrow pwe-media-gallery-arrow\";\r\n                                popupDiv.appendChild(leftArrow);\r\n\r\n                                \/\/ Right arrow for next image\r\n                                const rightArrow = document.createElement(\"span\");\r\n                                rightArrow.innerHTML = \"&#10095;\"; \/\/ HTML entity for right arrow\r\n                                rightArrow.className = \"pwe-media-gallery-right-arrow pwe-media-gallery-arrow\";\r\n                                popupDiv.appendChild(rightArrow);\r\n                        \r\n                                \/\/ Close btn\r\n                                const closeSpan = document.createElement(\"span\");\r\n                                closeSpan.innerHTML = \"&times;\";\r\n                                closeSpan.className = \"pwe-media-gallery-close\";\r\n                                popupDiv.appendChild(closeSpan);\r\n                        \r\n                                const popupImage = document.createElement(\"img\");\r\n                                popupImage.src = image.getAttribute(\"src\");\r\n                                popupImage.alt = \"Popup Image\";\r\n                                popupDiv.appendChild(popupImage);\r\n                        \r\n                                \/\/ Add popup to <body>\r\n                                document.body.appendChild(popupDiv);\r\n                                popupDiv.style.display = \"flex\";\r\n\r\n                                disableScroll();\r\n                                enableScrolling = false;\r\n\r\n                                \/\/ Function to change image in popup\r\n                                let currentIndex = index; \/\/ Przechowuj bie\u017c\u0105cy indeks jako zmienn\u0105 zewn\u0119trzn\u0105\r\n\r\n                                const changeImage = (direction) => {\r\n                                    \/\/ Zastosowanie klasy fade-out przed zmian\u0105 \u017ar\u00f3d\u0142a obrazu\r\n                                    popupImage.classList.add(\"fade-out\");\r\n                                    popupImage.classList.remove(\"fade-in\");\r\n\r\n                                    setTimeout(() => {\r\n                                        currentIndex += direction;\r\n\r\n                                        if (currentIndex >= imagesArray.length) {\r\n                                            currentIndex = 0; \/\/ Wraca do pierwszego obrazka\r\n                                        } else if (currentIndex < 0) {\r\n                                            currentIndex = imagesArray.length - 1; \/\/ Przechodzi do ostatniego obrazka\r\n                                        }\r\n\r\n                                        popupImage.src = imagesArray[currentIndex].getAttribute(\"src\");\r\n\r\n                                        \/\/ Usuni\u0119cie klasy fade-out i dodanie fade-in po zmianie \u017ar\u00f3d\u0142a obrazu\r\n                                        popupImage.classList.remove(\"fade-out\");\r\n                                        popupImage.classList.add(\"fade-in\");\r\n                                    }, 100);\r\n                                };\r\n\r\n                                leftArrow.addEventListener(\"click\", () => changeImage(-1));\r\n                                rightArrow.addEventListener(\"click\", () => changeImage(1));\r\n\r\n                                \/\/ Remove popup when clicking the close button\r\n                                closeSpan.addEventListener(\"click\", () => {\r\n                                    popupDiv.remove();\r\n                                    enableScroll();\r\n                                    enableScrolling = true;\r\n                                });\r\n\r\n                                \/\/ Remove popup when clicking outside the image\r\n                                popupDiv.addEventListener(\"click\", (event) => {\r\n                                    if (event.target === popupDiv) { \/\/ Checks if the clicked element is the popupDiv itself\r\n                                        popupDiv.remove();\r\n                                        enableScroll();\r\n                                        enableScrolling = true;\r\n                                    }\r\n                                });\r\n                            });\r\n                        });\r\n\r\n                        \/\/ Prevent scrolling on touchmove when enableScrolling is false\r\n                        document.body.addEventListener(\"touchmove\", (event) => {\r\n                            if (!enableScrolling) {\r\n                                event.preventDefault();\r\n                            }\r\n                        }, { passive: false });\r\n\r\n                        \/\/ Disable page scrolling\r\n                        function disableScroll() {\r\n                            document.body.style.overflow = \"hidden\";\r\n                            document.documentElement.style.overflow = \"hidden\";\r\n                        }\r\n\r\n                        \/\/ Enable page scrolling\r\n                        function enableScroll() {\r\n                            document.body.style.overflow = \"\";\r\n                            document.documentElement.style.overflow = \"\";\r\n                        }\r\n                }\r\n                <\/script>\r\n            <script>\r\n                document.addEventListener(\"DOMContentLoaded\", function() {\r\n                    let pweMediaGallery = document.querySelectorAll(\".pwe-container-media-gallery\");\r\n                    pweMediaGallery.forEach((element) => {\r\n                        if (element) {\r\n                            element.style.opacity = 1;\r\n                            element.style.transition = \"opacity 0.3s ease\";\r\n                        }\r\n                    });\r\n                });\r\n            <\/script> \r\n        <script>\r\n            document.addEventListener(\"DOMContentLoaded\", function() {\r\n                let pweElement = document.querySelector(\".pwelement_67653\");\r\n                let pweElementRow = document.querySelector(\".row-container:has(.pwelement_67653)\");\r\n                let pweMediaGalleryContainer = pweElement.querySelector(\".pwe-container-media-gallery\") !== null;\r\n\r\n                if (pweMediaGalleryContainer == false) {\r\n                    pweElementRow.classList.add(\"desktop-hidden\", \"tablet-hidden\", \"mobile-hidden\");\r\n                }\r\n            });\r\n        <\/script><\/div>[\/vc_column][\/vc_row]<\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>[vc_row][vc_column width=&#8221;1\/1&#8243;][\/vc_column][\/vc_row][vc_row row_height_percent=&#8221;0&#8243; override_padding=&#8221;yes&#8221; h_padding=&#8221;2&#8243; top_padding=&#8221;2&#8243; bottom_padding=&#8221;0&#8243; overlay_alpha=&#8221;50&#8243; gutter_size=&#8221;3&#8243; column_width_percent=&#8221;100&#8243; shift_y=&#8221;0&#8243; z_index=&#8221;0&#8243; uncode_shortcode_id=&#8221;147349&#8243;][vc_column width=&#8221;1\/1&#8243;][\/vc_column][\/vc_row][vc_row unlock_row=&#8221;&#8221; row_height_percent=&#8221;0&#8243; overlay_alpha=&#8221;50&#8243; gutter_size=&#8221;3&#8243; column_width_percent=&#8221;100&#8243; shift_y=&#8221;0&#8243; [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-253","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Stone Industry and Stone Processing Technology Conference - Stone Expo 2027<\/title>\n<meta name=\"description\" content=\"Check out the events accompanying Stone Poland 2027 \u2013 conferences, lectures, meetings.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/warsawstone.com\/en\/conferences\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Stone Industry and Stone Processing Technology Conference - Stone Expo 2027\" \/>\n<meta property=\"og:description\" content=\"Check out the events accompanying Stone Poland 2027 \u2013 conferences, lectures, meetings.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/warsawstone.com\/en\/conferences\/\" \/>\n<meta property=\"og:site_name\" content=\"Stone Expo\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-27T09:47:43+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/warsawstone.com\\\/en\\\/conferences\\\/\",\"url\":\"https:\\\/\\\/warsawstone.com\\\/en\\\/conferences\\\/\",\"name\":\"Stone Industry and Stone Processing Technology Conference - Stone Expo 2027\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/warsawstone.com\\\/#website\"},\"datePublished\":\"2024-01-29T13:17:58+00:00\",\"dateModified\":\"2026-01-27T09:47:43+00:00\",\"description\":\"Check out the events accompanying Stone Poland 2027 \u2013 conferences, lectures, meetings.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/warsawstone.com\\\/en\\\/conferences\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/warsawstone.com\\\/en\\\/conferences\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/warsawstone.com\\\/en\\\/conferences\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Strona g\u0142\u00f3wna\",\"item\":\"https:\\\/\\\/warsawstone.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Stone Industry and Stone Processing Technology Conference\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/warsawstone.com\\\/#website\",\"url\":\"https:\\\/\\\/warsawstone.com\\\/\",\"name\":\"Stone Expo\",\"description\":\"International Fair of Natural Stone and Stonework Machinery\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/warsawstone.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Stone Industry and Stone Processing Technology Conference - Stone Expo 2027","description":"Check out the events accompanying Stone Poland 2027 \u2013 conferences, lectures, meetings.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/warsawstone.com\/en\/conferences\/","og_locale":"en_US","og_type":"article","og_title":"Stone Industry and Stone Processing Technology Conference - Stone Expo 2027","og_description":"Check out the events accompanying Stone Poland 2027 \u2013 conferences, lectures, meetings.","og_url":"https:\/\/warsawstone.com\/en\/conferences\/","og_site_name":"Stone Expo","article_modified_time":"2026-01-27T09:47:43+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/warsawstone.com\/en\/conferences\/","url":"https:\/\/warsawstone.com\/en\/conferences\/","name":"Stone Industry and Stone Processing Technology Conference - Stone Expo 2027","isPartOf":{"@id":"https:\/\/warsawstone.com\/#website"},"datePublished":"2024-01-29T13:17:58+00:00","dateModified":"2026-01-27T09:47:43+00:00","description":"Check out the events accompanying Stone Poland 2027 \u2013 conferences, lectures, meetings.","breadcrumb":{"@id":"https:\/\/warsawstone.com\/en\/conferences\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/warsawstone.com\/en\/conferences\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/warsawstone.com\/en\/conferences\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Strona g\u0142\u00f3wna","item":"https:\/\/warsawstone.com\/en\/"},{"@type":"ListItem","position":2,"name":"Stone Industry and Stone Processing Technology Conference"}]},{"@type":"WebSite","@id":"https:\/\/warsawstone.com\/#website","url":"https:\/\/warsawstone.com\/","name":"Stone Expo","description":"International Fair of Natural Stone and Stonework Machinery","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/warsawstone.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/warsawstone.com\/en\/wp-json\/wp\/v2\/pages\/253","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/warsawstone.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/warsawstone.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/warsawstone.com\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/warsawstone.com\/en\/wp-json\/wp\/v2\/comments?post=253"}],"version-history":[{"count":15,"href":"https:\/\/warsawstone.com\/en\/wp-json\/wp\/v2\/pages\/253\/revisions"}],"predecessor-version":[{"id":1198,"href":"https:\/\/warsawstone.com\/en\/wp-json\/wp\/v2\/pages\/253\/revisions\/1198"}],"wp:attachment":[{"href":"https:\/\/warsawstone.com\/en\/wp-json\/wp\/v2\/media?parent=253"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}