package sample.svg.contributed;
import static util.SVGUtil.*;

public class Yama3 {
	public static void main(String[] args) {
		int i,j;

		start();
		rulers();

		stroke(0x000000);
		fill(0x000000);
		fillOpacity(1);
		strokeOpacity(1);
		for (i=0; i<70; i++) {
			for (j=0; j<30; j++) {
				if (i%2==0){
					rect(0+10*j, 29+i*2, 4, 1);
				} else {
					rect(5+10*(j), 29+i*2, 4, 1);
				}
			}
		}

		for (i=0; i<14; i++) {
			for (j=0; j<7; j++) {
				if (i%2==0){
					stroke(0x000000);
					fill(0x000000);
					rect(85+i*2,60+10*j,1, 4);
					stroke(0xffffff);
					fill(0xffffff);
					rect(85+i*2,65+10*(j), 1, 4);
				} else {
					stroke(0xffffff);
					fill(0xffffff);
					rect(85+i*2,60+10*j,1, 4);
					stroke(0x000000);
					fill(0x000000);
					rect(85+i*2,65+10*(j), 1, 4);
				}
			}
		}

		finish();		
		return;
	}
}
