function initMap() { //ANGEBOT KARTE if($('#offer_gmap').length){ var address = $('#offer_gmap').attr('addr'); geocoder = new google.maps.Geocoder(); geocoder.geocode({ 'address': address }, function(results, status) { if (status == google.maps.GeocoderStatus.OK) { var goptions = { zoom: 10, center: results[0].geometry.location, mapTypeId: google.maps.MapTypeId.ROADMAP } offer_map = new google.maps.Map(document.getElementById("offer_gmap"), goptions); var marker = new google.maps.Marker({ offer_map: offer_map, animation: google.maps.Animation.DROP, position: results[0].geometry.location, title:$('body').find('h1').html(), icon: '/img/maps_icon.png' }); marker.setMap(offer_map); } }); } //ANGEBOT KARTE SAT if($('#offer_gmap_sat').length){ var address = $('#offer_gmap_sat').attr('addr'); geocoder = new google.maps.Geocoder(); geocoder.geocode({ 'address': address }, function(results, status) { if (status == google.maps.GeocoderStatus.OK) { var goptions = { zoom: 16, center: results[0].geometry.location, mapTypeId: 'satellite' } offer_map = new google.maps.Map(document.getElementById("offer_gmap_sat"), goptions); var marker = new google.maps.Marker({ offer_map: offer_map, animation: google.maps.Animation.DROP, position: results[0].geometry.location, title:$('body').find('h1').html(), icon: '/img/maps_icon.png' }); marker.setMap(offer_map); } }); } //Small OFfers /* if($('.smalloffer_gmap').length){ $('.smalloffer_gmap').each(function(){ var address = $(this).attr('addr'); var thisId = $(this).attr('id'); geocoder = new google.maps.Geocoder(); geocoder.geocode({ 'address': address }, function(results, status) { if (status == google.maps.GeocoderStatus.OK) { var goptions = { zoom: 5, center: results[0].geometry.location } offer_map = new google.maps.Map(document.getElementById(thisId), goptions); var marker = new google.maps.Marker({ offer_map: offer_map, animation: google.maps.Animation.DROP, position: results[0].geometry.location, title:$('body').find('h1').html(), icon: '/img/maps_icon.png' }); marker.setMap(offer_map); } }); }); } */ //NEWS KARTE SAT if($('#news_gmap_sat').length){ var address = $('#news_gmap_sat').attr('addr'); geocoder = new google.maps.Geocoder(); geocoder.geocode({ 'address': address }, function(results, status) { if (status == google.maps.GeocoderStatus.OK) { var goptions = { zoom: 12, center: results[0].geometry.location, mapTypeId: 'satellite' } offer_map = new google.maps.Map(document.getElementById("news_gmap_sat"), goptions); var marker = new google.maps.Marker({ offer_map: offer_map, animation: google.maps.Animation.DROP, position: results[0].geometry.location, title:$('body').find('h1').html(), icon: '/img/maps_icon.png' }); marker.setMap(offer_map); } }); } //Angebot GT if($('#offer_gt_gmap').length){ var address = $('#offer_gt_gmap').attr('addr'); geocoder = new google.maps.Geocoder(); geocoder.geocode({ 'address': address }, function(results, status) { if (status == google.maps.GeocoderStatus.OK) { var goptions = { zoom: 13, center: results[0].geometry.location, mapTypeId: google.maps.MapTypeId.ROADMAP } offer_map = new google.maps.Map(document.getElementById("offer_gt_gmap"), goptions); var marker = new google.maps.Marker({ offer_map: offer_map, animation: google.maps.Animation.DROP, position: results[0].geometry.location, title:$('body').find('h1').html(), icon: '/img/maps_icon.png' }); marker.setMap(offer_map); } }); } //Angebot Karte mit Navigation if($('#offer_gt_gmap_wroute').length){ var address = $('#offer_gt_gmap_wroute').attr('addr'); var directionsService = new google.maps.DirectionsService; var directionsDisplay = new google.maps.DirectionsRenderer; geocoder = new google.maps.Geocoder(); geocoder.geocode({ 'address': address }, function(results, status) { if (status == google.maps.GeocoderStatus.OK) { var goptions = { zoom: 13, center: results[0].geometry.location, mapTypeId: google.maps.MapTypeId.ROADMAP } offer_map = new google.maps.Map(document.getElementById("offer_gt_gmap_wroute"), goptions); var marker = new google.maps.Marker({ offer_map: offer_map, animation: google.maps.Animation.DROP, position: results[0].geometry.location, title:$('body').find('h1').html(), icon: '/img/maps_icon.png' }); marker.setMap(offer_map); directionsDisplay.setMap(offer_map); var dest = $('#offer_gt_gmap_wroute').attr('addr'); var sContent = '
'; sContent += ''; sContent += '
Route berechnen
'; sContent += '
In neuem Fenster öffnen
'; sContent += '
'; var infoWindow = new google.maps.InfoWindow( { content: '
'+sContent+'
', }); infoWindow.open(offer_map, marker); } }); } //THEME KARTE if($('#themepage_gmap').length){ var address = $('#themepage_gmap').attr('addr'); geocoder = new google.maps.Geocoder(); geocoder.geocode({ 'address': address }, function(results, status) { if (status == google.maps.GeocoderStatus.OK) { var goptions = { zoom: 8, center: results[0].geometry.location, mapTypeId: google.maps.MapTypeId.SATELLITE } offer_map = new google.maps.Map(document.getElementById("themepage_gmap"), goptions); var marker = new google.maps.Marker({ offer_map: offer_map, animation: google.maps.Animation.DROP, position: results[0].geometry.location, title:$('body').find('h1').html(), icon: '/img/maps_icon.png' }); marker.setMap(offer_map); } }); } //FIRMA OV if($('#comp_gmap').length){ var goptions = { zoom: 4, center: new google.maps.LatLng(48.1051891, 4.1873603), // centered EU 48.1051891,4.1873603,4z mapTypeId: google.maps.MapTypeId.SATELLITE } var comp_map = new google.maps.Map(document.getElementById("comp_gmap"), goptions); var bounds = new google.maps.LatLngBounds(); $('#comp_targets li').each(function(){ var addr = $(this).html(); var tit = $(this).attr('data-name'); var link = $(this).attr('data-link'); geocoder = new google.maps.Geocoder(); geocoder.geocode({ 'address': addr }, function(results, status) { if (status == google.maps.GeocoderStatus.OK) { var marker = new google.maps.Marker({ comp_map: comp_map, position: results[0].geometry.location, title:tit, icon: '/img/maps_icon.png', url: link }); marker.setMap(comp_map); bounds.extend(marker.position); google.maps.event.addListener(marker, 'click', function() { window.location.href = this.url; }); comp_map.fitBounds(bounds); } }); }); //comp_map.fitBounds(bounds); } if (document.getElementById('maps_addr') != null) { var origin_input = document.getElementById('maps_addr'); autocomplete_origin = new google.maps.places.Autocomplete(origin_input); } $('.rs_top_pers').change(function(){ if($('.rs_top_pers').val() === null){ $('.col-rs_top_pers .select2-container .select2-selection--single .select2-selection__rendered').css('color','#ccc'); }else{ $('.col-rs_top_pers .select2-container .select2-selection--single .select2-selection__rendered').css('color','#444'); } }); $('.rs_top_daue').change(function(){ if($('.rs_top_daue').val() === null){ $('.col-rs_top_daue .select2-container .select2-selection--single .select2-selection__rendered').css('color','#ccc'); }else{ $('.col-rs_top_daue .select2-container .select2-selection--single .select2-selection__rendered').css('color','#444'); } }); //SUCHE KARTE if($('#suche_gmap').length){ //var param = getParameterByName('s'); var param = $('.suche-head').attr('data-val'); if (param === undefined || param === null || param == 'null') { map_center_addr = " Deutschland "; this_zoom = 7; } else { if(param.length == 4){ var map_center_addr = getParameterByName('s')+", Österreich"; } if(param.length == 5){ var map_center_addr = getParameterByName('s')+", Deutschland"; } var this_zoom = 9; if(param.length > 5){ var map_center_addr = param; this_zoom = 7; } } var preDevZoom = $('.suche-head').attr('data-zoom'); console.log(preDevZoom); if (typeof(preDevZoom) != "undefined"){ this_zoom = parseInt(preDevZoom); } $.getJSON('https://maps.googleapis.com/maps/api/geocode/json?key=AIzaSyBm4P-r6NCLhDSqKAdJClZC6S-4prGIkm4&address='+map_center_addr+'&sensor=false', null, function (data) { //console.log(data.status ); if(data.status == "ZERO_RESULTS"){ map_center_addr = "Deutschland"; } $.getJSON('https://maps.googleapis.com/maps/api/geocode/json?key=AIzaSyBm4P-r6NCLhDSqKAdJClZC6S-4prGIkm4&address='+map_center_addr+'&sensor=false', null, function (data) { var mca = data.results[0].geometry.location var goptions = { zoom: this_zoom, center: new google.maps.LatLng(mca.lat, mca.lng), styles:[ { "featureType": "administrative", "elementType": "geometry.stroke", "stylers": [ { "color": "#004060" } ] }, { "featureType": "administrative.province", "elementType": "labels.text.fill", "stylers": [ { "color": "#00557f" } ] }, { "featureType": "administrative.province", "elementType": "labels.text.stroke", "stylers": [ { "color": "#d3eaf6" } ] }, { "featureType": "administrative.locality", "elementType": "labels.text.fill", "stylers": [ { "color": "#000000" } ] }, { "featureType": "administrative.locality", "elementType": "labels.text.stroke", "stylers": [ { "color": "#ffffff" } ] }, { "featureType": "administrative.neighborhood", "elementType": "labels.text.fill", "stylers": [ { "color": "#006699" } ] }, { "featureType": "landscape", "elementType": "geometry.fill", "stylers": [ { "color": "#ff0000" } ] }, { "featureType": "landscape.man_made", "elementType": "geometry", "stylers": [ { "color": "#bfe3f5" } ] }, { "featureType": "landscape.natural", "elementType": "geometry.fill", "stylers": [ { "color": "#219ed1" } ] }, { "featureType": "poi", "elementType": "geometry.fill", "stylers": [ { "color": "#9bd0ea" } ] }, { "featureType": "poi.park", "elementType": "geometry.fill", "stylers": [ { "color": "#abeab2" } ] }, { "featureType": "poi.school", "elementType": "geometry.fill", "stylers": [ { "color": "#9bd0ea" } ] }, { "featureType": "road.highway", "elementType": "geometry.fill", "stylers": [ { "color": "#ffb884" } ] }, { "featureType": "road.highway", "elementType": "geometry.stroke", "stylers": [ { "color": "#f38e43" } ] }, { "featureType": "road.highway.controlled_access", "elementType": "geometry.fill", "stylers": [ { "color": "#f38e43" } ] }, { "featureType": "road.highway.controlled_access", "elementType": "geometry.stroke", "stylers": [ { "color": "#ea6400" } ] }, { "featureType": "road.local", "elementType": "geometry.fill", "stylers": [ { "color": "#dff4ff" } ] }, { "featureType": "transit.line", "elementType": "labels.text.fill", "stylers": [ { "color": "#ffffff" } ] }, { "featureType": "transit.line", "elementType": "labels.text.stroke", "stylers": [ { "color": "#006699" } ] }, { "featureType": "transit.station.airport", "elementType": "geometry.fill", "stylers": [ { "color": "#9bd0ea" } ] }, { "featureType": "water", "elementType": "all", "stylers": [ { "color": "#006699" } ] }, { "featureType": "water", "elementType": "labels.text.fill", "stylers": [ { "color": "#ffffff" } ] } ] } var search_map = new google.maps.Map(document.getElementById("suche_gmap"), goptions); var homeLatlng = new google.maps.LatLng(mca.lat, mca.lng); var infowindow = new google.maps.InfoWindow({ content: '', map: search_map, position: homeLatlng }); //infowindow.open(map, marker); infowindow.close(); var addresses = []; var logos = []; var titles = []; var links = []; var phones = []; var webs = []; var jsons = []; var bounds = new google.maps.LatLngBounds(); $('.map_bommels').each(function(){ addresses.push($(this).attr('data-addr')); logos.push($(this).attr('data-logo')); titles.push($(this).attr('data-title')); links.push($(this).attr('data-link')); phones.push($(this).attr('data-phone')); webs.push($(this).attr('data-web')); jsons.push($(this).attr('data-json')); }); for (var x = 0; x < addresses.length; x++) { var thisX = x; var addr = addresses[x]; var logo = logos[x]; var title = titles[x]; var link = links[x]; var phone = phones[x]; var web = webs[x]; var json = jsons[x]; try{ searchmapcallback(logo, title, link, phone, web, search_map, bounds, json); }catch(e){ console.log(title); console.log(e); } //$.getJSON('https://maps.googleapis.com/maps/api/geocode/json?key=AIzaSyBm4P-r6NCLhDSqKAdJClZC6S-4prGIkm4&address='+addr+'&sensor=false&title=', null, searchmapcallback(logo, title, link, phone, web, search_map, bounds)); } //search_map.setCenter(bounds.getCenter()); //search_map.fitBounds(bounds); }); }); } } function searchmapcallback(logo, title, link, phone, web, search_map, bounds, json){ //console.log(json); json = JSON.parse(json); var p = json.results[0].geometry.location var latlng = new google.maps.LatLng(p.lat, p.lng); var thismarker = new google.maps.Marker({ position: latlng, map: search_map, animation: google.maps.Animation.DROP, icon: '/img/maps_icon.png', place_addr:json.results[0].formatted_address, place_logo:logo, place_title:title }); bounds.extend(thismarker.getPosition()); google.maps.event.addListener(thismarker, 'click', function() { if(logo != ''){ thismarker.infowindow = new google.maps.InfoWindow({ content: '


'+ thismarker.get('place_title') +'

'+phone+'

'+web+'
' }); } else { thismarker.infowindow = new google.maps.InfoWindow({ content: '
'+ thismarker.get('place_title') +'

'+phone+'

'+web+'
' }); } thismarker.infowindow.open(search_map, thismarker); }); google.maps.event.addListener(thismarker, 'mouseover', function() { if(logo != ''){ thismarker.infowindow = new google.maps.InfoWindow({ content: '


'+ thismarker.get('place_title') +'

'+phone+'

'+web+'
' }); } else { thismarker.infowindow = new google.maps.InfoWindow({ content: '
'+ thismarker.get('place_title') +'

'+phone+'

'+web+'
' }); } thismarker.infowindow.open(search_map, thismarker); }); google.maps.event.addListener(thismarker, 'mouseout', function() { thismarker.infowindow.close(); }); } function getParameterByName(name, url = window.location.href) { name = name.replace(/[\[\]]/g, '\\$&'); var regex = new RegExp('[?&]' + name + '(=([^&#]*)|&|#|$)'), results = regex.exec(url); if (!results) return null; if (!results[2]) return ''; return decodeURIComponent(results[2].replace(/\+/g, ' ')); } window.google = window.google || {}; google.maps = google.maps || {}; (function() { var modules = google.maps.modules = {}; google.maps.__gjsload__ = function(name, text) { modules[name] = text; }; google.maps.Load = function(apiLoad) { delete google.maps.Load; apiLoad([0.009999999776482582,[null,[["https://khms0.googleapis.com/kh?v=998\u0026hl=de-DE\u0026","https://khms1.googleapis.com/kh?v=998\u0026hl=de-DE\u0026"],null,null,null,1,"998",["https://khms0.google.com/kh?v=998\u0026hl=de-DE\u0026","https://khms1.google.com/kh?v=998\u0026hl=de-DE\u0026"]],null,null,null,null,[["https://cbks0.googleapis.com/cbk?","https://cbks1.googleapis.com/cbk?"]],[["https://khms0.googleapis.com/kh?v=167\u0026hl=de-DE\u0026","https://khms1.googleapis.com/kh?v=167\u0026hl=de-DE\u0026"],null,null,null,null,"167",["https://khms0.google.com/kh?v=167\u0026hl=de-DE\u0026","https://khms1.google.com/kh?v=167\u0026hl=de-DE\u0026"]],null,null,null,null,null,null,null,[["https://streetviewpixels-pa.googleapis.com/v1/thumbnail?hl=de-DE\u0026","https://streetviewpixels-pa.googleapis.com/v1/thumbnail?hl=de-DE\u0026"]]],["de-DE","DE",null,0,null,null,"https://maps.gstatic.com/mapfiles/",null,"https://maps.googleapis.com","https://maps.googleapis.com",null,"https://maps.google.com",null,"https://maps.gstatic.com/maps-api-v3/api/images/","https://www.google.com/maps",null,"https://www.google.com",1,"https://maps.googleapis.com/maps_api_js_slo/log?hasfast=true",0,0],["https://maps.googleapis.com/maps-api-v3/api/js/61/1/intl/de_ALL","3.61.1"],[228590708],null,null,null,[112],null,null,"initMap",["places"],null,1,"https://khms.googleapis.com/mz?v=998\u0026","AIzaSyBm4P-r6NCLhDSqKAdJClZC6S-4prGIkm4","https://earthbuilder.googleapis.com","https://earthbuilder.googleapis.com",null,"https://mts.googleapis.com/maps/vt/icon",[["https://maps.googleapis.com/maps/vt"],["https://maps.googleapis.com/maps/vt"],null,null,null,null,null,null,null,null,null,null,["https://www.google.com/maps/vt"],"/maps/vt",734000000,734,734492511],2,500,[null,null,null,null,"https://www.google.com/maps/preview/log204","","https://static.panoramio.com.storage.googleapis.com/photos/",["https://geo0.ggpht.com/cbk","https://geo1.ggpht.com/cbk","https://geo2.ggpht.com/cbk","https://geo3.ggpht.com/cbk"],"https://maps.googleapis.com/maps/api/js/GeoPhotoService.GetMetadata","https://maps.googleapis.com/maps/api/js/GeoPhotoService.SingleImageSearch",["https://lh3.ggpht.com/jsapi2/a/b/c/","https://lh4.ggpht.com/jsapi2/a/b/c/","https://lh5.ggpht.com/jsapi2/a/b/c/","https://lh6.ggpht.com/jsapi2/a/b/c/"],"https://streetviewpixels-pa.googleapis.com/v1/tile",["https://lh3.googleusercontent.com/","https://lh4.googleusercontent.com/","https://lh5.googleusercontent.com/","https://lh6.googleusercontent.com/"]],null,null,null,null,"/maps/api/js/ApplicationService.GetEntityDetails",0,null,null,null,null,[],["61.1"],1,0,[1],"CgAShzII3gUSfAgBEnhodHRwczovL3d3dy5nc3RhdGljLmNvbS9tYXBzL3Jlcy9Db21wYWN0TGVnZW5kU2RrLVJvYWRtYXBTYXRlbGxpdGUtRmV0Y2hhYmxlU3R5bGVTZXRTZGstNjZkNGU1NzFmNmQxMThlMTcyOTEzZTFkMmU2MjRjMWMSfAgCEnhodHRwczovL3d3dy5nc3RhdGljLmNvbS9tYXBzL3Jlcy9Db21wYWN0TGVnZW5kU2RrLVJvYWRtYXBTYXRlbGxpdGUtRmV0Y2hhYmxlU3R5bGVTZXRTZGstNjZkNGU1NzFmNmQxMThlMTcyOTEzZTFkMmU2MjRjMWMSfAgDEnhodHRwczovL3d3dy5nc3RhdGljLmNvbS9tYXBzL3Jlcy9Db21wYWN0TGVnZW5kU2RrLVJvYWRtYXBTYXRlbGxpdGUtRmV0Y2hhYmxlU3R5bGVTZXRTZGstNjZkNGU1NzFmNmQxMThlMTcyOTEzZTFkMmU2MjRjMWMSdggEEnJodHRwczovL3d3dy5nc3RhdGljLmNvbS9tYXBzL3Jlcy9Db21wYWN0TGVnZW5kU2RrLU5hdmlnYXRpb24tRmV0Y2hhYmxlU3R5bGVTZXRTZGstNjZkNGU1NzFmNmQxMThlMTcyOTEzZTFkMmU2MjRjMWMSfggFEnpodHRwczovL3d3dy5nc3RhdGljLmNvbS9tYXBzL3Jlcy9Db21wYWN0TGVnZW5kU2RrLU5hdmlnYXRpb25Mb3dMaWdodC1GZXRjaGFibGVTdHlsZVNldFNkay02NmQ0ZTU3MWY2ZDExOGUxNzI5MTNlMWQyZTYyNGMxYxJ/CAYSe2h0dHBzOi8vd3d3LmdzdGF0aWMuY29tL21hcHMvcmVzL0NvbXBhY3RMZWdlbmRTZGstTmF2aWdhdGlvblNhdGVsbGl0ZS1GZXRjaGFibGVTdHlsZVNldFNkay02NmQ0ZTU3MWY2ZDExOGUxNzI5MTNlMWQyZTYyNGMxYxJzCAcSb2h0dHBzOi8vd3d3LmdzdGF0aWMuY29tL21hcHMvcmVzL0NvbXBhY3RMZWdlbmRTZGstUm9hZG1hcC1GZXRjaGFibGVTdHlsZVNldFNkay02NmQ0ZTU3MWY2ZDExOGUxNzI5MTNlMWQyZTYyNGMxYxJzCAgSb2h0dHBzOi8vd3d3LmdzdGF0aWMuY29tL21hcHMvcmVzL0NvbXBhY3RMZWdlbmRTZGstUm9hZG1hcC1GZXRjaGFibGVTdHlsZVNldFNkay02NmQ0ZTU3MWY2ZDExOGUxNzI5MTNlMWQyZTYyNGMxYxJ9CAkSeWh0dHBzOi8vd3d3LmdzdGF0aWMuY29tL21hcHMvcmVzL0NvbXBhY3RMZWdlbmRTZGstUm9hZG1hcEFtYmlhY3RpdmUtRmV0Y2hhYmxlU3R5bGVTZXRTZGstNjZkNGU1NzFmNmQxMThlMTcyOTEzZTFkMmU2MjRjMWMScwgKEm9odHRwczovL3d3dy5nc3RhdGljLmNvbS9tYXBzL3Jlcy9Db21wYWN0TGVnZW5kU2RrLVJvYWRtYXAtRmV0Y2hhYmxlU3R5bGVTZXRTZGstNjZkNGU1NzFmNmQxMThlMTcyOTEzZTFkMmU2MjRjMWMSfAgLEnhodHRwczovL3d3dy5nc3RhdGljLmNvbS9tYXBzL3Jlcy9Db21wYWN0TGVnZW5kU2RrLVJvYWRtYXBTYXRlbGxpdGUtRmV0Y2hhYmxlU3R5bGVTZXRTZGstNjZkNGU1NzFmNmQxMThlMTcyOTEzZTFkMmU2MjRjMWMScwgMEm9odHRwczovL3d3dy5nc3RhdGljLmNvbS9tYXBzL3Jlcy9Db21wYWN0TGVnZW5kU2RrLVRlcnJhaW4tRmV0Y2hhYmxlU3R5bGVTZXRTZGstNjZkNGU1NzFmNmQxMThlMTcyOTEzZTFkMmU2MjRjMWMSdggNEnJodHRwczovL3d3dy5nc3RhdGljLmNvbS9tYXBzL3Jlcy9Db21wYWN0TGVnZW5kU2RrLU5hdmlnYXRpb24tRmV0Y2hhYmxlU3R5bGVTZXRTZGstNjZkNGU1NzFmNmQxMThlMTcyOTEzZTFkMmU2MjRjMWMSdggOEnJodHRwczovL3d3dy5nc3RhdGljLmNvbS9tYXBzL3Jlcy9Db21wYWN0TGVnZW5kU2RrLU5hdmlnYXRpb24tRmV0Y2hhYmxlU3R5bGVTZXRTZGstNjZkNGU1NzFmNmQxMThlMTcyOTEzZTFkMmU2MjRjMWMSfQgPEnlodHRwczovL3d3dy5nc3RhdGljLmNvbS9tYXBzL3Jlcy9Db21wYWN0TGVnZW5kU2RrLVJvYWRtYXBBbWJpYWN0aXZlLUZldGNoYWJsZVN0eWxlU2V0U2RrLTY2ZDRlNTcxZjZkMTE4ZTE3MjkxM2UxZDJlNjI0YzFjEoMBCBASf2h0dHBzOi8vd3d3LmdzdGF0aWMuY29tL21hcHMvcmVzL0NvbXBhY3RMZWdlbmRTZGstUm9hZG1hcEFtYmlhY3RpdmVMb3dCaXQtRmV0Y2hhYmxlU3R5bGVTZXRTZGstNjZkNGU1NzFmNmQxMThlMTcyOTEzZTFkMmU2MjRjMWMSfggREnpodHRwczovL3d3dy5nc3RhdGljLmNvbS9tYXBzL3Jlcy9Db21wYWN0TGVnZW5kU2RrLU5hdmlnYXRpb25Mb3dMaWdodC1GZXRjaGFibGVTdHlsZVNldFNkay02NmQ0ZTU3MWY2ZDExOGUxNzI5MTNlMWQyZTYyNGMxYxJ6CBISdmh0dHBzOi8vd3d3LmdzdGF0aWMuY29tL21hcHMvcmVzL0NvbXBhY3RMZWdlbmRTZGstVHJhbnNpdEZvY3VzZWQtRmV0Y2hhYmxlU3R5bGVTZXRTZGstNjZkNGU1NzFmNmQxMThlMTcyOTEzZTFkMmU2MjRjMWMScwgTEm9odHRwczovL3d3dy5nc3RhdGljLmNvbS9tYXBzL3Jlcy9Db21wYWN0TGVnZW5kU2RrLVJvYWRtYXAtRmV0Y2hhYmxlU3R5bGVTZXRTZGstNjZkNGU1NzFmNmQxMThlMTcyOTEzZTFkMmU2MjRjMWMSeQgUEnVodHRwczovL3d3dy5nc3RhdGljLmNvbS9tYXBzL3Jlcy9Db21wYWN0TGVnZW5kU2RrLVJvdXRlT3ZlcnZpZXctRmV0Y2hhYmxlU3R5bGVTZXRTZGstNjZkNGU1NzFmNmQxMThlMTcyOTEzZTFkMmU2MjRjMWMScwgVEm9odHRwczovL3d3dy5nc3RhdGljLmNvbS9tYXBzL3Jlcy9Db21wYWN0TGVnZW5kU2RrLVJvYWRtYXAtRmV0Y2hhYmxlU3R5bGVTZXRTZGstNjZkNGU1NzFmNmQxMThlMTcyOTEzZTFkMmU2MjRjMWMSfQgWEnlodHRwczovL3d3dy5nc3RhdGljLmNvbS9tYXBzL3Jlcy9Db21wYWN0TGVnZW5kU2RrLU5hdmlnYXRpb25BbWJpZW50LUZldGNoYWJsZVN0eWxlU2V0U2RrLTY2ZDRlNTcxZjZkMTE4ZTE3MjkxM2UxZDJlNjI0YzFjEoEBCBcSfWh0dHBzOi8vd3d3LmdzdGF0aWMuY29tL21hcHMvcmVzL0NvbXBhY3RMZWdlbmRTZGstTmF2aWdhdGlvbkFtYmllbnREYXJrLUZldGNoYWJsZVN0eWxlU2V0U2RrLTY2ZDRlNTcxZjZkMTE4ZTE3MjkxM2UxZDJlNjI0YzFjEoMBCBkSf2h0dHBzOi8vd3d3LmdzdGF0aWMuY29tL21hcHMvcmVzL0NvbXBhY3RMZWdlbmRTZGstQmFzZW1hcEVkaXRpbmdTYXRlbGxpdGUtRmV0Y2hhYmxlU3R5bGVTZXRTZGstNjZkNGU1NzFmNmQxMThlMTcyOTEzZTFkMmU2MjRjMWMScwgaEm9odHRwczovL3d3dy5nc3RhdGljLmNvbS9tYXBzL3Jlcy9Db21wYWN0TGVnZW5kU2RrLVJvYWRtYXAtRmV0Y2hhYmxlU3R5bGVTZXRTZGstNjZkNGU1NzFmNmQxMThlMTcyOTEzZTFkMmU2MjRjMWMSdwgbEnNodHRwczovL3d3dy5nc3RhdGljLmNvbS9tYXBzL3Jlcy9Db21wYWN0TGVnZW5kU2RrLVJvYWRtYXBEYXJrLUZldGNoYWJsZVN0eWxlU2V0U2RrLTY2ZDRlNTcxZjZkMTE4ZTE3MjkxM2UxZDJlNjI0YzFjEn0IHBJ5aHR0cHM6Ly93d3cuZ3N0YXRpYy5jb20vbWFwcy9yZXMvQ29tcGFjdExlZ2VuZFNkay1Sb3V0ZU92ZXJ2aWV3RGFyay1GZXRjaGFibGVTdHlsZVNldFNkay02NmQ0ZTU3MWY2ZDExOGUxNzI5MTNlMWQyZTYyNGMxYxJ3CB0Sc2h0dHBzOi8vd3d3LmdzdGF0aWMuY29tL21hcHMvcmVzL0NvbXBhY3RMZWdlbmRTZGstVGVycmFpbkRhcmstRmV0Y2hhYmxlU3R5bGVTZXRTZGstNjZkNGU1NzFmNmQxMThlMTcyOTEzZTFkMmU2MjRjMWMSfggeEnpodHRwczovL3d3dy5nc3RhdGljLmNvbS9tYXBzL3Jlcy9Db21wYWN0TGVnZW5kU2RrLVRyYW5zaXRGb2N1c2VkRGFyay1GZXRjaGFibGVTdHlsZVNldFNkay02NmQ0ZTU3MWY2ZDExOGUxNzI5MTNlMWQyZTYyNGMxYxJzCB8Sb2h0dHBzOi8vd3d3LmdzdGF0aWMuY29tL21hcHMvcmVzL0NvbXBhY3RMZWdlbmRTZGstUm9hZG1hcC1GZXRjaGFibGVTdHlsZVNldFNkay02NmQ0ZTU3MWY2ZDExOGUxNzI5MTNlMWQyZTYyNGMxYxJ3CCASc2h0dHBzOi8vd3d3LmdzdGF0aWMuY29tL21hcHMvcmVzL0NvbXBhY3RMZWdlbmRTZGstUm9hZG1hcERhcmstRmV0Y2hhYmxlU3R5bGVTZXRTZGstNjZkNGU1NzFmNmQxMThlMTcyOTEzZTFkMmU2MjRjMWMSdwghEnNodHRwczovL3d3dy5nc3RhdGljLmNvbS9tYXBzL3Jlcy9Db21wYWN0TGVnZW5kU2RrLVJvYWRtYXBEYXJrLUZldGNoYWJsZVN0eWxlU2V0U2RrLTY2ZDRlNTcxZjZkMTE4ZTE3MjkxM2UxZDJlNjI0YzFjEoABCCUSfGh0dHBzOi8vd3d3LmdzdGF0aWMuY29tL21hcHMvcmVzL0NvbXBhY3RMZWdlbmRTZGstTmF2aWdhdGlvbkhpZ2hEZXRhaWwtRmV0Y2hhYmxlU3R5bGVTZXRTZGstNjZkNGU1NzFmNmQxMThlMTcyOTEzZTFkMmU2MjRjMWMSiQEIJhKEAWh0dHBzOi8vd3d3LmdzdGF0aWMuY29tL21hcHMvcmVzL0NvbXBhY3RMZWdlbmRTZGstTmF2aWdhdGlvbkhpZ2hEZXRhaWxMb3dMaWdodC1GZXRjaGFibGVTdHlsZVNldFNkay02NmQ0ZTU3MWY2ZDExOGUxNzI5MTNlMWQyZTYyNGMxYxJyCCkSbmh0dHBzOi8vd3d3LmdzdGF0aWMuY29tL21hcHMvcmVzL0NvbXBhY3RMZWdlbmRTZGstVHJhdmVsLUZldGNoYWJsZVN0eWxlU2V0U2RrLTY2ZDRlNTcxZjZkMTE4ZTE3MjkxM2UxZDJlNjI0YzFjEnYIKhJyaHR0cHM6Ly93d3cuZ3N0YXRpYy5jb20vbWFwcy9yZXMvQ29tcGFjdExlZ2VuZFNkay1UcmF2ZWxEYXJrLUZldGNoYWJsZVN0eWxlU2V0U2RrLTY2ZDRlNTcxZjZkMTE4ZTE3MjkxM2UxZDJlNjI0YzFjEn8IKxJ7aHR0cHM6Ly93d3cuZ3N0YXRpYy5jb20vbWFwcy9yZXMvQ29tcGFjdExlZ2VuZFNkay1OYXZpZ2F0aW9uU2F0ZWxsaXRlLUZldGNoYWJsZVN0eWxlU2V0U2RrLTY2ZDRlNTcxZjZkMTE4ZTE3MjkxM2UxZDJlNjI0YzFjEn8ILBJ7aHR0cHM6Ly93d3cuZ3N0YXRpYy5jb20vbWFwcy9yZXMvQ29tcGFjdExlZ2VuZFNkay1UZXJyYWluVmVjdG9yQ2xpZW50LUZldGNoYWJsZVN0eWxlU2V0U2RrLTY2ZDRlNTcxZjZkMTE4ZTE3MjkxM2UxZDJlNjI0YzFjEoMBCC0Sf2h0dHBzOi8vd3d3LmdzdGF0aWMuY29tL21hcHMvcmVzL0NvbXBhY3RMZWdlbmRTZGstVGVycmFpblZlY3RvckNsaWVudERhcmstRmV0Y2hhYmxlU3R5bGVTZXRTZGstNjZkNGU1NzFmNmQxMThlMTcyOTEzZTFkMmU2MjRjMWMSfQguEnlodHRwczovL3d3dy5nc3RhdGljLmNvbS9tYXBzL3Jlcy9Db21wYWN0TGVnZW5kU2RrLU5hdmlnYXRpb25BbWJpZW50LUZldGNoYWJsZVN0eWxlU2V0U2RrLTY2ZDRlNTcxZjZkMTE4ZTE3MjkxM2UxZDJlNjI0YzFjEoEBCC8SfWh0dHBzOi8vd3d3LmdzdGF0aWMuY29tL21hcHMvcmVzL0NvbXBhY3RMZWdlbmRTZGstTmF2aWdhdGlvbkFtYmllbnREYXJrLUZldGNoYWJsZVN0eWxlU2V0U2RrLTY2ZDRlNTcxZjZkMTE4ZTE3MjkxM2UxZDJlNjI0YzFjEn0IMBJ5aHR0cHM6Ly93d3cuZ3N0YXRpYy5jb20vbWFwcy9yZXMvQ29tcGFjdExlZ2VuZFNkay1BaXJRdWFsaXR5SGVhdG1hcC1GZXRjaGFibGVTdHlsZVNldFNkay02NmQ0ZTU3MWY2ZDExOGUxNzI5MTNlMWQyZTYyNGMxYxKBAQgxEn1odHRwczovL3d3dy5nc3RhdGljLmNvbS9tYXBzL3Jlcy9Db21wYWN0TGVnZW5kU2RrLUFpclF1YWxpdHlIZWF0bWFwRGFyay1GZXRjaGFibGVTdHlsZVNldFNkay02NmQ0ZTU3MWY2ZDExOGUxNzI5MTNlMWQyZTYyNGMxYxJ6CDISdmh0dHBzOi8vd3d3LmdzdGF0aWMuY29tL21hcHMvcmVzL0NvbXBhY3RMZWdlbmRTZGstTmF2aWdhdGlvbkVnbW0tRmV0Y2hhYmxlU3R5bGVTZXRTZGstNjZkNGU1NzFmNmQxMThlMTcyOTEzZTFkMmU2MjRjMWMSggEIMxJ+aHR0cHM6Ly93d3cuZ3N0YXRpYy5jb20vbWFwcy9yZXMvQ29tcGFjdExlZ2VuZFNkay1OYXZpZ2F0aW9uRWdtbUxvd0xpZ2h0LUZldGNoYWJsZVN0eWxlU2V0U2RrLTY2ZDRlNTcxZjZkMTE4ZTE3MjkxM2UxZDJlNjI0YzFjEoMBCDQSf2h0dHBzOi8vd3d3LmdzdGF0aWMuY29tL21hcHMvcmVzL0NvbXBhY3RMZWdlbmRTZGstTmF2aWdhdGlvbkVnbW1TYXRlbGxpdGUtRmV0Y2hhYmxlU3R5bGVTZXRTZGstNjZkNGU1NzFmNmQxMThlMTcyOTEzZTFkMmU2MjRjMWMSfAg1EnhodHRwczovL3d3dy5nc3RhdGljLmNvbS9tYXBzL3Jlcy9Db21wYWN0TGVnZW5kU2RrLU5hdmlnYXRpb25UdW5uZWwtRmV0Y2hhYmxlU3R5bGVTZXRTZGstNjZkNGU1NzFmNmQxMThlMTcyOTEzZTFkMmU2MjRjMWMShQEINhKAAWh0dHBzOi8vd3d3LmdzdGF0aWMuY29tL21hcHMvcmVzL0NvbXBhY3RMZWdlbmRTZGstTmF2aWdhdGlvblR1bm5lbExvd0xpZ2h0LUZldGNoYWJsZVN0eWxlU2V0U2RrLTY2ZDRlNTcxZjZkMTE4ZTE3MjkxM2UxZDJlNjI0YzFjEn0INxJ5aHR0cHM6Ly93d3cuZ3N0YXRpYy5jb20vbWFwcy9yZXMvQ29tcGFjdExlZ2VuZFNkay1OYXZpZ2F0aW9uR2xhc3Nlcy1GZXRjaGFibGVTdHlsZVNldFNkay02NmQ0ZTU3MWY2ZDExOGUxNzI5MTNlMWQyZTYyNGMxYyIgNjZkNGU1NzFmNmQxMThlMTcyOTEzZTFkMmU2MjRjMWMoATJyaHR0cHM6Ly93d3cuZ29vZ2xlLmNvbS9tYXBzL3Z0L3N4Zm9ybXM/dj02NmQ0ZTU3MWY2ZDExOGUxNzI5MTNlMWQyZTYyNGMxYyZzdHlsZXJfc3VidHlwZT1TVFlMRVJfTEVHRU5EX1NVQlRZUEVfU0RLOmAKLoB8gHiAdIBwgGyAaIBkgGCAXIBYgFSAUIBMgEiARIBAgDyAOIA0gDCALIAogCQSBAgAEAASBAgBEAESBAgCEAISDQgDEP///////////wESDQgEEP7//////////wFCA3NkazjpjrQWOOuIuBY47t+5Fg==",null,1,0.009999999776482582,null,[[[6,"1748349272"]]],null,""], loadScriptTime); }; var loadScriptTime = (new Date).getTime(); })(); // inlined google.maps.__gjsload__('places', function(_){var Kta=function(a){return _.Le(a,_.mp,1)},Lta=function(a){return _.Le(a,_.mp,2)},Mta=function(a){switch(a){case 0:return 200;case 3:case 11:return 400;case 16:return 401;case 7:return 403;case 5:return 404;case 6:case 10:return 409;case 9:return 412;case 8:return 429;case 1:return 499;case 15:case 13:case 2:return 500;case 12:return 501;case 14:return 503;case 4:return 504;default:return 0}},Nta=function(a,b){(a.Rg??(a.Rg=new Set)).add(b);a.Ci!==void 0&&a.isConnected&&b.WE?.()},VA=function(a){switch(a.code){case 0:return"OK"; case 1:return"CANCELLED";case 2:return"UNKNOWN";case 3:return"INVALID_ARGUMENT";case 4:return"DEADLINE_EXCEEDED";case 5:return"NOT_FOUND";case 6:return"ALREADY_EXISTS";case 7:return"PERMISSION_DENIED";case 16:return"UNAUTHENTICATED";case 8:return" RESOURCE_EXHAUSTED";case 9:return"FAILED_PRECONDITION";case 10:return"ABORTED";case 11:return"OUT_OF_RANGE";case 12:return"UNIMPLEMENTED";case 13:return"INTERNAL";case 14:return"UNAVAILABLE";case 15:return"DATA_LOSS";default:return"UNKNOWN"}},WA=function(a, b,c){switch(Mta(c.code).toString()[0]){case "2":return null;case "3":return new _.Np(a,b,VA(c));case "4":return new _.Pp(a,b,VA(c));case "5":return new _.Op(a,b,VA(c));default:return new _.Op(a,b,VA(c))}},Ota=function(a){return a in XA?XA[a][1]:a},YA=function(a,b){if(!a||!isFinite(a)||b==0)return a;a=String(a).split("e");return parseFloat(a[0]+"e"+(parseInt(a[1]||0,10)+b))},Pta=function(a,b){return a&&isFinite(a)?YA(Math.round(YA(a,b)),-b):a},aB=function(a,b){var c;if(c=b){a:if(b&&b.length===3){for(c= 0;c<3;c++){var d=b[c];if(d<"A"||d>"Z"&&d<"a"||d>"z"){c=!1;break a}}c=!0}else c=!1;c=!c}if(c)throw new TypeError("Currency must be valid ISO code");this.Kg=null;this.jh=this.Jg=this.Tg=!1;this.Rg=b?b.toUpperCase():null;this.Pg=40;this.Gg=1;this.Ng=0;this.Eg=3;this.Qg=this.Fg=0;this.Yg=!1;this.Xg=this.Wg="";this.Sg=ZA.qz;this.Ug="";this.Ig=1;this.Mg=!1;this.Lg=[];this.Vg=this.fh=!1;this.Og=0;this.mh=typeof a==="number"?a:-1;this.ah=typeof a==="string"?a:"";if(typeof a==="number"&&a!=5&&a!=6)Qta(this, this.mh);else if(this.Kg=null,typeof a==="number")switch(a){case 1:$A(this,ZA.kz);break;case 2:$A(this,ZA.vD);break;case 3:$A(this,ZA.sD);break;case 4:a=ZA.hD;b=["0"];if(c=XA[this.Rg||ZA.uu]){c=c[0]&7;if(c>0)for(b.push("."),d=0;d0?h++:f++;l>=0&&e<0&&l++;break;case "0":if(h>0)throw Error('Unexpected "0" in pattern "'+b+'"');g++;l>=0&&e<0&&l++;break;case ",":l>0&&a.Lg.push(l);l=0;break;case ".":if(e>=0)throw Error('Multiple decimal separators in pattern "'+b+'"');e=f+g+h;break;case "E":if(a.Vg)throw Error('Multiple exponential symbols in pattern "'+b+'"');a.Vg=!0;a.Qg=0;c[0]+10&&e>=0&&(g=e,g==0&&g++,h=f-g,f=g-1,g=1);if(e<0&&h>0||e>=0&&(ef+g)||l==0)throw Error('Malformed pattern "'+b+'"');h=f+g+h;a.Eg=e>=0?h-e:0;e>=0&&(a.Fg=f+g-e,a.Fg<0&&(a.Fg=0));a.Gg=(e>=0?e:h)-f;a.Vg&&(a.Pg=f+a.Gg,a.Eg==0&&a.Gg==0&&(a.Gg=1));a.Lg.push(Math.max(0,l));a.fh=e==0||e==h;d=c[0]-d;a.Xg=bB(a,b,c);c[0]0)throw Error("Can't combine significant digits and minimum fraction digits");a.Tg=2!==a.Ng;a.Ng=2},Qta=function(a,b){const c={notation:"standard",minimumIntegerDigits:Math.min(21,Math.max(1,a.Gg))};a.Yg&&(c.signDisplay="always");a.Tg?(c.minimumSignificantDigits=1,c.maximumSignificantDigits=Math.max(1,Math.min(21, a.Ng))):a.Jg&&(c.minimumFractionDigits=Math.max(0,a.Fg),c.maximumFractionDigits=Math.min(20,Math.max(0,a.Eg)));switch(b){case 1:c.style="decimal";break;case 2:c.notation="scientific";c.maximumFractionDigits=Math.min(20,Math.max(0,a.Qg));break;case 3:c.style="percent";break;case 4:c.style="currency";b=a.Rg||ZA.uu;c.currency=b;b=b in XA?XA[b][0]%16:2;a.Jg?(c.minimumFractionDigits=Math.max(a.Fg,0),c.maximumFractionDigits=Math.min(a.Eg,20)):(c.minimumFractionDigits=Math.max(0,b),c.maximumFractionDigits= Math.min(c.minimumFractionDigits,20));switch(0){default:case 1:c.currencyDisplay="symbol";break;case 2:c.currencyDisplay="code";break;case 0:c.currencyDisplay="symbol"}break;case 5:a.Og=1;c.notation="compact";c.compactDisplay="short";break;case 6:a.Og=2;c.notation="compact";c.compactDisplay="long";break;default:throw Error("Unsupported ECMAScript NumberFormat custom pattern = "+a.ah);}try{let d;(d="de".replace("_","-"))&&d in Sta&&(c.numberingSystem=Sta[d]);a.Kg=new Intl.NumberFormat(d,c)}catch(d){throw a.Kg= null,Error("ECMAScript NumberFormat error: "+d);}Tta=a.jh=a.Tg=a.Jg=!1},cB=function(a,b){var c=YA(b,a.Eg);a.Ng>0&&(c=Uta(c,a.Ng,a.Eg));c=Math.round(c);let d;if(isFinite(c)){if(d=Math.floor(YA(c,-a.Eg)),c=Math.floor(c-YA(d,a.Eg)),c<0||c>=YA(1,a.Eg))d=Math.round(b),c=0}else d=b,c=0;return{fF:d,nJ:c}},dB=function(a,b,c,d){if(a.Fg>a.Eg)throw Error("Min value must be less than max value");d||(d=[]);b=cB(a,b);var e=b.fF,f=b.nJ,g=a.Fg>0||f>0||!1;b=a.Fg;g&&(b=a.Fg);for(var h="",l=e;l>1E20;)h="0"+h,l=Math.round(YA(l, -1));h=l+h;const n=ZA.iD;l=ZA.rz.codePointAt(0);var p=h.length,r=0;if(e>0||c>0){for(e=p;e=2)for(c=1;c0){e=a.Lg;r=p=0;var u=ZA.mz,w=h.length;for(let y=0;y1){var x=e[r];if(y0&&B%x===1)&&d.push(u)}else r= 0&&x>0;p--){r=h[p];for(w=0;w=0;w++)u.push(String.fromCodePoint(l+Number(c.charAt(x-w-1))*1));x-=r;x>0&&u.push(e)}d.push.apply(d,u.reverse())}}else g||d.push(String.fromCodePoint(l));(a.fh||g)&&d.push(n);f=String(f);g=f.split("e+");g.length==2&&(f=String(Uta(parseFloat(g[0]),a.Ng,1)),f=f.replace(".",""),f+="0".repeat(parseInt(g[1],10)-f.length+1));a.Eg+1>f.length&&(f="1"+"0".repeat(a.Eg-f.length)+f);for(a=f.length;f.charAt(a-1)=="0"&&a>b+1;)a--;for(b=1;b=3;)c=a[YA(1,b)],b--;if(!c)return fB;c=c.other;var d=a="",e=c.indexOf(";");e>=0&&(c=c.substring(0,e),e=c.substring(e+1))&&(d=/([^0]*)(0+)(.*)/.exec(e),a=d[1],d=d[3]);return c&&c!="0"?(c=/([^0]*)(0+)(.*)/.exec(c))?{Xz:b+1-(c[2].length-1),pB:a,qB:d,prefix:c[1],AC:c[3]}:fB:fB},gB=function(a){if(!isFinite(a))return a>0?a:0;let b=0;for(;(a/=10)>=1;)b++;return b},Uta=function(a,b,c){if(!a)return a; b=b-gB(a)-1;return b<-c?Pta(a,-c):Pta(a,b)},hB=function(a){this.Gg=a;this.Fg=this.Eg=this.Jg=null;a=ZA;const b=eB;if(Xta!==a||Yta!==b)Xta=a,Yta=b,Zta=new aB(1);this.Kg=Zta},iB=function(a,b,c,d,e){for(let r=0;r_.Cfa(b,c,{get(){return(this.Ci??hua??(hua=document.createDocumentFragment())).querySelectorAll(a)}})},oB=function(a,b){return function*(){const c=typeof b==="function";if(a!==void 0){let d=-1;for(const e of a)d>-1&&(yield c?b(d):b),d++,yield e}}()},iua=function(a,b){return function*(){if(a!== void 0){let c=0;for(const d of a)yield b(d,c++)}}()},jua=function(a){a==null||(0,_.ip)(a);if(a!=null)return(0,_.ip)(a),(0,_.ae)(a),(0,_.ae)(a)?Number(a):String(a)},pB=function(a=""){return a+" (wird in neuem Tab ge\u00f6ffnet)"},qB=function(a){return a?"Foto von "+a:""},rB=function(a){a=_.Hj(b=>{b=(0,_.So)(b);if(b.includes("/"))throw _.Bj('Field with "/" specified: '+b);b=b.replace(/\./g,"/");b==="utc_offset_minutes"?b="utc_offset":b==="utc_offset"&&_.uj("utc_offset is deprecated as of November 2019. Use utc_offset_minutes instead. See https://goo.gle/js-open-now"); b==="opening_hours/open_now"&&_.uj("opening_hours.open_now is deprecated as of November 2019. Use the isOpen() method from a PlacesService.getDetails() result instead. See https://goo.gle/js-open-now.");b==="permanently_closed"&&_.uj("permanently_closed is deprecated as of May 2020 and will beturned off in May 2021. Use business_status instead.");return b})(a);if(!a.length)throw _.Bj("At least one field must be specified.");return a},lua=function(a,b){return _.Qe(a,_.mp,2,kua,b)},mua=function(a,b, c){c=c||{};c.format="jspb";this.Eg=new _.vp(c);this.Fg=a==void 0?a:a.replace(/\/+$/,"")},oua=function(a,b,c){return a.Eg.Eg(a.Fg+"/$rpc/google.maps.geocode.v4.GeocodeService/GeocodeLocation",b,c||{},nua)},pua=function(){const a=document.body,b=window;sB===null&&(sB=!1,a.addEventListener("pointerdown",()=>{sB=!0},!0),a.addEventListener("click",()=>{sB=!1},!0));tB===null&&(tB=!1,b.addEventListener("blur",()=>{tB=!0},!0),b.addEventListener("focus",()=>{tB=!1},!0))},vB=function(a){a.Wg&&(a.Wg=!1,qua(a), uB(a))},uB=function(a){const b=a.kj&&a.Wg?0:1;b===0&&a.wh!==0?(a.Fg.removeAttribute("role"),a.Fg.setAttribute("tabindex","0"),a.Fg.removeAttribute("aria-hidden"),a.Fg.setAttribute("aria-label","Suche im Vollbildmodus beenden"),a.Gg.append(a.Pg),a.Gg.showModal(),a.Eg.focus(),a.wh=0):b===1&&a.wh!==1&&(a.Fg.setAttribute("aria-hidden","true"),a.Fg.setAttribute("tabindex","-1"),a.Fg.setAttribute("role","presentation"),a.Fg.removeAttribute("aria-label"),a.Gg.close(),a.Ci?.append(a.Pg),wB(a),a.wh=1)},rua= function(a,b=a.Lg){b!==-1&&(xB(a,-1),a.Eg.value=a.predictions[b].text.text,a.ui.setFormValue(a.Eg.value),a.an(a.predictions[b]),vB(a),a.Eg.focus())},xB=function(a,b){var c=a.Vg[a.Lg];c&&(c.removeAttribute("aria-selected"),c.setAttribute("part","prediction-item"),a.Eg.setAttribute("aria-activedescendant",""));a.Lg===-1&&(a.ak=a.Eg.value);a.Lg=b;if(c=a.Vg[b])c.setAttribute("aria-selected","true"),c.setAttribute("part","prediction-item prediction-item-selected"),a.Eg.setAttribute("aria-activedescendant", c.id),c.appendChild(a.Xg);a.Lg===-1?(a.Eg.value=a.ak,a.jh.appendChild(a.Xg)):a.Eg.value=a.predictions[b].text.text},sua=function(a){a.Fg.classList.add("autocomplete-icon");a.Fg.setAttribute("aria-hidden","true");a.Fg.setAttribute("role","presentation");a.Fg.setAttribute("tabindex","-1");a.Fg.addEventListener("click",()=>{vB(a)})},uua=function(a){a.Eg.setAttribute("aria-autocomplete","list");a.Eg.setAttribute("autocomplete","off");a.Eg.setAttribute("role","combobox");a.Eg.setAttribute("aria-expanded", "false");a.Eg.setAttribute("aria-haspopup","listbox");a.Eg.getAttribute("aria-label")||a.Eg.setAttribute("aria-label","Nach einem Ort suchen");a.Eg.addEventListener("input",()=>{a.Eg.removeAttribute("aria-activedescendant");a.Wg=!0;tua(a,a.Eg.value);uB(a);a.ui.setFormValue(a.Eg.value)});a.Eg.addEventListener("blur",b=>{b.relatedTarget||sB||tB?b.relatedTarget&&!a.Ci?.contains(b.relatedTarget)&&vB(a):(a.kj&&a.Gg.focus(),wB(a))});a.Eg.addEventListener("keydown",a.Zm)},wua=function(a){const b=vua();a.Jg.classList.add("dropdown"); a.Jg.append(a.Ig,b);a.Jg.style.display="none";a.Jg.setAttribute("part","prediction-list")},xua=function(a){a.Gg.setAttribute("aria-label","Nach einem Ort suchen");a.Gg.tabIndex=-1;a.Gg.addEventListener("focus",()=>{wB(a)})},wB=function(a){a.Dh!==null&&clearTimeout(a.Dh);a.Dh=setTimeout(()=>{a.Eg.focus();a.Dh=null},0)},vua=function(){const a=new _.qr;var b=document.createElement("div");b.classList.add("disclosure-dialog-content");_.Fq((0,_.S)` ${"Zus\u00e4tzliche Nutzungsbedingungen ansehen"} `,b);const c=new _.xr({title:"Zus\u00e4tzliche Nutzungsbedingungen f\u00fcr Google Maps",content:b});c.id="disclosure-dialog";b=(0,_.S)``;const d=document.createElement("div");d.setAttribute("role","presentation");d.classList.add("attributions");_.Fq((0,_.S)`${a} ${b} ${c}`,d);return d},qua=function(a){a.Ig.textContent="";a.Eg.removeAttribute("aria-controls");a.Eg.removeAttribute("aria-activedescendant");a.Eg.setAttribute("aria-expanded","false");a.Jg.style.display="none"},yua=function(a){a.Wg&&a.Vg.length&&(a.Eg.setAttribute("aria-controls",a.Ig.id),a.Ig.style.display="inline",a.Vg.forEach(a.Ig.appendChild,a.Ig),a.Eg.setAttribute("aria-expanded", "true"),a.Jg.style.display="flex")},Aua=function(a,b){qua(a);a.Lg=-1;a.predictions=b;a.Vg=a.predictions.map((c,d)=>{const e=document.createElement("li");e.setAttribute("part","prediction-item");e.setAttribute("role","option");e.id=_.Nk();e.appendChild(zua(a,c));e.addEventListener("click",()=>{rua(a,d)});return e});yua(a)},Bua=function(a){const b=new Set;return a.filter(c=>{if(b.has(c.constructor))return!1;b.add(c.constructor);return!0})},Cua=function(a){return a.links.length===0?null:(0,_.S)` ${oB(a.links.map(({text:b,href:c})=>(0,_.S)`${b}`)," | ")} `},Dua=function(a){return Intl.NumberFormat(_.xi?.Eg().Eg()||void 0,{maximumFractionDigits:1,minimumFractionDigits:1}).format(a)},Eua=function(a){return Array.from({length:10}).fill("empty").fill("filled",0,Math.round(a*2))},Fua=function(a){const b="Bewertung: "+Dua(a)+"\u00a0von 5";return(0,_.S)` `},yB=function(a,b){try{_.Fj(HTMLInputElement,"HTMLInputElement")(a)}catch(c){if(_.Cj(c),!a)return}_.dl(window,"Pawa");_.P(window,154340);_.Vi("places_impl").then(c=>{b=b||{};this.setValues(b);c.fI(this,a);_.gl(a)});console.warn("As of March 1st, 2025, google.maps.places.Autocomplete is not available to new customers. Please use google.maps.places.PlaceAutocompleteElement instead. At this time, google.maps.places.Autocomplete is not scheduled to be discontinued, but google.maps.places.PlaceAutocompleteElement is recommended over google.maps.places.Autocomplete. While google.maps.places.Autocomplete will continue to receive bug fixes for any major regressions, existing bugs in google.maps.places.Autocomplete will not be addressed. At least 12 months notice will be given before support is discontinued. Please see https://developers.google.com/maps/legacy for additional details and https://developers.google.com/maps/documentation/javascript/places-migration-overview for the migration guide.")}, zB=function(){this.Eg=null;_.Vi("places_impl").then(a=>{this.Eg=a.uI()});console.warn("As of March 1st, 2025, google.maps.places.AutocompleteService is not available to new customers. Please use google.maps.places.AutocompleteSuggestion instead. At this time, google.maps.places.AutocompleteService is not scheduled to be discontinued, but google.maps.places.AutocompleteSuggestion is recommended over google.maps.places.AutocompleteService. While google.maps.places.AutocompleteService will continue to receive bug fixes for any major regressions, existing bugs in google.maps.places.AutocompleteService will not be addressed. At least 12 months notice will be given before support is discontinued. Please see https://developers.google.com/maps/legacy for additional details and https://developers.google.com/maps/documentation/javascript/places-migration-overview for the migration guide.")}, Gua=function(a,b){return a||b?a&&b?!!a.media===!!b.media&&a.media?.lightboxPreferred===b.media?.lightboxPreferred&&!!a.address===!!b.address&&!!a.rating===!!b.rating&&!!a.Vt===!!b.Vt&&!!a.price===!!b.price&&!!a.dt===!!b.dt&&!!a.Uv===!!b.Uv&&!!a.attribution===!!b.attribution&&a.attribution?.lightSchemeColor===b.attribution?.lightSchemeColor&&a.attribution?.darkSchemeColor===b.attribution?.darkSchemeColor&&!!a.website===!!b.website&&!!a.phoneNumber===!!b.phoneNumber&&!!a.openingHours===!!b.openingHours&& !!a.summary===!!b.summary&&!!a.Bw===!!b.Bw&&!!a.reviews===!!b.reviews&&!!a.plusCode===!!b.plusCode&&!!a.gj===!!b.gj:!1:!0},Hua=function(a){return a.links.length===0?null:(0,_.S)` ${oB(a.links.map(({text:b,href:c})=>(0,_.S)``),"")} `},Jua=function(a){if(a.Eg)return a.Eg;const b=document.createElement("div"),c=new AB;c.disclosureContent=[...a.disclosureContent,Iua];b.append(c);a.Eg=new _.xr({title:"Google Maps",VM:!1,content:b});a.Eg.id="disclosure-dialog";a.Ci.appendChild(a.Eg);return a.Eg},Kua=function(a){return a.showInfoButton?(0,_.S)` `:(0,_.S)``},Lua=function(a,b,c){a=a.periods.map(({open:d})=>d.Eg(b,c));return a.length?new Date(Math.min(...a)):void 0},Mua=function(a,b,c){a=a.periods.map(({close:d})=>d?.Eg(b,c)).filter(Boolean);return a.length?new Date(Math.min(...a)):void 0},LB=function(a,b){for(const [d,e]of Object.entries(b)){var c=d;const f=e;if(Nua.has(c))switch(a.Fg.add(c),c){case "accessibilityOptions":a.Ng=f?new BB(f):null;break;case "addressComponents":a.Ig=f.map(g=>new CB(g));break;case "attributions":a.Og= f.map(g=>new DB(g));break;case "evChargeOptions":a.Pg=f?new EB(f):null;break;case "fuelOptions":c={};a.requestedLanguage!=null&&(c.language=a.requestedLanguage);a.requestedRegion!=null&&(c.region=a.requestedRegion);a.Qg=f?new FB(f,c):null;break;case "id":Oua(a,f);break;case "location":a.Jg=f?new _.Tj(f):null;break;case "regularOpeningHours":try{a.Gg=f&&f?.periods?.length?new GB(f):null}catch(g){_.uj(`Place ${a.id} returned invalid opening hours.`,g),_.P(window,148228),a.Gg=null}break;case "parkingOptions":a.Rg= f?new HB(f):null;break;case "paymentOptions":a.Sg=f?new IB(f):null;break;case "photos":a.Ug=f.map(g=>{try{return new JB(g)}catch(h){_.uj(`Place ${a.id} returned an invalid photo.`,h),_.P(window,148229)}}).filter(Boolean);break;case "plusCode":a.Kg=f?new _.wr(f):null;break;case "postalAddress":a.Lg=f?new Pua(f):null;break;case "priceRange":c={};a.requestedLanguage!=null&&(c.language=a.requestedLanguage);a.requestedRegion!=null&&(c.region=a.requestedRegion);a.Tg=f?new Qua(f,c):null;break;case "reviews":a.Vg= f.map(g=>new KB(g));break;case "types":a.Mg=f||[];break;case "viewport":a.Wg=f?new _.Vk(f):f}}a.Eg={...a.Eg,...b}},Oua=function(a,b){a.id!==b&&(a.id!==""&&console.warn(`Please note that the 'id' property of this place has changed: ${a.id} -> ${b}`),Object.defineProperty(a,"id",{enumerable:!0,writable:!1,value:b}))},Tua=function(a,b,c){if(a.length===0)return!1;if(Rua(a))return!0;const d=new MB(c.getUTCDay(),c.getUTCHours(),c.getUTCMinutes(),0);return Sua(a,b).some(e=>e.includes(d))},Rua=function(a){return a.length=== 1&&!a[0].close&&!!a[0].open&&a[0].open.day===0&&a[0].open.hour===0&&a[0].open.minute===0},Sua=function(a,b){const c=[];a.forEach(d=>{var e=d.close;d=d.open;e=new NB(new MB(d.day,d.hour,d.minute,b),new MB(e.day,e.hour,e.minute,b));e.endTime.compare(e.startTime)<0?(d=new NB(new MB(0,0,0,0),e.endTime),c.push(new NB(e.startTime,new MB(0,0,10080,0))),c.push(d)):c.push(e)});return c},Uua=function(a){const b=Math.abs(a%60);var c=Math.floor(Math.abs(a/60));return`${a<0?"-":"+"}${c<10?`0${c}`:c}:${b<10?`0${b}`: b}`},Vua=function(a){if(!a)return!1;const b=new OB;b.place=a;return b.Nh()!==null},Wua=function(a){if(!a.place)return null;switch(a.place.businessStatus){case "CLOSED_PERMANENTLY":return(0,_.S)` ${"Dauerhaft geschlossen"} `;case "CLOSED_TEMPORARILY":return(0,_.S)` ${"Vor\u00fcbergehend geschlossen"} `}var b=a.place.regularOpeningHours,c=a.place.utcOffsetMinutes;const d=b?.periods;if(!d||!d.length||c==null)return null;if(Rua(d))return(0,_.S)`${"24\u00a0Stunden ge\u00f6ffnet"}`;var e=Uua(c),f=new Date;if(Tua(d,c,f)){f=Mua(b,f.getTime(),c);if(!f)return null;e=mB("Schlie\u00dft: {nextClosingTime}",{nextClosingTime:PB(a,{timeStyle:"short",timeZone:e},f)});a=(0,_.S)`${"Ge\u00f6ffnet"}`}else{b=Lua(b,f.getTime(),c);if(!b)return null;c=PB(a, {weekday:"short",timeZone:e},b);e=mB("{nextOpeningDayOfWeek,select, null{\u00d6ffnet: {nextOpeningTime}}other{\u00d6ffnet: {nextOpeningDayOfWeek}, {nextOpeningTime}}}",{nextOpeningTime:PB(a,{timeStyle:"short",timeZone:e},b),nextOpeningDayOfWeek:c===PB(a,{weekday:"short",timeZone:e},f)?"null":c});a=(0,_.S)`${"Geschlossen"}`}return(0,_.S)`${a}\u00b7${e}`},Yua=function(a){if(a.weekdayDescriptions&&a.weekdayDescriptions.length!==0){var b=Xua(a);return(0,_.S)`
    ${a.weekdayDescriptions.map((c,d)=>d===0&&b?(0,_.S)`
  • ${c}
  • `:(0,_.S)`
  • ${c}
  • `)}
`}},PB=function(a,b,c){const {requestedLanguage:d,requestedRegion:e}=a.place??{};a=d?new Intl.Locale(d,{region:e??void 0}):a.Eg;return Intl.DateTimeFormat(a,b).format(c)},Xua=function(a){if(!a.place||!a.weekdayDescriptions||!a.place.utcOffsetMinutes)return!1;let b;try{b=PB(a,{weekday:"long",timeZone:Uua(a.place.utcOffsetMinutes)},new Date)}catch(d){return!1}const c=a.weekdayDescriptions.findIndex(d=>d.startsWith(b));if(c===-1)return!1;a.weekdayDescriptions=a.weekdayDescriptions.slice(c).concat(a.weekdayDescriptions.slice(0, c));return!0},Zua=function(a,b={}){const c=b.contentConfig?.Vt?a.primaryTypeDisplayName?(0,_.S)`${a.primaryTypeDisplayName}`:null:null;if(b.contentConfig?.price){{const f=a.priceRange;if(f&&f.startPrice){var d=new aB("#,##0",f.startPrice.currencyCode);var e=Ota(f.startPrice.currencyCode);d=f.endPrice?(0,_.S)` ${mB("{START_PRICE}\u2012{END_PRICE}\u00a0{CURRENCY_SYMBOL}",{START_PRICE:d.format(f.startPrice.units),END_PRICE:d.format(f.endPrice.units),CURRENCY_SYMBOL:e})} `:(0,_.S)` ${mB("Ab {START_PRICE}\u00a0{CURRENCY_SYMBOL}",{START_PRICE:d.format(f.startPrice.units),CURRENCY_SYMBOL:e})} `}else(e=a.priceLevel)&&e!=="FREE"?(d=mB("{PRICE_LEVEL,select, INEXPENSIVE{ \u20ac}MODERATE{ \u20ac\u20ac}EXPENSIVE{ \u20ac\u20ac\u20ac}VERY_EXPENSIVE{ \u20ac\u20ac\u20ac\u20ac}other{}}",{PRICE_LEVEL:e}),e=mB("{PRICE_LEVEL,select, INEXPENSIVE{Preisg\u00fcnstig}MODERATE{Etwas teuer}EXPENSIVE{Teuer}VERY_EXPENSIVE{Sehr teuer}other{}}",{PRICE_LEVEL:e}),d=(0,_.S)` ${d} `):d=null}}else d=null;b.contentConfig?.dt?(b=!c&&!d,a=a.accessibilityOptions?.hasWheelchairAccessibleEntrance?(0,_.S)` ${b?"":(0,_.S)`${"Accessible entrance"}`} ${b?(0,_.S)`${"Accessible entrance"}`:""} `:null):a=null;return c||d||a?(0,_.S)` ${oB([c,d,a].filter(Boolean),(0,_.S)`\u00b7`)} `:null},$ua=function(a){return _.Gf(_.Ff(new _.mp,a.lat),a.lng)},dva=function(a,b){QB||(QB=new ava);var c=QB;b={..._.$o(b?.Ml),"X-Goog-FieldMask":"results.placeId,results.types"};a=lua(new bva,$ua(a));return oua(c.Eg,a,b).then(d=>_.Oe(d,cva,1))},eva=function(a){if(!a||a.trim()==="*")return new Set;a=a.split(",").map(b=>b.trim().toLowerCase()).filter(Boolean);return new Set(a)},fva=function(a,b){const c= eva(b);return c.size?[...a].filter(d=>c.has(d.toLowerCase())):a},RB=function(a,b){const c={id:a.getId()};for(const d of b)switch(d){case "accessibilityOptions":c.accessibilityOptions=gva(a.Og());break;case "addressComponents":b=a.Pg().map(e=>({longText:e.Eg(),shortText:e.Fg(),types:e.Kg().slice()}));c.addressComponents=b;break;case "adrFormatAddress":c.adrFormatAddress=a.TK()||null;break;case "allowsDogs":c.allowsDogs=a.Kl()?a.Qg():null;break;case "attributions":b=a.YK().map(e=>({provider:e.Eg(), providerURI:e.Fg()}));c.attributions=b;break;case "businessStatus":c.businessStatus=hva.get(a.gL())||null;break;case "displayName":c.displayName=a.Hi()?.Oh()||null;break;case "displayNameLanguageCode":c.displayNameLanguageCode=a.Hi()?.Eg()||null;break;case "editorialSummary":c.editorialSummary=a.Fg()?.Oh()||null;break;case "editorialSummaryLanguageCode":c.editorialSummaryLanguageCode=a.Fg()?.Eg()||null;break;case "evChargeOptions":c.evChargeOptions=iva(a.Tg());break;case "fuelOptions":c.fuelOptions= jva(a.Wg());break;case "formattedAddress":c.formattedAddress=a.Vg()||null;break;case "googleMapsURI":c.googleMapsURI=a.fh()||null;break;case "hasCurbsidePickup":c.hasCurbsidePickup=a.hasCurbsidePickup()?a.Rg():null;break;case "hasDelivery":c.hasDelivery=a.hasDelivery()?a.Sg():null;break;case "hasDineIn":c.hasDineIn=a.hasDineIn()?a.Ug():null;break;case "hasLiveMusic":c.hasLiveMusic=a.hasLiveMusic()?a.jh():null;break;case "hasMenuForChildren":c.hasMenuForChildren=a.hasMenuForChildren()?a.uh():null; break;case "hasOutdoorSeating":c.hasOutdoorSeating=a.hasOutdoorSeating()?a.th():null;break;case "hasRestroom":c.hasRestroom=a.hasRestroom()?a.Oi():null;break;case "hasTakeout":c.hasTakeout=a.hasTakeout()?a.ak():null;break;case "hasWiFi":c.hasWiFi=a.zM()?a.aM():null;break;case "iconBackgroundColor":c.iconBackgroundColor=a.DL()||null;break;case "internationalPhoneNumber":c.internationalPhoneNumber=a.mh()||null;break;case "isGoodForChildren":c.isGoodForChildren=a.hm()?a.Xg():null;break;case "isGoodForGroups":c.isGoodForGroups= a.im()?a.Yg():null;break;case "isGoodForWatchingSports":c.isGoodForWatchingSports=a.Zm()?a.ah():null;break;case "isReservable":c.isReservable=a.Zs()?a.yi():null;break;case "location":a.an()?(b={lat:a.getLocation().Eg(),lng:a.getLocation().Fg()},c.location=b):c.location=null;break;case "nationalPhoneNumber":c.nationalPhoneNumber=a.wh()||null;break;case "regularOpeningHours":c.regularOpeningHours=kva(a.ui());break;case "paymentOptions":a.Cn()?(b=a.Eh(),c.paymentOptions={acceptsCreditCards:b.Og()?b.Fg(): null,acceptsDebitCards:b.Pg()?b.Kg():null,acceptsCashOnly:b.Ng()?b.Eg():null,acceptsNfc:b.Qg()?b.Mg():null}):c.paymentOptions=null;break;case "parkingOptions":a.dn()?(b=a.Dh(),c.parkingOptions={hasFreeParkingLot:b.hasFreeParkingLot()?b.Fg():null,hasPaidParkingLot:b.hasPaidParkingLot()?b.Ng():null,hasFreeStreetParking:b.hasFreeStreetParking()?b.Kg():null,hasPaidStreetParking:b.hasPaidStreetParking()?b.Og():null,hasValetParking:b.hasValetParking()?b.Pg():null,hasFreeGarageParking:b.hasFreeGarageParking()? b.Eg():null,hasPaidGarageParking:b.hasPaidGarageParking()?b.Mg():null}):c.parkingOptions=null;break;case "photos":b=a.Lh().map(lva);c.photos=b;break;case "plusCode":a.kq()?c.plusCode={compoundCode:a.Kg().Eg(),globalCode:a.Kg().Fg()}:c.plusCode=null;break;case "postalAddress":a.Xs()?(b=a.Ph(),c.postalAddress={regionCode:b?.Og(),languageCode:b?.Kg()||null,postalCode:b?.Ng()||null,sortingCode:b?.Pg()||null,administrativeArea:b?.Fg()||null,locality:b?.Mg()||null,sublocality:b?.Sg()||null,addressLines:b?.Eg()|| [],recipients:b?.Rg()||[],organization:b?.Qg()||null}):c.postalAddress=null;break;case "priceLevel":c.priceLevel=mva.get(a.Wh())||null;break;case "priceRange":c.priceRange=a.Ys()?nva(a.ai()):null;break;case "primaryType":c.primaryType=a.ji()||null;break;case "primaryTypeDisplayName":c.primaryTypeDisplayName=a.Mg()?.Oh()||null;break;case "primaryTypeDisplayNameLanguageCode":c.primaryTypeDisplayNameLanguageCode=a.Mg()?.Eg()||null;break;case "rating":c.rating=a.Ai()||null;break;case "reviews":c.reviews= a.Ji().map(ova);break;case "servesBreakfast":c.servesBreakfast=a.yu()?a.Pi():null;break;case "servesCocktails":c.servesCocktails=a.Gu()?a.Xi():null;break;case "servesCoffee":c.servesCoffee=a.Lu()?a.fj():null;break;case "servesDessert":c.servesDessert=a.Pu()?a.kj():null;break;case "servesLunch":c.servesLunch=a.Zz()?a.wj():null;break;case "servesDinner":c.servesDinner=a.Uz()?a.qj():null;break;case "servesBeer":c.servesBeer=a.xu()?a.Wi():null;break;case "servesWine":c.servesWine=a.YJ()?a.Zj():null;break; case "servesBrunch":c.servesBrunch=a.zu()?a.rj():null;break;case "servesVegetarianFood":c.servesVegetarianFood=a.jA()?a.Pj():null;break;case "svgIconMaskURI":c.svgIconMaskURI=a.Ng()?`${a.Ng()}.svg`:null;break;case "types":c.types=a.bk().slice();break;case "userRatingCount":c.userRatingCount=a.tK()?a.rk():null;break;case "utcOffsetMinutes":c.utcOffsetMinutes=a.uK()?a.Qk():null;break;case "viewport":if(a.AK()){b=Kta(a.Eg()).Eg();const e=Kta(a.Eg()).Fg(),f=Lta(a.Eg()).Eg(),g=Lta(a.Eg()).Fg();c.viewport= (new _.Vk(new _.Tj(b,e),new _.Tj(f,g))).toJSON()}else c.viewport=null;break;case "websiteURI":c.websiteURI=a.Jl()||null}return c},jva=function(a){return a==null?null:{fuelPrices:a.Eg().map(b=>{const c=b.Mg()?b.Kg():null;return{type:pva.get(b.getType())??null,price:b.Fg()?SB(b.Eg()):null,updateTime:c?(new Date(Number(_.Ye(c,1))*1E3+_.Ue(c,2)/1E6)).toISOString():null}})}},iva=function(a){return a==null?null:{connectorCount:a.Fg(),connectorAggregations:a.Eg().map(b=>{var c=b.Og()?b.Fg():null;c=c?(new Date(Number(_.Ye(c, 1))*1E3+_.Ue(c,2)/1E6)).toISOString():null;return{type:qva.get(b.getType())??"OTHER",maxChargeRateKw:b.Mg(),count:b.Eg(),availableCount:b.Pg()?b.Kg():null,outOfServiceCount:b.Qg()?b.Ng():null,availabilityLastUpdateTime:c}})}},kva=function(a){const b={periods:[],weekdayDescriptions:[]};a!=null&&(b.periods=a.Eg().map(c=>{const d={open:{day:c.Fg().Eg(),hour:c.Fg().Fg(),minute:c.Fg().Kg()}};c.Kg()&&(d.close={day:c.Eg().Eg(),hour:c.Eg().Fg(),minute:c.Eg().Kg()});return d}),b.weekdayDescriptions=a.Fg().slice()); return b},lva=function(a){return{name:a.getName(),authorAttributions:a.Eg().map(b=>({displayName:b.Hi(),uri:b.Fg(),photoURI:b.Eg()})),widthPx:a.Mg(),heightPx:a.Kg(),flagContentURI:a.Fg()}},nva=function(a){return a.Mg()?{startPrice:SB(a.Fg()),endPrice:a.Kg()?SB(a.Eg()):null}:null},SB=function(a){return{currencyCode:a.Eg(),units:Number(a.Kg()),nanos:a.Fg()}},ova=function(a){var b=a.Og()?a.Ng():null;b=b?(new Date(Number(_.Ye(b,1))*1E3+_.Ue(b,2)/1E6)).toISOString():null;return{authorAttribution:a.Eg()? {displayName:a.Eg().Hi(),uri:a.Eg().Fg(),photoURI:a.Eg().Eg()}:null,textLanguageCode:a.Oh()?.Eg()||null,publishTime:b,relativePublishTimeDescription:a.Mg(),rating:a.Kg(),text:a.Oh()?.Oh()||null,flagContentURI:a.Fg()||null}},gva=function(a){return a==null?null:{hasWheelchairAccessibleEntrance:a.hasWheelchairAccessibleEntrance()?a.Eg():null,hasWheelchairAccessibleRestroom:a.hasWheelchairAccessibleRestroom()?a.Kg():null,hasWheelchairAccessibleSeating:a.hasWheelchairAccessibleSeating()?a.Mg():null,hasWheelchairAccessibleParking:a.hasWheelchairAccessibleParking()? a.Fg():null}},TB=function(a){return[...(new Set(a.map(b=>rva.get(b)||b)))]},tva=function(a){a=UB(a);if(!a.length)throw _.Bj("fields array must not be empty");const b=a.filter(c=>!sva.has(c)&&c!=="*");if(b.length>0)throw _.Bj(`Unknown fields requested: ${b.join(", ")}`);return a},uva=function(a){try{const b=_.Yo(a);if(b instanceof _.Vk)return b}catch(b){}throw _.Bj(`Invalid LocationRestriction: ${JSON.stringify(a)}`);},vva=function(a){const b=_.Yo(a);if(b instanceof _.Vk||b instanceof _.Tj||b instanceof _.Xo)return b;throw _.Bj(`Invalid LocationBias: ${JSON.stringify(a)}`);},xva=function(a){a=wva(a);const b=a.priceLevels,c=a.minRating,d=a.locationBias,e=a.locationRestriction,f=a.query,g=a.textQuery,h=a.rankBy,l=a.rankPreference;if(f&&g)throw _.Bj("Both 'query' and 'textQuery' specified. Please use 'textQuery' only");if(f)console.warn("'query' is deprecated, please use 'textQuery' instead"),a.textQuery=f,a.query=void 0;else if(!g)throw _.Bj("'textQuery' must be specified");if(l&&h)throw _.Bj("Both 'rankPreference' and 'rankBy' provided. Please use only rankPreference."); h&&(console.warn("'rankBy' is deprecated, please use 'rankPreference' instead"),a.rankPreference=h,a.rankBy=void 0);if(c!=null&&(c<0||c>5))throw _.Bj("minRating must be a number between 0-5 inclusive");if(d&&e)throw _.Bj("Setting both 'locationBias' and 'locationRestriction' is not supported in searchByText. Please set either 'locationBias' or 'locationRestriction'");b&&b.length&&(a.priceLevels=Array.from(new Set(b)));return a},zva=function(a){return yva(a)},Bva=function(a){a=Ava(a);const b=a.input, c=a.inputOffset,d=a.locationBias,e=a.locationRestriction;if(c!=null&&(c<0||c>=b.length))throw _.Bj("'inputOffset' should be less than 'input.length' and greater than or equal to 0.");if(d&&e)throw _.Bj("Setting both 'locationBias' and 'locationRestriction' is not supported in autocomplete. Please set either 'locationBias' or 'locationRestriction'");return a},WB=function(a,{requestedLanguage:b,requestedRegion:c}={}){b=new VB({id:(0,_.Xp)(a.id),requestedLanguage:b,requestedRegion:c});LB(b,a);return b}, Cva=async function(a,b){const c=xva(a);c.useStrictTypeFiltering!=null&&c.includedType==null&&console.warn("setting property 'useStrictTypeFiltering' has no effect without setting 'includedType'");c.fields.includes("id")||c.fields.push("id");c.fields.includes("*")&&(c.fields=[...XB]);const d=c.fields;c.fields=TB(c.fields);({lM:a}=await _.Vi("places_impl"));try{return{places:(await a(c,b)).yA().map(e=>RB(_.ne(e),d)).map(e=>WB(e,{requestedLanguage:c.language,requestedRegion:c.region}))}}catch(e){if(e instanceof _.bh)throw WA("Error in searchByText: "+e.message,"PLACES_SEARCH_TEXT",e);throw e;}},Dva=async function(a,b){const c=yva(a);c.fields.includes("id")||c.fields.push("id");c.fields.includes("*")&&(c.fields=[...XB]);const d=c.fields;c.fields=TB(c.fields);({mM:a}=await _.Vi("places_impl"));try{return{places:(await a(c,b)).yA().map(e=>RB(_.ne(e),d)).map(e=>WB(e,{requestedLanguage:c.language,requestedRegion:c.region}))}}catch(e){if(e instanceof _.bh)throw WA("Error in searchNearby: "+e.message,"PLACES_NEARBY_SEARCH", e);throw e;}},YB=async function(a,b,c){var d=_.Dj({fields:Eva,sessionToken:_.Nj(_.Fj(_.vr,"AutocompleteSessionToken"))})(b);d.fields.includes("*")&&(d.fields=[...XB]);b=d.fields.filter(g=>!a.Fg.has(g));d.fields.includes("id")&&b.push("id");if(!b.length)return{place:a};const e=TB(b),{cJ:f}=await _.Vi("places_impl");d=d.sessionToken??a.sessionToken??void 0;try{const g=await f(a.id,e,a.requestedLanguage,a.requestedRegion,d,c);if(!g)throw Error("Server returned no data");const h=RB(_.ne(g),b),l=Fva(h, b);LB(a,l);a.sessionToken=void 0;return{place:a}}catch(g){if(g instanceof _.bh)throw WA("Error fetching fields: "+g.message,"PLACES_GET_PLACE",g);throw g;}},Fva=function(a,b){const c={};[...b].forEach(d=>{switch(d){case "accessibilityOptions":c.accessibilityOptions=_.nj(a.accessibilityOptions,null);break;case "addressComponents":c.addressComponents=_.nj(a.addressComponents,[]);break;case "adrFormatAddress":c.adrFormatAddress=_.nj(a.adrFormatAddress,null);break;case "attributions":c.attributions=_.nj(a.attributions, []);break;case "businessStatus":c.businessStatus=_.nj(a.businessStatus,null);break;case "id":c.id=_.nj(a.id);break;case "hasCurbsidePickup":c.hasCurbsidePickup=_.nj(a.hasCurbsidePickup,null);break;case "hasDelivery":c.hasDelivery=_.nj(a.hasDelivery,null);break;case "hasDineIn":c.hasDineIn=_.nj(a.hasDineIn,null);break;case "isReservable":c.isReservable=_.nj(a.isReservable,null);break;case "servesBreakfast":c.servesBreakfast=_.nj(a.servesBreakfast,null);break;case "servesLunch":c.servesLunch=_.nj(a.servesLunch, null);break;case "servesDinner":c.servesDinner=_.nj(a.servesDinner,null);break;case "servesBeer":c.servesBeer=_.nj(a.servesBeer,null);break;case "servesWine":c.servesWine=_.nj(a.servesWine,null);break;case "servesBrunch":c.servesBrunch=_.nj(a.servesBrunch,null);break;case "servesVegetarianFood":c.servesVegetarianFood=_.nj(a.servesVegetarianFood,null);break;case "displayName":c.displayName=_.nj(a.displayName,null);break;case "displayNameLanguageCode":c.displayNameLanguageCode=_.nj(a.displayNameLanguageCode, null);break;case "primaryType":c.primaryType=_.nj(a.primaryType,null);break;case "primaryTypeDisplayName":c.primaryTypeDisplayName=_.nj(a.primaryTypeDisplayName,null);break;case "primaryTypeDisplayNameLanguageCode":c.primaryTypeDisplayNameLanguageCode=_.nj(a.primaryTypeDisplayNameLanguageCode,null);break;case "formattedAddress":c.formattedAddress=_.nj(a.formattedAddress,null);break;case "googleMapsURI":c.googleMapsURI=_.nj(a.googleMapsURI,null);break;case "iconBackgroundColor":c.iconBackgroundColor= _.nj(a.iconBackgroundColor,null);break;case "svgIconMaskURI":c.svgIconMaskURI=_.nj(a.svgIconMaskURI,null);break;case "internationalPhoneNumber":c.internationalPhoneNumber=_.nj(a.internationalPhoneNumber,null);break;case "location":c.location=_.nj(a.location,null);break;case "nationalPhoneNumber":c.nationalPhoneNumber=_.nj(a.nationalPhoneNumber,null);break;case "regularOpeningHours":c.regularOpeningHours=_.nj(a.regularOpeningHours,null);break;case "evChargeOptions":c.evChargeOptions=_.nj(a.evChargeOptions, null);break;case "fuelOptions":c.fuelOptions=_.nj(a.fuelOptions,null);break;case "parkingOptions":c.parkingOptions=_.nj(a.parkingOptions,null);break;case "paymentOptions":c.paymentOptions=_.nj(a.paymentOptions,null);break;case "photos":c.photos=_.nj(a.photos,[]);break;case "plusCode":c.plusCode=_.nj(a.plusCode,null);break;case "postalAddress":c.postalAddress=_.nj(a.postalAddress,null);break;case "priceLevel":c.priceLevel=_.nj(a.priceLevel,null);break;case "rating":c.rating=_.nj(a.rating,null);break; case "reviews":c.reviews=_.nj(a.reviews,[]);break;case "hasTakeout":c.hasTakeout=_.nj(a.hasTakeout,null);break;case "types":c.types=_.nj(a.types,[]);break;case "userRatingCount":c.userRatingCount=_.nj(a.userRatingCount,null);break;case "utcOffsetMinutes":c.utcOffsetMinutes=_.nj(a.utcOffsetMinutes,null);break;case "viewport":c.viewport=_.nj(a.viewport,null);break;case "websiteURI":c.websiteURI=_.nj(a.websiteURI,null);break;case "editorialSummary":c.editorialSummary=_.nj(a.editorialSummary,null);break; case "editorialSummaryLanguageCode":c.editorialSummaryLanguageCode=_.nj(a.editorialSummaryLanguageCode,null);break;case "hasOutdoorSeating":c.hasOutdoorSeating=_.nj(a.hasOutdoorSeating,null);break;case "hasLiveMusic":c.hasLiveMusic=_.nj(a.hasLiveMusic,null);break;case "hasMenuForChildren":c.hasMenuForChildren=_.nj(a.hasMenuForChildren,null);break;case "hasRestroom":c.hasRestroom=_.nj(a.hasRestroom,null);break;case "servesCocktails":c.servesCocktails=_.nj(a.servesCocktails,null);break;case "servesDessert":c.servesDessert= _.nj(a.servesDessert,null);break;case "servesCoffee":c.servesCoffee=_.nj(a.servesCoffee,null);break;case "hasWiFi":c.hasWiFi=_.nj(a.hasWiFi,null);break;case "isGoodForChildren":c.isGoodForChildren=_.nj(a.isGoodForChildren,null);break;case "allowsDogs":c.allowsDogs=_.nj(a.allowsDogs,null);break;case "isGoodForGroups":c.isGoodForGroups=_.nj(a.isGoodForGroups,null);break;case "isGoodForWatchingSports":c.isGoodForWatchingSports=_.nj(a.isGoodForWatchingSports,null);break;case "priceRange":c.priceRange= _.nj(a.priceRange,null)}});return c},ZB=function(a){_.dl(window,"pvtjac");_.P(window,176079);const b={};a.Fg.forEach(c=>{switch(c){case "accessibilityOptions":b.accessibilityOptions=a.accessibilityOptions?a.accessibilityOptions.toJSON():null;break;case "addressComponents":b.addressComponents=a.addressComponents?a.addressComponents.map(d=>d.toJSON()):[];break;case "adrFormatAddress":b.adrFormatAddress=a.adrFormatAddress;break;case "attributions":b.attributions=a.attributions?a.attributions.map(d=> d.toJSON()):[];break;case "businessStatus":b.businessStatus=a.businessStatus;break;case "id":b.id=a.id;break;case "hasCurbsidePickup":b.hasCurbsidePickup=a.hasCurbsidePickup;break;case "hasDelivery":b.hasDelivery=a.hasDelivery;break;case "hasDineIn":b.hasDineIn=a.hasDineIn;break;case "isReservable":b.isReservable=a.isReservable;break;case "servesBreakfast":b.servesBreakfast=a.servesBreakfast;break;case "servesLunch":b.servesLunch=a.servesLunch;break;case "servesDinner":b.servesDinner=a.servesDinner; break;case "servesBeer":b.servesBeer=a.servesBeer;break;case "servesWine":b.servesWine=a.servesWine;break;case "servesBrunch":b.servesBrunch=a.servesBrunch;break;case "servesVegetarianFood":b.servesVegetarianFood=a.servesVegetarianFood;break;case "displayName":b.displayName=a.displayName;break;case "displayNameLanguageCode":b.displayNameLanguageCode=a.displayNameLanguageCode;break;case "formattedAddress":b.formattedAddress=a.formattedAddress;break;case "googleMapsURI":b.googleMapsURI=a.googleMapsURI; break;case "iconBackgroundColor":b.iconBackgroundColor=a.iconBackgroundColor;break;case "svgIconMaskURI":b.svgIconMaskURI=a.svgIconMaskURI;break;case "internationalPhoneNumber":b.internationalPhoneNumber=a.internationalPhoneNumber;break;case "location":b.location=a.location?a.location.toJSON():null;break;case "nationalPhoneNumber":b.nationalPhoneNumber=a.nationalPhoneNumber;break;case "regularOpeningHours":b.regularOpeningHours=a.regularOpeningHours?a.regularOpeningHours.toJSON():null;break;case "paymentOptions":b.paymentOptions= a.paymentOptions?a.paymentOptions.toJSON():null;break;case "photos":b.photos=a.photos?a.photos.map(d=>d.toJSON()):[];break;case "plusCode":b.plusCode=a.plusCode?a.plusCode.toJSON():null;break;case "postalAddress":b.postalAddress=a.postalAddress?a.postalAddress.toJSON():null;break;case "priceLevel":b.priceLevel=a.priceLevel;break;case "rating":b.rating=a.rating;break;case "reviews":b.reviews=a.reviews?a.reviews.map(d=>d.toJSON()):[];break;case "hasTakeout":b.hasTakeout=a.hasTakeout;break;case "types":b.types= a.types?a.types.slice(0):[];break;case "userRatingCount":b.userRatingCount=a.userRatingCount;break;case "utcOffsetMinutes":b.utcOffsetMinutes=a.utcOffsetMinutes;break;case "viewport":b.viewport=a.viewport?a.viewport.toJSON():null;break;case "websiteURI":b.websiteURI=a.websiteURI;break;case "editorialSummary":b.editorialSummary=a.editorialSummary;break;case "editorialSummaryLanguageCode":b.editorialSummaryLanguageCode=a.editorialSummaryLanguageCode;break;case "evChargeOptions":b.evChargeOptions=a.evChargeOptions?.toJSON()?? null;break;case "fuelOptions":b.fuelOptions=a.fuelOptions?.toJSON()??null;break;case "parkingOptions":b.parkingOptions=a.parkingOptions?a.parkingOptions.toJSON():null;break;case "allowsDogs":b.allowsDogs=a.allowsDogs;break;case "hasLiveMusic":b.hasLiveMusic=a.hasLiveMusic;break;case "hasMenuForChildren":b.hasMenuForChildren=a.hasMenuForChildren;break;case "hasOutdoorSeating":b.hasOutdoorSeating=a.hasOutdoorSeating;break;case "hasRestroom":b.hasRestroom=a.hasRestroom;break;case "hasWiFi":b.hasWiFi= a.hasWiFi;break;case "isGoodForChildren":b.isGoodForChildren=a.isGoodForChildren;break;case "isGoodForGroups":b.isGoodForGroups=a.isGoodForGroups;break;case "isGoodForWatchingSports":b.isGoodForWatchingSports=a.isGoodForWatchingSports;break;case "servesCocktails":b.servesCocktails=a.servesCocktails;break;case "servesCoffee":b.servesCoffee=a.servesCoffee;break;case "servesDessert":b.servesDessert=a.servesDessert;break;case "primaryType":b.primaryType=a.primaryType;break;case "primaryTypeDisplayName":b.primaryTypeDisplayName= a.primaryTypeDisplayName;break;case "primaryTypeDisplayNameLanguageCode":b.primaryTypeDisplayNameLanguageCode=a.primaryTypeDisplayNameLanguageCode;break;case "priceRange":b.priceRange=a.priceRange?.toJSON()??null}});return b},$B=function(a){a=ZB(a);return WB({id:a.id,...(a.location&&{location:a.location}),...(a.viewport&&{viewport:a.viewport})})},Eva=function(a){a=Gva(a);const b=new Set([...Hva,"openingHours"]),c=a.filter(d=>!b.has(d)&&d!=="*");if(a.includes("openingHours"))throw _.Bj("unknown property 'openingHours', did you mean 'regularOpeningHours'?"); if(a.includes("openingHours")&&a.includes("regularOpeningHours"))throw _.Bj("Both 'openingHours' and 'regularOpeningHours' provided. Please use only 'regularOpeningHours'");a.includes("openingHours")&&(a[a.indexOf("openingHours")]="regularOpeningHours");if(c.length>0)throw _.Bj(`Unknown fields requested: ${c.join(", ")}`);return a},Iva=function(a){const b=a.match(/^places\/(.+)$/);return b?b[1]:a},aC=function(a,b){function c(){return b.querySelector(`#${r}`)}function d(){return Array.from(c().querySelectorAll("li:not([hidden], [disabled]) > a"))} function e(w){const x=d();x[Math.min(Math.max(n+w,0),x.length-1)].focus()}function f(w){w.target?.focus()}function g(w){n=d().indexOf(w.target)}function h(w){const x=c(),y=b.querySelector(`#${u}`);w=w.relatedTarget;!x.open||x.contains(w)||y.contains(w)||x.close()}var l={};let n=-1;var p=l.hP??Jva;l=l.iP??"Men\u00fc \u00f6ffnen";const r=`a${_.Nk()}`,u=`a${_.Nk()}`;return(0,_.S)`
${a.map(w=>(0,_.S)`
  • ${w.text}${w.hQ?(0,_.S)``:""}
  • `)}
    `},Kva=function(a,b){const c=a.authorAttribution;if(!c)return null;const d=c.uri?pB(qB(c.displayName)):qB(c.displayName);return(0,_.S)` `},Lva=function(a){return"Adresse: "+a},Mva=function(a){return"Website: "+a},Nva=function(a){return"Telefonnummer: "+a},Ova=function(a){return"Plus Code: "+a},Pva=function(a){try{return(new URL(a)).hostname.replace(/^(www\.)/,"")}catch(b){return a}},bC=function(a,b,c,d,e,f){a=(0,_.S)` `;f=f?f.join(" "):"";return d?(0,_.S)` ${a} `:(0,_.S)`
    ${a} ${c(b)}
    `},Sva=function(a){a=Qva(a).flatMap(({heading:b,features:c})=>c.length?(0,_.S)`
    ${b}
      ${c.map(Rva)}
    `:[]);return a.length?(0,_.S)`
    ${oB(a,(0,_.S)`
    `)}
    `:null},Rva=function(a){const b=c=>mB(a,{VARIANT:c,AVAILABILITY_INDICATOR:""});return(0,_.S)`
  • ${b("standalone")}
  • `},Qva=function(a){const b=a.accessibilityOptions,c=a.paymentOptions,d=a.parkingOptions,e=[];e.push({heading:"Serviceoptionen",features:[a.hasDineIn&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Verzehr im Restaurant}standalone{Verzehr im Restaurant m\u00f6glich}other{}}",a.hasOutdoorSeating&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Freisitz}standalone{Freisitz vorhanden}other{}}",a.isReservable&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Reservierung m\u00f6glich}standalone{Reservierung m\u00f6glich}other{}}", a.hasTakeout&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Zum Mitnehmen}standalone{Speisen und Getr\u00e4nke auch zum Mitnehmen}other{}}",a.hasDelivery&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Lieferung}standalone{Lieferservice}other{}}",a.hasCurbsidePickup&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Abholung vor dem Laden}standalone{Abholung vor dem Laden m\u00f6glich}other{}}"].filter(_.pj)});e.push({heading:"Besonders beliebt",features:[a.servesBreakfast&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Fr\u00fchst\u00fcck}standalone{Fr\u00fchst\u00fcck}other{}}", a.servesLunch&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Mittagessen}standalone{Mittagessen}other{}}",a.servesBrunch&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Brunch}standalone{Brunch}other{}}",a.servesDinner&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Abendessen}standalone{Abendessen}other{}}",a.servesDessert&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Dessert}standalone{Dessert}other{}}"].filter(_.pj)});e.push({heading:"Barrierefreiheit",features:[b?.hasWheelchairAccessibleEntrance&& "{VARIANT,select, short{{AVAILABILITY_INDICATOR} Rollstuhlgerechter Eingang}standalone{Rollstuhlgerechter Eingang vorhanden}other{}}",b?.hasWheelchairAccessibleParking&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Rollstuhlgerechter Parkplatz}standalone{Rollstuhlgerechter Parkplatz vorhanden}other{}}",b?.hasWheelchairAccessibleRestroom&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Rollstuhlgerechtes WC}standalone{Rollstuhlgerechtes WC vorhanden}other{}}",b?.hasWheelchairAccessibleSeating&& "{VARIANT,select, short{{AVAILABILITY_INDICATOR} Rollstuhlgerechte Pl\u00e4tze}standalone{Rollstuhlgerechte Pl\u00e4tze vorhanden}other{}}"].filter(_.pj)});e.push({heading:"Angebot",features:[a.servesBeer&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Bier}standalone{Bier}other{}}",a.servesWine&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Wein}standalone{Wein}other{}}",a.servesCoffee&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Kaffee}standalone{Kaffee}other{}}",a.servesCocktails&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Cocktails}standalone{Cocktails}other{}}", a.servesVegetarianFood&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Vegetarische Speisen}standalone{Vegetarische Speisen}other{}}"].filter(_.pj)});e.push({heading:"Ausstattung",features:[a.hasRestroom&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} WC}standalone{WC vorhanden}other{}}",a.hasWiFi&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} WLAN}standalone{WLAN vorhanden}other{}}"].filter(_.pj)});e.push({heading:"Bekannt f\u00fcr",features:[a.isGoodForGroups&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} F\u00fcr Gruppen geeignet}standalone{F\u00fcr Gruppen geeignet}other{}}", a.isGoodForWatchingSports&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Sport\u00fcbertragungen}standalone{Sport\u00fcbertragungen}other{}}",a.hasLiveMusic&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Livemusik}standalone{Livemusik}other{}}"].filter(_.pj)});e.push({heading:"Zahlung",features:[c?.acceptsCashOnly&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Nur Barzahlung}standalone{Nur Barzahlung}other{}}",c?.acceptsCreditCards&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Kreditkarten}standalone{Kreditkarten werden akzeptiert}other{}}", c?.acceptsDebitCards&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Debitkarten}standalone{Debitkarten werden akzeptiert}other{}}",c?.acceptsNFC&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Mobile Zahlung per NFC}standalone{Mobile Zahlung per NFC m\u00f6glich}other{}}"].filter(_.pj)});e.push({heading:"Kinder",features:[a.isGoodForChildren&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Kinder\u00adfreundlich}standalone{Kinder\u00adfreundlich}other{}}",a.hasMenuForChildren&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Speisekarte f\u00fcr Kinder}standalone{Speisekarte f\u00fcr Kinder vorhanden}other{}}"].filter(_.pj)}); e.push({heading:"Haustiere",features:[a.allowsDogs&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Hunde erlaubt}standalone{Hunde erlaubt}other{}}"].filter(_.pj)});e.push({heading:"Parken",features:[d?.hasFreeParkingLot&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Kostenlose Parkpl\u00e4tze}standalone{Kostenlose Parkpl\u00e4tze vorhanden}other{}}",d?.hasPaidParkingLot&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Geb\u00fchrenpflichtige Parkpl\u00e4tze}standalone{Geb\u00fchrenpflichtige Parkpl\u00e4tze vorhanden}other{}}", d?.hasFreeStreetParking&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Kostenlose Parkpl\u00e4tze an der Stra\u00dfe}standalone{Kostenlose Parkpl\u00e4tze an der Stra\u00dfe vorhanden}other{}}",d?.hasPaidStreetParking&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Geb\u00fchrenpflichtige Parkpl\u00e4tze an der Stra\u00dfe}standalone{Geb\u00fchrenpflichtige Parkpl\u00e4tze an der Stra\u00dfe vorhanden}other{}}",d?.hasFreeGarageParking&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Kostenloses Parkhaus}standalone{Kostenlose Parkpl\u00e4tze im Parkhaus}other{}}", d?.hasPaidGarageParking&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Geb\u00fchrenpflichtiges Parkhaus}standalone{Geb\u00fchrenpflichtige Parkpl\u00e4tze im Parkhaus}other{}}",d?.hasValetParking&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Einparkservice}standalone{Einparkservice vorhanden}other{}}"].filter(_.pj)});return e},Wva=function(a){const b=a.fuelOptions;if(!b)return null;a=Tva.map(c=>{const {price:d,updateTime:e}=b.fuelPrices.find(f=>f.type===c)??{};return{FE:c,price:d??null,Gy:e? Uva(e):null}});return(0,_.S)`
      ${a.map(Vva)}
    ${a.some(c=>c.Gy)?(0,_.S)`
    * ${"Preis \u00e4lter als 24\u00a0Stunden"}
    `:""}
    `},Vva=function({FE:a,price:b,Gy:c}){a=mB("{FUEL_TYPE,select, REGULAR_UNLEADED{Normal}MIDGRADE{Super}PREMIUM{Super Plus}DIESEL{Diesel}other{}}",{FUEL_TYPE:a});return(0,_.S)`
  • ${a}
    ${b?(0,_.S)` ${b.toString()} ${c?(0,_.S)`*`:""} `:(0,_.S)`-`}
  • `},Uva=function(a){return a.getTime()f.availabilityLastUpdateTime).find(Boolean);return(0,_.S)`
      ${b.map(f=>Xva(f,e))}
    ${c?Yva(Zva(c,e)):""}
    `},Yva=function(a){return(0,_.S)`
    ${"Aktualisiert: "+a}
    `},Xva=function(a,b){const c=a.count,d=a.availableCount;var e=a.maxChargeRateKw;const f=(h,l)=>(new Intl.NumberFormat(b,l)).format(h);a=mB("{EV_CONNECTOR_TYPE,select, CCS_COMBO_1{CCS}CCS_COMBO_2{CCS}CHADEMO{CHAdeMO}J1772{J1772}TESLA{Tesla}NACS{NACS}TYPE_2{IEC\u00a062196 Typ\u00a02}UNSPECIFIED_GB_T{GB/T}UNSPECIFIED_WALL_OUTLET{Wandsteckdose}other{Unbekannter Anschlussstecker}}",{EV_CONNECTOR_TYPE:a.type});const g=h=>d==null?null:mB("{VARIANT,select, short{{AVAILABLE_COUNT}/{TOTAL_COUNT}}standalone{{AVAILABLE_COUNT}\u00a0von insgesamt {TOTAL_COUNT} verf\u00fcgbar}other{}}", {VARIANT:h,AVAILABLE_COUNT:d,TOTAL_COUNT:c});e=f(e,{maximumFractionDigits:2})+"\u00a0kW";return(0,_.S)`
  • ${a} \u00b7 ${e}
    ${d==null?(0,_.S)`
    ${"Gesamt"} ${f(c)}
    `:(0,_.S)` `}
  • `},Zva=function(a,b){a=Math.floor((Date.now()-a.getTime())/6E4);const c=Math.floor(a/60),d=Math.floor(c/24);b=new Intl.RelativeTimeFormat(b,{numeric:"auto"});return d>0?b.format(-d,"day"):c>0?b.format(-c,"hour"):b.format(-a,"minute")},cC=function(a){return(0,_.S)`${oB(a.filter(Boolean),(0,_.S)`
    `)}`},dC=function(a=0){const b=(0,_.S)` `;return a===2?b:(0,_.S)`
    ${b}
    `},gC=function(a,b){var c=(0,_.Ar)({"no-padding":!(b?.EP??!0)}),d=b?.RA??!0,e=b?.co?eC(b.co):"";if(b?.bF==null||b?.bF){var f=a.googleMapsURI??null;f=(0,_.S)` `}else f="";return(0,_.S)`
    ${e} ${f} ${b?.Jt&&a.editorialSummary?(0,_.S)`

    ${a.editorialSummary}

    `:""}
    `},bwa=function(a){a=[a.allowsDogs&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Hunde erlaubt}standalone{Hunde erlaubt}other{}}",a.hasTakeout&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Zum Mitnehmen}standalone{Speisen und Getr\u00e4nke auch zum Mitnehmen}other{}}",a.hasDelivery&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Lieferung}standalone{Lieferservice}other{}}",a.hasDineIn&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Verzehr im Restaurant}standalone{Verzehr im Restaurant m\u00f6glich}other{}}", a.hasCurbsidePickup&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Abholung vor dem Laden}standalone{Abholung vor dem Laden m\u00f6glich}other{}}",a.isReservable&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Reservierung m\u00f6glich}standalone{Reservierung m\u00f6glich}other{}}",a.servesBreakfast&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Fr\u00fchst\u00fcck}standalone{Fr\u00fchst\u00fcck}other{}}",a.servesLunch&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Mittagessen}standalone{Mittagessen}other{}}", a.servesDinner&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Abendessen}standalone{Abendessen}other{}}",a.servesBeer&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Bier}standalone{Bier}other{}}",a.servesWine&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Wein}standalone{Wein}other{}}",a.servesBrunch&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Brunch}standalone{Brunch}other{}}",a.servesVegetarianFood&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Vegetarische Speisen}standalone{Vegetarische Speisen}other{}}", a.hasOutdoorSeating&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Freisitz}standalone{Freisitz vorhanden}other{}}",a.hasLiveMusic&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Livemusik}standalone{Livemusik}other{}}",a.hasMenuForChildren&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Speisekarte f\u00fcr Kinder}standalone{Speisekarte f\u00fcr Kinder vorhanden}other{}}",a.servesCocktails&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Cocktails}standalone{Cocktails}other{}}",a.servesDessert&& "{VARIANT,select, short{{AVAILABILITY_INDICATOR} Dessert}standalone{Dessert}other{}}",a.servesCoffee&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Kaffee}standalone{Kaffee}other{}}",a.hasRestroom&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} WC}standalone{WC vorhanden}other{}}",a.isGoodForChildren&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Kinder\u00adfreundlich}standalone{Kinder\u00adfreundlich}other{}}",a.isGoodForGroups&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} F\u00fcr Gruppen geeignet}standalone{F\u00fcr Gruppen geeignet}other{}}", a.isGoodForWatchingSports&&"{VARIANT,select, short{{AVAILABILITY_INDICATOR} Sport\u00fcbertragungen}standalone{Sport\u00fcbertragungen}other{}}"].filter(_.pj).slice(0,2).map(b=>mB(b,{VARIANT:"standalone"}));return a.length===0?(0,_.S)``:(0,_.S)`
    ${a.map(b=>(0,_.S)`${b}`)}
    `},eC=function(a){if(a.qE==null&&a.distanceMeters==null)var b=(0,_.S)``;else{b=a.qE;var c=a.distanceMeters;if(b==null&&c==null)b="";else{var d=_.xi.Eg();a=d.Eg()||void 0;d=(d=!d.Gg()&&d.Fg()||void 0)&&_.Wq.has(d.toUpperCase())?1:0;var e=null,f=null;c!=null&&(c=d===1?c/1609.34:c/1E3,f=(new Intl.NumberFormat(a,{maximumFractionDigits:1,style:"unit",unit:d===1?"mile":"kilometer",unitDisplay:"short"})).format(c));b!=null&&(e=(new Intl.NumberFormat(a,{maximumFractionDigits:0,style:"unit",unit:"minute", unitDisplay:"short"})).format(b/60));b=e&&f?e+" ("+f+")":e??f}b=(0,_.S)`
    ${b}
    `}return b},cwa=function(a,b){return(0,_.S)`
    ${b?.cK?(0,_.S)` `:""} ${b?.OA?bwa(a):""} ${b?.co?eC(b?.co):""} ${b?.bK??!0?dC(2):""}
    `},dwa=function(a,b=!0){return(0,_.S)`
    ${b?hC(a):""}
    `},ewa=function(a,b,c=!0){if(a.length>0){var d=(0,_.S)``;b!=null?(d="Foto \u00f6ffnen von: "+a[0].Oq,d=(0,_.S)` ${c?hC(a.length):""} `):(c="Foto von: "+a[0].Oq,d=(0,_.S)`
    ${c}
    `);return(0,_.S)`
    ${d}
    `}return(0,_.S)``},fwa=function(a){const b=Math.min(3,a);if(b>0){const c=Array.from({length:b}).map((d,e)=>(0,_.S)`
    `);return(0,_.S)`
    ${c}
    ${hC(a)}
    `}return(0,_.S)``},gwa=function(a,b){if(a.length>0){const c=Math.min(3,a.length),d=a.slice(0,c).map((e,f)=>{const g=mB("{NUM_IMAGE,selectordinal, other{#.\u00a0Foto \u00f6ffnen.}}",{NUM_IMAGE:f+1});return(0,_.S)` `});return(0,_.S)`
    ${d}
    ${hC(a.length)}
    `}return(0,_.S)``},hC=function(a){return(0,_.S)` `},hwa=function(a,b,c,d){if(a<0||a>=b.length)return(0,_.S)``;let e=0,f=0;const g=b[a];var h=g.authorAttributions.length?g.authorAttributions[0]:{displayName:""},l="Profil von "+h.displayName+" ansehen",n="Foto von "+h.displayName;h=(0,_.S)`
    ${g.Oq}
    ${h.photoURI?(0,_.S)` ${n} `:""} ${h.displayName} ${h.uri?(0,_.S)` `:""}
    `;l=(0,_.S)`
    ${g.flagContentURI?aC([{text:"Foto melden",uri:g.flagContentURI}],d):""}
    `;n=b.length>1?b.map((p,r)=>(0,_.S)`
    `):[];return(0,_.S)` {var r=c.fo,u=c.eo;const w=window.getComputedStyle(document.body).direction==="rtl";p.key==="Escape"&&p.stopPropagation();p.key==="ArrowLeft"&&(w?u():r(),p.stopPropagation());p.key==="ArrowRight"&&(w?r():u(),p.stopPropagation())}}>
    ${640||(e=p.touches[0].screenX,f=p.touches[0].screenY,p.stopPropagation())})} @touchend=${p=>{var r=c.fo,u=c.eo;if(!(window.innerWidth>640)){var w=p.changedTouches[0].screenX,x=w-e,y=p.changedTouches[0].screenY-f,B=window.getComputedStyle(document.body).direction==="rtl",D=d.querySelector(".lightbox dialog")?.open;switch(x<-10?1:x>10?2:y<-10?3:y>10?4:wwindow.innerWidth*.75?6:7){case 1:B?r():u();p.stopPropagation();break;case 5:D||(B?u():r(),p.stopPropagation());break;case 2:B?u():r();p.stopPropagation();break;case 6:D||(B?r():u(),p.stopPropagation()); break;case 7:D||(u(),p.stopPropagation())}}}} /> ${(0,_.S)` `}
    `},fC=function(a,b,c=!1){return a?(0,_.S)` ${b} `:""},awa=function(a){const b=a.id;var c=a.location,d=a.formattedAddress;c=a.displayName||d||c?.toUrlValue()||"place";d=new URL("https://www.google.com/maps/dir/");d.searchParams.set("api","1");d.searchParams.set("destination_place_id",b);d.searchParams.set("destination",c);return _.Wo(d,{language:a.requestedLanguage??void 0,region:a.requestedRegion??void 0}).toString()},iC=function(a){const b=a.fuelOptions;if(!b)return null;a=Tva.map(c=>{const {price:d,updateTime:e}=b.fuelPrices.find(f=>f.type=== c)??{};return{FE:c,price:d??null,Gy:e?iwa(e):null}});return(0,_.S)`
      ${a.map(jwa)}
    ${a.some(c=>c.Gy)?(0,_.S)`
    * ${"Preis \u00e4lter als 24\u00a0Stunden"}
    `:""}
    `},jC=function(a){var b=a.evChargeOptions,c=a.requestedLanguage;a=a.requestedRegion;if(!b)return null;b=b.connectorAggregations;const d=c?new Intl.Locale(c,{region:a??void 0}):void 0;c=b.map(e=>e.availabilityLastUpdateTime).find(Boolean);return(0,_.S)`
      ${b.map(e=>kwa(e,d))}
    ${c?lwa(mwa(c,d)):""}
    `},owa=function(a){return a.reviews?.length?(0,_.S)`
    ${a.reviews.map(b=>(0,_.S)` `)}
    ${"Rezensionen werden nicht \u00fcberpr\u00fcft"} ${kC} ${nwa}
    `:null},pwa=function(a,b){return a.editorialSummary?(0,_.S)`
    ${b?.PA?(0,_.S)`
    ${"Details"}
    `:""}

    ${a.editorialSummary}

    `:null},swa=function(a){a=qwa(a).flatMap(({heading:b,features:c})=>c.length?(0,_.S)`
    ${b}
      ${c.map(rwa)}
    `:[]);return a.length?(0,_.S)`
    ${"Ausstattung/Hinweise"}
    ${oB(a,(0,_.S)`
    `)}
    `:null},twa=function(a){return"Zeitzone: "+a},lC=function(a,b,c){a=[a?.formattedAddress&&bC("M12 2a8 8 0 0 1 8 8.2c0 3.3-2.7 7.3-8 11.8-5.3-4.5-8-8.5-8-11.8A8 8 0 0 1 12 2Zm6 8.2A6 6 0 0 0 12 4a6 6 0 0 0-6 6.2c0 2.3 2 5.4 6 9.1 4-3.7 6-6.8 6-9.1Zm-4-.2a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z",a.formattedAddress,Lva),a?.regularOpeningHours?.periods&&a?.utcOffsetMinutes!=null&&(0,_.S)` `,a?.websiteURI&&bC("M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm-1 18a8 8 0 0 1-6.8-9.8L9 15v1c0 1.1.9 2 2 2v2Zm6.9-2.6A2 2 0 0 0 16 16h-1v-3c0-.6-.4-1-1-1H8v-2h2c.6 0 1-.4 1-1V7h2a2 2 0 0 0 2-2v-.4a8 8 0 0 1 2.9 12.8Z",Pva(a.websiteURI),Mva,a.websiteURI),a?.nationalPhoneNumber&&bC("M20 21c-2.1 0-4.2-.4-6.2-1.4a18.7 18.7 0 0 1-9.5-9.4c-.8-2-1.3-4-1.3-6.1A1 1 0 0 1 4 3h4.1c.2 0 .4 0 .6.3l.4.5.6 3.5V8c0 .2-.2.3-.3.4L7 11a13.3 13.3 0 0 0 2.7 3.4A19 19 0 0 0 13 17l2.3-2.3.6-.4h.8l3.4.6.6.4.2.6v4a1 1 0 0 1-1 1.1ZM6 9l1.7-1.7L7.2 5H5a20.6 20.6 0 0 0 1 4Zm9 9a12.6 12.6 0 0 0 4 1v-2.3l-2.4-.4-1.6 1.6Z", a.nationalPhoneNumber,Nva),c?.QA&&a?.plusCode?.compoundCode&&bC("M12 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm-5 5a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm5 2a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm7 0a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm-5 5a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z",a.plusCode?.compoundCode,Ova),b&&bC("m8.6 17.9.8 1.7A7.3 7.3 0 0 1 5.1 16h3l.5 1.9Zm-1-3.9H4.4L4 13a10.3 10.3 0 0 1 .3-3h3.4a20.5 20.5 0 0 0-.2 3l.2 1Zm.5-6H5a7.3 7.3 0 0 1 4.3-3.5A14.8 14.8 0 0 0 8.1 8Zm5-2 .8 2h-3.8A11.8 11.8 0 0 1 12 4l1.1 2ZM19 8h-3a13 13 0 0 0-1.3-3.5 7 7 0 0 1 2.5 1.3c.7.6 1.3 1.4 1.8 2.2ZM8.1 21.2c1.2.5 2.5.8 3.9.8h.3a7 7 0 0 1-1.3-3.7l-.1-.2L10 16h1.2a7 7 0 0 1 1-2H9.6a22.3 22.3 0 0 1-.1-2 19 19 0 0 1 .2-2h4.7a10.2 10.2 0 0 1 .1 2 7 7 0 0 1 2-.8V11l-.1-1h3.4a7 7 0 0 1 .2 1.3 7 7 0 0 1 2 1V12a9.7 9.7 0 0 0-3-7 9.7 9.7 0 0 0-7-3 10 10 0 0 0-3.9 19.2ZM18 23c-1.4 0-2.6-.5-3.6-1.4-1-1-1.4-2.2-1.4-3.6s.5-2.6 1.4-3.5c1-1 2.2-1.5 3.6-1.5s2.6.5 3.5 1.5c1 1 1.5 2.1 1.5 3.5s-.5 2.6-1.5 3.6S19.4 23 18 23Zm1.7-2.6.7-.7-1.9-1.9V15h-1v3.2l2.2 2.2Z", b,twa)].filter(Boolean);return a.length?(0,_.S)`
    ${a}
    `:null},uwa=function(a){return cC([iC(a),jC(a),pwa(a),lC(a)])},vwa=function(a,b){return cC([iC(a),jC(a),pwa(a,{PA:!0}),lC(a,b,{QA:!0}),swa(a)])},wwa=function(a,b){a=[{name:"\u00dcbersicht",content:uwa(a)},{name:"Rezensionen",content:owa(a)},{name:"Info",content:vwa(a,b)}].filter(c=>c.content);return(0,_.S)` c.name)}> ${a.map(({content:c},d)=>(0,_.S)`
    ${c}
    `)}
    `},xwa=function(a){if(a.text==null)return(0,_.S)``;const b=[];var c=0;for(const d of a.QJ)b.push((0,_.S)`${a.text.substring(c,d.nG)}`),b.push((0,_.S)`${a.text.substring(d.nG,d.tE)}`),c=d.tE;b.push((0,_.S)`${a.text.substring(c)}`);c=a.review?.authorAttribution?.photoURI;a=qB(a.review?.authorAttribution?.displayName??"");return(0,_.S)`
    ${""} ${c?(0,_.S)`
    ${a}
    `:""}
    ${b}
    `},ywa=function(a,b=!1){const c=a.place;a=a.RM;return(0,_.S)`
    ${b&&a?(0,_.S)``:""} ${(0,_.S)` `}
    `},mC=function(a){return(0,_.S)` `},zwa=function(a,b,c,d){if(a<0||a>=b.length)return(0,_.S)``;let e=0,f=0;const g=b[a];var h=g.authorAttributions.length?g.authorAttributions[0]:{displayName:""},l="Profil von "+h.displayName+" ansehen",n="Foto von "+h.displayName;h=(0,_.S)`
    ${h.photoURI?(0,_.S)` ${n} `:""} ${h.displayName} ${h.uri?(0,_.S)` `:""}
    `;l=(0,_.S)`
    ${g.flagContentURI?aC([{text:"Foto melden",uri:g.flagContentURI}],d):""}
    `;n=b.length>1?b.map((p,r)=>(0,_.S)`
    `):[];return(0,_.S)` {var r=c.fo,u=c.eo;const w=window.getComputedStyle(document.body).direction==="rtl";p.key==="Escape"&&p.stopPropagation();p.key==="ArrowLeft"&&(w?u():r(),p.stopPropagation());p.key==="ArrowRight"&&(w?r():u(),p.stopPropagation())}}>
    ${640||(e=p.touches[0].screenX,f=p.touches[0].screenY,p.stopPropagation())})} @touchend=${p=>{var r=c.fo,u=c.eo;if(!(window.screen.width>640)){var w=p.changedTouches[0].screenX,x=w-e,y=p.changedTouches[0].screenY-f,B=window.getComputedStyle(document.body).direction==="rtl",D=d.querySelector(".lightbox dialog")?.open;switch(x<-10?1:x>10?2:y<-10?3:y>10?4:wwindow.innerWidth*.75?6:7){case 1:B?r():u();p.stopPropagation();break;case 5:D||(B?u():r(),p.stopPropagation());break;case 2:B?u():r();p.stopPropagation();break;case 6:D||(B?r():u(),p.stopPropagation()); break;case 7:D||(u(),p.stopPropagation())}}}} /> ${(0,_.S)` `}
    `},Awa=function(a=!1){let b="media__image-load--error";a||(b+=" image-container");return(0,_.S)`
    ${"Bild kann nicht geladen werden"}
    `},Dwa=function(a=!1){return a?Bwa:Cwa},Ewa=function(a,b=!1){const c=Math.min(3,a);if(c>0){const d=Array.from({length:c}).map((e,f)=>(0,_.S)`
    `);return(0,_.S)`
    ${d}
    ${b?"":mC(a)}
    `}return(0,_.S)``},Fwa=function(a,b){if(a.length>0){const c=Math.min(3,a.length),d=a.slice(0,c).map((e,f)=>{const g=mB("{NUM_IMAGE,selectordinal, other{#.\u00a0Foto \u00f6ffnen.}}",{NUM_IMAGE:f+1});return(0,_.S)` `});return(0,_.S)`
    ${d}
    ${mC(a.length)}
    `}return(0,_.S)``},nC=function(a){return(0,_.S)`
    ${a}
    `},Gwa=function(a,b=!0){return nC((0,_.S)`
    ${b?mC(a):""}`)},Hwa=function(a,b){if(a.length===0)return(0,_.S)``;if(b!==void 0){var c="Foto \u00f6ffnen von: "+a[0].Oq;return nC((0,_.S)` ${mC(a.length)} `)}c="Foto von: "+a[0].Oq;return nC((0,_.S)`
    ${c}
    `)},Iwa=function(a=!1){return nC(Awa(a))},Jwa=function(a=!1){return nC(Dwa(a))},Kwa=function(){return nC((0,_.S)`
    `)},Lwa=function(a,b){if(a.length===0)return(0,_.S)``;if(b!==void 0){const c="Foto \u00f6ffnen von: "+a[0].Oq;return nC((0,_.S)` `)}return nC((0,_.S)` `)},Mwa=async function(a,b={},c){var d={mB:500};return c(await Promise.all((a.photos??[]).map(async e=>c(await Promise.all([oC(e,{mB:e.widthPx},b,c).catch(pC),oC(e,d,b,c).catch(pC)])))))},Nwa=async function(a,b={},c){var d={mB:500};return c(await Promise.all(a.map(async function(e){var f=e.photos?.[0];f=f?c(await oC(f,d,b,c).catch(pC)):null;return{place:e,RM:f}})))},oC=async function(a,b={},c={},d){const {eJ:e}=d(await _.Vi("places_impl"));let f=b.mB;b=b.QP;f!=null&&(f=Math.max(1,Math.min(a.widthPx, f)));b!=null&&(b=Math.max(1,Math.min(a.heightPx,b)));try{const g=d(await e(`${a.name}/media`,f,b,c));if(!g)throw Error("Error fetching photo URI: Server returned no data");return g}catch(g){if(g instanceof _.bh)throw WA(`Error fetching photo URI: ${g.message}`,"PLACES_GET_PHOTO_MEDIA",g);throw g;}},pC=function(a){a instanceof Error&&console.warn(a);return null},qC=function(a,b){return a||b?a&&b?a?.place instanceof VB&&b?.place instanceof VB?a||b?a&&b?a.place?.id===b.place?.id:!1:!0:a?.location instanceof _.eq&&b?.location instanceof _.eq?a||b?a&&b?!!a.location===!!b.location&&!!a.location?.equals(b.location||null):!1:!0:!1:!1:!0},Qwa=async function(a,b){await _.Io(a,async c=>{a.pj=void 0;const d=c(await a.Pg.fetch(c)),e=c(await Owa(a,b,d.Cm(),d.Eg()));a.pj=e;a.kl=2;c(await Pwa(a,e,d.Cm(),c))},230164)},Swa=async function(a,b){await _.Io(a,async c=>{a.pj=void 0;const d=c(await a.Pg.fetch(c));c(await (async()=>{const e=c(await Rwa(b,d.Cm()));a.pj=c(await Owa(a,{id:e},d.Cm(),d.Eg()));a.kl=2;c(await Pwa(a, a.pj,d.Cm(),c))})())},230165)},Owa=async function(a,b,c,d){const e={requestedLanguage:a.Fl.language,requestedRegion:a.Fl.region};b=b instanceof VB?WB(ZB(b),e):new VB({...e,...b});a=fva(new Set([...Twa,...a.Sg]),d);await YB(b,{fields:Array.from(a)},{Ml:c});return b},Rwa=async function(a,b){a=await dva(a,{Ml:b});a:{for(c of a)if(_.Ce(c,12,_.Jd,_.we()).includes("point_of_interest")){var c=c.Eg();break a}c=a[0]?.Eg()??null}if(c)return c;throw Error("No geocoding results");},Pwa=async function(a,b,c,d){c= d(await Mwa(b,{Ml:c},d));a.Cj=c.map((e,f)=>e[0]==null||e[1]==null?null:{dr:e[1],kv:e[0],Oq:b.displayName??"",authorAttributions:b.photos?.[f]?.authorAttributions??[],flagContentURI:b.photos?.[f]?.flagContentURI}).filter(Boolean);a.Nq=a.Cj.length===0&&c.length>0?"ERROR":"SUCCESS"},Uwa=function(a,b){if(!a.Ri.content?.media)return null;b=b.photos?.length??0;const c=a.Nq==="LOADING"&&b>0;let d=null;return d=a.Cj.length>0?Fwa(a.Cj,e=>{a.Jg(e)}):c?Ewa(b):a.Nq==="ERROR"?(0,_.S)`
    ${Awa(!1)}
    `:(0,_.S)`
    ${Dwa(!1)}
    `},Vwa=function(a){return a.Ig===0?!0:a.Ig===1?!1:!!a.Ri.content?.media?.lightboxPreferred},Wwa=function(a,b){if(!a.Ri.content?.media)return null;b=b.photos?.length??0;const c=a.Nq==="LOADING"&&b>0;let d=null;return d=a.Cj.length>0?Hwa(a.Cj,Vwa(a)?e=>{a.Jg(e)}:void 0):c?Gwa(b):a.Nq==="ERROR"?Iwa(!1):Jwa(!1)},Xwa=function(a){return a.Ri.content?.media&&Vwa(a)?zwa(a.ir,a.Cj,{lp:()=>{a.lp()},fo:()=>{a.fo()},eo:()=>{a.eo()}},a.Ci):null},Ywa=function(a,b,{CM:c=!1,showIcon:d=!1,pI:e={},FK:f,EK:g}){return a? (0,_.S)` {f&&g&&_.P(f,g)}}> ${b} `:""},$wa=function(a,{variant:b}){const c=Zwa[b];return(0,_.S)`${Ywa(a.googleMapsURI??null,c.text,{showIcon:c.showIcon,pI:{["open-in-maps-button"]:!0,[b]:!0},FK:a,EK:254684})}`},axa=function(a,b=!1){return(0,_.S)`
    ${b?"":rC(void 0,{showInfoButton:!0,Sy:!0,attributionType:"TEXT",infoButtonTapAreaExpanded:!0,contentConfig:a})}
    `},tC=function(a,b={}){var c=b.BB;const d=b.Jt,e=b.co,f=b.IA,g=b.titleSize,h=b.fontSize,l=b.OA;c=c?$wa(a,{variant:c}):"";const n=b.contentConfig??sC;return(0,_.S)`
    ${l?bwa(a):""} ${e?eC(e):""} ${c} ${d&&a.editorialSummary?(0,_.S)`

    ${a.editorialSummary}

    `:""} ${f?null:rC(a,{contentConfig:n,Sy:!1,attributionType:"TEXT",infoButtonTapAreaExpanded:!0,showInfoButton:!0})}
    `},rC=function(a,b={}){var c=new Map([["BLACK","#000"],["WHITE","#fff"],["GRAY","#5e5e5e"]]);const {contentConfig:d,Sy:e=!1,attributionType:f="LOGO",infoButtonTapAreaExpanded:g=!1,showInfoButton:h=!1,xM:l=!1}=b;b=a?.reviews?.length&&l&&d?.reviews;a=[...(a?.rating!=null&&d?.rating||b?[bxa]:[]),...(b?[cxa]:[])];b=c.get(d?.attribution?.lightSchemeColor||"GRAY");c=c.get(d?.attribution?.darkSchemeColor||"WHITE");c=(0,_.S)` `;return e?(0,_.S)`
    ${c}
    `:c},dxa=function(a){return a.Fl.showsAttribution??!0?rC(a.pj,{contentConfig:a.Ri.content,showInfoButton:!0,Sy:!0,attributionType:"TEXT",infoButtonTapAreaExpanded:!0}):null},exa=function(a){return a.reviews?.length?(0,_.S)`
    ${a.reviews.map(b=>(0,_.S)` `)}
    `:null},fxa=function(a,b){var c=[...(b?.Bw?[Wva(a),$va(a)]:[])];const d=a?.internationalPhoneNumber??(a?.nationalPhoneNumber||"");a=[b?.address&&a?.formattedAddress&&bC("M12 2a8 8 0 0 1 8 8.2c0 3.3-2.7 7.3-8 11.8-5.3-4.5-8-8.5-8-11.8A8 8 0 0 1 12 2Zm6 8.2A6 6 0 0 0 12 4a6 6 0 0 0-6 6.2c0 2.3 2 5.4 6 9.1 4-3.7 6-6.8 6-9.1Zm-4-.2a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z",a.formattedAddress,Lva),b?.openingHours&&a?.regularOpeningHours?.periods&&a?.utcOffsetMinutes!=null&&(0,_.S)` `,b?.website&&a?.websiteURI&&bC("M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm-1 18a8 8 0 0 1-6.8-9.8L9 15v1c0 1.1.9 2 2 2v2Zm6.9-2.6A2 2 0 0 0 16 16h-1v-3c0-.6-.4-1-1-1H8v-2h2c.6 0 1-.4 1-1V7h2a2 2 0 0 0 2-2v-.4a8 8 0 0 1 2.9 12.8Z",Pva(a.websiteURI),Mva,a.websiteURI,!1,["website-link"]),b?.phoneNumber&&d&&bC("M20 21c-2.1 0-4.2-.4-6.2-1.4a18.7 18.7 0 0 1-9.5-9.4c-.8-2-1.3-4-1.3-6.1A1 1 0 0 1 4 3h4.1c.2 0 .4 0 .6.3l.4.5.6 3.5V8c0 .2-.2.3-.3.4L7 11a13.3 13.3 0 0 0 2.7 3.4A19 19 0 0 0 13 17l2.3-2.3.6-.4h.8l3.4.6.6.4.2.6v4a1 1 0 0 1-1 1.1ZM6 9l1.7-1.7L7.2 5H5a20.6 20.6 0 0 0 1 4Zm9 9a12.6 12.6 0 0 0 4 1v-2.3l-2.4-.4-1.6 1.6Z", d,Nva,`tel:+${d.replace(/[-()\s+]/g,"")}`,!0),b?.plusCode&&a?.plusCode?.compoundCode&&bC("M12 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm-5 5a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm5 2a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm7 0a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm-5 5a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z",a.plusCode?.compoundCode,Ova)].filter(Boolean);a=a.length?(0,_.S)`
    ${a}
    `:null;c=[...c,a];return c.filter(Boolean).length?cC(c):null},gxa=function(a,b){return[{name:"\u00dcbersicht",content:fxa(a,b)},{name:"Rezensionen",content:b?.reviews?exa(a):null},{name:"Info",content:b?.gj?Sva(a):null}].filter(c=>!!c.content)},hxa=function(a){return a.length>1?(0,_.S)` b.name)}> ${a.map(({content:b},c)=>(0,_.S)`
    ${b}
    `)}
    `:a.length===1?(0,_.S)`
    ${a[0].content}
    `:null},uC=function(a){return a.Fl.showsAttribution??!0?rC(a.pj,{contentConfig:a.Ri.content,showInfoButton:!0,Sy:!0,attributionType:"LOGO",infoButtonTapAreaExpanded:!0,xM:!0}):null},ixa=function(a,b){var c=a.Ri.content;const d=c?.summary?b.editorialSummary?(0,_.S)`

    ${b.editorialSummary}

    `:null:"";c=gxa(b,c);const e=!d&&c.length>1;({Jt:f}={});var f=tC(b,{addressEnabled:!1,contentConfig:a.Ri.content,IA:!0,Jt:f??!1,BB:"expanded",titleSize:"display-small",fontSize:"medium"});b=(0,_.S)` ${f} ${Uwa(a,b)??""}${d} ${c.length&&!e?(0,_.S)`
    `:""} ${hxa(c)??""}`;return(0,_.S)`
    ${uC(a)}
    ${b}
    `},jxa=async function(a,b,c){return c(await Nwa(a,{Ml:b},c))},lxa=function(a,b,c){const d=b.place,e=ywa(b,a.sC);if(!a.selectable)return(0,_.S)`
  • ${e}
  • `;const f=a.iw===d.id;return(0,_.S)`
  • ${e}
  • `},nxa=async function(a){return mxa(a)},mxa=async function(a){const {cI:b}=await _.Vi("places_impl"),c=Bva(a);try{return b(c,void 0).then(d=>({suggestions:d.dI.Eg().map(e=>{var f=d.LD.Mg(),g=d.LD.Kg(),h=a?.sessionToken,l=a?.origin&&new _.Tj(a.origin);return new vC(e,f,g,h,l)})}))}catch(d){if(d instanceof _.bh)throw WA("Error in fetching AutocompleteSuggestions: "+d.message,"PLACES_AUTOCOMPLETE",d);throw d;}},xC=function(a){return new wC(a)},tua=async function(a,b){if(b==="")Aua(a,[]);else try{await oxa(a, {input:b,locationBias:a.Ji??void 0,locationRestriction:a.Wi??void 0,language:a.Lh??void 0,region:a.Ph??void 0,includedRegionCodes:a.Oi??void 0,includedPrimaryTypes:a.yi??void 0,origin:a.Sg?{lat:a.Sg.lat,lng:a.Sg.lng}:void 0})}catch(c){_.Oda(a,c)}},zua=function(a,b){let c;var d=b.mainText?.text??"";var e=b.secondaryText?.text??"";c=b.mainText?.matches??[];var f=b.secondaryText?.matches??[];const g=document.createElement("div");g.classList.add("place-autocomplete-element-row");const h=document.createElement("div"); h.setAttribute("part","prediction-item-icon");h.classList.add("place-autocomplete-element-place-icon","place-autocomplete-element-place-icon-marker");var l=h.appendChild;if(a.Eh.assignedElements().length===0)var n=null;else{if(a.Eh.assignedElements().length>1)throw _.Bj(_.Ul(a,"You may specify a maximum of one element for the icon slot."));n=a.Eh.assignedElements()[0];if(!(n instanceof HTMLTemplateElement))throw _.Bj(_.Ul(a,"You may only specify a