"PREFIX rdf: PREFIX openbiodiv: PREFIX rdfs: PREFIX pkm: PREFIX po: PREFIX doco: SELECT (MAX(?name) AS ?name) (COUNT(DISTINCT ?a) AS ?nmentions)WHERE {     ?s rdf:type openbiodiv:ScientificName ;       rdfs:label ?name .   ?tnu pkm:mentions ?s . ?a po:contains ?tnu .   ?a rdf:type doco:Figure .}GROUP BY ?sORDER BY DESC(?nmentions)"