contract ExampleContract {
	function whoami() public view returns (address) {
		return address(this);
	}
}