\
';
});
}
if (jquery_1679091c5a880faf6fb5e6087eb1b2dc('.form_1679091c5a880faf6fb5e6087eb1b2dc_overlay').length) {
var $videoIframe = jquery_1679091c5a880faf6fb5e6087eb1b2dc('.form_1679091c5a880faf6fb5e6087eb1b2dc_overlay iframe[data-video-type]');
//If there is an iframe with video, it should have it's src rewritten to not autoplay it's content until needed
if ($videoIframe.length) {
var src = $videoIframe.attr('src'),
type = $videoIframe.attr('data-video-type');
if ($videoIframe.attr('src') !== '') {
if (type === 'kartra') {
var videoData = $videoIframe.attr('data-video');
if (typeof videoData === 'undefined') {
videoData = $videoIframe.attr('data-playlist');
$videoIframe.attr('data-playlist', videoData.replace(/autoplay/g, 'autoplay=false&autoplaceholder'));
} else {
$videoIframe.attr('data-video', videoData.replace(/autoplay/g, 'autoplay=false&autoplaceholder'));
}
$videoIframe.attr('src', src.replace(/autoplay/g, 'autoplay=false&autoplaceholder'));
} else {
$videoIframe.attr('src', src.replace(/autoplay/g, 'noautoplay'));
}
}
}
}
jquery_1679091c5a880faf6fb5e6087eb1b2dc(document).ready(function() {
var $optinForm = jquery_1679091c5a880faf6fb5e6087eb1b2dc('.form_class_1679091c5a880faf6fb5e6087eb1b2dc form');
var $existingReferrerInput = $optinForm.find('input [name="referrer"]');
var $existingUuidInput = $optinForm.find('input [name="kuid"]');
var $existingAffiliateInput = $optinForm.find('input [name="kaff"]');
var urlParams = getUrlParams();
var kartraPage = getKartraPage();
var inIframe = isInIframe();
var referrer = '';
var affiliateData = '';
var uuid = window.kuuid;
var searchParams = new URLSearchParams(window.location.search);
var memberHash = $optinForm.attr('data-kt-owner') || '';
if (inIframe) {
if (
'undefined' !== typeof window.jsVars
&& 'undefined' !== typeof window.jsVars.current_trackable_asset
) {
referrer = window.jsVars.current_trackable_asset;
} else if (searchParams.has('referrer')) {
referrer = searchParams.get('referrer');
} else {
referrer = window.location.href.split('?')[0];
}
affiliateData = searchParams.get('kaff');
} else {
if (kartraPage) {
referrer = kartraPage;
} else {
referrer = window.location.href.split('?')[0];
}
affiliateData = memberHash && checkForAffiliate(memberHash);
}
jquery_1679091c5a880faf6fb5e6087eb1b2dc.each(urlParams, function(index, param) {
var existingUrlParamInput = $optinForm.find('input [name="' + param.key + '"]');
if (!existingUrlParamInput.length) {
$optinForm.append('');
}
});
if (!$existingReferrerInput.length) {
$optinForm.append('');
}
if (!$existingUuidInput.length) {
$optinForm.append('');
}
if (
affiliateData
&& affiliateData !== ''
) {
if ($existingAffiliateInput.length) {
$existingAffiliateInput.val(affiliateData);
} else {
$optinForm.append('');
}
}
setTimeout(function(){
changeCaptchaColor(jquery_1679091c5a880faf6fb5e6087eb1b2dc('.form_class_1679091c5a880faf6fb5e6087eb1b2dc form'));
}, 1000);
//Custom dropdown close
jquery_1679091c5a880faf6fb5e6087eb1b2dc(document).click(function(event) {
if (jquery_1679091c5a880faf6fb5e6087eb1b2dc(event.target).closest('.kartra_optin_selectpicker').length === 0 ) {
jquery_1679091c5a880faf6fb5e6087eb1b2dc('.kartra_optin_dropdown-menu').hide();
}
});
//Custom dropdown open
jquery_1679091c5a880faf6fb5e6087eb1b2dc(document).on('click', '[data-toggle="kartra_dropdown"]', function() {
jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).parent().find('.kartra_optin_dropdown-menu').show();
});
//Handle custom dropdown mimicking the selectpicker behaviour
jquery_1679091c5a880faf6fb5e6087eb1b2dc(document).on('click', '.kartra_optin_customDropdown li a', function(){
var $element = jquery_1679091c5a880faf6fb5e6087eb1b2dc(this),
$parent = $element.parents('li:first'),
$bootstrapSelect = $element.parents('.kartra_optin_bootstrap-select:first'),
$customDropdown = $element.parents('.kartra_optin_customDropdown:first');
if (!$parent.hasClass('disabled')) {
var identifier = jquery_1679091c5a880faf6fb5e6087eb1b2dc('span', $element).attr('data-for'),
value = jquery_1679091c5a880faf6fb5e6087eb1b2dc('span', $element).attr('data-value').toString(),
text = jquery_1679091c5a880faf6fb5e6087eb1b2dc('.text', $element).text(),
selectedText = '';
if (identifier === 'country_code') {
selectedText = '+' + value;
} else {
selectedText = text;
}
if (value !== '' && typeof value !== 'undefined') {
jquery_1679091c5a880faf6fb5e6087eb1b2dc('.kartra_optin_filter-option', $bootstrapSelect).text(selectedText).addClass('selected');
jquery_1679091c5a880faf6fb5e6087eb1b2dc('input[name="' + identifier + '"]').val(value);
jquery_1679091c5a880faf6fb5e6087eb1b2dc('li', $customDropdown).removeClass('selected');
$parent.addClass('selected');
}
$customDropdown.hide();
}
});
jquery_1679091c5a880faf6fb5e6087eb1b2dc(document).on('click', '.closecross, .js_kartra_optin_collapser', function(event) {
jquery_1679091c5a880faf6fb5e6087eb1b2dc('.form_class_1679091c5a880faf6fb5e6087eb1b2dc iframe').each(function(index, el) {
var frameDOM = jquery_1679091c5a880faf6fb5e6087eb1b2dc(this)[0];
var frameWindow = frameDOM.contentWindow ? frameDOM.contentWindow : frameDOM.contentDocument.defaultView;
frameWindow.postMessage({"func":"pause"}, '*');
});
});
jquery_1679091c5a880faf6fb5e6087eb1b2dc(document).on("click", ".kartra_optin_radio", function(){
jquery_1679091c5a880faf6fb5e6087eb1b2dc("[name='"+jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).attr("name")+"']").parents(".kartra_optin_radio_parent").removeClass("ez-selected").removeClass("kartra_optin-selected");
jquery_1679091c5a880faf6fb5e6087eb1b2dc("[name='"+jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).attr("name")+"']").each(function(index, element){
if (jquery_1679091c5a880faf6fb5e6087eb1b2dc(element).is(":checked")) {
jquery_1679091c5a880faf6fb5e6087eb1b2dc(element).parents(".kartra_optin_radio_parent").addClass("ez-selected").addClass("kartra_optin-selected");
}
});
});
jquery_1679091c5a880faf6fb5e6087eb1b2dc(document).on("click", ".kartra_optin_chk", function(){
if (jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).is(":checked")) {
jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).parents(".kartra_optin_chk_parent").addClass("ez-checked").addClass("kartra_optin-checked");
} else {
jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).parents(".kartra_optin_chk_parent").removeClass("ez-checked").removeClass("kartra_optin-checked");
}
});
jquery_1679091c5a880faf6fb5e6087eb1b2dc('.form_class_1679091c5a880faf6fb5e6087eb1b2dc .close').on('click', function() {
jquery_1679091c5a880faf6fb5e6087eb1b2dc('.form_1679091c5a880faf6fb5e6087eb1b2dc_overlay').fadeOut();
jquery_1679091c5a880faf6fb5e6087eb1b2dc("body").css('overflow','');
jquery_1679091c5a880faf6fb5e6087eb1b2dc('html').css('overflow','');
jquery_1679091c5a880faf6fb5e6087eb1b2dc('body').removeClass("kartra_body_reset");
});
jquery_1679091c5a880faf6fb5e6087eb1b2dc(document).on('change', '#terms_1679091c5a880faf6fb5e6087eb1b2dc', function() {
var $tncCheck = jquery_1679091c5a880faf6fb5e6087eb1b2dc(this),
$form = $tncCheck.parents('.form_class_1679091c5a880faf6fb5e6087eb1b2dc:first'),
$submitButton = $form.find('.submit_button_1679091c5a880faf6fb5e6087eb1b2dc, .kartra_optin_submit_btn');
kartra_validate_optin('1679091c5a880faf6fb5e6087eb1b2dc');
});
jquery_1679091c5a880faf6fb5e6087eb1b2dc('.js_gdpr_terms_check').on("change", function() {
kartra_validate_optin('1679091c5a880faf6fb5e6087eb1b2dc');
});
jquery_1679091c5a880faf6fb5e6087eb1b2dc('.js_gdpr_communications_check').on("change", function() {
kartra_validate_optin('1679091c5a880faf6fb5e6087eb1b2dc');
});
jquery_1679091c5a880faf6fb5e6087eb1b2dc(document).on("click", '.show_modal_1679091c5a880faf6fb5e6087eb1b2dc,.show_modal_own_1679091c5a880faf6fb5e6087eb1b2dc', function(){
if (jquery_1679091c5a880faf6fb5e6087eb1b2dc('.form_1679091c5a880faf6fb5e6087eb1b2dc_overlay:first').attr('data-autoplay-triggered') !== 'true') {
jquery_1679091c5a880faf6fb5e6087eb1b2dc('.form_1679091c5a880faf6fb5e6087eb1b2dc_overlay:first').attr('data-autoplay-triggered', 'true');
var $videoIframe = jquery_1679091c5a880faf6fb5e6087eb1b2dc('.form_1679091c5a880faf6fb5e6087eb1b2dc_overlay:first iframe[data-video-type]');
if ($videoIframe.length) {
var src = $videoIframe.attr('src'),
type = $videoIframe.attr('data-video-type');
if ($videoIframe.attr('src') !== '' && src.indexOf('autop') > -1) {
if (type === 'kartra') {
var videoData = $videoIframe.attr('data-video');
if (typeof videoData === 'undefined') {
videoData = $videoIframe.attr('data-playlist');
$videoIframe.attr('data-playlist', videoData.replace(/autoplay=false&/g, ''));
$videoIframe.attr('data-playlist', videoData.replace(/autoplaceholder/g, 'autoplay'));
} else {
$videoIframe.attr('data-video', videoData.replace(/autoplay=false&/g, ''));
$videoIframe.attr('data-video', videoData.replace(/autoplaceholder/g, 'autoplay'));
}
$videoIframe.attr('src', src.replace(/autoplay=false&/g, ''));
$videoIframe.attr('src', src.replace(/autoplaceholder/g, 'autoplay'));
} else {
$videoIframe.attr('src', src.replace(/noautoplay/g, 'autoplay'));
}
}
}
}
jquery_1679091c5a880faf6fb5e6087eb1b2dc('.form_1679091c5a880faf6fb5e6087eb1b2dc_overlay:first').show();
// trigger the analytics - start
jquery_1679091c5a880faf6fb5e6087eb1b2dc('.form_1679091c5a880faf6fb5e6087eb1b2dc_overlay:first').attr('id', 'form_1679091c5a880faf6fb5e6087eb1b2dc_overlay_shown');
var elem = document.getElementById('form_1679091c5a880faf6fb5e6087eb1b2dc_overlay_shown');
var event = new Event('kartra_show_hidden_asset');
elem.dispatchEvent(event);
jquery_1679091c5a880faf6fb5e6087eb1b2dc('.form_1679091c5a880faf6fb5e6087eb1b2dc_overlay:first').removeAttr('id');
// trigger the analytics - end
jquery_1679091c5a880faf6fb5e6087eb1b2dc("html").css('overflow','hidden');
jquery_1679091c5a880faf6fb5e6087eb1b2dc('body').addClass("kartra_body_reset");
adjustFormByResolution();
});
jquery_1679091c5a880faf6fb5e6087eb1b2dc('[data-screenshot="true"]').each(function() {
var src = jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).attr('data-thumbnail');
jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).html('');
});
jquery_1679091c5a880faf6fb5e6087eb1b2dc('input, select, button, textarea').on('focus', function() {
jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).removeClass('form_1679091c5a880faf6fb5e6087eb1b2dc_error_border');
if (jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).is(':radio') || jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).is(':checkbox')) {
jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).parents('.kartra_optin_field').find('small').removeClass('form_1679091c5a880faf6fb5e6087eb1b2dc_error_border');
}
});
jquery_1679091c5a880faf6fb5e6087eb1b2dc(document)
.off('click','.form_class_1679091c5a880faf6fb5e6087eb1b2dc .submit_button_1679091c5a880faf6fb5e6087eb1b2dc, .form_class_1679091c5a880faf6fb5e6087eb1b2dc .kartra_optin_submit_btn')
.on('click','.form_class_1679091c5a880faf6fb5e6087eb1b2dc .submit_button_1679091c5a880faf6fb5e6087eb1b2dc, .form_class_1679091c5a880faf6fb5e6087eb1b2dc .kartra_optin_submit_btn', function (e) {
e.preventDefault();
jquery_1679091c5a880faf6fb5e6087eb1b2dc('.form_class_1679091c5a880faf6fb5e6087eb1b2dc .kartra_optin_submit_btn').attr('disabled', true);
setTimeout(function(){
jquery_1679091c5a880faf6fb5e6087eb1b2dc('.form_class_1679091c5a880faf6fb5e6087eb1b2dc .kartra_optin_submit_btn').attr('disabled', false);
}, 3000);
var error = false,
the_form = jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).parents('.form_class_1679091c5a880faf6fb5e6087eb1b2dc form').first(),
captchaVerification = null;
jquery_1679091c5a880faf6fb5e6087eb1b2dc.each(the_form.find('.required_1679091c5a880faf6fb5e6087eb1b2dc'), function() {
if (jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).is(':radio') || jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).is(':checkbox')) {
if (the_form.find('[name="'+jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).attr('name')+'"]:checked').length==0) {
the_form.find('[name="'+jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).attr('name')+'"]').siblings('small').addClass('form_1679091c5a880faf6fb5e6087eb1b2dc_error_border');
error = true;
return;
} else {
the_form.find('[name="'+jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).attr('name')+'"]').siblings('small').removeClass('form_1679091c5a880faf6fb5e6087eb1b2dc_error_border');
}
}
if (jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).is(':hidden')) {
if(jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).val()=='' || jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).val()==null) {
error = true;
jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).parent().find('.kartra_optin_bootstrap-select button.dropdown-toggle').addClass('form_1679091c5a880faf6fb5e6087eb1b2dc_error_border');
} else {
jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).parent().find('.kartra_optin_bootstrap-select button.dropdown-toggle').removeClass('form_1679091c5a880faf6fb5e6087eb1b2dc_error_border');
}
} else {
if ( (!jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).is(':radio') && !jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).is(':checkbox')) &&
(jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).val()=='' || jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).val()==null
|| (jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).attr('name') == 'email' && !validateEmail(jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).val()))) ) {
jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).addClass('form_1679091c5a880faf6fb5e6087eb1b2dc_error_border');
error = true;
return;
} else {
jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).removeClass('form_1679091c5a880faf6fb5e6087eb1b2dc_error_border');
}
}
});
if (!error) {
if (the_form.find('[name="captcha"]').length) {
var captchaPattern = the_form.find('[name="captcha"]').val(),
captchaPatternId = the_form.find('[name="captcha_patterns_id"]').val(),
fillColor = the_form.find('[name="captcha"]').css('color');
captchaVerification = verifyCaptcha(captchaPattern, captchaPatternId, fillColor);
}
Promise.resolve(captchaVerification).then(function(response) {
if (response && !response.success) {
the_form.find('.js_kartra_captcha').html(response.new_svg.svg);
the_form.find('[name="captcha_patterns_id"]').val(response.new_svg.captcha_patterns_id);
the_form.find('[name="captcha"]').addClass('form_1679091c5a880faf6fb5e6087eb1b2dc_error_border');
} else {
the_form.submit();
}
});
}
});
jquery_1679091c5a880faf6fb5e6087eb1b2dc('body').append(jquery_1679091c5a880faf6fb5e6087eb1b2dc('.form_1679091c5a880faf6fb5e6087eb1b2dc_overlay').detach());
adjustFormByResolution();
kartra_checkout_jquery = jquery_1679091c5a880faf6fb5e6087eb1b2dc;
//apply sanitation on the form
var variables = {"sanitation_rules":{"numeric":"[0-9]","decimal":"[0-9\\.]","domain":"[a-zA-Z0-9\\-\\_\\&\\?\\.\\:\\\/\\=$\\+\\!\\*\\'\\(\\)\\;\\@\\#\\~\\[\\]\\%\\,\\`\\{\\}]","email":"[a-zA-Z0-9\\+\\=\\-\\_\\.\\@$]","letters":"[a-zA-Z\\ \\\u00e0\\\u00e2\\\u00e4\\\u00f4\\\u00e9\\\u00e8\\\u00eb\\\u00ea\\\u00ef\\\u00ee\\\u00e7\\\u00f9\\\u00fb\\\u00fc\\\u00ff\\\u00e6\\\u0153\\\u00c0\\\u00c2\\\u00c4\\\u00d4\\\u00c9\\\u00c8\\\u00cb\\\u00ca\\\u00cf\\\u00ce\\\u0178\\\u00c7\\\u00d9\\\u00db\\\u00dc\\\u00c6\\\u0152\\\u00e4\\\u00f6\\\u00fc\\\u00df\\\u00c4\\\u00d6\\\u00dc\\\u0105\\\u0107\\\u0119\\\u0142\\\u0144\\\u00f3\\\u015b\\\u017a\\\u017c\\\u0104\\\u0106\\\u0118\\\u0141\\\u0143\\\u00d3\\\u015a\\\u0179\\\u017b\\\u0117\\\u0116\\\u012f\\\u012e\\\u0173\\\u0173\\\u0172\\\u016b\\\u016a\\\u00e0\\\u00e8\\\u00e9\\\u00ec\\\u00ed\\\u00ee\\\u00f2\\\u00f3\\\u00f9\\\u00fa\\\u00c0\\\u00c8\\\u00c9\\\u00cc\\\u00cd\\\u00ce\\\u00d2\\\u00d3\\\u00d9\\\u00da\\\u00e1\\\u00e9\\\u00ed\\\u00f1\\\u00f3\\\u00fa\\\u00fc\\\u00c1\\\u00c9\\\u00cd\\\u00d1\\\u00d3\\\u00da\\\u00dc\\\u00e4\\\u00f6\\\u00e5\\\u00c4\\\u00d6\\\u00c5\\\u00e6\\\u00f8\\\u00e5\\\u00c6\\\u00d8\\\u00c5\\\u0102\\\u00c2\\\u00ce\\\u0218\\\u021a\\\u0103\\\u00e2\\\u00ee\\\u0219\\\u021b\\\u00e3\\\u00c3\\\u0451\\\u0401\\\u044a\\\u042a\\\u044f\\\u042f\\\u0448\\\u0428\\\u0435\\\u0415\\\u0440\\\u0420\\\u0442\\\u0422\\\u044b\\\u042b\\\u0443\\\u0423\\\u0438\\\u0418\\\u043e\\\u041e\\\u043f\\\u041f\\\u044e\\\u042e\\\u0449\\\u0429\\\u044d\\\u042d\\\u0430\\\u0410\\\u0441\\\u0421\\\u0434\\\u0414\\\u0444\\\u0424\\\u0433\\\u0413\\\u0447\\\u0427\\\u0439\\\u0419\\\u043a\\\u041a\\\u043b\\\u041b\\\u044c\\\u042c\\\u0436\\\u0416\\\u0437\\\u0417\\\u0445\\\u0425\\\u0446\\\u0426\\\u0432\\\u0412\\\u0431\\\u0411\\\u043d\\\u041d\\\u043c\\\u041c\\\u03b8\\\u0398\\\u03c9\\\u03a9\\\u03b5\\\u0395\\\u03c1\\\u03a1\\\u03c4\\\u03a4\\\u03c8\\\u03a8\\\u03c5\\\u03a5\\\u03b9\\\u0399\\\u03bf\\\u039f\\\u03c0\\\u03a0\\\u03b1\\\u0391\\\u03c3\\\u03a3\\\u03b4\\\u0394\\\u03c6\\\u03a6\\\u03b3\\\u0393\\\u03b7\\\u0397\\\u03c2\\\u03c2\\\u03ba\\\u039a\\\u03bb\\\u039b\\\u03b6\\\u0396\\\u03c7\\\u03a7\\\u03be\\\u039e\\\u03b2\\\u0392\\\u03bd\\\u039d\\\u03bc\\\u039c\\\u03ac\\\u03ad\\\u03ae\\\u03af\\\u03ca\\\u0390\\\u03cc\\\u03cd\\\u03cb\\\u03b0\\\u03ce\\\u00c1\\\u00c4\\\u010c\\\u010e\\\u00c9\\\u00cd\\\u0139\\\u013d\\\u0147\\\u00d3\\\u00d4\\\u0154\\\u0160\\\u0164\\\u00da\\\u00dd\\\u017d\\\u00e1\\\u00e4\\\u010d\\\u010f\\\u00e9\\\u00ed\\\u013a\\\u013e\\\u0148\\\u00f3\\\u00f4\\\u0155\\\u0161\\\u0165\\\u00fa\\\u00fd\\\u017e]","letters_no_space":"[a-zA-Z\\\u00e0\\\u00e2\\\u00e4\\\u00f4\\\u00e9\\\u00e8\\\u00eb\\\u00ea\\\u00ef\\\u00ee\\\u00e7\\\u00f9\\\u00fb\\\u00fc\\\u00ff\\\u00e6\\\u0153\\\u00c0\\\u00c2\\\u00c4\\\u00d4\\\u00c9\\\u00c8\\\u00cb\\\u00ca\\\u00cf\\\u00ce\\\u0178\\\u00c7\\\u00d9\\\u00db\\\u00dc\\\u00c6\\\u0152\\\u00e4\\\u00f6\\\u00fc\\\u00df\\\u00c4\\\u00d6\\\u00dc\\\u0105\\\u0107\\\u0119\\\u0142\\\u0144\\\u00f3\\\u015b\\\u017a\\\u017c\\\u0104\\\u0106\\\u0118\\\u0141\\\u0143\\\u00d3\\\u015a\\\u0179\\\u017b\\\u0117\\\u0116\\\u012f\\\u012e\\\u0173\\\u0173\\\u0172\\\u016b\\\u016a\\\u00e0\\\u00e8\\\u00e9\\\u00ec\\\u00ed\\\u00ee\\\u00f2\\\u00f3\\\u00f9\\\u00fa\\\u00c0\\\u00c8\\\u00c9\\\u00cc\\\u00cd\\\u00ce\\\u00d2\\\u00d3\\\u00d9\\\u00da\\\u00e1\\\u00e9\\\u00ed\\\u00f1\\\u00f3\\\u00fa\\\u00fc\\\u00c1\\\u00c9\\\u00cd\\\u00d1\\\u00d3\\\u00da\\\u00dc\\\u00e4\\\u00f6\\\u00e5\\\u00c4\\\u00d6\\\u00c5\\\u00e6\\\u00f8\\\u00e5\\\u00c6\\\u00d8\\\u00c5\\\u0102\\\u00c2\\\u00ce\\\u0218\\\u021a\\\u0103\\\u00e2\\\u00ee\\\u0219\\\u021b\\\u00e3\\\u00c3\\\u0451\\\u0401\\\u044a\\\u042a\\\u044f\\\u042f\\\u0448\\\u0428\\\u0435\\\u0415\\\u0440\\\u0420\\\u0442\\\u0422\\\u044b\\\u042b\\\u0443\\\u0423\\\u0438\\\u0418\\\u043e\\\u041e\\\u043f\\\u041f\\\u044e\\\u042e\\\u0449\\\u0429\\\u044d\\\u042d\\\u0430\\\u0410\\\u0441\\\u0421\\\u0434\\\u0414\\\u0444\\\u0424\\\u0433\\\u0413\\\u0447\\\u0427\\\u0439\\\u0419\\\u043a\\\u041a\\\u043b\\\u041b\\\u044c\\\u042c\\\u0436\\\u0416\\\u0437\\\u0417\\\u0445\\\u0425\\\u0446\\\u0426\\\u0432\\\u0412\\\u0431\\\u0411\\\u043d\\\u041d\\\u043c\\\u041c\\\u03b8\\\u0398\\\u03c9\\\u03a9\\\u03b5\\\u0395\\\u03c1\\\u03a1\\\u03c4\\\u03a4\\\u03c8\\\u03a8\\\u03c5\\\u03a5\\\u03b9\\\u0399\\\u03bf\\\u039f\\\u03c0\\\u03a0\\\u03b1\\\u0391\\\u03c3\\\u03a3\\\u03b4\\\u0394\\\u03c6\\\u03a6\\\u03b3\\\u0393\\\u03b7\\\u0397\\\u03c2\\\u03c2\\\u03ba\\\u039a\\\u03bb\\\u039b\\\u03b6\\\u0396\\\u03c7\\\u03a7\\\u03be\\\u039e\\\u03b2\\\u0392\\\u03bd\\\u039d\\\u03bc\\\u039c\\\u03ac\\\u03ad\\\u03ae\\\u03af\\\u03ca\\\u0390\\\u03cc\\\u03cd\\\u03cb\\\u03b0\\\u03ce\\\u00c1\\\u00c4\\\u010c\\\u010e\\\u00c9\\\u00cd\\\u0139\\\u013d\\\u0147\\\u00d3\\\u00d4\\\u0154\\\u0160\\\u0164\\\u00da\\\u00dd\\\u017d\\\u00e1\\\u00e4\\\u010d\\\u010f\\\u00e9\\\u00ed\\\u013a\\\u013e\\\u0148\\\u00f3\\\u00f4\\\u0155\\\u0161\\\u0165\\\u00fa\\\u00fd\\\u017e]","letters_numbers":"[a-zA-Z0-9\\-\\_\\.\\ \\\u00e0\\\u00e2\\\u00e4\\\u00f4\\\u00e9\\\u00e8\\\u00eb\\\u00ea\\\u00ef\\\u00ee\\\u00e7\\\u00f9\\\u00fb\\\u00fc\\\u00ff\\\u00e6\\\u0153\\\u00c0\\\u00c2\\\u00c4\\\u00d4\\\u00c9\\\u00c8\\\u00cb\\\u00ca\\\u00cf\\\u00ce\\\u0178\\\u00c7\\\u00d9\\\u00db\\\u00dc\\\u00c6\\\u0152\\\u00e4\\\u00f6\\\u00fc\\\u00df\\\u00c4\\\u00d6\\\u00dc\\\u0105\\\u0107\\\u0119\\\u0142\\\u0144\\\u00f3\\\u015b\\\u017a\\\u017c\\\u0104\\\u0106\\\u0118\\\u0141\\\u0143\\\u00d3\\\u015a\\\u0179\\\u017b\\\u0117\\\u0116\\\u012f\\\u012e\\\u0173\\\u0173\\\u0172\\\u016b\\\u016a\\\u00e0\\\u00e8\\\u00e9\\\u00ec\\\u00ed\\\u00ee\\\u00f2\\\u00f3\\\u00f9\\\u00fa\\\u00c0\\\u00c8\\\u00c9\\\u00cc\\\u00cd\\\u00ce\\\u00d2\\\u00d3\\\u00d9\\\u00da\\\u00e1\\\u00e9\\\u00ed\\\u00f1\\\u00f3\\\u00fa\\\u00fc\\\u00c1\\\u00c9\\\u00cd\\\u00d1\\\u00d3\\\u00da\\\u00dc\\\u00e4\\\u00f6\\\u00e5\\\u00c4\\\u00d6\\\u00c5\\\u00e6\\\u00f8\\\u00e5\\\u00c6\\\u00d8\\\u00c5\\\u0102\\\u00c2\\\u00ce\\\u0218\\\u021a\\\u0103\\\u00e2\\\u00ee\\\u0219\\\u021b\\\u00e3\\\u00c3\\\u0451\\\u0401\\\u044a\\\u042a\\\u044f\\\u042f\\\u0448\\\u0428\\\u0435\\\u0415\\\u0440\\\u0420\\\u0442\\\u0422\\\u044b\\\u042b\\\u0443\\\u0423\\\u0438\\\u0418\\\u043e\\\u041e\\\u043f\\\u041f\\\u044e\\\u042e\\\u0449\\\u0429\\\u044d\\\u042d\\\u0430\\\u0410\\\u0441\\\u0421\\\u0434\\\u0414\\\u0444\\\u0424\\\u0433\\\u0413\\\u0447\\\u0427\\\u0439\\\u0419\\\u043a\\\u041a\\\u043b\\\u041b\\\u044c\\\u042c\\\u0436\\\u0416\\\u0437\\\u0417\\\u0445\\\u0425\\\u0446\\\u0426\\\u0432\\\u0412\\\u0431\\\u0411\\\u043d\\\u041d\\\u043c\\\u041c\\\u03b8\\\u0398\\\u03c9\\\u03a9\\\u03b5\\\u0395\\\u03c1\\\u03a1\\\u03c4\\\u03a4\\\u03c8\\\u03a8\\\u03c5\\\u03a5\\\u03b9\\\u0399\\\u03bf\\\u039f\\\u03c0\\\u03a0\\\u03b1\\\u0391\\\u03c3\\\u03a3\\\u03b4\\\u0394\\\u03c6\\\u03a6\\\u03b3\\\u0393\\\u03b7\\\u0397\\\u03c2\\\u03c2\\\u03ba\\\u039a\\\u03bb\\\u039b\\\u03b6\\\u0396\\\u03c7\\\u03a7\\\u03be\\\u039e\\\u03b2\\\u0392\\\u03bd\\\u039d\\\u03bc\\\u039c\\\u03ac\\\u03ad\\\u03ae\\\u03af\\\u03ca\\\u0390\\\u03cc\\\u03cd\\\u03cb\\\u03b0\\\u03ce\\\u00c1\\\u00c4\\\u010c\\\u010e\\\u00c9\\\u00cd\\\u0139\\\u013d\\\u0147\\\u00d3\\\u00d4\\\u0154\\\u0160\\\u0164\\\u00da\\\u00dd\\\u017d\\\u00e1\\\u00e4\\\u010d\\\u010f\\\u00e9\\\u00ed\\\u013a\\\u013e\\\u0148\\\u00f3\\\u00f4\\\u0155\\\u0161\\\u0165\\\u00fa\\\u00fd\\\u017e]","letters_numbers_no_space":"[a-zA-Z0-9\\\u00e0\\\u00e2\\\u00e4\\\u00f4\\\u00e9\\\u00e8\\\u00eb\\\u00ea\\\u00ef\\\u00ee\\\u00e7\\\u00f9\\\u00fb\\\u00fc\\\u00ff\\\u00e6\\\u0153\\\u00c0\\\u00c2\\\u00c4\\\u00d4\\\u00c9\\\u00c8\\\u00cb\\\u00ca\\\u00cf\\\u00ce\\\u0178\\\u00c7\\\u00d9\\\u00db\\\u00dc\\\u00c6\\\u0152\\\u00e4\\\u00f6\\\u00fc\\\u00df\\\u00c4\\\u00d6\\\u00dc\\\u0105\\\u0107\\\u0119\\\u0142\\\u0144\\\u00f3\\\u015b\\\u017a\\\u017c\\\u0104\\\u0106\\\u0118\\\u0141\\\u0143\\\u00d3\\\u015a\\\u0179\\\u017b\\\u0117\\\u0116\\\u012f\\\u012e\\\u0173\\\u0173\\\u0172\\\u016b\\\u016a\\\u00e0\\\u00e8\\\u00e9\\\u00ec\\\u00ed\\\u00ee\\\u00f2\\\u00f3\\\u00f9\\\u00fa\\\u00c0\\\u00c8\\\u00c9\\\u00cc\\\u00cd\\\u00ce\\\u00d2\\\u00d3\\\u00d9\\\u00da\\\u00e1\\\u00e9\\\u00ed\\\u00f1\\\u00f3\\\u00fa\\\u00fc\\\u00c1\\\u00c9\\\u00cd\\\u00d1\\\u00d3\\\u00da\\\u00dc\\\u00e4\\\u00f6\\\u00e5\\\u00c4\\\u00d6\\\u00c5\\\u00e6\\\u00f8\\\u00e5\\\u00c6\\\u00d8\\\u00c5\\\u0102\\\u00c2\\\u00ce\\\u0218\\\u021a\\\u0103\\\u00e2\\\u00ee\\\u0219\\\u021b\\\u00e3\\\u00c3\\\u0451\\\u0401\\\u044a\\\u042a\\\u044f\\\u042f\\\u0448\\\u0428\\\u0435\\\u0415\\\u0440\\\u0420\\\u0442\\\u0422\\\u044b\\\u042b\\\u0443\\\u0423\\\u0438\\\u0418\\\u043e\\\u041e\\\u043f\\\u041f\\\u044e\\\u042e\\\u0449\\\u0429\\\u044d\\\u042d\\\u0430\\\u0410\\\u0441\\\u0421\\\u0434\\\u0414\\\u0444\\\u0424\\\u0433\\\u0413\\\u0447\\\u0427\\\u0439\\\u0419\\\u043a\\\u041a\\\u043b\\\u041b\\\u044c\\\u042c\\\u0436\\\u0416\\\u0437\\\u0417\\\u0445\\\u0425\\\u0446\\\u0426\\\u0432\\\u0412\\\u0431\\\u0411\\\u043d\\\u041d\\\u043c\\\u041c\\\u03b8\\\u0398\\\u03c9\\\u03a9\\\u03b5\\\u0395\\\u03c1\\\u03a1\\\u03c4\\\u03a4\\\u03c8\\\u03a8\\\u03c5\\\u03a5\\\u03b9\\\u0399\\\u03bf\\\u039f\\\u03c0\\\u03a0\\\u03b1\\\u0391\\\u03c3\\\u03a3\\\u03b4\\\u0394\\\u03c6\\\u03a6\\\u03b3\\\u0393\\\u03b7\\\u0397\\\u03c2\\\u03c2\\\u03ba\\\u039a\\\u03bb\\\u039b\\\u03b6\\\u0396\\\u03c7\\\u03a7\\\u03be\\\u039e\\\u03b2\\\u0392\\\u03bd\\\u039d\\\u03bc\\\u039c\\\u03ac\\\u03ad\\\u03ae\\\u03af\\\u03ca\\\u0390\\\u03cc\\\u03cd\\\u03cb\\\u03b0\\\u03ce\\\u00c1\\\u00c4\\\u010c\\\u010e\\\u00c9\\\u00cd\\\u0139\\\u013d\\\u0147\\\u00d3\\\u00d4\\\u0154\\\u0160\\\u0164\\\u00da\\\u00dd\\\u017d\\\u00e1\\\u00e4\\\u010d\\\u010f\\\u00e9\\\u00ed\\\u013a\\\u013e\\\u0148\\\u00f3\\\u00f4\\\u0155\\\u0161\\\u0165\\\u00fa\\\u00fd\\\u017e]","letters_numbers_special_char_no_space":"[a-zA-Z0-9\\S\\\u00e0\\\u00e2\\\u00e4\\\u00f4\\\u00e9\\\u00e8\\\u00eb\\\u00ea\\\u00ef\\\u00ee\\\u00e7\\\u00f9\\\u00fb\\\u00fc\\\u00ff\\\u00e6\\\u0153\\\u00c0\\\u00c2\\\u00c4\\\u00d4\\\u00c9\\\u00c8\\\u00cb\\\u00ca\\\u00cf\\\u00ce\\\u0178\\\u00c7\\\u00d9\\\u00db\\\u00dc\\\u00c6\\\u0152\\\u00e4\\\u00f6\\\u00fc\\\u00df\\\u00c4\\\u00d6\\\u00dc\\\u0105\\\u0107\\\u0119\\\u0142\\\u0144\\\u00f3\\\u015b\\\u017a\\\u017c\\\u0104\\\u0106\\\u0118\\\u0141\\\u0143\\\u00d3\\\u015a\\\u0179\\\u017b\\\u0117\\\u0116\\\u012f\\\u012e\\\u0173\\\u0173\\\u0172\\\u016b\\\u016a\\\u00e0\\\u00e8\\\u00e9\\\u00ec\\\u00ed\\\u00ee\\\u00f2\\\u00f3\\\u00f9\\\u00fa\\\u00c0\\\u00c8\\\u00c9\\\u00cc\\\u00cd\\\u00ce\\\u00d2\\\u00d3\\\u00d9\\\u00da\\\u00e1\\\u00e9\\\u00ed\\\u00f1\\\u00f3\\\u00fa\\\u00fc\\\u00c1\\\u00c9\\\u00cd\\\u00d1\\\u00d3\\\u00da\\\u00dc\\\u00e4\\\u00f6\\\u00e5\\\u00c4\\\u00d6\\\u00c5\\\u00e6\\\u00f8\\\u00e5\\\u00c6\\\u00d8\\\u00c5\\\u0102\\\u00c2\\\u00ce\\\u0218\\\u021a\\\u0103\\\u00e2\\\u00ee\\\u0219\\\u021b\\\u00e3\\\u00c3\\\u0451\\\u0401\\\u044a\\\u042a\\\u044f\\\u042f\\\u0448\\\u0428\\\u0435\\\u0415\\\u0440\\\u0420\\\u0442\\\u0422\\\u044b\\\u042b\\\u0443\\\u0423\\\u0438\\\u0418\\\u043e\\\u041e\\\u043f\\\u041f\\\u044e\\\u042e\\\u0449\\\u0429\\\u044d\\\u042d\\\u0430\\\u0410\\\u0441\\\u0421\\\u0434\\\u0414\\\u0444\\\u0424\\\u0433\\\u0413\\\u0447\\\u0427\\\u0439\\\u0419\\\u043a\\\u041a\\\u043b\\\u041b\\\u044c\\\u042c\\\u0436\\\u0416\\\u0437\\\u0417\\\u0445\\\u0425\\\u0446\\\u0426\\\u0432\\\u0412\\\u0431\\\u0411\\\u043d\\\u041d\\\u043c\\\u041c\\\u03b8\\\u0398\\\u03c9\\\u03a9\\\u03b5\\\u0395\\\u03c1\\\u03a1\\\u03c4\\\u03a4\\\u03c8\\\u03a8\\\u03c5\\\u03a5\\\u03b9\\\u0399\\\u03bf\\\u039f\\\u03c0\\\u03a0\\\u03b1\\\u0391\\\u03c3\\\u03a3\\\u03b4\\\u0394\\\u03c6\\\u03a6\\\u03b3\\\u0393\\\u03b7\\\u0397\\\u03c2\\\u03c2\\\u03ba\\\u039a\\\u03bb\\\u039b\\\u03b6\\\u0396\\\u03c7\\\u03a7\\\u03be\\\u039e\\\u03b2\\\u0392\\\u03bd\\\u039d\\\u03bc\\\u039c\\\u03ac\\\u03ad\\\u03ae\\\u03af\\\u03ca\\\u0390\\\u03cc\\\u03cd\\\u03cb\\\u03b0\\\u03ce\\\u00c1\\\u00c4\\\u010c\\\u010e\\\u00c9\\\u00cd\\\u0139\\\u013d\\\u0147\\\u00d3\\\u00d4\\\u0154\\\u0160\\\u0164\\\u00da\\\u00dd\\\u017d\\\u00e1\\\u00e4\\\u010d\\\u010f\\\u00e9\\\u00ed\\\u013a\\\u013e\\\u0148\\\u00f3\\\u00f4\\\u0155\\\u0161\\\u0165\\\u00fa\\\u00fd\\\u017e]+$","color":"[a-zA-Z0-9\\#]","normal":"","nothing":"","name":"[a-zA-Z0-9\\-\\'\"\\.\\,\\ \\;\\\u00e0\\\u00e2\\\u00e4\\\u00f4\\\u00e9\\\u00e8\\\u00eb\\\u00ea\\\u00ef\\\u00ee\\\u00e7\\\u00f9\\\u00fb\\\u00fc\\\u00ff\\\u00e6\\\u0153\\\u00c0\\\u00c2\\\u00c4\\\u00d4\\\u00c9\\\u00c8\\\u00cb\\\u00ca\\\u00cf\\\u00ce\\\u0178\\\u00c7\\\u00d9\\\u00db\\\u00dc\\\u00c6\\\u0152\\\u00e4\\\u00f6\\\u00fc\\\u00df\\\u00c4\\\u00d6\\\u00dc\\\u0105\\\u0107\\\u0119\\\u0142\\\u0144\\\u00f3\\\u015b\\\u017a\\\u017c\\\u0104\\\u0106\\\u0118\\\u0141\\\u0143\\\u00d3\\\u015a\\\u0179\\\u017b\\\u0117\\\u0116\\\u012f\\\u012e\\\u0173\\\u0173\\\u0172\\\u016b\\\u016a\\\u00e0\\\u00e8\\\u00e9\\\u00ec\\\u00ed\\\u00ee\\\u00f2\\\u00f3\\\u00f9\\\u00fa\\\u00c0\\\u00c8\\\u00c9\\\u00cc\\\u00cd\\\u00ce\\\u00d2\\\u00d3\\\u00d9\\\u00da\\\u00e1\\\u00e9\\\u00ed\\\u00f1\\\u00f3\\\u00fa\\\u00fc\\\u00c1\\\u00c9\\\u00cd\\\u00d1\\\u00d3\\\u00da\\\u00dc\\\u00e4\\\u00f6\\\u00e5\\\u00c4\\\u00d6\\\u00c5\\\u00e6\\\u00f8\\\u00e5\\\u00c6\\\u00d8\\\u00c5\\\u0102\\\u00c2\\\u00ce\\\u0218\\\u021a\\\u0103\\\u00e2\\\u00ee\\\u0219\\\u021b\\\u00e3\\\u00c3\\\u0451\\\u0401\\\u044a\\\u042a\\\u044f\\\u042f\\\u0448\\\u0428\\\u0435\\\u0415\\\u0440\\\u0420\\\u0442\\\u0422\\\u044b\\\u042b\\\u0443\\\u0423\\\u0438\\\u0418\\\u043e\\\u041e\\\u043f\\\u041f\\\u044e\\\u042e\\\u0449\\\u0429\\\u044d\\\u042d\\\u0430\\\u0410\\\u0441\\\u0421\\\u0434\\\u0414\\\u0444\\\u0424\\\u0433\\\u0413\\\u0447\\\u0427\\\u0439\\\u0419\\\u043a\\\u041a\\\u043b\\\u041b\\\u044c\\\u042c\\\u0436\\\u0416\\\u0437\\\u0417\\\u0445\\\u0425\\\u0446\\\u0426\\\u0432\\\u0412\\\u0431\\\u0411\\\u043d\\\u041d\\\u043c\\\u041c\\\u03b8\\\u0398\\\u03c9\\\u03a9\\\u03b5\\\u0395\\\u03c1\\\u03a1\\\u03c4\\\u03a4\\\u03c8\\\u03a8\\\u03c5\\\u03a5\\\u03b9\\\u0399\\\u03bf\\\u039f\\\u03c0\\\u03a0\\\u03b1\\\u0391\\\u03c3\\\u03a3\\\u03b4\\\u0394\\\u03c6\\\u03a6\\\u03b3\\\u0393\\\u03b7\\\u0397\\\u03c2\\\u03c2\\\u03ba\\\u039a\\\u03bb\\\u039b\\\u03b6\\\u0396\\\u03c7\\\u03a7\\\u03be\\\u039e\\\u03b2\\\u0392\\\u03bd\\\u039d\\\u03bc\\\u039c\\\u03ac\\\u03ad\\\u03ae\\\u03af\\\u03ca\\\u0390\\\u03cc\\\u03cd\\\u03cb\\\u03b0\\\u03ce\\\u00c1\\\u00c4\\\u010c\\\u010e\\\u00c9\\\u00cd\\\u0139\\\u013d\\\u0147\\\u00d3\\\u00d4\\\u0154\\\u0160\\\u0164\\\u00da\\\u00dd\\\u017d\\\u00e1\\\u00e4\\\u010d\\\u010f\\\u00e9\\\u00ed\\\u013a\\\u013e\\\u0148\\\u00f3\\\u00f4\\\u0155\\\u0161\\\u0165\\\u00fa\\\u00fd\\\u017e]","front_name":"[\\p{L}0-9\\-'.\\s]","other_name":"[a-zA-Z0-9\\-\\'\"\\.\\\/\\,\\#\\;\\ \\\u00e0\\\u00e2\\\u00e4\\\u00f4\\\u00e9\\\u00e8\\\u00eb\\\u00ea\\\u00ef\\\u00ee\\\u00e7\\\u00f9\\\u00fb\\\u00fc\\\u00ff\\\u00e6\\\u0153\\\u00c0\\\u00c2\\\u00c4\\\u00d4\\\u00c9\\\u00c8\\\u00cb\\\u00ca\\\u00cf\\\u00ce\\\u0178\\\u00c7\\\u00d9\\\u00db\\\u00dc\\\u00c6\\\u0152\\\u00e4\\\u00f6\\\u00fc\\\u00df\\\u00c4\\\u00d6\\\u00dc\\\u0105\\\u0107\\\u0119\\\u0142\\\u0144\\\u00f3\\\u015b\\\u017a\\\u017c\\\u0104\\\u0106\\\u0118\\\u0141\\\u0143\\\u00d3\\\u015a\\\u0179\\\u017b\\\u0117\\\u0116\\\u012f\\\u012e\\\u0173\\\u0173\\\u0172\\\u016b\\\u016a\\\u00e0\\\u00e8\\\u00e9\\\u00ec\\\u00ed\\\u00ee\\\u00f2\\\u00f3\\\u00f9\\\u00fa\\\u00c0\\\u00c8\\\u00c9\\\u00cc\\\u00cd\\\u00ce\\\u00d2\\\u00d3\\\u00d9\\\u00da\\\u00e1\\\u00e9\\\u00ed\\\u00f1\\\u00f3\\\u00fa\\\u00fc\\\u00c1\\\u00c9\\\u00cd\\\u00d1\\\u00d3\\\u00da\\\u00dc\\\u00e4\\\u00f6\\\u00e5\\\u00c4\\\u00d6\\\u00c5\\\u00e6\\\u00f8\\\u00e5\\\u00c6\\\u00d8\\\u00c5\\\u0102\\\u00c2\\\u00ce\\\u0218\\\u021a\\\u0103\\\u00e2\\\u00ee\\\u0219\\\u021b\\\u00e3\\\u00c3\\\u0451\\\u0401\\\u044a\\\u042a\\\u044f\\\u042f\\\u0448\\\u0428\\\u0435\\\u0415\\\u0440\\\u0420\\\u0442\\\u0422\\\u044b\\\u042b\\\u0443\\\u0423\\\u0438\\\u0418\\\u043e\\\u041e\\\u043f\\\u041f\\\u044e\\\u042e\\\u0449\\\u0429\\\u044d\\\u042d\\\u0430\\\u0410\\\u0441\\\u0421\\\u0434\\\u0414\\\u0444\\\u0424\\\u0433\\\u0413\\\u0447\\\u0427\\\u0439\\\u0419\\\u043a\\\u041a\\\u043b\\\u041b\\\u044c\\\u042c\\\u0436\\\u0416\\\u0437\\\u0417\\\u0445\\\u0425\\\u0446\\\u0426\\\u0432\\\u0412\\\u0431\\\u0411\\\u043d\\\u041d\\\u043c\\\u041c\\\u03b8\\\u0398\\\u03c9\\\u03a9\\\u03b5\\\u0395\\\u03c1\\\u03a1\\\u03c4\\\u03a4\\\u03c8\\\u03a8\\\u03c5\\\u03a5\\\u03b9\\\u0399\\\u03bf\\\u039f\\\u03c0\\\u03a0\\\u03b1\\\u0391\\\u03c3\\\u03a3\\\u03b4\\\u0394\\\u03c6\\\u03a6\\\u03b3\\\u0393\\\u03b7\\\u0397\\\u03c2\\\u03c2\\\u03ba\\\u039a\\\u03bb\\\u039b\\\u03b6\\\u0396\\\u03c7\\\u03a7\\\u03be\\\u039e\\\u03b2\\\u0392\\\u03bd\\\u039d\\\u03bc\\\u039c\\\u03ac\\\u03ad\\\u03ae\\\u03af\\\u03ca\\\u0390\\\u03cc\\\u03cd\\\u03cb\\\u03b0\\\u03ce\\\u00c1\\\u00c4\\\u010c\\\u010e\\\u00c9\\\u00cd\\\u0139\\\u013d\\\u0147\\\u00d3\\\u00d4\\\u0154\\\u0160\\\u0164\\\u00da\\\u00dd\\\u017d\\\u00e1\\\u00e4\\\u010d\\\u010f\\\u00e9\\\u00ed\\\u013a\\\u013e\\\u0148\\\u00f3\\\u00f4\\\u0155\\\u0161\\\u0165\\\u00fa\\\u00fd\\\u017e]","address_company":"[a-zA-Z0-9\\-\\'\"\\.\\\/\\,\\#\\;\\&\\ \\\u00e0\\\u00e2\\\u00e4\\\u00f4\\\u00e9\\\u00e8\\\u00eb\\\u00ea\\\u00ef\\\u00ee\\\u00e7\\\u00f9\\\u00fb\\\u00fc\\\u00ff\\\u00e6\\\u0153\\\u00c0\\\u00c2\\\u00c4\\\u00d4\\\u00c9\\\u00c8\\\u00cb\\\u00ca\\\u00cf\\\u00ce\\\u0178\\\u00c7\\\u00d9\\\u00db\\\u00dc\\\u00c6\\\u0152\\\u00e4\\\u00f6\\\u00fc\\\u00df\\\u00c4\\\u00d6\\\u00dc\\\u0105\\\u0107\\\u0119\\\u0142\\\u0144\\\u00f3\\\u015b\\\u017a\\\u017c\\\u0104\\\u0106\\\u0118\\\u0141\\\u0143\\\u00d3\\\u015a\\\u0179\\\u017b\\\u0117\\\u0116\\\u012f\\\u012e\\\u0173\\\u0173\\\u0172\\\u016b\\\u016a\\\u00e0\\\u00e8\\\u00e9\\\u00ec\\\u00ed\\\u00ee\\\u00f2\\\u00f3\\\u00f9\\\u00fa\\\u00c0\\\u00c8\\\u00c9\\\u00cc\\\u00cd\\\u00ce\\\u00d2\\\u00d3\\\u00d9\\\u00da\\\u00e1\\\u00e9\\\u00ed\\\u00f1\\\u00f3\\\u00fa\\\u00fc\\\u00c1\\\u00c9\\\u00cd\\\u00d1\\\u00d3\\\u00da\\\u00dc\\\u00e4\\\u00f6\\\u00e5\\\u00c4\\\u00d6\\\u00c5\\\u00e6\\\u00f8\\\u00e5\\\u00c6\\\u00d8\\\u00c5\\\u0102\\\u00c2\\\u00ce\\\u0218\\\u021a\\\u0103\\\u00e2\\\u00ee\\\u0219\\\u021b\\\u00e3\\\u00c3\\\u0451\\\u0401\\\u044a\\\u042a\\\u044f\\\u042f\\\u0448\\\u0428\\\u0435\\\u0415\\\u0440\\\u0420\\\u0442\\\u0422\\\u044b\\\u042b\\\u0443\\\u0423\\\u0438\\\u0418\\\u043e\\\u041e\\\u043f\\\u041f\\\u044e\\\u042e\\\u0449\\\u0429\\\u044d\\\u042d\\\u0430\\\u0410\\\u0441\\\u0421\\\u0434\\\u0414\\\u0444\\\u0424\\\u0433\\\u0413\\\u0447\\\u0427\\\u0439\\\u0419\\\u043a\\\u041a\\\u043b\\\u041b\\\u044c\\\u042c\\\u0436\\\u0416\\\u0437\\\u0417\\\u0445\\\u0425\\\u0446\\\u0426\\\u0432\\\u0412\\\u0431\\\u0411\\\u043d\\\u041d\\\u043c\\\u041c\\\u03b8\\\u0398\\\u03c9\\\u03a9\\\u03b5\\\u0395\\\u03c1\\\u03a1\\\u03c4\\\u03a4\\\u03c8\\\u03a8\\\u03c5\\\u03a5\\\u03b9\\\u0399\\\u03bf\\\u039f\\\u03c0\\\u03a0\\\u03b1\\\u0391\\\u03c3\\\u03a3\\\u03b4\\\u0394\\\u03c6\\\u03a6\\\u03b3\\\u0393\\\u03b7\\\u0397\\\u03c2\\\u03c2\\\u03ba\\\u039a\\\u03bb\\\u039b\\\u03b6\\\u0396\\\u03c7\\\u03a7\\\u03be\\\u039e\\\u03b2\\\u0392\\\u03bd\\\u039d\\\u03bc\\\u039c\\\u03ac\\\u03ad\\\u03ae\\\u03af\\\u03ca\\\u0390\\\u03cc\\\u03cd\\\u03cb\\\u03b0\\\u03ce\\\u00c1\\\u00c4\\\u010c\\\u010e\\\u00c9\\\u00cd\\\u0139\\\u013d\\\u0147\\\u00d3\\\u00d4\\\u0154\\\u0160\\\u0164\\\u00da\\\u00dd\\\u017d\\\u00e1\\\u00e4\\\u010d\\\u010f\\\u00e9\\\u00ed\\\u013a\\\u013e\\\u0148\\\u00f3\\\u00f4\\\u0155\\\u0161\\\u0165\\\u00fa\\\u00fd\\\u017e]","custom_domain_subdomain":"[a-zA-Z0-9\\-]","custom_domain_domain":"[a-zA-Z0-9\\-\\.]","custom_path":"[a-zA-Z0-9\\-\\_]","custom_field":"[a-zA-Z0-9\\-\\_]","margins":"[0-9\\-]","ip":"[a-zA-Z0-9\\.\\:]","product_name":"","broadcast_percentage":"[0-9]","2_decimals":"^[0-9]+\\.[0-9]{2}$","2_decimal_or_numeric":"^[0-9]+([.][0-9]{2})?$","discount_coupon":"[a-zA-Z0-9\\\u00e0\\\u00e2\\\u00e4\\\u00f4\\\u00e9\\\u00e8\\\u00eb\\\u00ea\\\u00ef\\\u00ee\\\u00e7\\\u00f9\\\u00fb\\\u00fc\\\u00ff\\\u00e6\\\u0153\\\u00c0\\\u00c2\\\u00c4\\\u00d4\\\u00c9\\\u00c8\\\u00cb\\\u00ca\\\u00cf\\\u00ce\\\u0178\\\u00c7\\\u00d9\\\u00db\\\u00dc\\\u00c6\\\u0152\\\u00e4\\\u00f6\\\u00fc\\\u00df\\\u00c4\\\u00d6\\\u00dc\\\u0105\\\u0107\\\u0119\\\u0142\\\u0144\\\u00f3\\\u015b\\\u017a\\\u017c\\\u0104\\\u0106\\\u0118\\\u0141\\\u0143\\\u00d3\\\u015a\\\u0179\\\u017b\\\u0117\\\u0116\\\u012f\\\u012e\\\u0173\\\u0173\\\u0172\\\u016b\\\u016a\\\u00e0\\\u00e8\\\u00e9\\\u00ec\\\u00ed\\\u00ee\\\u00f2\\\u00f3\\\u00f9\\\u00fa\\\u00c0\\\u00c8\\\u00c9\\\u00cc\\\u00cd\\\u00ce\\\u00d2\\\u00d3\\\u00d9\\\u00da\\\u00e1\\\u00e9\\\u00ed\\\u00f1\\\u00f3\\\u00fa\\\u00fc\\\u00c1\\\u00c9\\\u00cd\\\u00d1\\\u00d3\\\u00da\\\u00dc\\\u00e4\\\u00f6\\\u00e5\\\u00c4\\\u00d6\\\u00c5\\\u00e6\\\u00f8\\\u00e5\\\u00c6\\\u00d8\\\u00c5\\\u0102\\\u00c2\\\u00ce\\\u0218\\\u021a\\\u0103\\\u00e2\\\u00ee\\\u0219\\\u021b\\\u00e3\\\u00c3\\\u0451\\\u0401\\\u044a\\\u042a\\\u044f\\\u042f\\\u0448\\\u0428\\\u0435\\\u0415\\\u0440\\\u0420\\\u0442\\\u0422\\\u044b\\\u042b\\\u0443\\\u0423\\\u0438\\\u0418\\\u043e\\\u041e\\\u043f\\\u041f\\\u044e\\\u042e\\\u0449\\\u0429\\\u044d\\\u042d\\\u0430\\\u0410\\\u0441\\\u0421\\\u0434\\\u0414\\\u0444\\\u0424\\\u0433\\\u0413\\\u0447\\\u0427\\\u0439\\\u0419\\\u043a\\\u041a\\\u043b\\\u041b\\\u044c\\\u042c\\\u0436\\\u0416\\\u0437\\\u0417\\\u0445\\\u0425\\\u0446\\\u0426\\\u0432\\\u0412\\\u0431\\\u0411\\\u043d\\\u041d\\\u043c\\\u041c\\\u03b8\\\u0398\\\u03c9\\\u03a9\\\u03b5\\\u0395\\\u03c1\\\u03a1\\\u03c4\\\u03a4\\\u03c8\\\u03a8\\\u03c5\\\u03a5\\\u03b9\\\u0399\\\u03bf\\\u039f\\\u03c0\\\u03a0\\\u03b1\\\u0391\\\u03c3\\\u03a3\\\u03b4\\\u0394\\\u03c6\\\u03a6\\\u03b3\\\u0393\\\u03b7\\\u0397\\\u03c2\\\u03c2\\\u03ba\\\u039a\\\u03bb\\\u039b\\\u03b6\\\u0396\\\u03c7\\\u03a7\\\u03be\\\u039e\\\u03b2\\\u0392\\\u03bd\\\u039d\\\u03bc\\\u039c\\\u03ac\\\u03ad\\\u03ae\\\u03af\\\u03ca\\\u0390\\\u03cc\\\u03cd\\\u03cb\\\u03b0\\\u03ce\\\u00c1\\\u00c4\\\u010c\\\u010e\\\u00c9\\\u00cd\\\u0139\\\u013d\\\u0147\\\u00d3\\\u00d4\\\u0154\\\u0160\\\u0164\\\u00da\\\u00dd\\\u017d\\\u00e1\\\u00e4\\\u010d\\\u010f\\\u00e9\\\u00ed\\\u013a\\\u013e\\\u0148\\\u00f3\\\u00f4\\\u0155\\\u0161\\\u0165\\\u00fa\\\u00fd\\\u017e$%\\-+&#]","time_with_max":"[0-9]","negative_numeric":"[0-9\\-]","percentage_single_decimal":"","phone_number":"[0-9]","number_with_leading_zero":"[0-9]","keyword_name":"[a-zA-Z0-9\\-\\&\\ \\\u00e0\\\u00e2\\\u00e4\\\u00f4\\\u00e9\\\u00e8\\\u00eb\\\u00ea\\\u00ef\\\u00ee\\\u00e7\\\u00f9\\\u00fb\\\u00fc\\\u00ff\\\u00e6\\\u0153\\\u00c0\\\u00c2\\\u00c4\\\u00d4\\\u00c9\\\u00c8\\\u00cb\\\u00ca\\\u00cf\\\u00ce\\\u0178\\\u00c7\\\u00d9\\\u00db\\\u00dc\\\u00c6\\\u0152\\\u00e4\\\u00f6\\\u00fc\\\u00df\\\u00c4\\\u00d6\\\u00dc\\\u0105\\\u0107\\\u0119\\\u0142\\\u0144\\\u00f3\\\u015b\\\u017a\\\u017c\\\u0104\\\u0106\\\u0118\\\u0141\\\u0143\\\u00d3\\\u015a\\\u0179\\\u017b\\\u0117\\\u0116\\\u012f\\\u012e\\\u0173\\\u0173\\\u0172\\\u016b\\\u016a\\\u00e0\\\u00e8\\\u00e9\\\u00ec\\\u00ed\\\u00ee\\\u00f2\\\u00f3\\\u00f9\\\u00fa\\\u00c0\\\u00c8\\\u00c9\\\u00cc\\\u00cd\\\u00ce\\\u00d2\\\u00d3\\\u00d9\\\u00da\\\u00e1\\\u00e9\\\u00ed\\\u00f1\\\u00f3\\\u00fa\\\u00fc\\\u00c1\\\u00c9\\\u00cd\\\u00d1\\\u00d3\\\u00da\\\u00dc\\\u00e4\\\u00f6\\\u00e5\\\u00c4\\\u00d6\\\u00c5\\\u00e6\\\u00f8\\\u00e5\\\u00c6\\\u00d8\\\u00c5\\\u0102\\\u00c2\\\u00ce\\\u0218\\\u021a\\\u0103\\\u00e2\\\u00ee\\\u0219\\\u021b\\\u00e3\\\u00c3\\\u0451\\\u0401\\\u044a\\\u042a\\\u044f\\\u042f\\\u0448\\\u0428\\\u0435\\\u0415\\\u0440\\\u0420\\\u0442\\\u0422\\\u044b\\\u042b\\\u0443\\\u0423\\\u0438\\\u0418\\\u043e\\\u041e\\\u043f\\\u041f\\\u044e\\\u042e\\\u0449\\\u0429\\\u044d\\\u042d\\\u0430\\\u0410\\\u0441\\\u0421\\\u0434\\\u0414\\\u0444\\\u0424\\\u0433\\\u0413\\\u0447\\\u0427\\\u0439\\\u0419\\\u043a\\\u041a\\\u043b\\\u041b\\\u044c\\\u042c\\\u0436\\\u0416\\\u0437\\\u0417\\\u0445\\\u0425\\\u0446\\\u0426\\\u0432\\\u0412\\\u0431\\\u0411\\\u043d\\\u041d\\\u043c\\\u041c\\\u03b8\\\u0398\\\u03c9\\\u03a9\\\u03b5\\\u0395\\\u03c1\\\u03a1\\\u03c4\\\u03a4\\\u03c8\\\u03a8\\\u03c5\\\u03a5\\\u03b9\\\u0399\\\u03bf\\\u039f\\\u03c0\\\u03a0\\\u03b1\\\u0391\\\u03c3\\\u03a3\\\u03b4\\\u0394\\\u03c6\\\u03a6\\\u03b3\\\u0393\\\u03b7\\\u0397\\\u03c2\\\u03c2\\\u03ba\\\u039a\\\u03bb\\\u039b\\\u03b6\\\u0396\\\u03c7\\\u03a7\\\u03be\\\u039e\\\u03b2\\\u0392\\\u03bd\\\u039d\\\u03bc\\\u039c\\\u03ac\\\u03ad\\\u03ae\\\u03af\\\u03ca\\\u0390\\\u03cc\\\u03cd\\\u03cb\\\u03b0\\\u03ce\\\u00c1\\\u00c4\\\u010c\\\u010e\\\u00c9\\\u00cd\\\u0139\\\u013d\\\u0147\\\u00d3\\\u00d4\\\u0154\\\u0160\\\u0164\\\u00da\\\u00dd\\\u017d\\\u00e1\\\u00e4\\\u010d\\\u010f\\\u00e9\\\u00ed\\\u013a\\\u013e\\\u0148\\\u00f3\\\u00f4\\\u0155\\\u0161\\\u0165\\\u00fa\\\u00fd\\\u017e]"},"gdpr_settings":{"display":true,"terms_label":"Acconsento ai Termini e Condizioni relativi al GDPR","terms_text":"La presente informativa, ai sensi dell’art. 13 del d.lgs. 196\/2003 (di seguito, “Codice Privacy”) descrive le modalità di gestione del presente sito web di titolarità di F.LLI FELICIONI di Felicioni Cristiano & C. S.N.C. in riferimento al trattamento dei dati personali degli utenti che lo consultano, anche ai sensi di quanto richiesto dal Provvedimento del Garante della Privacy del 8.05.2014 “Individuazione delle modalità semplificate per l’informativa e l’acquisizione del consenso per l’uso dei cookie” (di seguito, “Provvedimento”). \nL’informativa è resa soltanto per il sito sopra menzionato e non anche per altri siti web o sezioni\/pagine\/spazi di titolarità di terzi – eventualmente consultati dall’utente tramite appositi link presenti all’interno dello stesso. \n \n \n \n1. TIPOLOGIA DI DATI TRATTATI E FINALITA’ DEL TRATTAMENTO \n \n \n \n1.1. Dati di navigazione \nI sistemi informatici e gli applicativi dedicati al funzionamento di questo sito web acquisiscono, nel corso del loro normale esercizio, alcuni dati personali la cui trasmissione è implicita nell’uso dei protocolli di comunicazione di Internet. \nSi tratta di informazioni che non sono raccolte per essere associate a interessati identificati, ma che per loro stessa natura potrebbero, attraverso elaborazioni ed associazioni con dati detenuti da terzi, permettere di identificare gli utenti che si connettono al sito. Tra i dati raccolti sono compresi gli indirizzi IP o i nomi a dominio dei computer utilizzati dagli utenti, gli indirizzi in notazione URI (Uniform Resource Identifier) delle risorse richieste, l’orario della richiesta, il metodo utilizzato nel sottoporre la richiesta al server, la dimensione del file ottenuto in risposta, il codice numerico indicante lo stato della risposta data dal server (buon fine, errore, ecc.) ed altri parametri relativi al sistema operativo e all’ambiente informatico dell’utente. \nQuesti dati vengono trattati, per il tempo necessario al raggiungimento della finalità per cui sono raccolti, al solo fine di ricavare informazioni statistiche anonime sull’uso del sito (accessi allo stesso) e per controllarne il regolare funzionamento. \nI dati potrebbero essere utilizzati per l’accertamento di responsabilità in caso di ipotetici reati informatici ai danni del sito. \n \n \n \n1.2. Dati forniti volontariamente dall’utente \nQualora agli utenti del presente sito sia richiesto, per accedere a determinati servizi, di conferire propri dati personali, sarà previamente rilasciata, nelle pagine relative ai singoli servizi, apposita e dettagliata Informativa sul relativo trattamento ai sensi dell’art. 13 del Codice Privacy che specificherà limiti, finalità e modalità del trattamento stesso. \n \n \n \n1.3. Cookies \n \nCosa sono i cookie? \nI cookie sono piccoli file di testo che vengono inviati dal sito web visitato dall’utente sul dispositivo dell’utente (solitamente al browser), dove vengono memorizzati in modo da poter riconoscere tale dispositivo alla successiva visita. Ad ogni visita successiva, infatti, i cookie sono reinviati dal dispositivo dell’utente al sito. \nCiascun cookie contiene generalmente: il nome del server da cui il cookie è stato inviato; la scadenza ed un valore, solitamente un numero unico generato a caso dal computer Il server del sito web che trasferisce il cookie utilizza questo numero per riconoscervi quando tornate a visitare un sito o navigate da una pagina all’altra. \nI cookie possono essere istallati non solo dallo stesso gestore del sito visitato dall’utente (cookie di prima parte), ma anche da un sito diverso che istalla cookie per il tramite del primo sito (cookie di terze parti) ed è in grado di riconoscerli. Questo accade perché sul sito visitato possono essere presenti elementi (immagini, mappe, suoni, link a pagine web di altri domini, etc) che risiedono su server diversi da quello del sito visitato. \nIn base alla finalità, i cookie si distinguono in cookie tecnici ed in cookie di profilazione. \nI cookie tecnici sono quelli utilizzati al solo fine di “effettuare la trasmissione di una comunicazione su una rete di comunicazione elettronica, o nella misura strettamente necessaria al fornitore di un servizio della società dell’informazione esplicitamente richiesto dall’abbonato o dall’utente a erogare tale servizio” (cfr. art. 122, co. 1, del Codice Privacy, come modificato dal d.lgs. 69\/2012). In particolare, tali cookie sono solitamente usati per consentire una navigazione efficiente tra le pagine, memorizzare le preferenze (lingua, paese, ecc) degli utenti, effettuare autenticazioni informatiche, gestire il carrello degli acquisti o consentire acquisti online, etc. Alcuni di questi cookie (detti essenziali o strictly necessary) abilitano funzioni senza le quali non sarebbe possibile effettuare alcune operazioni. Ai sensi del suddetto art. 122, co. 1 del Codice Privacy l’utilizzo dei cookie tecnici non richiede il consenso degli utenti. \nAi cookie tecnici sono assimilati i cookie cd. analytics se utilizzati direttamente dal gestore del sito ai per raccogliere informazioni aggregate sul numero degli utenti e su come questi visitano il sito stesso. Tali cookie consentono ai titolari e\/o ai gestori dei siti web di capire come gli utenti interagiscono con i contenuti del sito ai fini di ottimizzazione dello stesso. \nI cookie di profilazione servono a tracciare la navigazione dell’utente, analizzare il suo comportamento ai fini marketing e creare profili sui suoi gusti, abitudini, scelte, etc in modo da trasmettere messaggi pubblicitari mirati in relazione agli interessi dell’utente stesso ed in linea con le preferenze da questi manifestati nella navigazione on line. Tali cookie possono essere istallati sul terminale dell’utente solo se questo abbia espresso il proprio consenso con le modalità semplificate indicate nel Provvedimento. \nIn base alla loro durata, i cookie si distinguono in persistenti, che rimangono memorizzati, fino alla loro scadenza, sul dispositivo dell’utente, salva rimozione da parte di quest’ultimo, e di sessione, che non vengono memorizzati in modo persistente sul dispositivo dell’utente e svaniscono con la chiusura del browser. \n \nQuali cookie sono utilizzati dal presente sito? \n \na. Cookie tecnici \nIl presente sito fa uso di cookie tecnici, istallati dal sito stesso al fine di monitorare il funzionamento del sito e consentire una navigazione efficiente sullo stesso. \nDi seguito, sono riportati, per ciascun cookie tecnico che potrebbe essere utilizzato, il nome, la finalità di utilizzo e la tipologia\/durata. \n \nI suddetti cookie non possono essere disabilitati utilizzando le funzioni di questo sito web, ma possono essere disattivati tramite le impostazioni del proprio browser in qualsiasi istante (con le modalità di seguito indicate). La loro disattivazione potrebbe precludere la fruizione ottimale di alcune aree del sito. \n \nb. Cookie di performance e analytics \nSono utilizzati anche cookie analytics al fine di analizzare statisticamente il traffico sul sito, conteggiare gli accessi o le visite al sito stesso e consentire al titolare, anche grazie alle stime sui numeri e sui modelli di consumo, di migliorarne la struttura, le logiche di navigazione e i contenuti, di adattarlo agli interessi degli utenti, di accelerare le ricerche, ecc. \nc. Cookie di profilazione. \n \nCookie di profilazione di terze parti \nNel corso della navigazione sul presente sito, l’utente potrebbe ricevere sul suo terminale cookie di profilazione installati e gestiti da terze parti al fine di inviare messaggi pubblicitari in linea con le preferenze manifestate dall’utente nell’ambito della sua navigazione in rete. Ciò accade perché, come sopra indicato, sul sito possono essere presenti elementi che risiedono su server diversi da quello sul quale si trova il sito visitato. Laddove terze parti impostino cookie mentre visitate il presente sito, ottengono informazioni relative al fatto che gli utenti lo hanno visitato. Maggiori informazioni sull’impiego dei cookie sono disponibili accedendo al link di seguito indicato al sito della terza parte. Il diniego del consenso all’utilizzo dei cookie di profilazione di terze parti non interferisce sulla possibilità di accedere al sito. \n \nSi segnala in ogni caso che gli utenti possono gestire le proprie preferenze sulla pubblicità comportamentale online (cd. “on line behavioural advertising”) tramite il sito www.youronlinechoices.com\/it, in cui sono elencati i principali provider di pubblicità comportamentale. Tramite tali sito, gli utenti possono disattivare o attivare tutte le società o in alternativa regolare le proprie preferenze individualmente per ogni società. \n \nCome si disattivano i cookie? \n \nDi default quasi tutti i browser web sono impostati per accettare automaticamente i cookie. È comunque possibile modificare tale configurazione predefinita tramite le impostazioni del browser. La disabilitazione\/il blocco dei cookies o la loro cancellazione potrebbe però precludere la fruizione ottimale di alcune aree del sito, impedire l’utilizzo di alcuni servizi e rendere la navigazione più lenta. \nLa configurazione della gestione dei cookie dipende dal browser utilizzato. Solitamente, la configurazione dei cookie è effettuata dal menu “Preferenze”, “Strumenti” o “Opzioni”. \nSi riportano di seguito i link alle guide per le gestione dei cookie dei principali browser: \nInternet Explorer: http:\/\/support.microsoft.com\/kb\/278835 \nInternet Explorer [versione mobile]: http:\/\/www.windowsphone.com\/en-us\/how-to\/wp7\/web\/changing-privacy-and-other-browser-settings \nChrome: http:\/\/support.google.com\/chrome\/bin\/answer.py?hl=en-GB&answer=95647 \nSafari: http:\/\/docs.info.apple.com\/article.html?path=Safari\/5.0\/en\/9277.html \nSafari [versione mobile]: http:\/\/support.apple.com\/kb\/HT1677 \nFirefox: http:\/\/support.mozilla.org\/en-US\/kb\/Enabling and disabling cookies \nAndroid: http:\/\/support.google.com\/mobile\/bin\/answer.py?hl=en&answer=169022 \n \n2. MODALITA’ DEL TRATTAMENTO \n \nIl trattamento dei dati personali viene effettuato attraverso strumenti automatizzati (ad es. utilizzando procedure e supporti elettronici) e\/o manualmente (ad es. su supporto cartaceo) per il tempo strettamente necessario a conseguire gli scopi per i quali i dati sono stati raccolti e, comunque, in conformità alle disposizioni normative vigenti in materia. \n \n3. TITOLARE DEL TRATTAMENTO \n \nIl Titolare del trattamento dei dati personali è F.LLI FELICIONI di Felicioni Cristiano & C. S.N.C. \n \n \n4. DIRITTI DEGLI INTERESSATI \n \nI soggetti cui si riferiscono i dati personali hanno il diritto, in qualunque momento, di ottenere la conferma dell’esistenza o meno dei medesimi dati, di conoscerne il contenuto e l’origine, verificarne l’esattezza o chiederne l’integrazione o l’aggiornamento, oppure la rettificazione ai sensi dell’art. 7 del Codice Privacy. Ai sensi del medesimo articolo gli interessati hanno altresì il diritto di chiedere la cancellazione, la trasformazione in forma anonima o il blocco dei dati che li riguardano trattati in violazione di legge, nonché di opporsi in ogni caso, per motivi legittimi, al loro trattamento. \nPer qualunque informazione in merito al trattamento dei dati, nonché per l’esercizio dei diritti ex. art 7 del Codice Privacy, gli utenti possono inoltrare apposita richiesta (anche tramite posta elettronica) agli indirizzi indicati on line nella pagina dei Contatti raggiungibile dal footer del sito.","terms_required":true,"terms_display":true,"terms_checked":false,"communications_display":true,"communications_checked":false,"communications_label":"Accetto di ricevere email","communications_required":false}};
window.jsVars = window.jsVars
? Object.assign(window.jsVars, variables)
: variables;
if ('undefined' !== typeof window.jsVars &&
'undefined' !== typeof window.jsVars.sanitation_rules &&
'function' === typeof apply_santitation) {
apply_santitation(window.jsVars.sanitation_rules);
}
if ('undefined' !== typeof window.jsVars &&
'undefined' !== typeof window.jsVars['gdpr_settings'] &&
'function' === typeof kartra_init_optin_gdpr) {
kartra_init_optin_gdpr('1679091c5a880faf6fb5e6087eb1b2dc');
}
if (/Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent)) {
jquery_1679091c5a880faf6fb5e6087eb1b2dc('.js_kartra_gdpr_popover').find(".kartra_optin_popover-content").removeClass("kartra_optin_popover-content-npadding");
jquery_1679091c5a880faf6fb5e6087eb1b2dc('.js_kartra_popover_gdpr_trigger').on("click",function() {
jquery_1679091c5a880faf6fb5e6087eb1b2dc('.js_kartra_gdpr_popover').fadeIn(300);
var bottomBar = jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).parents('.js_kartra_optin_bar_toggle:first'),
distanceGDPR = jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).parents(".js_gdpr_terms")[0].getBoundingClientRect().top;
if (bottomBar.length && bottomBar.hasClass('kartra_optin_bottombar')) {
var formContainerPosition = bottomBar.offset(),
gdprPosition = jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).offset(),
offset = formContainerPosition.top - gdprPosition.top;
distanceGDPR = Math.sqrt(offset * offset);
}
if (distanceGDPR > 310 ){
jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).parents(".js_gdpr_terms").find(".js_kartra_gdpr_popover .kartra_optin_popover-content").css("max-height", "300px");
} else {
jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).parents(".js_gdpr_terms").find(".js_kartra_gdpr_popover .kartra_optin_popover-content").css("max-height", (distanceGDPR - 10));
}
})
} else {
var hovering = false;
jquery_1679091c5a880faf6fb5e6087eb1b2dc('.js_kartra_gdpr_popover').find(".kartra_optin_popover-content").addClass("kartra_optin_popover-content-npadding");
jquery_1679091c5a880faf6fb5e6087eb1b2dc(".js_gdpr_button_popover_trigger").hover(function() {
var $wrapper = jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).parents('.js_gdpr_terms');
$wrapper.find('.js_kartra_gdpr_popover').fadeIn(300);
var bottomBar = $wrapper.parents('.js_kartra_optin_bar_toggle:first'),
distanceGDPR = $wrapper[0].getBoundingClientRect().top;
if (bottomBar.length && bottomBar.hasClass('kartra_optin_bottombar')) {
var formContainerPosition = bottomBar.offset(),
gdprPosition = $wrapper.offset(),
offset = formContainerPosition.top - gdprPosition.top;
distanceGDPR = Math.sqrt(offset * offset);
}
if (distanceGDPR > 310){
$wrapper.find(".js_kartra_gdpr_popover .kartra_optin_popover-content").css("max-height", "300px");
} else {
$wrapper.find(".js_kartra_gdpr_popover .kartra_optin_popover-content").css("max-height", (distanceGDPR - 10));
}
}, function() {
var $wrapper = jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).parents('.js_gdpr_terms');
setTimeout(function() {
if (!hovering) {
$wrapper.find('.js_kartra_gdpr_popover').hide();
}
}, 200);
});
jquery_1679091c5a880faf6fb5e6087eb1b2dc(document).on('mouseenter', '.js_kartra_gdpr_popover', function() {
hovering = true;
});
jquery_1679091c5a880faf6fb5e6087eb1b2dc(document).on('mouseleave', '.js_kartra_gdpr_popover', function() {
hovering = false;
jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).hide();
});
}
jquery_1679091c5a880faf6fb5e6087eb1b2dc('.js_utility_popover_close').on('click', function() {
jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).parents('.js_kartra_popover').hide();
});
jquery_1679091c5a880faf6fb5e6087eb1b2dc('body').on('click', function(e) {
if (jquery_1679091c5a880faf6fb5e6087eb1b2dc(e.target).hasClass('js_kartra_popover') ||
jquery_1679091c5a880faf6fb5e6087eb1b2dc(e.target).parents('.js_kartra_popover').length > 0 ||
jquery_1679091c5a880faf6fb5e6087eb1b2dc(e.target).hasClass('js_kartra_popover_trigger') ||
jquery_1679091c5a880faf6fb5e6087eb1b2dc(e.target).parents('.js_kartra_popover_trigger').length > 0) {
if (jquery_1679091c5a880faf6fb5e6087eb1b2dc(e.target).hasClass('js_kartra_popover_trigger') || jquery_1679091c5a880faf6fb5e6087eb1b2dc(e.target).parents('.js_kartra_popover_trigger').length > 0) {
if (jquery_1679091c5a880faf6fb5e6087eb1b2dc(e.target).hasClass('js_kartra_popover_trigger')) {
element = jquery_1679091c5a880faf6fb5e6087eb1b2dc(e.target);
} else {
element = jquery_1679091c5a880faf6fb5e6087eb1b2dc(e.target).parents('.js_kartra_popover_trigger')
}
var the_popover = typeof jquery_1679091c5a880faf6fb5e6087eb1b2dc(element).attr('data-popover') !== 'undefined' ? jquery_1679091c5a880faf6fb5e6087eb1b2dc(element).attr('data-popover') : 'js_kartra_gdpr_popover' ;
jquery_1679091c5a880faf6fb5e6087eb1b2dc(".js_kartra_popover").filter(function() { return jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).css('display') != 'none'}).not(jquery_1679091c5a880faf6fb5e6087eb1b2dc('.'+the_popover)).find(" .js_utility_popover_close").trigger('click');
}
} else {
jquery_1679091c5a880faf6fb5e6087eb1b2dc(".js_kartra_popover").filter(function() { return jquery_1679091c5a880faf6fb5e6087eb1b2dc(this).css('display') != 'none'}).find(".js_utility_popover_close").trigger('click');
}
});
});
jquery_1679091c5a880faf6fb5e6087eb1b2dc(window).on('resize', function() {
adjustFormByResolution();
});
function verifyCaptcha(captchaPattern, captchaPatternId, fillColor) {
return jquery_1679091c5a880faf6fb5e6087eb1b2dc.ajax({
url : 'https://app.kartra.com/process/verifyCaptcha/bty6NjC3okCp',
type : 'POST',
data : {
'captcha_pattern' : captchaPattern,
'captcha_patterns_id' : captchaPatternId,
'fill_color' : fillColor
},
xhrFields : {
withCredentials : true
}
});
}
function kartra_init_optin_gdpr(form_id) {
var optin_id = form_id;
var $form = jquery_1679091c5a880faf6fb5e6087eb1b2dc('.form_class_'+form_id);
var optin_settings = window.jsVars['gdpr_settings'];
if (optin_settings.display == true) {
if (optin_settings.terms_display || optin_settings.communications_display) {
$form.find('.js_gdpr_wrapper').show();
}
$form.find('.js_gdpr_terms')[optin_settings.terms_display ? 'show' : 'hide']();
$form.find('.js_gdpr_communications')[optin_settings.communications_display ? 'show' : 'hide']();
$form.find('.js_gdpr_terms_check').attr('checked', optin_settings.terms_checked);
$form.find('.js_gdpr_communications_check').attr('checked', optin_settings.communications_checked);
$form.find('.js_gdpr_terms_text').html(optin_settings.terms_text);
$form.find('.js_gdpr_label_communications').text(optin_settings.communications_label);
$form.find('.js_gdpr_label_terms').text(optin_settings.terms_label);
}
kartra_validate_optin(form_id)
}
function kartra_validate_optin(form_id) {
var optin_id = form_id;
var $form = jquery_1679091c5a880faf6fb5e6087eb1b2dc('.form_class_'+form_id);
var valid = true;
if ($form.find('#terms_'+form_id).length > 0 && !$form.find('#terms_'+form_id).is(':checked')) {
valid = false;
}
var optin_settings = window.jsVars['gdpr_settings'];
if (optin_settings.display) {
if (valid && optin_settings.communications_required && !$form.find('[name="gdpr_communications"]').is(':checked')) {
valid = false;
}
if (valid && optin_settings.terms_required && !$form.find('[name="gdpr_terms"]').is(':checked')) {
valid = false;
}
}
$submitButton = $form.find('.submit_button_'+optin_id+', .kartra_optin_submit_btn');
$submitButton.attr('disabled', !valid);
}
function adjustFormByResolution() {
var $viewHolder = jquery_1679091c5a880faf6fb5e6087eb1b2dc('.form_class_1679091c5a880faf6fb5e6087eb1b2dc .js_optin_view_holder'),
breakPoints = $viewHolder.data('breakpoints'),
width = $viewHolder.outerWidth();
if ($viewHolder.length && typeof breakPoints !== 'undefined') {
$viewHolder.removeClass (function (index, className) {
return (className.match (/(^|\s)kartra_optin_force_breaking_point_\S+/g) || []).join(' ');
});
if (width > breakPoints[3]) {
$viewHolder.addClass('kartra_optin_force_breaking_point_xlarge');
} else if (width > breakPoints[2] && width <= breakPoints[3]) {
$viewHolder.addClass('kartra_optin_force_breaking_point_large');
} else if (width > breakPoints[1] && width <= breakPoints[2]) {
$viewHolder.addClass('kartra_optin_force_breaking_point_medium');
} else if (width > breakPoints[0] && width <= breakPoints[1]) {
$viewHolder.addClass('kartra_optin_force_breaking_point_small');
} else {
$viewHolder.addClass('kartra_optin_force_breaking_point_xsmall');
}
}
}
function changeCaptchaColor($form) {
var $captchaInput = $form.find('[name="captcha"]'),
inputColor = $captchaInput.css('color'),
$captchaSvgPath = $form.find('.js_kartra_captcha svg path');
$captchaSvgPath.attr('fill', inputColor);
}
function getUrlParams() {
var validUrlParams = [
'utm_source',
'utm_medium',
'utm_campaign',
'utm_content',
'utm_term',
];
var urlParams = [];
if (window.location.search) {
var searchParams = new URLSearchParams(window.location.search);
searchParams.forEach(function (value, key) {
key = key.toLowerCase();
value = value.trim();
if (validUrlParams.indexOf(key) !== -1) {
urlParams.push({
key: key,
value: value
});
}
});
}
return urlParams;
}
function isInIframe() {
try {
return window.self !== window.top;
} catch (e) {
return true;
}
}
function getKartraPage() {
var $pageTrackingElement = jquery_1679091c5a880faf6fb5e6087eb1b2dc('.js_kartra_trackable_object[data-kt-type="kartra_page_tracking"]');
var pageHash = '';
if ($pageTrackingElement) {
pageHash = $pageTrackingElement.attr('data-kt-value');
}
return pageHash || false;
}
function checkForAffiliate(memberHash) {
function getCookie(name) {
const cookie = document.cookie.match('(?:(?:^|.*; *)' + name + ' *= *([^;]*).*$)|^.*$')[1];
if (cookie) {
return decodeURIComponent(cookie);
}
}
var cookieName = 'kaff_' + memberHash;
var affiliateCookie = getCookie(cookieName);
var urlParams = new URLSearchParams(window.location.search);
var affiliateUrlHash = urlParams.get('kaff');
var memberUrlHash = urlParams.get('kmid');
var affiliateData;
if (
affiliateUrlHash
&& memberUrlHash
&& memberUrlHash === memberHash
) {
if (
!affiliateCookie
|| affiliateUrlHash !== affiliateCookie
) {
affiliateData = affiliateUrlHash;
} else {
affiliateData = affiliateCookie;
}
} else if (affiliateCookie) {
affiliateData = affiliateCookie;
}
return affiliateData;
}
};
document.body.appendChild(analytics_script);
document.body.appendChild(santitation_script);
document.body.appendChild(js_jquery);
function validateEmail(email) {
var re = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
return re.test(email);
}