├── .gitignore ├── CHANGES.md ├── Capfile ├── Gemfile ├── Gemfile.lock ├── MIT-LICENSE ├── README.md ├── README_API.md ├── Rakefile ├── Vagrantfile ├── app ├── assets │ ├── images │ │ ├── .keep │ │ ├── KML-logo-20x25.png │ │ ├── Screenshot_MapWarper.png │ │ ├── close.gif │ │ ├── commons_logo.png │ │ ├── cursors │ │ │ ├── dig-crosshair.png │ │ │ ├── dig-crosshair2.png │ │ │ ├── dig-crosshair3.png │ │ │ ├── dig-crosshair4.png │ │ │ ├── dig-crosshair5.cur │ │ │ ├── dig-crosshair5.png │ │ │ ├── dig-crosshair6.png │ │ │ ├── dig-crosshair7.png │ │ │ └── dig-crosshair8.png │ │ ├── editing_tool_bar_with_pin2.gif │ │ ├── facebook_logo.png │ │ ├── favicon.ico │ │ ├── feed-icon-14x14.png │ │ ├── github_logo.png │ │ ├── google_maps-20x25.png │ │ ├── google_oauth2_logo.png │ │ ├── header_bg.jpg │ │ ├── header_logo.png │ │ ├── icons │ │ │ ├── 0.png │ │ │ ├── 0_green.png │ │ │ ├── 0_orange.png │ │ │ ├── 0_red.png │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 100.png │ │ │ ├── 100_green.png │ │ │ ├── 100_orange.png │ │ │ ├── 100_red.png │ │ │ ├── 101.png │ │ │ ├── 101_green.png │ │ │ ├── 101_orange.png │ │ │ ├── 101_red.png │ │ │ ├── 102.png │ │ │ ├── 102_green.png │ │ │ ├── 102_orange.png │ │ │ ├── 102_red.png │ │ │ ├── 103.png │ │ │ ├── 103_green.png │ │ │ ├── 103_orange.png │ │ │ ├── 103_red.png │ │ │ ├── 104.png │ │ │ ├── 104_green.png │ │ │ ├── 104_orange.png │ │ │ ├── 104_red.png │ │ │ ├── 105.png │ │ │ ├── 105_green.png │ │ │ ├── 105_orange.png │ │ │ ├── 105_red.png │ │ │ ├── 106.png │ │ │ ├── 106_green.png │ │ │ ├── 106_orange.png │ │ │ ├── 106_red.png │ │ │ ├── 107.png │ │ │ ├── 107_green.png │ │ │ ├── 107_orange.png │ │ │ ├── 107_red.png │ │ │ ├── 108.png │ │ │ ├── 108_green.png │ │ │ ├── 108_orange.png │ │ │ ├── 108_red.png │ │ │ ├── 109.png │ │ │ ├── 109_green.png │ │ │ ├── 109_orange.png │ │ │ ├── 109_red.png │ │ │ ├── 10_green.png │ │ │ ├── 10_orange.png │ │ │ ├── 10_red.png │ │ │ ├── 11.png │ │ │ ├── 110.png │ │ │ ├── 110_green.png │ │ │ ├── 110_orange.png │ │ │ ├── 110_red.png │ │ │ ├── 111.png │ │ │ ├── 111_green.png │ │ │ ├── 111_orange.png │ │ │ ├── 111_red.png │ │ │ ├── 112.png │ │ │ ├── 112_green.png │ │ │ ├── 112_orange.png │ │ │ ├── 112_red.png │ │ │ ├── 113.png │ │ │ ├── 113_green.png │ │ │ ├── 113_orange.png │ │ │ ├── 113_red.png │ │ │ ├── 114.png │ │ │ ├── 114_green.png │ │ │ ├── 114_orange.png │ │ │ ├── 114_red.png │ │ │ ├── 115.png │ │ │ ├── 115_green.png │ │ │ ├── 115_orange.png │ │ │ ├── 115_red.png │ │ │ ├── 116.png │ │ │ ├── 116_green.png │ │ │ ├── 116_orange.png │ │ │ ├── 116_red.png │ │ │ ├── 117.png │ │ │ ├── 117_green.png │ │ │ ├── 117_orange.png │ │ │ ├── 117_red.png │ │ │ ├── 118.png │ │ │ ├── 118_green.png │ │ │ ├── 118_orange.png │ │ │ ├── 118_red.png │ │ │ ├── 119.png │ │ │ ├── 119_green.png │ │ │ ├── 119_orange.png │ │ │ ├── 119_red.png │ │ │ ├── 11_green.png │ │ │ ├── 11_orange.png │ │ │ ├── 11_red.png │ │ │ ├── 12.png │ │ │ ├── 120.png │ │ │ ├── 120_green.png │ │ │ ├── 120_orange.png │ │ │ ├── 120_red.png │ │ │ ├── 121.png │ │ │ ├── 121_green.png │ │ │ ├── 121_orange.png │ │ │ ├── 121_red.png │ │ │ ├── 122.png │ │ │ ├── 122_green.png │ │ │ ├── 122_orange.png │ │ │ ├── 122_red.png │ │ │ ├── 123.png │ │ │ ├── 123_green.png │ │ │ ├── 123_orange.png │ │ │ ├── 123_red.png │ │ │ ├── 124.png │ │ │ ├── 124_green.png │ │ │ ├── 124_orange.png │ │ │ ├── 124_red.png │ │ │ ├── 125.png │ │ │ ├── 125_green.png │ │ │ ├── 125_orange.png │ │ │ ├── 125_red.png │ │ │ ├── 126.png │ │ │ ├── 126_green.png │ │ │ ├── 126_orange.png │ │ │ ├── 126_red.png │ │ │ ├── 127.png │ │ │ ├── 127_green.png │ │ │ ├── 127_orange.png │ │ │ ├── 127_red.png │ │ │ ├── 128.png │ │ │ ├── 128_green.png │ │ │ ├── 128_orange.png │ │ │ ├── 128_red.png │ │ │ ├── 129.png │ │ │ ├── 129_green.png │ │ │ ├── 129_orange.png │ │ │ ├── 129_red.png │ │ │ ├── 12_green.png │ │ │ ├── 12_orange.png │ │ │ ├── 12_red.png │ │ │ ├── 13.png │ │ │ ├── 130.png │ │ │ ├── 130_green.png │ │ │ ├── 130_orange.png │ │ │ ├── 130_red.png │ │ │ ├── 131.png │ │ │ ├── 131_green.png │ │ │ ├── 131_orange.png │ │ │ ├── 131_red.png │ │ │ ├── 132.png │ │ │ ├── 132_green.png │ │ │ ├── 132_orange.png │ │ │ ├── 132_red.png │ │ │ ├── 133.png │ │ │ ├── 133_green.png │ │ │ ├── 133_orange.png │ │ │ ├── 133_red.png │ │ │ ├── 134.png │ │ │ ├── 134_green.png │ │ │ ├── 134_orange.png │ │ │ ├── 134_red.png │ │ │ ├── 135.png │ │ │ ├── 135_green.png │ │ │ ├── 135_orange.png │ │ │ ├── 135_red.png │ │ │ ├── 136.png │ │ │ ├── 136_green.png │ │ │ ├── 136_orange.png │ │ │ ├── 136_red.png │ │ │ ├── 137.png │ │ │ ├── 137_green.png │ │ │ ├── 137_orange.png │ │ │ ├── 137_red.png │ │ │ ├── 138.png │ │ │ ├── 138_green.png │ │ │ ├── 138_orange.png │ │ │ ├── 138_red.png │ │ │ ├── 139.png │ │ │ ├── 139_green.png │ │ │ ├── 139_orange.png │ │ │ ├── 139_red.png │ │ │ ├── 13_green.png │ │ │ ├── 13_orange.png │ │ │ ├── 13_red.png │ │ │ ├── 14.png │ │ │ ├── 140.png │ │ │ ├── 140_green.png │ │ │ ├── 140_orange.png │ │ │ ├── 140_red.png │ │ │ ├── 141.png │ │ │ ├── 141_green.png │ │ │ ├── 141_orange.png │ │ │ ├── 141_red.png │ │ │ ├── 142.png │ │ │ ├── 142_green.png │ │ │ ├── 142_orange.png │ │ │ ├── 142_red.png │ │ │ ├── 143.png │ │ │ ├── 143_green.png │ │ │ ├── 143_orange.png │ │ │ ├── 143_red.png │ │ │ ├── 144.png │ │ │ ├── 144_green.png │ │ │ ├── 144_orange.png │ │ │ ├── 144_red.png │ │ │ ├── 145.png │ │ │ ├── 145_green.png │ │ │ ├── 145_orange.png │ │ │ ├── 145_red.png │ │ │ ├── 146.png │ │ │ ├── 146_green.png │ │ │ ├── 146_orange.png │ │ │ ├── 146_red.png │ │ │ ├── 147.png │ │ │ ├── 147_green.png │ │ │ ├── 147_orange.png │ │ │ ├── 147_red.png │ │ │ ├── 148.png │ │ │ ├── 148_green.png │ │ │ ├── 148_orange.png │ │ │ ├── 148_red.png │ │ │ ├── 149.png │ │ │ ├── 149_green.png │ │ │ ├── 149_orange.png │ │ │ ├── 149_red.png │ │ │ ├── 14_green.png │ │ │ ├── 14_orange.png │ │ │ ├── 14_red.png │ │ │ ├── 15.png │ │ │ ├── 15_green.png │ │ │ ├── 15_orange.png │ │ │ ├── 15_red.png │ │ │ ├── 16.png │ │ │ ├── 16_green.png │ │ │ ├── 16_orange.png │ │ │ ├── 16_red.png │ │ │ ├── 17.png │ │ │ ├── 17_green.png │ │ │ ├── 17_orange.png │ │ │ ├── 17_red.png │ │ │ ├── 18.png │ │ │ ├── 18_green.png │ │ │ ├── 18_orange.png │ │ │ ├── 18_red.png │ │ │ ├── 19.png │ │ │ ├── 19_green.png │ │ │ ├── 19_orange.png │ │ │ ├── 19_red.png │ │ │ ├── 1_green.png │ │ │ ├── 1_orange.png │ │ │ ├── 1_red.png │ │ │ ├── 2.png │ │ │ ├── 20.png │ │ │ ├── 20_green.png │ │ │ ├── 20_orange.png │ │ │ ├── 20_red.png │ │ │ ├── 21.png │ │ │ ├── 21_green.png │ │ │ ├── 21_orange.png │ │ │ ├── 21_red.png │ │ │ ├── 22.png │ │ │ ├── 22_green.png │ │ │ ├── 22_orange.png │ │ │ ├── 22_red.png │ │ │ ├── 23.png │ │ │ ├── 23_green.png │ │ │ ├── 23_orange.png │ │ │ ├── 23_red.png │ │ │ ├── 24.png │ │ │ ├── 24_green.png │ │ │ ├── 24_orange.png │ │ │ ├── 24_red.png │ │ │ ├── 25.png │ │ │ ├── 25_green.png │ │ │ ├── 25_orange.png │ │ │ ├── 25_red.png │ │ │ ├── 26.png │ │ │ ├── 26_green.png │ │ │ ├── 26_orange.png │ │ │ ├── 26_red.png │ │ │ ├── 27.png │ │ │ ├── 27_green.png │ │ │ ├── 27_orange.png │ │ │ ├── 27_red.png │ │ │ ├── 28.png │ │ │ ├── 28_green.png │ │ │ ├── 28_orange.png │ │ │ ├── 28_red.png │ │ │ ├── 29.png │ │ │ ├── 29_green.png │ │ │ ├── 29_orange.png │ │ │ ├── 29_red.png │ │ │ ├── 2_green.png │ │ │ ├── 2_orange.png │ │ │ ├── 2_red.png │ │ │ ├── 3.png │ │ │ ├── 30.png │ │ │ ├── 30_green.png │ │ │ ├── 30_orange.png │ │ │ ├── 30_red.png │ │ │ ├── 31.png │ │ │ ├── 31_green.png │ │ │ ├── 31_orange.png │ │ │ ├── 31_red.png │ │ │ ├── 32.png │ │ │ ├── 32_green.png │ │ │ ├── 32_orange.png │ │ │ ├── 32_red.png │ │ │ ├── 33.png │ │ │ ├── 33_green.png │ │ │ ├── 33_orange.png │ │ │ ├── 33_red.png │ │ │ ├── 34.png │ │ │ ├── 34_green.png │ │ │ ├── 34_orange.png │ │ │ ├── 34_red.png │ │ │ ├── 35.png │ │ │ ├── 35_green.png │ │ │ ├── 35_orange.png │ │ │ ├── 35_red.png │ │ │ ├── 36.png │ │ │ ├── 36_green.png │ │ │ ├── 36_orange.png │ │ │ ├── 36_red.png │ │ │ ├── 37.png │ │ │ ├── 37_green.png │ │ │ ├── 37_orange.png │ │ │ ├── 37_red.png │ │ │ ├── 38.png │ │ │ ├── 38_green.png │ │ │ ├── 38_orange.png │ │ │ ├── 38_red.png │ │ │ ├── 39.png │ │ │ ├── 39_green.png │ │ │ ├── 39_orange.png │ │ │ ├── 39_red.png │ │ │ ├── 3_green.png │ │ │ ├── 3_orange.png │ │ │ ├── 3_red.png │ │ │ ├── 4.png │ │ │ ├── 40.png │ │ │ ├── 40_green.png │ │ │ ├── 40_orange.png │ │ │ ├── 40_red.png │ │ │ ├── 41.png │ │ │ ├── 41_green.png │ │ │ ├── 41_orange.png │ │ │ ├── 41_red.png │ │ │ ├── 42.png │ │ │ ├── 42_green.png │ │ │ ├── 42_orange.png │ │ │ ├── 42_red.png │ │ │ ├── 43.png │ │ │ ├── 43_green.png │ │ │ ├── 43_orange.png │ │ │ ├── 43_red.png │ │ │ ├── 44.png │ │ │ ├── 44_green.png │ │ │ ├── 44_orange.png │ │ │ ├── 44_red.png │ │ │ ├── 45.png │ │ │ ├── 45_green.png │ │ │ ├── 45_orange.png │ │ │ ├── 45_red.png │ │ │ ├── 46.png │ │ │ ├── 46_green.png │ │ │ ├── 46_orange.png │ │ │ ├── 46_red.png │ │ │ ├── 47.png │ │ │ ├── 47_green.png │ │ │ ├── 47_orange.png │ │ │ ├── 47_red.png │ │ │ ├── 48.png │ │ │ ├── 48_green.png │ │ │ ├── 48_orange.png │ │ │ ├── 48_red.png │ │ │ ├── 49.png │ │ │ ├── 49_green.png │ │ │ ├── 49_orange.png │ │ │ ├── 49_red.png │ │ │ ├── 4_green.png │ │ │ ├── 4_orange.png │ │ │ ├── 4_red.png │ │ │ ├── 5.png │ │ │ ├── 50.png │ │ │ ├── 50_green.png │ │ │ ├── 50_orange.png │ │ │ ├── 50_red.png │ │ │ ├── 51.png │ │ │ ├── 51_green.png │ │ │ ├── 51_orange.png │ │ │ ├── 51_red.png │ │ │ ├── 52.png │ │ │ ├── 52_green.png │ │ │ ├── 52_orange.png │ │ │ ├── 52_red.png │ │ │ ├── 53.png │ │ │ ├── 53_green.png │ │ │ ├── 53_orange.png │ │ │ ├── 53_red.png │ │ │ ├── 54.png │ │ │ ├── 54_green.png │ │ │ ├── 54_orange.png │ │ │ ├── 54_red.png │ │ │ ├── 55.png │ │ │ ├── 55_green.png │ │ │ ├── 55_orange.png │ │ │ ├── 55_red.png │ │ │ ├── 56.png │ │ │ ├── 56_green.png │ │ │ ├── 56_orange.png │ │ │ ├── 56_red.png │ │ │ ├── 57.png │ │ │ ├── 57_green.png │ │ │ ├── 57_orange.png │ │ │ ├── 57_red.png │ │ │ ├── 58.png │ │ │ ├── 58_green.png │ │ │ ├── 58_orange.png │ │ │ ├── 58_red.png │ │ │ ├── 59.png │ │ │ ├── 59_green.png │ │ │ ├── 59_orange.png │ │ │ ├── 59_red.png │ │ │ ├── 5_green.png │ │ │ ├── 5_orange.png │ │ │ ├── 5_red.png │ │ │ ├── 6.png │ │ │ ├── 60.png │ │ │ ├── 60_green.png │ │ │ ├── 60_orange.png │ │ │ ├── 60_red.png │ │ │ ├── 61.png │ │ │ ├── 61_green.png │ │ │ ├── 61_orange.png │ │ │ ├── 61_red.png │ │ │ ├── 62.png │ │ │ ├── 62_green.png │ │ │ ├── 62_orange.png │ │ │ ├── 62_red.png │ │ │ ├── 63.png │ │ │ ├── 63_green.png │ │ │ ├── 63_orange.png │ │ │ ├── 63_red.png │ │ │ ├── 64.png │ │ │ ├── 64_green.png │ │ │ ├── 64_orange.png │ │ │ ├── 64_red.png │ │ │ ├── 65.png │ │ │ ├── 65_green.png │ │ │ ├── 65_orange.png │ │ │ ├── 65_red.png │ │ │ ├── 66.png │ │ │ ├── 66_green.png │ │ │ ├── 66_orange.png │ │ │ ├── 66_red.png │ │ │ ├── 67.png │ │ │ ├── 67_green.png │ │ │ ├── 67_orange.png │ │ │ ├── 67_red.png │ │ │ ├── 68.png │ │ │ ├── 68_green.png │ │ │ ├── 68_orange.png │ │ │ ├── 68_red.png │ │ │ ├── 69.png │ │ │ ├── 69_green.png │ │ │ ├── 69_orange.png │ │ │ ├── 69_red.png │ │ │ ├── 6_green.png │ │ │ ├── 6_orange.png │ │ │ ├── 6_red.png │ │ │ ├── 7.png │ │ │ ├── 70.png │ │ │ ├── 70_green.png │ │ │ ├── 70_orange.png │ │ │ ├── 70_red.png │ │ │ ├── 71.png │ │ │ ├── 71_green.png │ │ │ ├── 71_orange.png │ │ │ ├── 71_red.png │ │ │ ├── 72.png │ │ │ ├── 72_green.png │ │ │ ├── 72_orange.png │ │ │ ├── 72_red.png │ │ │ ├── 73.png │ │ │ ├── 73_green.png │ │ │ ├── 73_orange.png │ │ │ ├── 73_red.png │ │ │ ├── 74.png │ │ │ ├── 74_green.png │ │ │ ├── 74_orange.png │ │ │ ├── 74_red.png │ │ │ ├── 75.png │ │ │ ├── 75_green.png │ │ │ ├── 75_orange.png │ │ │ ├── 75_red.png │ │ │ ├── 76.png │ │ │ ├── 76_green.png │ │ │ ├── 76_orange.png │ │ │ ├── 76_red.png │ │ │ ├── 77.png │ │ │ ├── 77_green.png │ │ │ ├── 77_orange.png │ │ │ ├── 77_red.png │ │ │ ├── 78.png │ │ │ ├── 78_green.png │ │ │ ├── 78_orange.png │ │ │ ├── 78_red.png │ │ │ ├── 79.png │ │ │ ├── 79_green.png │ │ │ ├── 79_orange.png │ │ │ ├── 79_red.png │ │ │ ├── 7_green.png │ │ │ ├── 7_orange.png │ │ │ ├── 7_red.png │ │ │ ├── 8.png │ │ │ ├── 80.png │ │ │ ├── 80_green.png │ │ │ ├── 80_orange.png │ │ │ ├── 80_red.png │ │ │ ├── 81.png │ │ │ ├── 81_green.png │ │ │ ├── 81_orange.png │ │ │ ├── 81_red.png │ │ │ ├── 82.png │ │ │ ├── 82_green.png │ │ │ ├── 82_orange.png │ │ │ ├── 82_red.png │ │ │ ├── 83.png │ │ │ ├── 83_green.png │ │ │ ├── 83_orange.png │ │ │ ├── 83_red.png │ │ │ ├── 84.png │ │ │ ├── 84_green.png │ │ │ ├── 84_orange.png │ │ │ ├── 84_red.png │ │ │ ├── 85.png │ │ │ ├── 85_green.png │ │ │ ├── 85_orange.png │ │ │ ├── 85_red.png │ │ │ ├── 86.png │ │ │ ├── 86_green.png │ │ │ ├── 86_orange.png │ │ │ ├── 86_red.png │ │ │ ├── 87.png │ │ │ ├── 87_green.png │ │ │ ├── 87_orange.png │ │ │ ├── 87_red.png │ │ │ ├── 88.png │ │ │ ├── 88_green.png │ │ │ ├── 88_orange.png │ │ │ ├── 88_red.png │ │ │ ├── 89.png │ │ │ ├── 89_green.png │ │ │ ├── 89_orange.png │ │ │ ├── 89_red.png │ │ │ ├── 8_green.png │ │ │ ├── 8_orange.png │ │ │ ├── 8_red.png │ │ │ ├── 9.png │ │ │ ├── 90.png │ │ │ ├── 90_green.png │ │ │ ├── 90_orange.png │ │ │ ├── 90_red.png │ │ │ ├── 91.png │ │ │ ├── 91_green.png │ │ │ ├── 91_orange.png │ │ │ ├── 91_red.png │ │ │ ├── 92.png │ │ │ ├── 92_green.png │ │ │ ├── 92_orange.png │ │ │ ├── 92_red.png │ │ │ ├── 93.png │ │ │ ├── 93_green.png │ │ │ ├── 93_orange.png │ │ │ ├── 93_red.png │ │ │ ├── 94.png │ │ │ ├── 94_green.png │ │ │ ├── 94_orange.png │ │ │ ├── 94_red.png │ │ │ ├── 95.png │ │ │ ├── 95_green.png │ │ │ ├── 95_orange.png │ │ │ ├── 95_red.png │ │ │ ├── 96.png │ │ │ ├── 96_green.png │ │ │ ├── 96_orange.png │ │ │ ├── 96_red.png │ │ │ ├── 97.png │ │ │ ├── 97_green.png │ │ │ ├── 97_orange.png │ │ │ ├── 97_red.png │ │ │ ├── 98.png │ │ │ ├── 98_green.png │ │ │ ├── 98_orange.png │ │ │ ├── 98_red.png │ │ │ ├── 99.png │ │ │ ├── 99_green.png │ │ │ ├── 99_orange.png │ │ │ ├── 99_red.png │ │ │ ├── 9_green.png │ │ │ ├── 9_orange.png │ │ │ ├── 9_red.png │ │ │ ├── AQUA.gif │ │ │ ├── AQUA.png │ │ │ ├── editing_tool_bar.png │ │ │ ├── lock.png │ │ │ └── lock_open.png │ │ ├── image-icon-20x25.png │ │ ├── mediawiki_logo.png │ │ ├── missing.png │ │ ├── nypl-bar-logo.png │ │ ├── offline-map-tile.png │ │ ├── oitp_logo_2012.jpg │ │ ├── osm_logo.png │ │ ├── private.png │ │ ├── progressbar │ │ │ ├── bramus │ │ │ │ ├── custom1_bar.gif │ │ │ │ ├── custom1_box.gif │ │ │ │ ├── percentImage.png │ │ │ │ ├── percentImage_back.png │ │ │ │ ├── percentImage_back1.png │ │ │ │ ├── percentImage_back2.png │ │ │ │ ├── percentImage_back3.png │ │ │ │ └── percentImage_back4.png │ │ │ └── icons │ │ │ │ ├── add.gif │ │ │ │ ├── empty.gif │ │ │ │ ├── fill.gif │ │ │ │ ├── get.gif │ │ │ │ ├── minus.gif │ │ │ │ └── set.gif │ │ ├── sort_asc.gif │ │ ├── sort_desc.gif │ │ ├── spinner-horiz.gif │ │ ├── spinner.gif │ │ ├── tabs │ │ │ ├── bg.gif │ │ │ ├── bg_y.gif │ │ │ ├── bg_y2.gif │ │ │ ├── choc │ │ │ │ ├── bg_y.gif │ │ │ │ ├── left.gif │ │ │ │ ├── left_on.gif │ │ │ │ ├── right.gif │ │ │ │ └── right_on.gif │ │ │ ├── left.gif │ │ │ ├── left_on.gif │ │ │ ├── right.gif │ │ │ ├── right_on.gif │ │ │ ├── tab2_bg.gif │ │ │ ├── tab2_left.gif │ │ │ ├── tab2_left_on.gif │ │ │ ├── tab2_right.gif │ │ │ └── tab2_right_on.gif │ │ ├── tiles-20x25.png │ │ ├── twitter_logo.png │ │ └── wms-20x25.png │ ├── javascripts │ │ ├── SelectFeatureNoClick.js │ │ ├── align.js │ │ ├── application.js │ │ ├── clip.js │ │ ├── dig │ │ │ ├── combo │ │ │ │ ├── buildMaterials.json │ │ │ │ ├── buildUseSubType.json │ │ │ │ ├── buildUseSubType2.json │ │ │ │ ├── buildUseType.json │ │ │ │ ├── buildUseType2.json │ │ │ │ ├── districtFeatType.json │ │ │ │ ├── districtType.json │ │ │ │ ├── districtZoning.json │ │ │ │ ├── hydroFeatType.json │ │ │ │ ├── poiFeatType.json │ │ │ │ └── transportFeatType.json │ │ │ └── edit.js │ │ ├── general.js.erb │ │ ├── geosearch-layer.js │ │ ├── geosearch-map.js │ │ ├── geosearch.js │ │ ├── jquery-warper.js.erb │ │ ├── layer-maps.js │ │ ├── layers.js │ │ ├── querystring.js │ │ ├── unwarped.js │ │ ├── warp.js │ │ ├── warped.js │ │ └── warper-controls.js │ └── stylesheets │ │ ├── application.css │ │ ├── dig │ │ ├── ext │ │ │ └── resources │ │ │ │ ├── css │ │ │ │ ├── ext-all.css │ │ │ │ ├── xtheme-gray.css │ │ │ │ └── xtheme-slate.css │ │ │ │ └── images │ │ │ │ ├── default │ │ │ │ ├── box │ │ │ │ │ ├── corners-blue.gif │ │ │ │ │ ├── corners.gif │ │ │ │ │ ├── l-blue.gif │ │ │ │ │ ├── l.gif │ │ │ │ │ ├── r-blue.gif │ │ │ │ │ ├── r.gif │ │ │ │ │ ├── tb-blue.gif │ │ │ │ │ └── tb.gif │ │ │ │ ├── button │ │ │ │ │ ├── btn-arrow.gif │ │ │ │ │ └── btn-sprite.gif │ │ │ │ ├── dd │ │ │ │ │ ├── drop-add.gif │ │ │ │ │ ├── drop-no.gif │ │ │ │ │ └── drop-yes.gif │ │ │ │ ├── editor │ │ │ │ │ └── tb-sprite.gif │ │ │ │ ├── form │ │ │ │ │ ├── checkbox.gif │ │ │ │ │ ├── clear-trigger.gif │ │ │ │ │ ├── clear-trigger.psd │ │ │ │ │ ├── date-trigger.gif │ │ │ │ │ ├── date-trigger.psd │ │ │ │ │ ├── error-tip-corners.gif │ │ │ │ │ ├── exclamation.gif │ │ │ │ │ ├── radio.gif │ │ │ │ │ ├── search-trigger.gif │ │ │ │ │ ├── search-trigger.psd │ │ │ │ │ ├── text-bg.gif │ │ │ │ │ ├── trigger-tpl.gif │ │ │ │ │ ├── trigger.gif │ │ │ │ │ └── trigger.psd │ │ │ │ ├── gradient-bg.gif │ │ │ │ ├── grid │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ ├── arrow-left-white.gif │ │ │ │ │ ├── arrow-right-white.gif │ │ │ │ │ ├── col-move-bottom.gif │ │ │ │ │ ├── col-move-top.gif │ │ │ │ │ ├── columns.gif │ │ │ │ │ ├── dirty.gif │ │ │ │ │ ├── done.gif │ │ │ │ │ ├── drop-no.gif │ │ │ │ │ ├── drop-yes.gif │ │ │ │ │ ├── footer-bg.gif │ │ │ │ │ ├── grid-blue-hd.gif │ │ │ │ │ ├── grid-blue-split.gif │ │ │ │ │ ├── grid-hrow.gif │ │ │ │ │ ├── grid-loading.gif │ │ │ │ │ ├── grid-split.gif │ │ │ │ │ ├── grid-vista-hd.gif │ │ │ │ │ ├── grid3-hd-btn.gif │ │ │ │ │ ├── grid3-hrow-over.gif │ │ │ │ │ ├── grid3-hrow.gif │ │ │ │ │ ├── grid3-special-col-bg.gif │ │ │ │ │ ├── grid3-special-col-sel-bg.gif │ │ │ │ │ ├── group-by.gif │ │ │ │ │ ├── group-expand-sprite.gif │ │ │ │ │ ├── hd-pop.gif │ │ │ │ │ ├── hmenu-asc.gif │ │ │ │ │ ├── hmenu-desc.gif │ │ │ │ │ ├── hmenu-lock.gif │ │ │ │ │ ├── hmenu-lock.png │ │ │ │ │ ├── hmenu-unlock.gif │ │ │ │ │ ├── hmenu-unlock.png │ │ │ │ │ ├── invalid_line.gif │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── mso-hd.gif │ │ │ │ │ ├── nowait.gif │ │ │ │ │ ├── page-first-disabled.gif │ │ │ │ │ ├── page-first.gif │ │ │ │ │ ├── page-last-disabled.gif │ │ │ │ │ ├── page-last.gif │ │ │ │ │ ├── page-next-disabled.gif │ │ │ │ │ ├── page-next.gif │ │ │ │ │ ├── page-prev-disabled.gif │ │ │ │ │ ├── page-prev.gif │ │ │ │ │ ├── pick-button.gif │ │ │ │ │ ├── refresh.gif │ │ │ │ │ ├── row-check-sprite.gif │ │ │ │ │ ├── row-expand-sprite.gif │ │ │ │ │ ├── row-over.gif │ │ │ │ │ ├── row-sel.gif │ │ │ │ │ ├── sort_asc.gif │ │ │ │ │ ├── sort_desc.gif │ │ │ │ │ └── wait.gif │ │ │ │ ├── layout │ │ │ │ │ ├── collapse.gif │ │ │ │ │ ├── expand.gif │ │ │ │ │ ├── gradient-bg.gif │ │ │ │ │ ├── mini-bottom.gif │ │ │ │ │ ├── mini-left.gif │ │ │ │ │ ├── mini-right.gif │ │ │ │ │ ├── mini-top.gif │ │ │ │ │ ├── ns-collapse.gif │ │ │ │ │ ├── ns-expand.gif │ │ │ │ │ ├── panel-close.gif │ │ │ │ │ ├── panel-title-bg.gif │ │ │ │ │ ├── panel-title-light-bg.gif │ │ │ │ │ ├── stick.gif │ │ │ │ │ ├── stuck.gif │ │ │ │ │ ├── tab-close-on.gif │ │ │ │ │ └── tab-close.gif │ │ │ │ ├── menu │ │ │ │ │ ├── checked.gif │ │ │ │ │ ├── group-checked.gif │ │ │ │ │ ├── item-over.gif │ │ │ │ │ ├── menu-parent.gif │ │ │ │ │ ├── menu.gif │ │ │ │ │ └── unchecked.gif │ │ │ │ ├── panel │ │ │ │ │ ├── corners-sprite.gif │ │ │ │ │ ├── left-right.gif │ │ │ │ │ ├── light-hd.gif │ │ │ │ │ ├── tool-sprite-tpl.gif │ │ │ │ │ ├── tool-sprites.gif │ │ │ │ │ ├── tools-sprites-trans.gif │ │ │ │ │ ├── top-bottom.gif │ │ │ │ │ ├── top-bottom.png │ │ │ │ │ ├── white-corners-sprite.gif │ │ │ │ │ ├── white-left-right.gif │ │ │ │ │ └── white-top-bottom.gif │ │ │ │ ├── progress │ │ │ │ │ └── progress-bg.gif │ │ │ │ ├── qtip │ │ │ │ │ ├── bg.gif │ │ │ │ │ ├── close.gif │ │ │ │ │ └── tip-sprite.gif │ │ │ │ ├── s.gif │ │ │ │ ├── shadow-c.png │ │ │ │ ├── shadow-c.psd │ │ │ │ ├── shadow-lr.png │ │ │ │ ├── shadow.png │ │ │ │ ├── shared │ │ │ │ │ ├── blue-loading.gif │ │ │ │ │ ├── calendar.gif │ │ │ │ │ ├── glass-bg.gif │ │ │ │ │ ├── hd-sprite.gif │ │ │ │ │ ├── large-loading.gif │ │ │ │ │ ├── left-btn.gif │ │ │ │ │ ├── loading-balls.gif │ │ │ │ │ ├── right-btn.gif │ │ │ │ │ └── warning.gif │ │ │ │ ├── sizer │ │ │ │ │ ├── e-handle-dark.gif │ │ │ │ │ ├── e-handle.gif │ │ │ │ │ ├── ne-handle-dark.gif │ │ │ │ │ ├── ne-handle.gif │ │ │ │ │ ├── nw-handle-dark.gif │ │ │ │ │ ├── nw-handle.gif │ │ │ │ │ ├── s-handle-dark.gif │ │ │ │ │ ├── s-handle.gif │ │ │ │ │ ├── se-handle-dark.gif │ │ │ │ │ ├── se-handle.gif │ │ │ │ │ ├── square.gif │ │ │ │ │ ├── sw-handle-dark.gif │ │ │ │ │ └── sw-handle.gif │ │ │ │ ├── slider │ │ │ │ │ ├── slider-bg.png │ │ │ │ │ ├── slider-thumb.png │ │ │ │ │ ├── slider-v-bg.png │ │ │ │ │ └── slider-v-thumb.png │ │ │ │ ├── tabs │ │ │ │ │ ├── scroll-left.gif │ │ │ │ │ ├── scroll-right.gif │ │ │ │ │ ├── scroller-bg.gif │ │ │ │ │ ├── tab-btm-inactive-left-bg.gif │ │ │ │ │ ├── tab-btm-inactive-right-bg.gif │ │ │ │ │ ├── tab-btm-left-bg.gif │ │ │ │ │ ├── tab-btm-right-bg.gif │ │ │ │ │ ├── tab-close.gif │ │ │ │ │ ├── tab-strip-bg.gif │ │ │ │ │ ├── tab-strip-bg.png │ │ │ │ │ ├── tab-strip-btm-bg.gif │ │ │ │ │ └── tabs-sprite.gif │ │ │ │ ├── toolbar │ │ │ │ │ ├── bg.gif │ │ │ │ │ ├── btn-arrow-light.gif │ │ │ │ │ ├── btn-arrow.gif │ │ │ │ │ ├── btn-over-bg.gif │ │ │ │ │ ├── gray-bg.gif │ │ │ │ │ ├── tb-bg.gif │ │ │ │ │ └── tb-btn-sprite.gif │ │ │ │ ├── tree │ │ │ │ │ ├── arrows.gif │ │ │ │ │ ├── drop-add.gif │ │ │ │ │ ├── drop-between.gif │ │ │ │ │ ├── drop-no.gif │ │ │ │ │ ├── drop-over.gif │ │ │ │ │ ├── drop-under.gif │ │ │ │ │ ├── drop-yes.gif │ │ │ │ │ ├── elbow-end-minus-nl.gif │ │ │ │ │ ├── elbow-end-minus.gif │ │ │ │ │ ├── elbow-end-plus-nl.gif │ │ │ │ │ ├── elbow-end-plus.gif │ │ │ │ │ ├── elbow-end.gif │ │ │ │ │ ├── elbow-line.gif │ │ │ │ │ ├── elbow-minus-nl.gif │ │ │ │ │ ├── elbow-minus.gif │ │ │ │ │ ├── elbow-plus-nl.gif │ │ │ │ │ ├── elbow-plus.gif │ │ │ │ │ ├── elbow.gif │ │ │ │ │ ├── folder-open.gif │ │ │ │ │ ├── folder.gif │ │ │ │ │ ├── leaf.gif │ │ │ │ │ ├── loading.gif │ │ │ │ │ └── s.gif │ │ │ │ └── window │ │ │ │ │ ├── icon-error.gif │ │ │ │ │ ├── icon-info.gif │ │ │ │ │ ├── icon-question.gif │ │ │ │ │ ├── icon-warning.gif │ │ │ │ │ ├── left-corners.png │ │ │ │ │ ├── left-corners.psd │ │ │ │ │ ├── left-right.png │ │ │ │ │ ├── left-right.psd │ │ │ │ │ ├── right-corners.png │ │ │ │ │ ├── right-corners.psd │ │ │ │ │ ├── top-bottom.png │ │ │ │ │ └── top-bottom.psd │ │ │ │ ├── gray │ │ │ │ ├── button │ │ │ │ │ ├── btn-arrow.gif │ │ │ │ │ └── btn-sprite.gif │ │ │ │ ├── gradient-bg.gif │ │ │ │ ├── panel │ │ │ │ │ ├── corners-sprite.gif │ │ │ │ │ ├── left-right.gif │ │ │ │ │ ├── light-hd.gif │ │ │ │ │ ├── tool-sprite-tpl.gif │ │ │ │ │ ├── tool-sprites.gif │ │ │ │ │ ├── tools-sprites-trans.gif │ │ │ │ │ ├── top-bottom.gif │ │ │ │ │ ├── top-bottom.png │ │ │ │ │ ├── white-corners-sprite.gif │ │ │ │ │ ├── white-left-right.gif │ │ │ │ │ └── white-top-bottom.gif │ │ │ │ ├── qtip │ │ │ │ │ ├── bg.gif │ │ │ │ │ ├── close.gif │ │ │ │ │ └── tip-sprite.gif │ │ │ │ ├── s.gif │ │ │ │ ├── tabs │ │ │ │ │ ├── scroll-left.gif │ │ │ │ │ ├── scroll-right.gif │ │ │ │ │ ├── scroller-bg.gif │ │ │ │ │ ├── tab-btm-inactive-left-bg.gif │ │ │ │ │ ├── tab-btm-inactive-right-bg.gif │ │ │ │ │ ├── tab-btm-left-bg.gif │ │ │ │ │ ├── tab-btm-right-bg.gif │ │ │ │ │ ├── tab-close.gif │ │ │ │ │ ├── tab-strip-bg.gif │ │ │ │ │ ├── tab-strip-bg.png │ │ │ │ │ ├── tab-strip-btm-bg.gif │ │ │ │ │ └── tabs-sprite.gif │ │ │ │ ├── toolbar │ │ │ │ │ ├── bg.gif │ │ │ │ │ ├── btn-arrow-light.gif │ │ │ │ │ ├── btn-arrow.gif │ │ │ │ │ ├── btn-over-bg.gif │ │ │ │ │ ├── gray-bg.gif │ │ │ │ │ ├── tb-bg.gif │ │ │ │ │ └── tb-btn-sprite.gif │ │ │ │ └── window │ │ │ │ │ ├── icon-error.gif │ │ │ │ │ ├── icon-info.gif │ │ │ │ │ ├── icon-question.gif │ │ │ │ │ ├── icon-warning.gif │ │ │ │ │ ├── left-corners.png │ │ │ │ │ ├── left-corners.pspimage │ │ │ │ │ ├── left-right.png │ │ │ │ │ ├── right-corners.png │ │ │ │ │ └── top-bottom.png │ │ │ │ ├── slate │ │ │ │ ├── box │ │ │ │ │ └── tb-blue.gif │ │ │ │ ├── button │ │ │ │ │ ├── btn-arrow.gif │ │ │ │ │ └── btn-sprite.gif │ │ │ │ ├── editor │ │ │ │ │ └── tb-sprite.gif │ │ │ │ ├── form │ │ │ │ │ ├── checkbox.gif │ │ │ │ │ ├── clear-trigger.gif │ │ │ │ │ ├── date-trigger.gif │ │ │ │ │ ├── radio.gif │ │ │ │ │ ├── search-trigger.gif │ │ │ │ │ ├── trigger-tpl.gif │ │ │ │ │ └── trigger.gif │ │ │ │ ├── grid │ │ │ │ │ ├── grid-split.gif │ │ │ │ │ ├── grid3-hd-btn.gif │ │ │ │ │ ├── grid3-hrow-over.gif │ │ │ │ │ ├── grid3-hrow.gif │ │ │ │ │ ├── grid3-special-col-bg.gif │ │ │ │ │ ├── grid3-special-col-sel-bg.gif │ │ │ │ │ ├── page-first-disabled.gif │ │ │ │ │ ├── page-first.gif │ │ │ │ │ ├── page-last-disabled.gif │ │ │ │ │ ├── page-last.gif │ │ │ │ │ ├── page-next.gif │ │ │ │ │ ├── page-prev.gif │ │ │ │ │ ├── refresh.gif │ │ │ │ │ ├── sort_asc.gif │ │ │ │ │ └── sort_desc.gif │ │ │ │ ├── menu │ │ │ │ │ ├── checked.gif │ │ │ │ │ ├── group-checked.gif │ │ │ │ │ ├── item-over.gif │ │ │ │ │ ├── menu-parent.gif │ │ │ │ │ ├── menu.gif │ │ │ │ │ └── unchecked.gif │ │ │ │ ├── panel │ │ │ │ │ ├── corners-sprite.gif │ │ │ │ │ ├── left-right.gif │ │ │ │ │ ├── light-hd.gif │ │ │ │ │ ├── tool-sprite-tpl.gif │ │ │ │ │ ├── tool-sprites.gif │ │ │ │ │ ├── top-bottom.gif │ │ │ │ │ ├── top-bottom.png │ │ │ │ │ ├── white-corners-sprite.gif │ │ │ │ │ ├── white-left-right.gif │ │ │ │ │ └── white-top-bottom.gif │ │ │ │ ├── progress │ │ │ │ │ └── progress-bg.gif │ │ │ │ ├── qtip │ │ │ │ │ ├── bg.gif │ │ │ │ │ ├── close.gif │ │ │ │ │ └── tip-sprite.gif │ │ │ │ ├── shared │ │ │ │ │ ├── glass-bg.gif │ │ │ │ │ ├── hd-sprite.gif │ │ │ │ │ ├── left-btn.gif │ │ │ │ │ └── right-btn.gif │ │ │ │ ├── sizer │ │ │ │ │ ├── e-handle-dark.gif │ │ │ │ │ ├── e-handle.gif │ │ │ │ │ ├── ne-handle-dark.gif │ │ │ │ │ ├── ne-handle.gif │ │ │ │ │ ├── nw-handle-dark.gif │ │ │ │ │ ├── nw-handle.gif │ │ │ │ │ ├── s-handle-dark.gif │ │ │ │ │ ├── s-handle.gif │ │ │ │ │ ├── se-handle-dark.gif │ │ │ │ │ ├── se-handle.gif │ │ │ │ │ ├── square.gif │ │ │ │ │ ├── sw-handle-dark.gif │ │ │ │ │ └── sw-handle.gif │ │ │ │ ├── slider │ │ │ │ │ ├── slider-bg.png │ │ │ │ │ ├── slider-thumb.png │ │ │ │ │ ├── slider-v-bg.png │ │ │ │ │ └── slider-v-thumb.png │ │ │ │ ├── tabs │ │ │ │ │ ├── scroll-left.gif │ │ │ │ │ ├── scroll-right.gif │ │ │ │ │ ├── scroller-bg.gif │ │ │ │ │ ├── tab-btm-inactive-left-bg.gif │ │ │ │ │ ├── tab-btm-inactive-right-bg.gif │ │ │ │ │ ├── tab-btm-left-bg.gif │ │ │ │ │ ├── tab-btm-right-bg.gif │ │ │ │ │ ├── tab-close.gif │ │ │ │ │ ├── tab-strip-bg.gif │ │ │ │ │ ├── tab-strip-btm-bg.gif │ │ │ │ │ └── tabs-sprite.gif │ │ │ │ ├── toolbar │ │ │ │ │ ├── bg.gif │ │ │ │ │ ├── btn-arrow.gif │ │ │ │ │ ├── btn-over-bg.gif │ │ │ │ │ └── tb-btn-sprite.gif │ │ │ │ ├── tree │ │ │ │ │ └── arrows.gif │ │ │ │ └── window │ │ │ │ │ ├── left-corners.png │ │ │ │ │ ├── left-right.png │ │ │ │ │ ├── right-corners.png │ │ │ │ │ └── top-bottom.png │ │ │ │ └── vista │ │ │ │ ├── basic-dialog │ │ │ │ ├── bg-center.gif │ │ │ │ ├── bg-left.gif │ │ │ │ ├── bg-right.gif │ │ │ │ ├── close.gif │ │ │ │ ├── collapse.gif │ │ │ │ ├── dlg-bg.gif │ │ │ │ ├── e-handle.gif │ │ │ │ ├── expand.gif │ │ │ │ ├── hd-sprite.gif │ │ │ │ ├── s-handle.gif │ │ │ │ ├── se-handle.gif │ │ │ │ └── w-handle.gif │ │ │ │ ├── gradient-bg.gif │ │ │ │ ├── grid │ │ │ │ ├── grid-split.gif │ │ │ │ └── grid-vista-hd.gif │ │ │ │ ├── layout │ │ │ │ ├── collapse.gif │ │ │ │ ├── expand.gif │ │ │ │ ├── gradient-bg.gif │ │ │ │ ├── ns-collapse.gif │ │ │ │ ├── ns-expand.gif │ │ │ │ ├── panel-close.gif │ │ │ │ ├── panel-title-bg.gif │ │ │ │ ├── panel-title-light-bg.gif │ │ │ │ ├── stick.gif │ │ │ │ ├── tab-close-on.gif │ │ │ │ └── tab-close.gif │ │ │ │ ├── qtip │ │ │ │ ├── bg.gif │ │ │ │ └── tip-sprite.gif │ │ │ │ ├── s.gif │ │ │ │ ├── sizer │ │ │ │ ├── e-handle-dark.gif │ │ │ │ ├── e-handle.gif │ │ │ │ ├── ne-handle-dark.gif │ │ │ │ ├── ne-handle.gif │ │ │ │ ├── nw-handle-dark.gif │ │ │ │ ├── nw-handle.gif │ │ │ │ ├── s-handle-dark.gif │ │ │ │ ├── s-handle.gif │ │ │ │ ├── se-handle-dark.gif │ │ │ │ ├── se-handle.gif │ │ │ │ ├── sw-handle-dark.gif │ │ │ │ └── sw-handle.gif │ │ │ │ ├── tabs │ │ │ │ ├── tab-btm-inactive-left-bg.gif │ │ │ │ ├── tab-btm-inactive-right-bg.gif │ │ │ │ ├── tab-btm-left-bg.gif │ │ │ │ ├── tab-btm-right-bg.gif │ │ │ │ └── tab-sprite.gif │ │ │ │ └── toolbar │ │ │ │ ├── gray-bg.gif │ │ │ │ └── tb-btn-sprite.gif │ │ └── mfbase │ │ │ └── mapfish │ │ │ ├── img │ │ │ ├── draw_line_off.png │ │ │ ├── draw_point_off.png │ │ │ ├── draw_polygon_clear_off.png │ │ │ ├── draw_polygon_off.png │ │ │ ├── icon_pan.png │ │ │ ├── icon_zoomfull.png │ │ │ ├── icon_zoomin.png │ │ │ ├── icon_zoomout.png │ │ │ ├── move_vertex_off.png │ │ │ ├── printer.png │ │ │ ├── resultset_next.png │ │ │ ├── resultset_previous.png │ │ │ ├── routing-start-node.png │ │ │ └── routing-stop-node.png │ │ │ └── mapfish.css │ │ ├── main.css.scss │ │ ├── nypl.css.scss │ │ └── tabs.css ├── controllers │ ├── admins_controller.rb │ ├── application_controller.rb │ ├── comments_controller.rb │ ├── concerns │ │ └── .keep │ ├── digitize_controller.rb │ ├── flags_controller.rb │ ├── gcps_controller.rb │ ├── groups_controller.rb │ ├── home_controller.rb │ ├── imports_controller.rb │ ├── layers_controller.rb │ ├── maps_controller.rb │ ├── memberships_controller.rb │ ├── my_maps_controller.rb │ ├── omniauth_callbacks_controller.rb │ ├── roles_controller.rb │ ├── sessions_controller.rb │ ├── users_controller.rb │ └── versions_controller.rb ├── helpers │ ├── application_helper.rb │ ├── audits_helper.rb │ └── sort_helper.rb ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── comment.rb │ ├── concerns │ │ ├── .keep │ │ └── tilestache.rb │ ├── error_calculator.rb │ ├── flag.rb │ ├── gcp.rb │ ├── group.rb │ ├── groups_map.rb │ ├── import.rb │ ├── layer.rb │ ├── layer_property.rb │ ├── layers_map.rb │ ├── map.rb │ ├── membership.rb │ ├── my_map.rb │ ├── permission.rb │ ├── role.rb │ ├── setting.rb │ ├── user.rb │ └── user_mailer.rb └── views │ ├── admins │ ├── index.html.erb │ └── read_only.html.erb │ ├── comments │ ├── _comment.html.erb │ ├── _comment_detail.html.erb │ ├── _comment_form.html.erb │ └── index.html.erb │ ├── devise │ ├── confirmations │ │ └── new.html.erb │ ├── mailer │ │ ├── confirmation_instructions.html.erb │ │ ├── reset_password_instructions.html.erb │ │ └── unlock_instructions.html.erb │ ├── passwords │ │ ├── edit.html.erb │ │ └── new.html.erb │ ├── registrations │ │ ├── edit.html.erb │ │ └── new.html.erb │ ├── sessions │ │ └── new.html.erb │ ├── shared │ │ └── _links.erb │ └── unlocks │ │ └── new.html.erb │ ├── flags │ └── index.html.erb │ ├── gcps │ ├── _gcp.html.erb │ ├── add.js.erb │ ├── destroy.js.erb │ ├── index.html.erb │ ├── show.html.erb │ └── update.js.erb │ ├── groups │ ├── _form.html.erb │ ├── _group.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ └── show.html.erb │ ├── home │ ├── index.html.erb │ └── offline.html.erb │ ├── imports │ ├── _form.html.erb │ ├── _helptext.html.erb │ ├── _import.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ └── show.html.erb │ ├── layers │ ├── _form.html.erb │ ├── _form_remote.html.erb │ ├── _layer.html.erb │ ├── _layer_detail.html.erb │ ├── _layermap.html.erb │ ├── comments.html.erb │ ├── delete.html.erb │ ├── digitize.html.erb │ ├── edit.html.erb │ ├── export.html.erb │ ├── geosearch.html.erb │ ├── index.html.erb │ ├── merge.html.erb │ ├── metadata.html.erb │ ├── new.html.erb │ ├── show.html.erb │ ├── show_kml.kml.builder │ └── show_reflect.kml.builder │ ├── layouts │ ├── application.html.erb │ ├── layer_tab_container.html.erb │ ├── layerdetail.html.erb │ ├── mapdetail.html.erb │ └── tab_container.html.erb │ ├── maps │ ├── _form.html.erb │ ├── _form_remote.html.erb │ ├── _map.html.erb │ ├── _map_detail.html.erb │ ├── _map_type.html.erb │ ├── align.html.erb │ ├── clip.html.erb │ ├── comments.html.erb │ ├── delete.html.erb │ ├── edit.html.erb │ ├── export.html.erb │ ├── geosearch.html.erb │ ├── id.html.erb │ ├── idland.html.erb │ ├── index.html.erb │ ├── inset_maps.html.erb │ ├── metadata.html.erb │ ├── new.html.erb │ ├── preview.html.erb │ ├── rectify.js.erb │ ├── show.html.erb │ ├── show_kml.kml.builder │ ├── show_reflect.kml.builder │ ├── tag.html.erb │ ├── trace.html.erb │ ├── warp.html.erb │ └── warped.html.erb │ ├── my_maps │ └── list.html.erb │ ├── roles │ ├── _role.html.erb │ └── index.html.erb │ ├── shared │ ├── _addthis.html.erb │ ├── _analytics.html.erb │ ├── _analyticsbottom.html.erb │ ├── _analyticstop.html.erb │ ├── _export_window.html.erb │ ├── _header.html.erb │ ├── _legal.html.erb │ ├── _nav.html.erb │ ├── _nypl_advisory.html.erb │ ├── _nypl_stripe.html.erb │ ├── _read_only.html.erb │ ├── _search.html.erb │ └── _sort.html.erb │ ├── user_mailer │ ├── disabled_change_password.html.erb │ ├── flag_report.html.erb │ └── new_registration.html.erb │ ├── users │ ├── _admin_tools.html.erb │ ├── _user.html.erb │ ├── index.html.erb │ ├── show.html.erb │ └── stats.html.erb │ └── versions │ ├── _version.html.erb │ ├── _version_table.html.erb │ ├── for_map.html.erb │ ├── index.html.erb │ ├── index.rss.builder │ └── show.html.erb ├── bin ├── bundle ├── rails ├── rake └── spring ├── config.ru ├── config ├── application.example.yml ├── application.rb ├── boot.rb ├── database.example.yml ├── deploy.rb ├── deploy │ ├── production.rb │ └── staging.rb ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── application_config.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── cookies_serializer.rb │ ├── devise.rb │ ├── devise_encryptor.rb │ ├── enum_fu.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── misc_libs.rb │ ├── nypl_repo.rb │ ├── paper_trail.rb │ ├── rack_attack.rb │ ├── rss_parser.rb │ ├── session_store.rb │ └── wrap_parameters.rb ├── locales │ ├── devise.en.yml │ └── en.yml ├── nypl_repo.yml.example ├── routes.rb └── secrets.yml.example ├── db ├── maptileindex │ └── .keep ├── migrate │ ├── 001_create_mapscans.rb │ ├── 002_add_image_attachment_to_mapscan.rb │ ├── 003_add_thumbnail_to_map_scan.rb │ ├── 004_create_gcps.rb │ ├── 005_change_mapscan_id_column_in_gcp.rb │ ├── 006_add_nypl_metadata_fields.rb │ ├── 007_add_status_field.rb │ ├── 008_create_users.rb │ ├── 009_create_roles.rb │ ├── 010_create_permissions.rb │ ├── 011_add_editor_and_administrator_role.rb │ ├── 012_add_audits_table.rb │ ├── 013_add_masking_status_field_to_mapscans.rb │ ├── 014_create_layers.rb │ ├── 015_create_user_maps.rb │ ├── 016_add_counter_caches_to_layer.rb │ ├── 017_add_map_boolean_to_mapscan.rb │ ├── 018_add_bbox_to_layer.rb │ ├── 019_change_depicts_year_to_char.rb │ ├── 020_add_bbox_to_mapscan.rb │ ├── 021_add_map_type_to_mapscan.rb │ ├── 022_add_spatial_bbox_geom_column_to_mapscans.rb │ ├── 023_create_oauth_tables.rb │ ├── 024_add_developer_role.rb │ ├── 025_add_spatial_bbox_geom_column_to_layers.rb │ ├── 026_create_comments.rb │ ├── 027_add_profile_to_user.rb │ ├── 028_add_fields_for_placing_steps_to_map.rb │ ├── 029_add_fields_to_gcps_for_rough_placing_steps.rb │ ├── 030_add_gcp_touched_at_and_last_rectified_to_map.rb │ ├── 031_rename_mapscans_to_maps.rb │ ├── 20140707165304_add_devise_to_users.rb │ ├── 20140723210036_add_comment_to_audits.rb │ ├── 20140723210037_rename_changes_to_audited_changes.rb │ ├── 20140723210038_add_remote_address_to_audits.rb │ ├── 20140723210039_add_association_to_audits.rb │ ├── 20140814115719_add_reset_password_sent_at_to_users.rb │ ├── 20140819173754_add_columns_to_users.rb │ ├── 20150424134733_update_confirmed_at_for_users.rb │ ├── 20150516154110_add_issue_year_to_map.rb │ ├── 20150521142529_create_imports.rb │ ├── 20150531170559_create_versions.rb │ ├── 20150531170560_create_version_associations.rb │ ├── 20150531170600_add_transaction_id_column_to_versions.rb │ ├── 20150617202438_add_object_changes_to_versions.rb │ ├── 20150620215347_create_settings.rb │ ├── 20150624151012_create_flags.rb │ ├── 20150708161955_add_unique_index_to_flags.rb │ └── 20160512195825_add_rectify_to_maps.rb ├── schema.rb └── seeds.rb ├── lib ├── assets │ └── .keep ├── enum_fu │ ├── README │ ├── Rakefile │ ├── init.rb │ ├── install.rb │ ├── lib │ │ └── enum_fu.rb │ ├── tasks │ │ └── enum_fu_tasks.rake │ ├── test │ │ └── enum_fu_test.rb │ └── uninstall.rb ├── mapserver │ └── wms.map ├── misc │ ├── gdalinfo.rb │ └── georuby_extension.rb ├── nypl │ ├── fetch_repo.sh │ └── nypl_repo.rb ├── proj │ ├── GL27 │ ├── epsg │ ├── epsg~ │ ├── esri │ ├── esri.extra │ ├── nad.lst │ ├── nad27 │ ├── nad83 │ ├── other.extra │ ├── proj_def.dat │ └── world ├── rss_parser │ └── rss_parser.rb ├── tasks │ ├── .keep │ ├── clean.rake │ ├── db_export.rake │ ├── gcps.csv │ ├── import.rake │ ├── importgcp.rake │ ├── layercounts.rake │ ├── mapextents.rake │ ├── mapregenbbox.rake │ ├── nypl_repo.rake │ ├── nypl_repo_import.rake │ ├── tile_publish.rake │ └── tileindex.rake └── vagrant │ └── provision.sh ├── log └── .keep ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico ├── mapimages │ ├── .keep │ ├── dst │ │ ├── .keep │ │ └── png │ │ │ └── .keep │ └── src │ │ └── .keep ├── robots.txt └── uploads │ └── .keep ├── test ├── controllers │ ├── .keep │ ├── flags_controller_test.rb │ ├── home_controller_test.rb │ ├── layers_controller_test.rb │ └── maps_controller_test.rb ├── data │ ├── images.nypl.org.gif │ └── map.png ├── fixtures │ ├── .keep │ ├── flags.yml │ ├── layers.yml │ ├── layers_map.yml │ ├── maps.yml │ ├── permissions.yml │ ├── roles.yml │ └── users.yml ├── helpers │ └── .keep ├── integration │ └── .keep ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── flag.rb │ ├── import.rb │ ├── map.rb │ └── version.rb └── test_helper.rb └── vendor └── assets ├── iD ├── iD.css.erb ├── iD.js.erb └── iD │ ├── img │ ├── background-pattern-1.png │ ├── background-pattern-opacity.png │ ├── bing_maps.png │ ├── cursor-draw-connect-line.png │ ├── cursor-draw-connect-line2x.png │ ├── cursor-draw-connect-vertex.png │ ├── cursor-draw-connect-vertex2x.png │ ├── cursor-draw.png │ ├── cursor-draw2x.png │ ├── cursor-grab.png │ ├── cursor-grab2x.png │ ├── cursor-grabbing.png │ ├── cursor-grabbing2x.png │ ├── cursor-pointer.png │ ├── cursor-pointer2x.png │ ├── cursor-pointing.png │ ├── cursor-pointing2x.png │ ├── cursor-select-acting.png │ ├── cursor-select-acting2x.png │ ├── cursor-select-add.png │ ├── cursor-select-add2x.png │ ├── cursor-select-area.png │ ├── cursor-select-area2x.png │ ├── cursor-select-line.png │ ├── cursor-select-line2x.png │ ├── cursor-select-point.png │ ├── cursor-select-point2x.png │ ├── cursor-select-remove.png │ ├── cursor-select-remove2x.png │ ├── cursor-select-split.png │ ├── cursor-select-split2x.png │ ├── cursor-select-vertex.png │ ├── cursor-select-vertex2x.png │ ├── line-presets.png │ ├── loader-black.gif │ ├── loader-white.gif │ ├── loader_bg.gif │ ├── logo.png │ ├── maki-sprite.png │ ├── mini-loader.gif │ ├── pattern │ │ ├── cemetery.png │ │ ├── construction.png │ │ ├── dots.png │ │ ├── farmland.png │ │ ├── orchard.png │ │ ├── vineyard.png │ │ └── wetland.png │ ├── relation-presets.png │ └── sprite.svg │ └── locales │ ├── af.json │ ├── ar-AA.json │ ├── ar.json │ ├── ast.json │ ├── bg-BG.json │ ├── bn.json │ ├── bs.json │ ├── ca.json │ ├── cs.json │ ├── da.json │ ├── de.json │ ├── el.json │ ├── en-GB.json │ ├── en.json │ ├── es.json │ ├── et.json │ ├── fa.json │ ├── fi.json │ ├── fil.json │ ├── fr.json │ ├── gan.json │ ├── gl.json │ ├── hr.json │ ├── hu.json │ ├── hy.json │ ├── id.json │ ├── is.json │ ├── it.json │ ├── ja.json │ ├── kn.json │ ├── ko-KR.json │ ├── ko.json │ ├── lt.json │ ├── lv.json │ ├── nl.json │ ├── nn.json │ ├── no.json │ ├── pl.json │ ├── pt-BR.json │ ├── pt.json │ ├── ro-RO.json │ ├── ru.json │ ├── sc.json │ ├── si.json │ ├── sk.json │ ├── sl.json │ ├── sq.json │ ├── sr-RS.json │ ├── sr.json │ ├── sv.json │ ├── ta.json │ ├── te.json │ ├── tl.json │ ├── tr.json │ ├── uk.json │ ├── vi.json │ ├── yue.json │ ├── zh-CN.GB2312.json │ ├── zh-CN.json │ ├── zh-HK.json │ ├── zh-TW.json │ └── zh.json ├── images ├── openlayers │ ├── blank.gif │ ├── img │ │ ├── 404.png │ │ ├── cloud-popup-relative.png │ │ ├── drag-rectangle-off.png │ │ ├── drag-rectangle-on.png │ │ ├── east-mini.png │ │ ├── layer-switcher-maximize.png │ │ ├── layer-switcher-minimize.png │ │ ├── marker-blue.png │ │ ├── marker-gold.png │ │ ├── marker-green.png │ │ ├── marker.png │ │ ├── measuring-stick-off.png │ │ ├── measuring-stick-on.png │ │ ├── north-mini.png │ │ ├── panning-hand-off.png │ │ ├── panning-hand-on.png │ │ ├── slider.png │ │ ├── south-mini.png │ │ ├── west-mini.png │ │ ├── zoom-minus-mini.png │ │ ├── zoom-plus-mini.png │ │ ├── zoom-world-mini.png │ │ └── zoombar.png │ └── theme │ │ └── default │ │ ├── framedCloud.css │ │ ├── img │ │ ├── add_point_off.png │ │ ├── add_point_on.png │ │ ├── blank.gif │ │ ├── close.gif │ │ ├── drag-rectangle-off.png │ │ ├── drag-rectangle-on.png │ │ ├── draw_line_off.png │ │ ├── draw_line_on.png │ │ ├── draw_point_off.png │ │ ├── draw_point_on.png │ │ ├── draw_polygon_off.png │ │ ├── draw_polygon_on.png │ │ ├── editing_tool_bar.png │ │ ├── move_feature_off.png │ │ ├── move_feature_on.png │ │ ├── overview_replacement.gif │ │ ├── pan_off.png │ │ ├── pan_on.png │ │ ├── panning-hand-off.png │ │ ├── panning-hand-on.png │ │ ├── remove_point_off.png │ │ ├── remove_point_on.png │ │ ├── view_next_off.png │ │ ├── view_next_on.png │ │ ├── view_previous_off.png │ │ └── view_previous_on.png │ │ └── style.css ├── ui-bg_flat_75_aaaaaa_40x100.png ├── ui-bg_glass_100_f5f0e5_1x400.png ├── ui-bg_glass_100_ffffff_1x400.png ├── ui-bg_glass_60_d9c6c8_1x400.png ├── ui-bg_glass_70_e3e3d4_1x400.png ├── ui-bg_highlight-hard_65_fee4bd_1x100.png ├── ui-bg_highlight-hard_75_f5f5b5_1x100.png ├── ui-bg_inset-soft_100_ffffff_1x100.png ├── ui-icons_c47a23_256x240.png ├── ui-icons_cb672b_256x240.png ├── ui-icons_f08000_256x240.png ├── ui-icons_f35f07_256x240.png ├── ui-icons_ff7519_256x240.png └── ui-icons_ffffff_256x240.png ├── javascripts ├── .keep ├── dig │ ├── GeoExt.js │ ├── MapFish.js │ ├── ext-all.js │ └── ext-base.js ├── jquery.history.js ├── jquery.nouislider.all.min.js └── openlayers │ ├── 2.8 │ └── OpenLayers-2.8 │ │ ├── OpenLayers.js │ │ ├── img │ │ ├── blank.gif │ │ ├── cloud-popup-relative.png │ │ ├── drag-rectangle-off.png │ │ ├── drag-rectangle-on.png │ │ ├── east-mini.png │ │ ├── layer-switcher-maximize.png │ │ ├── layer-switcher-minimize.png │ │ ├── marker-blue.png │ │ ├── marker-gold.png │ │ ├── marker-green.png │ │ ├── marker.png │ │ ├── measuring-stick-off.png │ │ ├── measuring-stick-on.png │ │ ├── north-mini.png │ │ ├── panning-hand-off.png │ │ ├── panning-hand-on.png │ │ ├── slider.png │ │ ├── south-mini.png │ │ ├── west-mini.png │ │ ├── zoom-minus-mini.png │ │ ├── zoom-plus-mini.png │ │ ├── zoom-world-mini.png │ │ └── zoombar.png │ │ ├── license.txt │ │ └── theme │ │ └── default │ │ ├── framedCloud.css │ │ ├── google.css │ │ ├── ie6-style.css │ │ ├── img │ │ ├── add_point_off.png │ │ ├── add_point_on.png │ │ ├── blank.gif │ │ ├── close.gif │ │ ├── drag-rectangle-off.png │ │ ├── drag-rectangle-on.png │ │ ├── draw_line_off.png │ │ ├── draw_line_on.png │ │ ├── draw_point_off.png │ │ ├── draw_point_on.png │ │ ├── draw_polygon_off.png │ │ ├── draw_polygon_on.png │ │ ├── editing_tool_bar.png │ │ ├── move_feature_off.png │ │ ├── move_feature_on.png │ │ ├── navigation_history.png │ │ ├── overview_replacement.gif │ │ ├── pan-panel-NOALPHA.png │ │ ├── pan-panel.png │ │ ├── pan_off.png │ │ ├── pan_on.png │ │ ├── panning-hand-off.png │ │ ├── panning-hand-on.png │ │ ├── remove_point_off.png │ │ ├── remove_point_on.png │ │ ├── ruler.png │ │ ├── save_features_off.png │ │ ├── save_features_on.png │ │ ├── view_next_off.png │ │ ├── view_next_on.png │ │ ├── view_previous_off.png │ │ ├── view_previous_on.png │ │ ├── zoom-panel-NOALPHA.png │ │ └── zoom-panel.png │ │ └── style.css │ ├── img │ ├── 404.png │ ├── blank.gif │ ├── cloud-popup-relative.png │ ├── drag-rectangle-off.png │ ├── drag-rectangle-on.png │ ├── east-mini.png │ ├── layer-switcher-maximize.png │ ├── layer-switcher-minimize.png │ ├── marker-blue.png │ ├── marker-gold.png │ ├── marker-green.png │ ├── marker.png │ ├── measuring-stick-off.png │ ├── measuring-stick-on.png │ ├── north-mini.png │ ├── panning-hand-off.png │ ├── panning-hand-on.png │ ├── slider.png │ ├── south-mini.png │ ├── west-mini.png │ ├── zoom-minus-mini.png │ ├── zoom-plus-mini.png │ ├── zoom-world-mini.png │ └── zoombar.png │ └── theme │ └── default │ ├── framedCloud.css │ ├── img │ ├── add_point_off.png │ ├── add_point_on.png │ ├── blank.gif │ ├── close.gif │ ├── drag-rectangle-off.png │ ├── drag-rectangle-on.png │ ├── draw_line_off.png │ ├── draw_line_on.png │ ├── draw_point_off.png │ ├── draw_point_on.png │ ├── draw_polygon_off.png │ ├── draw_polygon_on.png │ ├── editing_tool_bar.png │ ├── move_feature_off.png │ ├── move_feature_on.png │ ├── overview_replacement.gif │ ├── pan_off.png │ ├── pan_on.png │ ├── panning-hand-off.png │ ├── panning-hand-on.png │ ├── remove_point_off.png │ ├── remove_point_on.png │ ├── view_next_off.png │ ├── view_next_on.png │ ├── view_previous_off.png │ └── view_previous_on.png │ └── style.css └── stylesheets ├── .keep ├── custom-theme └── jquery-ui-1.7.custom.css.scss ├── dig ├── ext │ └── resources │ │ ├── css │ │ ├── ext-all.css │ │ ├── xtheme-gray.css │ │ └── xtheme-slate.css │ │ └── images │ │ ├── default │ │ ├── box │ │ │ ├── corners-blue.gif │ │ │ ├── corners.gif │ │ │ ├── l-blue.gif │ │ │ ├── l.gif │ │ │ ├── r-blue.gif │ │ │ ├── r.gif │ │ │ ├── tb-blue.gif │ │ │ └── tb.gif │ │ ├── button │ │ │ ├── btn-arrow.gif │ │ │ └── btn-sprite.gif │ │ ├── dd │ │ │ ├── drop-add.gif │ │ │ ├── drop-no.gif │ │ │ └── drop-yes.gif │ │ ├── editor │ │ │ └── tb-sprite.gif │ │ ├── form │ │ │ ├── checkbox.gif │ │ │ ├── clear-trigger.gif │ │ │ ├── clear-trigger.psd │ │ │ ├── date-trigger.gif │ │ │ ├── date-trigger.psd │ │ │ ├── error-tip-corners.gif │ │ │ ├── exclamation.gif │ │ │ ├── radio.gif │ │ │ ├── search-trigger.gif │ │ │ ├── search-trigger.psd │ │ │ ├── text-bg.gif │ │ │ ├── trigger-tpl.gif │ │ │ ├── trigger.gif │ │ │ └── trigger.psd │ │ ├── gradient-bg.gif │ │ ├── grid │ │ │ ├── Thumbs.db │ │ │ ├── arrow-left-white.gif │ │ │ ├── arrow-right-white.gif │ │ │ ├── col-move-bottom.gif │ │ │ ├── col-move-top.gif │ │ │ ├── columns.gif │ │ │ ├── dirty.gif │ │ │ ├── done.gif │ │ │ ├── drop-no.gif │ │ │ ├── drop-yes.gif │ │ │ ├── footer-bg.gif │ │ │ ├── grid-blue-hd.gif │ │ │ ├── grid-blue-split.gif │ │ │ ├── grid-hrow.gif │ │ │ ├── grid-loading.gif │ │ │ ├── grid-split.gif │ │ │ ├── grid-vista-hd.gif │ │ │ ├── grid3-hd-btn.gif │ │ │ ├── grid3-hrow-over.gif │ │ │ ├── grid3-hrow.gif │ │ │ ├── grid3-special-col-bg.gif │ │ │ ├── grid3-special-col-sel-bg.gif │ │ │ ├── group-by.gif │ │ │ ├── group-expand-sprite.gif │ │ │ ├── hd-pop.gif │ │ │ ├── hmenu-asc.gif │ │ │ ├── hmenu-desc.gif │ │ │ ├── hmenu-lock.gif │ │ │ ├── hmenu-lock.png │ │ │ ├── hmenu-unlock.gif │ │ │ ├── hmenu-unlock.png │ │ │ ├── invalid_line.gif │ │ │ ├── loading.gif │ │ │ ├── mso-hd.gif │ │ │ ├── nowait.gif │ │ │ ├── page-first-disabled.gif │ │ │ ├── page-first.gif │ │ │ ├── page-last-disabled.gif │ │ │ ├── page-last.gif │ │ │ ├── page-next-disabled.gif │ │ │ ├── page-next.gif │ │ │ ├── page-prev-disabled.gif │ │ │ ├── page-prev.gif │ │ │ ├── pick-button.gif │ │ │ ├── refresh.gif │ │ │ ├── row-check-sprite.gif │ │ │ ├── row-expand-sprite.gif │ │ │ ├── row-over.gif │ │ │ ├── row-sel.gif │ │ │ ├── sort_asc.gif │ │ │ ├── sort_desc.gif │ │ │ └── wait.gif │ │ ├── layout │ │ │ ├── collapse.gif │ │ │ ├── expand.gif │ │ │ ├── gradient-bg.gif │ │ │ ├── mini-bottom.gif │ │ │ ├── mini-left.gif │ │ │ ├── mini-right.gif │ │ │ ├── mini-top.gif │ │ │ ├── ns-collapse.gif │ │ │ ├── ns-expand.gif │ │ │ ├── panel-close.gif │ │ │ ├── panel-title-bg.gif │ │ │ ├── panel-title-light-bg.gif │ │ │ ├── stick.gif │ │ │ ├── stuck.gif │ │ │ ├── tab-close-on.gif │ │ │ └── tab-close.gif │ │ ├── menu │ │ │ ├── checked.gif │ │ │ ├── group-checked.gif │ │ │ ├── item-over.gif │ │ │ ├── menu-parent.gif │ │ │ ├── menu.gif │ │ │ └── unchecked.gif │ │ ├── panel │ │ │ ├── corners-sprite.gif │ │ │ ├── left-right.gif │ │ │ ├── light-hd.gif │ │ │ ├── tool-sprite-tpl.gif │ │ │ ├── tool-sprites.gif │ │ │ ├── tools-sprites-trans.gif │ │ │ ├── top-bottom.gif │ │ │ ├── top-bottom.png │ │ │ ├── white-corners-sprite.gif │ │ │ ├── white-left-right.gif │ │ │ └── white-top-bottom.gif │ │ ├── progress │ │ │ └── progress-bg.gif │ │ ├── qtip │ │ │ ├── bg.gif │ │ │ ├── close.gif │ │ │ └── tip-sprite.gif │ │ ├── s.gif │ │ ├── shadow-c.png │ │ ├── shadow-c.psd │ │ ├── shadow-lr.png │ │ ├── shadow.png │ │ ├── shared │ │ │ ├── blue-loading.gif │ │ │ ├── calendar.gif │ │ │ ├── glass-bg.gif │ │ │ ├── hd-sprite.gif │ │ │ ├── large-loading.gif │ │ │ ├── left-btn.gif │ │ │ ├── loading-balls.gif │ │ │ ├── right-btn.gif │ │ │ └── warning.gif │ │ ├── sizer │ │ │ ├── e-handle-dark.gif │ │ │ ├── e-handle.gif │ │ │ ├── ne-handle-dark.gif │ │ │ ├── ne-handle.gif │ │ │ ├── nw-handle-dark.gif │ │ │ ├── nw-handle.gif │ │ │ ├── s-handle-dark.gif │ │ │ ├── s-handle.gif │ │ │ ├── se-handle-dark.gif │ │ │ ├── se-handle.gif │ │ │ ├── square.gif │ │ │ ├── sw-handle-dark.gif │ │ │ └── sw-handle.gif │ │ ├── slider │ │ │ ├── slider-bg.png │ │ │ ├── slider-thumb.png │ │ │ ├── slider-v-bg.png │ │ │ └── slider-v-thumb.png │ │ ├── tabs │ │ │ ├── scroll-left.gif │ │ │ ├── scroll-right.gif │ │ │ ├── scroller-bg.gif │ │ │ ├── tab-btm-inactive-left-bg.gif │ │ │ ├── tab-btm-inactive-right-bg.gif │ │ │ ├── tab-btm-left-bg.gif │ │ │ ├── tab-btm-right-bg.gif │ │ │ ├── tab-close.gif │ │ │ ├── tab-strip-bg.gif │ │ │ ├── tab-strip-bg.png │ │ │ ├── tab-strip-btm-bg.gif │ │ │ └── tabs-sprite.gif │ │ ├── toolbar │ │ │ ├── bg.gif │ │ │ ├── btn-arrow-light.gif │ │ │ ├── btn-arrow.gif │ │ │ ├── btn-over-bg.gif │ │ │ ├── gray-bg.gif │ │ │ ├── tb-bg.gif │ │ │ └── tb-btn-sprite.gif │ │ ├── tree │ │ │ ├── arrows.gif │ │ │ ├── drop-add.gif │ │ │ ├── drop-between.gif │ │ │ ├── drop-no.gif │ │ │ ├── drop-over.gif │ │ │ ├── drop-under.gif │ │ │ ├── drop-yes.gif │ │ │ ├── elbow-end-minus-nl.gif │ │ │ ├── elbow-end-minus.gif │ │ │ ├── elbow-end-plus-nl.gif │ │ │ ├── elbow-end-plus.gif │ │ │ ├── elbow-end.gif │ │ │ ├── elbow-line.gif │ │ │ ├── elbow-minus-nl.gif │ │ │ ├── elbow-minus.gif │ │ │ ├── elbow-plus-nl.gif │ │ │ ├── elbow-plus.gif │ │ │ ├── elbow.gif │ │ │ ├── folder-open.gif │ │ │ ├── folder.gif │ │ │ ├── leaf.gif │ │ │ ├── loading.gif │ │ │ └── s.gif │ │ └── window │ │ │ ├── icon-error.gif │ │ │ ├── icon-info.gif │ │ │ ├── icon-question.gif │ │ │ ├── icon-warning.gif │ │ │ ├── left-corners.png │ │ │ ├── left-corners.psd │ │ │ ├── left-right.png │ │ │ ├── left-right.psd │ │ │ ├── right-corners.png │ │ │ ├── right-corners.psd │ │ │ ├── top-bottom.png │ │ │ └── top-bottom.psd │ │ ├── gray │ │ ├── button │ │ │ ├── btn-arrow.gif │ │ │ └── btn-sprite.gif │ │ ├── gradient-bg.gif │ │ ├── panel │ │ │ ├── corners-sprite.gif │ │ │ ├── left-right.gif │ │ │ ├── light-hd.gif │ │ │ ├── tool-sprite-tpl.gif │ │ │ ├── tool-sprites.gif │ │ │ ├── tools-sprites-trans.gif │ │ │ ├── top-bottom.gif │ │ │ ├── top-bottom.png │ │ │ ├── white-corners-sprite.gif │ │ │ ├── white-left-right.gif │ │ │ └── white-top-bottom.gif │ │ ├── qtip │ │ │ ├── bg.gif │ │ │ ├── close.gif │ │ │ └── tip-sprite.gif │ │ ├── s.gif │ │ ├── tabs │ │ │ ├── scroll-left.gif │ │ │ ├── scroll-right.gif │ │ │ ├── scroller-bg.gif │ │ │ ├── tab-btm-inactive-left-bg.gif │ │ │ ├── tab-btm-inactive-right-bg.gif │ │ │ ├── tab-btm-left-bg.gif │ │ │ ├── tab-btm-right-bg.gif │ │ │ ├── tab-close.gif │ │ │ ├── tab-strip-bg.gif │ │ │ ├── tab-strip-bg.png │ │ │ ├── tab-strip-btm-bg.gif │ │ │ └── tabs-sprite.gif │ │ ├── toolbar │ │ │ ├── bg.gif │ │ │ ├── btn-arrow-light.gif │ │ │ ├── btn-arrow.gif │ │ │ ├── btn-over-bg.gif │ │ │ ├── gray-bg.gif │ │ │ ├── tb-bg.gif │ │ │ └── tb-btn-sprite.gif │ │ └── window │ │ │ ├── icon-error.gif │ │ │ ├── icon-info.gif │ │ │ ├── icon-question.gif │ │ │ ├── icon-warning.gif │ │ │ ├── left-corners.png │ │ │ ├── left-corners.pspimage │ │ │ ├── left-right.png │ │ │ ├── right-corners.png │ │ │ └── top-bottom.png │ │ ├── slate │ │ ├── box │ │ │ └── tb-blue.gif │ │ ├── button │ │ │ ├── btn-arrow.gif │ │ │ └── btn-sprite.gif │ │ ├── editor │ │ │ └── tb-sprite.gif │ │ ├── form │ │ │ ├── checkbox.gif │ │ │ ├── clear-trigger.gif │ │ │ ├── date-trigger.gif │ │ │ ├── radio.gif │ │ │ ├── search-trigger.gif │ │ │ ├── trigger-tpl.gif │ │ │ └── trigger.gif │ │ ├── grid │ │ │ ├── grid-split.gif │ │ │ ├── grid3-hd-btn.gif │ │ │ ├── grid3-hrow-over.gif │ │ │ ├── grid3-hrow.gif │ │ │ ├── grid3-special-col-bg.gif │ │ │ ├── grid3-special-col-sel-bg.gif │ │ │ ├── page-first-disabled.gif │ │ │ ├── page-first.gif │ │ │ ├── page-last-disabled.gif │ │ │ ├── page-last.gif │ │ │ ├── page-next.gif │ │ │ ├── page-prev.gif │ │ │ ├── refresh.gif │ │ │ ├── sort_asc.gif │ │ │ └── sort_desc.gif │ │ ├── menu │ │ │ ├── checked.gif │ │ │ ├── group-checked.gif │ │ │ ├── item-over.gif │ │ │ ├── menu-parent.gif │ │ │ ├── menu.gif │ │ │ └── unchecked.gif │ │ ├── panel │ │ │ ├── corners-sprite.gif │ │ │ ├── left-right.gif │ │ │ ├── light-hd.gif │ │ │ ├── tool-sprite-tpl.gif │ │ │ ├── tool-sprites.gif │ │ │ ├── top-bottom.gif │ │ │ ├── top-bottom.png │ │ │ ├── white-corners-sprite.gif │ │ │ ├── white-left-right.gif │ │ │ └── white-top-bottom.gif │ │ ├── progress │ │ │ └── progress-bg.gif │ │ ├── qtip │ │ │ ├── bg.gif │ │ │ ├── close.gif │ │ │ └── tip-sprite.gif │ │ ├── shared │ │ │ ├── glass-bg.gif │ │ │ ├── hd-sprite.gif │ │ │ ├── left-btn.gif │ │ │ └── right-btn.gif │ │ ├── sizer │ │ │ ├── e-handle-dark.gif │ │ │ ├── e-handle.gif │ │ │ ├── ne-handle-dark.gif │ │ │ ├── ne-handle.gif │ │ │ ├── nw-handle-dark.gif │ │ │ ├── nw-handle.gif │ │ │ ├── s-handle-dark.gif │ │ │ ├── s-handle.gif │ │ │ ├── se-handle-dark.gif │ │ │ ├── se-handle.gif │ │ │ ├── square.gif │ │ │ ├── sw-handle-dark.gif │ │ │ └── sw-handle.gif │ │ ├── slider │ │ │ ├── slider-bg.png │ │ │ ├── slider-thumb.png │ │ │ ├── slider-v-bg.png │ │ │ └── slider-v-thumb.png │ │ ├── tabs │ │ │ ├── scroll-left.gif │ │ │ ├── scroll-right.gif │ │ │ ├── scroller-bg.gif │ │ │ ├── tab-btm-inactive-left-bg.gif │ │ │ ├── tab-btm-inactive-right-bg.gif │ │ │ ├── tab-btm-left-bg.gif │ │ │ ├── tab-btm-right-bg.gif │ │ │ ├── tab-close.gif │ │ │ ├── tab-strip-bg.gif │ │ │ ├── tab-strip-btm-bg.gif │ │ │ └── tabs-sprite.gif │ │ ├── toolbar │ │ │ ├── bg.gif │ │ │ ├── btn-arrow.gif │ │ │ ├── btn-over-bg.gif │ │ │ └── tb-btn-sprite.gif │ │ ├── tree │ │ │ └── arrows.gif │ │ └── window │ │ │ ├── left-corners.png │ │ │ ├── left-right.png │ │ │ ├── right-corners.png │ │ │ └── top-bottom.png │ │ └── vista │ │ ├── basic-dialog │ │ ├── bg-center.gif │ │ ├── bg-left.gif │ │ ├── bg-right.gif │ │ ├── close.gif │ │ ├── collapse.gif │ │ ├── dlg-bg.gif │ │ ├── e-handle.gif │ │ ├── expand.gif │ │ ├── hd-sprite.gif │ │ ├── s-handle.gif │ │ ├── se-handle.gif │ │ └── w-handle.gif │ │ ├── gradient-bg.gif │ │ ├── grid │ │ ├── grid-split.gif │ │ └── grid-vista-hd.gif │ │ ├── layout │ │ ├── collapse.gif │ │ ├── expand.gif │ │ ├── gradient-bg.gif │ │ ├── ns-collapse.gif │ │ ├── ns-expand.gif │ │ ├── panel-close.gif │ │ ├── panel-title-bg.gif │ │ ├── panel-title-light-bg.gif │ │ ├── stick.gif │ │ ├── tab-close-on.gif │ │ └── tab-close.gif │ │ ├── qtip │ │ ├── bg.gif │ │ └── tip-sprite.gif │ │ ├── s.gif │ │ ├── sizer │ │ ├── e-handle-dark.gif │ │ ├── e-handle.gif │ │ ├── ne-handle-dark.gif │ │ ├── ne-handle.gif │ │ ├── nw-handle-dark.gif │ │ ├── nw-handle.gif │ │ ├── s-handle-dark.gif │ │ ├── s-handle.gif │ │ ├── se-handle-dark.gif │ │ ├── se-handle.gif │ │ ├── sw-handle-dark.gif │ │ └── sw-handle.gif │ │ ├── tabs │ │ ├── tab-btm-inactive-left-bg.gif │ │ ├── tab-btm-inactive-right-bg.gif │ │ ├── tab-btm-left-bg.gif │ │ ├── tab-btm-right-bg.gif │ │ └── tab-sprite.gif │ │ └── toolbar │ │ ├── gray-bg.gif │ │ └── tb-btn-sprite.gif └── mfbase │ └── mapfish │ ├── img │ ├── draw_line_off.png │ ├── draw_point_off.png │ ├── draw_polygon_clear_off.png │ ├── draw_polygon_off.png │ ├── icon_pan.png │ ├── icon_zoomfull.png │ ├── icon_zoomin.png │ ├── icon_zoomout.png │ ├── move_vertex_off.png │ ├── printer.png │ ├── resultset_next.png │ ├── resultset_previous.png │ ├── routing-start-node.png │ └── routing-stop-node.png │ └── mapfish.css ├── jquery.nouislider.min.css └── openlayers └── theme └── default ├── framedCloud.css ├── img ├── add_point_off.png ├── add_point_on.png ├── blank.gif ├── close.gif ├── drag-rectangle-off.png ├── drag-rectangle-on.png ├── draw_line_off.png ├── draw_line_on.png ├── draw_point_off.png ├── draw_point_on.png ├── draw_polygon_off.png ├── draw_polygon_on.png ├── editing_tool_bar.png ├── move_feature_off.png ├── move_feature_on.png ├── overview_replacement.gif ├── pan_off.png ├── pan_on.png ├── panning-hand-off.png ├── panning-hand-on.png ├── remove_point_off.png ├── remove_point_on.png ├── view_next_off.png ├── view_next_on.png ├── view_previous_off.png └── view_previous_on.png └── style.css /app/assets/images/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/.keep -------------------------------------------------------------------------------- /app/assets/images/KML-logo-20x25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/KML-logo-20x25.png -------------------------------------------------------------------------------- /app/assets/images/Screenshot_MapWarper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/Screenshot_MapWarper.png -------------------------------------------------------------------------------- /app/assets/images/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/close.gif -------------------------------------------------------------------------------- /app/assets/images/commons_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/commons_logo.png -------------------------------------------------------------------------------- /app/assets/images/cursors/dig-crosshair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/cursors/dig-crosshair.png -------------------------------------------------------------------------------- /app/assets/images/cursors/dig-crosshair2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/cursors/dig-crosshair2.png -------------------------------------------------------------------------------- /app/assets/images/cursors/dig-crosshair3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/cursors/dig-crosshair3.png -------------------------------------------------------------------------------- /app/assets/images/cursors/dig-crosshair4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/cursors/dig-crosshair4.png -------------------------------------------------------------------------------- /app/assets/images/cursors/dig-crosshair5.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/cursors/dig-crosshair5.cur -------------------------------------------------------------------------------- /app/assets/images/cursors/dig-crosshair5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/cursors/dig-crosshair5.png -------------------------------------------------------------------------------- /app/assets/images/cursors/dig-crosshair6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/cursors/dig-crosshair6.png -------------------------------------------------------------------------------- /app/assets/images/cursors/dig-crosshair7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/cursors/dig-crosshair7.png -------------------------------------------------------------------------------- /app/assets/images/cursors/dig-crosshair8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/cursors/dig-crosshair8.png -------------------------------------------------------------------------------- /app/assets/images/facebook_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/facebook_logo.png -------------------------------------------------------------------------------- /app/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/favicon.ico -------------------------------------------------------------------------------- /app/assets/images/feed-icon-14x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/feed-icon-14x14.png -------------------------------------------------------------------------------- /app/assets/images/github_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/github_logo.png -------------------------------------------------------------------------------- /app/assets/images/google_maps-20x25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/google_maps-20x25.png -------------------------------------------------------------------------------- /app/assets/images/google_oauth2_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/google_oauth2_logo.png -------------------------------------------------------------------------------- /app/assets/images/header_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/header_bg.jpg -------------------------------------------------------------------------------- /app/assets/images/header_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/header_logo.png -------------------------------------------------------------------------------- /app/assets/images/icons/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/0.png -------------------------------------------------------------------------------- /app/assets/images/icons/0_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/0_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/0_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/0_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/0_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/0_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/1.png -------------------------------------------------------------------------------- /app/assets/images/icons/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/10.png -------------------------------------------------------------------------------- /app/assets/images/icons/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/100.png -------------------------------------------------------------------------------- /app/assets/images/icons/100_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/100_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/100_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/100_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/100_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/100_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/101.png -------------------------------------------------------------------------------- /app/assets/images/icons/101_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/101_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/101_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/101_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/101_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/101_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/102.png -------------------------------------------------------------------------------- /app/assets/images/icons/102_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/102_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/102_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/102_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/102_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/102_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/103.png -------------------------------------------------------------------------------- /app/assets/images/icons/103_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/103_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/103_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/103_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/103_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/103_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/104.png -------------------------------------------------------------------------------- /app/assets/images/icons/104_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/104_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/104_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/104_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/104_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/104_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/105.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/105.png -------------------------------------------------------------------------------- /app/assets/images/icons/105_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/105_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/105_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/105_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/105_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/105_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/106.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/106.png -------------------------------------------------------------------------------- /app/assets/images/icons/106_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/106_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/106_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/106_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/106_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/106_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/107.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/107.png -------------------------------------------------------------------------------- /app/assets/images/icons/107_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/107_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/107_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/107_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/107_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/107_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/108.png -------------------------------------------------------------------------------- /app/assets/images/icons/108_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/108_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/108_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/108_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/108_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/108_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/109.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/109.png -------------------------------------------------------------------------------- /app/assets/images/icons/109_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/109_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/109_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/109_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/109_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/109_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/10_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/10_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/10_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/10_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/10_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/10_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/11.png -------------------------------------------------------------------------------- /app/assets/images/icons/110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/110.png -------------------------------------------------------------------------------- /app/assets/images/icons/110_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/110_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/110_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/110_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/110_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/110_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/111.png -------------------------------------------------------------------------------- /app/assets/images/icons/111_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/111_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/111_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/111_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/111_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/111_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/112.png -------------------------------------------------------------------------------- /app/assets/images/icons/112_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/112_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/112_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/112_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/112_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/112_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/113.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/113.png -------------------------------------------------------------------------------- /app/assets/images/icons/113_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/113_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/113_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/113_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/113_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/113_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/114.png -------------------------------------------------------------------------------- /app/assets/images/icons/114_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/114_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/114_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/114_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/114_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/114_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/115.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/115.png -------------------------------------------------------------------------------- /app/assets/images/icons/115_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/115_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/115_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/115_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/115_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/115_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/116.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/116.png -------------------------------------------------------------------------------- /app/assets/images/icons/116_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/116_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/116_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/116_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/116_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/116_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/117.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/117.png -------------------------------------------------------------------------------- /app/assets/images/icons/117_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/117_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/117_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/117_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/117_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/117_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/118.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/118.png -------------------------------------------------------------------------------- /app/assets/images/icons/118_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/118_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/118_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/118_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/118_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/118_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/119.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/119.png -------------------------------------------------------------------------------- /app/assets/images/icons/119_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/119_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/119_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/119_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/119_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/119_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/11_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/11_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/11_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/11_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/11_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/11_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/12.png -------------------------------------------------------------------------------- /app/assets/images/icons/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/120.png -------------------------------------------------------------------------------- /app/assets/images/icons/120_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/120_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/120_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/120_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/120_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/120_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/121.png -------------------------------------------------------------------------------- /app/assets/images/icons/121_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/121_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/121_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/121_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/121_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/121_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/122.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/122.png -------------------------------------------------------------------------------- /app/assets/images/icons/122_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/122_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/122_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/122_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/122_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/122_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/123.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/123.png -------------------------------------------------------------------------------- /app/assets/images/icons/123_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/123_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/123_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/123_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/123_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/123_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/124.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/124.png -------------------------------------------------------------------------------- /app/assets/images/icons/124_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/124_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/124_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/124_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/124_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/124_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/125.png -------------------------------------------------------------------------------- /app/assets/images/icons/125_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/125_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/125_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/125_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/125_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/125_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/126.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/126.png -------------------------------------------------------------------------------- /app/assets/images/icons/126_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/126_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/126_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/126_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/126_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/126_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/127.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/127.png -------------------------------------------------------------------------------- /app/assets/images/icons/127_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/127_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/127_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/127_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/127_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/127_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/128.png -------------------------------------------------------------------------------- /app/assets/images/icons/128_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/128_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/128_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/128_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/128_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/128_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/129.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/129.png -------------------------------------------------------------------------------- /app/assets/images/icons/129_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/129_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/129_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/129_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/129_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/129_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/12_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/12_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/12_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/12_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/12_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/12_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/13.png -------------------------------------------------------------------------------- /app/assets/images/icons/130.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/130.png -------------------------------------------------------------------------------- /app/assets/images/icons/130_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/130_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/130_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/130_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/130_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/130_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/131.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/131.png -------------------------------------------------------------------------------- /app/assets/images/icons/131_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/131_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/131_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/131_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/131_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/131_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/132.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/132.png -------------------------------------------------------------------------------- /app/assets/images/icons/132_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/132_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/132_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/132_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/132_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/132_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/133.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/133.png -------------------------------------------------------------------------------- /app/assets/images/icons/133_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/133_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/133_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/133_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/133_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/133_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/134.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/134.png -------------------------------------------------------------------------------- /app/assets/images/icons/134_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/134_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/134_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/134_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/134_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/134_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/135.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/135.png -------------------------------------------------------------------------------- /app/assets/images/icons/135_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/135_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/135_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/135_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/135_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/135_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/136.png -------------------------------------------------------------------------------- /app/assets/images/icons/136_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/136_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/136_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/136_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/136_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/136_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/137.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/137.png -------------------------------------------------------------------------------- /app/assets/images/icons/137_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/137_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/137_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/137_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/137_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/137_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/138.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/138.png -------------------------------------------------------------------------------- /app/assets/images/icons/138_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/138_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/138_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/138_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/138_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/138_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/139.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/139.png -------------------------------------------------------------------------------- /app/assets/images/icons/139_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/139_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/139_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/139_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/139_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/139_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/13_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/13_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/13_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/13_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/13_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/13_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/14.png -------------------------------------------------------------------------------- /app/assets/images/icons/140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/140.png -------------------------------------------------------------------------------- /app/assets/images/icons/140_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/140_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/140_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/140_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/140_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/140_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/141.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/141.png -------------------------------------------------------------------------------- /app/assets/images/icons/141_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/141_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/141_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/141_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/141_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/141_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/142.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/142.png -------------------------------------------------------------------------------- /app/assets/images/icons/142_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/142_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/142_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/142_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/142_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/142_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/143.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/143.png -------------------------------------------------------------------------------- /app/assets/images/icons/143_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/143_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/143_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/143_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/143_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/143_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/144.png -------------------------------------------------------------------------------- /app/assets/images/icons/144_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/144_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/144_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/144_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/144_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/144_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/145.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/145.png -------------------------------------------------------------------------------- /app/assets/images/icons/145_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/145_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/145_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/145_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/145_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/145_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/146.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/146.png -------------------------------------------------------------------------------- /app/assets/images/icons/146_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/146_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/146_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/146_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/146_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/146_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/147.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/147.png -------------------------------------------------------------------------------- /app/assets/images/icons/147_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/147_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/147_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/147_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/147_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/147_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/148.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/148.png -------------------------------------------------------------------------------- /app/assets/images/icons/148_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/148_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/148_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/148_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/148_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/148_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/149.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/149.png -------------------------------------------------------------------------------- /app/assets/images/icons/149_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/149_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/149_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/149_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/149_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/149_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/14_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/14_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/14_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/14_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/14_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/14_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/15.png -------------------------------------------------------------------------------- /app/assets/images/icons/15_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/15_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/15_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/15_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/15_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/15_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/16.png -------------------------------------------------------------------------------- /app/assets/images/icons/16_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/16_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/16_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/16_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/16_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/16_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/17.png -------------------------------------------------------------------------------- /app/assets/images/icons/17_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/17_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/17_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/17_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/17_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/17_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/18.png -------------------------------------------------------------------------------- /app/assets/images/icons/18_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/18_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/18_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/18_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/18_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/18_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/19.png -------------------------------------------------------------------------------- /app/assets/images/icons/19_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/19_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/19_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/19_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/19_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/19_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/1_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/1_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/1_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/1_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/1_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/1_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/2.png -------------------------------------------------------------------------------- /app/assets/images/icons/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/20.png -------------------------------------------------------------------------------- /app/assets/images/icons/20_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/20_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/20_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/20_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/20_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/20_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/21.png -------------------------------------------------------------------------------- /app/assets/images/icons/21_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/21_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/21_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/21_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/21_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/21_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/22.png -------------------------------------------------------------------------------- /app/assets/images/icons/22_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/22_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/22_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/22_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/22_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/22_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/23.png -------------------------------------------------------------------------------- /app/assets/images/icons/23_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/23_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/23_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/23_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/23_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/23_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/24.png -------------------------------------------------------------------------------- /app/assets/images/icons/24_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/24_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/24_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/24_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/24_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/24_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/25.png -------------------------------------------------------------------------------- /app/assets/images/icons/25_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/25_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/25_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/25_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/25_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/25_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/26.png -------------------------------------------------------------------------------- /app/assets/images/icons/26_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/26_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/26_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/26_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/26_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/26_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/27.png -------------------------------------------------------------------------------- /app/assets/images/icons/27_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/27_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/27_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/27_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/27_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/27_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/28.png -------------------------------------------------------------------------------- /app/assets/images/icons/28_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/28_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/28_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/28_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/28_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/28_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/29.png -------------------------------------------------------------------------------- /app/assets/images/icons/29_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/29_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/29_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/29_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/29_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/29_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/2_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/2_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/2_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/2_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/2_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/2_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/3.png -------------------------------------------------------------------------------- /app/assets/images/icons/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/30.png -------------------------------------------------------------------------------- /app/assets/images/icons/30_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/30_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/30_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/30_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/30_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/30_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/31.png -------------------------------------------------------------------------------- /app/assets/images/icons/31_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/31_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/31_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/31_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/31_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/31_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/32.png -------------------------------------------------------------------------------- /app/assets/images/icons/32_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/32_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/32_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/32_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/32_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/32_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/33.png -------------------------------------------------------------------------------- /app/assets/images/icons/33_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/33_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/33_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/33_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/33_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/33_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/34.png -------------------------------------------------------------------------------- /app/assets/images/icons/34_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/34_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/34_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/34_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/34_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/34_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/35.png -------------------------------------------------------------------------------- /app/assets/images/icons/35_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/35_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/35_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/35_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/35_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/35_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/36.png -------------------------------------------------------------------------------- /app/assets/images/icons/36_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/36_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/36_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/36_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/36_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/36_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/37.png -------------------------------------------------------------------------------- /app/assets/images/icons/37_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/37_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/37_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/37_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/37_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/37_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/38.png -------------------------------------------------------------------------------- /app/assets/images/icons/38_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/38_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/38_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/38_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/38_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/38_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/39.png -------------------------------------------------------------------------------- /app/assets/images/icons/39_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/39_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/39_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/39_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/39_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/39_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/3_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/3_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/3_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/3_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/3_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/3_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/4.png -------------------------------------------------------------------------------- /app/assets/images/icons/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/40.png -------------------------------------------------------------------------------- /app/assets/images/icons/40_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/40_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/40_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/40_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/40_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/40_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/41.png -------------------------------------------------------------------------------- /app/assets/images/icons/41_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/41_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/41_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/41_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/41_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/41_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/42.png -------------------------------------------------------------------------------- /app/assets/images/icons/42_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/42_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/42_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/42_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/42_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/42_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/43.png -------------------------------------------------------------------------------- /app/assets/images/icons/43_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/43_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/43_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/43_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/43_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/43_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/44.png -------------------------------------------------------------------------------- /app/assets/images/icons/44_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/44_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/44_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/44_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/44_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/44_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/45.png -------------------------------------------------------------------------------- /app/assets/images/icons/45_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/45_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/45_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/45_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/45_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/45_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/46.png -------------------------------------------------------------------------------- /app/assets/images/icons/46_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/46_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/46_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/46_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/46_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/46_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/47.png -------------------------------------------------------------------------------- /app/assets/images/icons/47_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/47_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/47_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/47_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/47_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/47_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/48.png -------------------------------------------------------------------------------- /app/assets/images/icons/48_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/48_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/48_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/48_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/48_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/48_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/49.png -------------------------------------------------------------------------------- /app/assets/images/icons/49_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/49_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/49_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/49_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/49_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/49_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/4_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/4_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/4_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/4_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/4_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/4_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/5.png -------------------------------------------------------------------------------- /app/assets/images/icons/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/50.png -------------------------------------------------------------------------------- /app/assets/images/icons/50_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/50_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/50_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/50_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/50_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/50_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/51.png -------------------------------------------------------------------------------- /app/assets/images/icons/51_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/51_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/51_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/51_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/51_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/51_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/52.png -------------------------------------------------------------------------------- /app/assets/images/icons/52_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/52_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/52_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/52_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/52_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/52_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/53.png -------------------------------------------------------------------------------- /app/assets/images/icons/53_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/53_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/53_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/53_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/53_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/53_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/54.png -------------------------------------------------------------------------------- /app/assets/images/icons/54_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/54_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/54_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/54_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/54_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/54_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/55.png -------------------------------------------------------------------------------- /app/assets/images/icons/55_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/55_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/55_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/55_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/55_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/55_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/56.png -------------------------------------------------------------------------------- /app/assets/images/icons/56_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/56_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/56_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/56_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/56_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/56_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/57.png -------------------------------------------------------------------------------- /app/assets/images/icons/57_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/57_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/57_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/57_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/57_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/57_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/58.png -------------------------------------------------------------------------------- /app/assets/images/icons/58_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/58_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/58_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/58_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/58_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/58_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/59.png -------------------------------------------------------------------------------- /app/assets/images/icons/59_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/59_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/59_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/59_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/59_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/59_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/5_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/5_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/5_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/5_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/5_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/5_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/6.png -------------------------------------------------------------------------------- /app/assets/images/icons/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/60.png -------------------------------------------------------------------------------- /app/assets/images/icons/60_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/60_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/60_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/60_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/60_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/60_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/61.png -------------------------------------------------------------------------------- /app/assets/images/icons/61_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/61_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/61_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/61_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/61_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/61_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/62.png -------------------------------------------------------------------------------- /app/assets/images/icons/62_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/62_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/62_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/62_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/62_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/62_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/63.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/63.png -------------------------------------------------------------------------------- /app/assets/images/icons/63_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/63_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/63_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/63_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/63_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/63_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/64.png -------------------------------------------------------------------------------- /app/assets/images/icons/64_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/64_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/64_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/64_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/64_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/64_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/65.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/65.png -------------------------------------------------------------------------------- /app/assets/images/icons/65_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/65_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/65_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/65_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/65_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/65_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/66.png -------------------------------------------------------------------------------- /app/assets/images/icons/66_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/66_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/66_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/66_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/66_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/66_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/67.png -------------------------------------------------------------------------------- /app/assets/images/icons/67_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/67_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/67_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/67_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/67_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/67_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/68.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/68.png -------------------------------------------------------------------------------- /app/assets/images/icons/68_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/68_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/68_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/68_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/68_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/68_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/69.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/69.png -------------------------------------------------------------------------------- /app/assets/images/icons/69_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/69_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/69_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/69_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/69_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/69_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/6_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/6_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/6_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/6_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/6_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/6_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/7.png -------------------------------------------------------------------------------- /app/assets/images/icons/70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/70.png -------------------------------------------------------------------------------- /app/assets/images/icons/70_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/70_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/70_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/70_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/70_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/70_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/71.png -------------------------------------------------------------------------------- /app/assets/images/icons/71_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/71_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/71_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/71_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/71_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/71_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/72.png -------------------------------------------------------------------------------- /app/assets/images/icons/72_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/72_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/72_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/72_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/72_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/72_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/73.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/73.png -------------------------------------------------------------------------------- /app/assets/images/icons/73_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/73_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/73_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/73_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/73_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/73_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/74.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/74.png -------------------------------------------------------------------------------- /app/assets/images/icons/74_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/74_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/74_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/74_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/74_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/74_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/75.png -------------------------------------------------------------------------------- /app/assets/images/icons/75_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/75_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/75_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/75_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/75_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/75_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/76.png -------------------------------------------------------------------------------- /app/assets/images/icons/76_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/76_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/76_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/76_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/76_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/76_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/77.png -------------------------------------------------------------------------------- /app/assets/images/icons/77_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/77_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/77_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/77_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/77_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/77_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/78.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/78.png -------------------------------------------------------------------------------- /app/assets/images/icons/78_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/78_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/78_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/78_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/78_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/78_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/79.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/79.png -------------------------------------------------------------------------------- /app/assets/images/icons/79_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/79_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/79_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/79_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/79_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/79_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/7_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/7_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/7_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/7_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/7_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/7_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/8.png -------------------------------------------------------------------------------- /app/assets/images/icons/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/80.png -------------------------------------------------------------------------------- /app/assets/images/icons/80_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/80_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/80_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/80_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/80_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/80_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/81.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/81.png -------------------------------------------------------------------------------- /app/assets/images/icons/81_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/81_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/81_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/81_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/81_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/81_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/82.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/82.png -------------------------------------------------------------------------------- /app/assets/images/icons/82_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/82_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/82_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/82_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/82_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/82_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/83.png -------------------------------------------------------------------------------- /app/assets/images/icons/83_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/83_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/83_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/83_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/83_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/83_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/84.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/84.png -------------------------------------------------------------------------------- /app/assets/images/icons/84_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/84_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/84_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/84_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/84_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/84_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/85.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/85.png -------------------------------------------------------------------------------- /app/assets/images/icons/85_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/85_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/85_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/85_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/85_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/85_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/86.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/86.png -------------------------------------------------------------------------------- /app/assets/images/icons/86_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/86_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/86_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/86_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/86_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/86_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/87.png -------------------------------------------------------------------------------- /app/assets/images/icons/87_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/87_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/87_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/87_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/87_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/87_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/88.png -------------------------------------------------------------------------------- /app/assets/images/icons/88_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/88_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/88_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/88_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/88_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/88_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/89.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/89.png -------------------------------------------------------------------------------- /app/assets/images/icons/89_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/89_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/89_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/89_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/89_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/89_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/8_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/8_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/8_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/8_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/8_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/8_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/9.png -------------------------------------------------------------------------------- /app/assets/images/icons/90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/90.png -------------------------------------------------------------------------------- /app/assets/images/icons/90_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/90_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/90_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/90_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/90_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/90_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/91.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/91.png -------------------------------------------------------------------------------- /app/assets/images/icons/91_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/91_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/91_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/91_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/91_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/91_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/92.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/92.png -------------------------------------------------------------------------------- /app/assets/images/icons/92_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/92_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/92_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/92_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/92_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/92_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/93.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/93.png -------------------------------------------------------------------------------- /app/assets/images/icons/93_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/93_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/93_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/93_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/93_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/93_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/94.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/94.png -------------------------------------------------------------------------------- /app/assets/images/icons/94_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/94_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/94_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/94_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/94_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/94_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/95.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/95.png -------------------------------------------------------------------------------- /app/assets/images/icons/95_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/95_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/95_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/95_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/95_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/95_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/96.png -------------------------------------------------------------------------------- /app/assets/images/icons/96_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/96_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/96_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/96_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/96_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/96_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/97.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/97.png -------------------------------------------------------------------------------- /app/assets/images/icons/97_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/97_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/97_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/97_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/97_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/97_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/98.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/98.png -------------------------------------------------------------------------------- /app/assets/images/icons/98_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/98_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/98_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/98_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/98_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/98_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/99.png -------------------------------------------------------------------------------- /app/assets/images/icons/99_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/99_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/99_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/99_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/99_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/99_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/9_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/9_green.png -------------------------------------------------------------------------------- /app/assets/images/icons/9_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/9_orange.png -------------------------------------------------------------------------------- /app/assets/images/icons/9_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/9_red.png -------------------------------------------------------------------------------- /app/assets/images/icons/AQUA.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/AQUA.gif -------------------------------------------------------------------------------- /app/assets/images/icons/AQUA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/AQUA.png -------------------------------------------------------------------------------- /app/assets/images/icons/editing_tool_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/editing_tool_bar.png -------------------------------------------------------------------------------- /app/assets/images/icons/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/lock.png -------------------------------------------------------------------------------- /app/assets/images/icons/lock_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/icons/lock_open.png -------------------------------------------------------------------------------- /app/assets/images/image-icon-20x25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/image-icon-20x25.png -------------------------------------------------------------------------------- /app/assets/images/mediawiki_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/mediawiki_logo.png -------------------------------------------------------------------------------- /app/assets/images/missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/missing.png -------------------------------------------------------------------------------- /app/assets/images/nypl-bar-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/nypl-bar-logo.png -------------------------------------------------------------------------------- /app/assets/images/offline-map-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/offline-map-tile.png -------------------------------------------------------------------------------- /app/assets/images/oitp_logo_2012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/oitp_logo_2012.jpg -------------------------------------------------------------------------------- /app/assets/images/osm_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/osm_logo.png -------------------------------------------------------------------------------- /app/assets/images/private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/private.png -------------------------------------------------------------------------------- /app/assets/images/progressbar/icons/add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/progressbar/icons/add.gif -------------------------------------------------------------------------------- /app/assets/images/progressbar/icons/empty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/progressbar/icons/empty.gif -------------------------------------------------------------------------------- /app/assets/images/progressbar/icons/fill.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/progressbar/icons/fill.gif -------------------------------------------------------------------------------- /app/assets/images/progressbar/icons/get.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/progressbar/icons/get.gif -------------------------------------------------------------------------------- /app/assets/images/progressbar/icons/minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/progressbar/icons/minus.gif -------------------------------------------------------------------------------- /app/assets/images/progressbar/icons/set.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/progressbar/icons/set.gif -------------------------------------------------------------------------------- /app/assets/images/sort_asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/sort_asc.gif -------------------------------------------------------------------------------- /app/assets/images/sort_desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/sort_desc.gif -------------------------------------------------------------------------------- /app/assets/images/spinner-horiz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/spinner-horiz.gif -------------------------------------------------------------------------------- /app/assets/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/spinner.gif -------------------------------------------------------------------------------- /app/assets/images/tabs/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/tabs/bg.gif -------------------------------------------------------------------------------- /app/assets/images/tabs/bg_y.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/tabs/bg_y.gif -------------------------------------------------------------------------------- /app/assets/images/tabs/bg_y2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/tabs/bg_y2.gif -------------------------------------------------------------------------------- /app/assets/images/tabs/choc/bg_y.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/tabs/choc/bg_y.gif -------------------------------------------------------------------------------- /app/assets/images/tabs/choc/left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/tabs/choc/left.gif -------------------------------------------------------------------------------- /app/assets/images/tabs/choc/left_on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/tabs/choc/left_on.gif -------------------------------------------------------------------------------- /app/assets/images/tabs/choc/right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/tabs/choc/right.gif -------------------------------------------------------------------------------- /app/assets/images/tabs/choc/right_on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/tabs/choc/right_on.gif -------------------------------------------------------------------------------- /app/assets/images/tabs/left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/tabs/left.gif -------------------------------------------------------------------------------- /app/assets/images/tabs/left_on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/tabs/left_on.gif -------------------------------------------------------------------------------- /app/assets/images/tabs/right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/tabs/right.gif -------------------------------------------------------------------------------- /app/assets/images/tabs/right_on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/tabs/right_on.gif -------------------------------------------------------------------------------- /app/assets/images/tabs/tab2_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/tabs/tab2_bg.gif -------------------------------------------------------------------------------- /app/assets/images/tabs/tab2_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/tabs/tab2_left.gif -------------------------------------------------------------------------------- /app/assets/images/tabs/tab2_left_on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/tabs/tab2_left_on.gif -------------------------------------------------------------------------------- /app/assets/images/tabs/tab2_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/tabs/tab2_right.gif -------------------------------------------------------------------------------- /app/assets/images/tabs/tab2_right_on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/tabs/tab2_right_on.gif -------------------------------------------------------------------------------- /app/assets/images/tiles-20x25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/tiles-20x25.png -------------------------------------------------------------------------------- /app/assets/images/twitter_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/twitter_logo.png -------------------------------------------------------------------------------- /app/assets/images/wms-20x25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/assets/images/wms-20x25.png -------------------------------------------------------------------------------- /app/assets/javascripts/dig/combo/buildUseSubType.json: -------------------------------------------------------------------------------- 1 | {"root": [ 2 | {"id": 1, "label": "Apartments"}, 3 | {"id": 2, "label": "Houses"} 4 | ]} 5 | -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/controllers/concerns/.keep -------------------------------------------------------------------------------- /app/helpers/audits_helper.rb: -------------------------------------------------------------------------------- 1 | module AuditsHelper 2 | 3 | 4 | def formatted_action(action) 5 | action.gsub(/\W/, "").titleize 6 | end 7 | 8 | 9 | end 10 | -------------------------------------------------------------------------------- /app/mailers/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/mailers/.keep -------------------------------------------------------------------------------- /app/models/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/models/.keep -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nypl-spacetime/nypl-warper/452856dda79b0720f72c816e8bd481ed9644c77c/app/models/concerns/.keep -------------------------------------------------------------------------------- /app/models/layer_property.rb: -------------------------------------------------------------------------------- 1 | class LayerProperty < ActiveRecord::Base 2 | belongs_to :layer 3 | end 4 | -------------------------------------------------------------------------------- /app/models/permission.rb: -------------------------------------------------------------------------------- 1 | class Permission < ActiveRecord::Base 2 | belongs_to :user 3 | belongs_to :role 4 | end 5 | -------------------------------------------------------------------------------- /app/models/role.rb: -------------------------------------------------------------------------------- 1 | class Role < ActiveRecord::Base 2 | has_many :permissions 3 | has_many :users, :through => :permissions 4 | end 5 | -------------------------------------------------------------------------------- /app/views/gcps/show.html.erb: -------------------------------------------------------------------------------- 1 |