for (let i = 0; i < [choice1]; i++) { fillRect(10 * i, 10 * i, 10, 10); }
for (let i = 0; i < 8; i++) { fillRect(10 * i, 10 * i, 10, 10); }
for (let i = 0; i < [choice1]; i++) { fillRect([choice2] + 10 * i, [choice3] + 10 * i, 10, 10); }
for (let i = 0; i < 7; i++) { fillRect(10 + 10 * i, 30 + 10 * i, 10, 10); }
for (let i = 0; i < [choice1]; i++) { fillRect([choice2] + 10 * i, [choice3] -10 * i, 10, 10); }
for (let i = 0; i < 6; i++) { fillRect(40 + 10 * i, 90 - 10 * i, 10, 10); }
for (let i = 0; i < [choice1]; i++) { fillRect([choice2] * i, [choice3] * i, 10, 10); }
for (let i = 0; i < 4; i++) { fillRect(10 * i, 30 * i, 10, 10); }
for (let i = 0; i < [choice1]; i++) { fillRect(20 * i, 20 * i, [choice2], [choice3]); }
for (let i = 0; i < 4; i++) { fillRect(20 * i, 20 * i, 40, 40); }
for (let i = 0; i < 7; i++) { fillRect([choice1] + 10 * i, [choice2] + 10 * i, 10, 10); fillRect([choice3] + 10 * i, [choice4] - 10 * i, 10, 10); }
for (let i = 0; i < 7; i++) { fillRect(20 + 10 * i, 30 + 10 * i, 10, 10); fillRect(10 + 10 * i, 80 -10 *i, 10, 10); }
for (let i = 0; i < 10; i++) { if (i % 2 == 0) setColor('[choice1]'); else setColor('[choice2]'); fillRect(10 * i, 10 * i, 10, 10); }
for (let i = 0; i < 10; i++) { if (i % 2 == 0) setColor('blue'); else setColor('green'); fillRect(10 * i, 10 * i, 10, 10); }
for (let i = 0; i < 9; i++) { if (i % 2 == 0) setColor('[choice1]'); else setColor('[choice2]'); fillRect(10 + 10 * i, 10 * i, 10, 10); if (i % 2 == 0) setColor('[choice3]'); else setColor('[choice4]'); fillRect(10 * i, 10 + 10 * i, 10, 10); }
for (let i = 0; i < 9; i++) { if (i % 2 == 0) setColor('blue'); else setColor('green'); fillRect(10 + 10 * i, 10 * i, 10, 10); if (i % 2 == 0) setColor('red'); else setColor('black'); fillRect(10 * i, 10 + 10 * i, 10, 10); }
for (let i = 0; i < [choice1]; i++) { if (i % 3 == 0) setColor('green'); else if (i % 3 == 1) setColor('black'); else setColor('red'); fillRect([choice2] * i, 0, [choice3], 100); }
for (let i = 0; i < 20; i++) { if (i % 3 == 0) setColor('green'); else if (i % 3 == 1) setColor('black'); else setColor('red'); fillRect(5 * i, 0, 5, 100); }
for (let i = 0; i < [choice1]; i++) { if (i % 2 == 0) setColor('red'); else setColor('blue'); fillRect([choice2] * i, 0, 100 - [choice3] * i, 100 - [choice4] * i); }
for (let i = 0; i < 10; i++) { if (i % 2 == 0) setColor('red'); else setColor('blue'); fillRect(10 * i, 0, 100 - 10 * i, 100 - 10 * i); }
for (let i = 0; i < [choice1]; i++) { setRGB([choice2] * i, 0, 0); fillRect([choice3] * i, 0, [choice4], 100); }
for (let i = 0; i < 5; i++) { setRGB(20 * i, 0, 0); fillRect(20 * i, 0, 20, 100); }
for (let i = 0; i < [choice1]; i++) { setRGB(0, 100 - [choice2] * i, 0); fillRect([choice3] * i, 0, [choice4], 100); setRGB(0, 0, [choice5] * i); fillRect(50 + [choice6] * i, 0, [choice7], 100); }
for (let i = 0; i < 50; i++) { setRGB(0, 100 - 2 * i, 0); fillRect(1 * i, 0, 1, 100); setRGB(0, 0, 2 * i); fillRect(50 + 1 * i, 0, 1, 100); }
for (let y = 0; y < 4; y++) { for (let x = 0; x < [choice1]; x++) { fillRect(x * 10, y * 10, 5, 5); } }
for (let y = 0; y < 4; y++) { for (let x = 0; x < 6; x++) { fillRect(x * 10, y * 10, 5, 5); } }
for (var y = 0; y < [choice1]; y++) { for (var x = 0; x < [choice2]; x++) { fillRect(x * 10, y * 10, 5, 5); } }
for (var y = 0; y < 7; y++) { for (var x = 0; x < 5; x++) { fillRect(x * 10, y * 10, 5, 5); } }
for (var y = 0; y < 10; y++) { for (var x = 0; x < 10; x++) { if ((x + y) % 2 == 0) setColor("[choice1]"); else setColor("[choice2]"); fillRect(x * 10, y * 10, 5, 5); } }
for (var y = 0; y < 10; y++) { for (var x = 0; x < 10; x++) { if ((x + y) % 2 == 0) setColor("blue"); else setColor("green"); fillRect(x * 10, y * 10, 5, 5); } }
for (var y = 0; y < 10; y++) { for (var x = 0; x < 10; x++) { if ((x + y) % 3 == 0) setColor("[choice1]"); else if ((x + y) % 3 == 1) setColor("[choice2]"); else setColor("[choice3]"); fillRect(x * 10, y * 10, 10, 10); } }
for (var y = 0; y < 10; y++) { for (var x = 0; x < 10; x++) { if ((x + y) % 3 == 0) setColor("blue"); else if ((x + y) % 3 == 1) setColor("black"); else setColor("red"); fillRect(x * 10, y * 10, 10, 10); } }
for (var y = 0; y < 10; y++) { for (var x = 0; x < [choice1]; x++) { fillRect(x * [choice2], y * 10, [choice3], 5); } }
for (var y = 0; y < 10; y++) { for (var x = 0; x < 4; x++) { fillRect(x * 25, y * 10, 20, 5); } }
for (var y = 0; y < [choice1]; y++) { for (var x = 0; x < [choice2]; x++) { fillRect(x * [choice3], y * [choice4], [choice5], [choice6]); } }
for (var y = 0; y < 5; y++) { for (var x = 0; x < 10; x++) { fillRect(x * 10, y * 20, 6, 16); } }
for (var y = 0; y < [choice1]; y++) { for (var x = 0; x < [choice2]; x++) { setRGB((x + y) * [choice3], 0, 0); fillRect(x * [choice4], y * [choice5], [choice6], [choice7]); } }
for (var y = 0; y < 10; y++) { for (var x = 0; x < 10; x++) { setRGB((x + y) * 5, 0, 0); fillRect(x * 10, y * 10, 10, 10); } }
for (var y = 0; y < [choice1]; y++) { for (var x = 0; x < [choice2]; x++) { setRGB((x + y) * [choice3], (x + y) * [choice4], (x + y) * [choice5]); fillRect(x * [choice6], y * [choice7], [choice8], [choice9]); } }
for (var y = 0; y < 10; y++) { for (var x = 0; x < 10; x++) { setRGB((x + y) * 5, (x + y) * 5, (x + y) * 5); fillRect(x * 10, y * 10, 10, 10); } }
for (let i = 0; i < 6; i++) { fillRect(10 * i, 10 + 10 * i, 10, 10); }
for (let i = 0; i < 9; i++) { fillRect(10 * i, 10 + 10 * i, 10, 10); }
for (var i = 0; i < 8; i++) { fillRect(70 - 10 * i, 10 * i, 10, 10); }
for (var i = 0; i < 9; i++) { fillRect(80 - 10 * i, 10 * i, 10, 10); }
for (var i = 0; i < 4; i++) { fillRect(90 - 30 * i, 10 * i, 10, 10); }
for (var i = 0; i < 10; i++) { fillRect(90 - 5 * i, 10 * i, 10, 10); }
for (var i = 0; i < 9; i++) { fillRect(10 + 10 * i, 0, 10, 10 + 10 * i); fillRect(10 * i, 10 + 10 * i, 10, 90 - 10 * i); }
for (var i = 0; i < 7; i++) { fillRect(30 + 10 * i, 0, 10, 10 + 10 * i); fillRect(10 * i, 30 + 10 * i, 10, 70 - 10 * i); }
for (var i = 0; i < 5; i++) { fillRect(20 * i, 20 * i, 10, 10); fillRect(20 * i, 40, 10, 10); }
for (var i = 0; i < 5; i++) { fillRect(20 * i, 20 * i, 20 , 20); fillRect(20 * i, 0, 10, 100); }
for (var i = 0; i < 7; i++) { fillRect(30 + 10 * i, 10 * i, 10, 10); fillRect(20 + 10 * i, 10 + 10 * i, 10, 10); fillRect(90 - 10 * i, 30 + 10 * i, 10, 10); }
for (var i = 0; i < 8; i++) { fillRect(10 * i, 20 + 10 * i, 10, 10); fillRect(80 - 10 * i, 10 + 10 * i, 10, 10); fillRect(90 - 10 * i, 20 + 10 * i, 10, 10); }
for (var i = 0; i < 5; i++) { if (i % 2 == 0) setColor("red"); else setColor("black"); fillRect(5 + 20 * i, 15 + 5 * i, 10, 10); if (i % 2 == 1) setColor("blue"); else setColor("black"); fillRect(5 + 20 * i, 80 - 5 * i, 10, 10); }
for (var i = 0; i < 6; i++) { if (i % 2 == 1) setColor("red"); else setColor("black"); fillRect(5 + 10 * i, 15 + 15 * i, 10, 10); if (i % 2 == 0) setColor("blue"); else setColor("black"); fillRect(5 + 15 * i, 80 - 10 * i, 10, 10); }
for (var i = 0; i < 10; i++) { if (i % 3 == 0) setColor('black'); else if (i % 3 == 1) setColor('blue'); else setColor('red'); fillRect(10 * i, 10 * i, 10, 10); if (i % 2 == 0) setColor('black'); else setColor('green'); fillRect(5 * i, 10 * i, 10, 10); }
for (var i = 0; i < 10; i++) { if (i % 2 == 1) setColor('black'); else setColor('green'); fillRect(10 * i, 5 * i, 10, 10); if (i % 3 == 0) setColor('red'); else if (i % 3 == 1) setColor('black'); else setColor('blue'); fillRect(10 * i, 10 * i, 10, 10); }
for (var i = 0; i < 10; i++) { if (i % 4 == 0) setColor('red'); else if (i % 4 == 1) setColor('blue'); else if (i % 4 == 2) setColor('green'); else setColor('black'); fillRect(0, 10 * i, 100, 10); }
for (var i = 0; i < 40; i++) { if (i % 4 == 0) setColor('green'); else if (i % 4 == 1) setColor('red'); else if (i % 4 == 2) setColor('black'); else setColor('blue'); fillRect(0, 2.5 * i, 100, 2.5); }
for (var i = 0; i < 10; i++) { if (i % 3 == 0) setColor('green'); else if (i % 3 == 1) setColor('red'); else setColor('blue'); fillRect(0, 10 * i, 100 - 10 * i, 100 - 10 * i); }
for (var i = 0; i < 20; i++) { if (i % 3 == 0) setColor('blue'); else if (i % 3 == 1) setColor('green'); else setColor('red'); fillRect(0, 5 * i, 100 - 5 * i, 100 - 5 * i); }
for (var i = 0; i < 4; i++) { setRGB(0, 0, 100 - 25 * i); fillRect(0, 25 * i, 100, 25); }
for (var i = 0; i < 20; i++) { setRGB(0, 0, 100 - 5*i); fillRect(0, 5 * i, 100, 5); }
for (var i = 0; i < 100; i++) { setRGB(i, 0, 0); fillRect(i, 0, 1, 100); }
for (var i = 0; i < 100; i++) { setRGB(i, 0, 0); fillRect(0, i, 100, 1); }
for (var y = 0; y < 4; y++) { for (var x = 0; x < 8; x++) { fillRect(x * 10, y * 10, 5, 5); } }
for (var y = 0; y < 8; y++) { for (var x = 0; x < 8; x++) { fillRect(x * 10, y * 10, 5, 5); } }
for (var y = 0; y < 5; y++) { for (var x = 0; x < 8; x++) { if ((x + y) % 3 == 0) setColor("red"); else if ((x + y) % 3 == 1) setColor("green"); else setColor("blue"); fillRect(25 + 10 * x, 10 * y, 5, 5); } }
for (var y = 0; y < 8; y++) { for (var x = 0; x < 6; x++) { if ((x + y) % 3 == 0) setColor("blue"); else if ((x + y) % 3 == 1) setColor("red"); else setColor("green"); fillRect(10 * x, 25 + 10 * y, 5, 5); } }
for (var y = 0; y < 5; y++) { for (var x = 0; x < 5; x++) { setColor("red"); fillRect(x * 20, y * 20, 10, 10); setColor("green"); fillRect(10 + x * 20, 10 + y * 20, 10, 10); setColor("blue"); fillRect(10 + x * 20, y * 20, 10, 10); setColor("black"); fillRect(x * 20, 10 + y * 20, 10, 10); } }
for (var y = 0; y < 5; y++) { for (var x = 0; x < 5; x++) { setColor("green"); fillRect(x * 20, y * 20, 10, 10); setColor("blue"); fillRect(10 + x * 20, 10 + y * 20, 10, 10); setColor("red"); fillRect(10 + x * 20, y * 20, 10, 10); setColor("red"); fillRect(x * 20, 10 + y * 20, 10, 10); } }
for (var y = 0; y < 5; y++) { for (var x = 0; x < 5; x++) { if ((x + y) % 3 == 0) setColor('red'); else if ((x + y) % 3 == 1) setColor('blue'); else setColor('green'); fillRect(20 * x, 20 * y, 20, 20); } }
for (var y = 0; y < 10; y++) { for (var x = 0; x < 10; x++) { if ((x + y) % 3 == 0) setColor('red'); else if ((x + y) % 3 == 1) setColor('blue'); else setColor('green'); fillRect(10 * x, 10 * y, 10, 10); } }
for (var y = 0; y < 4; y++) { for (var x = 0; x < 5; x++) { fillRect(x * 20, y * 25, 10, 15); } }
for (var y = 0; y < 20; y++) { for (var x = 0; x < 5; x++) { fillRect(x * 20, y * 5, 10, 2); } }
for (let y = 0; y < 4; y++) { for (let x = 0; x < 4; x++) { if ((x + y) % 3 == 0) setColor('blue'); else if ((x + y) % 3 == 1) setColor('green'); else setColor('black'); fillRect(25 * x, 25 * y, 15, 15); } }
for (let y = 0; y < 10; y++) { for (let x = 0; x < 10; x++) { if ((x + y) % 3 == 0) setColor('black'); else if ((x + y) % 3 == 1) setColor('red'); else setColor('green'); fillRect(5 + 10 * x, 10 * y, 5, 10); } }
for (let y = 0; y < 20; y++) { for (let x = 0; x < 20; x++) { setRGB(x * 5, y * 5, 100); fillRect(x * 5, y * 5, 5, 5); } }
for (let y = 0; y < 20; y++) { for (let x = 0; x < 20; x++) { setRGB(100, x * 5, y * 5); fillRect(x * 5, y * 5, 5, 5); } }
for (var y = 0; y < 10; y++) { for (var x = 0; x < 10; x++) { setRGB(100, (x + y) * 5, 100 - (x + y) * 5); fillRect(x * 10, y * 10, 10, 10); } }
for (var y = 0; y < 5; y++) { for (var x = 0; x < 5; x++) { setRGB(0, (x + y) * 10, 100 - (x + y) * 10); fillRect(x * 20, y * 20, 20, 20); } }
for (var i = 0; i < 9; i++) { fillRect(10 * i, 10 * i, 20, 20); }
for (var i = 0; i < 9; i++) { fillRect(40 - 5 * i, 10 * i, 10, 10); }
for (let i = 0; i < 5; i++) { fillRect(20 * i, 10 * i, 20, 100 - 20 * i); }
for (var i = 0; i < 10; i++) { if (i % 2 == 0) setColor('red'); else setColor('green'); fillRect(10*i, 0, 10, 10+10*i); }
for (var i = 0; i < 8; i++) { setColor('red'); fillRect(20+10*i, 0, 10, 10+10*i); setColor('blue'); fillRect(0, 20+10*i, 10+10*i, 10); }
for (let i = 0; i < 6; i++) { fillRect(25 + 5 * i, 5 + 15 * i, 10, 10); fillRect(15 + 15 * i, 75 - 5 * i, 10, 10); }
for (var i = 0; i < 5; i++) { setColor('green'); fillRect(30 + 10 * i, 10 * i, 10, 10); setColor('black'); fillRect(10 * i, 60 - 10 * i, 10, 10); setColor('red'); fillRect(20 + 10 * i, 50 + 10 * i, 10, 10); setColor('blue'); fillRect(50 + 10 * i, 70 - 10 * i, 10, 10); }
for (var i = 0; i < 5; i++) { setColor('green'); fillRect(0, 20 * i, 100, 5); setColor('black'); fillRect(0, 5 + 20 * i, 100, 5); setColor('red'); fillRect(0, 10 + 20 * i, 100, 5); }
for (var i = 0; i < 9; i++) { if (i % 2 == 0) setColor('blue'); else setColor('red'); fillRect(0, 10*i, 100-10*i, 100-10*i); }
for (var i = 0; i < 10; i++) { if (i % 3 == 0) setColor('blue'); else if (i % 3 == 1) setColor('green'); else setColor('black'); fillRect(5 * i, 5 * i, 100 - 10 * i, 100 - 10 * i); }
for (let i = 0; i < 5; i++) { setRGB(i * 20, 0, 100 - i * 20); fillRect(i * 20, 0, 20, 100); }
for (let i = 0; i < 10; i++) { setRGB(i * 10, i * 10, i * 10); fillRect(0, i * 10, 100, 10); }
for (let y = 0; y < 5; y++) { for (let x = 0; x < 5; x++) { fillRect(5 + 20 * x, 5 + 20 * y, 10, 10); } }
for (let y = 0; y < 5; y++) { for (let x = 0; x < 5; x++) { fillRect(20 * x + 10, 20 * y, 10, 10); fillRect(20 * x, 20 * y + 10, 10, 10); } }
setColor('green'); fillRect(0, 0, 100, 100); for (let y = 0; y < 5; y++) { for (let x = 0; x < 5; x++) { setColor('blue'); fillRect(20 * x + 10, 20 * y, 10, 10); setColor('red'); fillRect(20 * x, 20 * y + 10, 10, 10); } }
for (let y = 0; y < 5; y++) { for (let x = 0; x < 5; x++) { if ((x + y) % 2 == 0) setColor('blue'); else setColor('red'); fillRect(20 * x, 20 * y, 20, 20); } }
for (let y = 0; y < 10; y++) { for (let x = 0; x < 10; x++) { if ((x + y) % 4 == 0) setColor('red'); else if ((x + y) % 4 == 2) setColor('blue'); else setColor('green'); fillRect(10 * x, 10 * y, 10, 10); } }
for (let y = 0; y < 20; y++) { for (let x = 0; x < 20; x++) { if ((x - y + 20) % 3 == 0) setColor('red'); else if ((x - y + 20) % 3 == 1) setColor('green'); else setColor('blue'); fillRect(5 * x, 5 * y, 5, 5); } }
for (let y = 0; y < 10; y++) { for (let x = 0; x < 10; x++) { setRGB(0, (x + y) * 5, 100 - (x + y) * 5); fillRect(90 - x * 10, y * 10, 10, 10); } }
for (let y = 0; y < 10; y++) { for (let x = 0; x < 10; x++) { setRGB(100 - (x + y) * 5, 100 - (x + y) * 5, 100 - (x + y) * 5); fillRect(x * 10, 90 - y * 10, 10, 10); } }