function(being){
	step = 2048;
	step_end = 64 * 256;
	while(biology_operator< 5){

		value_min = 65535;
		value_max = 0 - value_min;

		test_x = 0;	
		while(test_x < step_end){
			test_y = 0;
			while(test_y < step_end){
				if(biology_output > value_max){
					value_max = biology_output;
				}

				if(biology_output < value_min){
					value_min = biology_output;
				}

				test_y = test_y + step;
			}
			test_x = test_x + step;
		}
		what_max = value_max;
		what_min = value_min;
		biology_operator = biology_operator + 1;
	}

}