Gambusia aestiputeus

Gambusia aestiputeus is a species of fish in the family Poeciliidae. It is endemic to Colombia.

Gambusia aestiputeus

Data Deficient  (IUCN 2.3)
Scientific classification
Kingdom:
Phylum:
Class:
Order:
Family:
Genus:
Species:
G. aestiputeus
Binomial name
Gambusia aestiputeus
Fowler, 1950

Sources

  • World Conservation Monitoring Centre (1996). "Gambusia aestiputeus". The IUCN Red List of Threatened Species. IUCN. 1996: e.T8897A12937242. doi:10.2305/IUCN.UK.1996.RLTS.T8897A12937242.en. Retrieved 16 December 2017.


gollark: This code here is for label handling, I think.
gollark: Is this based on chars or bytes?
gollark: ```java public static String normaliseLabel( String label ) { if( label == null ) return null; int length = Math.min( 32, label.length() ); StringBuilder builder = new StringBuilder( length ); for( int i = 0; i < length; i++ ) { char c = label.charAt( i ); if( (c >= ' ' && c <= '~') || (c >= 161 && c <= 172) || (c >= 174 && c <= 255) ) { builder.append( c ); } else { builder.append( '?' ); } } return builder.toString();}```
gollark: It doesn't seem to be.
gollark: Also, what are the restrictions on them? I ask because I want to use this as an insane serial protocol.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.