Code
co1 = color(r=0, g=0, b=0, a=0.4)
r1 = rectangle(w=301,h=301,fill="navy")
show(r1)
r2 = rectangle(w=301,h=80,x=0,y=-180,fill="black")
show(r2)
b = rectangle(w=1,h=40,x=-105,y=-138,fill="black") | repeat(28, translate(x=3,y=0))
i=30
while True:
c = circle(r=i,x=-79,y=-88,stroke="snow")
show(c)
i=i-3
if i<=0:
break
j=30
while True:
d = circle(r=j,x=-49,y=-69)
show(d)
j=j-3
if j<=0:
break
e = rectangle(w=1,h=30,x=-57,y=-102,fill="snow") | repeat(12, translate(x=3,y=0))
k=80
while True:
f = circle(r=k,x=49,y=69,stroke="snow")
show(f)
k=k-3
if k<=0:
break
l=60
while True:
g = circle(r=l,x=49,y=69,stroke="yellow")
show(g)
l=l-3
if l<=0:
break
m=30
while True:
h = circle(r=m,x=-39,y=49,stroke="yellow")
show(h)
m=m-3
if m<=0:
break
n=40
while True:
t = circle(r=n,x=-89,y=19,stroke="snow")
show(t)
n=n-3
if n<=0:
break
show(b,c,d,e)