breed[cars car] breed[fast-food-restaurants fast-food-restaurant] breed[healthy-foods healthy-food] breed[households household] breed[offices office] extensions [ py ] globals [ diabetes-rate diabetes-rate-min diabetes-rate-max total-population-rating AADT ;households x-y for neighborhood 1 households-x-1 households-y-1 ;households x-y for neighborhood 2 households-x-2 households-y-2 ;households x-y for neighborhood 3 households-x-3 households-y-3 ;- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - parking coordinates for parking-lots ;parking-lot-1 is in-between burger prince and nmft - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - parking-lot-x-1 parking-lot-y-1 ;parking-lot-2 is next to avocado in top left - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - parking-lot-x-2 parking-lot-y-2 ;parking-lot-3 is next to banana and fry - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - parking-lot-x-3 parking-lot-y-3 ] turtles-own [ speed speed-min speed-max ] to setup clear-all reset-ticks setup-roads setup-coordinates set diabetes-rate-min 0 set diabetes-rate-max 100 setup-parking-lot-coordinates setup-python end to setup-coordinates ; - - - - - - - - - - - - - - - - - neighborhood 1 set households-x-1 [33 16] set households-y-1 [23 14 5] ; - - - - - - - - - - - - - - - - - neighborhood 2 set households-x-2 [33 17 6] set households-y-2 [36] ; - - - - - - - - - - - - - - - - - neighborhood 3 set households-x-3 [32 16 5] set households-y-3 [-16 -8] end to setup-parking-lot-coordinates set parking-lot-x-1 [-15 -11 -7] set parking-lot-y-1 [10 12 14] set parking-lot-x-2 [-38 -35 -32] set parking-lot-y-2 [38 36 34] set parking-lot-x-3 [2 5 8 11] set parking-lot-y-3 [-36 -38] end to go setup-diabetes-rate set AADT count cars * 145 ;145 is not specific, it is simply to bump up count cars and population to a realistic TPR at the same ratio set total-population-rating AADT + population tick ask cars[configure-cars] configure-fast-food configure-households maintain-cars setup-workplaces setup-parking-lots ask turtles[pull-over-cars] setup-healthy-food end to setup-roads ask patches with[pxcor > -22 and pxcor < -17 or pxcor > -5 and pxcor < 0 or pxcor > 22 and pxcor < 27] ;creates vertical roads [set pcolor white] ask patches with[pycor > -10 and pycor < -5 or pycor > 5 and pycor < 10 or pycor > -25 and pycor < -20 or pycor > 26 and pycor < 31] ;creates horizontal roads [set pcolor white] ask patches with[pycor > -5 and pycor < 0] [set pcolor white] end to setup-python py:setup py:python3 end to maintain-cars if count cars < amount-of-traffic * 5 ;5 because there are 5 roads, each road has "amount-of-traffic" cars on it [ create-cars amount-of-traffic ;lower horizontal road [ set color red set size 1.7 set shape "car" set ycor -22.5 set heading 90 set speed 0.1 + random-float 0.9 set speed-max 1 set speed-min 0 ] create-cars amount-of-traffic ;middle horizontal road [ set color red set size 1.7 set shape "270car" set ycor -2.5 set heading 270 set speed 0.1 + random-float 0.9 set speed-max 1 set speed-min 0 ] create-cars amount-of-traffic ;upper horizontal road [ set color red set size 1.7 set shape "car" set heading 90 set ycor 28.5 set speed 0.1 + random-float 0.9 set speed-max 1 set speed-min 0 ] create-cars amount-of-traffic ;left vertical road [ set color red set size 1.7 set shape "360car" set xcor -19.5 set heading 360 set speed 0.1 + random-float 0.9 set speed-max 1 set speed-min 0 ] create-cars amount-of-traffic ;middle vertical road [ set color red set size 1.7 set shape "360car" set xcor 24.5 set heading 360 set speed 0.1 + random-float 0.9 set speed-max 1 set speed-min 0 ] create-cars amount-of-traffic ;right vertical road [ set color red set size 1.7 set shape "180car" set xcor -2.5 set heading 180 set speed 0.1 + random-float 0.9 set speed-max 1 set speed-min 0 ] ] ask cars [ if xcor > 40 or xcor < -40 or ycor > 40 or ycor < -40 [ die ] ] end to configure-cars ask cars [ if pcolor = white [let car-ahead one-of cars-on patch-ahead 1 ifelse car-ahead != nobody [set speed [speed] of car-ahead - 0.026] [set speed speed + 0.0045] if speed < speed-min [set speed speed-min] if speed > speed-max [set speed speed-max] forward speed]] end to pull-over-cars ;- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Fast Food ;- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -parking lot 1 if count cars with [pcolor = gray] < num-of-restaurant-cars [ask cars-here with [xcor > -22 and xcor < -17 and ycor < 17 and ycor > 7] ;for parking-lot-1 [set shape "270car" set speed speed-min setxy one-of parking-lot-x-1 one-of parking-lot-y-1 if any? other turtles-here [setxy one-of parking-lot-x-1 one-of parking-lot-y-1] ] ] if count cars with [pcolor = gray] > num-of-restaurant-cars [ask cars-here with [pycor > 6.5 and pycor < 16.5 and pxcor > -18 and pxcor < -4] ;coordinates of parking-lot 1 [ setxy -19.5 12 set shape "360car" ] ] ;- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Healthy Food ;- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -parking lot 2 if count cars with [pcolor = gray] < num-of-restaurant-cars [ask cars-here with [xcor > -40 and xcor < -29 and ycor > 27 and ycor < 31] ;for parking-lot-2, top left [set shape "car" set speed speed-min setxy one-of parking-lot-x-2 one-of parking-lot-y-2 if any? other turtles-here [setxy one-of parking-lot-x-2 one-of parking-lot-y-2] ] ] if count cars with [pcolor = gray] > num-of-restaurant-cars [ask cars-here with [pycor > 31 and pycor < 40 and pxcor > -39.5 and pxcor < -29] ;coordinates of parking-lot 2 [ setxy -35 28.5 set shape "270car" ] ] ;- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Healthy and Fast Food ;- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -parking lot 3 if count cars with [pcolor = gray] < num-of-restaurant-cars [ ask cars-here with [xcor > -4 and xcor < 0 and ycor > -41 and ycor < -35] ;for parking lot 3, close to banana [ set shape "car" set speed speed-min setxy one-of parking-lot-x-3 one-of parking-lot-y-3 if any? other turtles-here [ setxy one-of parking-lot-x-3 one-of parking-lot-y-3 ] ] ] if count cars with [pcolor = gray] > num-of-restaurant-cars [ ask cars-here with [pycor > -41 and pycor < -34 and pxcor > -1 and pxcor < 23] ;coordinates of parking lot 3 [ setxy 24.5 -37 set shape "360car" ] ] end to configure-fast-food ;burger prince - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - if total-population-rating > 5000 and count turtles with [shape = "burgerprince"] < 1 ;graph shows one fast-food restaurant per 5000 TPR [ create-fast-food-restaurants 1 [ set shape "burgerprince" set xcor -10.5 set ycor 21 set size 17 set heading 360 ] ] if total-population-rating < 5000 [ ask turtles with[shape = "burger prince"] [ die ] ] ;new mexico fried tacos - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - if total-population-rating > 10000 and count turtles with [shape = "newmexicofriedtacos"] < 1 ;second bit is for lag prevention [ create-fast-food-restaurants 1 [ set shape "newmexicofriedtacos" set xcor -11 set ycor 4 set size 15 set heading 360 ] ] if total-population-rating < 10000 [ ask turtles with[shape = "newmexicofriedtacos"] [ die ] ] ;pizza garden - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - if total-population-rating > 15000 and count turtles with [shape = "pizza garden"] < 1 [ create-fast-food-restaurants 1 [ set shape "pizza garden" set xcor -28 set ycor 20.5 set size 12 set heading 15 ] ] if total-population-rating < 15000 [ ask turtles with[shape = "pizza garden"] [ die ] ] ;fry flare- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - if total-population-rating > 20000 [ create-fast-food-restaurants 1 [ set shape "fries" set xcor 33 set ycor -30 set size 21 set heading 360 ] ] if total-population-rating < 20000 [ ask turtles with[shape = "fries"] [ die ] ] seperate-fast-food end to seperate-fast-food ;keeps only one kind of each fast-food spawning ask fast-food-restaurants [ if any? other fast-food-restaurants-here [ die ] ] end to setup-parking-lots ;- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -parking lot 1 ask patches [ if pycor > 6.5 and pycor < 16.5 and pxcor > -18 and pxcor < -4 ;in-between burger prince and nmft [ set pcolor gray ] ] ;- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -parking lot 2 ask patches [ if pycor > 31 and pycor < 40 and pxcor > -39.5 and pxcor < -29 ;beside avocado [ set pcolor gray ] ] ;- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -parking lot 3 ask patches [ if pycor > -41 and pycor < -34 and pxcor > -1 and pxcor < 23 ;beside banana [ set pcolor gray ] ] end to configure-households ;- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - neighborhood 1 if population > 5000 [ create-households 1 [ set shape "house two story" setxy one-of households-x-1 one-of households-y-1 if any? other households-here [setxy one-of households-x-1 one-of households-y-1] set color 63 set size 11 ] ] if population < 5000 [ ask households with [shape = "house two story"] [ die ] ] ;- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - neighborhood 2 if population > 12000 [ create-households 1 [ set shape "house ranch" setxy one-of households-x-2 one-of households-y-2 if any? other households-here [setxy one-of households-x-2 one-of households-y-2] set color 63 set size 11 ] ] if population < 12000 [ ask households with [shape = "house ranch"] [ die ] ] ;- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - neighborhood 3 if population > 20000 [ create-households 1 [ set shape "house colonial" setxy one-of households-x-3 one-of households-y-3 if any? other households-here [setxy one-of households-x-3 one-of households-y-3] set size 11 set color 63 ] ] if population < 20000 [ ask households with [shape = "house colonial"] [ die ] ] ;- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -apartments 1 if population > 30000 [ create-households 1 [ set shape "victorian house" set xcor 6 set ycor 19.3 set size 18 set heading 90 set color 65 ] ] if population < 30000 [ ask households with [xcor = 6 and ycor = 19.3] [ die ] ] ;- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -apartments 2 if population > 41000 [ create-households 1 [ set shape "victorian house" set xcor 6 set ycor 5.8 set size 18 set heading 90 set color 65 ] ] if population < 41000 [ ask households with[xcor = 6 and ycor = 5.8] [ die ] ] ;- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -apartments 3 if population > 52000 [ create-households 1 [ set shape "victorian house" set xcor -10.5 set ycor 36.7 set heading 360 set color 65 set size 17.5 ] ] if population < 52000 [ ask households with[xcor = -10.5 and ycor = 36.7] [ die ] ] ;- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -apartments 4 if population > 64000 [ create-households 1 [ set shape "apartment" set xcor -28 set ycor -12.5 set heading 360 set size 19 set color gray ] ] if population < 64000 [ ask households with[xcor = -28 and ycor = -12.5] [ die ] ] ;- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -apartments 5 if population > 75000 [ create-households 1 [ set shape "victorian house" set xcor 6 set ycor -31 set size 18 set heading 180 set color 65 ] ] if population < 75000 [ ask households with[xcor = 6 and ycor = -31] [ die ] ] ;- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -apartments 6 if population > 90000 [ create-households 1 [ set shape "victorian house" set xcor -11.5 set ycor -30.7 set size 17.5 set color 65 set heading 180 ] ] if population < 90000 [ ask households with[xcor = -10.5 and ycor = -31] [ die ] ] ask households[seperate-residential] end to seperate-residential ;to prevent more than one household on one patch if any? other turtles-here [ die ] end to setup-workplaces create-offices 1 [ set shape "offices" set size 20 set xcor -12 set ycor -12 set heading 360 set color 4 ] end to setup-diabetes-rate ;divides by 100 to convert percentages to decimal form py:set "education" (Education-Level / 100) py:set "poverty" (poverty-rate / 100) py:set "lack_of_insurance" (percent-without-health-insurance / 100) py:set "Indian_Alaska_Native" (percent-of-Indian-and-Alaska-Native / 100) py:set "commute_time" (mean-commute-time / 100) (py:run "from numpy import exp, array, random, dot" "x_train = array([[.888, .165, .097, .062, .222], [.939, .233, .10, .038, .125], [.78, .189, .118, .023, .199], [.826, .286, .126, .438, .229]," "[.892, .198, .091, .028, .176], [.83, .172, .096, .021, .152], [.863, .204, .133, .02, .122], [.799, .249, .115, .024, .209]," "[.845, .157, .088, .024, .187], [.871, .207, .077, .025, .172], [.799, .243, .083, .034, .155], [.88, .167, .092, .021, .25]," "[.792, .257, .10, .013, .215], [.729, .161, .12, .02, .206], [.915, .164, .128, .043, .189], [.978, .039, .03, .013, .162]," "[.686, .272, .129, .023, .179], [.754, .323, .174, .792, .222], [.916, .235, .10, .03, .40], [.835, .203, .107, .085, .185]])" "y_train = array([[.064, .063, .104, .127, .101, .073, .233, .082, .086, .059, .106, .05, .065, .113," ".088, .05, .091, .167, .104, .093]]).T" "random.seed(1)" "neuron = 2 * random.random((5,1)) - 1" "for iteration in range(100000):" " output = 1 / (1 + exp(-(dot(x_train, neuron))))" " neuron += dot(x_train.T, (y_train - output) * output * (1 - output))" ) set diabetes-rate (py:runresult "float(1 / (1 + exp(-(dot(array([education, poverty, lack_of_insurance, Indian_Alaska_Native, commute_time]), neuron)))))" ) end to setup-healthy-food ;- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -avocado if total-population-rating > 24500 ;graph shows about one healthy food per 24500 TPR [ create-healthy-foods 1 [ set xcor -26 set ycor 36 set size 12 set heading 360 set shape "avocado" ] ] if total-population-rating < 24500 [ ask healthy-foods with[shape = "avocado"] [ die ] ] ;- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -tea if total-population-rating > 49000 [ create-healthy-foods 1 [ set xcor -28 set ycor -31 set size 12 set heading 360 set shape "tea" set color blue ] ] if total-population-rating < 49000 [ ask healthy-foods with[shape = "tea"] [ die ] ] ;- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -apple if total-population-rating > 73500 [ create-healthy-foods 1 [ set xcor -29 set ycor 7.5 set size 12 set heading 360 set shape "apple" set color red ] ] if total-population-rating < 73500 [ ask healthy-foods with[shape = "apple"] [ die ] ] ;- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -banana if total-population-rating > 98000 [ create-healthy-foods 1 [ set xcor 18 set ycor -28 set size 9 set heading 20 set shape "banana" set color yellow ] ] if total-population-rating < 98000 [ ask healthy-foods with[shape = "banana"] [ die ] ] seperate-healthy-food end to seperate-healthy-food ;keeps only one healthy-food on a patch ask healthy-foods [ if any? other healthy-foods-here [ die ] ] end @#$#@#$#@ GRAPHICS-WINDOW 300 10 1361 1072 -1 -1 13.0 1 10 1 1 1 0 1 1 1 -40 40 -40 40 0 0 1 ticks 30.0 SLIDER 0 10 299 43 Education-Level Education-Level 0 100 88.0 1 1 percent with high school or higher HORIZONTAL SLIDER 0 44 299 77 Mean-Commute-Time Mean-Commute-Time 1 90 36.0 1 1 Minutes HORIZONTAL BUTTON 0 78 153 111 NIL setup NIL 1 T OBSERVER NIL NIL NIL NIL 1 BUTTON 152 78 299 111 NIL go T 1 T OBSERVER NIL NIL NIL NIL 1 SLIDER 0 112 301 145 amount-of-traffic amount-of-traffic 1 16 4.0 1 1 NIL HORIZONTAL MONITOR 0 146 155 191 NIL AADT 17 1 11 MONITOR 154 146 300 191 NIL Population 17 1 11 MONITOR 0 192 301 237 TPR total-population-rating 17 1 11 PLOT 0 236 300 404 Diabetes Rate NIL NIL 0.0 1.0 0.0 1.0 true false "" "" PENS "default" 1.0 0 -16777216 true "" "plot diabetes-rate " MONITOR 0 404 300 449 DANN Prediction- Diabetes Rate diabetes-rate * 100 1 1 11 SLIDER 0 450 299 483 poverty-rate poverty-rate 0 40 26.0 1 1 percent HORIZONTAL BUTTON 0 482 299 534 go once go NIL 1 T OBSERVER NIL NIL NIL NIL 1 SLIDER 0 533 299 566 population population 0 100000 85211.0 1 1 NIL HORIZONTAL SLIDER 0 566 300 599 num-of-restaurant-cars num-of-restaurant-cars 0 10 4.0 1 1 NIL HORIZONTAL MONITOR 0 599 155 644 num-healthy-establishments count healthy-foods 0 1 11 MONITOR 155 599 300 644 num-fast-food count fast-food-restaurants 0 1 11 SLIDER 0 643 299 676 percent-without-health-insurance percent-without-health-insurance 0 100 76.0 1 1 percent HORIZONTAL SLIDER 0 676 300 709 percent-of-Indian-and-Alaska-Native percent-of-Indian-and-Alaska-Native 0 100 11.0 1 1 percent HORIZONTAL @#$#@#$#@ ## WHAT IS IT? (a general understanding of what the model is trying to show or explain) ## HOW IT WORKS (what rules the agents use to create the overall behavior of the model) ## HOW TO USE IT (how to use the model, including a description of each of the items in the Interface tab) ## THINGS TO NOTICE (suggested things for the user to notice while running the model) ## THINGS TO TRY (suggested things for the user to try to do (move sliders, switches, etc.) with the model) ## EXTENDING THE MODEL (suggested things to add or change in the Code tab to make the model more complicated, detailed, accurate, etc.) ## NETLOGO FEATURES (interesting or unusual features of NetLogo that the model uses, particularly in the Code tab; or where workarounds were needed for missing features) ## RELATED MODELS (models in the NetLogo Models Library and elsewhere which are of related interest) ## CREDITS AND REFERENCES (a reference to the model's URL on the web if it has one, as well as any other necessary credits, citations, and links) @#$#@#$#@ default true 0 Polygon -7500403 true true 150 5 40 250 150 205 260 250 180car false 0 Polygon -7500403 true true 120 300 136 279 156 261 165 240 168 226 194 213 216 203 237 185 250 159 250 135 240 75 150 0 135 0 75 0 75 300 120 300 Circle -16777216 true false 30 180 90 Circle -16777216 true false 30 30 90 Polygon -16777216 true false 220 162 222 132 165 134 165 209 195 194 204 189 211 180 Circle -7500403 true true 47 47 58 Circle -7500403 true true 47 195 58 270car false 0 Polygon -7500403 true true 0 180 21 164 39 144 60 135 74 132 87 106 97 84 115 63 141 50 165 50 225 60 300 150 300 165 300 225 0 225 0 180 Circle -16777216 true false 30 180 90 Circle -16777216 true false 180 180 90 Polygon -16777216 true false 138 80 168 78 166 135 91 135 106 105 111 96 120 89 Circle -7500403 true true 195 195 58 Circle -7500403 true true 47 195 58 360car false 0 Polygon -7500403 true true 180 0 164 21 144 39 135 60 132 74 106 87 84 97 63 115 50 141 50 165 60 225 150 300 165 300 225 300 225 0 180 0 Circle -16777216 true false 180 30 90 Circle -16777216 true false 180 180 90 Polygon -16777216 true false 80 138 78 168 135 166 135 91 105 106 96 111 89 120 Circle -7500403 true true 195 195 58 Circle -7500403 true true 195 47 58 airplane true 0 Polygon -7500403 true true 150 0 135 15 120 60 120 105 15 165 15 195 120 180 135 240 105 270 120 285 150 270 180 285 210 270 165 240 180 180 285 195 285 165 180 105 180 60 165 15 apartment true 0 Polygon -2674135 true false 60 270 240 270 240 45 60 45 60 270 Polygon -1 true false 75 75 75 90 90 90 90 75 75 75 Polygon -16777216 false false 120 270 120 225 180 225 180 270 120 270 150 270 150 225 Polygon -1 true false 105 105 105 120 120 120 120 105 105 105 Polygon -1 true false 105 75 105 90 120 90 120 75 105 75 Polygon -1 true false 75 195 75 210 90 210 90 195 75 195 Polygon -1 true false 75 165 75 180 90 180 90 165 75 165 Polygon -1 true false 75 135 75 150 90 150 90 135 75 135 Polygon -1 true false 75 105 75 120 90 120 90 105 75 105 Polygon -1 true false 105 135 105 150 120 150 120 135 105 135 Polygon -1 true false 105 195 105 210 120 210 120 195 105 195 Polygon -1 true false 105 165 105 180 120 180 120 165 105 165 Polygon -1 true false 135 195 135 210 150 210 150 195 135 195 Polygon -1 true false 135 165 135 180 150 180 150 165 135 165 Polygon -1 true false 135 135 135 150 150 150 150 135 135 135 Polygon -1 true false 135 105 135 120 150 120 150 105 135 105 Polygon -1 true false 135 75 135 90 150 90 150 75 135 75 Polygon -1 true false 165 75 165 90 180 90 180 75 165 75 Polygon -1 true false 195 75 195 90 210 90 210 75 195 75 Polygon -1 true false 165 105 165 120 180 120 180 105 165 105 Polygon -1 true false 165 135 165 150 180 150 180 135 165 135 Polygon -1 true false 165 165 165 180 180 180 180 165 165 165 Polygon -1 true false 165 195 165 210 180 210 180 195 165 195 Polygon -1 true false 195 195 195 210 210 210 210 195 195 195 Polygon -1 true false 195 165 195 180 210 180 210 165 195 165 Polygon -1 true false 195 135 195 150 210 150 210 135 195 135 Polygon -1 true false 195 105 195 120 210 120 210 105 195 105 Polygon -7500403 true true 60 45 45 60 255 60 240 45 240 30 60 30 60 45 Polygon -2674135 true false 150 225 150 270 120 270 120 225 150 225 150 270 Polygon -16777216 true false 150 225 120 225 120 270 150 270 Polygon -16777216 false false 120 225 120 270 150 270 150 225 120 225 Polygon -2674135 true false 120 225 150 225 150 270 120 270 120 225 Polygon -16777216 false false 150 225 120 225 120 270 150 270 apartment building true 9 Line -2674135 false 90 30 90 255 Line -2674135 false 90 270 180 270 Line -2674135 false 210 255 210 30 Line -2674135 false 180 270 210 270 Line -2674135 false 90 30 210 30 Line -2674135 false 90 255 90 270 Line -2674135 false 210 270 210 255 Rectangle -2674135 true false 90 31 210 271 Rectangle -16777216 true false 105 45 135 60 Rectangle -16777216 true false 150 45 180 60 Rectangle -16777216 true false 105 75 135 90 Rectangle -16777216 true false 150 75 180 90 Rectangle -16777216 true false 105 105 135 120 Rectangle -16777216 true false 150 105 180 120 Rectangle -16777216 true false 105 135 135 150 Rectangle -16777216 true false 150 135 180 150 Rectangle -16777216 true false 105 165 135 180 Rectangle -16777216 true false 150 165 180 180 Rectangle -16777216 true false 105 195 135 210 Rectangle -16777216 true false 150 195 180 210 Rectangle -16777216 true false 105 225 135 240 Rectangle -16777216 true false 150 225 180 240 Line -1 false 105 60 135 45 Line -1 false 150 60 180 45 Line -1 false 105 90 135 75 Line -1 false 150 90 180 75 Line -1 false 105 120 135 105 Line -1 false 150 120 180 105 Line -1 false 105 150 135 135 Line -1 false 150 150 180 135 Line -1 false 105 180 135 165 Line -1 false 150 180 180 165 Line -1 false 105 210 135 195 Line -1 false 150 210 180 195 Line -1 false 105 240 135 225 Line -1 false 150 240 180 225 Rectangle -7500403 true false 210 30 225 270 Polygon -7500403 true false 105 60 apple false 0 Polygon -7500403 true true 33 58 0 150 30 240 105 285 135 285 150 270 165 285 195 285 255 255 300 150 268 62 226 43 194 36 148 32 105 35 Line -16777216 false 106 55 151 62 Line -16777216 false 157 62 209 57 Polygon -6459832 true false 152 62 158 62 160 46 156 30 147 18 132 26 142 35 148 46 Polygon -16777216 false false 132 25 144 38 147 48 151 62 158 63 159 47 155 30 147 18 arrow true 0 Polygon -7500403 true true 150 0 0 150 105 150 105 293 195 293 195 150 300 150 ate true 0 Rectangle -13840069 true false 60 45 240 90 Rectangle -13840069 true false 15 90 60 210 Rectangle -13840069 true false 60 210 240 255 Rectangle -13840069 true false 240 90 285 210 Rectangle -13840069 true false 60 90 240 210 Line -2674135 false 75 75 45 195 Line -2674135 false 75 75 105 195 Line -2674135 false 60 135 90 135 Line -2674135 false 135 75 135 195 Line -2674135 false 105 75 165 75 Line -2674135 false 180 75 180 195 Line -2674135 false 180 75 210 75 Line -2674135 false 180 135 210 135 Line -2674135 false 180 195 210 195 avocado true 0 Polygon -10899396 true false 105 270 210 270 225 255 240 225 240 105 225 75 180 45 120 45 90 75 75 105 75 240 105 270 Circle -6459832 true false 103 118 95 banana false 0 Polygon -7500403 false true 25 78 29 86 30 95 27 103 17 122 12 151 18 181 39 211 61 234 96 247 155 259 203 257 243 245 275 229 288 205 284 192 260 188 249 187 214 187 188 188 181 189 144 189 122 183 107 175 89 158 69 126 56 95 50 83 38 68 Polygon -7500403 true true 39 69 26 77 30 88 29 103 17 124 12 152 18 179 34 205 60 233 99 249 155 260 196 259 237 248 272 230 289 205 284 194 264 190 244 188 221 188 185 191 170 191 145 190 123 186 108 178 87 157 68 126 59 103 52 88 Line -16777216 false 54 169 81 195 Line -16777216 false 75 193 82 199 Line -16777216 false 99 211 118 217 Line -16777216 false 241 211 254 210 Line -16777216 false 261 224 276 214 Polygon -16777216 true false 283 196 273 204 287 208 Polygon -16777216 true false 36 114 34 129 40 136 Polygon -16777216 true false 46 146 53 161 53 152 Line -16777216 false 65 132 82 162 Line -16777216 false 156 250 199 250 Polygon -16777216 true false 26 77 30 90 50 85 39 69 box false 0 Polygon -7500403 true true 150 285 285 225 285 75 150 135 Polygon -7500403 true true 150 135 15 75 150 15 285 75 Polygon -7500403 true true 15 75 15 225 150 285 150 135 Line -16777216 false 150 285 150 135 Line -16777216 false 150 135 15 75 Line -16777216 false 150 135 285 75 bug true 0 Circle -7500403 true true 96 182 108 Circle -7500403 true true 110 127 80 Circle -7500403 true true 110 75 80 Line -7500403 true 150 100 80 30 Line -7500403 true 150 100 220 30 burgerprince true 8 Polygon -1184463 false false 60 150 60 105 105 75 195 75 225 105 225 150 60 150 Polygon -1184463 true false 120 120 120 120 Polygon -1184463 true false 60 150 225 150 225 105 195 75 90 75 60 105 60 150 Polygon -6459832 true false 60 150 60 180 225 180 225 150 105 150 60 150 Polygon -13840069 true false 60 180 45 195 75 195 240 195 225 180 60 180 Polygon -1184463 true false 60 195 75 225 210 225 225 195 60 195 Polygon -1 true false 75 180 60 180 60 165 225 165 210 180 225 180 225 165 225 180 75 180 Polygon -2674135 true false 60 165 225 165 225 180 60 180 60 165 Polygon -1 true false 90 90 90 105 105 105 105 90 90 90 Polygon -1 true false 180 105 180 120 195 120 195 105 180 105 Polygon -16777216 false false 90 120 105 135 150 135 165 120 Circle -16777216 true false 90 90 0 Circle -16777216 true false 105 105 0 Rectangle -1 true false 105 90 90 105 Polygon -16777216 true false 90 120 90 120 165 120 150 135 105 135 90 120 165 120 150 135 105 135 90 120 butterfly true 0 Polygon -7500403 true true 150 165 209 199 225 225 225 255 195 270 165 255 150 240 Polygon -7500403 true true 150 165 89 198 75 225 75 255 105 270 135 255 150 240 Polygon -7500403 true true 139 148 100 105 55 90 25 90 10 105 10 135 25 180 40 195 85 194 139 163 Polygon -7500403 true true 162 150 200 105 245 90 275 90 290 105 290 135 275 180 260 195 215 195 162 165 Polygon -16777216 true false 150 255 135 225 120 150 135 120 150 105 165 120 180 150 165 225 Circle -16777216 true false 135 90 30 Line -16777216 false 150 105 195 60 Line -16777216 false 150 105 105 60 car false 0 Polygon -7500403 true true 300 180 279 164 261 144 240 135 226 132 213 106 203 84 185 63 159 50 135 50 75 60 0 150 0 165 0 225 300 225 300 180 Circle -16777216 true false 180 180 90 Circle -16777216 true false 30 180 90 Polygon -16777216 true false 162 80 132 78 134 135 209 135 194 105 189 96 180 89 Circle -7500403 true true 47 195 58 Circle -7500403 true true 195 195 58 circle false 0 Circle -7500403 true true 0 0 300 circle 2 false 0 Circle -7500403 true true 0 0 300 Circle -16777216 true false 30 30 240 cow false 0 Polygon -7500403 true true 200 193 197 249 179 249 177 196 166 187 140 189 93 191 78 179 72 211 49 209 48 181 37 149 25 120 25 89 45 72 103 84 179 75 198 76 252 64 272 81 293 103 285 121 255 121 242 118 224 167 Polygon -7500403 true true 73 210 86 251 62 249 48 208 Polygon -7500403 true true 25 114 16 195 9 204 23 213 25 200 39 123 cylinder false 0 Circle -7500403 true true 0 0 300 dot false 0 Circle -7500403 true true 90 90 120 face happy false 0 Circle -7500403 true true 8 8 285 Circle -16777216 true false 60 75 60 Circle -16777216 true false 180 75 60 Polygon -16777216 true false 150 255 90 239 62 213 47 191 67 179 90 203 109 218 150 225 192 218 210 203 227 181 251 194 236 217 212 240 face neutral false 0 Circle -7500403 true true 8 7 285 Circle -16777216 true false 60 75 60 Circle -16777216 true false 180 75 60 Rectangle -16777216 true false 60 195 240 225 face sad false 0 Circle -7500403 true true 8 8 285 Circle -16777216 true false 60 75 60 Circle -16777216 true false 180 75 60 Polygon -16777216 true false 150 168 90 184 62 210 47 232 67 244 90 220 109 205 150 198 192 205 210 220 227 242 251 229 236 206 212 183 fish false 0 Polygon -1 true false 44 131 21 87 15 86 0 120 15 150 0 180 13 214 20 212 45 166 Polygon -1 true false 135 195 119 235 95 218 76 210 46 204 60 165 Polygon -1 true false 75 45 83 77 71 103 86 114 166 78 135 60 Polygon -7500403 true true 30 136 151 77 226 81 280 119 292 146 292 160 287 170 270 195 195 210 151 212 30 166 Circle -16777216 true false 215 106 30 flag false 0 Rectangle -7500403 true true 60 15 75 300 Polygon -7500403 true true 90 150 270 90 90 30 Line -7500403 true 75 135 90 135 Line -7500403 true 75 45 90 45 flower false 0 Polygon -10899396 true false 135 120 165 165 180 210 180 240 150 300 165 300 195 240 195 195 165 135 Circle -7500403 true true 85 132 38 Circle -7500403 true true 130 147 38 Circle -7500403 true true 192 85 38 Circle -7500403 true true 85 40 38 Circle -7500403 true true 177 40 38 Circle -7500403 true true 177 132 38 Circle -7500403 true true 70 85 38 Circle -7500403 true true 130 25 38 Circle -7500403 true true 96 51 108 Circle -16777216 true false 113 68 74 Polygon -10899396 true false 189 233 219 188 249 173 279 188 234 218 Polygon -10899396 true false 180 255 150 210 105 210 75 240 135 240 fries true 0 Polygon -2674135 true false 135 165 135 180 Polygon -2674135 true false 135 255 180 255 195 240 195 165 120 165 120 240 135 255 Polygon -1184463 true false 135 165 Polygon -1184463 false false 120 165 120 105 135 105 135 165 120 165 135 165 135 135 150 135 150 165 135 165 150 165 150 120 165 120 165 165 135 165 165 165 165 165 165 105 180 105 180 165 165 165 195 165 195 120 180 120 180 165 Polygon -1184463 true false 135 180 135 240 150 240 150 180 135 180 180 180 180 195 150 195 150 210 180 210 180 225 150 225 150 255 135 255 135 240 Polygon -1184463 true false 135 240 135 180 150 180 150 240 135 240 Polygon -1184463 true false 120 165 195 165 195 120 180 120 180 165 165 165 165 105 180 105 180 120 180 165 165 165 165 120 150 120 150 165 135 165 135 135 150 135 150 165 120 165 120 105 135 105 135 165 Polygon -16777216 false false 135 135 135 165 Polygon -16777216 false false 150 135 150 165 Polygon -16777216 false false 165 120 165 165 Polygon -16777216 false false 180 120 180 165 Polygon -1184463 false false 120 165 105 135 90 135 120 180 120 165 Polygon -1184463 false false 120 150 120 165 105 135 105 120 120 120 120 165 Polygon -1184463 true false 105 135 90 135 120 180 120 165 105 135 90 135 105 135 105 120 120 120 120 165 120 180 Polygon -16777216 false false 105 150 Polygon -16777216 false false 105 135 120 165 120 120 120 165 Polygon -1184463 true false 105 135 105 135 120 180 120 165 105 135 Polygon -1184463 true false 90 135 105 135 120 135 120 165 120 180 90 135 Polygon -16777216 false false 105 135 120 165 Polygon -1184463 true false 195 180 210 150 225 150 195 180 195 165 195 135 210 135 210 150 Polygon -16777216 true false 210 150 195 165 195 120 Polygon -1184463 true false 210 135 195 135 195 165 210 150 210 135 Polygon -16777216 false false 195 135 195 165 210 135 gym true 0 Circle -7500403 true true 8 8 283 Rectangle -1 true false 60 45 75 135 Rectangle -1 true false 75 60 90 120 Rectangle -1 true false 89 83 209 98 Rectangle -1 true false 210 60 225 120 Rectangle -1 true false 225 45 240 135 Line -1 false 105 180 75 180 Line -1 false 75 180 75 240 Line -1 false 75 240 105 240 Line -1 false 105 240 105 210 Line -1 false 105 210 90 210 Line -1 false 120 180 150 210 Line -1 false 150 210 180 180 Line -1 false 150 210 150 240 Line -1 false 195 180 195 240 Line -1 false 195 180 210 210 Line -1 false 210 210 225 180 Line -1 false 225 180 225 240 house false 0 Rectangle -7500403 true true 45 120 255 285 Rectangle -16777216 true false 120 210 180 285 Polygon -7500403 true true 15 120 150 15 285 120 Line -16777216 false 30 120 270 120 house colonial false 0 Rectangle -7500403 true true 270 75 285 255 Rectangle -7500403 true true 45 135 270 255 Rectangle -16777216 true false 124 195 187 256 Rectangle -16777216 true false 60 195 105 240 Rectangle -16777216 true false 60 150 105 180 Rectangle -16777216 true false 210 150 255 180 Line -16777216 false 270 135 270 255 Polygon -7500403 true true 30 135 285 135 240 90 75 90 Line -16777216 false 30 135 285 135 Line -16777216 false 255 105 285 135 Line -7500403 true 154 195 154 255 Rectangle -16777216 true false 210 195 255 240 Rectangle -16777216 true false 135 150 180 180 house ranch false 0 Rectangle -7500403 true true 270 120 285 255 Rectangle -7500403 true true 15 180 270 255 Polygon -7500403 true true 0 180 300 180 240 135 60 135 0 180 Rectangle -16777216 true false 120 195 180 255 Line -7500403 true 150 195 150 255 Rectangle -16777216 true false 45 195 105 240 Rectangle -16777216 true false 195 195 255 240 Line -7500403 true 75 195 75 240 Line -7500403 true 225 195 225 240 Line -16777216 false 270 180 270 255 Line -16777216 false 0 180 300 180 house two story false 0 Polygon -7500403 true true 2 180 227 180 152 150 32 150 Rectangle -7500403 true true 270 75 285 255 Rectangle -7500403 true true 75 135 270 255 Rectangle -16777216 true false 124 195 187 256 Rectangle -16777216 true false 210 195 255 240 Rectangle -16777216 true false 90 150 135 180 Rectangle -16777216 true false 210 150 255 180 Line -16777216 false 270 135 270 255 Rectangle -7500403 true true 15 180 75 255 Polygon -7500403 true true 60 135 285 135 240 90 105 90 Line -16777216 false 75 135 75 180 Rectangle -16777216 true false 30 195 93 240 Line -16777216 false 60 135 285 135 Line -16777216 false 255 105 285 135 Line -16777216 false 0 180 75 180 Line -7500403 true 60 195 60 240 Line -7500403 true 154 195 154 255 leaf false 0 Polygon -7500403 true true 150 210 135 195 120 210 60 210 30 195 60 180 60 165 15 135 30 120 15 105 40 104 45 90 60 90 90 105 105 120 120 120 105 60 120 60 135 30 150 15 165 30 180 60 195 60 180 120 195 120 210 105 240 90 255 90 263 104 285 105 270 120 285 135 240 165 240 180 270 195 240 210 180 210 165 195 Polygon -7500403 true true 135 195 135 240 120 255 105 255 105 285 135 285 165 240 165 195 line true 0 Line -7500403 true 150 0 150 300 line half true 0 Line -7500403 true 150 0 150 150 local produce true 0 Rectangle -6459832 true false 45 60 270 240 Rectangle -10899396 true false 60 90 75 225 Rectangle -10899396 true false 90 75 105 210 Rectangle -10899396 true false 120 90 135 225 Rectangle -10899396 true false 150 75 165 210 Rectangle -10899396 true false 180 90 195 225 Rectangle -10899396 true false 210 75 225 210 Rectangle -10899396 true false 240 90 255 225 newmexicofriedtacos true 0 Polygon -1184463 true false 45 210 255 210 255 150 225 120 75 120 45 150 45 210 90 210 Polygon -10899396 true false 75 120 90 105 135 105 150 120 165 105 210 105 225 120 90 120 Polygon -10899396 true false 45 195 30 180 30 165 45 150 45 195 Polygon -10899396 true false 45 150 45 120 75 120 75 120 Polygon -10899396 true false 225 120 255 120 255 150 Polygon -10899396 true false 255 150 270 165 270 180 255 195 255 150 Polygon -2674135 true false 60 120 Polygon -2674135 true false 70 120 80 112 89 112 108 112 154 116 200 110 225 119 Polygon -2674135 true false 70 121 50 129 45 150 70 126 Polygon -2674135 true false 46 152 45 196 37 160 47 154 47 154 Polygon -2674135 true false 223 120 236 131 245 143 256 151 232 119 Polygon -2674135 true false 255 155 255 153 262 166 261 188 254 196 256 154 offices true 0 Polygon -7500403 false true 210 270 240 270 240 90 210 90 210 270 165 270 165 195 210 195 165 195 165 135 120 135 120 270 180 270 75 270 75 60 120 60 120 135 Polygon -7500403 true true 75 60 75 270 240 270 240 90 210 90 210 195 165 195 165 135 120 135 120 270 120 60 75 60 Polygon -16777216 false false 120 135 120 270 165 270 165 135 120 135 165 135 165 195 210 195 210 270 165 270 75 270 Polygon -7500403 true true 120 135 120 270 75 270 75 135 120 135 Polygon -11221820 false false 90 75 90 75 105 75 105 90 90 90 90 75 90 75 Polygon -11221820 true false 90 75 90 90 105 90 105 75 90 75 Polygon -1 false false 225 105 225 105 225 120 Polygon -7500403 true true 240 90 255 90 255 270 240 270 Polygon -1 true false 225 120 240 120 240 105 225 105 Polygon -1 true false 90 75 90 90 105 90 105 75 90 75 Polygon -1 true false 90 105 90 120 105 120 105 105 90 105 Polygon -1 true false 90 195 90 210 105 210 105 195 90 195 Polygon -1 true false 90 165 90 180 105 180 105 165 90 165 Polygon -1 true false 90 135 90 150 105 150 105 135 90 135 Polygon -1 true false 90 225 90 240 105 240 105 225 90 225 Polygon -1 true false 135 150 135 165 150 165 150 150 135 150 Polygon -1 true false 135 180 135 195 150 195 150 180 135 180 Polygon -1 true false 135 210 135 225 150 225 150 210 135 210 Polygon -1 true false 180 210 180 225 195 225 195 210 180 210 Polygon -1 true false 180 240 180 255 195 255 195 240 180 240 Polygon -1 true false 225 135 225 150 240 150 240 135 225 135 Polygon -1 true false 225 165 225 180 240 180 240 165 225 165 Polygon -1 true false 225 195 225 210 240 210 240 195 225 195 Polygon -1 true false 225 225 225 240 240 240 240 225 225 225 Polygon -16777216 false false 120 270 75 270 75 60 120 60 120 135 165 135 165 195 210 195 210 90 255 90 255 270 210 270 75 270 pentagon false 0 Polygon -7500403 true true 150 15 15 120 60 285 240 285 285 120 person false 0 Circle -7500403 true true 110 5 80 Polygon -7500403 true true 105 90 120 195 90 285 105 300 135 300 150 225 165 300 195 300 210 285 180 195 195 90 Rectangle -7500403 true true 127 79 172 94 Polygon -7500403 true true 195 90 240 150 225 180 165 105 Polygon -7500403 true true 105 90 60 150 75 180 135 105 pizza garden true 0 Circle -6459832 false false 30 30 240 Circle -1184463 true false 9 8 280 Circle -2674135 true false 28 153 42 Circle -2674135 true false 56 90 44 Circle -2674135 true false 122 110 46 Circle -2674135 true false 147 211 42 Circle -2674135 true false 212 115 45 Circle -2674135 true false 128 44 40 Circle -2674135 true false 93 175 42 Rectangle -955883 true false 89 70 97 144 Rectangle -955883 true false 154 169 160 246 Rectangle -955883 true false 171 96 234 104 Rectangle -6459832 true false 46 171 122 178 Rectangle -6459832 true false 204 147 212 198 Rectangle -6459832 true false 113 43 172 50 plant false 0 Rectangle -7500403 true true 135 90 165 300 Polygon -7500403 true true 135 255 90 210 45 195 75 255 135 285 Polygon -7500403 true true 165 255 210 210 255 195 225 255 165 285 Polygon -7500403 true true 135 180 90 135 45 120 75 180 135 210 Polygon -7500403 true true 165 180 165 210 225 180 255 120 210 135 Polygon -7500403 true true 135 105 90 60 45 45 75 105 135 135 Polygon -7500403 true true 165 105 165 135 225 105 255 45 210 60 Polygon -7500403 true true 135 90 120 45 150 15 180 45 165 90 sheep false 15 Circle -1 true true 203 65 88 Circle -1 true true 70 65 162 Circle -1 true true 150 105 120 Polygon -7500403 true false 218 120 240 165 255 165 278 120 Circle -7500403 true false 214 72 67 Rectangle -1 true true 164 223 179 298 Polygon -1 true true 45 285 30 285 30 240 15 195 45 210 Circle -1 true true 3 83 150 Rectangle -1 true true 65 221 80 296 Polygon -1 true true 195 285 210 285 210 240 240 210 195 210 Polygon -7500403 true false 276 85 285 105 302 99 294 83 Polygon -7500403 true false 219 85 210 105 193 99 201 83 square false 0 Rectangle -7500403 true true 30 30 270 270 square 2 false 0 Rectangle -7500403 true true 30 30 270 270 Rectangle -16777216 true false 60 60 240 240 star false 0 Polygon -7500403 true true 151 1 185 108 298 108 207 175 242 282 151 216 59 282 94 175 3 108 116 108 target false 0 Circle -7500403 true true 0 0 300 Circle -16777216 true false 30 30 240 Circle -7500403 true true 60 60 180 Circle -16777216 true false 90 90 120 Circle -7500403 true true 120 120 60 tea true 15 Circle -1 true true 12 12 277 Polygon -11221820 false false 60 105 60 240 90 240 90 105 135 105 135 75 30 75 30 105 60 105 Line -11221820 false 105 120 105 255 Polygon -11221820 false false 105 255 150 255 150 240 150 225 120 225 120 195 150 195 150 165 120 165 120 135 150 135 150 105 105 105 105 120 Line -11221820 false 150 255 180 105 Line -11221820 false 180 105 225 105 Line -11221820 false 225 105 255 240 Line -11221820 false 150 255 165 255 Line -11221820 false 180 182 225 182 Line -11221820 false 240 240 240 240 Polygon -11221820 false false 195 135 195 135 195 135 210 135 225 165 195 165 195 165 180 165 195 135 Line -11221820 false 165 255 180 180 Line -11221820 false 225 180 240 255 Rectangle -11221820 true false 30 75 135 105 Rectangle -11221820 true false 60 105 90 240 Rectangle -11221820 true false 105 105 150 135 Rectangle -11221820 true false 105 135 120 255 Rectangle -11221820 true false 120 165 150 195 Rectangle -11221820 true false 120 225 150 255 Polygon -11221820 true false 180 105 180 105 150 255 165 255 180 180 225 180 240 255 255 240 225 105 180 105 225 105 180 105 Line -1 true 195 120 210 120 Line -1 true 180 165 225 165 Line -1 true 270 150 255 195 Circle -1 true true 180 165 0 Circle -1 true true 195 150 0 Rectangle -1 true true 195 150 195 150 Rectangle -1 true true 195 150 210 150 Rectangle -1 true true 195 135 210 150 Rectangle -1 true true 195 150 210 165 Rectangle -1 true true 195 120 210 135 Rectangle -1 true true 210 150 210 165 Rectangle -1 true true 210 150 225 165 Rectangle -1 true true 180 150 195 165 Rectangle -1 false true 195 135 195 150 Polygon -1 true true 195 120 180 150 195 150 195 120 180 150 195 150 195 150 tree false 0 Circle -7500403 true true 118 3 94 Rectangle -6459832 true false 120 195 180 300 Circle -7500403 true true 65 21 108 Circle -7500403 true true 116 41 127 Circle -7500403 true true 45 90 120 Circle -7500403 true true 104 74 152 triangle false 0 Polygon -7500403 true true 150 30 15 255 285 255 triangle 2 false 0 Polygon -7500403 true true 150 30 15 255 285 255 Polygon -16777216 true false 151 99 225 223 75 224 truck false 0 Rectangle -7500403 true true 4 45 195 187 Polygon -7500403 true true 296 193 296 150 259 134 244 104 208 104 207 194 Rectangle -1 true false 195 60 195 105 Polygon -16777216 true false 238 112 252 141 219 141 218 112 Circle -16777216 true false 234 174 42 Rectangle -7500403 true true 181 185 214 194 Circle -16777216 true false 144 174 42 Circle -16777216 true false 24 174 42 Circle -7500403 false true 24 174 42 Circle -7500403 false true 144 174 42 Circle -7500403 false true 234 174 42 turtle true 0 Polygon -10899396 true false 215 204 240 233 246 254 228 266 215 252 193 210 Polygon -10899396 true false 195 90 225 75 245 75 260 89 269 108 261 124 240 105 225 105 210 105 Polygon -10899396 true false 105 90 75 75 55 75 40 89 31 108 39 124 60 105 75 105 90 105 Polygon -10899396 true false 132 85 134 64 107 51 108 17 150 2 192 18 192 52 169 65 172 87 Polygon -10899396 true false 85 204 60 233 54 254 72 266 85 252 107 210 Polygon -7500403 true true 119 75 179 75 209 101 224 135 220 225 175 261 128 261 81 224 74 135 88 99 victorian house true 6 Polygon -11221820 true false 105 135 105 255 45 255 45 135 105 135 Polygon -2674135 true false 105 135 180 135 180 255 105 255 105 135 Polygon -13840069 true true 180 135 255 135 255 255 180 255 180 135 Polygon -11221820 true false 45 135 30 135 30 255 60 255 45 135 Polygon -11221820 true false 195 210 180 180 180 135 Polygon -7500403 true false 30 135 60 105 75 105 105 135 30 135 Polygon -7500403 true false 105 135 180 135 105 135 135 105 150 105 180 135 Polygon -7500403 true false 210 90 Polygon -7500403 true false 180 135 210 105 225 105 255 135 180 135 Polygon -13840069 true true 180 135 180 255 255 255 255 135 180 135 180 255 Polygon -16777216 true false 45 255 45 225 75 225 75 255 45 255 60 255 60 225 Polygon -11221820 true false 45 255 45 210 75 210 90 255 45 255 Polygon -16777216 false false 45 255 45 225 75 225 90 225 75 225 75 255 45 255 60 255 60 225 Polygon -11221820 false false 75 225 75 255 90 255 90 210 75 210 75 255 Polygon -11221820 true false 45 255 45 195 90 210 90 255 45 255 Polygon -16777216 false false 45 255 45 225 75 225 75 255 45 255 60 255 60 225 Polygon -16777216 false false 45 255 45 225 75 225 75 255 45 255 60 255 60 225 Polygon -16777216 false false 120 255 120 225 150 225 150 255 120 255 135 255 135 225 Polygon -16777216 false false 120 255 120 225 150 225 150 255 120 255 135 255 135 225 Polygon -16777216 false false 120 255 120 225 150 225 150 255 120 255 135 255 135 225 Polygon -11221820 true false 60 225 60 255 45 255 45 225 60 225 Polygon -16777216 false false 60 225 45 225 45 255 60 255 Polygon -2674135 false false 135 225 135 255 120 255 120 225 135 225 Polygon -2674135 true false 135 225 135 255 120 255 120 225 135 225 Polygon -16777216 false false 210 225 210 225 210 255 195 255 195 225 225 225 Polygon -13840069 true true 195 210 195 240 180 240 180 210 195 210 Polygon -16777216 false false 120 255 120 225 150 225 150 255 120 255 135 255 135 225 Polygon -16777216 false false 210 225 210 255 225 255 225 225 195 225 Polygon -2674135 true false 135 225 135 255 120 255 120 225 135 225 Polygon -16777216 false false 135 225 120 225 120 255 135 255 Polygon -1 true false 45 150 45 165 60 165 60 150 45 150 Polygon -1 true false 75 150 75 165 90 165 90 150 75 150 Polygon -1 true false 45 180 45 195 60 195 60 180 45 180 Polygon -1 true false 75 180 75 195 90 195 90 180 75 180 Polygon -1 true false 120 150 120 165 135 165 135 150 120 150 Polygon -1 true false 150 180 150 195 165 195 165 180 150 180 Polygon -1 true false 150 150 150 165 165 165 165 150 150 150 Polygon -1 true false 120 180 120 195 135 195 135 180 120 180 Polygon -1 true false 225 180 225 195 240 195 240 180 225 180 Polygon -1 true false 195 180 195 195 210 195 210 180 195 180 Polygon -1 true false 225 150 225 165 240 165 240 150 225 150 Polygon -1 true false 195 150 195 165 210 165 210 150 195 150 wheel false 0 Circle -7500403 true true 3 3 294 Circle -16777216 true false 30 30 240 Line -7500403 true 150 285 150 15 Line -7500403 true 15 150 285 150 Circle -7500403 true true 120 120 60 Line -7500403 true 216 40 79 269 Line -7500403 true 40 84 269 221 Line -7500403 true 40 216 269 79 Line -7500403 true 84 40 221 269 wolf false 0 Polygon -16777216 true false 253 133 245 131 245 133 Polygon -7500403 true true 2 194 13 197 30 191 38 193 38 205 20 226 20 257 27 265 38 266 40 260 31 253 31 230 60 206 68 198 75 209 66 228 65 243 82 261 84 268 100 267 103 261 77 239 79 231 100 207 98 196 119 201 143 202 160 195 166 210 172 213 173 238 167 251 160 248 154 265 169 264 178 247 186 240 198 260 200 271 217 271 219 262 207 258 195 230 192 198 210 184 227 164 242 144 259 145 284 151 277 141 293 140 299 134 297 127 273 119 270 105 Polygon -7500403 true true -1 195 14 180 36 166 40 153 53 140 82 131 134 133 159 126 188 115 227 108 236 102 238 98 268 86 269 92 281 87 269 103 269 113 x false 0 Polygon -7500403 true true 270 75 225 30 30 225 75 270 Polygon -7500403 true true 30 75 75 30 270 225 225 270 @#$#@#$#@ NetLogo 6.1.1 @#$#@#$#@ @#$#@#$#@ @#$#@#$#@ @#$#@#$#@ @#$#@#$#@ default 0.0 -0.2 0 0.0 1.0 0.0 1 1.0 0.0 0.2 0 0.0 1.0 link direction true 0 Line -7500403 true 150 150 90 180 Line -7500403 true 150 150 210 180 @#$#@#$#@ 0 @#$#@#$#@