Skip to content

Instantly share code, notes, and snippets.

@Tomas2D
Created April 25, 2022 19:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Tomas2D/adeafa03a09625f5d08f2a52ac805a33 to your computer and use it in GitHub Desktop.
Save Tomas2D/adeafa03a09625f5d08f2a52ac805a33 to your computer and use it in GitHub Desktop.
Fast and slow SPARQl query
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="Copyright" content="Copyright &#169; 2022 OpenLink Software" />
<meta name="Keywords" content="OpenLink Virtuoso Sparql" />
<title>Virtuoso SPARQL Compilation report</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.6.0/css/bootstrap.min.css" integrity="sha512-P5MgMn1jBN01asBgU0z60Qk4QxiXo86+wlFahKrsQf37c9cro517WzVSPPV1tDKzhku2iJ2FVgL67wG03SGnNA==" crossorigin="anonymous" />
<style>.example { background-color: #ddd; padding: 1em; } </style>
</head>
<body>
<div class="container-fluid">
<h3>Virtuoso SPARQL Compilation Report</h3>
<p>
<h5>Original SPARQL query</h5>
<p>The SPARQL query as it is passed by web page to the SPARQL compiler:</p>
<pre class="text-monospace example"><code>/*6398fba2e425df51c0264c8d457f816d*/
sparql {
#output-format:text/html
SELECT DISTINCT ?id ?title ?description ?address (group_concat(DISTINCT ?images;separator=&quot;,&quot;) as ?images) ?annuity ?energyLevel ?floor ?floorArea ?usableArea ?layout ?state (str(?mapLat) as ?mapLat) (str(?mapLon) as ?mapLon) ?monthlyFees ?ownership ?price ?structure ?unitType ?source ?hasCellar ?hasLift ?hasParking ?hasTerrace ?isAuction ?isLastFloor ?withEquipment ?createdAt ?updatedAt ?sourceUpdatedAt
WHERE {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; {
?entity a &lt;http://reality-maker.cz/vocabulary/RealEstate&gt; .
?entity &lt;http://purl.org/dc/terms/identifier&gt; ?id .
OPTIONAL { ?entity &lt;http://purl.org/dc/terms/title&gt; ?title . }
OPTIONAL { ?entity &lt;http://purl.org/dc/terms/description&gt; ?description . }
OPTIONAL { ?entity &lt;http://schema.org/address&gt; ?address . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/images&gt; ?images . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/annuity&gt; ?annuity . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/energyLevel&gt; ?energyLevel . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/floor&gt; ?floor . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/floorArea&gt; ?floorArea . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/usableArea&gt; ?usableArea . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/layout&gt; ?layout . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/state&gt; ?state . }
OPTIONAL { ?entity &lt;http://www.w3.org/2003/01/geo/wgs84_pos#lat&gt; ?mapLat . }
OPTIONAL { ?entity &lt;http://www.w3.org/2003/01/geo/wgs84_pos#long&gt; ?mapLon . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/monthlyFees&gt; ?monthlyFees . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/ownership&gt; ?ownership . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/price&gt; ?price . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/structure&gt; ?structure . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/unitType&gt; ?unitType . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/source&gt; ?source . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/hasCellar&gt; ?hasCellar . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/hasLift&gt; ?hasLift . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/hasParking&gt; ?hasParking . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/hasTerrace&gt; ?hasTerrace . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/isAuction&gt; ?isAuction . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/isLastFloor&gt; ?isLastFloor . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/withEquipment&gt; ?withEquipment . }
OPTIONAL { ?entity &lt;http://purl.org/dc/terms/created&gt; ?createdAt . }
OPTIONAL { ?entity &lt;http://purl.org/dc/terms/modified&gt; ?updatedAt . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/sourceModified&gt; ?sourceUpdatedAt . }
BIND(bif:st_point(?mapLon, ?mapLat) as ?mapPoint)
}
GRAPH &lt;http://reality-maker.cz/osm/cze/prague&gt; {
FILTER EXISTS {
?amenityIRI rdf:type &lt;https://www.openstreetmap.org/node&gt; ;
geo:hasGeometry ?amenityGeo ;
&lt;https://www.openstreetmap.org/wiki/Key:amenity&gt; &quot;restaurant&quot; .
MINUS {
?amenityIRI rdf:type &lt;https://www.openstreetmap.org/node&gt; ;
geo:hasGeometry ?amenityGeo ;
&lt;https://www.openstreetmap.org/wiki/Key:amenity&gt; &quot;restaurant&quot; .
FILTER(geof:distance(?mapPoint, ?amenityGeo, &lt;http://www.opengis.net/def/uom/OGC/1.0/metre&gt;) &gt; 500)
}
}
}
}
LIMIT 10
}</code></pre>
<h5>Optimized SPARQL query</h5>
<p>The SPARQL query after parsing, optimization and converting back into SPARQL</p>
<pre class="text-monospace example"><code>SELECT DISTINCT ?id
?title
?description
?address
( &lt;sql:GROUP_CONCAT_DISTINCT&gt;( ?images, &quot;,&quot;) AS ?images)
?annuity
?energyLevel
?floor
?floorArea
?usableArea
?layout
?state
( str( ?mapLat) AS ?mapLat)
( str( ?mapLon) AS ?mapLon)
?monthlyFees
?ownership
?price
?structure
?unitType
?source
?hasCellar
?hasLift
?hasParking
?hasTerrace
?isAuction
?isLastFloor
?withEquipment
?createdAt
?updatedAt
?sourceUpdatedAt
WHERE {
{ SELECT ?entity
?id
?title
?description
?address
?images
?annuity
?energyLevel
?floor
?floorArea
?usableArea
?layout
?state
?mapLat
?mapLon
?monthlyFees
?ownership
?price
?structure
?unitType
?source
?hasCellar
?hasLift
?hasParking
?hasTerrace
?isAuction
?isLastFloor
?withEquipment
?createdAt
?updatedAt
?sourceUpdatedAt
( &lt;bif:st_point&gt;( ?mapLon, ?mapLat) AS ?mapPoint)
WHERE {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#type&gt; &lt;http://reality-maker.cz/vocabulary/RealEstate&gt; ;
&lt;http://purl.org/dc/terms/identifier&gt; ?id . }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://purl.org/dc/terms/title&gt; ?title . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://purl.org/dc/terms/description&gt; ?description . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://schema.org/address&gt; ?address . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/images&gt; ?images . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/annuity&gt; ?annuity . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/energyLevel&gt; ?energyLevel . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/floor&gt; ?floor . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/floorArea&gt; ?floorArea . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/usableArea&gt; ?usableArea . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/layout&gt; ?layout . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/state&gt; ?state . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://www.w3.org/2003/01/geo/wgs84_pos#lat&gt; ?mapLat . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://www.w3.org/2003/01/geo/wgs84_pos#long&gt; ?mapLon . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/monthlyFees&gt; ?monthlyFees . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/ownership&gt; ?ownership . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/price&gt; ?price . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/structure&gt; ?structure . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/unitType&gt; ?unitType . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/source&gt; ?source . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/hasCellar&gt; ?hasCellar . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/hasLift&gt; ?hasLift . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/hasParking&gt; ?hasParking . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/hasTerrace&gt; ?hasTerrace . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/isAuction&gt; ?isAuction . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/isLastFloor&gt; ?isLastFloor . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/withEquipment&gt; ?withEquipment . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://purl.org/dc/terms/created&gt; ?createdAt . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://purl.org/dc/terms/modified&gt; ?updatedAt . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/sourceModified&gt; ?sourceUpdatedAt . } } }
OFFSET 0 }
FILTER (
EXISTS
{
GRAPH &lt;http://reality-maker.cz/osm/cze/prague&gt; { ?amenityIRI &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#type&gt; &lt;https://www.openstreetmap.org/node&gt; ;
&lt;http://www.opengis.net/ont/geosparql#hasGeometry&gt; ?amenityGeo ;
&lt;https://www.openstreetmap.org/wiki/Key:amenity&gt; &quot;restaurant&quot; . }
FILTER ( !(
EXISTS
{
GRAPH &lt;http://reality-maker.cz/osm/cze/prague&gt; { ?amenityIRI &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#type&gt; &lt;https://www.openstreetmap.org/node&gt; ;
&lt;http://www.opengis.net/ont/geosparql#hasGeometry&gt; ?amenityGeo ;
&lt;https://www.openstreetmap.org/wiki/Key:amenity&gt; &quot;restaurant&quot; . }
FILTER ( 500 &lt; &lt;bif:http://www.opengis.net/def/function/geosparql/distance&gt;( ?mapPoint, ?amenityGeo, &lt;http://www.opengis.net/def/uom/OGC/1.0/metre&gt;) ) }) ) } ) }
GROUP BY ?sourceUpdatedAt ?updatedAt ?createdAt ?withEquipment ?isLastFloor ?isAuction ?hasTerrace ?hasParking ?hasLift ?hasCellar ?source ?unitType ?structure ?price ?ownership ?monthlyFees ?mapLon ?mapLat ?state ?layout ?usableArea ?floorArea ?floor ?energyLevel ?annuity ?address ?description ?title ?id
LIMIT 10</code></pre>
<h5>SPARQL query translated to SQL</h5>
<p>
<i>For security reasons, code responsible for graph-level security is not generated and some account-specific data are intentionally made wrong.</i>
<pre class="text-monospace example"><code> SELECT __ro2sq (&quot;s_56_103_rbc&quot;.&quot;id&quot;) AS &quot;id&quot;, __ro2sq (&quot;s_56_103_rbc&quot;.&quot;title&quot;) AS &quot;title&quot;, __ro2sq (&quot;s_56_103_rbc&quot;.&quot;description&quot;) AS &quot;description&quot;, __ro2sq (&quot;s_56_103_rbc&quot;.&quot;address&quot;) AS &quot;address&quot;, __ro2sq (&quot;s_56_103_rbc&quot;.&quot;images&quot;) AS &quot;images&quot;, __ro2sq (&quot;s_56_103_rbc&quot;.&quot;annuity&quot;) AS &quot;annuity&quot;, __ro2sq (&quot;s_56_103_rbc&quot;.&quot;energyLevel&quot;) AS &quot;energyLevel&quot;, __ro2sq (&quot;s_56_103_rbc&quot;.&quot;floor&quot;) AS &quot;floor&quot;, __ro2sq (&quot;s_56_103_rbc&quot;.&quot;floorArea&quot;) AS &quot;floorArea&quot;, __ro2sq (&quot;s_56_103_rbc&quot;.&quot;usableArea&quot;) AS &quot;usableArea&quot;, __ro2sq (&quot;s_56_103_rbc&quot;.&quot;layout&quot;) AS &quot;layout&quot;, __ro2sq (&quot;s_56_103_rbc&quot;.&quot;state&quot;) AS &quot;state&quot;, __ro2sq (&quot;s_56_103_rbc&quot;.&quot;mapLat&quot;) AS &quot;mapLat&quot;, __ro2sq (&quot;s_56_103_rbc&quot;.&quot;mapLon&quot;) AS &quot;mapLon&quot;, __ro2sq (&quot;s_56_103_rbc&quot;.&quot;monthlyFees&quot;) AS &quot;monthlyFees&quot;, __ro2sq (&quot;s_56_103_rbc&quot;.&quot;ownership&quot;) AS &quot;ownership&quot;, __ro2sq (&quot;s_56_103_rbc&quot;.&quot;price&quot;) AS &quot;price&quot;, __ro2sq (&quot;s_56_103_rbc&quot;.&quot;structure&quot;) AS &quot;structure&quot;, __ro2sq (&quot;s_56_103_rbc&quot;.&quot;unitType&quot;) AS &quot;unitType&quot;, __ro2sq (&quot;s_56_103_rbc&quot;.&quot;source&quot;) AS &quot;source&quot;, __ro2sq (&quot;s_56_103_rbc&quot;.&quot;hasCellar&quot;) AS &quot;hasCellar&quot;, __ro2sq (&quot;s_56_103_rbc&quot;.&quot;hasLift&quot;) AS &quot;hasLift&quot;, __ro2sq (&quot;s_56_103_rbc&quot;.&quot;hasParking&quot;) AS &quot;hasParking&quot;, __ro2sq (&quot;s_56_103_rbc&quot;.&quot;hasTerrace&quot;) AS &quot;hasTerrace&quot;, __ro2sq (&quot;s_56_103_rbc&quot;.&quot;isAuction&quot;) AS &quot;isAuction&quot;, __ro2sq (&quot;s_56_103_rbc&quot;.&quot;isLastFloor&quot;) AS &quot;isLastFloor&quot;, __ro2sq (&quot;s_56_103_rbc&quot;.&quot;withEquipment&quot;) AS &quot;withEquipment&quot;, __ro2sq (&quot;s_56_103_rbc&quot;.&quot;createdAt&quot;) AS &quot;createdAt&quot;, __ro2sq (&quot;s_56_103_rbc&quot;.&quot;updatedAt&quot;) AS &quot;updatedAt&quot;, __ro2sq (&quot;s_56_103_rbc&quot;.&quot;sourceUpdatedAt&quot;) AS &quot;sourceUpdatedAt&quot; FROM (SELECT DISTINCT TOP 10 __ro2sq ( &quot;s_37_90&quot;.&quot;id&quot;) AS &quot;id&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;title&quot;) AS &quot;title&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;description&quot;) AS &quot;description&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;address&quot;) AS &quot;address&quot;,
DB.DBA.GROUP_CONCAT_DISTINCT (
__ro2sq ( &quot;s_37_90&quot;.&quot;images&quot;),
&#39;,&#39; ) AS &quot;images&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;annuity&quot;) AS &quot;annuity&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;energyLevel&quot;) AS &quot;energyLevel&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;floor&quot;) AS &quot;floor&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;floorArea&quot;) AS &quot;floorArea&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;usableArea&quot;) AS &quot;usableArea&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;layout&quot;) AS &quot;layout&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;state&quot;) AS &quot;state&quot;,
__rdf_strsqlval ( &quot;s_37_90&quot;.&quot;mapLat&quot;, 0) AS &quot;mapLat&quot;,
__rdf_strsqlval ( &quot;s_37_90&quot;.&quot;mapLon&quot;, 0) AS &quot;mapLon&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;monthlyFees&quot;) AS &quot;monthlyFees&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;ownership&quot;) AS &quot;ownership&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;price&quot;) AS &quot;price&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;structure&quot;) AS &quot;structure&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;unitType&quot;) AS &quot;unitType&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;source&quot;) AS &quot;source&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;hasCellar&quot;) AS &quot;hasCellar&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;hasLift&quot;) AS &quot;hasLift&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;hasParking&quot;) AS &quot;hasParking&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;hasTerrace&quot;) AS &quot;hasTerrace&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;isAuction&quot;) AS &quot;isAuction&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;isLastFloor&quot;) AS &quot;isLastFloor&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;withEquipment&quot;) AS &quot;withEquipment&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;createdAt&quot;) AS &quot;createdAt&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;updatedAt&quot;) AS &quot;updatedAt&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;sourceUpdatedAt&quot;) AS &quot;sourceUpdatedAt&quot;
FROM (
SELECT &quot;s_37_61_t32&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_37_61_t32&quot;.&quot;O&quot; AS &quot;id&quot;,
&quot;s_8_3&quot;.&quot;title&quot; AS &quot;title&quot;,
&quot;s_9_5&quot;.&quot;description&quot; AS &quot;description&quot;,
&quot;s_10_7&quot;.&quot;address&quot; AS &quot;address&quot;,
&quot;s_11_9&quot;.&quot;images&quot; AS &quot;images&quot;,
&quot;s_12_11&quot;.&quot;annuity&quot; AS &quot;annuity&quot;,
&quot;s_13_13&quot;.&quot;energyLevel&quot; AS &quot;energyLevel&quot;,
&quot;s_14_15&quot;.&quot;floor&quot; AS &quot;floor&quot;,
&quot;s_15_17&quot;.&quot;floorArea&quot; AS &quot;floorArea&quot;,
&quot;s_16_19&quot;.&quot;usableArea&quot; AS &quot;usableArea&quot;,
&quot;s_17_21&quot;.&quot;layout&quot; AS &quot;layout&quot;,
&quot;s_18_23&quot;.&quot;state&quot; AS &quot;state&quot;,
&quot;s_19_25&quot;.&quot;mapLat&quot; AS &quot;mapLat&quot;,
&quot;s_20_27&quot;.&quot;mapLon&quot; AS &quot;mapLon&quot;,
&quot;s_21_29&quot;.&quot;monthlyFees&quot; AS &quot;monthlyFees&quot;,
&quot;s_22_31&quot;.&quot;ownership&quot; AS &quot;ownership&quot;,
&quot;s_23_33&quot;.&quot;price&quot; AS &quot;price&quot;,
&quot;s_24_35&quot;.&quot;structure&quot; AS &quot;structure&quot;,
&quot;s_25_37&quot;.&quot;unitType&quot; AS &quot;unitType&quot;,
&quot;s_26_39&quot;.&quot;source&quot; AS &quot;source&quot;,
&quot;s_27_41&quot;.&quot;hasCellar&quot; AS &quot;hasCellar&quot;,
&quot;s_28_43&quot;.&quot;hasLift&quot; AS &quot;hasLift&quot;,
&quot;s_29_45&quot;.&quot;hasParking&quot; AS &quot;hasParking&quot;,
&quot;s_30_47&quot;.&quot;hasTerrace&quot; AS &quot;hasTerrace&quot;,
&quot;s_31_49&quot;.&quot;isAuction&quot; AS &quot;isAuction&quot;,
&quot;s_32_51&quot;.&quot;isLastFloor&quot; AS &quot;isLastFloor&quot;,
&quot;s_33_53&quot;.&quot;withEquipment&quot; AS &quot;withEquipment&quot;,
&quot;s_34_55&quot;.&quot;createdAt&quot; AS &quot;createdAt&quot;,
&quot;s_35_57&quot;.&quot;updatedAt&quot; AS &quot;updatedAt&quot;,
&quot;s_36_59&quot;.&quot;sourceUpdatedAt&quot; AS &quot;sourceUpdatedAt&quot;,
st_point (
__ro2sq ( &quot;s_20_27&quot;.&quot;mapLon&quot;),
__ro2sq ( &quot;s_19_25&quot;.&quot;mapLat&quot;)) AS &quot;mapPoint&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_37_61_t31&quot;
INNER JOIN DB.DBA.RDF_QUAD AS &quot;s_37_61_t32&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_37_61_t31&quot;.&quot;S&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_8_3_t0&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_8_3_t0&quot;.&quot;O&quot; AS &quot;title&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_8_3_t0&quot;
WHERE
&quot;s_8_3_t0&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_8_3_t0&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://purl.org/dc/terms/title&#39; , 1))) AS &quot;s_8_3&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_8_3&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_8_3&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_9_5_t1&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_9_5_t1&quot;.&quot;O&quot; AS &quot;description&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_9_5_t1&quot;
WHERE
&quot;s_9_5_t1&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_9_5_t1&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://purl.org/dc/terms/description&#39; , 1))) AS &quot;s_9_5&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_9_5&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_9_5&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_10_7_t2&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_10_7_t2&quot;.&quot;O&quot; AS &quot;address&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_10_7_t2&quot;
WHERE
&quot;s_10_7_t2&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_10_7_t2&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://schema.org/address&#39; , 1))) AS &quot;s_10_7&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_10_7&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_10_7&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_11_9_t3&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_11_9_t3&quot;.&quot;O&quot; AS &quot;images&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_11_9_t3&quot;
WHERE
&quot;s_11_9_t3&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_11_9_t3&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/images&#39; , 1))) AS &quot;s_11_9&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_11_9&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_11_9&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_12_11_t4&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_12_11_t4&quot;.&quot;O&quot; AS &quot;annuity&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_12_11_t4&quot;
WHERE
&quot;s_12_11_t4&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_12_11_t4&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/annuity&#39; , 1))) AS &quot;s_12_11&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_12_11&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_12_11&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_13_13_t5&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_13_13_t5&quot;.&quot;O&quot; AS &quot;energyLevel&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_13_13_t5&quot;
WHERE
&quot;s_13_13_t5&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_13_13_t5&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/energyLevel&#39; , 1))) AS &quot;s_13_13&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_13_13&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_13_13&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_14_15_t6&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_14_15_t6&quot;.&quot;O&quot; AS &quot;floor&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_14_15_t6&quot;
WHERE
&quot;s_14_15_t6&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_14_15_t6&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/floor&#39; , 1))) AS &quot;s_14_15&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_14_15&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_14_15&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_15_17_t7&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_15_17_t7&quot;.&quot;O&quot; AS &quot;floorArea&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_15_17_t7&quot;
WHERE
&quot;s_15_17_t7&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_15_17_t7&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/floorArea&#39; , 1))) AS &quot;s_15_17&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_15_17&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_15_17&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_16_19_t8&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_16_19_t8&quot;.&quot;O&quot; AS &quot;usableArea&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_16_19_t8&quot;
WHERE
&quot;s_16_19_t8&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_16_19_t8&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/usableArea&#39; , 1))) AS &quot;s_16_19&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_16_19&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_16_19&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_17_21_t9&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_17_21_t9&quot;.&quot;O&quot; AS &quot;layout&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_17_21_t9&quot;
WHERE
&quot;s_17_21_t9&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_17_21_t9&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/layout&#39; , 1))) AS &quot;s_17_21&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_17_21&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_17_21&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_18_23_t10&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_18_23_t10&quot;.&quot;O&quot; AS &quot;state&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_18_23_t10&quot;
WHERE
&quot;s_18_23_t10&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_18_23_t10&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/state&#39; , 1))) AS &quot;s_18_23&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_18_23&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_18_23&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_19_25_t11&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_19_25_t11&quot;.&quot;O&quot; AS &quot;mapLat&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_19_25_t11&quot;
WHERE
&quot;s_19_25_t11&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_19_25_t11&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://www.w3.org/2003/01/geo/wgs84_pos#lat&#39; , 1))) AS &quot;s_19_25&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_19_25&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_19_25&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_20_27_t12&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_20_27_t12&quot;.&quot;O&quot; AS &quot;mapLon&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_20_27_t12&quot;
WHERE
&quot;s_20_27_t12&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_20_27_t12&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://www.w3.org/2003/01/geo/wgs84_pos#long&#39; , 1))) AS &quot;s_20_27&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_20_27&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_20_27&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_21_29_t13&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_21_29_t13&quot;.&quot;O&quot; AS &quot;monthlyFees&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_21_29_t13&quot;
WHERE
&quot;s_21_29_t13&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_21_29_t13&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/monthlyFees&#39; , 1))) AS &quot;s_21_29&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_21_29&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_21_29&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_22_31_t14&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_22_31_t14&quot;.&quot;O&quot; AS &quot;ownership&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_22_31_t14&quot;
WHERE
&quot;s_22_31_t14&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_22_31_t14&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/ownership&#39; , 1))) AS &quot;s_22_31&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_22_31&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_22_31&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_23_33_t15&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_23_33_t15&quot;.&quot;O&quot; AS &quot;price&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_23_33_t15&quot;
WHERE
&quot;s_23_33_t15&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_23_33_t15&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/price&#39; , 1))) AS &quot;s_23_33&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_23_33&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_23_33&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_24_35_t16&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_24_35_t16&quot;.&quot;O&quot; AS &quot;structure&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_24_35_t16&quot;
WHERE
&quot;s_24_35_t16&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_24_35_t16&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/structure&#39; , 1))) AS &quot;s_24_35&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_24_35&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_24_35&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_25_37_t17&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_25_37_t17&quot;.&quot;O&quot; AS &quot;unitType&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_25_37_t17&quot;
WHERE
&quot;s_25_37_t17&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_25_37_t17&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/unitType&#39; , 1))) AS &quot;s_25_37&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_25_37&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_25_37&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_26_39_t18&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_26_39_t18&quot;.&quot;O&quot; AS &quot;source&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_26_39_t18&quot;
WHERE
&quot;s_26_39_t18&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_26_39_t18&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/source&#39; , 1))) AS &quot;s_26_39&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_26_39&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_26_39&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_27_41_t19&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_27_41_t19&quot;.&quot;O&quot; AS &quot;hasCellar&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_27_41_t19&quot;
WHERE
&quot;s_27_41_t19&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_27_41_t19&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/hasCellar&#39; , 1))) AS &quot;s_27_41&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_27_41&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_27_41&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_28_43_t20&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_28_43_t20&quot;.&quot;O&quot; AS &quot;hasLift&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_28_43_t20&quot;
WHERE
&quot;s_28_43_t20&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_28_43_t20&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/hasLift&#39; , 1))) AS &quot;s_28_43&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_28_43&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_28_43&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_29_45_t21&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_29_45_t21&quot;.&quot;O&quot; AS &quot;hasParking&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_29_45_t21&quot;
WHERE
&quot;s_29_45_t21&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_29_45_t21&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/hasParking&#39; , 1))) AS &quot;s_29_45&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_29_45&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_29_45&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_30_47_t22&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_30_47_t22&quot;.&quot;O&quot; AS &quot;hasTerrace&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_30_47_t22&quot;
WHERE
&quot;s_30_47_t22&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_30_47_t22&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/hasTerrace&#39; , 1))) AS &quot;s_30_47&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_30_47&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_30_47&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_31_49_t23&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_31_49_t23&quot;.&quot;O&quot; AS &quot;isAuction&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_31_49_t23&quot;
WHERE
&quot;s_31_49_t23&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_31_49_t23&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/isAuction&#39; , 1))) AS &quot;s_31_49&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_31_49&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_31_49&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_32_51_t24&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_32_51_t24&quot;.&quot;O&quot; AS &quot;isLastFloor&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_32_51_t24&quot;
WHERE
&quot;s_32_51_t24&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_32_51_t24&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/isLastFloor&#39; , 1))) AS &quot;s_32_51&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_32_51&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_32_51&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_33_53_t25&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_33_53_t25&quot;.&quot;O&quot; AS &quot;withEquipment&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_33_53_t25&quot;
WHERE
&quot;s_33_53_t25&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_33_53_t25&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/withEquipment&#39; , 1))) AS &quot;s_33_53&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_33_53&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_33_53&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_34_55_t26&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_34_55_t26&quot;.&quot;O&quot; AS &quot;createdAt&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_34_55_t26&quot;
WHERE
&quot;s_34_55_t26&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_34_55_t26&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://purl.org/dc/terms/created&#39; , 1))) AS &quot;s_34_55&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_34_55&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_34_55&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_35_57_t27&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_35_57_t27&quot;.&quot;O&quot; AS &quot;updatedAt&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_35_57_t27&quot;
WHERE
&quot;s_35_57_t27&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_35_57_t27&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://purl.org/dc/terms/modified&#39; , 1))) AS &quot;s_35_57&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_35_57&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_35_57&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_36_59_t28&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_36_59_t28&quot;.&quot;O&quot; AS &quot;sourceUpdatedAt&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_36_59_t28&quot;
WHERE
&quot;s_36_59_t28&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_36_59_t28&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/sourceModified&#39; , 1))) AS &quot;s_36_59&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_36_59&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_36_59&quot;.&quot;entity&quot;)
WHERE
&quot;s_37_61_t31&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_37_61_t31&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://www.w3.org/1999/02/22-rdf-syntax-ns#type&#39; , 1))
AND
&quot;s_37_61_t31&quot;.&quot;O&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/RealEstate&#39; , 1))
AND
&quot;s_37_61_t32&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_37_61_t32&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://purl.org/dc/terms/identifier&#39; , 1))
OPTION (QUIETCAST)
) AS &quot;s_37_90&quot;
WHERE
EXISTS ( (
SELECT TOP 1 1 AS __ask_retval
FROM DB.DBA.RDF_QUAD AS &quot;s_53_100_t36&quot;
INNER JOIN DB.DBA.RDF_QUAD AS &quot;s_53_100_t37&quot;
ON (
&quot;s_53_100_t36&quot;.&quot;S&quot; = &quot;s_53_100_t37&quot;.&quot;S&quot;)
INNER JOIN DB.DBA.RDF_QUAD AS &quot;s_53_100_t38&quot;
ON (
&quot;s_53_100_t36&quot;.&quot;S&quot; = &quot;s_53_100_t38&quot;.&quot;S&quot;
AND
&quot;s_53_100_t37&quot;.&quot;S&quot; = &quot;s_53_100_t38&quot;.&quot;S&quot;)
WHERE
&quot;s_53_100_t36&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/osm/cze/prague&#39; , 1))
AND
&quot;s_53_100_t36&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://www.w3.org/1999/02/22-rdf-syntax-ns#type&#39; , 1))
AND
&quot;s_53_100_t36&quot;.&quot;O&quot; = __i2idn ( __bft( &#39;https://www.openstreetmap.org/node&#39; , 1))
AND
&quot;s_53_100_t37&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/osm/cze/prague&#39; , 1))
AND
&quot;s_53_100_t37&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://www.opengis.net/ont/geosparql#hasGeometry&#39; , 1))
AND
&quot;s_53_100_t38&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/osm/cze/prague&#39; , 1))
AND
&quot;s_53_100_t38&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;https://www.openstreetmap.org/wiki/Key:amenity&#39; , 1))
AND
&quot;s_53_100_t38&quot;.&quot;O&quot; = DB.DBA.RDF_OBJ_OF_SQLVAL ( &#39;restaurant&#39; )
AND
not ( EXISTS ( (
SELECT TOP 1 1 AS __ask_retval
FROM DB.DBA.RDF_QUAD AS &quot;s_52_98_t33&quot;
INNER JOIN DB.DBA.RDF_QUAD AS &quot;s_52_98_t34&quot;
ON (1)
INNER JOIN DB.DBA.RDF_QUAD AS &quot;s_52_98_t35&quot;
ON (1)
WHERE
&quot;s_52_98_t33&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/osm/cze/prague&#39; , 1))
AND
&quot;s_52_98_t33&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://www.w3.org/1999/02/22-rdf-syntax-ns#type&#39; , 1))
AND
&quot;s_52_98_t33&quot;.&quot;O&quot; = __i2idn ( __bft( &#39;https://www.openstreetmap.org/node&#39; , 1))
AND
&quot;s_52_98_t34&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/osm/cze/prague&#39; , 1))
AND
&quot;s_52_98_t34&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://www.opengis.net/ont/geosparql#hasGeometry&#39; , 1))
AND
&quot;s_52_98_t35&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/osm/cze/prague&#39; , 1))
AND
&quot;s_52_98_t35&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;https://www.openstreetmap.org/wiki/Key:amenity&#39; , 1))
AND
&quot;s_52_98_t35&quot;.&quot;O&quot; = DB.DBA.RDF_OBJ_OF_SQLVAL ( &#39;restaurant&#39; )
AND
&quot;s_52_98_t33&quot;.&quot;S&quot; = &quot;s_53_100_t38&quot;.&quot;S&quot;
AND
&quot;s_52_98_t34&quot;.&quot;S&quot; = &quot;s_53_100_t38&quot;.&quot;S&quot;
AND
&quot;s_52_98_t35&quot;.&quot;S&quot; = &quot;s_53_100_t38&quot;.&quot;S&quot;
AND
&quot;s_52_98_t34&quot;.&quot;O&quot; = &quot;s_53_100_t37&quot;.&quot;O&quot;
AND
( 500 &lt; &quot;http://www.opengis.net/def/function/geosparql/distance&quot; (
&quot;s_37_90&quot;.&quot;mapPoint&quot;,
__ro2sq ( &quot;s_53_100_t37&quot;.&quot;O&quot;),
__bft ( __bft( &#39;http://www.opengis.net/def/uom/OGC/1.0/metre&#39; , 1), 1)))
OPTION (QUIETCAST)
)))
OPTION (QUIETCAST)
))
GROUP BY &quot;s_37_90&quot;.&quot;sourceUpdatedAt&quot;, &quot;s_37_90&quot;.&quot;updatedAt&quot;, &quot;s_37_90&quot;.&quot;createdAt&quot;, &quot;s_37_90&quot;.&quot;withEquipment&quot;, &quot;s_37_90&quot;.&quot;isLastFloor&quot;, &quot;s_37_90&quot;.&quot;isAuction&quot;, &quot;s_37_90&quot;.&quot;hasTerrace&quot;, &quot;s_37_90&quot;.&quot;hasParking&quot;, &quot;s_37_90&quot;.&quot;hasLift&quot;, &quot;s_37_90&quot;.&quot;hasCellar&quot;, &quot;s_37_90&quot;.&quot;source&quot;, &quot;s_37_90&quot;.&quot;unitType&quot;, &quot;s_37_90&quot;.&quot;structure&quot;, &quot;s_37_90&quot;.&quot;price&quot;, &quot;s_37_90&quot;.&quot;ownership&quot;, &quot;s_37_90&quot;.&quot;monthlyFees&quot;, &quot;s_37_90&quot;.&quot;mapLon&quot;, &quot;s_37_90&quot;.&quot;mapLat&quot;, &quot;s_37_90&quot;.&quot;state&quot;, &quot;s_37_90&quot;.&quot;layout&quot;, &quot;s_37_90&quot;.&quot;usableArea&quot;, &quot;s_37_90&quot;.&quot;floorArea&quot;, &quot;s_37_90&quot;.&quot;floor&quot;, &quot;s_37_90&quot;.&quot;energyLevel&quot;, &quot;s_37_90&quot;.&quot;annuity&quot;, &quot;s_37_90&quot;.&quot;address&quot;, &quot;s_37_90&quot;.&quot;description&quot;, &quot;s_37_90&quot;.&quot;title&quot;, &quot;s_37_90&quot;.&quot;id&quot;
OPTION (QUIETCAST)) AS &quot;s_56_103_rbc&quot;</code></pre>
<h5>SQL execution plan</h5>
<p>
<pre class="text-monospace example"><code> {
Precode:
0: __rdflit$27 := Call __rdflit (rdflit10039)
5: BReturn 0
Subquery 29
{
fork {
RDF_QUAD 1.1e+04 rows(t65.S$63, t65.O$62)
inlined P = IRI_ID&quot;...identifier&quot; G = IRI_ID&quot;...sell&quot;
RDF_QUAD unq 0.8 rows (t64.S$66)
inlined P = IRI_ID&quot;...type&quot; , S = t65.S$63 , O = IRI_ID&quot;...RealEstate&quot; , G = IRI_ID&quot;...sell&quot;
Precode:
0: __ro2sq$68 := Call __ro2sq (t65.O$62)
5: BReturn 0
outer {
RDF_QUAD 1 rows(t80.O$71)
inlined P = IRI_ID&quot;...ownership&quot; , S = k_t65.S$706 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$74
out: (t80.O$71)
shadow: ( &lt;none&gt; )
Precode:
0: __ro2sq$83 := Call __ro2sq (t80.O$71)
5: BReturn 0
outer {
RDF_QUAD 1 rows(t66.O$86)
inlined P = IRI_ID&quot;...title&quot; , S = k_t65.S$725 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$89
out: (t66.O$86)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t67.O$99)
inlined P = IRI_ID&quot;...description&quot; , S = k_t65.S$744 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$102
out: (t67.O$99)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t71.O$112)
inlined P = IRI_ID&quot;...energyLevel&quot; , S = k_t65.S$763 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$115
out: (t71.O$112)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t72.O$125)
inlined P = IRI_ID&quot;...vocabulary/floor&quot; , S = k_t65.S$782 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$128
out: (t72.O$125)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t73.O$138)
inlined P = IRI_ID&quot;...floorArea&quot; , S = k_t65.S$801 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$141
out: (t73.O$138)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t74.O$151)
inlined P = IRI_ID&quot;...usableArea&quot; , S = k_t65.S$820 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$154
out: (t74.O$151)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t75.O$164)
inlined P = IRI_ID&quot;...vocabulary/layout&quot; , S = k_t65.S$839 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$167
out: (t75.O$164)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t76.O$177)
inlined P = IRI_ID&quot;...vocabulary/state&quot; , S = k_t65.S$858 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$180
out: (t76.O$177)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t77.O$190)
inlined P = IRI_ID&quot;...lat&quot; , S = k_t65.S$877 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$193
out: (t77.O$190)
shadow: ( &lt;none&gt; )
Precode:
0: __ro2sq$202 := Call __ro2sq (t77.O$190)
5: BReturn 0
outer {
RDF_QUAD 1 rows(t78.O$205)
inlined P = IRI_ID&quot;...long&quot; , S = k_t65.S$896 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$267
out: (t78.O$205)
shadow: ( &lt;none&gt; )
END Node
After test:
0: if ( {
Precode:
0: __ro2sq$207 := Call __ro2sq (t78.O$205)
5: st_point$209 := Call st_point (__ro2sq$207, __ro2sq$202)
10: BReturn 0
RDF_QUAD_POGS 1.4e+04 rows(t98.S$212)
P = IRI_ID&quot;...amenity&quot; , O = rdflit10039 G = IRI_ID&quot;...prague&quot;
RDF_QUAD 1.3 rows(t97.O$216, t97.S$215)
inlined P = IRI_ID&quot;...hasGeometry&quot; , S = t98.S$212 G = IRI_ID&quot;...prague&quot;
END Node
After test:
0: if ( {
Precode:
0: __ro2sq$218 := Call __ro2sq (t97.O$216)
5: http://www.opengis.net/def/function/geosparql/distance$220 := Call http://www.opengis.net/def/function/geosparql/distance (st_point$209, __ro2sq$218, &lt;tag 182 flag 1 c http://www.opengis.net/def/uom/OGC/1.0/metre&gt;)
10: BReturn 0
RDF_QUAD_POGS unq 1.1e-07 rows ()
P = IRI_ID&quot;...hasGeometry&quot; , O = k_t97.O$943 , S = k_t98.S$947 , G = IRI_ID&quot;...prague&quot;
RDF_QUAD unq 0.038 rows ()
inlined P = IRI_ID&quot;...amenity&quot; , S = k_t98.S$954 , O = rdflit10039 , G = IRI_ID&quot;...prague&quot;
END Node
After test:
0: if ( 500 &lt; http://www.opengis.net/def/function/geosparql/distance$220) then 4 else 5 unkn 5
4: BReturn 1
5: BReturn 0
RDF_QUAD unq 0.8 rows ()
inlined P = IRI_ID&quot;...type&quot; , S = k_t98.S$968 , O = IRI_ID&quot;...node&quot; , G = IRI_ID&quot;...prague&quot;
Subquery Select( &lt;none&gt; )
}
) then 5 else 4 unkn 5
4: BReturn 1
5: BReturn 0
RDF_QUAD unq 0.8 rows ()
inlined P = IRI_ID&quot;...type&quot; , S = k_t98.S$981 , O = IRI_ID&quot;...node&quot; , G = IRI_ID&quot;...prague&quot;
Subquery Select( &lt;none&gt; )
}
) then 4 else 5 unkn 5
4: BReturn 1
5: BReturn 0
outer {
RDF_QUAD 1 rows(t79.O$277)
inlined P = IRI_ID&quot;...monthlyFees&quot; , S = k_t65.S$999 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$280
out: (t79.O$277)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t81.O$290)
inlined P = IRI_ID&quot;...vocabulary/price&quot; , S = k_t65.S$1018 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$293
out: (t81.O$290)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t82.O$303)
inlined P = IRI_ID&quot;...structure&quot; , S = k_t65.S$1037 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$306
out: (t82.O$303)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t70.O$316)
inlined P = IRI_ID&quot;...vocabulary/annuity&quot; , S = k_t65.S$1056 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$319
out: (t70.O$316)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t83.O$329)
inlined P = IRI_ID&quot;...unitType&quot; , S = k_t65.S$1075 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$332
out: (t83.O$329)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t84.O$342)
inlined P = IRI_ID&quot;...vocabulary/source&quot; , S = k_t65.S$1094 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$345
out: (t84.O$342)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t85.O$355)
inlined P = IRI_ID&quot;...hasCellar&quot; , S = k_t65.S$1113 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$358
out: (t85.O$355)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t86.O$368)
inlined P = IRI_ID&quot;...vocabulary/hasLift&quot; , S = k_t65.S$1132 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$371
out: (t86.O$368)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t87.O$381)
inlined P = IRI_ID&quot;...hasParking&quot; , S = k_t65.S$1151 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$384
out: (t87.O$381)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t88.O$394)
inlined P = IRI_ID&quot;...hasTerrace&quot; , S = k_t65.S$1170 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$397
out: (t88.O$394)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t89.O$407)
inlined P = IRI_ID&quot;...isAuction&quot; , S = k_t65.S$1189 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$410
out: (t89.O$407)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t94.O$420)
inlined P = IRI_ID&quot;...sourceModified&quot; , S = k_t65.S$1208 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$423
out: (t94.O$420)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t93.O$433)
inlined P = IRI_ID&quot;...modified&quot; , S = k_t65.S$1227 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$436
out: (t93.O$433)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t92.O$446)
inlined P = IRI_ID&quot;...created&quot; , S = k_t65.S$1246 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$449
out: (t92.O$446)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t91.O$459)
inlined P = IRI_ID&quot;...withEquipment&quot; , S = k_t65.S$1265 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$462
out: (t91.O$459)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t90.O$472)
inlined P = IRI_ID&quot;...isLastFloor&quot; , S = k_t65.S$1284 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$475
out: (t90.O$472)
shadow: ( &lt;none&gt; )
Precode:
0: __ro2sq$484 := Call __ro2sq (t94.O$420)
5: __ro2sq$486 := Call __ro2sq (t93.O$433)
10: __ro2sq$488 := Call __ro2sq (t92.O$446)
15: __ro2sq$490 := Call __ro2sq (t91.O$459)
20: __ro2sq$492 := Call __ro2sq (t89.O$407)
25: __ro2sq$494 := Call __ro2sq (t88.O$394)
30: __ro2sq$496 := Call __ro2sq (t87.O$381)
35: __ro2sq$498 := Call __ro2sq (t86.O$368)
40: __ro2sq$500 := Call __ro2sq (t85.O$355)
45: __ro2sq$502 := Call __ro2sq (t84.O$342)
50: __ro2sq$504 := Call __ro2sq (t83.O$329)
55: __ro2sq$506 := Call __ro2sq (t82.O$303)
60: __ro2sq$508 := Call __ro2sq (t81.O$290)
65: __ro2sq$510 := Call __ro2sq (t79.O$277)
70: __rdf_strsqlval$512 := Call __rdf_strsqlval (t78.O$205, 0 )
75: __rdf_strsqlval$514 := Call __rdf_strsqlval (t77.O$190, 0 )
80: __ro2sq$516 := Call __ro2sq (t76.O$177)
85: __ro2sq$518 := Call __ro2sq (t75.O$164)
90: __ro2sq$520 := Call __ro2sq (t74.O$151)
95: __ro2sq$522 := Call __ro2sq (t73.O$138)
100: __ro2sq$524 := Call __ro2sq (t72.O$125)
105: __ro2sq$526 := Call __ro2sq (t71.O$112)
110: __ro2sq$528 := Call __ro2sq (t70.O$316)
115: __ro2sq$530 := Call __ro2sq (t67.O$99)
120: __ro2sq$532 := Call __ro2sq (t66.O$86)
125: __ro2sq$534 := Call __ro2sq (t90.O$472)
130: BReturn 0
outer {
RDF_QUAD 15 rows(t69.O$537)
inlined P = IRI_ID&quot;...vocabulary/images&quot; , S = k_t65.S$1303 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$540
out: (t69.O$537)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t68.O$550)
inlined P = IRI_ID&quot;...address&quot; , S = k_t65.S$1322 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$553
out: (t68.O$550)
shadow: ( &lt;none&gt; )
Precode:
0: __ro2sq$562 := Call __ro2sq (t69.O$537)
5: BReturn 0
Sort (t94.O$420, t93.O$433, t92.O$446, t91.O$459, t90.O$472, t89.O$407, t88.O$394, t87.O$381, t86.O$368, t85.O$355, t84.O$342, t83.O$329, t82.O$303, t81.O$290, t80.O$71, t79.O$277, t78.O$205, t77.O$190, t76.O$177, t75.O$164, t74.O$151, t73.O$138, t72.O$125, t71.O$112, t70.O$316, t68.O$550, t67.O$99, t66.O$86, t65.O$62) -&gt; (gb_tmp$567 , __ro2sq$484, __ro2sq$486, __ro2sq$488, __ro2sq$490, __ro2sq$534, __ro2sq$492, __ro2sq$494, __ro2sq$496, __ro2sq$498, __ro2sq$500, __ro2sq$502, __ro2sq$504, __ro2sq$506, __ro2sq$508, __ro2sq$83, __ro2sq$510, __rdf_strsqlval$512, __rdf_strsqlval$514, __ro2sq$516, __ro2sq$518, __ro2sq$520, __ro2sq$522, __ro2sq$524, __ro2sq$526, __ro2sq$528, __ro2sq$530, __ro2sq$532, __ro2sq$68)
user aggregate init
0: ua_ret$568 := Call DB.DBA.GROUP_CONCAT_DISTINCT_INIT (gb_tmp$567 )
7: BReturn 0
user aggregate accumulator
0: ua_ret$568 := Call DB.DBA.GROUP_CONCAT_DISTINCT_ACC (gb_tmp$567 , __ro2sq$562, &lt;c ,&gt;)
7: BReturn 0
}
group by read node
(t94.O$420, t93.O$433, t92.O$446, t91.O$459, t90.O$472, t89.O$407, t88.O$394, t87.O$381, t86.O$368, t85.O$355, t84.O$342, t83.O$329, t82.O$303, t81.O$290, t80.O$71, t79.O$277, t78.O$205, t77.O$190, t76.O$177, t75.O$164, t74.O$151, t73.O$138, t72.O$125, t71.O$112, t70.O$316, t68.O$550, t67.O$99, t66.O$86, t65.O$62, aggregate$566, __ro2sq$484, __ro2sq$486, __ro2sq$488, __ro2sq$490, __ro2sq$534, __ro2sq$492, __ro2sq$494, __ro2sq$496, __ro2sq$498, __ro2sq$500, __ro2sq$502, __ro2sq$504, __ro2sq$506, __ro2sq$508, __ro2sq$83, __ro2sq$510, __rdf_strsqlval$512, __rdf_strsqlval$514, __ro2sq$516, __ro2sq$518, __ro2sq$520, __ro2sq$522, __ro2sq$524, __ro2sq$526, __ro2sq$528, __ro2sq$530, __ro2sq$532, __ro2sq$68)
Precode:
0: __ro2sq$585 := Call __ro2sq (t68.O$550)
5: DB.DBA.GROUP_CONCAT_DISTINCT_FIN$587 := Call DB.DBA.GROUP_CONCAT_DISTINCT_FIN (aggregate$566)
12: BReturn 0
Distinct (__ro2sq$68, __ro2sq$532, __ro2sq$530, __ro2sq$585, DB.DBA.GROUP_CONCAT_DISTINCT_FIN$587, __ro2sq$528, __ro2sq$526, __ro2sq$524, __ro2sq$522, __ro2sq$520, __ro2sq$518, __ro2sq$516, __rdf_strsqlval$514, __rdf_strsqlval$512, __ro2sq$510, __ro2sq$83, __ro2sq$508, __ro2sq$506, __ro2sq$504, __ro2sq$502, __ro2sq$500, __ro2sq$498, __ro2sq$496, __ro2sq$494, __ro2sq$492, __ro2sq$534, __ro2sq$490, __ro2sq$488, __ro2sq$486, __ro2sq$484)
skip node 10 &lt;none&gt; set_no$60
After code:
0: id$30 := := artm __ro2sq$68
4: title$31 := := artm __ro2sq$532
8: description$32 := := artm __ro2sq$530
12: address$33 := := artm __ro2sq$585
16: images$34 := := artm DB.DBA.GROUP_CONCAT_DISTINCT_FIN$587
20: annuity$35 := := artm __ro2sq$528
24: energyLevel$36 := := artm __ro2sq$526
28: floor$37 := := artm __ro2sq$524
32: floorArea$38 := := artm __ro2sq$522
36: usableArea$39 := := artm __ro2sq$520
40: layout$40 := := artm __ro2sq$518
44: state$41 := := artm __ro2sq$516
48: mapLat$42 := := artm __rdf_strsqlval$514
52: mapLon$43 := := artm __rdf_strsqlval$512
56: monthlyFees$44 := := artm __ro2sq$510
60: ownership$45 := := artm __ro2sq$83
64: price$46 := := artm __ro2sq$508
68: structure$47 := := artm __ro2sq$506
72: unitType$48 := := artm __ro2sq$504
76: source$49 := := artm __ro2sq$502
80: hasCellar$50 := := artm __ro2sq$500
84: hasLift$51 := := artm __ro2sq$498
88: hasParking$52 := := artm __ro2sq$496
92: hasTerrace$53 := := artm __ro2sq$494
96: isAuction$54 := := artm __ro2sq$492
100: isLastFloor$55 := := artm __ro2sq$534
104: withEquipment$56 := := artm __ro2sq$490
108: createdAt$57 := := artm __ro2sq$488
112: updatedAt$58 := := artm __ro2sq$486
116: sourceUpdatedAt$59 := := artm __ro2sq$484
120: BReturn 0
Subquery Select(id$30, title$31, description$32, address$33, images$34, annuity$35, energyLevel$36, floor$37, floorArea$38, usableArea$39, layout$40, state$41, mapLat$42, mapLon$43, monthlyFees$44, ownership$45, price$46, structure$47, unitType$48, source$49, hasCellar$50, hasLift$51, hasParking$52, hasTerrace$53, isAuction$54, isLastFloor$55, withEquipment$56, createdAt$57, updatedAt$58, sourceUpdatedAt$59)
}
After code:
0: id$605 := Call __ro2sq (id$30)
5: title$607 := Call __ro2sq (title$31)
10: description$609 := Call __ro2sq (description$32)
15: address$611 := Call __ro2sq (address$33)
20: images$613 := Call __ro2sq (images$34)
25: annuity$615 := Call __ro2sq (annuity$35)
30: energyLevel$617 := Call __ro2sq (energyLevel$36)
35: floor$619 := Call __ro2sq (floor$37)
40: floorArea$621 := Call __ro2sq (floorArea$38)
45: usableArea$623 := Call __ro2sq (usableArea$39)
50: layout$625 := Call __ro2sq (layout$40)
55: state$627 := Call __ro2sq (state$41)
60: mapLat$629 := Call __ro2sq (mapLat$42)
65: mapLon$631 := Call __ro2sq (mapLon$43)
70: monthlyFees$633 := Call __ro2sq (monthlyFees$44)
75: ownership$635 := Call __ro2sq (ownership$45)
80: price$637 := Call __ro2sq (price$46)
85: structure$639 := Call __ro2sq (structure$47)
90: unitType$641 := Call __ro2sq (unitType$48)
95: source$643 := Call __ro2sq (source$49)
100: hasCellar$645 := Call __ro2sq (hasCellar$50)
105: hasLift$647 := Call __ro2sq (hasLift$51)
110: hasParking$649 := Call __ro2sq (hasParking$52)
115: hasTerrace$651 := Call __ro2sq (hasTerrace$53)
120: isAuction$653 := Call __ro2sq (isAuction$54)
125: isLastFloor$655 := Call __ro2sq (isLastFloor$55)
130: withEquipment$657 := Call __ro2sq (withEquipment$56)
135: createdAt$659 := Call __ro2sq (createdAt$57)
140: updatedAt$661 := Call __ro2sq (updatedAt$58)
145: sourceUpdatedAt$663 := Call __ro2sq (sourceUpdatedAt$59)
150: BReturn 0
Select (id$605, title$607, description$609, address$611, images$613, annuity$615, energyLevel$617, floor$619, floorArea$621, usableArea$623, layout$625, state$627, mapLat$629, mapLon$631, monthlyFees$633, ownership$635, price$637, structure$639, unitType$641, source$643, hasCellar$645, hasLift$647, hasParking$649, hasTerrace$651, isAuction$653, isLastFloor$655, withEquipment$657, createdAt$659, updatedAt$661, sourceUpdatedAt$663)
}
</code></pre>
<h5>Internal optimizer data</h5>
<p>
<i>These data are primarily for OpenLink support, to get additional details about the query processing.</i>
<pre class="text-monospace example"><code> QUERY: (line 56) REQUEST TOP NODE (SELECT DISTINCT result-mode):
RETVALS: ARRAY OF NODES with 30 children: {
(line 2) VARIABLE: notNULL exported
NAME: UNAME `id&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 600
(line 2) VARIABLE: exported
NAME: UNAME `title&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 601
(line 2) VARIABLE: exported
NAME: UNAME `description&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 602
(line 2) VARIABLE: exported
NAME: UNAME `address&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 603
(line 2) ALIAS:
ALIAS NAME: UNAME `images&#39;
VALUE: (line 2) FUNCALL:
FUNCTION NAME: UNAME `sql:GROUP_CONCAT_DISTINCT&#39;
AGGREGATE MODE: LONG 1
ARGUMENT: (line 2) VARIABLE: exported
NAME: UNAME `images&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 604
ARGUMENT: (line 2) LITERAL:
VALUE: STRING `,&#39;
(line 2) VARIABLE: exported
NAME: UNAME `annuity&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 605
(line 2) VARIABLE: exported
NAME: UNAME `energyLevel&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 606
(line 2) VARIABLE: exported
NAME: UNAME `floor&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 607
(line 2) VARIABLE: exported
NAME: UNAME `floorArea&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 608
(line 2) VARIABLE: exported
NAME: UNAME `usableArea&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 609
(line 2) VARIABLE: exported
NAME: UNAME `layout&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 610
(line 2) VARIABLE: exported
NAME: UNAME `state&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 611
(line 2) ALIAS:
ALIAS NAME: UNAME `mapLat&#39;
VALUE: (line 2) BUILT-IN CALL:str
ARGUMENT: ARRAY OF NODES with 1 children: {
(line 2) VARIABLE: exported
NAME: UNAME `mapLat&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 612
}
(line 2) ALIAS:
ALIAS NAME: UNAME `mapLon&#39;
VALUE: (line 2) BUILT-IN CALL:str
ARGUMENT: ARRAY OF NODES with 1 children: {
(line 2) VARIABLE: exported
NAME: UNAME `mapLon&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 613
}
(line 2) VARIABLE: exported
NAME: UNAME `monthlyFees&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 614
(line 2) VARIABLE: exported
NAME: UNAME `ownership&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 615
(line 2) VARIABLE: exported
NAME: UNAME `price&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 616
(line 2) VARIABLE: exported
NAME: UNAME `structure&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 617
(line 2) VARIABLE: exported
NAME: UNAME `unitType&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 618
(line 2) VARIABLE: exported
NAME: UNAME `source&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 619
(line 2) VARIABLE: exported
NAME: UNAME `hasCellar&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 620
(line 2) VARIABLE: exported
NAME: UNAME `hasLift&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 621
(line 2) VARIABLE: exported
NAME: UNAME `hasParking&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 622
(line 2) VARIABLE: exported
NAME: UNAME `hasTerrace&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 623
(line 2) VARIABLE: exported
NAME: UNAME `isAuction&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 624
(line 2) VARIABLE: exported
NAME: UNAME `isLastFloor&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 625
(line 2) VARIABLE: exported
NAME: UNAME `withEquipment&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 626
(line 2) VARIABLE: exported
NAME: UNAME `createdAt&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 627
(line 2) VARIABLE: exported
NAME: UNAME `updatedAt&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 628
(line 2) VARIABLE: exported
NAME: UNAME `sourceUpdatedAt&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 629
}
RETVALS SELECT ID: STRING `s_56_103&#39;
SOURCES: EMPTY ARRAY
PATTERN: (line 56) GRAPH PATTERN:WHERE gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 37) GRAPH PATTERN:SELECT result-mode
MEMBERS: EMPTY ARRAY
SUBQUERY: (line 37) REQUEST TOP NODE (SELECT result-mode):
VALMODE FOR RETVALS: STRING `AUTO&#39;
RETVALS: ARRAY OF NODES with 32 children: {
(line 0) ALIAS:
ALIAS NAME: UNAME `entity&#39;
VALUE: (line 37) VARIABLE: notNULL reference exported
NAME: UNAME `entity&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 60
(line 0) ALIAS:
ALIAS NAME: UNAME `id&#39;
VALUE: (line 37) VARIABLE: notNULL exported
NAME: UNAME `id&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 61
(line 0) ALIAS:
ALIAS NAME: UNAME `title&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `title&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 62
(line 0) ALIAS:
ALIAS NAME: UNAME `description&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `description&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 63
(line 0) ALIAS:
ALIAS NAME: UNAME `address&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `address&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 64
(line 0) ALIAS:
ALIAS NAME: UNAME `images&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `images&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 65
(line 0) ALIAS:
ALIAS NAME: UNAME `annuity&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `annuity&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 66
(line 0) ALIAS:
ALIAS NAME: UNAME `energyLevel&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `energyLevel&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 67
(line 0) ALIAS:
ALIAS NAME: UNAME `floor&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `floor&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 68
(line 0) ALIAS:
ALIAS NAME: UNAME `floorArea&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `floorArea&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 69
(line 0) ALIAS:
ALIAS NAME: UNAME `usableArea&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `usableArea&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 70
(line 0) ALIAS:
ALIAS NAME: UNAME `layout&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `layout&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 71
(line 0) ALIAS:
ALIAS NAME: UNAME `state&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `state&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 72
(line 0) ALIAS:
ALIAS NAME: UNAME `mapLat&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `mapLat&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 73
(line 0) ALIAS:
ALIAS NAME: UNAME `mapLon&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `mapLon&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 74
(line 0) ALIAS:
ALIAS NAME: UNAME `monthlyFees&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `monthlyFees&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 75
(line 0) ALIAS:
ALIAS NAME: UNAME `ownership&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `ownership&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 76
(line 0) ALIAS:
ALIAS NAME: UNAME `price&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `price&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 77
(line 0) ALIAS:
ALIAS NAME: UNAME `structure&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `structure&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 78
(line 0) ALIAS:
ALIAS NAME: UNAME `unitType&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `unitType&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 79
(line 0) ALIAS:
ALIAS NAME: UNAME `source&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `source&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 80
(line 0) ALIAS:
ALIAS NAME: UNAME `hasCellar&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `hasCellar&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 81
(line 0) ALIAS:
ALIAS NAME: UNAME `hasLift&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `hasLift&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 82
(line 0) ALIAS:
ALIAS NAME: UNAME `hasParking&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `hasParking&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 83
(line 0) ALIAS:
ALIAS NAME: UNAME `hasTerrace&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `hasTerrace&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 84
(line 0) ALIAS:
ALIAS NAME: UNAME `isAuction&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `isAuction&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 85
(line 0) ALIAS:
ALIAS NAME: UNAME `isLastFloor&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `isLastFloor&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 86
(line 0) ALIAS:
ALIAS NAME: UNAME `withEquipment&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `withEquipment&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 87
(line 0) ALIAS:
ALIAS NAME: UNAME `createdAt&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `createdAt&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 88
(line 0) ALIAS:
ALIAS NAME: UNAME `updatedAt&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `updatedAt&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 89
(line 0) ALIAS:
ALIAS NAME: UNAME `sourceUpdatedAt&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `sourceUpdatedAt&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 90
(line 36) ALIAS:
ALIAS NAME: UNAME `mapPoint&#39;
VALUE: (line 36) FUNCALL:
FUNCTION NAME: UNAME `bif:st_point&#39;
ARGUMENT: (line 36) VARIABLE: exported
NAME: UNAME `mapLon&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 74
ARGUMENT: (line 36) VARIABLE: exported
NAME: UNAME `mapLat&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 73
}
RETVALS SELECT ID: STRING `s_37_60&#39;
SOURCES: EMPTY ARRAY
PATTERN: (line 37) GRAPH PATTERN:WHERE gp
MEMBERS: ARRAY OF NODES with 31 children: {
(line 5) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 5) VARIABLE: notNULL+ reference+ exported (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: STRING `s_37_61_t31&#39; EQUIV: LONG 60
PREDICATE: (line 5) QNAME:
IRI: UNAME `http://www.w3.org/1999/02/22-rdf-syntax-ns#type&#39;
OBJECT: (line 5) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/RealEstate&#39;
SELECT ID: STRING `s_37_60&#39;
TABLE ID: STRING `s_37_61_t31&#39;
(line 6) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 6) VARIABLE: notNULL+ reference+ exported (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: STRING `s_37_61_t32&#39; EQUIV: LONG 60
PREDICATE: (line 6) QNAME:
IRI: UNAME `http://purl.org/dc/terms/identifier&#39;
OBJECT: (line 6) VARIABLE: notNULL+ exported (object)
NAME: UNAME `id&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: STRING `s_37_61_t32&#39; EQUIV: LONG 61
SELECT ID: STRING `s_37_60&#39;
TABLE ID: STRING `s_37_61_t32&#39;
(line 8) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 7) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 7) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_8_3&#39; TABLE ID: STRING `s_8_3_t0&#39; EQUIV: LONG 2
PREDICATE: (line 7) QNAME:
IRI: UNAME `http://purl.org/dc/terms/title&#39;
OBJECT: (line 7) VARIABLE: notNULL+ (object)
NAME: UNAME `title&#39; SELECT ID: STRING `s_8_3&#39; TABLE ID: STRING `s_8_3_t0&#39; EQUIV: LONG 3
SELECT ID: STRING `s_8_3&#39;
TABLE ID: STRING `s_8_3_t0&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_8_3&#39;
EQUIVS: 2 3
(line 9) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 8) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 8) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_9_5&#39; TABLE ID: STRING `s_9_5_t1&#39; EQUIV: LONG 4
PREDICATE: (line 8) QNAME:
IRI: UNAME `http://purl.org/dc/terms/description&#39;
OBJECT: (line 8) VARIABLE: notNULL+ (object)
NAME: UNAME `description&#39; SELECT ID: STRING `s_9_5&#39; TABLE ID: STRING `s_9_5_t1&#39; EQUIV: LONG 5
SELECT ID: STRING `s_9_5&#39;
TABLE ID: STRING `s_9_5_t1&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_9_5&#39;
EQUIVS: 4 5
(line 10) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 9) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 9) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_10_7&#39; TABLE ID: STRING `s_10_7_t2&#39; EQUIV: LONG 6
PREDICATE: (line 9) QNAME:
IRI: UNAME `http://schema.org/address&#39;
OBJECT: (line 9) VARIABLE: notNULL+ (object)
NAME: UNAME `address&#39; SELECT ID: STRING `s_10_7&#39; TABLE ID: STRING `s_10_7_t2&#39; EQUIV: LONG 7
SELECT ID: STRING `s_10_7&#39;
TABLE ID: STRING `s_10_7_t2&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_10_7&#39;
EQUIVS: 6 7
(line 11) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 10) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 10) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_11_9&#39; TABLE ID: STRING `s_11_9_t3&#39; EQUIV: LONG 8
PREDICATE: (line 10) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/images&#39;
OBJECT: (line 10) VARIABLE: notNULL+ (object)
NAME: UNAME `images&#39; SELECT ID: STRING `s_11_9&#39; TABLE ID: STRING `s_11_9_t3&#39; EQUIV: LONG 9
SELECT ID: STRING `s_11_9&#39;
TABLE ID: STRING `s_11_9_t3&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_11_9&#39;
EQUIVS: 8 9
(line 12) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 11) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 11) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_12_11&#39; TABLE ID: STRING `s_12_11_t4&#39; EQUIV: LONG 10
PREDICATE: (line 11) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/annuity&#39;
OBJECT: (line 11) VARIABLE: notNULL+ (object)
NAME: UNAME `annuity&#39; SELECT ID: STRING `s_12_11&#39; TABLE ID: STRING `s_12_11_t4&#39; EQUIV: LONG 11
SELECT ID: STRING `s_12_11&#39;
TABLE ID: STRING `s_12_11_t4&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_12_11&#39;
EQUIVS: 10 11
(line 13) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 12) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 12) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_13_13&#39; TABLE ID: STRING `s_13_13_t5&#39; EQUIV: LONG 12
PREDICATE: (line 12) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/energyLevel&#39;
OBJECT: (line 12) VARIABLE: notNULL+ (object)
NAME: UNAME `energyLevel&#39; SELECT ID: STRING `s_13_13&#39; TABLE ID: STRING `s_13_13_t5&#39; EQUIV: LONG 13
SELECT ID: STRING `s_13_13&#39;
TABLE ID: STRING `s_13_13_t5&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_13_13&#39;
EQUIVS: 12 13
(line 14) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 13) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 13) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_14_15&#39; TABLE ID: STRING `s_14_15_t6&#39; EQUIV: LONG 14
PREDICATE: (line 13) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/floor&#39;
OBJECT: (line 13) VARIABLE: notNULL+ (object)
NAME: UNAME `floor&#39; SELECT ID: STRING `s_14_15&#39; TABLE ID: STRING `s_14_15_t6&#39; EQUIV: LONG 15
SELECT ID: STRING `s_14_15&#39;
TABLE ID: STRING `s_14_15_t6&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_14_15&#39;
EQUIVS: 14 15
(line 15) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 14) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 14) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_15_17&#39; TABLE ID: STRING `s_15_17_t7&#39; EQUIV: LONG 16
PREDICATE: (line 14) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/floorArea&#39;
OBJECT: (line 14) VARIABLE: notNULL+ (object)
NAME: UNAME `floorArea&#39; SELECT ID: STRING `s_15_17&#39; TABLE ID: STRING `s_15_17_t7&#39; EQUIV: LONG 17
SELECT ID: STRING `s_15_17&#39;
TABLE ID: STRING `s_15_17_t7&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_15_17&#39;
EQUIVS: 16 17
(line 16) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 15) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 15) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_16_19&#39; TABLE ID: STRING `s_16_19_t8&#39; EQUIV: LONG 18
PREDICATE: (line 15) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/usableArea&#39;
OBJECT: (line 15) VARIABLE: notNULL+ (object)
NAME: UNAME `usableArea&#39; SELECT ID: STRING `s_16_19&#39; TABLE ID: STRING `s_16_19_t8&#39; EQUIV: LONG 19
SELECT ID: STRING `s_16_19&#39;
TABLE ID: STRING `s_16_19_t8&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_16_19&#39;
EQUIVS: 18 19
(line 17) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 16) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 16) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_17_21&#39; TABLE ID: STRING `s_17_21_t9&#39; EQUIV: LONG 20
PREDICATE: (line 16) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/layout&#39;
OBJECT: (line 16) VARIABLE: notNULL+ (object)
NAME: UNAME `layout&#39; SELECT ID: STRING `s_17_21&#39; TABLE ID: STRING `s_17_21_t9&#39; EQUIV: LONG 21
SELECT ID: STRING `s_17_21&#39;
TABLE ID: STRING `s_17_21_t9&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_17_21&#39;
EQUIVS: 20 21
(line 18) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 17) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 17) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_18_23&#39; TABLE ID: STRING `s_18_23_t10&#39; EQUIV: LONG 22
PREDICATE: (line 17) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/state&#39;
OBJECT: (line 17) VARIABLE: notNULL+ (object)
NAME: UNAME `state&#39; SELECT ID: STRING `s_18_23&#39; TABLE ID: STRING `s_18_23_t10&#39; EQUIV: LONG 23
SELECT ID: STRING `s_18_23&#39;
TABLE ID: STRING `s_18_23_t10&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_18_23&#39;
EQUIVS: 22 23
(line 19) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 18) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 18) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_19_25&#39; TABLE ID: STRING `s_19_25_t11&#39; EQUIV: LONG 24
PREDICATE: (line 18) QNAME:
IRI: UNAME `http://www.w3.org/2003/01/geo/wgs84_pos#lat&#39;
OBJECT: (line 18) VARIABLE: notNULL+ (object)
NAME: UNAME `mapLat&#39; SELECT ID: STRING `s_19_25&#39; TABLE ID: STRING `s_19_25_t11&#39; EQUIV: LONG 25
SELECT ID: STRING `s_19_25&#39;
TABLE ID: STRING `s_19_25_t11&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_19_25&#39;
EQUIVS: 24 25
(line 20) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 19) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 19) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_20_27&#39; TABLE ID: STRING `s_20_27_t12&#39; EQUIV: LONG 26
PREDICATE: (line 19) QNAME:
IRI: UNAME `http://www.w3.org/2003/01/geo/wgs84_pos#long&#39;
OBJECT: (line 19) VARIABLE: notNULL+ (object)
NAME: UNAME `mapLon&#39; SELECT ID: STRING `s_20_27&#39; TABLE ID: STRING `s_20_27_t12&#39; EQUIV: LONG 27
SELECT ID: STRING `s_20_27&#39;
TABLE ID: STRING `s_20_27_t12&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_20_27&#39;
EQUIVS: 26 27
(line 21) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 20) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 20) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_21_29&#39; TABLE ID: STRING `s_21_29_t13&#39; EQUIV: LONG 28
PREDICATE: (line 20) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/monthlyFees&#39;
OBJECT: (line 20) VARIABLE: notNULL+ (object)
NAME: UNAME `monthlyFees&#39; SELECT ID: STRING `s_21_29&#39; TABLE ID: STRING `s_21_29_t13&#39; EQUIV: LONG 29
SELECT ID: STRING `s_21_29&#39;
TABLE ID: STRING `s_21_29_t13&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_21_29&#39;
EQUIVS: 28 29
(line 22) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 21) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 21) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_22_31&#39; TABLE ID: STRING `s_22_31_t14&#39; EQUIV: LONG 30
PREDICATE: (line 21) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/ownership&#39;
OBJECT: (line 21) VARIABLE: notNULL+ (object)
NAME: UNAME `ownership&#39; SELECT ID: STRING `s_22_31&#39; TABLE ID: STRING `s_22_31_t14&#39; EQUIV: LONG 31
SELECT ID: STRING `s_22_31&#39;
TABLE ID: STRING `s_22_31_t14&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_22_31&#39;
EQUIVS: 30 31
(line 23) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 22) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 22) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_23_33&#39; TABLE ID: STRING `s_23_33_t15&#39; EQUIV: LONG 32
PREDICATE: (line 22) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/price&#39;
OBJECT: (line 22) VARIABLE: notNULL+ (object)
NAME: UNAME `price&#39; SELECT ID: STRING `s_23_33&#39; TABLE ID: STRING `s_23_33_t15&#39; EQUIV: LONG 33
SELECT ID: STRING `s_23_33&#39;
TABLE ID: STRING `s_23_33_t15&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_23_33&#39;
EQUIVS: 32 33
(line 24) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 23) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 23) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_24_35&#39; TABLE ID: STRING `s_24_35_t16&#39; EQUIV: LONG 34
PREDICATE: (line 23) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/structure&#39;
OBJECT: (line 23) VARIABLE: notNULL+ (object)
NAME: UNAME `structure&#39; SELECT ID: STRING `s_24_35&#39; TABLE ID: STRING `s_24_35_t16&#39; EQUIV: LONG 35
SELECT ID: STRING `s_24_35&#39;
TABLE ID: STRING `s_24_35_t16&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_24_35&#39;
EQUIVS: 34 35
(line 25) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 24) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 24) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_25_37&#39; TABLE ID: STRING `s_25_37_t17&#39; EQUIV: LONG 36
PREDICATE: (line 24) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/unitType&#39;
OBJECT: (line 24) VARIABLE: notNULL+ (object)
NAME: UNAME `unitType&#39; SELECT ID: STRING `s_25_37&#39; TABLE ID: STRING `s_25_37_t17&#39; EQUIV: LONG 37
SELECT ID: STRING `s_25_37&#39;
TABLE ID: STRING `s_25_37_t17&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_25_37&#39;
EQUIVS: 36 37
(line 26) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 25) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 25) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_26_39&#39; TABLE ID: STRING `s_26_39_t18&#39; EQUIV: LONG 38
PREDICATE: (line 25) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/source&#39;
OBJECT: (line 25) VARIABLE: notNULL+ (object)
NAME: UNAME `source&#39; SELECT ID: STRING `s_26_39&#39; TABLE ID: STRING `s_26_39_t18&#39; EQUIV: LONG 39
SELECT ID: STRING `s_26_39&#39;
TABLE ID: STRING `s_26_39_t18&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_26_39&#39;
EQUIVS: 38 39
(line 27) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 26) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 26) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_27_41&#39; TABLE ID: STRING `s_27_41_t19&#39; EQUIV: LONG 40
PREDICATE: (line 26) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/hasCellar&#39;
OBJECT: (line 26) VARIABLE: notNULL+ (object)
NAME: UNAME `hasCellar&#39; SELECT ID: STRING `s_27_41&#39; TABLE ID: STRING `s_27_41_t19&#39; EQUIV: LONG 41
SELECT ID: STRING `s_27_41&#39;
TABLE ID: STRING `s_27_41_t19&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_27_41&#39;
EQUIVS: 40 41
(line 28) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 27) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 27) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_28_43&#39; TABLE ID: STRING `s_28_43_t20&#39; EQUIV: LONG 42
PREDICATE: (line 27) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/hasLift&#39;
OBJECT: (line 27) VARIABLE: notNULL+ (object)
NAME: UNAME `hasLift&#39; SELECT ID: STRING `s_28_43&#39; TABLE ID: STRING `s_28_43_t20&#39; EQUIV: LONG 43
SELECT ID: STRING `s_28_43&#39;
TABLE ID: STRING `s_28_43_t20&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_28_43&#39;
EQUIVS: 42 43
(line 29) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 28) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 28) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_29_45&#39; TABLE ID: STRING `s_29_45_t21&#39; EQUIV: LONG 44
PREDICATE: (line 28) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/hasParking&#39;
OBJECT: (line 28) VARIABLE: notNULL+ (object)
NAME: UNAME `hasParking&#39; SELECT ID: STRING `s_29_45&#39; TABLE ID: STRING `s_29_45_t21&#39; EQUIV: LONG 45
SELECT ID: STRING `s_29_45&#39;
TABLE ID: STRING `s_29_45_t21&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_29_45&#39;
EQUIVS: 44 45
(line 30) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 29) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 29) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_30_47&#39; TABLE ID: STRING `s_30_47_t22&#39; EQUIV: LONG 46
PREDICATE: (line 29) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/hasTerrace&#39;
OBJECT: (line 29) VARIABLE: notNULL+ (object)
NAME: UNAME `hasTerrace&#39; SELECT ID: STRING `s_30_47&#39; TABLE ID: STRING `s_30_47_t22&#39; EQUIV: LONG 47
SELECT ID: STRING `s_30_47&#39;
TABLE ID: STRING `s_30_47_t22&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_30_47&#39;
EQUIVS: 46 47
(line 31) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 30) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 30) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_31_49&#39; TABLE ID: STRING `s_31_49_t23&#39; EQUIV: LONG 48
PREDICATE: (line 30) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/isAuction&#39;
OBJECT: (line 30) VARIABLE: notNULL+ (object)
NAME: UNAME `isAuction&#39; SELECT ID: STRING `s_31_49&#39; TABLE ID: STRING `s_31_49_t23&#39; EQUIV: LONG 49
SELECT ID: STRING `s_31_49&#39;
TABLE ID: STRING `s_31_49_t23&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_31_49&#39;
EQUIVS: 48 49
(line 32) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 31) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 31) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_32_51&#39; TABLE ID: STRING `s_32_51_t24&#39; EQUIV: LONG 50
PREDICATE: (line 31) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/isLastFloor&#39;
OBJECT: (line 31) VARIABLE: notNULL+ (object)
NAME: UNAME `isLastFloor&#39; SELECT ID: STRING `s_32_51&#39; TABLE ID: STRING `s_32_51_t24&#39; EQUIV: LONG 51
SELECT ID: STRING `s_32_51&#39;
TABLE ID: STRING `s_32_51_t24&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_32_51&#39;
EQUIVS: 50 51
(line 33) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 32) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 32) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_33_53&#39; TABLE ID: STRING `s_33_53_t25&#39; EQUIV: LONG 52
PREDICATE: (line 32) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/withEquipment&#39;
OBJECT: (line 32) VARIABLE: notNULL+ (object)
NAME: UNAME `withEquipment&#39; SELECT ID: STRING `s_33_53&#39; TABLE ID: STRING `s_33_53_t25&#39; EQUIV: LONG 53
SELECT ID: STRING `s_33_53&#39;
TABLE ID: STRING `s_33_53_t25&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_33_53&#39;
EQUIVS: 52 53
(line 34) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 33) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 33) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_34_55&#39; TABLE ID: STRING `s_34_55_t26&#39; EQUIV: LONG 54
PREDICATE: (line 33) QNAME:
IRI: UNAME `http://purl.org/dc/terms/created&#39;
OBJECT: (line 33) VARIABLE: notNULL+ (object)
NAME: UNAME `createdAt&#39; SELECT ID: STRING `s_34_55&#39; TABLE ID: STRING `s_34_55_t26&#39; EQUIV: LONG 55
SELECT ID: STRING `s_34_55&#39;
TABLE ID: STRING `s_34_55_t26&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_34_55&#39;
EQUIVS: 54 55
(line 35) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 34) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 34) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_35_57&#39; TABLE ID: STRING `s_35_57_t27&#39; EQUIV: LONG 56
PREDICATE: (line 34) QNAME:
IRI: UNAME `http://purl.org/dc/terms/modified&#39;
OBJECT: (line 34) VARIABLE: notNULL+ (object)
NAME: UNAME `updatedAt&#39; SELECT ID: STRING `s_35_57&#39; TABLE ID: STRING `s_35_57_t27&#39; EQUIV: LONG 57
SELECT ID: STRING `s_35_57&#39;
TABLE ID: STRING `s_35_57_t27&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_35_57&#39;
EQUIVS: 56 57
(line 36) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 35) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 35) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_36_59&#39; TABLE ID: STRING `s_36_59_t28&#39; EQUIV: LONG 58
PREDICATE: (line 35) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/sourceModified&#39;
OBJECT: (line 35) VARIABLE: notNULL+ (object)
NAME: UNAME `sourceUpdatedAt&#39; SELECT ID: STRING `s_36_59&#39; TABLE ID: STRING `s_36_59_t28&#39; EQUIV: LONG 59
SELECT ID: STRING `s_36_59&#39;
TABLE ID: STRING `s_36_59_t28&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_36_59&#39;
EQUIVS: 58 59
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_37_60&#39;
EQUIVS: 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
OFFSET: LONG 0
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_37_90&#39;
EQUIVS: 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584
}
FILTERS: ARRAY OF NODES with 1 children: {
(line 53) GRAPH PATTERN:SELECT result-mode
MEMBERS: EMPTY ARRAY
SUBQUERY: (line 53) REQUEST TOP NODE (ASK result-mode):
VALMODE FOR RETVALS: STRING `AUTO&#39;
RETVALS: EMPTY ARRAY
RETVALS SELECT ID: STRING `s_53_100&#39;
SOURCES: EMPTY ARRAY
PATTERN: (line 53) GRAPH PATTERN:WHERE gp
MEMBERS: ARRAY OF NODES with 3 children: {
(line 41) TRIPLE:
GRAPH: (line 38) QNAME:
IRI: UNAME `http://reality-maker.cz/osm/cze/prague&#39;
SUBJECT: (line 41) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `amenityIRI&#39; SELECT ID: STRING `s_53_100&#39; TABLE ID: STRING `s_53_100_t36&#39; EQUIV: LONG 585
PREDICATE: (line 41) QNAME:
IRI: UNAME `http://www.w3.org/1999/02/22-rdf-syntax-ns#type&#39;
OBJECT: (line 41) QNAME:
IRI: UNAME `https://www.openstreetmap.org/node&#39;
SELECT ID: STRING `s_53_100&#39;
TABLE ID: STRING `s_53_100_t36&#39;
(line 42) TRIPLE:
GRAPH: (line 38) QNAME:
IRI: UNAME `http://reality-maker.cz/osm/cze/prague&#39;
SUBJECT: (line 41) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `amenityIRI&#39; SELECT ID: STRING `s_53_100&#39; TABLE ID: STRING `s_53_100_t37&#39; EQUIV: LONG 585
PREDICATE: (line 42) QNAME:
IRI: UNAME `http://www.opengis.net/ont/geosparql#hasGeometry&#39;
OBJECT: (line 42) VARIABLE: notNULL+ (object)
NAME: UNAME `amenityGeo&#39; SELECT ID: STRING `s_53_100&#39; TABLE ID: STRING `s_53_100_t37&#39; EQUIV: LONG 586
SELECT ID: STRING `s_53_100&#39;
TABLE ID: STRING `s_53_100_t37&#39;
(line 43) TRIPLE:
GRAPH: (line 38) QNAME:
IRI: UNAME `http://reality-maker.cz/osm/cze/prague&#39;
SUBJECT: (line 41) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `amenityIRI&#39; SELECT ID: STRING `s_53_100&#39; TABLE ID: STRING `s_53_100_t38&#39; EQUIV: LONG 585
PREDICATE: (line 43) QNAME:
IRI: UNAME `https://www.openstreetmap.org/wiki/Key:amenity&#39;
OBJECT: (line 43) LITERAL:
VALUE: STRING `restaurant&#39;
SELECT ID: STRING `s_53_100&#39;
TABLE ID: STRING `s_53_100_t38&#39;
}
FILTERS: ARRAY OF NODES with 1 children: {
(line 52) OPERATOR EXPRESSION (boolean operation &#39;NOT&#39;):
LEFT: (line 52) GRAPH PATTERN:SELECT result-mode
MEMBERS: EMPTY ARRAY
SUBQUERY: (line 52) REQUEST TOP NODE (ASK result-mode):
VALMODE FOR RETVALS: STRING `AUTO&#39;
RETVALS: EMPTY ARRAY
RETVALS SELECT ID: STRING `s_52_98&#39;
SOURCES: EMPTY ARRAY
PATTERN: (line 52) GRAPH PATTERN:WHERE gp
MEMBERS: ARRAY OF NODES with 3 children: {
(line 46) TRIPLE:
GRAPH: (line 38) QNAME:
IRI: UNAME `http://reality-maker.cz/osm/cze/prague&#39;
SUBJECT: (line 46) VARIABLE: EXTERNAL notNULL+ reference+ (subject)
NAME: UNAME `amenityIRI&#39; SELECT ID: STRING `s_52_98&#39; TABLE ID: STRING `s_52_98_t33&#39; EQUIV: LONG 587
PREDICATE: (line 46) QNAME:
IRI: UNAME `http://www.w3.org/1999/02/22-rdf-syntax-ns#type&#39;
OBJECT: (line 46) QNAME:
IRI: UNAME `https://www.openstreetmap.org/node&#39;
SELECT ID: STRING `s_52_98&#39;
TABLE ID: STRING `s_52_98_t33&#39;
(line 47) TRIPLE:
GRAPH: (line 38) QNAME:
IRI: UNAME `http://reality-maker.cz/osm/cze/prague&#39;
SUBJECT: (line 46) VARIABLE: EXTERNAL notNULL+ reference+ (subject)
NAME: UNAME `amenityIRI&#39; SELECT ID: STRING `s_52_98&#39; TABLE ID: STRING `s_52_98_t34&#39; EQUIV: LONG 587
PREDICATE: (line 47) QNAME:
IRI: UNAME `http://www.opengis.net/ont/geosparql#hasGeometry&#39;
OBJECT: (line 47) VARIABLE: EXTERNAL notNULL+ (object)
NAME: UNAME `amenityGeo&#39; SELECT ID: STRING `s_52_98&#39; TABLE ID: STRING `s_52_98_t34&#39; EQUIV: LONG 588
SELECT ID: STRING `s_52_98&#39;
TABLE ID: STRING `s_52_98_t34&#39;
(line 48) TRIPLE:
GRAPH: (line 38) QNAME:
IRI: UNAME `http://reality-maker.cz/osm/cze/prague&#39;
SUBJECT: (line 46) VARIABLE: EXTERNAL notNULL+ reference+ (subject)
NAME: UNAME `amenityIRI&#39; SELECT ID: STRING `s_52_98&#39; TABLE ID: STRING `s_52_98_t35&#39; EQUIV: LONG 587
PREDICATE: (line 48) QNAME:
IRI: UNAME `https://www.openstreetmap.org/wiki/Key:amenity&#39;
OBJECT: (line 48) LITERAL:
VALUE: STRING `restaurant&#39;
SELECT ID: STRING `s_52_98&#39;
TABLE ID: STRING `s_52_98_t35&#39;
}
FILTERS: ARRAY OF NODES with 1 children: {
(line 50) OPERATOR EXPRESSION (boolean operation &#39;&lt;&#39;):
LEFT: (line 50) LITERAL:
VALUE: LONG 500
DATATYPE: UNAME `http://www.w3.org/2001/XMLSchema#integer&#39;
RIGHT: (line 50) FUNCALL:
FUNCTION NAME: UNAME `bif:http://www.opengis.net/def/function/geosparql/distance&#39;
ARGUMENT: (line 50) VARIABLE: EXTERNAL always-NULL
NAME: UNAME `mapPoint&#39; SELECT ID: STRING `s_52_98&#39; TABLE ID: LONG 0 EQUIV: LONG 589
ARGUMENT: (line 50) VARIABLE: EXTERNAL notNULL
NAME: UNAME `amenityGeo&#39; SELECT ID: STRING `s_52_98&#39; TABLE ID: LONG 0 EQUIV: LONG 588
ARGUMENT: (line 50) QNAME:
IRI: UNAME `http://www.opengis.net/def/uom/OGC/1.0/metre&#39;
}
SELECT ID: STRING `s_52_98&#39;
EQUIVS: 587 588 589
LIMIT: LONG 1
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_52_99&#39;
EQUIVS: 590 592 593
}
SELECT ID: STRING `s_53_100&#39;
EQUIVS: 585 586 591
LIMIT: LONG 1
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_53_101&#39;
EQUIVS: 594 596 598
}
SELECT ID: STRING `s_56_103&#39;
EQUIVS: 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 667
GROUPINGS: ARRAY OF NODES with 29 children: {
(line 56) VARIABLE: exported
NAME: UNAME `sourceUpdatedAt&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 629
(line 56) VARIABLE: exported
NAME: UNAME `updatedAt&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 628
(line 56) VARIABLE: exported
NAME: UNAME `createdAt&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 627
(line 56) VARIABLE: exported
NAME: UNAME `withEquipment&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 626
(line 56) VARIABLE: exported
NAME: UNAME `isLastFloor&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 625
(line 56) VARIABLE: exported
NAME: UNAME `isAuction&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 624
(line 56) VARIABLE: exported
NAME: UNAME `hasTerrace&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 623
(line 56) VARIABLE: exported
NAME: UNAME `hasParking&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 622
(line 56) VARIABLE: exported
NAME: UNAME `hasLift&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 621
(line 56) VARIABLE: exported
NAME: UNAME `hasCellar&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 620
(line 56) VARIABLE: exported
NAME: UNAME `source&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 619
(line 56) VARIABLE: exported
NAME: UNAME `unitType&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 618
(line 56) VARIABLE: exported
NAME: UNAME `structure&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 617
(line 56) VARIABLE: exported
NAME: UNAME `price&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 616
(line 56) VARIABLE: exported
NAME: UNAME `ownership&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 615
(line 56) VARIABLE: exported
NAME: UNAME `monthlyFees&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 614
(line 56) VARIABLE: exported
NAME: UNAME `mapLon&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 613
(line 56) VARIABLE: exported
NAME: UNAME `mapLat&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 612
(line 56) VARIABLE: exported
NAME: UNAME `state&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 611
(line 56) VARIABLE: exported
NAME: UNAME `layout&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 610
(line 56) VARIABLE: exported
NAME: UNAME `usableArea&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 609
(line 56) VARIABLE: exported
NAME: UNAME `floorArea&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 608
(line 56) VARIABLE: exported
NAME: UNAME `floor&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 607
(line 56) VARIABLE: exported
NAME: UNAME `energyLevel&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 606
(line 56) VARIABLE: exported
NAME: UNAME `annuity&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 605
(line 56) VARIABLE: exported
NAME: UNAME `address&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 603
(line 56) VARIABLE: exported
NAME: UNAME `description&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 602
(line 56) VARIABLE: exported
NAME: UNAME `title&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 601
(line 56) VARIABLE: notNULL exported
NAME: UNAME `id&#39; SELECT ID: STRING `s_56_103&#39; TABLE ID: LONG 0 EQUIV: LONG 600
}
LIMIT: LONG 10
EQUIVS:
#0: merged and destroyed
#1: merged and destroyed
#2: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_8_3_t0; notNULL reference)
#3: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: title in s_8_3_t0; notNULL)
#4: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_9_5_t1; notNULL reference)
#5: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: description in s_9_5_t1; notNULL)
#6: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_10_7_t2; notNULL reference)
#7: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: address in s_10_7_t2; notNULL)
#8: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_11_9_t3; notNULL reference)
#9: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: images in s_11_9_t3; notNULL)
#10: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_12_11_t4; notNULL reference)
#11: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: annuity in s_12_11_t4; notNULL)
#12: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_13_13_t5; notNULL reference)
#13: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: energyLevel in s_13_13_t5; notNULL)
#14: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_14_15_t6; notNULL reference)
#15: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: floor in s_14_15_t6; notNULL)
#16: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_15_17_t7; notNULL reference)
#17: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: floorArea in s_15_17_t7; notNULL)
#18: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_16_19_t8; notNULL reference)
#19: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: usableArea in s_16_19_t8; notNULL)
#20: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_17_21_t9; notNULL reference)
#21: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: layout in s_17_21_t9; notNULL)
#22: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_18_23_t10; notNULL reference)
#23: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: state in s_18_23_t10; notNULL)
#24: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_19_25_t11; notNULL reference)
#25: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: mapLat in s_19_25_t11; notNULL)
#26: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_20_27_t12; notNULL reference)
#27: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: mapLon in s_20_27_t12; notNULL)
#28: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_21_29_t13; notNULL reference)
#29: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: monthlyFees in s_21_29_t13; notNULL)
#30: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_22_31_t14; notNULL reference)
#31: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: ownership in s_22_31_t14; notNULL)
#32: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_23_33_t15; notNULL reference)
#33: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: price in s_23_33_t15; notNULL)
#34: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_24_35_t16; notNULL reference)
#35: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: structure in s_24_35_t16; notNULL)
#36: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_25_37_t17; notNULL reference)
#37: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: unitType in s_25_37_t17; notNULL)
#38: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_26_39_t18; notNULL reference)
#39: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: source in s_26_39_t18; notNULL)
#40: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_27_41_t19; notNULL reference)
#41: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: hasCellar in s_27_41_t19; notNULL)
#42: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_28_43_t20; notNULL reference)
#43: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: hasLift in s_28_43_t20; notNULL)
#44: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_29_45_t21; notNULL reference)
#45: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: hasParking in s_29_45_t21; notNULL)
#46: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_30_47_t22; notNULL reference)
#47: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: hasTerrace in s_30_47_t22; notNULL)
#48: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_31_49_t23; notNULL reference)
#49: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: isAuction in s_31_49_t23; notNULL)
#50: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_32_51_t24; notNULL reference)
#51: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: isLastFloor in s_32_51_t24; notNULL)
#52: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_33_53_t25; notNULL reference)
#53: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: withEquipment in s_33_53_t25; notNULL)
#54: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_34_55_t26; notNULL reference)
#55: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: createdAt in s_34_55_t26; notNULL)
#56: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_35_57_t27; notNULL reference)
#57: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: updatedAt in s_35_57_t27; notNULL)
#58: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_36_59_t28; notNULL reference)
#59: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: sourceUpdatedAt in s_36_59_t28; notNULL)
#60: ( 29 subv (29 bindings, 29 nest.opt.), 0 recv, 2 gspo, 1 const, 0 opt, 0 subq: entity in s_37_60 s_37_61_t32 s_37_61_t31; notNULL reference exported)
#61: ( 0 subv (0 bindings, 0 nest.opt.), 0 recv, 1 gspo, 1 const, 0 opt, 0 subq: id in s_37_60 s_37_61_t32; notNULL exported)
#62: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: title in s_37_60; exported)
#63: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: description in s_37_60; exported)
#64: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: address in s_37_60; exported)
#65: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: images in s_37_60; exported)
#66: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: annuity in s_37_60; exported)
#67: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: energyLevel in s_37_60; exported)
#68: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: floor in s_37_60; exported)
#69: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: floorArea in s_37_60; exported)
#70: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: usableArea in s_37_60; exported)
#71: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: layout in s_37_60; exported)
#72: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: state in s_37_60; exported)
#73: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: mapLat in s_37_60 s_37_60; exported)
#74: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: mapLon in s_37_60 s_37_60; exported)
#75: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: monthlyFees in s_37_60; exported)
#76: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: ownership in s_37_60; exported)
#77: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: price in s_37_60; exported)
#78: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: structure in s_37_60; exported)
#79: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: unitType in s_37_60; exported)
#80: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: source in s_37_60; exported)
#81: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: hasCellar in s_37_60; exported)
#82: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: hasLift in s_37_60; exported)
#83: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: hasParking in s_37_60; exported)
#84: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: hasTerrace in s_37_60; exported)
#85: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: isAuction in s_37_60; exported)
#86: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: isLastFloor in s_37_60; exported)
#87: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: withEquipment in s_37_60; exported)
#88: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: createdAt in s_37_60; exported)
#89: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: updatedAt in s_37_60; exported)
#90: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: sourceUpdatedAt in s_37_60; exported)
#91: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: entity in; notNULL reference)
#92: merged and destroyed
#93: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: entity in; notNULL reference)
#94: merged and destroyed
#95: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: entity in; notNULL reference)
#96: merged and destroyed
#97: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: entity in; notNULL reference)
#98: merged and destroyed
#99: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: entity in; notNULL reference)
#100: merged and destroyed
#101: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: entity in; notNULL reference)
#102: merged and destroyed
#103: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: entity in; notNULL reference)
#104: merged and destroyed
#105: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: entity in; notNULL reference)
#106: merged and destroyed
#107: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: entity in; notNULL reference)
#108: merged and destroyed
#109: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: entity in; notNULL reference)
#110: merged and destroyed
#111: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: entity in; notNULL reference)
#112: merged and destroyed
#113: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: entity in; notNULL reference)
#114: merged and destroyed
#115: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: entity in; notNULL reference)
#116: merged and destroyed
#117: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: entity in; notNULL reference)
#118: merged and destroyed
#119: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: id in; notNULL)
#120: merged and destroyed
#121: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: id in; notNULL)
#122: merged and destroyed
#123: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: id in; notNULL)
#124: merged and destroyed
#125: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: id in; notNULL)
#126: merged and destroyed
#127: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: id in; notNULL)
#128: merged and destroyed
#129: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: id in; notNULL)
#130: merged and destroyed
#131: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: id in; notNULL)
#132: merged and destroyed
#133: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: id in; notNULL)
#134: merged and destroyed
#135: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: id in; notNULL)
#136: merged and destroyed
#137: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: id in; notNULL)
#138: merged and destroyed
#139: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: id in; notNULL)
#140: merged and destroyed
#141: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: id in; notNULL)
#142: merged and destroyed
#143: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: id in; notNULL)
#144: merged and destroyed
#145: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: id in; notNULL)
#146: merged and destroyed
#147: merged and destroyed
#148: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: title in;)
#149: merged and destroyed
#150: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: title in;)
#151: merged and destroyed
#152: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: title in;)
#153: merged and destroyed
#154: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: title in;)
#155: merged and destroyed
#156: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: title in;)
#157: merged and destroyed
#158: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: title in;)
#159: merged and destroyed
#160: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: title in;)
#161: merged and destroyed
#162: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: title in;)
#163: merged and destroyed
#164: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: title in;)
#165: merged and destroyed
#166: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: title in;)
#167: merged and destroyed
#168: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: title in;)
#169: merged and destroyed
#170: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: title in;)
#171: merged and destroyed
#172: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: title in;)
#173: merged and destroyed
#174: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: title in;)
#175: merged and destroyed
#176: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: description in;)
#177: merged and destroyed
#178: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: description in;)
#179: merged and destroyed
#180: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: description in;)
#181: merged and destroyed
#182: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: description in;)
#183: merged and destroyed
#184: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: description in;)
#185: merged and destroyed
#186: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: description in;)
#187: merged and destroyed
#188: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: description in;)
#189: merged and destroyed
#190: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: description in;)
#191: merged and destroyed
#192: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: description in;)
#193: merged and destroyed
#194: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: description in;)
#195: merged and destroyed
#196: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: description in;)
#197: merged and destroyed
#198: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: description in;)
#199: merged and destroyed
#200: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: description in;)
#201: merged and destroyed
#202: merged and destroyed
#203: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: address in;)
#204: merged and destroyed
#205: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: address in;)
#206: merged and destroyed
#207: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: address in;)
#208: merged and destroyed
#209: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: address in;)
#210: merged and destroyed
#211: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: address in;)
#212: merged and destroyed
#213: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: address in;)
#214: merged and destroyed
#215: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: address in;)
#216: merged and destroyed
#217: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: address in;)
#218: merged and destroyed
#219: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: address in;)
#220: merged and destroyed
#221: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: address in;)
#222: merged and destroyed
#223: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: address in;)
#224: merged and destroyed
#225: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: address in;)
#226: merged and destroyed
#227: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: address in;)
#228: merged and destroyed
#229: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: images in;)
#230: merged and destroyed
#231: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: images in;)
#232: merged and destroyed
#233: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: images in;)
#234: merged and destroyed
#235: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: images in;)
#236: merged and destroyed
#237: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: images in;)
#238: merged and destroyed
#239: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: images in;)
#240: merged and destroyed
#241: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: images in;)
#242: merged and destroyed
#243: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: images in;)
#244: merged and destroyed
#245: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: images in;)
#246: merged and destroyed
#247: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: images in;)
#248: merged and destroyed
#249: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: images in;)
#250: merged and destroyed
#251: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: images in;)
#252: merged and destroyed
#253: merged and destroyed
#254: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: annuity in;)
#255: merged and destroyed
#256: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: annuity in;)
#257: merged and destroyed
#258: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: annuity in;)
#259: merged and destroyed
#260: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: annuity in;)
#261: merged and destroyed
#262: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: annuity in;)
#263: merged and destroyed
#264: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: annuity in;)
#265: merged and destroyed
#266: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: annuity in;)
#267: merged and destroyed
#268: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: annuity in;)
#269: merged and destroyed
#270: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: annuity in;)
#271: merged and destroyed
#272: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: annuity in;)
#273: merged and destroyed
#274: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: annuity in;)
#275: merged and destroyed
#276: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: annuity in;)
#277: merged and destroyed
#278: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: energyLevel in;)
#279: merged and destroyed
#280: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: energyLevel in;)
#281: merged and destroyed
#282: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: energyLevel in;)
#283: merged and destroyed
#284: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: energyLevel in;)
#285: merged and destroyed
#286: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: energyLevel in;)
#287: merged and destroyed
#288: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: energyLevel in;)
#289: merged and destroyed
#290: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: energyLevel in;)
#291: merged and destroyed
#292: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: energyLevel in;)
#293: merged and destroyed
#294: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: energyLevel in;)
#295: merged and destroyed
#296: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: energyLevel in;)
#297: merged and destroyed
#298: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: energyLevel in;)
#299: merged and destroyed
#300: merged and destroyed
#301: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floor in;)
#302: merged and destroyed
#303: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floor in;)
#304: merged and destroyed
#305: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floor in;)
#306: merged and destroyed
#307: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floor in;)
#308: merged and destroyed
#309: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floor in;)
#310: merged and destroyed
#311: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floor in;)
#312: merged and destroyed
#313: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floor in;)
#314: merged and destroyed
#315: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floor in;)
#316: merged and destroyed
#317: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floor in;)
#318: merged and destroyed
#319: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floor in;)
#320: merged and destroyed
#321: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floor in;)
#322: merged and destroyed
#323: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floorArea in;)
#324: merged and destroyed
#325: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floorArea in;)
#326: merged and destroyed
#327: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floorArea in;)
#328: merged and destroyed
#329: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floorArea in;)
#330: merged and destroyed
#331: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floorArea in;)
#332: merged and destroyed
#333: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floorArea in;)
#334: merged and destroyed
#335: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floorArea in;)
#336: merged and destroyed
#337: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floorArea in;)
#338: merged and destroyed
#339: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floorArea in;)
#340: merged and destroyed
#341: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floorArea in;)
#342: merged and destroyed
#343: merged and destroyed
#344: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: usableArea in;)
#345: merged and destroyed
#346: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: usableArea in;)
#347: merged and destroyed
#348: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: usableArea in;)
#349: merged and destroyed
#350: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: usableArea in;)
#351: merged and destroyed
#352: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: usableArea in;)
#353: merged and destroyed
#354: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: usableArea in;)
#355: merged and destroyed
#356: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: usableArea in;)
#357: merged and destroyed
#358: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: usableArea in;)
#359: merged and destroyed
#360: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: usableArea in;)
#361: merged and destroyed
#362: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: usableArea in;)
#363: merged and destroyed
#364: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: layout in;)
#365: merged and destroyed
#366: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: layout in;)
#367: merged and destroyed
#368: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: layout in;)
#369: merged and destroyed
#370: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: layout in;)
#371: merged and destroyed
#372: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: layout in;)
#373: merged and destroyed
#374: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: layout in;)
#375: merged and destroyed
#376: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: layout in;)
#377: merged and destroyed
#378: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: layout in;)
#379: merged and destroyed
#380: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: layout in;)
#381: merged and destroyed
#382: merged and destroyed
#383: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: state in;)
#384: merged and destroyed
#385: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: state in;)
#386: merged and destroyed
#387: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: state in;)
#388: merged and destroyed
#389: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: state in;)
#390: merged and destroyed
#391: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: state in;)
#392: merged and destroyed
#393: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: state in;)
#394: merged and destroyed
#395: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: state in;)
#396: merged and destroyed
#397: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: state in;)
#398: merged and destroyed
#399: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: state in;)
#400: merged and destroyed
#401: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: mapLat in;)
#402: merged and destroyed
#403: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: mapLat in;)
#404: merged and destroyed
#405: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: mapLat in;)
#406: merged and destroyed
#407: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: mapLat in;)
#408: merged and destroyed
#409: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: mapLat in;)
#410: merged and destroyed
#411: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: mapLat in;)
#412: merged and destroyed
#413: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: mapLat in;)
#414: merged and destroyed
#415: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: mapLat in;)
#416: merged and destroyed
#417: merged and destroyed
#418: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: mapLon in;)
#419: merged and destroyed
#420: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: mapLon in;)
#421: merged and destroyed
#422: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: mapLon in;)
#423: merged and destroyed
#424: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: mapLon in;)
#425: merged and destroyed
#426: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: mapLon in;)
#427: merged and destroyed
#428: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: mapLon in;)
#429: merged and destroyed
#430: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: mapLon in;)
#431: merged and destroyed
#432: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: mapLon in;)
#433: merged and destroyed
#434: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: monthlyFees in;)
#435: merged and destroyed
#436: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: monthlyFees in;)
#437: merged and destroyed
#438: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: monthlyFees in;)
#439: merged and destroyed
#440: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: monthlyFees in;)
#441: merged and destroyed
#442: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: monthlyFees in;)
#443: merged and destroyed
#444: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: monthlyFees in;)
#445: merged and destroyed
#446: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: monthlyFees in;)
#447: merged and destroyed
#448: merged and destroyed
#449: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: ownership in;)
#450: merged and destroyed
#451: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: ownership in;)
#452: merged and destroyed
#453: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: ownership in;)
#454: merged and destroyed
#455: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: ownership in;)
#456: merged and destroyed
#457: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: ownership in;)
#458: merged and destroyed
#459: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: ownership in;)
#460: merged and destroyed
#461: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: ownership in;)
#462: merged and destroyed
#463: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: price in;)
#464: merged and destroyed
#465: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: price in;)
#466: merged and destroyed
#467: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: price in;)
#468: merged and destroyed
#469: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: price in;)
#470: merged and destroyed
#471: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: price in;)
#472: merged and destroyed
#473: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: price in;)
#474: merged and destroyed
#475: merged and destroyed
#476: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: structure in;)
#477: merged and destroyed
#478: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: structure in;)
#479: merged and destroyed
#480: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: structure in;)
#481: merged and destroyed
#482: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: structure in;)
#483: merged and destroyed
#484: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: structure in;)
#485: merged and destroyed
#486: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: structure in;)
#487: merged and destroyed
#488: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: unitType in;)
#489: merged and destroyed
#490: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: unitType in;)
#491: merged and destroyed
#492: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: unitType in;)
#493: merged and destroyed
#494: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: unitType in;)
#495: merged and destroyed
#496: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: unitType in;)
#497: merged and destroyed
#498: merged and destroyed
#499: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: source in;)
#500: merged and destroyed
#501: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: source in;)
#502: merged and destroyed
#503: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: source in;)
#504: merged and destroyed
#505: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: source in;)
#506: merged and destroyed
#507: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: source in;)
#508: merged and destroyed
#509: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: hasCellar in;)
#510: merged and destroyed
#511: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: hasCellar in;)
#512: merged and destroyed
#513: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: hasCellar in;)
#514: merged and destroyed
#515: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: hasCellar in;)
#516: merged and destroyed
#517: merged and destroyed
#518: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: hasLift in;)
#519: merged and destroyed
#520: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: hasLift in;)
#521: merged and destroyed
#522: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: hasLift in;)
#523: merged and destroyed
#524: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: hasLift in;)
#525: merged and destroyed
#526: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: hasParking in;)
#527: merged and destroyed
#528: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: hasParking in;)
#529: merged and destroyed
#530: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: hasParking in;)
#531: merged and destroyed
#532: merged and destroyed
#533: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: hasTerrace in;)
#534: merged and destroyed
#535: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: hasTerrace in;)
#536: merged and destroyed
#537: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: hasTerrace in;)
#538: merged and destroyed
#539: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: isAuction in;)
#540: merged and destroyed
#541: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: isAuction in;)
#542: merged and destroyed
#543: merged and destroyed
#544: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: isLastFloor in;)
#545: merged and destroyed
#546: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: isLastFloor in;)
#547: merged and destroyed
#548: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: withEquipment in;)
#549: merged and destroyed
#550: merged and destroyed
#551: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: createdAt in;)
#552: merged and destroyed
#553: ( 0 subv (0 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 1 subq: entity in; notNULL reference exported)
#554: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: id in; notNULL exported)
#555: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: title in; exported)
#556: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: description in; exported)
#557: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: address in; exported)
#558: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: images in; exported)
#559: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: annuity in; exported)
#560: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: energyLevel in; exported)
#561: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: floor in; exported)
#562: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: floorArea in; exported)
#563: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: usableArea in; exported)
#564: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: layout in; exported)
#565: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: state in; exported)
#566: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: mapLat in; exported)
#567: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: mapLon in; exported)
#568: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: monthlyFees in; exported)
#569: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: ownership in; exported)
#570: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: price in; exported)
#571: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: structure in; exported)
#572: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: unitType in; exported)
#573: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: source in; exported)
#574: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: hasCellar in; exported)
#575: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: hasLift in; exported)
#576: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: hasParking in; exported)
#577: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: hasTerrace in; exported)
#578: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: isAuction in; exported)
#579: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: isLastFloor in; exported)
#580: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: withEquipment in; exported)
#581: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: createdAt in; exported)
#582: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: updatedAt in; exported)
#583: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: sourceUpdatedAt in; exported)
#584: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: mapPoint in; lit)
#585: ( 0 subv (0 bindings, 0 nest.opt.), 0 recv, 3 gspo, 0 const, 20 opt, 0 subq: amenityIRI in s_53_100_t36 s_53_100_t37 s_53_100_t38; notNULL reference)
#586: ( 0 subv (0 bindings, 0 nest.opt.), 0 recv, 1 gspo, 0 const, 20 opt, 0 subq: amenityGeo in s_53_100_t37; notNULL)
#587: ( 0 subv (0 bindings, 0 nest.opt.), 0 recv, 3 gspo, 0 const, 0 opt, 0 subq: amenityIRI in s_52_98_t33 s_52_98_t34 s_52_98_t35; EXTERNAL notNULL reference; parent #585)
#588: ( 0 subv (0 bindings, 0 nest.opt.), 0 recv, 1 gspo, 1 const, 0 opt, 0 subq: amenityGeo in s_52_98_t34 s_52_98; EXTERNAL notNULL; parent #586)
#589: ( 0 subv (0 bindings, 0 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: mapPoint in s_52_98; EXTERNAL always-NULL; parent #667)
#590: ( 0 subv (0 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 19 opt, 0 subq: mapPoint in;)
#591: ( 0 subv (0 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 19 opt, 0 subq: mapPoint in; EXTERNAL always-NULL; parent #667)
#592: ( 0 subv (0 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 19 opt, 0 subq: amenityGeo in;)
#593: ( 0 subv (0 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 19 opt, 0 subq: amenityIRI in;)
#594: ( 0 subv (0 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 7 opt, 0 subq: mapPoint in;)
#595: merged and destroyed
#596: ( 0 subv (0 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 7 opt, 0 subq: amenityGeo in;)
#597: merged and destroyed
#598: ( 0 subv (0 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 7 opt, 0 subq: amenityIRI in;)
#599: merged and destroyed
#600: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: id in s_56_103 s_56_103; notNULL exported)
#601: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: title in s_56_103 s_56_103; exported)
#602: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: description in s_56_103 s_56_103; exported)
#603: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: address in s_56_103 s_56_103; exported)
#604: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: images in s_56_103; exported)
#605: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: annuity in s_56_103 s_56_103; exported)
#606: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: energyLevel in s_56_103 s_56_103; exported)
#607: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: floor in s_56_103 s_56_103; exported)
#608: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: floorArea in s_56_103 s_56_103; exported)
#609: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: usableArea in s_56_103 s_56_103; exported)
#610: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: layout in s_56_103 s_56_103; exported)
#611: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: state in s_56_103 s_56_103; exported)
#612: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: mapLat in s_56_103 s_56_103; exported)
#613: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: mapLon in s_56_103 s_56_103; exported)
#614: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: monthlyFees in s_56_103 s_56_103; exported)
#615: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: ownership in s_56_103 s_56_103; exported)
#616: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: price in s_56_103 s_56_103; exported)
#617: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: structure in s_56_103 s_56_103; exported)
#618: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: unitType in s_56_103 s_56_103; exported)
#619: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: source in s_56_103 s_56_103; exported)
#620: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: hasCellar in s_56_103 s_56_103; exported)
#621: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: hasLift in s_56_103 s_56_103; exported)
#622: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: hasParking in s_56_103 s_56_103; exported)
#623: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: hasTerrace in s_56_103 s_56_103; exported)
#624: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: isAuction in s_56_103 s_56_103; exported)
#625: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: isLastFloor in s_56_103 s_56_103; exported)
#626: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: withEquipment in s_56_103 s_56_103; exported)
#627: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: createdAt in s_56_103 s_56_103; exported)
#628: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: updatedAt in s_56_103 s_56_103; exported)
#629: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: sourceUpdatedAt in s_56_103 s_56_103; exported)
#630: merged and destroyed
#631: merged and destroyed
#632: merged and destroyed
#633: merged and destroyed
#634: merged and destroyed
#635: merged and destroyed
#636: merged and destroyed
#637: merged and destroyed
#638: merged and destroyed
#639: merged and destroyed
#640: merged and destroyed
#641: merged and destroyed
#642: merged and destroyed
#643: merged and destroyed
#644: merged and destroyed
#645: merged and destroyed
#646: merged and destroyed
#647: merged and destroyed
#648: merged and destroyed
#649: merged and destroyed
#650: merged and destroyed
#651: merged and destroyed
#652: merged and destroyed
#653: merged and destroyed
#654: merged and destroyed
#655: merged and destroyed
#656: merged and destroyed
#657: merged and destroyed
#658: merged and destroyed
#659: merged and destroyed
#660: merged and destroyed
#661: merged and destroyed
#662: merged and destroyed
#663: merged and destroyed
#664: merged and destroyed
#665: merged and destroyed
#666: merged and destroyed
#667: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 7 opt, 0 subq: mapPoint in; lit)
#668: merged and destroyed
#669: merged and destroyed
#670: merged and destroyed
#671: merged and destroyed
#672: merged and destroyed
#673: merged and destroyed
#674: merged and destroyed
#675: merged and destroyed
#676: merged and destroyed
#677: merged and destroyed
#678: merged and destroyed</code></pre>
</div>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="Copyright" content="Copyright &#169; 2022 OpenLink Software" />
<meta name="Keywords" content="OpenLink Virtuoso Sparql" />
<title>Virtuoso SPARQL Compilation report</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.6.0/css/bootstrap.min.css" integrity="sha512-P5MgMn1jBN01asBgU0z60Qk4QxiXo86+wlFahKrsQf37c9cro517WzVSPPV1tDKzhku2iJ2FVgL67wG03SGnNA==" crossorigin="anonymous" />
<style>.example { background-color: #ddd; padding: 1em; } </style>
</head>
<body>
<div class="container-fluid">
<h3>Virtuoso SPARQL Compilation Report</h3>
<p>
<h5>Original SPARQL query</h5>
<p>The SPARQL query as it is passed by web page to the SPARQL compiler:</p>
<pre class="text-monospace example"><code>/*e0404d908c8a3d3b3b6999d021e5f6e5*/
sparql {
#output-format:text/html
SELECT DISTINCT ?id ?title ?description ?address (group_concat(DISTINCT ?images;separator=&quot;,&quot;) as ?images) ?annuity ?energyLevel ?floor ?floorArea ?usableArea ?layout ?state (str(?mapLat) as ?mapLat) (str(?mapLon) as ?mapLon) ?monthlyFees ?ownership ?price ?structure ?unitType ?source ?hasCellar ?hasLift ?hasParking ?hasTerrace ?isAuction ?isLastFloor ?withEquipment ?createdAt ?updatedAt ?sourceUpdatedAt
WHERE {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; {
?entity a &lt;http://reality-maker.cz/vocabulary/RealEstate&gt; .
?entity &lt;http://purl.org/dc/terms/identifier&gt; ?id .
OPTIONAL { ?entity &lt;http://purl.org/dc/terms/title&gt; ?title . }
OPTIONAL { ?entity &lt;http://purl.org/dc/terms/description&gt; ?description . }
OPTIONAL { ?entity &lt;http://schema.org/address&gt; ?address . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/images&gt; ?images . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/annuity&gt; ?annuity . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/energyLevel&gt; ?energyLevel . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/floor&gt; ?floor . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/floorArea&gt; ?floorArea . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/usableArea&gt; ?usableArea . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/layout&gt; ?layout . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/state&gt; ?state . }
OPTIONAL { ?entity &lt;http://www.w3.org/2003/01/geo/wgs84_pos#lat&gt; ?mapLat . }
OPTIONAL { ?entity &lt;http://www.w3.org/2003/01/geo/wgs84_pos#long&gt; ?mapLon . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/monthlyFees&gt; ?monthlyFees . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/ownership&gt; ?ownership . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/price&gt; ?price . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/structure&gt; ?structure . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/unitType&gt; ?unitType . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/source&gt; ?source . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/hasCellar&gt; ?hasCellar . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/hasLift&gt; ?hasLift . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/hasParking&gt; ?hasParking . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/hasTerrace&gt; ?hasTerrace . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/isAuction&gt; ?isAuction . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/isLastFloor&gt; ?isLastFloor . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/withEquipment&gt; ?withEquipment . }
OPTIONAL { ?entity &lt;http://purl.org/dc/terms/created&gt; ?createdAt . }
OPTIONAL { ?entity &lt;http://purl.org/dc/terms/modified&gt; ?updatedAt . }
OPTIONAL { ?entity &lt;http://reality-maker.cz/vocabulary/sourceModified&gt; ?sourceUpdatedAt . }
BIND(bif:st_point(?mapLon, ?mapLat) as ?mapPoint)
}
GRAPH &lt;http://reality-maker.cz/osm/cze/prague&gt; {
FILTER EXISTS {
?amenityIRI rdf:type &lt;https://www.openstreetmap.org/node&gt; ;
geo:hasGeometry ?amenityGeo ;
&lt;https://www.openstreetmap.org/wiki/Key:amenity&gt; &quot;restaurant&quot; .
FILTER(geof:distance(?mapPoint, ?amenityGeo, &lt;http://www.opengis.net/def/uom/OGC/1.0/metre&gt;) &lt;= 500)
}
}
}
LIMIT 10
}</code></pre>
<h5>Optimized SPARQL query</h5>
<p>The SPARQL query after parsing, optimization and converting back into SPARQL</p>
<pre class="text-monospace example"><code>SELECT DISTINCT ?id
?title
?description
?address
( &lt;sql:GROUP_CONCAT_DISTINCT&gt;( ?images, &quot;,&quot;) AS ?images)
?annuity
?energyLevel
?floor
?floorArea
?usableArea
?layout
?state
( str( ?mapLat) AS ?mapLat)
( str( ?mapLon) AS ?mapLon)
?monthlyFees
?ownership
?price
?structure
?unitType
?source
?hasCellar
?hasLift
?hasParking
?hasTerrace
?isAuction
?isLastFloor
?withEquipment
?createdAt
?updatedAt
?sourceUpdatedAt
WHERE {
{ SELECT ?entity
?id
?title
?description
?address
?images
?annuity
?energyLevel
?floor
?floorArea
?usableArea
?layout
?state
?mapLat
?mapLon
?monthlyFees
?ownership
?price
?structure
?unitType
?source
?hasCellar
?hasLift
?hasParking
?hasTerrace
?isAuction
?isLastFloor
?withEquipment
?createdAt
?updatedAt
?sourceUpdatedAt
( &lt;bif:st_point&gt;( ?mapLon, ?mapLat) AS ?mapPoint)
WHERE {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#type&gt; &lt;http://reality-maker.cz/vocabulary/RealEstate&gt; ;
&lt;http://purl.org/dc/terms/identifier&gt; ?id . }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://purl.org/dc/terms/title&gt; ?title . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://purl.org/dc/terms/description&gt; ?description . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://schema.org/address&gt; ?address . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/images&gt; ?images . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/annuity&gt; ?annuity . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/energyLevel&gt; ?energyLevel . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/floor&gt; ?floor . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/floorArea&gt; ?floorArea . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/usableArea&gt; ?usableArea . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/layout&gt; ?layout . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/state&gt; ?state . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://www.w3.org/2003/01/geo/wgs84_pos#lat&gt; ?mapLat . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://www.w3.org/2003/01/geo/wgs84_pos#long&gt; ?mapLon . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/monthlyFees&gt; ?monthlyFees . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/ownership&gt; ?ownership . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/price&gt; ?price . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/structure&gt; ?structure . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/unitType&gt; ?unitType . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/source&gt; ?source . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/hasCellar&gt; ?hasCellar . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/hasLift&gt; ?hasLift . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/hasParking&gt; ?hasParking . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/hasTerrace&gt; ?hasTerrace . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/isAuction&gt; ?isAuction . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/isLastFloor&gt; ?isLastFloor . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/withEquipment&gt; ?withEquipment . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://purl.org/dc/terms/created&gt; ?createdAt . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://purl.org/dc/terms/modified&gt; ?updatedAt . } }
OPTIONAL {
GRAPH &lt;http://reality-maker.cz/graph/sell&gt; { ?entity &lt;http://reality-maker.cz/vocabulary/sourceModified&gt; ?sourceUpdatedAt . } } }
OFFSET 0 }
FILTER (
EXISTS
{
GRAPH &lt;http://reality-maker.cz/osm/cze/prague&gt; { ?amenityIRI &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#type&gt; &lt;https://www.openstreetmap.org/node&gt; ;
&lt;http://www.opengis.net/ont/geosparql#hasGeometry&gt; ?amenityGeo ;
&lt;https://www.openstreetmap.org/wiki/Key:amenity&gt; &quot;restaurant&quot; . }
FILTER ( 500 &gt;= &lt;bif:http://www.opengis.net/def/function/geosparql/distance&gt;( ?mapPoint, ?amenityGeo, &lt;http://www.opengis.net/def/uom/OGC/1.0/metre&gt;) ) } ) }
GROUP BY ?sourceUpdatedAt ?updatedAt ?createdAt ?withEquipment ?isLastFloor ?isAuction ?hasTerrace ?hasParking ?hasLift ?hasCellar ?source ?unitType ?structure ?price ?ownership ?monthlyFees ?mapLon ?mapLat ?state ?layout ?usableArea ?floorArea ?floor ?energyLevel ?annuity ?address ?description ?title ?id
LIMIT 10</code></pre>
<h5>SPARQL query translated to SQL</h5>
<p>
<i>For security reasons, code responsible for graph-level security is not generated and some account-specific data are intentionally made wrong.</i>
<pre class="text-monospace example"><code> SELECT __ro2sq (&quot;s_50_98_rbc&quot;.&quot;id&quot;) AS &quot;id&quot;, __ro2sq (&quot;s_50_98_rbc&quot;.&quot;title&quot;) AS &quot;title&quot;, __ro2sq (&quot;s_50_98_rbc&quot;.&quot;description&quot;) AS &quot;description&quot;, __ro2sq (&quot;s_50_98_rbc&quot;.&quot;address&quot;) AS &quot;address&quot;, __ro2sq (&quot;s_50_98_rbc&quot;.&quot;images&quot;) AS &quot;images&quot;, __ro2sq (&quot;s_50_98_rbc&quot;.&quot;annuity&quot;) AS &quot;annuity&quot;, __ro2sq (&quot;s_50_98_rbc&quot;.&quot;energyLevel&quot;) AS &quot;energyLevel&quot;, __ro2sq (&quot;s_50_98_rbc&quot;.&quot;floor&quot;) AS &quot;floor&quot;, __ro2sq (&quot;s_50_98_rbc&quot;.&quot;floorArea&quot;) AS &quot;floorArea&quot;, __ro2sq (&quot;s_50_98_rbc&quot;.&quot;usableArea&quot;) AS &quot;usableArea&quot;, __ro2sq (&quot;s_50_98_rbc&quot;.&quot;layout&quot;) AS &quot;layout&quot;, __ro2sq (&quot;s_50_98_rbc&quot;.&quot;state&quot;) AS &quot;state&quot;, __ro2sq (&quot;s_50_98_rbc&quot;.&quot;mapLat&quot;) AS &quot;mapLat&quot;, __ro2sq (&quot;s_50_98_rbc&quot;.&quot;mapLon&quot;) AS &quot;mapLon&quot;, __ro2sq (&quot;s_50_98_rbc&quot;.&quot;monthlyFees&quot;) AS &quot;monthlyFees&quot;, __ro2sq (&quot;s_50_98_rbc&quot;.&quot;ownership&quot;) AS &quot;ownership&quot;, __ro2sq (&quot;s_50_98_rbc&quot;.&quot;price&quot;) AS &quot;price&quot;, __ro2sq (&quot;s_50_98_rbc&quot;.&quot;structure&quot;) AS &quot;structure&quot;, __ro2sq (&quot;s_50_98_rbc&quot;.&quot;unitType&quot;) AS &quot;unitType&quot;, __ro2sq (&quot;s_50_98_rbc&quot;.&quot;source&quot;) AS &quot;source&quot;, __ro2sq (&quot;s_50_98_rbc&quot;.&quot;hasCellar&quot;) AS &quot;hasCellar&quot;, __ro2sq (&quot;s_50_98_rbc&quot;.&quot;hasLift&quot;) AS &quot;hasLift&quot;, __ro2sq (&quot;s_50_98_rbc&quot;.&quot;hasParking&quot;) AS &quot;hasParking&quot;, __ro2sq (&quot;s_50_98_rbc&quot;.&quot;hasTerrace&quot;) AS &quot;hasTerrace&quot;, __ro2sq (&quot;s_50_98_rbc&quot;.&quot;isAuction&quot;) AS &quot;isAuction&quot;, __ro2sq (&quot;s_50_98_rbc&quot;.&quot;isLastFloor&quot;) AS &quot;isLastFloor&quot;, __ro2sq (&quot;s_50_98_rbc&quot;.&quot;withEquipment&quot;) AS &quot;withEquipment&quot;, __ro2sq (&quot;s_50_98_rbc&quot;.&quot;createdAt&quot;) AS &quot;createdAt&quot;, __ro2sq (&quot;s_50_98_rbc&quot;.&quot;updatedAt&quot;) AS &quot;updatedAt&quot;, __ro2sq (&quot;s_50_98_rbc&quot;.&quot;sourceUpdatedAt&quot;) AS &quot;sourceUpdatedAt&quot; FROM (SELECT DISTINCT TOP 10 __ro2sq ( &quot;s_37_90&quot;.&quot;id&quot;) AS &quot;id&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;title&quot;) AS &quot;title&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;description&quot;) AS &quot;description&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;address&quot;) AS &quot;address&quot;,
DB.DBA.GROUP_CONCAT_DISTINCT (
__ro2sq ( &quot;s_37_90&quot;.&quot;images&quot;),
&#39;,&#39; ) AS &quot;images&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;annuity&quot;) AS &quot;annuity&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;energyLevel&quot;) AS &quot;energyLevel&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;floor&quot;) AS &quot;floor&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;floorArea&quot;) AS &quot;floorArea&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;usableArea&quot;) AS &quot;usableArea&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;layout&quot;) AS &quot;layout&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;state&quot;) AS &quot;state&quot;,
__rdf_strsqlval ( &quot;s_37_90&quot;.&quot;mapLat&quot;, 0) AS &quot;mapLat&quot;,
__rdf_strsqlval ( &quot;s_37_90&quot;.&quot;mapLon&quot;, 0) AS &quot;mapLon&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;monthlyFees&quot;) AS &quot;monthlyFees&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;ownership&quot;) AS &quot;ownership&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;price&quot;) AS &quot;price&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;structure&quot;) AS &quot;structure&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;unitType&quot;) AS &quot;unitType&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;source&quot;) AS &quot;source&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;hasCellar&quot;) AS &quot;hasCellar&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;hasLift&quot;) AS &quot;hasLift&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;hasParking&quot;) AS &quot;hasParking&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;hasTerrace&quot;) AS &quot;hasTerrace&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;isAuction&quot;) AS &quot;isAuction&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;isLastFloor&quot;) AS &quot;isLastFloor&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;withEquipment&quot;) AS &quot;withEquipment&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;createdAt&quot;) AS &quot;createdAt&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;updatedAt&quot;) AS &quot;updatedAt&quot;,
__ro2sq ( &quot;s_37_90&quot;.&quot;sourceUpdatedAt&quot;) AS &quot;sourceUpdatedAt&quot;
FROM (
SELECT &quot;s_37_61_t32&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_37_61_t32&quot;.&quot;O&quot; AS &quot;id&quot;,
&quot;s_8_3&quot;.&quot;title&quot; AS &quot;title&quot;,
&quot;s_9_5&quot;.&quot;description&quot; AS &quot;description&quot;,
&quot;s_10_7&quot;.&quot;address&quot; AS &quot;address&quot;,
&quot;s_11_9&quot;.&quot;images&quot; AS &quot;images&quot;,
&quot;s_12_11&quot;.&quot;annuity&quot; AS &quot;annuity&quot;,
&quot;s_13_13&quot;.&quot;energyLevel&quot; AS &quot;energyLevel&quot;,
&quot;s_14_15&quot;.&quot;floor&quot; AS &quot;floor&quot;,
&quot;s_15_17&quot;.&quot;floorArea&quot; AS &quot;floorArea&quot;,
&quot;s_16_19&quot;.&quot;usableArea&quot; AS &quot;usableArea&quot;,
&quot;s_17_21&quot;.&quot;layout&quot; AS &quot;layout&quot;,
&quot;s_18_23&quot;.&quot;state&quot; AS &quot;state&quot;,
&quot;s_19_25&quot;.&quot;mapLat&quot; AS &quot;mapLat&quot;,
&quot;s_20_27&quot;.&quot;mapLon&quot; AS &quot;mapLon&quot;,
&quot;s_21_29&quot;.&quot;monthlyFees&quot; AS &quot;monthlyFees&quot;,
&quot;s_22_31&quot;.&quot;ownership&quot; AS &quot;ownership&quot;,
&quot;s_23_33&quot;.&quot;price&quot; AS &quot;price&quot;,
&quot;s_24_35&quot;.&quot;structure&quot; AS &quot;structure&quot;,
&quot;s_25_37&quot;.&quot;unitType&quot; AS &quot;unitType&quot;,
&quot;s_26_39&quot;.&quot;source&quot; AS &quot;source&quot;,
&quot;s_27_41&quot;.&quot;hasCellar&quot; AS &quot;hasCellar&quot;,
&quot;s_28_43&quot;.&quot;hasLift&quot; AS &quot;hasLift&quot;,
&quot;s_29_45&quot;.&quot;hasParking&quot; AS &quot;hasParking&quot;,
&quot;s_30_47&quot;.&quot;hasTerrace&quot; AS &quot;hasTerrace&quot;,
&quot;s_31_49&quot;.&quot;isAuction&quot; AS &quot;isAuction&quot;,
&quot;s_32_51&quot;.&quot;isLastFloor&quot; AS &quot;isLastFloor&quot;,
&quot;s_33_53&quot;.&quot;withEquipment&quot; AS &quot;withEquipment&quot;,
&quot;s_34_55&quot;.&quot;createdAt&quot; AS &quot;createdAt&quot;,
&quot;s_35_57&quot;.&quot;updatedAt&quot; AS &quot;updatedAt&quot;,
&quot;s_36_59&quot;.&quot;sourceUpdatedAt&quot; AS &quot;sourceUpdatedAt&quot;,
st_point (
__ro2sq ( &quot;s_20_27&quot;.&quot;mapLon&quot;),
__ro2sq ( &quot;s_19_25&quot;.&quot;mapLat&quot;)) AS &quot;mapPoint&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_37_61_t31&quot;
INNER JOIN DB.DBA.RDF_QUAD AS &quot;s_37_61_t32&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_37_61_t31&quot;.&quot;S&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_8_3_t0&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_8_3_t0&quot;.&quot;O&quot; AS &quot;title&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_8_3_t0&quot;
WHERE
&quot;s_8_3_t0&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_8_3_t0&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://purl.org/dc/terms/title&#39; , 1))) AS &quot;s_8_3&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_8_3&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_8_3&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_9_5_t1&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_9_5_t1&quot;.&quot;O&quot; AS &quot;description&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_9_5_t1&quot;
WHERE
&quot;s_9_5_t1&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_9_5_t1&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://purl.org/dc/terms/description&#39; , 1))) AS &quot;s_9_5&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_9_5&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_9_5&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_10_7_t2&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_10_7_t2&quot;.&quot;O&quot; AS &quot;address&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_10_7_t2&quot;
WHERE
&quot;s_10_7_t2&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_10_7_t2&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://schema.org/address&#39; , 1))) AS &quot;s_10_7&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_10_7&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_10_7&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_11_9_t3&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_11_9_t3&quot;.&quot;O&quot; AS &quot;images&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_11_9_t3&quot;
WHERE
&quot;s_11_9_t3&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_11_9_t3&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/images&#39; , 1))) AS &quot;s_11_9&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_11_9&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_11_9&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_12_11_t4&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_12_11_t4&quot;.&quot;O&quot; AS &quot;annuity&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_12_11_t4&quot;
WHERE
&quot;s_12_11_t4&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_12_11_t4&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/annuity&#39; , 1))) AS &quot;s_12_11&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_12_11&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_12_11&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_13_13_t5&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_13_13_t5&quot;.&quot;O&quot; AS &quot;energyLevel&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_13_13_t5&quot;
WHERE
&quot;s_13_13_t5&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_13_13_t5&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/energyLevel&#39; , 1))) AS &quot;s_13_13&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_13_13&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_13_13&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_14_15_t6&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_14_15_t6&quot;.&quot;O&quot; AS &quot;floor&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_14_15_t6&quot;
WHERE
&quot;s_14_15_t6&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_14_15_t6&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/floor&#39; , 1))) AS &quot;s_14_15&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_14_15&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_14_15&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_15_17_t7&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_15_17_t7&quot;.&quot;O&quot; AS &quot;floorArea&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_15_17_t7&quot;
WHERE
&quot;s_15_17_t7&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_15_17_t7&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/floorArea&#39; , 1))) AS &quot;s_15_17&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_15_17&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_15_17&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_16_19_t8&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_16_19_t8&quot;.&quot;O&quot; AS &quot;usableArea&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_16_19_t8&quot;
WHERE
&quot;s_16_19_t8&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_16_19_t8&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/usableArea&#39; , 1))) AS &quot;s_16_19&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_16_19&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_16_19&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_17_21_t9&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_17_21_t9&quot;.&quot;O&quot; AS &quot;layout&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_17_21_t9&quot;
WHERE
&quot;s_17_21_t9&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_17_21_t9&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/layout&#39; , 1))) AS &quot;s_17_21&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_17_21&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_17_21&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_18_23_t10&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_18_23_t10&quot;.&quot;O&quot; AS &quot;state&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_18_23_t10&quot;
WHERE
&quot;s_18_23_t10&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_18_23_t10&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/state&#39; , 1))) AS &quot;s_18_23&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_18_23&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_18_23&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_19_25_t11&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_19_25_t11&quot;.&quot;O&quot; AS &quot;mapLat&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_19_25_t11&quot;
WHERE
&quot;s_19_25_t11&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_19_25_t11&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://www.w3.org/2003/01/geo/wgs84_pos#lat&#39; , 1))) AS &quot;s_19_25&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_19_25&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_19_25&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_20_27_t12&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_20_27_t12&quot;.&quot;O&quot; AS &quot;mapLon&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_20_27_t12&quot;
WHERE
&quot;s_20_27_t12&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_20_27_t12&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://www.w3.org/2003/01/geo/wgs84_pos#long&#39; , 1))) AS &quot;s_20_27&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_20_27&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_20_27&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_21_29_t13&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_21_29_t13&quot;.&quot;O&quot; AS &quot;monthlyFees&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_21_29_t13&quot;
WHERE
&quot;s_21_29_t13&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_21_29_t13&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/monthlyFees&#39; , 1))) AS &quot;s_21_29&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_21_29&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_21_29&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_22_31_t14&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_22_31_t14&quot;.&quot;O&quot; AS &quot;ownership&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_22_31_t14&quot;
WHERE
&quot;s_22_31_t14&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_22_31_t14&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/ownership&#39; , 1))) AS &quot;s_22_31&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_22_31&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_22_31&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_23_33_t15&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_23_33_t15&quot;.&quot;O&quot; AS &quot;price&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_23_33_t15&quot;
WHERE
&quot;s_23_33_t15&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_23_33_t15&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/price&#39; , 1))) AS &quot;s_23_33&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_23_33&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_23_33&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_24_35_t16&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_24_35_t16&quot;.&quot;O&quot; AS &quot;structure&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_24_35_t16&quot;
WHERE
&quot;s_24_35_t16&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_24_35_t16&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/structure&#39; , 1))) AS &quot;s_24_35&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_24_35&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_24_35&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_25_37_t17&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_25_37_t17&quot;.&quot;O&quot; AS &quot;unitType&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_25_37_t17&quot;
WHERE
&quot;s_25_37_t17&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_25_37_t17&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/unitType&#39; , 1))) AS &quot;s_25_37&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_25_37&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_25_37&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_26_39_t18&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_26_39_t18&quot;.&quot;O&quot; AS &quot;source&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_26_39_t18&quot;
WHERE
&quot;s_26_39_t18&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_26_39_t18&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/source&#39; , 1))) AS &quot;s_26_39&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_26_39&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_26_39&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_27_41_t19&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_27_41_t19&quot;.&quot;O&quot; AS &quot;hasCellar&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_27_41_t19&quot;
WHERE
&quot;s_27_41_t19&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_27_41_t19&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/hasCellar&#39; , 1))) AS &quot;s_27_41&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_27_41&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_27_41&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_28_43_t20&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_28_43_t20&quot;.&quot;O&quot; AS &quot;hasLift&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_28_43_t20&quot;
WHERE
&quot;s_28_43_t20&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_28_43_t20&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/hasLift&#39; , 1))) AS &quot;s_28_43&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_28_43&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_28_43&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_29_45_t21&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_29_45_t21&quot;.&quot;O&quot; AS &quot;hasParking&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_29_45_t21&quot;
WHERE
&quot;s_29_45_t21&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_29_45_t21&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/hasParking&#39; , 1))) AS &quot;s_29_45&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_29_45&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_29_45&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_30_47_t22&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_30_47_t22&quot;.&quot;O&quot; AS &quot;hasTerrace&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_30_47_t22&quot;
WHERE
&quot;s_30_47_t22&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_30_47_t22&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/hasTerrace&#39; , 1))) AS &quot;s_30_47&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_30_47&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_30_47&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_31_49_t23&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_31_49_t23&quot;.&quot;O&quot; AS &quot;isAuction&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_31_49_t23&quot;
WHERE
&quot;s_31_49_t23&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_31_49_t23&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/isAuction&#39; , 1))) AS &quot;s_31_49&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_31_49&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_31_49&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_32_51_t24&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_32_51_t24&quot;.&quot;O&quot; AS &quot;isLastFloor&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_32_51_t24&quot;
WHERE
&quot;s_32_51_t24&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_32_51_t24&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/isLastFloor&#39; , 1))) AS &quot;s_32_51&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_32_51&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_32_51&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_33_53_t25&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_33_53_t25&quot;.&quot;O&quot; AS &quot;withEquipment&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_33_53_t25&quot;
WHERE
&quot;s_33_53_t25&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_33_53_t25&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/withEquipment&#39; , 1))) AS &quot;s_33_53&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_33_53&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_33_53&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_34_55_t26&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_34_55_t26&quot;.&quot;O&quot; AS &quot;createdAt&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_34_55_t26&quot;
WHERE
&quot;s_34_55_t26&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_34_55_t26&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://purl.org/dc/terms/created&#39; , 1))) AS &quot;s_34_55&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_34_55&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_34_55&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_35_57_t27&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_35_57_t27&quot;.&quot;O&quot; AS &quot;updatedAt&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_35_57_t27&quot;
WHERE
&quot;s_35_57_t27&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_35_57_t27&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://purl.org/dc/terms/modified&#39; , 1))) AS &quot;s_35_57&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_35_57&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_35_57&quot;.&quot;entity&quot;)
LEFT OUTER JOIN (
SELECT &quot;s_36_59_t28&quot;.&quot;S&quot; AS &quot;entity&quot;,
&quot;s_36_59_t28&quot;.&quot;O&quot; AS &quot;sourceUpdatedAt&quot;
FROM DB.DBA.RDF_QUAD AS &quot;s_36_59_t28&quot;
WHERE
&quot;s_36_59_t28&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_36_59_t28&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/sourceModified&#39; , 1))) AS &quot;s_36_59&quot;
ON (
&quot;s_37_61_t32&quot;.&quot;S&quot; = &quot;s_36_59&quot;.&quot;entity&quot;
AND
&quot;s_37_61_t31&quot;.&quot;S&quot; = &quot;s_36_59&quot;.&quot;entity&quot;)
WHERE
&quot;s_37_61_t31&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_37_61_t31&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://www.w3.org/1999/02/22-rdf-syntax-ns#type&#39; , 1))
AND
&quot;s_37_61_t31&quot;.&quot;O&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/vocabulary/RealEstate&#39; , 1))
AND
&quot;s_37_61_t32&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/graph/sell&#39; , 1))
AND
&quot;s_37_61_t32&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://purl.org/dc/terms/identifier&#39; , 1))
OPTION (QUIETCAST)
) AS &quot;s_37_90&quot;
WHERE
EXISTS ( (
SELECT TOP 1 1 AS __ask_retval
FROM DB.DBA.RDF_QUAD AS &quot;s_47_95_t33&quot;
INNER JOIN DB.DBA.RDF_QUAD AS &quot;s_47_95_t34&quot;
ON (
&quot;s_47_95_t33&quot;.&quot;S&quot; = &quot;s_47_95_t34&quot;.&quot;S&quot;)
INNER JOIN DB.DBA.RDF_QUAD AS &quot;s_47_95_t35&quot;
ON (
&quot;s_47_95_t33&quot;.&quot;S&quot; = &quot;s_47_95_t35&quot;.&quot;S&quot;
AND
&quot;s_47_95_t34&quot;.&quot;S&quot; = &quot;s_47_95_t35&quot;.&quot;S&quot;)
WHERE
&quot;s_47_95_t33&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/osm/cze/prague&#39; , 1))
AND
&quot;s_47_95_t33&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://www.w3.org/1999/02/22-rdf-syntax-ns#type&#39; , 1))
AND
&quot;s_47_95_t33&quot;.&quot;O&quot; = __i2idn ( __bft( &#39;https://www.openstreetmap.org/node&#39; , 1))
AND
&quot;s_47_95_t34&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/osm/cze/prague&#39; , 1))
AND
&quot;s_47_95_t34&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;http://www.opengis.net/ont/geosparql#hasGeometry&#39; , 1))
AND
&quot;s_47_95_t35&quot;.&quot;G&quot; = __i2idn ( __bft( &#39;http://reality-maker.cz/osm/cze/prague&#39; , 1))
AND
&quot;s_47_95_t35&quot;.&quot;P&quot; = __i2idn ( __bft( &#39;https://www.openstreetmap.org/wiki/Key:amenity&#39; , 1))
AND
&quot;s_47_95_t35&quot;.&quot;O&quot; = DB.DBA.RDF_OBJ_OF_SQLVAL ( &#39;restaurant&#39; )
AND
( 500 &gt;= &quot;http://www.opengis.net/def/function/geosparql/distance&quot; (
&quot;s_37_90&quot;.&quot;mapPoint&quot;,
__ro2sq ( &quot;s_47_95_t34&quot;.&quot;O&quot;),
__bft ( __bft( &#39;http://www.opengis.net/def/uom/OGC/1.0/metre&#39; , 1), 1)))
OPTION (QUIETCAST)
))
GROUP BY &quot;s_37_90&quot;.&quot;sourceUpdatedAt&quot;, &quot;s_37_90&quot;.&quot;updatedAt&quot;, &quot;s_37_90&quot;.&quot;createdAt&quot;, &quot;s_37_90&quot;.&quot;withEquipment&quot;, &quot;s_37_90&quot;.&quot;isLastFloor&quot;, &quot;s_37_90&quot;.&quot;isAuction&quot;, &quot;s_37_90&quot;.&quot;hasTerrace&quot;, &quot;s_37_90&quot;.&quot;hasParking&quot;, &quot;s_37_90&quot;.&quot;hasLift&quot;, &quot;s_37_90&quot;.&quot;hasCellar&quot;, &quot;s_37_90&quot;.&quot;source&quot;, &quot;s_37_90&quot;.&quot;unitType&quot;, &quot;s_37_90&quot;.&quot;structure&quot;, &quot;s_37_90&quot;.&quot;price&quot;, &quot;s_37_90&quot;.&quot;ownership&quot;, &quot;s_37_90&quot;.&quot;monthlyFees&quot;, &quot;s_37_90&quot;.&quot;mapLon&quot;, &quot;s_37_90&quot;.&quot;mapLat&quot;, &quot;s_37_90&quot;.&quot;state&quot;, &quot;s_37_90&quot;.&quot;layout&quot;, &quot;s_37_90&quot;.&quot;usableArea&quot;, &quot;s_37_90&quot;.&quot;floorArea&quot;, &quot;s_37_90&quot;.&quot;floor&quot;, &quot;s_37_90&quot;.&quot;energyLevel&quot;, &quot;s_37_90&quot;.&quot;annuity&quot;, &quot;s_37_90&quot;.&quot;address&quot;, &quot;s_37_90&quot;.&quot;description&quot;, &quot;s_37_90&quot;.&quot;title&quot;, &quot;s_37_90&quot;.&quot;id&quot;
OPTION (QUIETCAST)) AS &quot;s_50_98_rbc&quot;</code></pre>
<h5>SQL execution plan</h5>
<p>
<pre class="text-monospace example"><code> {
Precode:
0: __rdflit$27 := Call __rdflit (rdflit10039)
5: BReturn 0
Subquery 29
{
fork {
RDF_QUAD 1.1e+04 rows(t65.S$63, t65.O$62)
inlined P = IRI_ID&quot;...identifier&quot; G = IRI_ID&quot;...sell&quot;
RDF_QUAD unq 0.8 rows (t64.S$66)
inlined P = IRI_ID&quot;...type&quot; , S = t65.S$63 , O = IRI_ID&quot;...RealEstate&quot; , G = IRI_ID&quot;...sell&quot;
Precode:
0: __ro2sq$68 := Call __ro2sq (t65.O$62)
5: BReturn 0
outer {
RDF_QUAD 1 rows(t89.O$71)
inlined P = IRI_ID&quot;...isAuction&quot; , S = k_t65.S$682 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$74
out: (t89.O$71)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t67.O$84)
inlined P = IRI_ID&quot;...description&quot; , S = k_t65.S$701 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$87
out: (t67.O$84)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t66.O$97)
inlined P = IRI_ID&quot;...title&quot; , S = k_t65.S$720 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$100
out: (t66.O$97)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t71.O$110)
inlined P = IRI_ID&quot;...energyLevel&quot; , S = k_t65.S$739 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$113
out: (t71.O$110)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t72.O$123)
inlined P = IRI_ID&quot;...vocabulary/floor&quot; , S = k_t65.S$758 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$126
out: (t72.O$123)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t73.O$136)
inlined P = IRI_ID&quot;...floorArea&quot; , S = k_t65.S$777 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$139
out: (t73.O$136)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t74.O$149)
inlined P = IRI_ID&quot;...usableArea&quot; , S = k_t65.S$796 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$152
out: (t74.O$149)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t75.O$162)
inlined P = IRI_ID&quot;...vocabulary/layout&quot; , S = k_t65.S$815 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$165
out: (t75.O$162)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t76.O$175)
inlined P = IRI_ID&quot;...vocabulary/state&quot; , S = k_t65.S$834 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$178
out: (t76.O$175)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t77.O$188)
inlined P = IRI_ID&quot;...lat&quot; , S = k_t65.S$853 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$191
out: (t77.O$188)
shadow: ( &lt;none&gt; )
Precode:
0: __ro2sq$200 := Call __ro2sq (t77.O$188)
5: BReturn 0
outer {
RDF_QUAD 1 rows(t78.O$203)
inlined P = IRI_ID&quot;...long&quot; , S = k_t65.S$872 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$241
out: (t78.O$203)
shadow: ( &lt;none&gt; )
END Node
After test:
0: if ( {
Precode:
0: __ro2sq$205 := Call __ro2sq (t78.O$203)
5: st_point$207 := Call st_point (__ro2sq$205, __ro2sq$200)
10: BReturn 0
RDF_QUAD 1.1e+07 rows(t97.O$211, t97.S$210)
inlined P = IRI_ID&quot;...hasGeometry&quot; G = IRI_ID&quot;...prague&quot;
END Node
After test:
0: __ro2sq$213 := Call __ro2sq (t97.O$211)
5: http://www.opengis.net/def/function/geosparql/distance$215 := Call http://www.opengis.net/def/function/geosparql/distance (st_point$207, __ro2sq$213, &lt;tag 182 flag 1 c http://www.opengis.net/def/uom/OGC/1.0/metre&gt;)
10: if ( 500 &gt;= http://www.opengis.net/def/function/geosparql/distance$215) then 14 else 15 unkn 15
14: BReturn 1
15: BReturn 0
RDF_QUAD unq 0.055 rows (t98.S$218)
inlined P = IRI_ID&quot;...amenity&quot; , S = k_t97.S$908 , O = rdflit10039 , G = IRI_ID&quot;...prague&quot;
RDF_QUAD unq 0.8 rows ()
inlined P = IRI_ID&quot;...type&quot; , S = t98.S$218 , O = IRI_ID&quot;...node&quot; , G = IRI_ID&quot;...prague&quot;
Subquery Select( &lt;none&gt; )
}
) then 4 else 5 unkn 5
4: BReturn 1
5: BReturn 0
outer {
RDF_QUAD 1 rows(t79.O$251)
inlined P = IRI_ID&quot;...monthlyFees&quot; , S = k_t65.S$932 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$254
out: (t79.O$251)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t80.O$264)
inlined P = IRI_ID&quot;...ownership&quot; , S = k_t65.S$951 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$267
out: (t80.O$264)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t81.O$277)
inlined P = IRI_ID&quot;...vocabulary/price&quot; , S = k_t65.S$970 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$280
out: (t81.O$277)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t70.O$290)
inlined P = IRI_ID&quot;...vocabulary/annuity&quot; , S = k_t65.S$989 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$293
out: (t70.O$290)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t82.O$303)
inlined P = IRI_ID&quot;...structure&quot; , S = k_t65.S$1008 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$306
out: (t82.O$303)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t83.O$316)
inlined P = IRI_ID&quot;...unitType&quot; , S = k_t65.S$1027 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$319
out: (t83.O$316)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t84.O$329)
inlined P = IRI_ID&quot;...vocabulary/source&quot; , S = k_t65.S$1046 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$332
out: (t84.O$329)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t85.O$342)
inlined P = IRI_ID&quot;...hasCellar&quot; , S = k_t65.S$1065 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$345
out: (t85.O$342)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t86.O$355)
inlined P = IRI_ID&quot;...vocabulary/hasLift&quot; , S = k_t65.S$1084 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$358
out: (t86.O$355)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t87.O$368)
inlined P = IRI_ID&quot;...hasParking&quot; , S = k_t65.S$1103 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$371
out: (t87.O$368)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t88.O$381)
inlined P = IRI_ID&quot;...hasTerrace&quot; , S = k_t65.S$1122 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$384
out: (t88.O$381)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t94.O$394)
inlined P = IRI_ID&quot;...sourceModified&quot; , S = k_t65.S$1141 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$397
out: (t94.O$394)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t93.O$407)
inlined P = IRI_ID&quot;...modified&quot; , S = k_t65.S$1160 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$410
out: (t93.O$407)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t92.O$420)
inlined P = IRI_ID&quot;...created&quot; , S = k_t65.S$1179 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$423
out: (t92.O$420)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t91.O$433)
inlined P = IRI_ID&quot;...withEquipment&quot; , S = k_t65.S$1198 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$436
out: (t91.O$433)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t90.O$446)
inlined P = IRI_ID&quot;...isLastFloor&quot; , S = k_t65.S$1217 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$449
out: (t90.O$446)
shadow: ( &lt;none&gt; )
Precode:
0: __ro2sq$458 := Call __ro2sq (t94.O$394)
5: __ro2sq$460 := Call __ro2sq (t93.O$407)
10: __ro2sq$462 := Call __ro2sq (t92.O$420)
15: __ro2sq$464 := Call __ro2sq (t91.O$433)
20: __ro2sq$466 := Call __ro2sq (t89.O$71)
25: __ro2sq$468 := Call __ro2sq (t88.O$381)
30: __ro2sq$470 := Call __ro2sq (t87.O$368)
35: __ro2sq$472 := Call __ro2sq (t86.O$355)
40: __ro2sq$474 := Call __ro2sq (t85.O$342)
45: __ro2sq$476 := Call __ro2sq (t84.O$329)
50: __ro2sq$478 := Call __ro2sq (t83.O$316)
55: __ro2sq$480 := Call __ro2sq (t82.O$303)
60: __ro2sq$482 := Call __ro2sq (t81.O$277)
65: __ro2sq$484 := Call __ro2sq (t80.O$264)
70: __ro2sq$486 := Call __ro2sq (t79.O$251)
75: __rdf_strsqlval$488 := Call __rdf_strsqlval (t78.O$203, 0 )
80: __rdf_strsqlval$490 := Call __rdf_strsqlval (t77.O$188, 0 )
85: __ro2sq$492 := Call __ro2sq (t76.O$175)
90: __ro2sq$494 := Call __ro2sq (t75.O$162)
95: __ro2sq$496 := Call __ro2sq (t74.O$149)
100: __ro2sq$498 := Call __ro2sq (t73.O$136)
105: __ro2sq$500 := Call __ro2sq (t72.O$123)
110: __ro2sq$502 := Call __ro2sq (t71.O$110)
115: __ro2sq$504 := Call __ro2sq (t70.O$290)
120: __ro2sq$506 := Call __ro2sq (t67.O$84)
125: __ro2sq$508 := Call __ro2sq (t66.O$97)
130: __ro2sq$510 := Call __ro2sq (t90.O$446)
135: BReturn 0
outer {
RDF_QUAD 15 rows(t69.O$513)
inlined P = IRI_ID&quot;...vocabulary/images&quot; , S = k_t65.S$1236 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$516
out: (t69.O$513)
shadow: ( &lt;none&gt; )
outer {
RDF_QUAD 1 rows(t68.O$526)
inlined P = IRI_ID&quot;...address&quot; , S = k_t65.S$1255 G = IRI_ID&quot;...sell&quot;
} /* end of outer */
set_ctr$529
out: (t68.O$526)
shadow: ( &lt;none&gt; )
Precode:
0: __ro2sq$538 := Call __ro2sq (t69.O$513)
5: BReturn 0
Sort (t94.O$394, t93.O$407, t92.O$420, t91.O$433, t90.O$446, t89.O$71, t88.O$381, t87.O$368, t86.O$355, t85.O$342, t84.O$329, t83.O$316, t82.O$303, t81.O$277, t80.O$264, t79.O$251, t78.O$203, t77.O$188, t76.O$175, t75.O$162, t74.O$149, t73.O$136, t72.O$123, t71.O$110, t70.O$290, t68.O$526, t67.O$84, t66.O$97, t65.O$62) -&gt; (gb_tmp$543 , __ro2sq$458, __ro2sq$460, __ro2sq$462, __ro2sq$464, __ro2sq$510, __ro2sq$466, __ro2sq$468, __ro2sq$470, __ro2sq$472, __ro2sq$474, __ro2sq$476, __ro2sq$478, __ro2sq$480, __ro2sq$482, __ro2sq$484, __ro2sq$486, __rdf_strsqlval$488, __rdf_strsqlval$490, __ro2sq$492, __ro2sq$494, __ro2sq$496, __ro2sq$498, __ro2sq$500, __ro2sq$502, __ro2sq$504, __ro2sq$506, __ro2sq$508, __ro2sq$68)
user aggregate init
0: ua_ret$544 := Call DB.DBA.GROUP_CONCAT_DISTINCT_INIT (gb_tmp$543 )
7: BReturn 0
user aggregate accumulator
0: ua_ret$544 := Call DB.DBA.GROUP_CONCAT_DISTINCT_ACC (gb_tmp$543 , __ro2sq$538, &lt;c ,&gt;)
7: BReturn 0
}
group by read node
(t94.O$394, t93.O$407, t92.O$420, t91.O$433, t90.O$446, t89.O$71, t88.O$381, t87.O$368, t86.O$355, t85.O$342, t84.O$329, t83.O$316, t82.O$303, t81.O$277, t80.O$264, t79.O$251, t78.O$203, t77.O$188, t76.O$175, t75.O$162, t74.O$149, t73.O$136, t72.O$123, t71.O$110, t70.O$290, t68.O$526, t67.O$84, t66.O$97, t65.O$62, aggregate$542, __ro2sq$458, __ro2sq$460, __ro2sq$462, __ro2sq$464, __ro2sq$510, __ro2sq$466, __ro2sq$468, __ro2sq$470, __ro2sq$472, __ro2sq$474, __ro2sq$476, __ro2sq$478, __ro2sq$480, __ro2sq$482, __ro2sq$484, __ro2sq$486, __rdf_strsqlval$488, __rdf_strsqlval$490, __ro2sq$492, __ro2sq$494, __ro2sq$496, __ro2sq$498, __ro2sq$500, __ro2sq$502, __ro2sq$504, __ro2sq$506, __ro2sq$508, __ro2sq$68)
Precode:
0: __ro2sq$561 := Call __ro2sq (t68.O$526)
5: DB.DBA.GROUP_CONCAT_DISTINCT_FIN$563 := Call DB.DBA.GROUP_CONCAT_DISTINCT_FIN (aggregate$542)
12: BReturn 0
Distinct (__ro2sq$68, __ro2sq$508, __ro2sq$506, __ro2sq$561, DB.DBA.GROUP_CONCAT_DISTINCT_FIN$563, __ro2sq$504, __ro2sq$502, __ro2sq$500, __ro2sq$498, __ro2sq$496, __ro2sq$494, __ro2sq$492, __rdf_strsqlval$490, __rdf_strsqlval$488, __ro2sq$486, __ro2sq$484, __ro2sq$482, __ro2sq$480, __ro2sq$478, __ro2sq$476, __ro2sq$474, __ro2sq$472, __ro2sq$470, __ro2sq$468, __ro2sq$466, __ro2sq$510, __ro2sq$464, __ro2sq$462, __ro2sq$460, __ro2sq$458)
skip node 10 &lt;none&gt; set_no$60
After code:
0: id$30 := := artm __ro2sq$68
4: title$31 := := artm __ro2sq$508
8: description$32 := := artm __ro2sq$506
12: address$33 := := artm __ro2sq$561
16: images$34 := := artm DB.DBA.GROUP_CONCAT_DISTINCT_FIN$563
20: annuity$35 := := artm __ro2sq$504
24: energyLevel$36 := := artm __ro2sq$502
28: floor$37 := := artm __ro2sq$500
32: floorArea$38 := := artm __ro2sq$498
36: usableArea$39 := := artm __ro2sq$496
40: layout$40 := := artm __ro2sq$494
44: state$41 := := artm __ro2sq$492
48: mapLat$42 := := artm __rdf_strsqlval$490
52: mapLon$43 := := artm __rdf_strsqlval$488
56: monthlyFees$44 := := artm __ro2sq$486
60: ownership$45 := := artm __ro2sq$484
64: price$46 := := artm __ro2sq$482
68: structure$47 := := artm __ro2sq$480
72: unitType$48 := := artm __ro2sq$478
76: source$49 := := artm __ro2sq$476
80: hasCellar$50 := := artm __ro2sq$474
84: hasLift$51 := := artm __ro2sq$472
88: hasParking$52 := := artm __ro2sq$470
92: hasTerrace$53 := := artm __ro2sq$468
96: isAuction$54 := := artm __ro2sq$466
100: isLastFloor$55 := := artm __ro2sq$510
104: withEquipment$56 := := artm __ro2sq$464
108: createdAt$57 := := artm __ro2sq$462
112: updatedAt$58 := := artm __ro2sq$460
116: sourceUpdatedAt$59 := := artm __ro2sq$458
120: BReturn 0
Subquery Select(id$30, title$31, description$32, address$33, images$34, annuity$35, energyLevel$36, floor$37, floorArea$38, usableArea$39, layout$40, state$41, mapLat$42, mapLon$43, monthlyFees$44, ownership$45, price$46, structure$47, unitType$48, source$49, hasCellar$50, hasLift$51, hasParking$52, hasTerrace$53, isAuction$54, isLastFloor$55, withEquipment$56, createdAt$57, updatedAt$58, sourceUpdatedAt$59)
}
After code:
0: id$581 := Call __ro2sq (id$30)
5: title$583 := Call __ro2sq (title$31)
10: description$585 := Call __ro2sq (description$32)
15: address$587 := Call __ro2sq (address$33)
20: images$589 := Call __ro2sq (images$34)
25: annuity$591 := Call __ro2sq (annuity$35)
30: energyLevel$593 := Call __ro2sq (energyLevel$36)
35: floor$595 := Call __ro2sq (floor$37)
40: floorArea$597 := Call __ro2sq (floorArea$38)
45: usableArea$599 := Call __ro2sq (usableArea$39)
50: layout$601 := Call __ro2sq (layout$40)
55: state$603 := Call __ro2sq (state$41)
60: mapLat$605 := Call __ro2sq (mapLat$42)
65: mapLon$607 := Call __ro2sq (mapLon$43)
70: monthlyFees$609 := Call __ro2sq (monthlyFees$44)
75: ownership$611 := Call __ro2sq (ownership$45)
80: price$613 := Call __ro2sq (price$46)
85: structure$615 := Call __ro2sq (structure$47)
90: unitType$617 := Call __ro2sq (unitType$48)
95: source$619 := Call __ro2sq (source$49)
100: hasCellar$621 := Call __ro2sq (hasCellar$50)
105: hasLift$623 := Call __ro2sq (hasLift$51)
110: hasParking$625 := Call __ro2sq (hasParking$52)
115: hasTerrace$627 := Call __ro2sq (hasTerrace$53)
120: isAuction$629 := Call __ro2sq (isAuction$54)
125: isLastFloor$631 := Call __ro2sq (isLastFloor$55)
130: withEquipment$633 := Call __ro2sq (withEquipment$56)
135: createdAt$635 := Call __ro2sq (createdAt$57)
140: updatedAt$637 := Call __ro2sq (updatedAt$58)
145: sourceUpdatedAt$639 := Call __ro2sq (sourceUpdatedAt$59)
150: BReturn 0
Select (id$581, title$583, description$585, address$587, images$589, annuity$591, energyLevel$593, floor$595, floorArea$597, usableArea$599, layout$601, state$603, mapLat$605, mapLon$607, monthlyFees$609, ownership$611, price$613, structure$615, unitType$617, source$619, hasCellar$621, hasLift$623, hasParking$625, hasTerrace$627, isAuction$629, isLastFloor$631, withEquipment$633, createdAt$635, updatedAt$637, sourceUpdatedAt$639)
}
</code></pre>
<h5>Internal optimizer data</h5>
<p>
<i>These data are primarily for OpenLink support, to get additional details about the query processing.</i>
<pre class="text-monospace example"><code> QUERY: (line 50) REQUEST TOP NODE (SELECT DISTINCT result-mode):
RETVALS: ARRAY OF NODES with 30 children: {
(line 2) VARIABLE: notNULL exported
NAME: UNAME `id&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 594
(line 2) VARIABLE: exported
NAME: UNAME `title&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 595
(line 2) VARIABLE: exported
NAME: UNAME `description&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 596
(line 2) VARIABLE: exported
NAME: UNAME `address&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 597
(line 2) ALIAS:
ALIAS NAME: UNAME `images&#39;
VALUE: (line 2) FUNCALL:
FUNCTION NAME: UNAME `sql:GROUP_CONCAT_DISTINCT&#39;
AGGREGATE MODE: LONG 1
ARGUMENT: (line 2) VARIABLE: exported
NAME: UNAME `images&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 598
ARGUMENT: (line 2) LITERAL:
VALUE: STRING `,&#39;
(line 2) VARIABLE: exported
NAME: UNAME `annuity&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 599
(line 2) VARIABLE: exported
NAME: UNAME `energyLevel&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 600
(line 2) VARIABLE: exported
NAME: UNAME `floor&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 601
(line 2) VARIABLE: exported
NAME: UNAME `floorArea&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 602
(line 2) VARIABLE: exported
NAME: UNAME `usableArea&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 603
(line 2) VARIABLE: exported
NAME: UNAME `layout&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 604
(line 2) VARIABLE: exported
NAME: UNAME `state&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 605
(line 2) ALIAS:
ALIAS NAME: UNAME `mapLat&#39;
VALUE: (line 2) BUILT-IN CALL:str
ARGUMENT: ARRAY OF NODES with 1 children: {
(line 2) VARIABLE: exported
NAME: UNAME `mapLat&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 606
}
(line 2) ALIAS:
ALIAS NAME: UNAME `mapLon&#39;
VALUE: (line 2) BUILT-IN CALL:str
ARGUMENT: ARRAY OF NODES with 1 children: {
(line 2) VARIABLE: exported
NAME: UNAME `mapLon&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 607
}
(line 2) VARIABLE: exported
NAME: UNAME `monthlyFees&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 608
(line 2) VARIABLE: exported
NAME: UNAME `ownership&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 609
(line 2) VARIABLE: exported
NAME: UNAME `price&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 610
(line 2) VARIABLE: exported
NAME: UNAME `structure&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 611
(line 2) VARIABLE: exported
NAME: UNAME `unitType&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 612
(line 2) VARIABLE: exported
NAME: UNAME `source&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 613
(line 2) VARIABLE: exported
NAME: UNAME `hasCellar&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 614
(line 2) VARIABLE: exported
NAME: UNAME `hasLift&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 615
(line 2) VARIABLE: exported
NAME: UNAME `hasParking&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 616
(line 2) VARIABLE: exported
NAME: UNAME `hasTerrace&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 617
(line 2) VARIABLE: exported
NAME: UNAME `isAuction&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 618
(line 2) VARIABLE: exported
NAME: UNAME `isLastFloor&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 619
(line 2) VARIABLE: exported
NAME: UNAME `withEquipment&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 620
(line 2) VARIABLE: exported
NAME: UNAME `createdAt&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 621
(line 2) VARIABLE: exported
NAME: UNAME `updatedAt&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 622
(line 2) VARIABLE: exported
NAME: UNAME `sourceUpdatedAt&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 623
}
RETVALS SELECT ID: STRING `s_50_98&#39;
SOURCES: EMPTY ARRAY
PATTERN: (line 50) GRAPH PATTERN:WHERE gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 37) GRAPH PATTERN:SELECT result-mode
MEMBERS: EMPTY ARRAY
SUBQUERY: (line 37) REQUEST TOP NODE (SELECT result-mode):
VALMODE FOR RETVALS: STRING `AUTO&#39;
RETVALS: ARRAY OF NODES with 32 children: {
(line 0) ALIAS:
ALIAS NAME: UNAME `entity&#39;
VALUE: (line 37) VARIABLE: notNULL reference exported
NAME: UNAME `entity&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 60
(line 0) ALIAS:
ALIAS NAME: UNAME `id&#39;
VALUE: (line 37) VARIABLE: notNULL exported
NAME: UNAME `id&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 61
(line 0) ALIAS:
ALIAS NAME: UNAME `title&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `title&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 62
(line 0) ALIAS:
ALIAS NAME: UNAME `description&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `description&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 63
(line 0) ALIAS:
ALIAS NAME: UNAME `address&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `address&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 64
(line 0) ALIAS:
ALIAS NAME: UNAME `images&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `images&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 65
(line 0) ALIAS:
ALIAS NAME: UNAME `annuity&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `annuity&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 66
(line 0) ALIAS:
ALIAS NAME: UNAME `energyLevel&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `energyLevel&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 67
(line 0) ALIAS:
ALIAS NAME: UNAME `floor&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `floor&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 68
(line 0) ALIAS:
ALIAS NAME: UNAME `floorArea&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `floorArea&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 69
(line 0) ALIAS:
ALIAS NAME: UNAME `usableArea&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `usableArea&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 70
(line 0) ALIAS:
ALIAS NAME: UNAME `layout&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `layout&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 71
(line 0) ALIAS:
ALIAS NAME: UNAME `state&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `state&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 72
(line 0) ALIAS:
ALIAS NAME: UNAME `mapLat&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `mapLat&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 73
(line 0) ALIAS:
ALIAS NAME: UNAME `mapLon&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `mapLon&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 74
(line 0) ALIAS:
ALIAS NAME: UNAME `monthlyFees&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `monthlyFees&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 75
(line 0) ALIAS:
ALIAS NAME: UNAME `ownership&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `ownership&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 76
(line 0) ALIAS:
ALIAS NAME: UNAME `price&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `price&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 77
(line 0) ALIAS:
ALIAS NAME: UNAME `structure&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `structure&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 78
(line 0) ALIAS:
ALIAS NAME: UNAME `unitType&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `unitType&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 79
(line 0) ALIAS:
ALIAS NAME: UNAME `source&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `source&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 80
(line 0) ALIAS:
ALIAS NAME: UNAME `hasCellar&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `hasCellar&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 81
(line 0) ALIAS:
ALIAS NAME: UNAME `hasLift&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `hasLift&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 82
(line 0) ALIAS:
ALIAS NAME: UNAME `hasParking&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `hasParking&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 83
(line 0) ALIAS:
ALIAS NAME: UNAME `hasTerrace&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `hasTerrace&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 84
(line 0) ALIAS:
ALIAS NAME: UNAME `isAuction&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `isAuction&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 85
(line 0) ALIAS:
ALIAS NAME: UNAME `isLastFloor&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `isLastFloor&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 86
(line 0) ALIAS:
ALIAS NAME: UNAME `withEquipment&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `withEquipment&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 87
(line 0) ALIAS:
ALIAS NAME: UNAME `createdAt&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `createdAt&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 88
(line 0) ALIAS:
ALIAS NAME: UNAME `updatedAt&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `updatedAt&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 89
(line 0) ALIAS:
ALIAS NAME: UNAME `sourceUpdatedAt&#39;
VALUE: (line 37) VARIABLE: exported
NAME: UNAME `sourceUpdatedAt&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 90
(line 36) ALIAS:
ALIAS NAME: UNAME `mapPoint&#39;
VALUE: (line 36) FUNCALL:
FUNCTION NAME: UNAME `bif:st_point&#39;
ARGUMENT: (line 36) VARIABLE: exported
NAME: UNAME `mapLon&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 74
ARGUMENT: (line 36) VARIABLE: exported
NAME: UNAME `mapLat&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: LONG 0 EQUIV: LONG 73
}
RETVALS SELECT ID: STRING `s_37_60&#39;
SOURCES: EMPTY ARRAY
PATTERN: (line 37) GRAPH PATTERN:WHERE gp
MEMBERS: ARRAY OF NODES with 31 children: {
(line 5) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 5) VARIABLE: notNULL+ reference+ exported (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: STRING `s_37_61_t31&#39; EQUIV: LONG 60
PREDICATE: (line 5) QNAME:
IRI: UNAME `http://www.w3.org/1999/02/22-rdf-syntax-ns#type&#39;
OBJECT: (line 5) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/RealEstate&#39;
SELECT ID: STRING `s_37_60&#39;
TABLE ID: STRING `s_37_61_t31&#39;
(line 6) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 6) VARIABLE: notNULL+ reference+ exported (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: STRING `s_37_61_t32&#39; EQUIV: LONG 60
PREDICATE: (line 6) QNAME:
IRI: UNAME `http://purl.org/dc/terms/identifier&#39;
OBJECT: (line 6) VARIABLE: notNULL+ exported (object)
NAME: UNAME `id&#39; SELECT ID: STRING `s_37_60&#39; TABLE ID: STRING `s_37_61_t32&#39; EQUIV: LONG 61
SELECT ID: STRING `s_37_60&#39;
TABLE ID: STRING `s_37_61_t32&#39;
(line 8) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 7) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 7) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_8_3&#39; TABLE ID: STRING `s_8_3_t0&#39; EQUIV: LONG 2
PREDICATE: (line 7) QNAME:
IRI: UNAME `http://purl.org/dc/terms/title&#39;
OBJECT: (line 7) VARIABLE: notNULL+ (object)
NAME: UNAME `title&#39; SELECT ID: STRING `s_8_3&#39; TABLE ID: STRING `s_8_3_t0&#39; EQUIV: LONG 3
SELECT ID: STRING `s_8_3&#39;
TABLE ID: STRING `s_8_3_t0&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_8_3&#39;
EQUIVS: 2 3
(line 9) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 8) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 8) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_9_5&#39; TABLE ID: STRING `s_9_5_t1&#39; EQUIV: LONG 4
PREDICATE: (line 8) QNAME:
IRI: UNAME `http://purl.org/dc/terms/description&#39;
OBJECT: (line 8) VARIABLE: notNULL+ (object)
NAME: UNAME `description&#39; SELECT ID: STRING `s_9_5&#39; TABLE ID: STRING `s_9_5_t1&#39; EQUIV: LONG 5
SELECT ID: STRING `s_9_5&#39;
TABLE ID: STRING `s_9_5_t1&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_9_5&#39;
EQUIVS: 4 5
(line 10) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 9) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 9) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_10_7&#39; TABLE ID: STRING `s_10_7_t2&#39; EQUIV: LONG 6
PREDICATE: (line 9) QNAME:
IRI: UNAME `http://schema.org/address&#39;
OBJECT: (line 9) VARIABLE: notNULL+ (object)
NAME: UNAME `address&#39; SELECT ID: STRING `s_10_7&#39; TABLE ID: STRING `s_10_7_t2&#39; EQUIV: LONG 7
SELECT ID: STRING `s_10_7&#39;
TABLE ID: STRING `s_10_7_t2&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_10_7&#39;
EQUIVS: 6 7
(line 11) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 10) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 10) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_11_9&#39; TABLE ID: STRING `s_11_9_t3&#39; EQUIV: LONG 8
PREDICATE: (line 10) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/images&#39;
OBJECT: (line 10) VARIABLE: notNULL+ (object)
NAME: UNAME `images&#39; SELECT ID: STRING `s_11_9&#39; TABLE ID: STRING `s_11_9_t3&#39; EQUIV: LONG 9
SELECT ID: STRING `s_11_9&#39;
TABLE ID: STRING `s_11_9_t3&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_11_9&#39;
EQUIVS: 8 9
(line 12) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 11) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 11) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_12_11&#39; TABLE ID: STRING `s_12_11_t4&#39; EQUIV: LONG 10
PREDICATE: (line 11) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/annuity&#39;
OBJECT: (line 11) VARIABLE: notNULL+ (object)
NAME: UNAME `annuity&#39; SELECT ID: STRING `s_12_11&#39; TABLE ID: STRING `s_12_11_t4&#39; EQUIV: LONG 11
SELECT ID: STRING `s_12_11&#39;
TABLE ID: STRING `s_12_11_t4&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_12_11&#39;
EQUIVS: 10 11
(line 13) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 12) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 12) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_13_13&#39; TABLE ID: STRING `s_13_13_t5&#39; EQUIV: LONG 12
PREDICATE: (line 12) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/energyLevel&#39;
OBJECT: (line 12) VARIABLE: notNULL+ (object)
NAME: UNAME `energyLevel&#39; SELECT ID: STRING `s_13_13&#39; TABLE ID: STRING `s_13_13_t5&#39; EQUIV: LONG 13
SELECT ID: STRING `s_13_13&#39;
TABLE ID: STRING `s_13_13_t5&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_13_13&#39;
EQUIVS: 12 13
(line 14) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 13) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 13) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_14_15&#39; TABLE ID: STRING `s_14_15_t6&#39; EQUIV: LONG 14
PREDICATE: (line 13) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/floor&#39;
OBJECT: (line 13) VARIABLE: notNULL+ (object)
NAME: UNAME `floor&#39; SELECT ID: STRING `s_14_15&#39; TABLE ID: STRING `s_14_15_t6&#39; EQUIV: LONG 15
SELECT ID: STRING `s_14_15&#39;
TABLE ID: STRING `s_14_15_t6&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_14_15&#39;
EQUIVS: 14 15
(line 15) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 14) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 14) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_15_17&#39; TABLE ID: STRING `s_15_17_t7&#39; EQUIV: LONG 16
PREDICATE: (line 14) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/floorArea&#39;
OBJECT: (line 14) VARIABLE: notNULL+ (object)
NAME: UNAME `floorArea&#39; SELECT ID: STRING `s_15_17&#39; TABLE ID: STRING `s_15_17_t7&#39; EQUIV: LONG 17
SELECT ID: STRING `s_15_17&#39;
TABLE ID: STRING `s_15_17_t7&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_15_17&#39;
EQUIVS: 16 17
(line 16) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 15) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 15) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_16_19&#39; TABLE ID: STRING `s_16_19_t8&#39; EQUIV: LONG 18
PREDICATE: (line 15) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/usableArea&#39;
OBJECT: (line 15) VARIABLE: notNULL+ (object)
NAME: UNAME `usableArea&#39; SELECT ID: STRING `s_16_19&#39; TABLE ID: STRING `s_16_19_t8&#39; EQUIV: LONG 19
SELECT ID: STRING `s_16_19&#39;
TABLE ID: STRING `s_16_19_t8&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_16_19&#39;
EQUIVS: 18 19
(line 17) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 16) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 16) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_17_21&#39; TABLE ID: STRING `s_17_21_t9&#39; EQUIV: LONG 20
PREDICATE: (line 16) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/layout&#39;
OBJECT: (line 16) VARIABLE: notNULL+ (object)
NAME: UNAME `layout&#39; SELECT ID: STRING `s_17_21&#39; TABLE ID: STRING `s_17_21_t9&#39; EQUIV: LONG 21
SELECT ID: STRING `s_17_21&#39;
TABLE ID: STRING `s_17_21_t9&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_17_21&#39;
EQUIVS: 20 21
(line 18) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 17) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 17) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_18_23&#39; TABLE ID: STRING `s_18_23_t10&#39; EQUIV: LONG 22
PREDICATE: (line 17) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/state&#39;
OBJECT: (line 17) VARIABLE: notNULL+ (object)
NAME: UNAME `state&#39; SELECT ID: STRING `s_18_23&#39; TABLE ID: STRING `s_18_23_t10&#39; EQUIV: LONG 23
SELECT ID: STRING `s_18_23&#39;
TABLE ID: STRING `s_18_23_t10&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_18_23&#39;
EQUIVS: 22 23
(line 19) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 18) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 18) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_19_25&#39; TABLE ID: STRING `s_19_25_t11&#39; EQUIV: LONG 24
PREDICATE: (line 18) QNAME:
IRI: UNAME `http://www.w3.org/2003/01/geo/wgs84_pos#lat&#39;
OBJECT: (line 18) VARIABLE: notNULL+ (object)
NAME: UNAME `mapLat&#39; SELECT ID: STRING `s_19_25&#39; TABLE ID: STRING `s_19_25_t11&#39; EQUIV: LONG 25
SELECT ID: STRING `s_19_25&#39;
TABLE ID: STRING `s_19_25_t11&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_19_25&#39;
EQUIVS: 24 25
(line 20) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 19) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 19) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_20_27&#39; TABLE ID: STRING `s_20_27_t12&#39; EQUIV: LONG 26
PREDICATE: (line 19) QNAME:
IRI: UNAME `http://www.w3.org/2003/01/geo/wgs84_pos#long&#39;
OBJECT: (line 19) VARIABLE: notNULL+ (object)
NAME: UNAME `mapLon&#39; SELECT ID: STRING `s_20_27&#39; TABLE ID: STRING `s_20_27_t12&#39; EQUIV: LONG 27
SELECT ID: STRING `s_20_27&#39;
TABLE ID: STRING `s_20_27_t12&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_20_27&#39;
EQUIVS: 26 27
(line 21) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 20) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 20) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_21_29&#39; TABLE ID: STRING `s_21_29_t13&#39; EQUIV: LONG 28
PREDICATE: (line 20) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/monthlyFees&#39;
OBJECT: (line 20) VARIABLE: notNULL+ (object)
NAME: UNAME `monthlyFees&#39; SELECT ID: STRING `s_21_29&#39; TABLE ID: STRING `s_21_29_t13&#39; EQUIV: LONG 29
SELECT ID: STRING `s_21_29&#39;
TABLE ID: STRING `s_21_29_t13&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_21_29&#39;
EQUIVS: 28 29
(line 22) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 21) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 21) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_22_31&#39; TABLE ID: STRING `s_22_31_t14&#39; EQUIV: LONG 30
PREDICATE: (line 21) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/ownership&#39;
OBJECT: (line 21) VARIABLE: notNULL+ (object)
NAME: UNAME `ownership&#39; SELECT ID: STRING `s_22_31&#39; TABLE ID: STRING `s_22_31_t14&#39; EQUIV: LONG 31
SELECT ID: STRING `s_22_31&#39;
TABLE ID: STRING `s_22_31_t14&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_22_31&#39;
EQUIVS: 30 31
(line 23) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 22) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 22) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_23_33&#39; TABLE ID: STRING `s_23_33_t15&#39; EQUIV: LONG 32
PREDICATE: (line 22) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/price&#39;
OBJECT: (line 22) VARIABLE: notNULL+ (object)
NAME: UNAME `price&#39; SELECT ID: STRING `s_23_33&#39; TABLE ID: STRING `s_23_33_t15&#39; EQUIV: LONG 33
SELECT ID: STRING `s_23_33&#39;
TABLE ID: STRING `s_23_33_t15&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_23_33&#39;
EQUIVS: 32 33
(line 24) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 23) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 23) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_24_35&#39; TABLE ID: STRING `s_24_35_t16&#39; EQUIV: LONG 34
PREDICATE: (line 23) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/structure&#39;
OBJECT: (line 23) VARIABLE: notNULL+ (object)
NAME: UNAME `structure&#39; SELECT ID: STRING `s_24_35&#39; TABLE ID: STRING `s_24_35_t16&#39; EQUIV: LONG 35
SELECT ID: STRING `s_24_35&#39;
TABLE ID: STRING `s_24_35_t16&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_24_35&#39;
EQUIVS: 34 35
(line 25) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 24) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 24) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_25_37&#39; TABLE ID: STRING `s_25_37_t17&#39; EQUIV: LONG 36
PREDICATE: (line 24) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/unitType&#39;
OBJECT: (line 24) VARIABLE: notNULL+ (object)
NAME: UNAME `unitType&#39; SELECT ID: STRING `s_25_37&#39; TABLE ID: STRING `s_25_37_t17&#39; EQUIV: LONG 37
SELECT ID: STRING `s_25_37&#39;
TABLE ID: STRING `s_25_37_t17&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_25_37&#39;
EQUIVS: 36 37
(line 26) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 25) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 25) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_26_39&#39; TABLE ID: STRING `s_26_39_t18&#39; EQUIV: LONG 38
PREDICATE: (line 25) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/source&#39;
OBJECT: (line 25) VARIABLE: notNULL+ (object)
NAME: UNAME `source&#39; SELECT ID: STRING `s_26_39&#39; TABLE ID: STRING `s_26_39_t18&#39; EQUIV: LONG 39
SELECT ID: STRING `s_26_39&#39;
TABLE ID: STRING `s_26_39_t18&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_26_39&#39;
EQUIVS: 38 39
(line 27) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 26) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 26) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_27_41&#39; TABLE ID: STRING `s_27_41_t19&#39; EQUIV: LONG 40
PREDICATE: (line 26) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/hasCellar&#39;
OBJECT: (line 26) VARIABLE: notNULL+ (object)
NAME: UNAME `hasCellar&#39; SELECT ID: STRING `s_27_41&#39; TABLE ID: STRING `s_27_41_t19&#39; EQUIV: LONG 41
SELECT ID: STRING `s_27_41&#39;
TABLE ID: STRING `s_27_41_t19&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_27_41&#39;
EQUIVS: 40 41
(line 28) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 27) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 27) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_28_43&#39; TABLE ID: STRING `s_28_43_t20&#39; EQUIV: LONG 42
PREDICATE: (line 27) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/hasLift&#39;
OBJECT: (line 27) VARIABLE: notNULL+ (object)
NAME: UNAME `hasLift&#39; SELECT ID: STRING `s_28_43&#39; TABLE ID: STRING `s_28_43_t20&#39; EQUIV: LONG 43
SELECT ID: STRING `s_28_43&#39;
TABLE ID: STRING `s_28_43_t20&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_28_43&#39;
EQUIVS: 42 43
(line 29) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 28) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 28) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_29_45&#39; TABLE ID: STRING `s_29_45_t21&#39; EQUIV: LONG 44
PREDICATE: (line 28) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/hasParking&#39;
OBJECT: (line 28) VARIABLE: notNULL+ (object)
NAME: UNAME `hasParking&#39; SELECT ID: STRING `s_29_45&#39; TABLE ID: STRING `s_29_45_t21&#39; EQUIV: LONG 45
SELECT ID: STRING `s_29_45&#39;
TABLE ID: STRING `s_29_45_t21&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_29_45&#39;
EQUIVS: 44 45
(line 30) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 29) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 29) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_30_47&#39; TABLE ID: STRING `s_30_47_t22&#39; EQUIV: LONG 46
PREDICATE: (line 29) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/hasTerrace&#39;
OBJECT: (line 29) VARIABLE: notNULL+ (object)
NAME: UNAME `hasTerrace&#39; SELECT ID: STRING `s_30_47&#39; TABLE ID: STRING `s_30_47_t22&#39; EQUIV: LONG 47
SELECT ID: STRING `s_30_47&#39;
TABLE ID: STRING `s_30_47_t22&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_30_47&#39;
EQUIVS: 46 47
(line 31) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 30) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 30) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_31_49&#39; TABLE ID: STRING `s_31_49_t23&#39; EQUIV: LONG 48
PREDICATE: (line 30) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/isAuction&#39;
OBJECT: (line 30) VARIABLE: notNULL+ (object)
NAME: UNAME `isAuction&#39; SELECT ID: STRING `s_31_49&#39; TABLE ID: STRING `s_31_49_t23&#39; EQUIV: LONG 49
SELECT ID: STRING `s_31_49&#39;
TABLE ID: STRING `s_31_49_t23&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_31_49&#39;
EQUIVS: 48 49
(line 32) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 31) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 31) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_32_51&#39; TABLE ID: STRING `s_32_51_t24&#39; EQUIV: LONG 50
PREDICATE: (line 31) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/isLastFloor&#39;
OBJECT: (line 31) VARIABLE: notNULL+ (object)
NAME: UNAME `isLastFloor&#39; SELECT ID: STRING `s_32_51&#39; TABLE ID: STRING `s_32_51_t24&#39; EQUIV: LONG 51
SELECT ID: STRING `s_32_51&#39;
TABLE ID: STRING `s_32_51_t24&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_32_51&#39;
EQUIVS: 50 51
(line 33) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 32) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 32) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_33_53&#39; TABLE ID: STRING `s_33_53_t25&#39; EQUIV: LONG 52
PREDICATE: (line 32) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/withEquipment&#39;
OBJECT: (line 32) VARIABLE: notNULL+ (object)
NAME: UNAME `withEquipment&#39; SELECT ID: STRING `s_33_53&#39; TABLE ID: STRING `s_33_53_t25&#39; EQUIV: LONG 53
SELECT ID: STRING `s_33_53&#39;
TABLE ID: STRING `s_33_53_t25&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_33_53&#39;
EQUIVS: 52 53
(line 34) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 33) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 33) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_34_55&#39; TABLE ID: STRING `s_34_55_t26&#39; EQUIV: LONG 54
PREDICATE: (line 33) QNAME:
IRI: UNAME `http://purl.org/dc/terms/created&#39;
OBJECT: (line 33) VARIABLE: notNULL+ (object)
NAME: UNAME `createdAt&#39; SELECT ID: STRING `s_34_55&#39; TABLE ID: STRING `s_34_55_t26&#39; EQUIV: LONG 55
SELECT ID: STRING `s_34_55&#39;
TABLE ID: STRING `s_34_55_t26&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_34_55&#39;
EQUIVS: 54 55
(line 35) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 34) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 34) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_35_57&#39; TABLE ID: STRING `s_35_57_t27&#39; EQUIV: LONG 56
PREDICATE: (line 34) QNAME:
IRI: UNAME `http://purl.org/dc/terms/modified&#39;
OBJECT: (line 34) VARIABLE: notNULL+ (object)
NAME: UNAME `updatedAt&#39; SELECT ID: STRING `s_35_57&#39; TABLE ID: STRING `s_35_57_t27&#39; EQUIV: LONG 57
SELECT ID: STRING `s_35_57&#39;
TABLE ID: STRING `s_35_57_t27&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_35_57&#39;
EQUIVS: 56 57
(line 36) GRAPH PATTERN:OPTIONAL gp
MEMBERS: ARRAY OF NODES with 1 children: {
(line 35) TRIPLE:
GRAPH: (line 4) QNAME:
IRI: UNAME `http://reality-maker.cz/graph/sell&#39;
SUBJECT: (line 35) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `entity&#39; SELECT ID: STRING `s_36_59&#39; TABLE ID: STRING `s_36_59_t28&#39; EQUIV: LONG 58
PREDICATE: (line 35) QNAME:
IRI: UNAME `http://reality-maker.cz/vocabulary/sourceModified&#39;
OBJECT: (line 35) VARIABLE: notNULL+ (object)
NAME: UNAME `sourceUpdatedAt&#39; SELECT ID: STRING `s_36_59&#39; TABLE ID: STRING `s_36_59_t28&#39; EQUIV: LONG 59
SELECT ID: STRING `s_36_59&#39;
TABLE ID: STRING `s_36_59_t28&#39;
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_36_59&#39;
EQUIVS: 58 59
}
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_37_60&#39;
EQUIVS: 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
OFFSET: LONG 0
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_37_90&#39;
EQUIVS: 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584
}
FILTERS: ARRAY OF NODES with 1 children: {
(line 47) GRAPH PATTERN:SELECT result-mode
MEMBERS: EMPTY ARRAY
SUBQUERY: (line 47) REQUEST TOP NODE (ASK result-mode):
VALMODE FOR RETVALS: STRING `AUTO&#39;
RETVALS: EMPTY ARRAY
RETVALS SELECT ID: STRING `s_47_95&#39;
SOURCES: EMPTY ARRAY
PATTERN: (line 47) GRAPH PATTERN:WHERE gp
MEMBERS: ARRAY OF NODES with 3 children: {
(line 41) TRIPLE:
GRAPH: (line 38) QNAME:
IRI: UNAME `http://reality-maker.cz/osm/cze/prague&#39;
SUBJECT: (line 41) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `amenityIRI&#39; SELECT ID: STRING `s_47_95&#39; TABLE ID: STRING `s_47_95_t33&#39; EQUIV: LONG 585
PREDICATE: (line 41) QNAME:
IRI: UNAME `http://www.w3.org/1999/02/22-rdf-syntax-ns#type&#39;
OBJECT: (line 41) QNAME:
IRI: UNAME `https://www.openstreetmap.org/node&#39;
SELECT ID: STRING `s_47_95&#39;
TABLE ID: STRING `s_47_95_t33&#39;
(line 42) TRIPLE:
GRAPH: (line 38) QNAME:
IRI: UNAME `http://reality-maker.cz/osm/cze/prague&#39;
SUBJECT: (line 41) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `amenityIRI&#39; SELECT ID: STRING `s_47_95&#39; TABLE ID: STRING `s_47_95_t34&#39; EQUIV: LONG 585
PREDICATE: (line 42) QNAME:
IRI: UNAME `http://www.opengis.net/ont/geosparql#hasGeometry&#39;
OBJECT: (line 42) VARIABLE: notNULL+ (object)
NAME: UNAME `amenityGeo&#39; SELECT ID: STRING `s_47_95&#39; TABLE ID: STRING `s_47_95_t34&#39; EQUIV: LONG 586
SELECT ID: STRING `s_47_95&#39;
TABLE ID: STRING `s_47_95_t34&#39;
(line 43) TRIPLE:
GRAPH: (line 38) QNAME:
IRI: UNAME `http://reality-maker.cz/osm/cze/prague&#39;
SUBJECT: (line 41) VARIABLE: notNULL+ reference+ (subject)
NAME: UNAME `amenityIRI&#39; SELECT ID: STRING `s_47_95&#39; TABLE ID: STRING `s_47_95_t35&#39; EQUIV: LONG 585
PREDICATE: (line 43) QNAME:
IRI: UNAME `https://www.openstreetmap.org/wiki/Key:amenity&#39;
OBJECT: (line 43) LITERAL:
VALUE: STRING `restaurant&#39;
SELECT ID: STRING `s_47_95&#39;
TABLE ID: STRING `s_47_95_t35&#39;
}
FILTERS: ARRAY OF NODES with 1 children: {
(line 45) OPERATOR EXPRESSION (boolean operation &#39;&gt;=&#39;):
LEFT: (line 45) LITERAL:
VALUE: LONG 500
DATATYPE: UNAME `http://www.w3.org/2001/XMLSchema#integer&#39;
RIGHT: (line 45) FUNCALL:
FUNCTION NAME: UNAME `bif:http://www.opengis.net/def/function/geosparql/distance&#39;
ARGUMENT: (line 45) VARIABLE: EXTERNAL always-NULL
NAME: UNAME `mapPoint&#39; SELECT ID: STRING `s_47_95&#39; TABLE ID: LONG 0 EQUIV: LONG 587
ARGUMENT: (line 45) VARIABLE: notNULL
NAME: UNAME `amenityGeo&#39; SELECT ID: STRING `s_47_95&#39; TABLE ID: LONG 0 EQUIV: LONG 586
ARGUMENT: (line 45) QNAME:
IRI: UNAME `http://www.opengis.net/def/uom/OGC/1.0/metre&#39;
}
SELECT ID: STRING `s_47_95&#39;
EQUIVS: 585 586 587
LIMIT: LONG 1
FILTERS: EMPTY ARRAY
SELECT ID: STRING `s_47_96&#39;
EQUIVS: 588 590 592
}
SELECT ID: STRING `s_50_98&#39;
EQUIVS: 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 661
GROUPINGS: ARRAY OF NODES with 29 children: {
(line 50) VARIABLE: exported
NAME: UNAME `sourceUpdatedAt&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 623
(line 50) VARIABLE: exported
NAME: UNAME `updatedAt&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 622
(line 50) VARIABLE: exported
NAME: UNAME `createdAt&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 621
(line 50) VARIABLE: exported
NAME: UNAME `withEquipment&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 620
(line 50) VARIABLE: exported
NAME: UNAME `isLastFloor&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 619
(line 50) VARIABLE: exported
NAME: UNAME `isAuction&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 618
(line 50) VARIABLE: exported
NAME: UNAME `hasTerrace&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 617
(line 50) VARIABLE: exported
NAME: UNAME `hasParking&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 616
(line 50) VARIABLE: exported
NAME: UNAME `hasLift&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 615
(line 50) VARIABLE: exported
NAME: UNAME `hasCellar&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 614
(line 50) VARIABLE: exported
NAME: UNAME `source&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 613
(line 50) VARIABLE: exported
NAME: UNAME `unitType&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 612
(line 50) VARIABLE: exported
NAME: UNAME `structure&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 611
(line 50) VARIABLE: exported
NAME: UNAME `price&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 610
(line 50) VARIABLE: exported
NAME: UNAME `ownership&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 609
(line 50) VARIABLE: exported
NAME: UNAME `monthlyFees&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 608
(line 50) VARIABLE: exported
NAME: UNAME `mapLon&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 607
(line 50) VARIABLE: exported
NAME: UNAME `mapLat&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 606
(line 50) VARIABLE: exported
NAME: UNAME `state&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 605
(line 50) VARIABLE: exported
NAME: UNAME `layout&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 604
(line 50) VARIABLE: exported
NAME: UNAME `usableArea&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 603
(line 50) VARIABLE: exported
NAME: UNAME `floorArea&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 602
(line 50) VARIABLE: exported
NAME: UNAME `floor&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 601
(line 50) VARIABLE: exported
NAME: UNAME `energyLevel&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 600
(line 50) VARIABLE: exported
NAME: UNAME `annuity&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 599
(line 50) VARIABLE: exported
NAME: UNAME `address&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 597
(line 50) VARIABLE: exported
NAME: UNAME `description&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 596
(line 50) VARIABLE: exported
NAME: UNAME `title&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 595
(line 50) VARIABLE: notNULL exported
NAME: UNAME `id&#39; SELECT ID: STRING `s_50_98&#39; TABLE ID: LONG 0 EQUIV: LONG 594
}
LIMIT: LONG 10
EQUIVS:
#0: merged and destroyed
#1: merged and destroyed
#2: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_8_3_t0; notNULL reference)
#3: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: title in s_8_3_t0; notNULL)
#4: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_9_5_t1; notNULL reference)
#5: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: description in s_9_5_t1; notNULL)
#6: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_10_7_t2; notNULL reference)
#7: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: address in s_10_7_t2; notNULL)
#8: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_11_9_t3; notNULL reference)
#9: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: images in s_11_9_t3; notNULL)
#10: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_12_11_t4; notNULL reference)
#11: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: annuity in s_12_11_t4; notNULL)
#12: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_13_13_t5; notNULL reference)
#13: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: energyLevel in s_13_13_t5; notNULL)
#14: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_14_15_t6; notNULL reference)
#15: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: floor in s_14_15_t6; notNULL)
#16: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_15_17_t7; notNULL reference)
#17: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: floorArea in s_15_17_t7; notNULL)
#18: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_16_19_t8; notNULL reference)
#19: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: usableArea in s_16_19_t8; notNULL)
#20: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_17_21_t9; notNULL reference)
#21: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: layout in s_17_21_t9; notNULL)
#22: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_18_23_t10; notNULL reference)
#23: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: state in s_18_23_t10; notNULL)
#24: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_19_25_t11; notNULL reference)
#25: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: mapLat in s_19_25_t11; notNULL)
#26: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_20_27_t12; notNULL reference)
#27: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: mapLon in s_20_27_t12; notNULL)
#28: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_21_29_t13; notNULL reference)
#29: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: monthlyFees in s_21_29_t13; notNULL)
#30: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_22_31_t14; notNULL reference)
#31: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: ownership in s_22_31_t14; notNULL)
#32: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_23_33_t15; notNULL reference)
#33: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: price in s_23_33_t15; notNULL)
#34: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_24_35_t16; notNULL reference)
#35: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: structure in s_24_35_t16; notNULL)
#36: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_25_37_t17; notNULL reference)
#37: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: unitType in s_25_37_t17; notNULL)
#38: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_26_39_t18; notNULL reference)
#39: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: source in s_26_39_t18; notNULL)
#40: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_27_41_t19; notNULL reference)
#41: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: hasCellar in s_27_41_t19; notNULL)
#42: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_28_43_t20; notNULL reference)
#43: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: hasLift in s_28_43_t20; notNULL)
#44: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_29_45_t21; notNULL reference)
#45: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: hasParking in s_29_45_t21; notNULL)
#46: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_30_47_t22; notNULL reference)
#47: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: hasTerrace in s_30_47_t22; notNULL)
#48: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_31_49_t23; notNULL reference)
#49: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: isAuction in s_31_49_t23; notNULL)
#50: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_32_51_t24; notNULL reference)
#51: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: isLastFloor in s_32_51_t24; notNULL)
#52: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_33_53_t25; notNULL reference)
#53: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: withEquipment in s_33_53_t25; notNULL)
#54: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_34_55_t26; notNULL reference)
#55: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: createdAt in s_34_55_t26; notNULL)
#56: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_35_57_t27; notNULL reference)
#57: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: updatedAt in s_35_57_t27; notNULL)
#58: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: entity in s_36_59_t28; notNULL reference)
#59: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 1 gspo, 0 const, 0 opt, 0 subq: sourceUpdatedAt in s_36_59_t28; notNULL)
#60: ( 29 subv (29 bindings, 29 nest.opt.), 0 recv, 2 gspo, 1 const, 0 opt, 0 subq: entity in s_37_60 s_37_61_t32 s_37_61_t31; notNULL reference exported)
#61: ( 0 subv (0 bindings, 0 nest.opt.), 0 recv, 1 gspo, 1 const, 0 opt, 0 subq: id in s_37_60 s_37_61_t32; notNULL exported)
#62: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: title in s_37_60; exported)
#63: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: description in s_37_60; exported)
#64: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: address in s_37_60; exported)
#65: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: images in s_37_60; exported)
#66: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: annuity in s_37_60; exported)
#67: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: energyLevel in s_37_60; exported)
#68: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: floor in s_37_60; exported)
#69: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: floorArea in s_37_60; exported)
#70: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: usableArea in s_37_60; exported)
#71: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: layout in s_37_60; exported)
#72: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: state in s_37_60; exported)
#73: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: mapLat in s_37_60 s_37_60; exported)
#74: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: mapLon in s_37_60 s_37_60; exported)
#75: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: monthlyFees in s_37_60; exported)
#76: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: ownership in s_37_60; exported)
#77: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: price in s_37_60; exported)
#78: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: structure in s_37_60; exported)
#79: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: unitType in s_37_60; exported)
#80: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: source in s_37_60; exported)
#81: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: hasCellar in s_37_60; exported)
#82: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: hasLift in s_37_60; exported)
#83: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: hasParking in s_37_60; exported)
#84: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: hasTerrace in s_37_60; exported)
#85: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: isAuction in s_37_60; exported)
#86: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: isLastFloor in s_37_60; exported)
#87: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: withEquipment in s_37_60; exported)
#88: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: createdAt in s_37_60; exported)
#89: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: updatedAt in s_37_60; exported)
#90: ( 1 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: sourceUpdatedAt in s_37_60; exported)
#91: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: entity in; notNULL reference)
#92: merged and destroyed
#93: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: entity in; notNULL reference)
#94: merged and destroyed
#95: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: entity in; notNULL reference)
#96: merged and destroyed
#97: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: entity in; notNULL reference)
#98: merged and destroyed
#99: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: entity in; notNULL reference)
#100: merged and destroyed
#101: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: entity in; notNULL reference)
#102: merged and destroyed
#103: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: entity in; notNULL reference)
#104: merged and destroyed
#105: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: entity in; notNULL reference)
#106: merged and destroyed
#107: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: entity in; notNULL reference)
#108: merged and destroyed
#109: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: entity in; notNULL reference)
#110: merged and destroyed
#111: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: entity in; notNULL reference)
#112: merged and destroyed
#113: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: entity in; notNULL reference)
#114: merged and destroyed
#115: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: entity in; notNULL reference)
#116: merged and destroyed
#117: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: entity in; notNULL reference)
#118: merged and destroyed
#119: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: id in; notNULL)
#120: merged and destroyed
#121: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: id in; notNULL)
#122: merged and destroyed
#123: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: id in; notNULL)
#124: merged and destroyed
#125: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: id in; notNULL)
#126: merged and destroyed
#127: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: id in; notNULL)
#128: merged and destroyed
#129: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: id in; notNULL)
#130: merged and destroyed
#131: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: id in; notNULL)
#132: merged and destroyed
#133: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: id in; notNULL)
#134: merged and destroyed
#135: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: id in; notNULL)
#136: merged and destroyed
#137: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: id in; notNULL)
#138: merged and destroyed
#139: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: id in; notNULL)
#140: merged and destroyed
#141: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: id in; notNULL)
#142: merged and destroyed
#143: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: id in; notNULL)
#144: merged and destroyed
#145: ( 0 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: id in; notNULL)
#146: merged and destroyed
#147: merged and destroyed
#148: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: title in;)
#149: merged and destroyed
#150: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: title in;)
#151: merged and destroyed
#152: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: title in;)
#153: merged and destroyed
#154: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: title in;)
#155: merged and destroyed
#156: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: title in;)
#157: merged and destroyed
#158: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: title in;)
#159: merged and destroyed
#160: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: title in;)
#161: merged and destroyed
#162: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: title in;)
#163: merged and destroyed
#164: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: title in;)
#165: merged and destroyed
#166: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: title in;)
#167: merged and destroyed
#168: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: title in;)
#169: merged and destroyed
#170: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: title in;)
#171: merged and destroyed
#172: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: title in;)
#173: merged and destroyed
#174: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: title in;)
#175: merged and destroyed
#176: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: description in;)
#177: merged and destroyed
#178: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: description in;)
#179: merged and destroyed
#180: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: description in;)
#181: merged and destroyed
#182: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: description in;)
#183: merged and destroyed
#184: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: description in;)
#185: merged and destroyed
#186: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: description in;)
#187: merged and destroyed
#188: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: description in;)
#189: merged and destroyed
#190: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: description in;)
#191: merged and destroyed
#192: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: description in;)
#193: merged and destroyed
#194: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: description in;)
#195: merged and destroyed
#196: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: description in;)
#197: merged and destroyed
#198: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: description in;)
#199: merged and destroyed
#200: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: description in;)
#201: merged and destroyed
#202: merged and destroyed
#203: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: address in;)
#204: merged and destroyed
#205: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: address in;)
#206: merged and destroyed
#207: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: address in;)
#208: merged and destroyed
#209: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: address in;)
#210: merged and destroyed
#211: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: address in;)
#212: merged and destroyed
#213: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: address in;)
#214: merged and destroyed
#215: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: address in;)
#216: merged and destroyed
#217: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: address in;)
#218: merged and destroyed
#219: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: address in;)
#220: merged and destroyed
#221: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: address in;)
#222: merged and destroyed
#223: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: address in;)
#224: merged and destroyed
#225: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: address in;)
#226: merged and destroyed
#227: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: address in;)
#228: merged and destroyed
#229: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: images in;)
#230: merged and destroyed
#231: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: images in;)
#232: merged and destroyed
#233: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: images in;)
#234: merged and destroyed
#235: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: images in;)
#236: merged and destroyed
#237: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: images in;)
#238: merged and destroyed
#239: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: images in;)
#240: merged and destroyed
#241: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: images in;)
#242: merged and destroyed
#243: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: images in;)
#244: merged and destroyed
#245: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: images in;)
#246: merged and destroyed
#247: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: images in;)
#248: merged and destroyed
#249: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: images in;)
#250: merged and destroyed
#251: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: images in;)
#252: merged and destroyed
#253: merged and destroyed
#254: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: annuity in;)
#255: merged and destroyed
#256: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: annuity in;)
#257: merged and destroyed
#258: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: annuity in;)
#259: merged and destroyed
#260: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: annuity in;)
#261: merged and destroyed
#262: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: annuity in;)
#263: merged and destroyed
#264: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: annuity in;)
#265: merged and destroyed
#266: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: annuity in;)
#267: merged and destroyed
#268: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: annuity in;)
#269: merged and destroyed
#270: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: annuity in;)
#271: merged and destroyed
#272: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: annuity in;)
#273: merged and destroyed
#274: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: annuity in;)
#275: merged and destroyed
#276: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: annuity in;)
#277: merged and destroyed
#278: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: energyLevel in;)
#279: merged and destroyed
#280: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: energyLevel in;)
#281: merged and destroyed
#282: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: energyLevel in;)
#283: merged and destroyed
#284: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: energyLevel in;)
#285: merged and destroyed
#286: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: energyLevel in;)
#287: merged and destroyed
#288: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: energyLevel in;)
#289: merged and destroyed
#290: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: energyLevel in;)
#291: merged and destroyed
#292: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: energyLevel in;)
#293: merged and destroyed
#294: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: energyLevel in;)
#295: merged and destroyed
#296: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: energyLevel in;)
#297: merged and destroyed
#298: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: energyLevel in;)
#299: merged and destroyed
#300: merged and destroyed
#301: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floor in;)
#302: merged and destroyed
#303: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floor in;)
#304: merged and destroyed
#305: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floor in;)
#306: merged and destroyed
#307: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floor in;)
#308: merged and destroyed
#309: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floor in;)
#310: merged and destroyed
#311: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floor in;)
#312: merged and destroyed
#313: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floor in;)
#314: merged and destroyed
#315: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floor in;)
#316: merged and destroyed
#317: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floor in;)
#318: merged and destroyed
#319: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floor in;)
#320: merged and destroyed
#321: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floor in;)
#322: merged and destroyed
#323: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floorArea in;)
#324: merged and destroyed
#325: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floorArea in;)
#326: merged and destroyed
#327: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floorArea in;)
#328: merged and destroyed
#329: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floorArea in;)
#330: merged and destroyed
#331: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floorArea in;)
#332: merged and destroyed
#333: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floorArea in;)
#334: merged and destroyed
#335: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floorArea in;)
#336: merged and destroyed
#337: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floorArea in;)
#338: merged and destroyed
#339: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floorArea in;)
#340: merged and destroyed
#341: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: floorArea in;)
#342: merged and destroyed
#343: merged and destroyed
#344: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: usableArea in;)
#345: merged and destroyed
#346: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: usableArea in;)
#347: merged and destroyed
#348: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: usableArea in;)
#349: merged and destroyed
#350: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: usableArea in;)
#351: merged and destroyed
#352: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: usableArea in;)
#353: merged and destroyed
#354: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: usableArea in;)
#355: merged and destroyed
#356: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: usableArea in;)
#357: merged and destroyed
#358: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: usableArea in;)
#359: merged and destroyed
#360: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: usableArea in;)
#361: merged and destroyed
#362: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: usableArea in;)
#363: merged and destroyed
#364: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: layout in;)
#365: merged and destroyed
#366: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: layout in;)
#367: merged and destroyed
#368: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: layout in;)
#369: merged and destroyed
#370: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: layout in;)
#371: merged and destroyed
#372: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: layout in;)
#373: merged and destroyed
#374: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: layout in;)
#375: merged and destroyed
#376: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: layout in;)
#377: merged and destroyed
#378: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: layout in;)
#379: merged and destroyed
#380: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: layout in;)
#381: merged and destroyed
#382: merged and destroyed
#383: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: state in;)
#384: merged and destroyed
#385: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: state in;)
#386: merged and destroyed
#387: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: state in;)
#388: merged and destroyed
#389: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: state in;)
#390: merged and destroyed
#391: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: state in;)
#392: merged and destroyed
#393: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: state in;)
#394: merged and destroyed
#395: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: state in;)
#396: merged and destroyed
#397: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: state in;)
#398: merged and destroyed
#399: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: state in;)
#400: merged and destroyed
#401: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: mapLat in;)
#402: merged and destroyed
#403: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: mapLat in;)
#404: merged and destroyed
#405: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: mapLat in;)
#406: merged and destroyed
#407: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: mapLat in;)
#408: merged and destroyed
#409: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: mapLat in;)
#410: merged and destroyed
#411: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: mapLat in;)
#412: merged and destroyed
#413: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: mapLat in;)
#414: merged and destroyed
#415: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: mapLat in;)
#416: merged and destroyed
#417: merged and destroyed
#418: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: mapLon in;)
#419: merged and destroyed
#420: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: mapLon in;)
#421: merged and destroyed
#422: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: mapLon in;)
#423: merged and destroyed
#424: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: mapLon in;)
#425: merged and destroyed
#426: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: mapLon in;)
#427: merged and destroyed
#428: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: mapLon in;)
#429: merged and destroyed
#430: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: mapLon in;)
#431: merged and destroyed
#432: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: mapLon in;)
#433: merged and destroyed
#434: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: monthlyFees in;)
#435: merged and destroyed
#436: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: monthlyFees in;)
#437: merged and destroyed
#438: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: monthlyFees in;)
#439: merged and destroyed
#440: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: monthlyFees in;)
#441: merged and destroyed
#442: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: monthlyFees in;)
#443: merged and destroyed
#444: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: monthlyFees in;)
#445: merged and destroyed
#446: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: monthlyFees in;)
#447: merged and destroyed
#448: merged and destroyed
#449: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: ownership in;)
#450: merged and destroyed
#451: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: ownership in;)
#452: merged and destroyed
#453: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: ownership in;)
#454: merged and destroyed
#455: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: ownership in;)
#456: merged and destroyed
#457: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: ownership in;)
#458: merged and destroyed
#459: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: ownership in;)
#460: merged and destroyed
#461: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: ownership in;)
#462: merged and destroyed
#463: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: price in;)
#464: merged and destroyed
#465: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: price in;)
#466: merged and destroyed
#467: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: price in;)
#468: merged and destroyed
#469: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: price in;)
#470: merged and destroyed
#471: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: price in;)
#472: merged and destroyed
#473: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: price in;)
#474: merged and destroyed
#475: merged and destroyed
#476: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: structure in;)
#477: merged and destroyed
#478: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: structure in;)
#479: merged and destroyed
#480: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: structure in;)
#481: merged and destroyed
#482: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: structure in;)
#483: merged and destroyed
#484: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: structure in;)
#485: merged and destroyed
#486: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: structure in;)
#487: merged and destroyed
#488: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: unitType in;)
#489: merged and destroyed
#490: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: unitType in;)
#491: merged and destroyed
#492: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: unitType in;)
#493: merged and destroyed
#494: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: unitType in;)
#495: merged and destroyed
#496: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: unitType in;)
#497: merged and destroyed
#498: merged and destroyed
#499: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: source in;)
#500: merged and destroyed
#501: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: source in;)
#502: merged and destroyed
#503: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: source in;)
#504: merged and destroyed
#505: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: source in;)
#506: merged and destroyed
#507: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: source in;)
#508: merged and destroyed
#509: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: hasCellar in;)
#510: merged and destroyed
#511: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: hasCellar in;)
#512: merged and destroyed
#513: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: hasCellar in;)
#514: merged and destroyed
#515: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: hasCellar in;)
#516: merged and destroyed
#517: merged and destroyed
#518: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: hasLift in;)
#519: merged and destroyed
#520: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: hasLift in;)
#521: merged and destroyed
#522: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: hasLift in;)
#523: merged and destroyed
#524: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: hasLift in;)
#525: merged and destroyed
#526: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: hasParking in;)
#527: merged and destroyed
#528: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: hasParking in;)
#529: merged and destroyed
#530: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: hasParking in;)
#531: merged and destroyed
#532: merged and destroyed
#533: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: hasTerrace in;)
#534: merged and destroyed
#535: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: hasTerrace in;)
#536: merged and destroyed
#537: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: hasTerrace in;)
#538: merged and destroyed
#539: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: isAuction in;)
#540: merged and destroyed
#541: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: isAuction in;)
#542: merged and destroyed
#543: merged and destroyed
#544: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: isLastFloor in;)
#545: merged and destroyed
#546: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: isLastFloor in;)
#547: merged and destroyed
#548: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: withEquipment in;)
#549: merged and destroyed
#550: merged and destroyed
#551: ( 0 subv (1 bindings, 1 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 0 subq: createdAt in;)
#552: merged and destroyed
#553: ( 0 subv (0 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 0 opt, 1 subq: entity in; notNULL reference exported)
#554: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: id in; notNULL exported)
#555: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: title in; exported)
#556: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: description in; exported)
#557: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: address in; exported)
#558: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: images in; exported)
#559: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: annuity in; exported)
#560: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: energyLevel in; exported)
#561: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: floor in; exported)
#562: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: floorArea in; exported)
#563: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: usableArea in; exported)
#564: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: layout in; exported)
#565: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: state in; exported)
#566: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: mapLat in; exported)
#567: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: mapLon in; exported)
#568: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: monthlyFees in; exported)
#569: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: ownership in; exported)
#570: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: price in; exported)
#571: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: structure in; exported)
#572: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: unitType in; exported)
#573: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: source in; exported)
#574: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: hasCellar in; exported)
#575: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: hasLift in; exported)
#576: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: hasParking in; exported)
#577: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: hasTerrace in; exported)
#578: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: isAuction in; exported)
#579: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: isLastFloor in; exported)
#580: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: withEquipment in; exported)
#581: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: createdAt in; exported)
#582: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: updatedAt in; exported)
#583: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: sourceUpdatedAt in; exported)
#584: ( 0 subv (0 bindings, 0 nest.opt.), 1 recv, 0 gspo, 0 const, 0 opt, 1 subq: mapPoint in; lit)
#585: ( 0 subv (0 bindings, 0 nest.opt.), 0 recv, 3 gspo, 0 const, 0 opt, 0 subq: amenityIRI in s_47_95_t33 s_47_95_t34 s_47_95_t35; notNULL reference)
#586: ( 0 subv (0 bindings, 0 nest.opt.), 0 recv, 1 gspo, 1 const, 0 opt, 0 subq: amenityGeo in s_47_95_t34 s_47_95; notNULL)
#587: ( 0 subv (0 bindings, 0 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: mapPoint in s_47_95; EXTERNAL always-NULL; parent #661)
#588: ( 0 subv (0 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 7 opt, 0 subq: mapPoint in;)
#589: merged and destroyed
#590: ( 0 subv (0 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 7 opt, 0 subq: amenityGeo in;)
#591: merged and destroyed
#592: ( 0 subv (0 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 7 opt, 0 subq: amenityIRI in;)
#593: merged and destroyed
#594: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: id in s_50_98 s_50_98; notNULL exported)
#595: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: title in s_50_98 s_50_98; exported)
#596: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: description in s_50_98 s_50_98; exported)
#597: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: address in s_50_98 s_50_98; exported)
#598: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 1 const, 0 opt, 0 subq: images in s_50_98; exported)
#599: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: annuity in s_50_98 s_50_98; exported)
#600: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: energyLevel in s_50_98 s_50_98; exported)
#601: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: floor in s_50_98 s_50_98; exported)
#602: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: floorArea in s_50_98 s_50_98; exported)
#603: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: usableArea in s_50_98 s_50_98; exported)
#604: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: layout in s_50_98 s_50_98; exported)
#605: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: state in s_50_98 s_50_98; exported)
#606: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: mapLat in s_50_98 s_50_98; exported)
#607: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: mapLon in s_50_98 s_50_98; exported)
#608: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: monthlyFees in s_50_98 s_50_98; exported)
#609: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: ownership in s_50_98 s_50_98; exported)
#610: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: price in s_50_98 s_50_98; exported)
#611: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: structure in s_50_98 s_50_98; exported)
#612: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: unitType in s_50_98 s_50_98; exported)
#613: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: source in s_50_98 s_50_98; exported)
#614: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: hasCellar in s_50_98 s_50_98; exported)
#615: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: hasLift in s_50_98 s_50_98; exported)
#616: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: hasParking in s_50_98 s_50_98; exported)
#617: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: hasTerrace in s_50_98 s_50_98; exported)
#618: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: isAuction in s_50_98 s_50_98; exported)
#619: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: isLastFloor in s_50_98 s_50_98; exported)
#620: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: withEquipment in s_50_98 s_50_98; exported)
#621: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: createdAt in s_50_98 s_50_98; exported)
#622: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: updatedAt in s_50_98 s_50_98; exported)
#623: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 2 const, 0 opt, 0 subq: sourceUpdatedAt in s_50_98 s_50_98; exported)
#624: merged and destroyed
#625: merged and destroyed
#626: merged and destroyed
#627: merged and destroyed
#628: merged and destroyed
#629: merged and destroyed
#630: merged and destroyed
#631: merged and destroyed
#632: merged and destroyed
#633: merged and destroyed
#634: merged and destroyed
#635: merged and destroyed
#636: merged and destroyed
#637: merged and destroyed
#638: merged and destroyed
#639: merged and destroyed
#640: merged and destroyed
#641: merged and destroyed
#642: merged and destroyed
#643: merged and destroyed
#644: merged and destroyed
#645: merged and destroyed
#646: merged and destroyed
#647: merged and destroyed
#648: merged and destroyed
#649: merged and destroyed
#650: merged and destroyed
#651: merged and destroyed
#652: merged and destroyed
#653: merged and destroyed
#654: merged and destroyed
#655: merged and destroyed
#656: merged and destroyed
#657: merged and destroyed
#658: merged and destroyed
#659: merged and destroyed
#660: merged and destroyed
#661: ( 1 subv (1 bindings, 0 nest.opt.), 0 recv, 0 gspo, 0 const, 6 opt, 0 subq: mapPoint in; lit)
#662: merged and destroyed
#663: merged and destroyed
#664: merged and destroyed
#665: merged and destroyed
#666: merged and destroyed
#667: merged and destroyed
#668: merged and destroyed
#669: merged and destroyed
#670: merged and destroyed
#671: merged and destroyed
#672: merged and destroyed</code></pre>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment