forked from zoe-loh/WMD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresults_sbj80.xls
3487 lines (3487 loc) · 261 KB
/
results_sbj80.xls
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
width task task_trial image_name height sbj CURRENT_FIX_INDEX CURRENT_FIX_X CURRENT_FIX_Y CURRENT_FIX_DURATION NEXT_SAC_AMPLITUDE Condition
1024 aesthetic 1 demo_01.png 768 80 1 503.4 456.4 320 5.91 a
1024 aesthetic 1 demo_01.png 768 80 2 381.7 290 190 6.45 a
1024 aesthetic 1 demo_01.png 768 80 3 254 93.5 214 1.83 a
1024 aesthetic 1 demo_01.png 768 80 4 194.4 80 166 1.6 a
1024 aesthetic 1 demo_01.png 768 80 5 140.3 86.2 285 4.4 a
1024 aesthetic 1 demo_01.png 768 80 6 303.1 93 153 5.62 a
1024 aesthetic 1 demo_01.png 768 80 7 508.6 103.3 267 2.74 a
1024 aesthetic 1 demo_01.png 768 80 8 623.9 95.1 159 4.01 a
1024 aesthetic 1 demo_01.png 768 80 9 764.9 88.7 166 2.77 a
1024 aesthetic 1 demo_01.png 768 80 10 861.5 88.5 199 18.18 a
1024 aesthetic 1 demo_01.png 768 80 11 192.9 122.1 181 1.01 a
1024 aesthetic 1 demo_01.png 768 80 12 158.3 131.3 190 9.81 a
1024 aesthetic 1 demo_01.png 768 80 13 194.9 491.8 188 1.32 a
1024 aesthetic 1 demo_01.png 768 80 14 158.6 519 291 3.4 a
1024 aesthetic 1 demo_01.png 768 80 15 275.5 531.5 185 4.52 a
1024 aesthetic 1 demo_01.png 768 80 16 431.7 538.7 178 4.42 a
1024 aesthetic 1 demo_01.png 768 80 17 587.1 540.6 166 4.72 a
1024 aesthetic 1 demo_01.png 768 80 18 754.2 536.5 138 3.92 a
1024 aesthetic 1 demo_01.png 768 80 19 895.9 524.6 167 20.12 a
1024 aesthetic 1 demo_01.png 768 80 20 138.8 564.2 150 5.33 a
1024 aesthetic 1 demo_01.png 768 80 21 150.8 748.6 27 0.49 a
1024 aesthetic 1 demo_01.png 768 80 22 178.1 673.5 48 2.17 a
1024 aesthetic 1 demo_01.png 768 80 23 132.7 653.8 578 26.54 a
1024 aesthetic 1 demo_01.png 768 80 24 956.6 80.2 347 13.15 a
1024 aesthetic 1 demo_01.png 768 80 25 527.1 301.8 173 5.09 a
1024 aesthetic 1 demo_01.png 768 80 26 391 359.8 258 1.91 a
1024 aesthetic 1 demo_01.png 768 80 27 370.6 428.3 318 10.73 a
1024 aesthetic 1 demo_01.png 768 80 28 136.2 109 270 4.01 a
1024 aesthetic 1 demo_01.png 768 80 29 271.5 88.9 262 9.8 a
1024 aesthetic 1 demo_01.png 768 80 30 624.1 122 219 4.92 a
1024 aesthetic 1 demo_01.png 768 80 31 719.5 197.1 589 15.49 a
1024 aesthetic 1 demo_01.png 768 80 32 237.6 506.8 359 5.82 a
1024 aesthetic 1 demo_01.png 768 80 33 207.3 590.6 375 0.77 a
1024 aesthetic 1 demo_01.png 768 80 34 173.3 544.2 211 5.8 a
1024 aesthetic 1 demo_01.png 768 80 35 381.4 554.2 253 4.3 a
1024 aesthetic 1 demo_01.png 768 80 36 532.7 539.2 196 4.23 a
1024 aesthetic 1 demo_01.png 768 80 37 678.3 526.8 165 3.83 a
1024 aesthetic 1 demo_01.png 768 80 38 819.3 529.5 159 2.45 a
1024 aesthetic 1 demo_01.png 768 80 39 923.8 523.2 144 19.58 a
1024 aesthetic 1 demo_01.png 768 80 40 204.5 619.2 146 9.37 a
1024 aesthetic 1 demo_01.png 768 80 41 419 309.7 141 1.6 a
1024 aesthetic 1 demo_01.png 768 80 42 469.3 276.2 867 2.83 a
1024 aesthetic 1 demo_01.png 768 80 43 370.4 329.8 75 4.14 a
1024 aesthetic 1 demo_01.png 768 80 44 379.5 395.3 169 1.63 a
1024 aesthetic 1 demo_01.png 768 80 45 371.5 444.2 995 3.9 a
1024 aesthetic 1 demo_01.png 768 80 46 386.3 309.3 1057 12.66 a
1024 aesthetic 1 demo_01.png 768 80 47 139.3 721.5 221 0.9 a
1024 aesthetic 1 demo_01.png 768 80 48 286.1 705.8 2826 0.53 a
1024 aesthetic 1 demo_01.png 768 80 49 483.3 703.1 101 0.24 a
1024 aesthetic 1 demo_01.png 768 80 50 677.8 771.2 2173 0.23 a
1024 aesthetic 1 demo_01.png 768 80 51 790.2 883.2 65 0.23 a
1024 aesthetic 1 demo_01.png 768 80 52 800.5 870.4 112 0.23 a
1024 aesthetic 1 demo_01.png 768 80 53 881.6 784.2 498 1.27 a
1024 aesthetic 1 demo_01.png 768 80 54 739.2 700.6 2777 0.93 a
1024 aesthetic 1 demo_01.png 768 80 55 564.6 694.6 293 0.58 a
1024 aesthetic 1 demo_01.png 768 80 56 557.6 663.4 96 1.66 a
1024 aesthetic 1 demo_01.png 768 80 57 282.4 663.2 3551 0.51 a
1024 aesthetic 1 demo_01.png 768 80 58 29.3 657.8 567 0.49 a
1024 aesthetic 1 demo_01.png 768 80 59 38.4 601.1 488 1.26 a
1024 aesthetic 1 demo_01.png 768 80 60 101.6 623.7 205 0.26 a
1024 aesthetic 1 demo_01.png 768 80 61 126.4 612.9 387 1.93 a
1024 aesthetic 1 demo_01.png 768 80 62 168.4 676.5 31 0.46 a
1024 aesthetic 1 demo_01.png 768 80 63 210.8 600.7 189 3.54 a
1024 aesthetic 1 demo_01.png 768 80 64 244.3 725.4 30 1.14 a
1024 aesthetic 1 demo_01.png 768 80 65 437.2 601.4 2860 4.41 a
1024 aesthetic 1 demo_01.png 768 80 66 771.8 606.4 1997 0.47 a
1024 aesthetic 1 demo_01.png 768 80 67 962.4 577.8 1119 0.41 a
1024 aesthetic 1 demo_01.png 768 80 68 994.3 491 492 1.06 a
1024 aesthetic 1 demo_01.png 768 80 69 909.1 492.3 647 5.98 a
1024 aesthetic 1 demo_01.png 768 80 70 776.7 515.9 787 0.25 a
1024 aesthetic 1 demo_01.png 768 80 71 573.6 641.4 73 1.27 a
1024 aesthetic 1 demo_01.png 768 80 72 625 550.1 162 1.59 a
1024 aesthetic 1 demo_01.png 768 80 73 535.2 526.3 987 0.5 a
1024 aesthetic 1 demo_01.png 768 80 74 399.9 533.8 1233 5.26 a
1024 aesthetic 1 demo_01.png 768 80 75 205.3 684.6 58 0.77 a
1024 aesthetic 1 demo_01.png 768 80 76 200.3 612.3 35 0.29 a
1024 aesthetic 1 demo_01.png 768 80 77 172.8 538.3 1071 0.52 a
1024 aesthetic 1 demo_01.png 768 80 78 41.3 502.3 973 0.86 a
1024 aesthetic 1 demo_01.png 768 80 79 17.9 423 532 1.08 a
1024 aesthetic 1 demo_01.png 768 80 80 152.2 445.1 1359 1.46 a
1024 aesthetic 1 demo_01.png 768 80 81 311.8 445.8 911 4.2 a
1024 aesthetic 1 demo_01.png 768 80 82 540.1 453.2 2030 0.44 a
1024 aesthetic 1 demo_01.png 768 80 83 739.5 446.4 1244 0.42 a
1024 aesthetic 1 demo_01.png 768 80 84 845.8 480.1 205 4.64 a
1024 aesthetic 1 demo_01.png 768 80 85 914.5 557.6 754 0.57 a
1024 aesthetic 1 demo_01.png 768 80 86 966.6 516.4 272 0.54 a
1024 aesthetic 1 demo_01.png 768 80 87 993.2 475.7 367 0.73 a
1024 aesthetic 1 demo_01.png 768 80 88 974.6 396.7 565 0.55 a
1024 aesthetic 1 demo_01.png 768 80 89 897.7 409.8 524 6.35 a
1024 aesthetic 1 demo_01.png 768 80 90 762.6 435.6 622 5.05 a
1024 aesthetic 1 demo_01.png 768 80 91 680.9 458.8 272 0.49 a
1024 aesthetic 1 demo_01.png 768 80 92 590.2 360.6 1226 4.82 a
1024 aesthetic 1 demo_01.png 768 80 93 457.6 528.6 245 0.52 a
1024 aesthetic 1 demo_01.png 768 80 94 386.3 387.3 715 4.24 a
1024 aesthetic 1 demo_01.png 768 80 95 226.6 374.4 1140 0.57 a
1024 aesthetic 1 demo_01.png 768 80 96 80.2 354.7 982 0.52 a
1024 aesthetic 1 demo_01.png 768 80 97 23.9 313.2 861 0.38 a
1024 aesthetic 1 demo_01.png 768 80 98 151.9 290.3 1555 1.65 a
1024 aesthetic 1 demo_01.png 768 80 99 302.1 303.9 359 2.74 a
1024 aesthetic 1 demo_01.png 768 80 100 466.6 294.1 1735 0.38 a
1024 aesthetic 1 demo_01.png 768 80 101 649.1 285.1 944 5.72 a
1024 aesthetic 1 demo_01.png 768 80 102 800.9 296.4 869 0.63 a
1024 aesthetic 1 demo_01.png 768 80 103 929.4 266.6 1069 0.51 a
1024 aesthetic 1 demo_01.png 768 80 104 980.4 248.1 571 0.79 a
1024 aesthetic 1 demo_01.png 768 80 105 975.1 185.6 307 4.74 a
1024 aesthetic 1 demo_01.png 768 80 106 845.9 216.5 1096 5.35 a
1024 aesthetic 1 demo_01.png 768 80 107 711.9 248.1 572 0.38 a
1024 aesthetic 1 demo_01.png 768 80 108 629 242.8 487 8.6 a
1024 aesthetic 1 demo_01.png 768 80 109 487.1 247.3 1273 6.06 a
1024 aesthetic 1 demo_01.png 768 80 110 304.4 236.1 1124 0.98 a
1024 aesthetic 1 demo_01.png 768 80 111 186.6 229.5 256 0.52 a
1024 aesthetic 1 demo_01.png 768 80 112 151.5 237.2 769 0.69 a
1024 aesthetic 1 demo_01.png 768 80 113 58.7 239.3 715 0.65 a
1024 aesthetic 1 demo_01.png 768 80 114 39.2 188.7 994 0.85 a
1024 aesthetic 1 demo_01.png 768 80 115 161.6 170 1125 0.25 a
1024 aesthetic 1 demo_01.png 768 80 116 248.4 170.9 222 1.56 a
1024 aesthetic 1 demo_01.png 768 80 117 310.6 161.5 266 1.41 a
1024 aesthetic 1 demo_01.png 768 80 118 451.8 177.3 1778 0.53 a
1024 aesthetic 1 demo_01.png 768 80 119 792.4 162.6 3276 0.87 a
1024 aesthetic 1 demo_01.png 768 80 120 995 143 266 1.12 a
1024 aesthetic 1 demo_01.png 768 80 121 956.9 91.5 714 0.57 a
1024 aesthetic 1 demo_01.png 768 80 122 869.5 112 537 1.25 a
1024 aesthetic 1 demo_01.png 768 80 123 787.1 94.5 172 3.47 a
1024 aesthetic 1 demo_01.png 768 80 124 683.3 115 972 0.57 a
1024 aesthetic 1 demo_01.png 768 80 125 515.4 107 1462 0.51 a
1024 aesthetic 1 demo_01.png 768 80 126 376.9 105.2 725 0.22 a
1024 aesthetic 1 demo_01.png 768 80 127 246.4 110.8 1328 0.41 a
1024 aesthetic 1 demo_01.png 768 80 128 73.7 112.2 1526 0.96 a
1024 aesthetic 1 demo_01.png 768 80 129 32.8 56.4 541 0.75 a
1024 aesthetic 1 demo_01.png 768 80 130 96.9 47.1 219 1.1 a
1024 aesthetic 1 demo_01.png 768 80 131 490.8 48.1 5839 0.93 a
1024 aesthetic 1 demo_01.png 768 80 132 924 44.3 517 . a
1024 aesthetic 1 demo_01.png 768 80 1 505.8 362.7 654 1.45 aesthetic
1024 aesthetic 1 demo_01.png 768 80 2 481.5 289.8 275 6.54 aesthetic
1024 aesthetic 1 demo_01.png 768 80 3 719.3 304.1 446 8.18 aesthetic
1024 aesthetic 1 demo_01.png 768 80 4 428.7 325.8 397 6.49 aesthetic
1024 aesthetic 1 demo_01.png 768 80 5 644.3 401.5 277 1.16 aesthetic
1024 aesthetic 1 demo_01.png 768 80 6 617.3 370.8 254 2.31 aesthetic
1024 aesthetic 1 demo_01.png 768 80 7 562.8 309.4 299 6.87 aesthetic
1024 aesthetic 1 demo_01.png 768 80 8 758.1 166.8 99 5.7 aesthetic
1024 aesthetic 1 demo_01.png 768 80 9 950.5 89.3 360 22.15 aesthetic
1024 aesthetic 1 demo_01.png 768 80 10 115.9 132.5 332 12.43 aesthetic
1024 aesthetic 1 demo_01.png 768 80 11 493.9 427.5 518 9.46 aesthetic
1024 aesthetic 1 demo_01.png 768 80 12 790.5 593.1 420 4.26 aesthetic
1024 aesthetic 1 demo_01.png 768 80 13 883.3 715.6 367 14.21 aesthetic
1024 aesthetic 1 demo_01.png 768 80 14 447.5 391.3 357 1.1 aesthetic
1024 aesthetic 1 demo_01.png 768 80 15 480.7 385.7 235 3.27 aesthetic
1024 aesthetic 1 demo_01.png 768 80 16 581.2 348.9 71 9.26 aesthetic
1024 aesthetic 1 demo_01.png 768 80 17 896.9 432.7 421 1.8 aesthetic
1024 aesthetic 1 demo_01.png 768 80 18 943.9 397.1 216 11.24 aesthetic
1024 aesthetic 1 demo_01.png 768 80 19 525.4 388.4 196 1.41 aesthetic
1024 aesthetic 1 demo_01.png 768 80 20 474.9 380.9 156 5.02 aesthetic
1024 aesthetic 1 demo_01.png 768 80 21 280.6 339 187 3.92 aesthetic
1024 aesthetic 1 demo_01.png 768 80 22 149.7 299.1 278 1.54 aesthetic
1024 aesthetic 1 demo_01.png 768 80 23 201.2 316 267 0.41 aesthetic
1024 aesthetic 1 demo_01.png 768 80 24 190.5 309 229 2.12 aesthetic
1024 aesthetic 1 demo_01.png 768 80 25 117.6 318.5 157 13.22 aesthetic
1024 aesthetic 1 demo_01.png 768 80 26 597.9 334.2 305 1.18 aesthetic
1024 aesthetic 1 demo_01.png 768 80 27 625.3 331.6 197 0.82 aesthetic
1024 aesthetic 1 demo_01.png 768 80 28 596.4 321.6 435 6.97 aesthetic
1024 aesthetic 1 demo_01.png 768 80 29 849.9 321.2 450 2.03 aesthetic
1024 aesthetic 1 demo_01.png 768 80 30 925.2 310.4 367 1.38 aesthetic
1024 aesthetic 1 demo_01.png 768 80 31 976.5 317.3 449 13.41 aesthetic
1024 aesthetic 1 demo_01.png 768 80 32 486.5 333.7 279 1.69 aesthetic
1024 aesthetic 1 demo_01.png 768 80 33 430 332.3 170 5.34 aesthetic
1024 aesthetic 1 demo_01.png 768 80 34 415.7 139.4 255 0.8 aesthetic
1024 aesthetic 1 demo_01.png 768 80 35 416.5 170.3 198 5.79 aesthetic
1024 aesthetic 1 demo_01.png 768 80 36 471.2 375 131 12.91 aesthetic
1024 aesthetic 1 demo_01.png 768 80 37 447.6 847.5 36 0.92 aesthetic
1024 aesthetic 1 demo_01.png 768 80 38 449.8 756 93 7.94 aesthetic
1024 aesthetic 1 demo_01.png 768 80 39 475.8 438 186 . aesthetic
1024 aesthetic 3 demo_03.png 768 80 1 510.8 365.6 123 0.26 aesthetic
1024 aesthetic 3 demo_03.png 768 80 2 522.9 372.8 212 2.64 aesthetic
1024 aesthetic 3 demo_03.png 768 80 3 473.5 459.2 249 5.84 aesthetic
1024 aesthetic 3 demo_03.png 768 80 4 424.2 260.2 433 8.11 aesthetic
1024 aesthetic 3 demo_03.png 768 80 5 676 423.5 231 2.98 aesthetic
1024 aesthetic 3 demo_03.png 768 80 6 665.8 529.1 212 4.75 aesthetic
1024 aesthetic 3 demo_03.png 768 80 7 834.4 549.2 231 4.23 aesthetic
1024 aesthetic 3 demo_03.png 768 80 8 676.1 557.8 251 11.42 aesthetic
1024 aesthetic 3 demo_03.png 768 80 9 640.3 125.8 240 1.97 aesthetic
1024 aesthetic 3 demo_03.png 768 80 10 639.4 57.7 223 11.45 aesthetic
1024 aesthetic 3 demo_03.png 768 80 11 246.5 181 555 9.73 aesthetic
1024 aesthetic 3 demo_03.png 768 80 12 197.3 471.5 1060 13.58 aesthetic
1024 aesthetic 3 demo_03.png 768 80 13 687.9 387.9 297 6.8 aesthetic
1024 aesthetic 3 demo_03.png 768 80 14 923.6 323.8 530 16.02 aesthetic
1024 aesthetic 3 demo_03.png 768 80 15 471.5 533.4 653 1.16 aesthetic
1024 aesthetic 3 demo_03.png 768 80 16 435.9 496.7 307 6.96 aesthetic
1024 aesthetic 3 demo_03.png 768 80 17 669.4 584.8 355 5.01 aesthetic
1024 aesthetic 3 demo_03.png 768 80 18 846.1 575.9 490 2.33 aesthetic
1024 aesthetic 3 demo_03.png 768 80 19 873.4 500 315 1.6 aesthetic
1024 aesthetic 3 demo_03.png 768 80 20 852 561.2 240 0.57 aesthetic
1024 aesthetic 3 demo_03.png 768 80 21 859.1 581.3 44 14.29 aesthetic
1024 aesthetic 3 demo_03.png 768 80 22 319.6 589.1 159 4.74 aesthetic
1024 aesthetic 3 demo_03.png 768 80 23 145.2 571.2 259 2.29 aesthetic
1024 aesthetic 3 demo_03.png 768 80 24 69.9 557.2 223 3 aesthetic
1024 aesthetic 3 demo_03.png 768 80 25 179.9 558.3 214 13.39 aesthetic
1024 aesthetic 3 demo_03.png 768 80 26 670.6 554.9 343 3.92 aesthetic
1024 aesthetic 3 demo_03.png 768 80 27 603.2 596.8 478 1.99 aesthetic
1024 aesthetic 3 demo_03.png 768 80 28 537.8 625.6 882 5.98 aesthetic
1024 aesthetic 3 demo_03.png 768 80 29 605.9 387.1 63 5.88 aesthetic
1024 aesthetic 3 demo_03.png 768 80 30 602.3 165.7 231 4.52 aesthetic
1024 aesthetic 3 demo_03.png 768 80 31 755 123.9 155 8.4 aesthetic
1024 aesthetic 3 demo_03.png 768 80 32 548.4 349.8 191 17.87 aesthetic
. . . . . . 1 481.8 382.3 97 . .
1024 aesthetic 1 target_kitchen_IDS01.png 768 80 1 533.1 389.3 516 5.01 aesthetic
1024 aesthetic 1 target_kitchen_IDS01.png 768 80 2 398.6 516.8 233 6.8 aesthetic
1024 aesthetic 1 target_kitchen_IDS01.png 768 80 3 587.1 368.2 299 7.02 aesthetic
1024 aesthetic 1 target_kitchen_IDS01.png 768 80 4 840.5 332.6 319 4.36 aesthetic
1024 aesthetic 1 target_kitchen_IDS01.png 768 80 5 995.9 314.4 468 7.37 aesthetic
1024 aesthetic 1 target_kitchen_IDS01.png 768 80 6 775.4 493.9 250 17.37 aesthetic
1024 aesthetic 1 target_kitchen_IDS01.png 768 80 7 157.6 322.2 285 5.01 aesthetic
1024 aesthetic 1 target_kitchen_IDS01.png 768 80 8 75.4 159.1 169 2.94 aesthetic
1024 aesthetic 1 target_kitchen_IDS01.png 768 80 9 45 61.7 411 10.13 aesthetic
1024 aesthetic 1 target_kitchen_IDS01.png 768 80 10 416.6 103.5 398 6.89 aesthetic
1024 aesthetic 1 target_kitchen_IDS01.png 768 80 11 658.5 68.6 172 10.2 aesthetic
1024 aesthetic 1 target_kitchen_IDS01.png 768 80 12 443.4 371.3 391 5.57 aesthetic
1024 aesthetic 1 target_kitchen_IDS01.png 768 80 13 622.7 466.6 403 2.04 aesthetic
1024 aesthetic 1 target_kitchen_IDS01.png 768 80 14 565.1 512.4 337 8.55 aesthetic
1024 aesthetic 1 target_kitchen_IDS01.png 768 80 15 871.1 534.7 429 6.32 aesthetic
1024 aesthetic 1 target_kitchen_IDS01.png 768 80 16 855.8 302.7 587 9 aesthetic
1024 aesthetic 1 target_kitchen_IDS01.png 768 80 17 637.7 492.9 172 3.59 aesthetic
1024 aesthetic 1 target_kitchen_IDS01.png 768 80 18 523.8 424.3 390 6.38 aesthetic
1024 aesthetic 1 target_kitchen_IDS01.png 768 80 19 308.3 348.8 340 2.64 aesthetic
1024 aesthetic 1 target_kitchen_IDS01.png 768 80 20 223.6 380.2 305 3.37 aesthetic
1024 aesthetic 1 target_kitchen_IDS01.png 768 80 21 248.7 268.6 244 10.1 aesthetic
1024 aesthetic 1 target_kitchen_IDS01.png 768 80 22 596.9 349.5 337 2.43 aesthetic
1024 aesthetic 1 target_kitchen_IDS01.png 768 80 23 592.4 441.4 181 8.38 aesthetic
1024 aesthetic 1 target_kitchen_IDS01.png 768 80 24 888.8 362 233 4.37 aesthetic
1024 aesthetic 1 target_kitchen_IDS01.png 768 80 25 1047.3 348.7 248 0.98 aesthetic
1024 aesthetic 1 target_kitchen_IDS01.png 768 80 26 1069.2 316.8 96 20.23 aesthetic
1024 aesthetic 1 target_kitchen_IDS01.png 768 80 27 306.5 347.3 285 2.64 aesthetic
1024 aesthetic 1 target_kitchen_IDS01.png 768 80 28 214.8 362.8 309 1.81 aesthetic
1024 aesthetic 1 target_kitchen_IDS01.png 768 80 29 211.3 305.6 222 11.58 aesthetic
1024 aesthetic 1 target_kitchen_IDS01.png 768 80 30 606.5 164 416 4.77 aesthetic
1024 aesthetic 1 target_kitchen_IDS01.png 768 80 31 772.9 196.4 240 5.84 aesthetic
1024 aesthetic 1 target_kitchen_IDS01.png 768 80 32 926.4 352.6 200 3.73 aesthetic
1024 aesthetic 1 target_kitchen_IDS01.png 768 80 33 789 383.5 164 8.61 aesthetic
1024 aesthetic 1 target_kitchen_IDS01.png 768 80 34 627.5 672.7 415 7.35 aesthetic
1024 aesthetic 1 target_kitchen_IDS01.png 768 80 35 356 649.4 300 7.47 aesthetic
1024 aesthetic 1 target_kitchen_IDS01.png 768 80 36 511.3 405.9 99 4.69 aesthetic
1024 aesthetic 2 target_livingroom_IDS01.png 768 80 1 496.2 385 301 5.23 aesthetic
1024 aesthetic 2 target_livingroom_IDS01.png 768 80 2 346.2 503.4 275 3.08 aesthetic
1024 aesthetic 2 target_livingroom_IDS01.png 768 80 3 254.4 436.3 233 6.8 aesthetic
1024 aesthetic 2 target_livingroom_IDS01.png 768 80 4 241.6 193.2 264 6.94 aesthetic
1024 aesthetic 2 target_livingroom_IDS01.png 768 80 5 487.8 275.7 284 1.05 aesthetic
1024 aesthetic 2 target_livingroom_IDS01.png 768 80 6 520 264 317 9.28 aesthetic
1024 aesthetic 2 target_livingroom_IDS01.png 768 80 7 774.6 509.8 382 9.26 aesthetic
1024 aesthetic 2 target_livingroom_IDS01.png 768 80 8 961.1 210 439 10.79 aesthetic
1024 aesthetic 2 target_livingroom_IDS01.png 768 80 9 711.5 520.6 225 6.15 aesthetic
1024 aesthetic 2 target_livingroom_IDS01.png 768 80 10 928.1 574.4 259 1.39 aesthetic
1024 aesthetic 2 target_livingroom_IDS01.png 768 80 11 976.9 560.8 579 16.17 aesthetic
1024 aesthetic 2 target_livingroom_IDS01.png 768 80 12 365.8 584.5 258 3.41 aesthetic
1024 aesthetic 2 target_livingroom_IDS01.png 768 80 13 243.6 536 273 1.91 aesthetic
1024 aesthetic 2 target_livingroom_IDS01.png 768 80 14 203.9 464.8 291 4.53 aesthetic
1024 aesthetic 2 target_livingroom_IDS01.png 768 80 15 48.5 513.4 804 12.43 aesthetic
1024 aesthetic 2 target_livingroom_IDS01.png 768 80 16 507.3 515 469 2.25 aesthetic
1024 aesthetic 2 target_livingroom_IDS01.png 768 80 17 537.5 581.1 91 1.27 aesthetic
1024 aesthetic 2 target_livingroom_IDS01.png 768 80 18 553.4 573.2 279 5.7 aesthetic
1024 aesthetic 2 target_livingroom_IDS01.png 768 80 19 505.6 360.9 206 2.63 aesthetic
1024 aesthetic 2 target_livingroom_IDS01.png 768 80 20 496.7 280 264 0.66 aesthetic
1024 aesthetic 2 target_livingroom_IDS01.png 768 80 21 511 267.5 216 0.21 aesthetic
1024 aesthetic 2 target_livingroom_IDS01.png 768 80 22 520.3 262.8 233 12.81 aesthetic
1024 aesthetic 2 target_livingroom_IDS01.png 768 80 23 960.9 106.8 334 0.68 aesthetic
1024 aesthetic 2 target_livingroom_IDS01.png 768 80 24 963.3 89.3 694 5.48 aesthetic
1024 aesthetic 2 target_livingroom_IDS01.png 768 80 25 908.3 289.9 204 3.64 aesthetic
1024 aesthetic 2 target_livingroom_IDS01.png 768 80 26 862.2 435.3 224 3.18 aesthetic
1024 aesthetic 2 target_livingroom_IDS01.png 768 80 27 845.1 538.9 235 2.82 aesthetic
1024 aesthetic 2 target_livingroom_IDS01.png 768 80 28 826.4 626 264 0.54 aesthetic
1024 aesthetic 2 target_livingroom_IDS01.png 768 80 29 816.6 608.3 254 1 aesthetic
1024 aesthetic 2 target_livingroom_IDS01.png 768 80 30 796.8 586.7 567 6.62 aesthetic
1024 aesthetic 2 target_livingroom_IDS01.png 768 80 31 561.4 646.2 252 5.8 aesthetic
1024 aesthetic 2 target_livingroom_IDS01.png 768 80 32 348.8 686.3 197 6.87 aesthetic
1024 aesthetic 2 target_livingroom_IDS01.png 768 80 33 86.1 714.6 196 1.79 aesthetic
1024 aesthetic 2 target_livingroom_IDS01.png 768 80 34 26.9 730.1 300 14.36 aesthetic
1024 aesthetic 2 target_livingroom_IDS01.png 768 80 35 455.8 398.4 197 15.85 aesthetic
1024 aesthetic 3 target_office_IDS01.png 768 80 1 519.7 402.3 63 4.59 aesthetic
1024 aesthetic 3 target_office_IDS01.png 768 80 2 476.5 520.8 27 0.68 aesthetic
1024 aesthetic 3 target_office_IDS01.png 768 80 3 468.5 382.3 366 7.72 aesthetic
1024 aesthetic 3 target_office_IDS01.png 768 80 4 696.3 554.4 282 2.88 aesthetic
1024 aesthetic 3 target_office_IDS01.png 768 80 5 740.6 469.1 277 9.15 aesthetic
1024 aesthetic 3 target_office_IDS01.png 768 80 6 428 574.6 336 4.68 aesthetic
1024 aesthetic 3 target_office_IDS01.png 768 80 7 279.5 699.7 262 1.61 aesthetic
1024 aesthetic 3 target_office_IDS01.png 768 80 8 336.2 728.7 181 8.79 aesthetic
1024 aesthetic 3 target_office_IDS01.png 768 80 9 80 506.8 297 1.23 aesthetic
1024 aesthetic 3 target_office_IDS01.png 768 80 10 47.1 473.7 148 6.97 aesthetic
1024 aesthetic 3 target_office_IDS01.png 768 80 11 214.3 685.1 377 15.63 aesthetic
1024 aesthetic 3 target_office_IDS01.png 768 80 12 794.2 663.6 455 5.35 aesthetic
1024 aesthetic 3 target_office_IDS01.png 768 80 13 946.9 537.5 172 7.06 aesthetic
1024 aesthetic 3 target_office_IDS01.png 768 80 14 681.8 555.8 342 4.29 aesthetic
1024 aesthetic 3 target_office_IDS01.png 768 80 15 738 422.8 499 8.04 aesthetic
1024 aesthetic 3 target_office_IDS01.png 768 80 16 449.2 549.6 323 4.49 aesthetic
1024 aesthetic 3 target_office_IDS01.png 768 80 17 425.1 376.6 207 3.98 aesthetic
1024 aesthetic 3 target_office_IDS01.png 768 80 18 544.9 303 348 0.73 aesthetic
1024 aesthetic 3 target_office_IDS01.png 768 80 19 547.4 277.9 286 1.09 aesthetic
1024 aesthetic 3 target_office_IDS01.png 768 80 20 553.7 310.1 505 13.1 aesthetic
1024 aesthetic 3 target_office_IDS01.png 768 80 21 1033.7 276.4 522 4.32 aesthetic
1024 aesthetic 3 target_office_IDS01.png 768 80 22 1009.1 456.8 96 5.94 aesthetic
1024 aesthetic 3 target_office_IDS01.png 768 80 23 986.2 628 95 1.05 aesthetic
1024 aesthetic 3 target_office_IDS01.png 768 80 24 997.5 539 371 23.19 aesthetic
1024 aesthetic 3 target_office_IDS01.png 768 80 25 124 305.1 575 2.98 aesthetic
1024 aesthetic 3 target_office_IDS01.png 768 80 26 188.3 221 422 9.68 aesthetic
1024 aesthetic 3 target_office_IDS01.png 768 80 27 190.4 600.5 348 2.03 aesthetic
1024 aesthetic 3 target_office_IDS01.png 768 80 28 183.8 687 437 1.5 aesthetic
1024 aesthetic 3 target_office_IDS01.png 768 80 29 197.6 644.6 135 4.31 aesthetic
1024 aesthetic 3 target_office_IDS01.png 768 80 30 342.8 745.2 367 1.66 aesthetic
1024 aesthetic 3 target_office_IDS01.png 768 80 31 376.8 688.4 543 5.38 aesthetic
1024 aesthetic 3 target_office_IDS01.png 768 80 32 369.3 474.5 269 1.7 aesthetic
1024 aesthetic 3 target_office_IDS01.png 768 80 33 335.9 518.7 283 1.08 aesthetic
1024 aesthetic 3 target_office_IDS01.png 768 80 34 363.3 509.1 237 2.48 aesthetic
1024 aesthetic 3 target_office_IDS01.png 768 80 35 440.3 472.1 237 2.36 aesthetic
1024 aesthetic 3 target_office_IDS01.png 768 80 36 446.3 398 118 10.02 aesthetic
1024 aesthetic 4 target_restaurant_IDS01.png 768 80 1 491.4 383.1 365 3.01 aesthetic
1024 aesthetic 4 target_restaurant_IDS01.png 768 80 2 586.1 367.2 179 6.19 aesthetic
1024 aesthetic 4 target_restaurant_IDS01.png 768 80 3 544.6 605.6 404 11.03 aesthetic
1024 aesthetic 4 target_restaurant_IDS01.png 768 80 4 238 339.9 447 5.37 aesthetic
1024 aesthetic 4 target_restaurant_IDS01.png 768 80 5 62.7 423.8 438 10.67 aesthetic
1024 aesthetic 4 target_restaurant_IDS01.png 768 80 6 410 239.8 393 3.91 aesthetic
1024 aesthetic 4 target_restaurant_IDS01.png 768 80 7 366.6 108.9 221 1.77 aesthetic
1024 aesthetic 4 target_restaurant_IDS01.png 768 80 8 325.9 63.3 322 0.5 aesthetic
1024 aesthetic 4 target_restaurant_IDS01.png 768 80 9 316 51.5 192 9.86 aesthetic
1024 aesthetic 4 target_restaurant_IDS01.png 768 80 10 663.6 189.8 261 4.36 aesthetic
1024 aesthetic 4 target_restaurant_IDS01.png 768 80 11 810.2 233.6 233 5.47 aesthetic
1024 aesthetic 4 target_restaurant_IDS01.png 768 80 12 921.6 410.4 115 6.7 aesthetic
1024 aesthetic 4 target_restaurant_IDS01.png 768 80 13 993.3 576.2 230 0.87 aesthetic
1024 aesthetic 4 target_restaurant_IDS01.png 768 80 14 963 574.5 456 7.9 aesthetic
1024 aesthetic 4 target_restaurant_IDS01.png 768 80 15 660.1 590.1 230 1.04 aesthetic
1024 aesthetic 4 target_restaurant_IDS01.png 768 80 16 687 582.5 186 7.38 aesthetic
1024 aesthetic 4 target_restaurant_IDS01.png 768 80 17 884.3 398.7 292 7.72 aesthetic
1024 aesthetic 4 target_restaurant_IDS01.png 768 80 18 607.8 345.4 264 5.84 aesthetic
1024 aesthetic 4 target_restaurant_IDS01.png 768 80 19 809.2 281.9 254 6.03 aesthetic
1024 aesthetic 4 target_restaurant_IDS01.png 768 80 20 616.9 381.1 169 1.29 aesthetic
1024 aesthetic 4 target_restaurant_IDS01.png 768 80 21 621.7 339.3 141 1.06 aesthetic
1024 aesthetic 4 target_restaurant_IDS01.png 768 80 22 654.8 338.5 185 7.72 aesthetic
1024 aesthetic 4 target_restaurant_IDS01.png 768 80 23 916.2 233.6 430 12.44 aesthetic
1024 aesthetic 4 target_restaurant_IDS01.png 768 80 24 459.9 185.9 440 2.01 aesthetic
1024 aesthetic 4 target_restaurant_IDS01.png 768 80 25 402.7 227.9 105 4.24 aesthetic
1024 aesthetic 4 target_restaurant_IDS01.png 768 80 26 298.8 116.3 190 6.96 aesthetic
1024 aesthetic 4 target_restaurant_IDS01.png 768 80 27 209.2 313.2 382 0.84 aesthetic
1024 aesthetic 4 target_restaurant_IDS01.png 768 80 28 194.6 342.1 276 4.91 aesthetic
1024 aesthetic 4 target_restaurant_IDS01.png 768 80 29 71.8 475.2 454 8.21 aesthetic
1024 aesthetic 4 target_restaurant_IDS01.png 768 80 30 307.2 703.5 535 5.88 aesthetic
1024 aesthetic 4 target_restaurant_IDS01.png 768 80 31 513.7 642 415 3.41 aesthetic
1024 aesthetic 4 target_restaurant_IDS01.png 768 80 32 444.6 543.6 254 8.08 aesthetic
1024 aesthetic 4 target_restaurant_IDS01.png 768 80 33 143.7 589.8 201 2.92 aesthetic
1024 aesthetic 4 target_restaurant_IDS01.png 768 80 34 62.1 507.8 224 6.74 aesthetic
1024 aesthetic 4 target_restaurant_IDS01.png 768 80 35 59.5 242 196 6.51 aesthetic
1024 aesthetic 4 target_restaurant_IDS01.png 768 80 36 262.9 122.3 265 2.64 aesthetic
1024 aesthetic 4 target_restaurant_IDS01.png 768 80 37 344.7 82.6 190 3.16 aesthetic
1024 aesthetic 4 target_restaurant_IDS01.png 768 80 38 444.1 157.5 140 4.74 aesthetic
1024 aesthetic 4 target_restaurant_IDS01.png 768 80 39 445 349.2 143 19.86 aesthetic
1024 aesthetic 5 target_street_IDS01.png 768 80 1 539.4 379.2 411 3.08 aesthetic
1024 aesthetic 5 target_street_IDS01.png 768 80 2 630 346.3 297 6.28 aesthetic
1024 aesthetic 5 target_street_IDS01.png 768 80 3 767.9 164.2 285 2.21 aesthetic
1024 aesthetic 5 target_street_IDS01.png 768 80 4 746.6 94.5 311 7.48 aesthetic
1024 aesthetic 5 target_street_IDS01.png 768 80 5 890 343 282 9.11 aesthetic
1024 aesthetic 5 target_street_IDS01.png 768 80 6 814.8 692.1 542 14.26 aesthetic
1024 aesthetic 5 target_street_IDS01.png 768 80 7 283.5 631.4 218 2.96 aesthetic
1024 aesthetic 5 target_street_IDS01.png 768 80 8 228.5 517.5 630 1.68 aesthetic
1024 aesthetic 5 target_street_IDS01.png 768 80 9 288.1 536.5 244 7.25 aesthetic
1024 aesthetic 5 target_street_IDS01.png 768 80 10 553.8 536.5 281 9.1 aesthetic
1024 aesthetic 5 target_street_IDS01.png 768 80 11 876.6 462.9 234 4.26 aesthetic
1024 aesthetic 5 target_street_IDS01.png 768 80 12 1005.8 380.1 301 3.1 aesthetic
1024 aesthetic 5 target_street_IDS01.png 768 80 13 925.9 279 187 5.91 aesthetic
1024 aesthetic 5 target_street_IDS01.png 768 80 14 862.8 103.6 347 5.82 aesthetic
1024 aesthetic 5 target_street_IDS01.png 768 80 15 654.1 66.3 152 10.15 aesthetic
1024 aesthetic 5 target_street_IDS01.png 768 80 16 289 125.3 244 4.98 aesthetic
1024 aesthetic 5 target_street_IDS01.png 768 80 17 120.9 117.2 299 1.85 aesthetic
1024 aesthetic 5 target_street_IDS01.png 768 80 18 59.8 103.4 499 5.69 aesthetic
1024 aesthetic 5 target_street_IDS01.png 768 80 19 221.2 263.4 330 4.92 aesthetic
1024 aesthetic 5 target_street_IDS01.png 768 80 20 142.6 441.9 252 2.34 aesthetic
1024 aesthetic 5 target_street_IDS01.png 768 80 21 121.1 517.2 489 9.07 aesthetic
1024 aesthetic 5 target_street_IDS01.png 768 80 22 454.9 483.6 303 4.89 aesthetic
1024 aesthetic 5 target_street_IDS01.png 768 80 23 594.5 378.2 324 3.1 aesthetic
1024 aesthetic 5 target_street_IDS01.png 768 80 24 703.8 353.5 305 9.42 aesthetic
1024 aesthetic 5 target_street_IDS01.png 768 80 25 351.3 361.7 169 7.66 aesthetic
1024 aesthetic 5 target_street_IDS01.png 768 80 26 90.9 258 191 1.91 aesthetic
1024 aesthetic 5 target_street_IDS01.png 768 80 27 35.3 231.6 291 0.92 aesthetic
1024 aesthetic 5 target_street_IDS01.png 768 80 28 18 232.8 507 22.13 aesthetic
1024 aesthetic 5 target_street_IDS01.png 768 80 29 837.7 271.6 253 2.48 aesthetic
1024 aesthetic 5 target_street_IDS01.png 768 80 30 915 266.2 299 3.76 aesthetic
1024 aesthetic 5 target_street_IDS01.png 768 80 31 1052.2 281 337 4.74 aesthetic
1024 aesthetic 5 target_street_IDS01.png 768 80 32 989.7 449.4 183 4.06 aesthetic
1024 aesthetic 5 target_street_IDS01.png 768 80 33 1067.8 323.9 298 0.52 aesthetic
1024 aesthetic 5 target_street_IDS01.png 768 80 34 1059.8 305.3 451 13.35 aesthetic
1024 aesthetic 5 target_street_IDS01.png 768 80 35 562.7 441.6 77 14.98 aesthetic
1024 aesthetic 6 target_workshop_IDS01.png 768 80 1 519.1 359.1 338 5 aesthetic
1024 aesthetic 6 target_workshop_IDS01.png 768 80 2 343.9 297.2 274 1.74 aesthetic
1024 aesthetic 6 target_workshop_IDS01.png 768 80 3 302.3 261.8 217 9.48 aesthetic
1024 aesthetic 6 target_workshop_IDS01.png 768 80 4 640.4 192 295 5.13 aesthetic
1024 aesthetic 6 target_workshop_IDS01.png 768 80 5 817.4 255.8 186 4.91 aesthetic
1024 aesthetic 6 target_workshop_IDS01.png 768 80 6 898.3 442.1 400 7.99 aesthetic
1024 aesthetic 6 target_workshop_IDS01.png 768 80 7 922.5 132.6 418 8.82 aesthetic
1024 aesthetic 6 target_workshop_IDS01.png 768 80 8 920.6 479.7 315 8.87 aesthetic
1024 aesthetic 6 target_workshop_IDS01.png 768 80 9 588.8 540.1 317 4.09 aesthetic
1024 aesthetic 6 target_workshop_IDS01.png 768 80 10 484 441.6 235 2.61 aesthetic
1024 aesthetic 6 target_workshop_IDS01.png 768 80 11 389.7 423.7 288 3.39 aesthetic
1024 aesthetic 6 target_workshop_IDS01.png 768 80 12 321.2 322.8 253 5.99 aesthetic
1024 aesthetic 6 target_workshop_IDS01.png 768 80 13 174.2 153.4 401 2.28 aesthetic
1024 aesthetic 6 target_workshop_IDS01.png 768 80 14 125.4 96 384 17.23 aesthetic
1024 aesthetic 6 target_workshop_IDS01.png 768 80 15 783.2 169.4 271 3.17 aesthetic
1024 aesthetic 6 target_workshop_IDS01.png 768 80 16 901.7 163.4 230 5.69 aesthetic
1024 aesthetic 6 target_workshop_IDS01.png 768 80 17 1030.8 344.2 339 6.43 aesthetic
1024 aesthetic 6 target_workshop_IDS01.png 768 80 18 995.7 610.5 243 1.01 aesthetic
1024 aesthetic 6 target_workshop_IDS01.png 768 80 19 980.9 624.2 855 6.63 aesthetic
1024 aesthetic 6 target_workshop_IDS01.png 768 80 20 716.8 643.3 314 2.18 aesthetic
1024 aesthetic 6 target_workshop_IDS01.png 768 80 21 633.7 600.6 218 11.48 aesthetic
1024 aesthetic 6 target_workshop_IDS01.png 768 80 22 213.3 658.2 209 4.53 aesthetic
1024 aesthetic 6 target_workshop_IDS01.png 768 80 23 104.8 529.2 405 4.19 aesthetic
1024 aesthetic 6 target_workshop_IDS01.png 768 80 24 -0.1 410.9 326 0.36 aesthetic
1024 aesthetic 6 target_workshop_IDS01.png 768 80 25 -9.7 394.3 125 6.93 aesthetic
1024 aesthetic 6 target_workshop_IDS01.png 768 80 26 35.5 658.6 764 15.35 aesthetic
1024 aesthetic 6 target_workshop_IDS01.png 768 80 27 650.7 518 324 3.22 aesthetic
1024 aesthetic 6 target_workshop_IDS01.png 768 80 28 613.1 402.3 287 3.78 aesthetic
1024 aesthetic 6 target_workshop_IDS01.png 768 80 29 695 545.5 343 4.05 aesthetic
1024 aesthetic 6 target_workshop_IDS01.png 768 80 30 724.3 387 494 5.15 aesthetic
1024 aesthetic 6 target_workshop_IDS01.png 768 80 31 920.3 350.4 488 5.25 aesthetic
1024 aesthetic 6 target_workshop_IDS01.png 768 80 32 866.1 151.2 154 9.48 aesthetic
1024 aesthetic 6 target_workshop_IDS01.png 768 80 33 550.7 345.3 213 7.77 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 1 522.9 386.4 169 1.72 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 2 460.8 403.4 286 4.86 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 3 332.7 279.2 298 1.43 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 4 378.7 281.3 252 9.35 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 5 714.5 241.8 524 7.29 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 6 892.1 457 244 3.27 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 7 921.8 574.9 614 0.23 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 8 903.4 579.3 434 3.36 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 9 930.1 460.5 222 0.83 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 10 921.9 433.9 167 2.1 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 11 924.6 507.2 207 3.75 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 12 984.8 388 146 8.9 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 13 671.2 236.1 381 1.05 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 14 693.1 204.8 116 15.63 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 15 124 208.9 286 3.22 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 16 236 162.4 290 5.14 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 17 415.7 250.7 189 0.36 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 18 394.5 252.4 54 16.08 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 19 961.8 93.7 392 23.06 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 20 334.5 691.3 167 3.11 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 21 297.1 582.8 193 6.35 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 22 499.5 702.4 331 3.03 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 23 588.5 648.7 342 8.68 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 24 904.2 594.9 350 2.08 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 25 899.1 650.8 234 2.49 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 26 898.2 568.4 172 16.74 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 27 269.1 475.1 237 1.55 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 28 225.1 491.7 210 1.7 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 29 229 388.5 192 4.15 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 30 360.5 310.1 230 3.24 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 31 465.8 355.2 196 2.19 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 32 403.6 316.6 240 0.28 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 33 396.3 313.9 185 3.3 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 34 455.9 433.8 316 1.39 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 35 490.9 467.6 181 0.47 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 36 491.8 453.2 262 3.11 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 37 568.9 525.3 144 1.02 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 38 556.8 493.7 205 2.96 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 39 472.2 422.2 181 0.9 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 40 488.9 447.8 530 3.06 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 41 555.1 358.1 195 2.03 aesthetic
1024 aesthetic 7 target_acquarium.png 768 80 42 501.2 395.6 201 4.75 aesthetic
1024 aesthetic 8 target_artstudio.png 768 80 1 519.1 384.9 367 5.38 aesthetic
1024 aesthetic 8 target_artstudio.png 768 80 2 322.3 370 149 2.07 aesthetic
1024 aesthetic 8 target_artstudio.png 768 80 3 382.2 345.5 127 6.94 aesthetic
1024 aesthetic 8 target_artstudio.png 768 80 4 614.7 244.3 247 2.92 aesthetic
1024 aesthetic 8 target_artstudio.png 768 80 5 701.1 228.3 298 3.24 aesthetic
1024 aesthetic 8 target_artstudio.png 768 80 6 681.2 110 178 14.82 aesthetic
1024 aesthetic 8 target_artstudio.png 768 80 7 162 283.1 348 1.26 aesthetic
1024 aesthetic 8 target_artstudio.png 768 80 8 133.6 261.2 225 6.42 aesthetic
1024 aesthetic 8 target_artstudio.png 768 80 9 173.7 517.6 427 3.81 aesthetic
1024 aesthetic 8 target_artstudio.png 768 80 10 282.5 444.2 278 18.14 aesthetic
1024 aesthetic 8 target_artstudio.png 768 80 11 963.1 474.4 243 4.98 aesthetic
1024 aesthetic 8 target_artstudio.png 768 80 12 1000.9 276.3 329 0.87 aesthetic
1024 aesthetic 8 target_artstudio.png 768 80 13 968.9 299.6 367 1.75 aesthetic
1024 aesthetic 8 target_artstudio.png 768 80 14 1022.5 299.5 286 5.66 aesthetic
1024 aesthetic 8 target_artstudio.png 768 80 15 966.5 506.5 267 6.49 aesthetic
1024 aesthetic 8 target_artstudio.png 768 80 16 748.1 651.6 267 8.53 aesthetic
1024 aesthetic 8 target_artstudio.png 768 80 17 428.3 728.5 212 7.53 aesthetic
1024 aesthetic 8 target_artstudio.png 768 80 18 148.2 647.6 366 4.23 aesthetic
1024 aesthetic 8 target_artstudio.png 768 80 19 101.8 490.3 204 3.42 aesthetic
1024 aesthetic 8 target_artstudio.png 768 80 20 46.1 374.2 195 3.99 aesthetic
1024 aesthetic 8 target_artstudio.png 768 80 21 45.8 210.4 299 4.09 aesthetic
1024 aesthetic 8 target_artstudio.png 768 80 22 189.2 269.8 634 10.33 aesthetic
1024 aesthetic 8 target_artstudio.png 768 80 23 568.3 201.2 327 2.3 aesthetic
1024 aesthetic 8 target_artstudio.png 768 80 24 638.2 169.3 218 5.03 aesthetic
1024 aesthetic 8 target_artstudio.png 768 80 25 709.5 360.6 245 4.16 aesthetic
1024 aesthetic 8 target_artstudio.png 768 80 26 711 543 330 5.06 aesthetic
1024 aesthetic 8 target_artstudio.png 768 80 27 533.5 481.5 338 0.91 aesthetic
1024 aesthetic 8 target_artstudio.png 768 80 28 549 469.2 379 0.78 aesthetic
1024 aesthetic 8 target_artstudio.png 768 80 29 529.2 477.1 162 5.87 aesthetic
1024 aesthetic 8 target_artstudio.png 768 80 30 315.5 442.5 259 1.83 aesthetic
1024 aesthetic 8 target_artstudio.png 768 80 31 248.2 429.7 315 0.9 aesthetic
1024 aesthetic 8 target_artstudio.png 768 80 32 216.6 435.3 248 3.85 aesthetic
1024 aesthetic 8 target_artstudio.png 768 80 33 352.7 429.9 330 3.09 aesthetic
1024 aesthetic 8 target_artstudio.png 768 80 34 452.9 391.8 468 2.26 aesthetic
1024 aesthetic 8 target_artstudio.png 768 80 35 449.1 318.4 198 0.33 aesthetic
1024 aesthetic 8 target_artstudio.png 768 80 36 451.5 299.3 411 2.79 aesthetic
1024 aesthetic 8 target_artstudio.png 768 80 37 484.9 408 45 13.29 aesthetic
1024 aesthetic 9 target_bar.png 768 80 1 520 390.6 305 3.93 aesthetic
1024 aesthetic 9 target_bar.png 768 80 2 390.3 411.8 212 5.66 aesthetic
1024 aesthetic 9 target_bar.png 768 80 3 279.7 608 215 11.86 aesthetic
1024 aesthetic 9 target_bar.png 768 80 4 371.3 176.6 260 2.73 aesthetic
1024 aesthetic 9 target_bar.png 768 80 5 472.6 164.5 276 7.35 aesthetic
1024 aesthetic 9 target_bar.png 768 80 6 377.6 398.4 360 5.68 aesthetic
1024 aesthetic 9 target_bar.png 768 80 7 178 405 185 16.37 aesthetic
1024 aesthetic 9 target_bar.png 768 80 8 682.6 84.4 304 1.2 aesthetic
1024 aesthetic 9 target_bar.png 768 80 9 714 66.1 203 5.14 aesthetic
1024 aesthetic 9 target_bar.png 768 80 10 894.8 132.7 295 3.26 aesthetic
1024 aesthetic 9 target_bar.png 768 80 11 995 176.3 212 5.16 aesthetic
1024 aesthetic 9 target_bar.png 768 80 12 937.3 379.5 451 4.06 aesthetic
1024 aesthetic 9 target_bar.png 768 80 13 853.5 519.6 233 14.67 aesthetic
1024 aesthetic 9 target_bar.png 768 80 14 307.9 620.7 184 4.63 aesthetic
1024 aesthetic 9 target_bar.png 768 80 15 139.9 673.5 170 1.91 aesthetic
1024 aesthetic 9 target_bar.png 768 80 16 78.8 710.2 373 9.24 aesthetic
1024 aesthetic 9 target_bar.png 768 80 17 359.3 492.8 268 3.11 aesthetic
1024 aesthetic 9 target_bar.png 768 80 18 340.5 380.9 323 2.65 aesthetic
1024 aesthetic 9 target_bar.png 768 80 19 422.5 408.7 272 1.76 aesthetic
1024 aesthetic 9 target_bar.png 768 80 20 426.6 359.5 210 1.77 aesthetic
1024 aesthetic 9 target_bar.png 768 80 21 404 416.1 369 2.69 aesthetic
1024 aesthetic 9 target_bar.png 768 80 22 497.3 411.9 225 4.73 aesthetic
1024 aesthetic 9 target_bar.png 768 80 23 663.2 383.3 311 2.21 aesthetic
1024 aesthetic 9 target_bar.png 768 80 24 644 455.5 414 4.8 aesthetic
1024 aesthetic 9 target_bar.png 768 80 25 798.5 535 195 3.77 aesthetic
1024 aesthetic 9 target_bar.png 768 80 26 926.5 625 447 3.12 aesthetic
1024 aesthetic 9 target_bar.png 768 80 27 873.1 687.4 148 16.1 aesthetic
1024 aesthetic 9 target_bar.png 768 80 28 239.4 686.6 146 4.74 aesthetic
1024 aesthetic 9 target_bar.png 768 80 29 50.5 713.9 221 8.62 aesthetic
1024 aesthetic 9 target_bar.png 768 80 30 44.1 366.3 305 2.68 aesthetic
1024 aesthetic 9 target_bar.png 768 80 31 25.2 269.6 273 1.91 aesthetic
1024 aesthetic 9 target_bar.png 768 80 32 21.6 325.5 250 3.6 aesthetic
1024 aesthetic 9 target_bar.png 768 80 33 38.9 175.9 193 2.77 aesthetic
1024 aesthetic 9 target_bar.png 768 80 34 17.5 87.8 235 4.4 aesthetic
1024 aesthetic 9 target_bar.png 768 80 35 176.5 96.1 220 2.22 aesthetic
1024 aesthetic 9 target_bar.png 768 80 36 250.7 110.8 254 0.62 aesthetic
1024 aesthetic 9 target_bar.png 768 80 37 237.9 105 168 5.85 aesthetic
1024 aesthetic 9 target_bar.png 768 80 38 464.6 138.2 234 0.48 aesthetic
1024 aesthetic 9 target_bar.png 768 80 39 449.4 136.2 211 5.7 aesthetic
1024 aesthetic 9 target_bar.png 768 80 40 248.1 113.1 167 8.63 aesthetic
1024 aesthetic 9 target_bar.png 768 80 41 574 181.7 181 5.13 aesthetic
1024 aesthetic 9 target_bar.png 768 80 42 505.6 385.3 80 6.05 aesthetic
1024 aesthetic 10 target_barn.png 768 80 1 513.3 378.1 440 3.35 aesthetic
1024 aesthetic 10 target_barn.png 768 80 2 519.7 532.5 342 2.5 aesthetic
1024 aesthetic 10 target_barn.png 768 80 3 464.1 455.6 159 7.09 aesthetic
1024 aesthetic 10 target_barn.png 768 80 4 281 655.7 188 2.55 aesthetic
1024 aesthetic 10 target_barn.png 768 80 5 187.6 583.4 295 12.36 aesthetic
1024 aesthetic 10 target_barn.png 768 80 6 606.3 392.8 304 3.67 aesthetic
1024 aesthetic 10 target_barn.png 768 80 7 721.9 338 347 4.26 aesthetic
1024 aesthetic 10 target_barn.png 768 80 8 558.3 334.4 374 4.19 aesthetic
1024 aesthetic 10 target_barn.png 768 80 9 467 455.3 340 3.29 aesthetic
1024 aesthetic 10 target_barn.png 768 80 10 380.8 538.9 338 1.91 aesthetic
1024 aesthetic 10 target_barn.png 768 80 11 393.9 598.9 43 6.44 aesthetic
1024 aesthetic 10 target_barn.png 768 80 12 157.2 565.9 637 7.67 aesthetic
1024 aesthetic 10 target_barn.png 768 80 13 450 561.2 192 6.26 aesthetic
1024 aesthetic 10 target_barn.png 768 80 14 678.8 538.1 126 5.06 aesthetic
1024 aesthetic 10 target_barn.png 768 80 15 880.7 529.5 171 1.61 aesthetic
1024 aesthetic 10 target_barn.png 768 80 16 935.7 512.1 240 1.31 aesthetic
1024 aesthetic 10 target_barn.png 768 80 17 978.2 511.5 196 0.36 aesthetic
1024 aesthetic 10 target_barn.png 768 80 18 966.3 502.3 156 7.15 aesthetic
1024 aesthetic 10 target_barn.png 768 80 19 795.2 711.6 193 3.04 aesthetic
1024 aesthetic 10 target_barn.png 768 80 20 683.6 714.9 157 7.96 aesthetic
1024 aesthetic 10 target_barn.png 768 80 21 380.6 695.1 134 10.12 aesthetic
1024 aesthetic 10 target_barn.png 768 80 22 141.2 371.5 426 1.41 aesthetic
1024 aesthetic 10 target_barn.png 768 80 23 119 415 160 1.09 aesthetic
1024 aesthetic 10 target_barn.png 768 80 24 84 427.6 310 5.14 aesthetic
1024 aesthetic 10 target_barn.png 768 80 25 248.8 342.2 500 5.13 aesthetic
1024 aesthetic 10 target_barn.png 768 80 26 93.5 445 193 0.55 aesthetic
1024 aesthetic 10 target_barn.png 768 80 27 88.7 429.8 259 12.02 aesthetic
1024 aesthetic 10 target_barn.png 768 80 28 543.9 399.6 308 2.2 aesthetic
1024 aesthetic 10 target_barn.png 768 80 29 475.1 415.7 151 8.21 aesthetic
1024 aesthetic 10 target_barn.png 768 80 30 696.5 211 189 2.34 aesthetic
1024 aesthetic 10 target_barn.png 768 80 31 761.3 154.3 549 5.36 aesthetic
1024 aesthetic 10 target_barn.png 768 80 32 858 346.5 310 3.44 aesthetic
1024 aesthetic 10 target_barn.png 768 80 33 963 422.3 418 3.76 aesthetic
1024 aesthetic 10 target_barn.png 768 80 34 818.6 397 225 3.16 aesthetic
1024 aesthetic 10 target_barn.png 768 80 35 697.8 447.5 176 4.63 aesthetic
1024 aesthetic 10 target_barn.png 768 80 36 514.6 442.6 363 3.99 aesthetic
1024 aesthetic 10 target_barn.png 768 80 37 374.5 417.9 408 2.84 aesthetic
1024 aesthetic 10 target_barn.png 768 80 38 358.1 543 279 9.64 aesthetic
1024 aesthetic 11 target_bathroom.png 768 80 1 543 371.5 123 2.16 aesthetic
1024 aesthetic 11 target_bathroom.png 768 80 2 521.5 348.5 197 3.21 aesthetic
1024 aesthetic 11 target_bathroom.png 768 80 3 397.4 395.4 176 4.71 aesthetic
1024 aesthetic 11 target_bathroom.png 768 80 4 219.9 328.3 325 3.84 aesthetic
1024 aesthetic 11 target_bathroom.png 768 80 5 56.8 337.3 129 4.35 aesthetic
1024 aesthetic 11 target_bathroom.png 768 80 6 178 439.5 31 0.58 aesthetic
1024 aesthetic 11 target_bathroom.png 768 80 7 183.2 369.8 209 2.68 aesthetic
1024 aesthetic 11 target_bathroom.png 768 80 8 233.7 309.3 313 11.7 aesthetic
1024 aesthetic 11 target_bathroom.png 768 80 9 668.8 213.8 286 6.21 aesthetic
1024 aesthetic 11 target_bathroom.png 768 80 10 894.3 203.8 291 4.22 aesthetic
1024 aesthetic 11 target_bathroom.png 768 80 11 1047.7 279.9 553 0.65 aesthetic
1024 aesthetic 11 target_bathroom.png 768 80 12 1070.7 287 124 1.8 aesthetic
1024 aesthetic 11 target_bathroom.png 768 80 13 1068.3 346 414 6.03 aesthetic
1024 aesthetic 11 target_bathroom.png 768 80 14 940.6 568.4 296 6.45 aesthetic
1024 aesthetic 11 target_bathroom.png 768 80 15 697 615.7 229 0.9 aesthetic
1024 aesthetic 11 target_bathroom.png 768 80 16 681.6 579.6 204 4.63 aesthetic
1024 aesthetic 11 target_bathroom.png 768 80 17 796.6 461.3 361 7.4 aesthetic
1024 aesthetic 11 target_bathroom.png 768 80 18 525.1 483.5 273 3.88 aesthetic
1024 aesthetic 11 target_bathroom.png 768 80 19 496.4 352 147 8.81 aesthetic
1024 aesthetic 11 target_bathroom.png 768 80 20 705.1 85.2 311 5.69 aesthetic
1024 aesthetic 11 target_bathroom.png 768 80 21 519.1 158.9 412 4.12 aesthetic
1024 aesthetic 11 target_bathroom.png 768 80 22 460.4 317.5 275 6.95 aesthetic
1024 aesthetic 11 target_bathroom.png 768 80 23 378.9 543.4 110 7.81 aesthetic
1024 aesthetic 11 target_bathroom.png 768 80 24 98 572.4 293 1.87 aesthetic
1024 aesthetic 11 target_bathroom.png 768 80 25 25.2 536.5 152 5.91 aesthetic
1024 aesthetic 11 target_bathroom.png 768 80 26 34.9 298.6 446 5.07 aesthetic
1024 aesthetic 11 target_bathroom.png 768 80 27 234.5 283.8 325 0.8 aesthetic
1024 aesthetic 11 target_bathroom.png 768 80 28 219 299.6 196 2.82 aesthetic
1024 aesthetic 11 target_bathroom.png 768 80 29 206.4 418.6 241 1.69 aesthetic
1024 aesthetic 11 target_bathroom.png 768 80 30 216.5 370.2 308 3.36 aesthetic
1024 aesthetic 11 target_bathroom.png 768 80 31 216.1 249.8 289 2.55 aesthetic
1024 aesthetic 11 target_bathroom.png 768 80 32 288.5 207.4 240 5.09 aesthetic
1024 aesthetic 11 target_bathroom.png 768 80 33 434.8 348.2 412 1.79 aesthetic
1024 aesthetic 11 target_bathroom.png 768 80 34 480.1 416.2 476 4.31 aesthetic
1024 aesthetic 11 target_bathroom.png 768 80 35 431.6 573.1 74 3.62 aesthetic
1024 aesthetic 11 target_bathroom.png 768 80 36 306.7 672.9 294 1.38 aesthetic
1024 aesthetic 11 target_bathroom.png 768 80 37 276.8 696.7 503 3.21 aesthetic
1024 aesthetic 11 target_bathroom.png 768 80 38 242 567.5 199 7.23 aesthetic
1024 aesthetic 11 target_bathroom.png 768 80 39 471.4 394.6 83 11.23 aesthetic
1024 aesthetic 12 target_bedroom.png 768 80 1 502.1 383.2 62 3.41 aesthetic
1024 aesthetic 12 target_bedroom.png 768 80 2 492.6 414.3 101 3.09 aesthetic
1024 aesthetic 12 target_bedroom.png 768 80 3 434.3 475.3 758 9.41 aesthetic
1024 aesthetic 12 target_bedroom.png 768 80 4 787.8 428.1 244 1.48 aesthetic
1024 aesthetic 12 target_bedroom.png 768 80 5 839.3 409 401 3.72 aesthetic
1024 aesthetic 12 target_bedroom.png 768 80 6 738.5 526.1 176 16.9 aesthetic
1024 aesthetic 12 target_bedroom.png 768 80 7 92.8 602.5 259 2.51 aesthetic
1024 aesthetic 12 target_bedroom.png 768 80 8 47.5 529 258 4.74 aesthetic
1024 aesthetic 12 target_bedroom.png 768 80 9 43.5 332.9 204 2.64 aesthetic
1024 aesthetic 12 target_bedroom.png 768 80 10 32.2 240.4 268 2.1 aesthetic
1024 aesthetic 12 target_bedroom.png 768 80 11 43.3 149.9 175 4.93 aesthetic
1024 aesthetic 12 target_bedroom.png 768 80 12 228.1 131.5 241 4.97 aesthetic
1024 aesthetic 12 target_bedroom.png 768 80 13 408.4 80.2 172 4.79 aesthetic
1024 aesthetic 12 target_bedroom.png 768 80 14 583.5 157.1 216 6.67 aesthetic
1024 aesthetic 12 target_bedroom.png 768 80 15 819.9 157.2 316 4.53 aesthetic
1024 aesthetic 12 target_bedroom.png 768 80 16 980.7 249.4 284 2.9 aesthetic
1024 aesthetic 12 target_bedroom.png 768 80 17 926.4 362.2 260 1.97 aesthetic
1024 aesthetic 12 target_bedroom.png 768 80 18 943.3 297.8 141 3.63 aesthetic
1024 aesthetic 12 target_bedroom.png 768 80 19 825.1 228.1 437 2.91 aesthetic
1024 aesthetic 12 target_bedroom.png 768 80 20 915.6 279.9 494 3.29 aesthetic
1024 aesthetic 12 target_bedroom.png 768 80 21 921.7 409.5 256 1.24 aesthetic
1024 aesthetic 12 target_bedroom.png 768 80 22 875.4 425.5 231 2.82 aesthetic
1024 aesthetic 12 target_bedroom.png 768 80 23 789.1 473.2 202 5.7 aesthetic
1024 aesthetic 12 target_bedroom.png 768 80 24 991 593.6 355 5.45 aesthetic
1024 aesthetic 12 target_bedroom.png 768 80 25 798.6 642.9 297 3.86 aesthetic
1024 aesthetic 12 target_bedroom.png 768 80 26 648.7 633.1 201 4.96 aesthetic
1024 aesthetic 12 target_bedroom.png 768 80 27 634.6 435.8 365 2.58 aesthetic
1024 aesthetic 12 target_bedroom.png 768 80 28 627.2 350.7 404 2.1 aesthetic
1024 aesthetic 12 target_bedroom.png 768 80 29 583.3 396 195 1.47 aesthetic
1024 aesthetic 12 target_bedroom.png 768 80 30 540.5 400.2 192 3.36 aesthetic
1024 aesthetic 12 target_bedroom.png 768 80 31 429.5 427.8 301 1.79 aesthetic
1024 aesthetic 12 target_bedroom.png 768 80 32 434.2 509.7 405 4.19 aesthetic
1024 aesthetic 12 target_bedroom.png 768 80 33 287.8 564.5 242 1.47 aesthetic
1024 aesthetic 12 target_bedroom.png 768 80 34 273.1 520.7 148 5.32 aesthetic
1024 aesthetic 12 target_bedroom.png 768 80 35 101.6 650 310 4.75 aesthetic
1024 aesthetic 12 target_bedroom.png 768 80 36 69.4 476.8 369 4.77 aesthetic
1024 aesthetic 12 target_bedroom.png 768 80 37 222.6 386.7 619 6.32 aesthetic
1024 aesthetic 12 target_bedroom.png 768 80 38 467.5 418.5 61 3.84 aesthetic
1024 aesthetic 13 target_bridge.png 768 80 1 525 388.5 307 3.93 aesthetic
1024 aesthetic 13 target_bridge.png 768 80 2 380.2 420.4 247 0.01 aesthetic
1024 aesthetic 13 target_bridge.png 768 80 3 386.8 407.7 33 0.49 aesthetic
1024 aesthetic 13 target_bridge.png 768 80 4 366.6 367.6 207 8.29 aesthetic
1024 aesthetic 13 target_bridge.png 768 80 5 82.9 494.7 256 1.83 aesthetic
1024 aesthetic 13 target_bridge.png 768 80 6 16.6 527.4 256 0.84 aesthetic
1024 aesthetic 13 target_bridge.png 768 80 7 -1.3 510.6 334 3.89 aesthetic
1024 aesthetic 13 target_bridge.png 768 80 8 148.6 489.4 248 8.02 aesthetic
1024 aesthetic 13 target_bridge.png 768 80 9 440 463.5 336 11.98 aesthetic
1024 aesthetic 13 target_bridge.png 768 80 10 877.7 433.3 431 1.81 aesthetic
1024 aesthetic 13 target_bridge.png 768 80 11 845.3 477.9 286 3.87 aesthetic
1024 aesthetic 13 target_bridge.png 768 80 12 844.8 340 511 21.43 aesthetic
1024 aesthetic 13 target_bridge.png 768 80 13 72.5 540.9 24 0.18 aesthetic
1024 aesthetic 13 target_bridge.png 768 80 14 99.1 505.1 121 1.42 aesthetic
1024 aesthetic 13 target_bridge.png 768 80 15 60.5 488.7 301 7.59 aesthetic
1024 aesthetic 13 target_bridge.png 768 80 16 314.7 343 326 2.35 aesthetic
1024 aesthetic 13 target_bridge.png 768 80 17 374.1 282.8 526 1.28 aesthetic
1024 aesthetic 13 target_bridge.png 768 80 18 342.8 261.9 305 7.43 aesthetic
1024 aesthetic 13 target_bridge.png 768 80 19 608.9 394.2 358 6.06 aesthetic
1024 aesthetic 13 target_bridge.png 768 80 20 736.6 594 389 5.77 aesthetic
1024 aesthetic 13 target_bridge.png 768 80 21 946.5 598.8 146 17.2 aesthetic
1024 aesthetic 13 target_bridge.png 768 80 22 287.1 644.8 291 2.6 aesthetic
1024 aesthetic 13 target_bridge.png 768 80 23 208.4 729.2 271 14.36 aesthetic
1024 aesthetic 13 target_bridge.png 768 80 24 746.4 693.4 324 15.36 aesthetic
1024 aesthetic 13 target_bridge.png 768 80 25 536.4 156.3 169 6.78 aesthetic
1024 aesthetic 13 target_bridge.png 768 80 26 277.8 163.4 167 5.35 aesthetic
1024 aesthetic 13 target_bridge.png 768 80 27 158.3 315.1 295 18.65 aesthetic
1024 aesthetic 13 target_bridge.png 768 80 28 839 241.1 339 12.29 aesthetic
1024 aesthetic 13 target_bridge.png 768 80 29 393.5 158.6 495 17.22 aesthetic
1024 aesthetic 13 target_bridge.png 768 80 30 837.6 620.2 285 1.75 aesthetic
1024 aesthetic 13 target_bridge.png 768 80 31 878.2 587.7 86 3.65 aesthetic
1024 aesthetic 13 target_bridge.png 768 80 32 1030.1 585.4 199 0.57 aesthetic
1024 aesthetic 13 target_bridge.png 768 80 33 1014.7 575.4 358 17.79 aesthetic
1024 aesthetic 13 target_bridge.png 768 80 34 333.4 606.3 149 8.52 aesthetic
1024 aesthetic 13 target_bridge.png 768 80 35 4.9 587.5 533 9.03 aesthetic
1024 aesthetic 13 target_bridge.png 768 80 36 366.8 605.8 297 6.22 aesthetic
1024 aesthetic 14 target_busstop.png 768 80 1 508.4 386.6 297 4.69 aesthetic
1024 aesthetic 14 target_busstop.png 768 80 2 329.1 446.6 270 5.41 aesthetic
1024 aesthetic 14 target_busstop.png 768 80 3 514.8 339 689 4.17 aesthetic
1024 aesthetic 14 target_busstop.png 768 80 4 438.9 489.4 189 4.03 aesthetic
1024 aesthetic 14 target_busstop.png 768 80 5 304.5 529.6 391 16.1 aesthetic
1024 aesthetic 14 target_busstop.png 768 80 6 865.8 357.9 483 2.4 aesthetic
1024 aesthetic 14 target_busstop.png 768 80 7 938.7 340.2 639 15.27 aesthetic
1024 aesthetic 14 target_busstop.png 768 80 8 356.6 402.2 421 10.76 aesthetic
1024 aesthetic 14 target_busstop.png 768 80 9 84.7 697.9 193 1.82 aesthetic
1024 aesthetic 14 target_busstop.png 768 80 10 28.2 720.1 195 5.3 aesthetic
1024 aesthetic 14 target_busstop.png 768 80 11 13.8 492.9 218 3.34 aesthetic
1024 aesthetic 14 target_busstop.png 768 80 12 3.4 344.9 181 3.59 aesthetic
1024 aesthetic 14 target_busstop.png 768 80 13 69.3 228 247 14.27 aesthetic
1024 aesthetic 14 target_busstop.png 768 80 14 614.8 220.8 151 9.52 aesthetic
1024 aesthetic 14 target_busstop.png 768 80 15 971.8 236.6 515 13.93 aesthetic
1024 aesthetic 14 target_busstop.png 768 80 16 487.3 429.4 293 1.83 aesthetic
1024 aesthetic 14 target_busstop.png 768 80 17 523.1 375.3 210 4.19 aesthetic
1024 aesthetic 14 target_busstop.png 768 80 18 480 518.6 325 4.95 aesthetic
1024 aesthetic 14 target_busstop.png 768 80 19 561.4 333.3 188 1.29 aesthetic
1024 aesthetic 14 target_busstop.png 768 80 20 532.5 359.6 541 4.7 aesthetic
1024 aesthetic 14 target_busstop.png 768 80 21 350.5 406 121 6.63 aesthetic
1024 aesthetic 14 target_busstop.png 768 80 22 265.3 624.9 25 1.07 aesthetic
1024 aesthetic 14 target_busstop.png 768 80 23 249.8 564.4 133 2.61 aesthetic
1024 aesthetic 14 target_busstop.png 768 80 24 341.8 562.8 282 0.9 aesthetic
1024 aesthetic 14 target_busstop.png 768 80 25 320.2 545 200 16.4 aesthetic
1024 aesthetic 14 target_busstop.png 768 80 26 942.3 580.4 484 4.65 aesthetic
1024 aesthetic 14 target_busstop.png 768 80 27 774.2 640.7 268 4.89 aesthetic
1024 aesthetic 14 target_busstop.png 768 80 28 587.4 654 225 6.63 aesthetic
1024 aesthetic 14 target_busstop.png 768 80 29 335.3 625.1 265 2.9 aesthetic
1024 aesthetic 14 target_busstop.png 768 80 30 299.2 526.7 285 4 aesthetic
1024 aesthetic 14 target_busstop.png 768 80 31 360 378.7 545 3.98 aesthetic
1024 aesthetic 14 target_busstop.png 768 80 32 295.8 525.5 352 1.77 aesthetic
1024 aesthetic 14 target_busstop.png 768 80 33 329.7 454.6 24 0.29 aesthetic
1024 aesthetic 14 target_busstop.png 768 80 34 317.3 425.1 359 3.23 aesthetic
1024 aesthetic 14 target_busstop.png 768 80 35 453.2 434.1 40 11.65 aesthetic
1024 aesthetic 15 target_cemetery.png 768 80 1 492 379.6 259 2.74 aesthetic
1024 aesthetic 15 target_cemetery.png 768 80 2 450.9 487.7 334 5.53 aesthetic
1024 aesthetic 15 target_cemetery.png 768 80 3 317.2 316 371 4.02 aesthetic
1024 aesthetic 15 target_cemetery.png 768 80 4 166.8 307.8 280 3.37 aesthetic
1024 aesthetic 15 target_cemetery.png 768 80 5 99.8 412.4 354 3.47 aesthetic
1024 aesthetic 15 target_cemetery.png 768 80 6 96.7 576 386 1.94 aesthetic
1024 aesthetic 15 target_cemetery.png 768 80 7 94.9 636.4 766 8.61 aesthetic
1024 aesthetic 15 target_cemetery.png 768 80 8 407 497.5 212 6.18 aesthetic
1024 aesthetic 15 target_cemetery.png 768 80 9 601.9 634.1 239 3.83 aesthetic
1024 aesthetic 15 target_cemetery.png 768 80 10 709.6 711.5 258 8.81 aesthetic
1024 aesthetic 15 target_cemetery.png 768 80 11 944.5 489.3 347 3.37 aesthetic
1024 aesthetic 15 target_cemetery.png 768 80 12 978.7 377.6 183 1.72 aesthetic
1024 aesthetic 15 target_cemetery.png 768 80 13 931 335.1 255 1.87 aesthetic
1024 aesthetic 15 target_cemetery.png 768 80 14 895.4 291.5 226 6.16 aesthetic
1024 aesthetic 15 target_cemetery.png 768 80 15 676.6 382 290 6.76 aesthetic
1024 aesthetic 15 target_cemetery.png 768 80 16 509.9 590.8 482 4.11 aesthetic
1024 aesthetic 15 target_cemetery.png 768 80 17 574.3 457.5 286 5.13 aesthetic
1024 aesthetic 15 target_cemetery.png 768 80 18 388.1 537.9 300 5.44 aesthetic
1024 aesthetic 15 target_cemetery.png 768 80 19 182.8 522.6 241 4.06 aesthetic
1024 aesthetic 15 target_cemetery.png 768 80 20 32.1 522.2 336 2.32 aesthetic
1024 aesthetic 15 target_cemetery.png 768 80 21 50.7 447.1 315 4.31 aesthetic
1024 aesthetic 15 target_cemetery.png 768 80 22 206.2 438.8 307 2.88 aesthetic
1024 aesthetic 15 target_cemetery.png 768 80 23 171.3 348 302 1.24 aesthetic
1024 aesthetic 15 target_cemetery.png 768 80 24 138.6 323.1 299 5.05 aesthetic
1024 aesthetic 15 target_cemetery.png 768 80 25 320.1 306.2 358 2.47 aesthetic
1024 aesthetic 15 target_cemetery.png 768 80 26 397.8 292.9 324 2.92 aesthetic
1024 aesthetic 15 target_cemetery.png 768 80 27 486.8 372.9 307 3.21 aesthetic
1024 aesthetic 15 target_cemetery.png 768 80 28 592.5 349.5 300 2.4 aesthetic
1024 aesthetic 15 target_cemetery.png 768 80 29 609.4 428.6 261 7.19 aesthetic
1024 aesthetic 15 target_cemetery.png 768 80 30 871.7 420.9 283 5.77 aesthetic
1024 aesthetic 15 target_cemetery.png 768 80 31 975.7 244.1 274 9.5 aesthetic
1024 aesthetic 15 target_cemetery.png 768 80 32 606.2 185 320 2.42 aesthetic
1024 aesthetic 15 target_cemetery.png 768 80 33 603.9 269.2 250 15.91 aesthetic
1024 aesthetic 15 target_cemetery.png 768 80 34 -2.2 244.6 292 11.7 aesthetic
1024 aesthetic 15 target_cemetery.png 768 80 35 421.1 426.2 115 6.88 aesthetic
1024 aesthetic 16 target_city.png 768 80 1 530.1 380.5 320 2.41 aesthetic
1024 aesthetic 16 target_city.png 768 80 2 453.3 369.1 339 3.81 aesthetic
1024 aesthetic 16 target_city.png 768 80 3 390 247.5 174 2.12 aesthetic
1024 aesthetic 16 target_city.png 768 80 4 392.1 176.8 456 8.54 aesthetic
1024 aesthetic 16 target_city.png 768 80 5 165 384.8 392 8.7 aesthetic
1024 aesthetic 16 target_city.png 768 80 6 132.5 617.8 787 3.31 aesthetic
1024 aesthetic 16 target_city.png 768 80 7 156.9 501.8 181 2.52 aesthetic
1024 aesthetic 16 target_city.png 768 80 8 78 436 429 2.33 aesthetic
1024 aesthetic 16 target_city.png 768 80 9 148.2 390.7 269 3.4 aesthetic
1024 aesthetic 16 target_city.png 768 80 10 241.4 312.4 176 6.29 aesthetic
1024 aesthetic 16 target_city.png 768 80 11 421.9 174.6 504 2.77 aesthetic
1024 aesthetic 16 target_city.png 768 80 12 513.1 182.9 193 2.03 aesthetic
1024 aesthetic 16 target_city.png 768 80 13 576 194.4 505 5.1 aesthetic
1024 aesthetic 16 target_city.png 768 80 14 711.1 347.6 303 0.74 aesthetic
1024 aesthetic 16 target_city.png 768 80 15 684.8 324.1 416 7.52 aesthetic
1024 aesthetic 16 target_city.png 768 80 16 918.7 182.5 547 9.54 aesthetic
1024 aesthetic 16 target_city.png 768 80 17 811.2 668.4 29 0.35 aesthetic
1024 aesthetic 16 target_city.png 768 80 18 781.7 599.9 204 2.43 aesthetic
1024 aesthetic 16 target_city.png 768 80 19 666.7 612.5 173 6.49 aesthetic
1024 aesthetic 16 target_city.png 768 80 20 408 682.5 589 12.9 aesthetic
1024 aesthetic 16 target_city.png 768 80 21 313.5 206.9 503 10.71 aesthetic
1024 aesthetic 16 target_city.png 768 80 22 704.5 177.5 503 2.77 aesthetic
1024 aesthetic 16 target_city.png 768 80 23 690.6 274.5 269 3.63 aesthetic
1024 aesthetic 16 target_city.png 768 80 24 789.7 194.3 253 10.94 aesthetic
1024 aesthetic 16 target_city.png 768 80 25 383.5 229.3 216 4.65 aesthetic
1024 aesthetic 16 target_city.png 768 80 26 249.6 353.1 136 8.03 aesthetic
1024 aesthetic 16 target_city.png 768 80 27 360.1 659.7 425 6.88 aesthetic
1024 aesthetic 16 target_city.png 768 80 28 618.2 673.4 519 7.79 aesthetic
1024 aesthetic 16 target_city.png 768 80 29 530.5 411.5 122 12.21 aesthetic
1024 aesthetic 17 target_closet.png 768 80 1 502.3 382.7 393 3.74 aesthetic
1024 aesthetic 17 target_closet.png 768 80 2 625.7 362.5 290 5.85 aesthetic
1024 aesthetic 17 target_closet.png 768 80 3 828.3 343 204 20.53 aesthetic
1024 aesthetic 17 target_closet.png 768 80 4 71 265 185 2.21 aesthetic
1024 aesthetic 17 target_closet.png 768 80 5 22.7 347.8 268 15.95 aesthetic
1024 aesthetic 17 target_closet.png 768 80 6 635.1 317.4 305 4.08 aesthetic
1024 aesthetic 17 target_closet.png 768 80 7 486 350.4 334 9.02 aesthetic
1024 aesthetic 17 target_closet.png 768 80 8 838.9 304 242 4.29 aesthetic
1024 aesthetic 17 target_closet.png 768 80 9 732 178.4 223 17.24 aesthetic
1024 aesthetic 17 target_closet.png 768 80 10 73.4 99.3 257 2.83 aesthetic
1024 aesthetic 17 target_closet.png 768 80 11 27.8 180.8 257 2.09 aesthetic
1024 aesthetic 17 target_closet.png 768 80 12 11 239.2 243 3.37 aesthetic
1024 aesthetic 17 target_closet.png 768 80 13 7 381.4 272 2.63 aesthetic
1024 aesthetic 17 target_closet.png 768 80 14 36.7 474 384 2.05 aesthetic
1024 aesthetic 17 target_closet.png 768 80 15 6.6 417.7 309 0.86 aesthetic
1024 aesthetic 17 target_closet.png 768 80 16 -7 404.3 277 10.45 aesthetic
1024 aesthetic 17 target_closet.png 768 80 17 375.6 342.6 418 3.2 aesthetic
1024 aesthetic 17 target_closet.png 768 80 18 486.3 345.9 430 3.76 aesthetic
1024 aesthetic 17 target_closet.png 768 80 19 621.8 335.2 295 1.62 aesthetic
1024 aesthetic 17 target_closet.png 768 80 20 675.4 335.1 601 3.41 aesthetic
1024 aesthetic 17 target_closet.png 768 80 21 797 301.2 375 2.36 aesthetic
1024 aesthetic 17 target_closet.png 768 80 22 874.4 298.2 264 3.38 aesthetic
1024 aesthetic 17 target_closet.png 768 80 23 999.6 277 641 3.87 aesthetic
1024 aesthetic 17 target_closet.png 768 80 24 983.4 438.9 229 2.87 aesthetic
1024 aesthetic 17 target_closet.png 768 80 25 893.4 505.1 206 3.06 aesthetic
1024 aesthetic 17 target_closet.png 768 80 26 981.9 603 229 1.83 aesthetic
1024 aesthetic 17 target_closet.png 768 80 27 1009.2 545.9 187 2.25 aesthetic
1024 aesthetic 17 target_closet.png 768 80 28 925.4 574.4 369 2.06 aesthetic
1024 aesthetic 17 target_closet.png 768 80 29 964.3 627.2 152 9.49 aesthetic
1024 aesthetic 17 target_closet.png 768 80 30 599.3 539.4 245 2.56 aesthetic
1024 aesthetic 17 target_closet.png 768 80 31 510.6 546 263 4.59 aesthetic
1024 aesthetic 17 target_closet.png 768 80 32 438.4 721 192 3.43 aesthetic
1024 aesthetic 17 target_closet.png 768 80 33 411.4 870.8 158 10.33 aesthetic
1024 aesthetic 17 target_closet.png 768 80 34 641 541.3 198 1.5 aesthetic
1024 aesthetic 17 target_closet.png 768 80 35 591.6 544.4 348 3.33 aesthetic
1024 aesthetic 17 target_closet.png 768 80 36 702 542 308 3.48 aesthetic
1024 aesthetic 17 target_closet.png 768 80 37 821.9 532.1 367 3.1 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 1 521.3 395.2 305 2.57 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 2 447.6 368.8 273 2.74 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 3 446.9 447.6 140 6.16 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 4 683.7 405.1 257 14.7 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 5 172.5 188.1 250 2.24 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 6 119.3 267.1 162 3.99 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 7 63.5 108.1 210 1.16 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 8 59.2 58.4 649 1.66 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 9 99.9 81.4 179 2.59 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 10 -10.1 86.4 288 3.56 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 11 114.6 113.5 187 1.65 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 12 167.7 131.6 188 6.22 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 13 412.2 102.3 422 2.33 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 14 504.2 140.7 360 3.29 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 15 632.7 179.6 210 8.26 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 16 947.7 213.6 278 1.37 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 17 934.6 178.7 302 2.42 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 18 1021.9 240.3 260 3.77 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 19 930 374.2 187 4.49 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 20 764.9 353 202 6.17 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 21 538.3 289.8 283 4.21 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 22 445.7 431.3 163 1.85 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 23 433.9 493.8 262 5.84 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 24 629.6 411.2 138 1.71 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 25 571.5 430.7 223 1.09 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 26 560.1 462 352 15.19 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 27 8.7 380.6 281 1.11 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 28 -5.2 349.9 284 7.88 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 29 47.5 665.1 487 1.24 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 30 41.9 617.2 236 2.53 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 31 -6.8 680.4 166 9.69 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 32 388.1 714.7 304 9.25 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 33 732.2 663.7 208 3.42 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 34 815 575 242 5.42 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 35 610.4 614.1 426 8.39 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 36 892.6 490.4 109 0.4 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 37 970.1 487 87 2.2 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 38 1023.6 507.7 233 13.2 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 39 523.1 377.6 217 2.65 aesthetic
1024 aesthetic 18 target_coffeeshop.png 768 80 40 417.6 392.2 412 5.09 aesthetic
1024 aesthetic 19 target_conferencroom.png 768 80 1 503.5 380.7 364 1.77 aesthetic
1024 aesthetic 19 target_conferencroom.png 768 80 2 484.2 430.6 244 8.72 aesthetic
1024 aesthetic 19 target_conferencroom.png 768 80 3 159.8 401.1 295 2.47 aesthetic
1024 aesthetic 19 target_conferencroom.png 768 80 4 218.3 353.6 333 14.65 aesthetic
1024 aesthetic 19 target_conferencroom.png 768 80 5 776.8 373.3 484 2.04 aesthetic
1024 aesthetic 19 target_conferencroom.png 768 80 6 729.2 412.7 226 11.64 aesthetic
1024 aesthetic 19 target_conferencroom.png 768 80 7 342 618 359 5.41 aesthetic
1024 aesthetic 19 target_conferencroom.png 768 80 8 269.1 396.4 179 2.18 aesthetic
1024 aesthetic 19 target_conferencroom.png 768 80 9 199.7 358.8 625 5.13 aesthetic
1024 aesthetic 19 target_conferencroom.png 768 80 10 376.6 422.5 344 3.19 aesthetic
1024 aesthetic 19 target_conferencroom.png 768 80 11 485.7 446.9 283 6.37 aesthetic
1024 aesthetic 19 target_conferencroom.png 768 80 12 723.7 426.7 565 6.86 aesthetic
1024 aesthetic 19 target_conferencroom.png 768 80 13 968.5 354.9 358 0.36 aesthetic
1024 aesthetic 19 target_conferencroom.png 768 80 14 975.2 342 180 5.79 aesthetic
1024 aesthetic 19 target_conferencroom.png 768 80 15 754.8 316.6 272 4.11 aesthetic
1024 aesthetic 19 target_conferencroom.png 768 80 16 588.2 311.9 302 0.92 aesthetic
1024 aesthetic 19 target_conferencroom.png 768 80 17 564.5 308 110 8.93 aesthetic
1024 aesthetic 19 target_conferencroom.png 768 80 18 219.9 339.4 205 10.96 aesthetic
1024 aesthetic 19 target_conferencroom.png 768 80 19 637.2 334.2 240 0.82 aesthetic
1024 aesthetic 19 target_conferencroom.png 768 80 20 657.6 316.7 104 15.52 aesthetic
1024 aesthetic 19 target_conferencroom.png 768 80 21 81.4 177.2 330 5.34 aesthetic
1024 aesthetic 19 target_conferencroom.png 768 80 22 180.1 377.8 197 1.39 aesthetic
1024 aesthetic 19 target_conferencroom.png 768 80 23 206.3 349.8 282 6.34 aesthetic
1024 aesthetic 19 target_conferencroom.png 768 80 24 453.5 406.8 338 1.6 aesthetic
1024 aesthetic 19 target_conferencroom.png 768 80 25 486.8 442.1 332 6.01 aesthetic
1024 aesthetic 19 target_conferencroom.png 768 80 26 720.9 417 293 7.5 aesthetic
1024 aesthetic 19 target_conferencroom.png 768 80 27 987.4 352.4 345 3.58 aesthetic
1024 aesthetic 19 target_conferencroom.png 768 80 28 861.1 324.4 193 2.9 aesthetic
1024 aesthetic 19 target_conferencroom.png 768 80 29 760.7 321 169 2.95 aesthetic
1024 aesthetic 19 target_conferencroom.png 768 80 30 641.1 314.3 295 0.4 aesthetic
1024 aesthetic 19 target_conferencroom.png 768 80 31 649.7 309 151 2.78 aesthetic
1024 aesthetic 19 target_conferencroom.png 768 80 32 555.2 291.5 177 1.27 aesthetic
1024 aesthetic 19 target_conferencroom.png 768 80 33 509.1 292.1 230 3.39 aesthetic
1024 aesthetic 19 target_conferencroom.png 768 80 34 478.4 179.6 385 11.43 aesthetic
1024 aesthetic 19 target_conferencroom.png 768 80 35 43.5 171.2 739 5.54 aesthetic
1024 aesthetic 19 target_conferencroom.png 768 80 36 27.9 390.5 172 2.55 aesthetic
1024 aesthetic 19 target_conferencroom.png 768 80 37 27.3 500.5 318 10.22 aesthetic
1024 aesthetic 20 target_deli.png 768 80 1 527.2 361.7 321 3.48 aesthetic
1024 aesthetic 20 target_deli.png 768 80 2 459.3 467.3 252 3.34 aesthetic
1024 aesthetic 20 target_deli.png 768 80 3 400.3 578.4 216 6.13 aesthetic
1024 aesthetic 20 target_deli.png 768 80 4 613.6 627.7 339 10.34 aesthetic
1024 aesthetic 20 target_deli.png 768 80 5 701.4 227.2 317 4.56 aesthetic
1024 aesthetic 20 target_deli.png 768 80 6 541.9 182.9 209 4.6 aesthetic
1024 aesthetic 20 target_deli.png 768 80 7 417.6 292.9 315 1.77 aesthetic
1024 aesthetic 20 target_deli.png 768 80 8 361.7 299.2 198 9.21 aesthetic
1024 aesthetic 20 target_deli.png 768 80 9 648.6 510.6 170 4.82 aesthetic
1024 aesthetic 20 target_deli.png 768 80 10 822.5 536.8 266 1.97 aesthetic
1024 aesthetic 20 target_deli.png 768 80 11 757.3 516.8 168 4.15 aesthetic
1024 aesthetic 20 target_deli.png 768 80 12 862.7 625.8 233 0.88 aesthetic
1024 aesthetic 20 target_deli.png 768 80 13 851.4 648.7 831 2.95 aesthetic
1024 aesthetic 20 target_deli.png 768 80 14 828.3 549.6 118 14.43 aesthetic
1024 aesthetic 20 target_deli.png 768 80 15 278.3 577.8 177 2.82 aesthetic
1024 aesthetic 20 target_deli.png 768 80 16 177.5 527.4 250 4.99 aesthetic
1024 aesthetic 20 target_deli.png 768 80 17 63.5 371.7 168 2.15 aesthetic
1024 aesthetic 20 target_deli.png 768 80 18 64.2 442.7 691 0.94 aesthetic
1024 aesthetic 20 target_deli.png 768 80 19 98.6 444 622 1.16 aesthetic
1024 aesthetic 20 target_deli.png 768 80 20 70.3 431.3 338 0.82 aesthetic
1024 aesthetic 20 target_deli.png 768 80 21 90.2 451.2 161 3.27 aesthetic
1024 aesthetic 20 target_deli.png 768 80 22 1.6 353.2 182 17.38 aesthetic
1024 aesthetic 20 target_deli.png 768 80 23 642.6 221.3 237 2.49 aesthetic
1024 aesthetic 20 target_deli.png 768 80 24 567 198.1 190 9.02 aesthetic
1024 aesthetic 20 target_deli.png 768 80 25 894.3 149.9 253 1.11 aesthetic
1024 aesthetic 20 target_deli.png 768 80 26 927.8 152.8 286 2.58 aesthetic
1024 aesthetic 20 target_deli.png 768 80 27 985.5 249.6 232 1.75 aesthetic
1024 aesthetic 20 target_deli.png 768 80 28 944.7 283.1 460 1.94 aesthetic
1024 aesthetic 20 target_deli.png 768 80 29 870.8 286.8 219 7.64 aesthetic
1024 aesthetic 20 target_deli.png 768 80 30 587.5 297 351 5.06 aesthetic
1024 aesthetic 20 target_deli.png 768 80 31 413.2 283.8 346 1.73 aesthetic
1024 aesthetic 20 target_deli.png 768 80 32 468.3 290.7 460 5.24 aesthetic
1024 aesthetic 20 target_deli.png 768 80 33 317.9 162.5 538 7.92 aesthetic
1024 aesthetic 20 target_deli.png 768 80 34 41.5 248.1 108 1.76 aesthetic
1024 aesthetic 20 target_deli.png 768 80 35 20.2 292.2 267 2.37 aesthetic
1024 aesthetic 20 target_deli.png 768 80 36 71.3 239.8 385 10.08 aesthetic
1024 aesthetic 20 target_deli.png 768 80 37 437.2 384.1 102 4.26 aesthetic
1024 aesthetic 21 target_dentistoffice.png 768 80 1 512.5 387.3 302 2.16 aesthetic
1024 aesthetic 21 target_dentistoffice.png 768 80 2 454.7 406.9 289 3.11 aesthetic
1024 aesthetic 21 target_dentistoffice.png 768 80 3 431.1 305.2 409 0.32 aesthetic
1024 aesthetic 21 target_dentistoffice.png 768 80 4 415.4 298.9 223 4.48 aesthetic
1024 aesthetic 21 target_dentistoffice.png 768 80 5 254.5 301.3 265 6.44 aesthetic
1024 aesthetic 21 target_dentistoffice.png 768 80 6 298.7 548.3 252 6.91 aesthetic
1024 aesthetic 21 target_dentistoffice.png 768 80 7 420.8 307.9 321 0.83 aesthetic
1024 aesthetic 21 target_dentistoffice.png 768 80 8 451.4 312.8 309 0.57 aesthetic
1024 aesthetic 21 target_dentistoffice.png 768 80 9 470.9 321.6 551 1.61 aesthetic
1024 aesthetic 21 target_dentistoffice.png 768 80 10 420.8 307.9 344 11.76 aesthetic
1024 aesthetic 21 target_dentistoffice.png 768 80 11 865.3 290 700 4.1 aesthetic
1024 aesthetic 21 target_dentistoffice.png 768 80 12 705.3 245.3 431 3.84 aesthetic
1024 aesthetic 21 target_dentistoffice.png 768 80 13 852.5 284.4 234 5 aesthetic
1024 aesthetic 21 target_dentistoffice.png 768 80 14 980.8 149.2 234 9.94 aesthetic
1024 aesthetic 21 target_dentistoffice.png 768 80 15 939.2 541.4 430 6.92 aesthetic
1024 aesthetic 21 target_dentistoffice.png 768 80 16 693.9 632 163 2.72 aesthetic
1024 aesthetic 21 target_dentistoffice.png 768 80 17 600.7 656.2 184 4.88 aesthetic
1024 aesthetic 21 target_dentistoffice.png 768 80 18 422.2 644 308 4.74 aesthetic
1024 aesthetic 21 target_dentistoffice.png 768 80 19 242.3 615.2 223 4.82 aesthetic
1024 aesthetic 21 target_dentistoffice.png 768 80 20 148 439.4 294 3.14 aesthetic
1024 aesthetic 21 target_dentistoffice.png 768 80 21 170.3 308.9 552 7.21 aesthetic
1024 aesthetic 21 target_dentistoffice.png 768 80 22 421.7 218.7 348 4.93 aesthetic
1024 aesthetic 21 target_dentistoffice.png 768 80 23 602.6 143.6 284 3.28 aesthetic
1024 aesthetic 21 target_dentistoffice.png 768 80 24 668.4 270.6 334 7.94 aesthetic
1024 aesthetic 21 target_dentistoffice.png 768 80 25 442.6 482.1 264 2.26 aesthetic
1024 aesthetic 21 target_dentistoffice.png 768 80 26 439 419.6 598 2.74 aesthetic
1024 aesthetic 21 target_dentistoffice.png 768 80 27 367.8 484.5 308 4.04 aesthetic
1024 aesthetic 21 target_dentistoffice.png 768 80 28 436.2 632.6 368 2.7 aesthetic
1024 aesthetic 21 target_dentistoffice.png 768 80 29 515.3 675.5 253 7.39 aesthetic
1024 aesthetic 21 target_dentistoffice.png 768 80 30 350.1 448.5 330 2.14 aesthetic
1024 aesthetic 21 target_dentistoffice.png 768 80 31 390.5 486.3 275 2.05 aesthetic
1024 aesthetic 21 target_dentistoffice.png 768 80 32 398.6 541.3 317 4.45 aesthetic
1024 aesthetic 21 target_dentistoffice.png 768 80 33 507.6 395.4 123 11.75 aesthetic
1024 aesthetic 22 target_desert.png 768 80 1 519.5 406.4 285 2.97 aesthetic
1024 aesthetic 22 target_desert.png 768 80 2 466.9 524.8 226 3.48 aesthetic
1024 aesthetic 22 target_desert.png 768 80 3 386.7 626.8 512 0.51 aesthetic
1024 aesthetic 22 target_desert.png 768 80 4 698 571.8 124 1.33 aesthetic
1024 aesthetic 22 target_desert.png 768 80 5 665.7 566.2 188 7.03 aesthetic
1024 aesthetic 22 target_desert.png 768 80 6 422.9 674.8 454 1.05 aesthetic
1024 aesthetic 22 target_desert.png 768 80 7 435.5 630.8 247 2.72 aesthetic
1024 aesthetic 22 target_desert.png 768 80 8 521.9 585.3 342 6.87 aesthetic
1024 aesthetic 22 target_desert.png 768 80 9 774.7 567 280 3.62 aesthetic
1024 aesthetic 22 target_desert.png 768 80 10 910.5 557.8 215 5.03 aesthetic
1024 aesthetic 22 target_desert.png 768 80 11 982.4 399 369 1.84 aesthetic
1024 aesthetic 22 target_desert.png 768 80 12 969.1 348.3 219 6.17 aesthetic
1024 aesthetic 22 target_desert.png 768 80 13 915.7 97.7 475 7.67 aesthetic
1024 aesthetic 22 target_desert.png 768 80 14 656.1 216.6 280 14.35 aesthetic
1024 aesthetic 22 target_desert.png 768 80 15 106.6 157.3 345 1.69 aesthetic
1024 aesthetic 22 target_desert.png 768 80 16 67.7 173.4 331 4.21 aesthetic
1024 aesthetic 22 target_desert.png 768 80 17 37.3 344.3 472 4.39 aesthetic
1024 aesthetic 22 target_desert.png 768 80 18 129.3 187.1 254 5.53 aesthetic
1024 aesthetic 22 target_desert.png 768 80 19 136.6 414.4 440 2.99 aesthetic
1024 aesthetic 22 target_desert.png 768 80 20 90.5 538.2 731 4.38 aesthetic
1024 aesthetic 22 target_desert.png 768 80 21 280.5 580.1 600 5.08 aesthetic
1024 aesthetic 22 target_desert.png 768 80 22 463.4 576 427 5.18 aesthetic
1024 aesthetic 22 target_desert.png 768 80 23 612.1 686.9 343 0.78 aesthetic
1024 aesthetic 22 target_desert.png 768 80 24 629.1 699.3 363 1.33 aesthetic
1024 aesthetic 22 target_desert.png 768 80 25 610.6 660.7 125 8.28 aesthetic
1024 aesthetic 22 target_desert.png 768 80 26 362.2 459.7 312 1.69 aesthetic