Merge lp:~martin-borho/ubuntu-weather-app/refactored-icon-handling into lp:ubuntu-weather-app/obsolete.trunk

Proposed by Martin Borho
Status: Merged
Approved by: Alan Pope 🍺🐧🐱 πŸ¦„
Approved revision: 231
Merged at revision: 225
Proposed branch: lp:~martin-borho/ubuntu-weather-app/refactored-icon-handling
Merge into: lp:ubuntu-weather-app/obsolete.trunk
Diff against target: 6469 lines (+3561/-129)
7 files modified
components/LocationTab.qml (+3/-27)
components/WeatherApi.js (+66/-65)
components/WeatherConditionIconComponent.qml (+1/-27)
debian/changelog (+64/-0)
tests/autopilot/ubuntu_weather_app/files/1.json (+1709/-1)
tests/autopilot/ubuntu_weather_app/files/2.json (+1710/-1)
tests/autopilot/ubuntu_weather_app/tests/test_settings.py (+8/-8)
To merge this branch: bzr merge lp:~martin-borho/ubuntu-weather-app/refactored-icon-handling
Reviewer Review Type Date Requested Status
Alan Pope 🍺🐧🐱 πŸ¦„ (community) Approve
Ubuntu Phone Apps Jenkins Bot continuous-integration Approve
Review via email: mp+211214@code.launchpad.net

Commit message

Renamed icons and removed obsolete name/icon-number mapping, also using now the current condition icon as icon for the current day

Description of the change

* renamed icon names and updated the api data format accordingly
* removed obsolete icon code map in icon component
* updated ap tests and testdata to work with new data format
* now using icon from current weather data as icon for the current day

To post a comment you must log in.
Revision history for this message
Ubuntu Phone Apps Jenkins Bot (ubuntu-phone-apps-jenkins-bot) wrote :
review: Needs Fixing (continuous-integration)
227. By Martin Borho

bumped .deb version

Revision history for this message
Ubuntu Phone Apps Jenkins Bot (ubuntu-phone-apps-jenkins-bot) wrote :
review: Needs Fixing (continuous-integration)
228. By Martin Borho

fixed float value in test data

Revision history for this message
Ubuntu Phone Apps Jenkins Bot (ubuntu-phone-apps-jenkins-bot) wrote :
review: Approve (continuous-integration)
Revision history for this message
Nicholas Skaggs (nskaggs) wrote :

I guess you sorted this out Martin?

229. By Martin Borho

added missing 50.png for snow_rain

Revision history for this message
Ubuntu Phone Apps Jenkins Bot (ubuntu-phone-apps-jenkins-bot) wrote :
review: Needs Fixing (continuous-integration)
230. By Martin Borho

bumped deb version to 1.8.1

Revision history for this message
Ubuntu Phone Apps Jenkins Bot (ubuntu-phone-apps-jenkins-bot) wrote :
review: Approve (continuous-integration)
231. By Martin Borho

fixed icons in tablet side nav

Revision history for this message
Ubuntu Phone Apps Jenkins Bot (ubuntu-phone-apps-jenkins-bot) wrote :
review: Approve (continuous-integration)
Revision history for this message
Martin Borho (martin-borho) wrote :

Can somebody please review this?

Revision history for this message
Alan Pope 🍺🐧🐱 πŸ¦„ (popey) wrote :

I get a load of broken images when testing this locally..

file:///tmp/refactored-icon-handling/components/WeatherConditionIconComponent.qml:20:5: QML QQuickImage: Cannot open: file:///tmp/refactored-icon-handling/resources/images/broken_clouds_day/50.png

Should I expect to be able to just run this from within the branch?

Revision history for this message
Alan Pope 🍺🐧🐱 πŸ¦„ (popey) wrote :

My bad. Got it working and it looks great!

review: Approve
Revision history for this message
Martin Borho (martin-borho) wrote :

Thanks for the reviews!

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'components/LocationTab.qml'
2--- components/LocationTab.qml 2014-03-06 23:59:48 +0000
3+++ components/LocationTab.qml 2014-03-26 11:19:27 +0000
4@@ -94,7 +94,8 @@
5 tempMin: dailyForecasts[x][units].tempMin.toString(),
6 tempMax: (dailyForecasts[x]["current"] !== undefined
7 && dailyForecasts[x][units].tempMax !== undefined) ? dailyForecasts[x][units].tempMax.toString() : "",
8- condIcon: dailyForecasts[x].icon,
9+ condIcon: (dailyForecasts[x]["current"] !== undefined &&
10+ dailyForecasts[x]["current"].icon !== undefined) ? dailyForecasts[x]["current"].icon : dailyForecasts[x].icon,
11 wind_speed: dailyForecasts[x][wind_units].windSpeed,
12 wind_dir: dailyForecasts[x].windDir,
13 humid: dailyForecasts[x].humidity,
14@@ -198,36 +199,11 @@
15 anchors.top: sideLabel.bottom
16 model:dayForecastModel
17 clip: true
18- // TODO doubled code, to refactor
19- property var conditionIcon: {
20- "clear_day": "02",
21- "clear_night": "12",
22- "few_clouds_day": "05",
23- "few_clouds_night": "04",
24- "scattered_clouds_day": "05",
25- "scattered_clouds_night": "04",
26- "broken_clouds_day": "03",
27- "broken_clouds_night": "03",
28- "mostly_cloudy": "03",
29- "shower_rain_day": "09",
30- "shower_rain_night": "09",
31- "rain_day": "09",
32- "rain_night": "09",
33- "thunderstorm_day": "13",
34- "thunderstorm_night": "13",
35- "snow_day": "14",
36- "snow_night": "14",
37- "chance_snow_day": "11",
38- "chances_now_night": "11",
39- "snow_shower": "11",
40- "mist_day": "06",
41- "mist_night": "06"
42- }
43 delegate: ListItem.Subtitled {
44 subText: "H:"+Math.round(temp)+" L:"+Math.round(tempMin)
45 text: date
46 //selected: (dailyForecastList.currentIndex == index)
47- iconSource: "../resources/images/"+locationDailySide.conditionIcon[dayForecastModel.get(index).condIcon]+".png"
48+ iconSource: "../resources/images/"+dayForecastModel.get(index).condIcon+".png"
49 onClicked: { dailyForecastList.currentIndex = index }
50 }
51 }
52
53=== modified file 'components/WeatherApi.js'
54--- components/WeatherApi.js 2014-03-08 19:54:14 +0000
55+++ components/WeatherApi.js 2014-03-26 11:19:27 +0000
56@@ -23,7 +23,7 @@
57 * Version of the response data format.
58 * Increase this number to force a refresh.
59 */
60-var RESPONSE_DATA_VERSION = 20131207;
61+var RESPONSE_DATA_VERSION = 20140315;
62
63 /**
64 * Helper functions
65@@ -192,24 +192,24 @@
66 var _serviceName = "openweathermap";
67 //
68 var _icon_map = {
69- "01d": "clear_day",
70- "01n": "clear_night",
71- "02d": "few_clouds_day",
72- "02n": "few_clouds_night",
73- "03d": "scattered_clouds_day",
74- "03n": "scattered_clouds_night",
75- "04d": "broken_clouds_day",
76- "04n": "broken_clouds_night",
77- "09d": "shower_rain_day",
78- "09n": "shower_rain_night",
79- "10d": "rain_day",
80- "10n": "rain_night",
81- "11d": "thunderstorm_day",
82- "11n": "thunderstorm_night",
83- "13d": "snow_day",
84- "13n": "snow_night",
85- "50d": "mist_day",
86- "50n": "mist_night"
87+ "01d": "sun",
88+ "01n": "moon",
89+ "02d": "cloud_sun",
90+ "02n": "cloud_moon",
91+ "03d": "cloud_sun",
92+ "03n": "cloud_moon",
93+ "04d": "cloud",
94+ "04n": "cloud",
95+ "09d": "rain",
96+ "09n": "rain",
97+ "10d": "rain",
98+ "10n": "rain",
99+ "11d": "thunder",
100+ "11n": "thunder",
101+ "13d": "snow_shower",
102+ "13n": "snow_shower",
103+ "50d": "fog",
104+ "50n": "fog"
105 }
106 //
107 function _buildDataPoint(date, data) {
108@@ -387,53 +387,54 @@
109 //
110 // see http://s.imwx.com/v.20131006.223722/img/wxicon/72/([0-9]+).png
111 var _iconMap = {
112- "1": "thunderstorm_day", // ??
113- "2": "thunderstorm_day", // ??
114- "3": "thunderstorm_day", // ??
115- "4": "thunderstorm_day", //T-Storms
116- "5": "shower_rain_day", //Rain / Snow
117- "6": "shower_rain_day", // ??
118- "7": "chance_snow_day", //Wintry Mix
119- "8": "chance_snow_day", //Freezing Drizzle
120- "9": "rain_day", //Drizzle
121- "10": "shower_rain_day", // ??
122- "11": "shower_rain_day", //Showers
123- "12": "rain_day", //Rain
124- "13": "snow_day", // ??
125+ "0": "thunder", // ??
126+ "1": "thunder", // ??
127+ "2": "thunder", // ??
128+ "3": "thunder", // ??
129+ "4": "thunder", //T-Storms
130+ "5": "snow_rain", //Rain / Snow
131+ "6": "snow_rain", // ??
132+ "7": "snow_rain", //Wintry Mix
133+ "8": "scattered", //Freezing Drizzle
134+ "9": "scattered", //Drizzle
135+ "10": "rain", // ??
136+ "11": "rain", //Showers
137+ "12": "rain", //Rain
138+ "13": "snow_shower", // ??
139 "14": "snow_shower", //Snow shower/Light snow
140- "15": "snow_day", //
141- "16": "snow_day", //Snow
142- "17": "thunderstorm_day", // Hail??
143- "18": "shower_rain_day", // Rain / Snow ??
144- "19": "mist_day", //Fog ??
145- "20": "mist_day", //Fog
146- "21": "mist_day", //Haze
147- "22": "mist_day", // ??
148- "23": "mist_day", // Wind ??
149- "24": "broken_clouds_day", //Partly Cloudy / Wind
150- "25": "broken_clouds_day", // ??
151- "26": "broken_clouds_day",//Cloudy
152- "27": "few_clouds_night",//Mostly Cloudy
153- "28": "few_clouds_day", //Mostly Cloudy
154- "29": "scattered_clouds_night", //Partly Cloudy
155- "30": "scattered_clouds_day", //Partly Cloudy
156- "31": "clear_night", //Clear
157- "32": "clear_day", //Sunny
158- "33": "few_clouds_night", //Mostly Clear
159- "34": "few_clouds_day", //Mostly Sunny
160- "35": "shower_rain_day", // ??
161- "36": "clear_day", //Sunny
162- "37": "thunderstorm_day", //Isolated T-Storms
163- "38": "thunderstorm_day", //Scattered T-Storms
164- "39": "rain_day", //Scattered Showers
165- "40": "shower_rain_day", // ??
166- "41": "snow_day", //Scattered Snow Showers
167- "42": "snow_day", // ??
168- "43": "snow_day", // ??
169- "44": "mist_day", // ??
170- "45": "rain_day", // ??
171- "46": "snow_day", //Snow Showers Early
172- "47": "thunderstorm_day" //Isolated T-Storms
173+ "15": "snow_shower", //
174+ "16": "snow_shower", //Snow
175+ "17": "thunder", // Hail??
176+ "18": "snow_rain", // Rain / Snow ??
177+ "19": "fog", //Fog ??
178+ "20": "fog", //Fog
179+ "21": "fog", //Haze
180+ "22": "fog", // ??
181+ "23": "fog", // Wind ??
182+ "24": "overcast", //Partly Cloudy / Wind
183+ "25": "overcast", // ??
184+ "26": "overcast",//Cloudy
185+ "27": "cloud_moon",//Mostly Cloudy
186+ "28": "cloud_sun", //Mostly Cloudy
187+ "29": "cloud_moon", //Partly Cloudy
188+ "30": "cloud_sun", //Partly Cloudy
189+ "31": "moon", //Clear
190+ "32": "sun", //Sunny
191+ "33": "cloud_moon", //Mostly Clear
192+ "34": "cloud_sun", //Mostly Sunny
193+ "35": "snow_rain", // ??
194+ "36": "sun", //Sunny
195+ "37": "thunder", //Isolated T-Storms
196+ "38": "thunder", //Scattered T-Storms
197+ "39": "scattered", //Scattered Showers
198+ "40": "rain", // ??
199+ "41": "snow", //Scattered Snow Showers
200+ "42": "snow_shower", // ??
201+ "43": "snow_shower", // ??
202+ "44": "fog", // ??
203+ "45": "scattered", // ??
204+ "46": "snow_shower", //Snow Showers Early
205+ "47": "thunder" //Isolated T-Storms
206 };
207 //
208 function _buildDataPoint(date, dataObj) {
209
210=== modified file 'components/WeatherConditionIconComponent.qml'
211--- components/WeatherConditionIconComponent.qml 2014-02-19 19:26:35 +0000
212+++ components/WeatherConditionIconComponent.qml 2014-03-26 11:19:27 +0000
213@@ -17,36 +17,10 @@
214
215 property int viewMode // 0: mobile, 1: tablet
216
217- /* temporary icon map */
218- property var conditionicon: {
219- "clear_day": "02",
220- "clear_night": "12",
221- "few_clouds_day": "05",
222- "few_clouds_night": "04",
223- "scattered_clouds_day": "05",
224- "scattered_clouds_night": "04",
225- "broken_clouds_day": "03",
226- "broken_clouds_night": "03",
227- "mostly_cloudy": "03",
228- "shower_rain_day": "09",
229- "shower_rain_night": "09",
230- "rain_day": "09",
231- "rain_night": "09",
232- "thunderstorm_day": "13",
233- "thunderstorm_night": "13",
234- "snow_day": "14",
235- "snow_night": "14",
236- "chance_snow_day": "11",
237- "chances_now_night": "11",
238- "snow_shower": "11",
239- "mist_day": "06",
240- "mist_night": "06"
241- }
242-
243 Image {
244 id: icon
245 anchors.centerIn: parent
246- source: "../resources/images/"+conditionicon[condition]+"/"+currentImage+".png"
247+ source: "../resources/images/"+condition+"/"+currentImage+".png"
248 height: (viewMode == 0) ? units.gu(18) : units.gu(30)
249 width: (viewMode == 0) ? units.gu(18) : units.gu(30)
250 }
251
252=== modified file 'debian/changelog'
253--- debian/changelog 2014-02-18 21:26:36 +0000
254+++ debian/changelog 2014-03-26 11:19:27 +0000
255@@ -1,3 +1,67 @@
256+ubuntu-weather-app (1.8.1ubuntu1) UNRELEASED; urgency=low
257+
258+ * added missing icon
259+
260+ -- Martin Borho <martin@borho.net> Sun, 23 Mar 2014 13:06:17 +0000
261+
262+ubuntu-weather-app (1.8ubuntu1) UNRELEASED; urgency=low
263+
264+ [Leo Arias]
265+ * Port to autopilot 1.4.
266+ * Set the objectNames for the settings options.
267+
268+ [Nicholas Skaggs]
269+ * Fixed test_del_add_bug test, simplify tests, re-enable disabled tests.
270+ * Redo create blank db, ensure it's being used across all tests.
271+ * Add cmake build.
272+ * Set revno to match store.
273+ * Updated tests to use more emulator standards.
274+ * Tweaked activity indicator handling.
275+
276+ [Dennis O'Flaherty]
277+ * Load weather for the selected city when clicking the OWM logo instead of loading for London.
278+
279+ [Raul Yeguas]
280+ * Added an modified logo for OpenWeatherMap (have mercy on me, christina-li and michal) and an action to open its website on click.
281+ * Added animations for daily and houly forecast scroll.
282+ * Improved animation speed by reducing image size.
283+ * Removes SideStage hint, fixes related to the sizes of the current weather data display on tablets.
284+
285+ [Victor Thompson]
286+ * Added unit of measure for main temperature value.
287+ * Fixed conversion of wind speed data for TWC data.
288+ * Prevent predictive text in search bar.
289+
290+ [Arash Badie Modiri]
291+ * Changed a translation string into something a little bit more general.
292+
293+ [Martin Borho]
294+ * Optimized and added haptic effect to hourly scrolling .
295+ * Added The Weather Channel as default weather data provider.
296+ * Added keyboard shortcuts.
297+ * Initial tablet design of the Weather app.
298+ * Refactored all width:parent.width and height:parent.height through corresponding anchors
299+ * Fixed edit dialog to fill window on N7 2013 landscape
300+ * Fixed weather AP tests to not assume tablet mode
301+ * Fixed content sticking to the top, when height was changed in phone mode
302+ * Fixed StateNotFoundError failures in image 206
303+ * Removed WorkerScriptfor API calls
304+ * New icon names used in API clients
305+ * Using the current condition icon for the current day
306+
307+ [David Planella]
308+ * Fixed the rule to generate a .pot template after the migration to cmake.
309+ * Minor improvements on the weather API: added parameterize(), added locale parameters to TWC calls
310+ * Fixes empty TWC URL if locale is not supported.
311+ * Adds documentation for the The Weather Channel API.
312+ * Makes the provider footer to be full width in order for it to make it look good on a Nexus 7.
313+ * Fixes the shorter length header on the N7 using anchors instead of widths.
314+
315+ [Alan Pope]
316+ * New icon.
317+
318+ -- Martin Borho <martin@borho.net> Fri, 21 Mar 2014 11:26:17 +0000
319+
320 ubuntu-weather-app (1.0ubuntu1) UNRELEASED; urgency=medium
321
322 * New icon
323
324=== removed file 'resources/images/01.png'
325Binary files resources/images/01.png 2013-08-28 13:09:31 +0000 and resources/images/01.png 1970-01-01 00:00:00 +0000 differ
326=== removed directory 'resources/images/02'
327=== removed file 'resources/images/02.png'
328Binary files resources/images/02.png 2013-08-28 13:09:31 +0000 and resources/images/02.png 1970-01-01 00:00:00 +0000 differ
329=== removed file 'resources/images/02/1.png'
330Binary files resources/images/02/1.png 2013-12-15 18:17:56 +0000 and resources/images/02/1.png 1970-01-01 00:00:00 +0000 differ
331=== removed file 'resources/images/02/10.png'
332Binary files resources/images/02/10.png 2014-02-10 19:26:40 +0000 and resources/images/02/10.png 1970-01-01 00:00:00 +0000 differ
333=== removed file 'resources/images/02/11.png'
334Binary files resources/images/02/11.png 2014-02-10 19:26:40 +0000 and resources/images/02/11.png 1970-01-01 00:00:00 +0000 differ
335=== removed file 'resources/images/02/12.png'
336Binary files resources/images/02/12.png 2014-02-10 19:26:40 +0000 and resources/images/02/12.png 1970-01-01 00:00:00 +0000 differ
337=== removed file 'resources/images/02/13.png'
338Binary files resources/images/02/13.png 2014-02-10 19:26:40 +0000 and resources/images/02/13.png 1970-01-01 00:00:00 +0000 differ
339=== removed file 'resources/images/02/14.png'
340Binary files resources/images/02/14.png 2014-02-10 19:26:40 +0000 and resources/images/02/14.png 1970-01-01 00:00:00 +0000 differ
341=== removed file 'resources/images/02/15.png'
342Binary files resources/images/02/15.png 2014-02-10 19:26:40 +0000 and resources/images/02/15.png 1970-01-01 00:00:00 +0000 differ
343=== removed file 'resources/images/02/16.png'
344Binary files resources/images/02/16.png 2014-02-10 19:26:40 +0000 and resources/images/02/16.png 1970-01-01 00:00:00 +0000 differ
345=== removed file 'resources/images/02/17.png'
346Binary files resources/images/02/17.png 2014-02-10 19:26:40 +0000 and resources/images/02/17.png 1970-01-01 00:00:00 +0000 differ
347=== removed file 'resources/images/02/18.png'
348Binary files resources/images/02/18.png 2014-02-10 19:26:40 +0000 and resources/images/02/18.png 1970-01-01 00:00:00 +0000 differ
349=== removed file 'resources/images/02/19.png'
350Binary files resources/images/02/19.png 2014-02-10 19:26:40 +0000 and resources/images/02/19.png 1970-01-01 00:00:00 +0000 differ
351=== removed file 'resources/images/02/2.png'
352Binary files resources/images/02/2.png 2013-12-15 18:17:56 +0000 and resources/images/02/2.png 1970-01-01 00:00:00 +0000 differ
353=== removed file 'resources/images/02/20.png'
354Binary files resources/images/02/20.png 2014-02-10 19:26:40 +0000 and resources/images/02/20.png 1970-01-01 00:00:00 +0000 differ
355=== removed file 'resources/images/02/21.png'
356Binary files resources/images/02/21.png 2014-02-10 19:26:40 +0000 and resources/images/02/21.png 1970-01-01 00:00:00 +0000 differ
357=== removed file 'resources/images/02/22.png'
358Binary files resources/images/02/22.png 2014-02-10 19:26:40 +0000 and resources/images/02/22.png 1970-01-01 00:00:00 +0000 differ
359=== removed file 'resources/images/02/23.png'
360Binary files resources/images/02/23.png 2014-02-10 19:26:40 +0000 and resources/images/02/23.png 1970-01-01 00:00:00 +0000 differ
361=== removed file 'resources/images/02/24.png'
362Binary files resources/images/02/24.png 2014-02-10 19:26:40 +0000 and resources/images/02/24.png 1970-01-01 00:00:00 +0000 differ
363=== removed file 'resources/images/02/25.png'
364Binary files resources/images/02/25.png 2014-02-10 19:26:40 +0000 and resources/images/02/25.png 1970-01-01 00:00:00 +0000 differ
365=== removed file 'resources/images/02/26.png'
366Binary files resources/images/02/26.png 2014-02-10 19:26:40 +0000 and resources/images/02/26.png 1970-01-01 00:00:00 +0000 differ
367=== removed file 'resources/images/02/27.png'
368Binary files resources/images/02/27.png 2014-02-10 19:26:40 +0000 and resources/images/02/27.png 1970-01-01 00:00:00 +0000 differ
369=== removed file 'resources/images/02/28.png'
370Binary files resources/images/02/28.png 2014-02-10 19:26:40 +0000 and resources/images/02/28.png 1970-01-01 00:00:00 +0000 differ
371=== removed file 'resources/images/02/29.png'
372Binary files resources/images/02/29.png 2014-02-10 19:26:40 +0000 and resources/images/02/29.png 1970-01-01 00:00:00 +0000 differ
373=== removed file 'resources/images/02/3.png'
374Binary files resources/images/02/3.png 2013-12-15 18:17:56 +0000 and resources/images/02/3.png 1970-01-01 00:00:00 +0000 differ
375=== removed file 'resources/images/02/30.png'
376Binary files resources/images/02/30.png 2014-02-10 19:26:40 +0000 and resources/images/02/30.png 1970-01-01 00:00:00 +0000 differ
377=== removed file 'resources/images/02/31.png'
378Binary files resources/images/02/31.png 2014-02-10 19:26:40 +0000 and resources/images/02/31.png 1970-01-01 00:00:00 +0000 differ
379=== removed file 'resources/images/02/32.png'
380Binary files resources/images/02/32.png 2014-02-10 19:26:40 +0000 and resources/images/02/32.png 1970-01-01 00:00:00 +0000 differ
381=== removed file 'resources/images/02/33.png'
382Binary files resources/images/02/33.png 2014-02-10 19:26:40 +0000 and resources/images/02/33.png 1970-01-01 00:00:00 +0000 differ
383=== removed file 'resources/images/02/34.png'
384Binary files resources/images/02/34.png 2014-02-10 19:26:40 +0000 and resources/images/02/34.png 1970-01-01 00:00:00 +0000 differ
385=== removed file 'resources/images/02/35.png'
386Binary files resources/images/02/35.png 2014-02-10 19:26:40 +0000 and resources/images/02/35.png 1970-01-01 00:00:00 +0000 differ
387=== removed file 'resources/images/02/36.png'
388Binary files resources/images/02/36.png 2014-02-10 19:26:40 +0000 and resources/images/02/36.png 1970-01-01 00:00:00 +0000 differ
389=== removed file 'resources/images/02/37.png'
390Binary files resources/images/02/37.png 2014-02-10 19:26:40 +0000 and resources/images/02/37.png 1970-01-01 00:00:00 +0000 differ
391=== removed file 'resources/images/02/38.png'
392Binary files resources/images/02/38.png 2014-02-10 19:26:40 +0000 and resources/images/02/38.png 1970-01-01 00:00:00 +0000 differ
393=== removed file 'resources/images/02/39.png'
394Binary files resources/images/02/39.png 2014-02-10 19:26:40 +0000 and resources/images/02/39.png 1970-01-01 00:00:00 +0000 differ
395=== removed file 'resources/images/02/4.png'
396Binary files resources/images/02/4.png 2013-12-15 18:17:56 +0000 and resources/images/02/4.png 1970-01-01 00:00:00 +0000 differ
397=== removed file 'resources/images/02/40.png'
398Binary files resources/images/02/40.png 2014-02-10 19:26:40 +0000 and resources/images/02/40.png 1970-01-01 00:00:00 +0000 differ
399=== removed file 'resources/images/02/41.png'
400Binary files resources/images/02/41.png 2014-02-10 19:26:40 +0000 and resources/images/02/41.png 1970-01-01 00:00:00 +0000 differ
401=== removed file 'resources/images/02/42.png'
402Binary files resources/images/02/42.png 2014-02-10 19:26:40 +0000 and resources/images/02/42.png 1970-01-01 00:00:00 +0000 differ
403=== removed file 'resources/images/02/43.png'
404Binary files resources/images/02/43.png 2014-02-10 19:26:40 +0000 and resources/images/02/43.png 1970-01-01 00:00:00 +0000 differ
405=== removed file 'resources/images/02/44.png'
406Binary files resources/images/02/44.png 2014-02-10 19:26:40 +0000 and resources/images/02/44.png 1970-01-01 00:00:00 +0000 differ
407=== removed file 'resources/images/02/45.png'
408Binary files resources/images/02/45.png 2014-02-10 19:26:40 +0000 and resources/images/02/45.png 1970-01-01 00:00:00 +0000 differ
409=== removed file 'resources/images/02/46.png'
410Binary files resources/images/02/46.png 2014-02-10 19:26:40 +0000 and resources/images/02/46.png 1970-01-01 00:00:00 +0000 differ
411=== removed file 'resources/images/02/47.png'
412Binary files resources/images/02/47.png 2014-02-10 19:26:40 +0000 and resources/images/02/47.png 1970-01-01 00:00:00 +0000 differ
413=== removed file 'resources/images/02/48.png'
414Binary files resources/images/02/48.png 2014-02-10 19:26:40 +0000 and resources/images/02/48.png 1970-01-01 00:00:00 +0000 differ
415=== removed file 'resources/images/02/49.png'
416Binary files resources/images/02/49.png 2014-02-10 19:26:40 +0000 and resources/images/02/49.png 1970-01-01 00:00:00 +0000 differ
417=== removed file 'resources/images/02/5.png'
418Binary files resources/images/02/5.png 2014-02-10 19:26:40 +0000 and resources/images/02/5.png 1970-01-01 00:00:00 +0000 differ
419=== removed file 'resources/images/02/50.png'
420Binary files resources/images/02/50.png 2014-02-10 19:26:40 +0000 and resources/images/02/50.png 1970-01-01 00:00:00 +0000 differ
421=== removed file 'resources/images/02/6.png'
422Binary files resources/images/02/6.png 2014-02-10 19:26:40 +0000 and resources/images/02/6.png 1970-01-01 00:00:00 +0000 differ
423=== removed file 'resources/images/02/7.png'
424Binary files resources/images/02/7.png 2014-02-10 19:26:40 +0000 and resources/images/02/7.png 1970-01-01 00:00:00 +0000 differ
425=== removed file 'resources/images/02/8.png'
426Binary files resources/images/02/8.png 2014-02-10 19:26:40 +0000 and resources/images/02/8.png 1970-01-01 00:00:00 +0000 differ
427=== removed file 'resources/images/02/9.png'
428Binary files resources/images/02/9.png 2014-02-10 19:26:40 +0000 and resources/images/02/9.png 1970-01-01 00:00:00 +0000 differ
429=== removed directory 'resources/images/03'
430=== removed file 'resources/images/03.png'
431Binary files resources/images/03.png 2013-08-28 13:09:31 +0000 and resources/images/03.png 1970-01-01 00:00:00 +0000 differ
432=== removed file 'resources/images/03/1.png'
433Binary files resources/images/03/1.png 2013-12-15 18:17:56 +0000 and resources/images/03/1.png 1970-01-01 00:00:00 +0000 differ
434=== removed file 'resources/images/03/10.png'
435Binary files resources/images/03/10.png 2014-02-10 19:26:40 +0000 and resources/images/03/10.png 1970-01-01 00:00:00 +0000 differ
436=== removed file 'resources/images/03/11.png'
437Binary files resources/images/03/11.png 2014-02-10 19:26:40 +0000 and resources/images/03/11.png 1970-01-01 00:00:00 +0000 differ
438=== removed file 'resources/images/03/12.png'
439Binary files resources/images/03/12.png 2014-02-10 19:26:40 +0000 and resources/images/03/12.png 1970-01-01 00:00:00 +0000 differ
440=== removed file 'resources/images/03/13.png'
441Binary files resources/images/03/13.png 2014-02-10 19:26:40 +0000 and resources/images/03/13.png 1970-01-01 00:00:00 +0000 differ
442=== removed file 'resources/images/03/14.png'
443Binary files resources/images/03/14.png 2014-02-10 19:26:40 +0000 and resources/images/03/14.png 1970-01-01 00:00:00 +0000 differ
444=== removed file 'resources/images/03/15.png'
445Binary files resources/images/03/15.png 2014-02-10 19:26:40 +0000 and resources/images/03/15.png 1970-01-01 00:00:00 +0000 differ
446=== removed file 'resources/images/03/16.png'
447Binary files resources/images/03/16.png 2014-02-10 19:26:40 +0000 and resources/images/03/16.png 1970-01-01 00:00:00 +0000 differ
448=== removed file 'resources/images/03/17.png'
449Binary files resources/images/03/17.png 2014-02-10 19:26:40 +0000 and resources/images/03/17.png 1970-01-01 00:00:00 +0000 differ
450=== removed file 'resources/images/03/18.png'
451Binary files resources/images/03/18.png 2014-02-10 19:26:40 +0000 and resources/images/03/18.png 1970-01-01 00:00:00 +0000 differ
452=== removed file 'resources/images/03/19.png'
453Binary files resources/images/03/19.png 2014-02-10 19:26:40 +0000 and resources/images/03/19.png 1970-01-01 00:00:00 +0000 differ
454=== removed file 'resources/images/03/2.png'
455Binary files resources/images/03/2.png 2014-02-10 19:26:40 +0000 and resources/images/03/2.png 1970-01-01 00:00:00 +0000 differ
456=== removed file 'resources/images/03/20.png'
457Binary files resources/images/03/20.png 2014-02-10 19:26:40 +0000 and resources/images/03/20.png 1970-01-01 00:00:00 +0000 differ
458=== removed file 'resources/images/03/21.png'
459Binary files resources/images/03/21.png 2014-02-10 19:26:40 +0000 and resources/images/03/21.png 1970-01-01 00:00:00 +0000 differ
460=== removed file 'resources/images/03/22.png'
461Binary files resources/images/03/22.png 2014-02-10 19:26:40 +0000 and resources/images/03/22.png 1970-01-01 00:00:00 +0000 differ
462=== removed file 'resources/images/03/23.png'
463Binary files resources/images/03/23.png 2014-02-10 19:26:40 +0000 and resources/images/03/23.png 1970-01-01 00:00:00 +0000 differ
464=== removed file 'resources/images/03/24.png'
465Binary files resources/images/03/24.png 2014-02-10 19:26:40 +0000 and resources/images/03/24.png 1970-01-01 00:00:00 +0000 differ
466=== removed file 'resources/images/03/25.png'
467Binary files resources/images/03/25.png 2014-02-10 19:26:40 +0000 and resources/images/03/25.png 1970-01-01 00:00:00 +0000 differ
468=== removed file 'resources/images/03/26.png'
469Binary files resources/images/03/26.png 2014-02-10 19:26:40 +0000 and resources/images/03/26.png 1970-01-01 00:00:00 +0000 differ
470=== removed file 'resources/images/03/27.png'
471Binary files resources/images/03/27.png 2014-02-10 19:26:40 +0000 and resources/images/03/27.png 1970-01-01 00:00:00 +0000 differ
472=== removed file 'resources/images/03/28.png'
473Binary files resources/images/03/28.png 2014-02-10 19:26:40 +0000 and resources/images/03/28.png 1970-01-01 00:00:00 +0000 differ
474=== removed file 'resources/images/03/29.png'
475Binary files resources/images/03/29.png 2014-02-10 19:26:40 +0000 and resources/images/03/29.png 1970-01-01 00:00:00 +0000 differ
476=== removed file 'resources/images/03/3.png'
477Binary files resources/images/03/3.png 2014-02-10 19:26:40 +0000 and resources/images/03/3.png 1970-01-01 00:00:00 +0000 differ
478=== removed file 'resources/images/03/30.png'
479Binary files resources/images/03/30.png 2014-02-10 19:26:40 +0000 and resources/images/03/30.png 1970-01-01 00:00:00 +0000 differ
480=== removed file 'resources/images/03/31.png'
481Binary files resources/images/03/31.png 2014-02-10 19:26:40 +0000 and resources/images/03/31.png 1970-01-01 00:00:00 +0000 differ
482=== removed file 'resources/images/03/32.png'
483Binary files resources/images/03/32.png 2014-02-10 19:26:40 +0000 and resources/images/03/32.png 1970-01-01 00:00:00 +0000 differ
484=== removed file 'resources/images/03/33.png'
485Binary files resources/images/03/33.png 2014-02-10 19:26:40 +0000 and resources/images/03/33.png 1970-01-01 00:00:00 +0000 differ
486=== removed file 'resources/images/03/34.png'
487Binary files resources/images/03/34.png 2014-02-10 19:26:40 +0000 and resources/images/03/34.png 1970-01-01 00:00:00 +0000 differ
488=== removed file 'resources/images/03/35.png'
489Binary files resources/images/03/35.png 2014-02-10 19:26:40 +0000 and resources/images/03/35.png 1970-01-01 00:00:00 +0000 differ
490=== removed file 'resources/images/03/36.png'
491Binary files resources/images/03/36.png 2014-02-10 19:26:40 +0000 and resources/images/03/36.png 1970-01-01 00:00:00 +0000 differ
492=== removed file 'resources/images/03/37.png'
493Binary files resources/images/03/37.png 2014-02-10 19:26:40 +0000 and resources/images/03/37.png 1970-01-01 00:00:00 +0000 differ
494=== removed file 'resources/images/03/38.png'
495Binary files resources/images/03/38.png 2014-02-10 19:26:40 +0000 and resources/images/03/38.png 1970-01-01 00:00:00 +0000 differ
496=== removed file 'resources/images/03/39.png'
497Binary files resources/images/03/39.png 2014-02-10 19:26:40 +0000 and resources/images/03/39.png 1970-01-01 00:00:00 +0000 differ
498=== removed file 'resources/images/03/4.png'
499Binary files resources/images/03/4.png 2014-02-10 19:26:40 +0000 and resources/images/03/4.png 1970-01-01 00:00:00 +0000 differ
500=== removed file 'resources/images/03/40.png'
501Binary files resources/images/03/40.png 2014-02-10 19:26:40 +0000 and resources/images/03/40.png 1970-01-01 00:00:00 +0000 differ
502=== removed file 'resources/images/03/41.png'
503Binary files resources/images/03/41.png 2014-02-10 19:26:40 +0000 and resources/images/03/41.png 1970-01-01 00:00:00 +0000 differ
504=== removed file 'resources/images/03/42.png'
505Binary files resources/images/03/42.png 2014-02-10 19:26:40 +0000 and resources/images/03/42.png 1970-01-01 00:00:00 +0000 differ
506=== removed file 'resources/images/03/43.png'
507Binary files resources/images/03/43.png 2014-02-10 19:26:40 +0000 and resources/images/03/43.png 1970-01-01 00:00:00 +0000 differ
508=== removed file 'resources/images/03/44.png'
509Binary files resources/images/03/44.png 2014-02-10 19:26:40 +0000 and resources/images/03/44.png 1970-01-01 00:00:00 +0000 differ
510=== removed file 'resources/images/03/45.png'
511Binary files resources/images/03/45.png 2014-02-10 19:26:40 +0000 and resources/images/03/45.png 1970-01-01 00:00:00 +0000 differ
512=== removed file 'resources/images/03/46.png'
513Binary files resources/images/03/46.png 2014-02-10 19:26:40 +0000 and resources/images/03/46.png 1970-01-01 00:00:00 +0000 differ
514=== removed file 'resources/images/03/47.png'
515Binary files resources/images/03/47.png 2014-02-10 19:26:40 +0000 and resources/images/03/47.png 1970-01-01 00:00:00 +0000 differ
516=== removed file 'resources/images/03/48.png'
517Binary files resources/images/03/48.png 2014-02-10 19:26:40 +0000 and resources/images/03/48.png 1970-01-01 00:00:00 +0000 differ
518=== removed file 'resources/images/03/49.png'
519Binary files resources/images/03/49.png 2014-02-10 19:26:40 +0000 and resources/images/03/49.png 1970-01-01 00:00:00 +0000 differ
520=== removed file 'resources/images/03/5.png'
521Binary files resources/images/03/5.png 2014-02-10 19:26:40 +0000 and resources/images/03/5.png 1970-01-01 00:00:00 +0000 differ
522=== removed file 'resources/images/03/50.png'
523Binary files resources/images/03/50.png 2014-02-10 19:26:40 +0000 and resources/images/03/50.png 1970-01-01 00:00:00 +0000 differ
524=== removed file 'resources/images/03/6.png'
525Binary files resources/images/03/6.png 2014-02-10 19:26:40 +0000 and resources/images/03/6.png 1970-01-01 00:00:00 +0000 differ
526=== removed file 'resources/images/03/7.png'
527Binary files resources/images/03/7.png 2014-02-10 19:26:40 +0000 and resources/images/03/7.png 1970-01-01 00:00:00 +0000 differ
528=== removed file 'resources/images/03/8.png'
529Binary files resources/images/03/8.png 2014-02-10 19:26:40 +0000 and resources/images/03/8.png 1970-01-01 00:00:00 +0000 differ
530=== removed file 'resources/images/03/9.png'
531Binary files resources/images/03/9.png 2014-02-10 19:26:40 +0000 and resources/images/03/9.png 1970-01-01 00:00:00 +0000 differ
532=== removed directory 'resources/images/04'
533=== removed file 'resources/images/04.png'
534Binary files resources/images/04.png 2013-08-28 13:09:31 +0000 and resources/images/04.png 1970-01-01 00:00:00 +0000 differ
535=== removed file 'resources/images/04/1.png'
536Binary files resources/images/04/1.png 2013-12-15 18:17:56 +0000 and resources/images/04/1.png 1970-01-01 00:00:00 +0000 differ
537=== removed file 'resources/images/04/10.png'
538Binary files resources/images/04/10.png 2014-02-10 19:26:40 +0000 and resources/images/04/10.png 1970-01-01 00:00:00 +0000 differ
539=== removed file 'resources/images/04/11.png'
540Binary files resources/images/04/11.png 2014-02-10 19:26:40 +0000 and resources/images/04/11.png 1970-01-01 00:00:00 +0000 differ
541=== removed file 'resources/images/04/12.png'
542Binary files resources/images/04/12.png 2014-02-10 19:26:40 +0000 and resources/images/04/12.png 1970-01-01 00:00:00 +0000 differ
543=== removed file 'resources/images/04/13.png'
544Binary files resources/images/04/13.png 2014-02-10 19:26:40 +0000 and resources/images/04/13.png 1970-01-01 00:00:00 +0000 differ
545=== removed file 'resources/images/04/14.png'
546Binary files resources/images/04/14.png 2014-02-10 19:26:40 +0000 and resources/images/04/14.png 1970-01-01 00:00:00 +0000 differ
547=== removed file 'resources/images/04/15.png'
548Binary files resources/images/04/15.png 2014-02-10 19:26:40 +0000 and resources/images/04/15.png 1970-01-01 00:00:00 +0000 differ
549=== removed file 'resources/images/04/16.png'
550Binary files resources/images/04/16.png 2014-02-10 19:26:40 +0000 and resources/images/04/16.png 1970-01-01 00:00:00 +0000 differ
551=== removed file 'resources/images/04/17.png'
552Binary files resources/images/04/17.png 2014-02-10 19:26:40 +0000 and resources/images/04/17.png 1970-01-01 00:00:00 +0000 differ
553=== removed file 'resources/images/04/18.png'
554Binary files resources/images/04/18.png 2014-02-10 19:26:40 +0000 and resources/images/04/18.png 1970-01-01 00:00:00 +0000 differ
555=== removed file 'resources/images/04/19.png'
556Binary files resources/images/04/19.png 2014-02-10 19:26:40 +0000 and resources/images/04/19.png 1970-01-01 00:00:00 +0000 differ
557=== removed file 'resources/images/04/2.png'
558Binary files resources/images/04/2.png 2014-02-10 19:26:40 +0000 and resources/images/04/2.png 1970-01-01 00:00:00 +0000 differ
559=== removed file 'resources/images/04/20.png'
560Binary files resources/images/04/20.png 2014-02-10 19:26:40 +0000 and resources/images/04/20.png 1970-01-01 00:00:00 +0000 differ
561=== removed file 'resources/images/04/21.png'
562Binary files resources/images/04/21.png 2014-02-10 19:26:40 +0000 and resources/images/04/21.png 1970-01-01 00:00:00 +0000 differ
563=== removed file 'resources/images/04/22.png'
564Binary files resources/images/04/22.png 2014-02-10 19:26:40 +0000 and resources/images/04/22.png 1970-01-01 00:00:00 +0000 differ
565=== removed file 'resources/images/04/23.png'
566Binary files resources/images/04/23.png 2014-02-10 19:26:40 +0000 and resources/images/04/23.png 1970-01-01 00:00:00 +0000 differ
567=== removed file 'resources/images/04/24.png'
568Binary files resources/images/04/24.png 2014-02-10 19:26:40 +0000 and resources/images/04/24.png 1970-01-01 00:00:00 +0000 differ
569=== removed file 'resources/images/04/25.png'
570Binary files resources/images/04/25.png 2014-02-10 19:26:40 +0000 and resources/images/04/25.png 1970-01-01 00:00:00 +0000 differ
571=== removed file 'resources/images/04/26.png'
572Binary files resources/images/04/26.png 2014-02-10 19:26:40 +0000 and resources/images/04/26.png 1970-01-01 00:00:00 +0000 differ
573=== removed file 'resources/images/04/27.png'
574Binary files resources/images/04/27.png 2014-02-10 19:26:40 +0000 and resources/images/04/27.png 1970-01-01 00:00:00 +0000 differ
575=== removed file 'resources/images/04/28.png'
576Binary files resources/images/04/28.png 2014-02-10 19:26:40 +0000 and resources/images/04/28.png 1970-01-01 00:00:00 +0000 differ
577=== removed file 'resources/images/04/29.png'
578Binary files resources/images/04/29.png 2014-02-10 19:26:40 +0000 and resources/images/04/29.png 1970-01-01 00:00:00 +0000 differ
579=== removed file 'resources/images/04/3.png'
580Binary files resources/images/04/3.png 2014-02-10 19:26:40 +0000 and resources/images/04/3.png 1970-01-01 00:00:00 +0000 differ
581=== removed file 'resources/images/04/30.png'
582Binary files resources/images/04/30.png 2014-02-10 19:26:40 +0000 and resources/images/04/30.png 1970-01-01 00:00:00 +0000 differ
583=== removed file 'resources/images/04/31.png'
584Binary files resources/images/04/31.png 2014-02-10 19:26:40 +0000 and resources/images/04/31.png 1970-01-01 00:00:00 +0000 differ
585=== removed file 'resources/images/04/32.png'
586Binary files resources/images/04/32.png 2014-02-10 19:26:40 +0000 and resources/images/04/32.png 1970-01-01 00:00:00 +0000 differ
587=== removed file 'resources/images/04/33.png'
588Binary files resources/images/04/33.png 2014-02-10 19:26:40 +0000 and resources/images/04/33.png 1970-01-01 00:00:00 +0000 differ
589=== removed file 'resources/images/04/34.png'
590Binary files resources/images/04/34.png 2014-02-10 19:26:40 +0000 and resources/images/04/34.png 1970-01-01 00:00:00 +0000 differ
591=== removed file 'resources/images/04/35.png'
592Binary files resources/images/04/35.png 2014-02-10 19:26:40 +0000 and resources/images/04/35.png 1970-01-01 00:00:00 +0000 differ
593=== removed file 'resources/images/04/36.png'
594Binary files resources/images/04/36.png 2014-02-10 19:26:40 +0000 and resources/images/04/36.png 1970-01-01 00:00:00 +0000 differ
595=== removed file 'resources/images/04/37.png'
596Binary files resources/images/04/37.png 2014-02-10 19:26:40 +0000 and resources/images/04/37.png 1970-01-01 00:00:00 +0000 differ
597=== removed file 'resources/images/04/38.png'
598Binary files resources/images/04/38.png 2014-02-10 19:26:40 +0000 and resources/images/04/38.png 1970-01-01 00:00:00 +0000 differ
599=== removed file 'resources/images/04/39.png'
600Binary files resources/images/04/39.png 2014-02-10 19:26:40 +0000 and resources/images/04/39.png 1970-01-01 00:00:00 +0000 differ
601=== removed file 'resources/images/04/4.png'
602Binary files resources/images/04/4.png 2014-02-10 19:26:40 +0000 and resources/images/04/4.png 1970-01-01 00:00:00 +0000 differ
603=== removed file 'resources/images/04/40.png'
604Binary files resources/images/04/40.png 2014-02-10 19:26:40 +0000 and resources/images/04/40.png 1970-01-01 00:00:00 +0000 differ
605=== removed file 'resources/images/04/41.png'
606Binary files resources/images/04/41.png 2014-02-10 19:26:40 +0000 and resources/images/04/41.png 1970-01-01 00:00:00 +0000 differ
607=== removed file 'resources/images/04/42.png'
608Binary files resources/images/04/42.png 2014-02-10 19:26:40 +0000 and resources/images/04/42.png 1970-01-01 00:00:00 +0000 differ
609=== removed file 'resources/images/04/43.png'
610Binary files resources/images/04/43.png 2014-02-10 19:26:40 +0000 and resources/images/04/43.png 1970-01-01 00:00:00 +0000 differ
611=== removed file 'resources/images/04/44.png'
612Binary files resources/images/04/44.png 2014-02-10 19:26:40 +0000 and resources/images/04/44.png 1970-01-01 00:00:00 +0000 differ
613=== removed file 'resources/images/04/45.png'
614Binary files resources/images/04/45.png 2014-02-10 19:26:40 +0000 and resources/images/04/45.png 1970-01-01 00:00:00 +0000 differ
615=== removed file 'resources/images/04/46.png'
616Binary files resources/images/04/46.png 2014-02-10 19:26:40 +0000 and resources/images/04/46.png 1970-01-01 00:00:00 +0000 differ
617=== removed file 'resources/images/04/47.png'
618Binary files resources/images/04/47.png 2014-02-10 19:26:40 +0000 and resources/images/04/47.png 1970-01-01 00:00:00 +0000 differ
619=== removed file 'resources/images/04/48.png'
620Binary files resources/images/04/48.png 2014-02-10 19:26:40 +0000 and resources/images/04/48.png 1970-01-01 00:00:00 +0000 differ
621=== removed file 'resources/images/04/49.png'
622Binary files resources/images/04/49.png 2014-02-10 19:26:40 +0000 and resources/images/04/49.png 1970-01-01 00:00:00 +0000 differ
623=== removed file 'resources/images/04/5.png'
624Binary files resources/images/04/5.png 2014-02-10 19:26:40 +0000 and resources/images/04/5.png 1970-01-01 00:00:00 +0000 differ
625=== removed file 'resources/images/04/50.png'
626Binary files resources/images/04/50.png 2014-02-10 19:26:40 +0000 and resources/images/04/50.png 1970-01-01 00:00:00 +0000 differ
627=== removed file 'resources/images/04/6.png'
628Binary files resources/images/04/6.png 2014-02-10 19:26:40 +0000 and resources/images/04/6.png 1970-01-01 00:00:00 +0000 differ
629=== removed file 'resources/images/04/7.png'
630Binary files resources/images/04/7.png 2014-02-10 19:26:40 +0000 and resources/images/04/7.png 1970-01-01 00:00:00 +0000 differ
631=== removed file 'resources/images/04/8.png'
632Binary files resources/images/04/8.png 2014-02-10 19:26:40 +0000 and resources/images/04/8.png 1970-01-01 00:00:00 +0000 differ
633=== removed file 'resources/images/04/9.png'
634Binary files resources/images/04/9.png 2014-02-10 19:26:40 +0000 and resources/images/04/9.png 1970-01-01 00:00:00 +0000 differ
635=== removed directory 'resources/images/05'
636=== removed file 'resources/images/05.png'
637Binary files resources/images/05.png 2013-08-28 13:09:31 +0000 and resources/images/05.png 1970-01-01 00:00:00 +0000 differ
638=== removed file 'resources/images/05/1.png'
639Binary files resources/images/05/1.png 2014-02-10 19:26:40 +0000 and resources/images/05/1.png 1970-01-01 00:00:00 +0000 differ
640=== removed file 'resources/images/05/10.png'
641Binary files resources/images/05/10.png 2014-02-10 19:26:40 +0000 and resources/images/05/10.png 1970-01-01 00:00:00 +0000 differ
642=== removed file 'resources/images/05/11.png'
643Binary files resources/images/05/11.png 2014-02-10 19:26:40 +0000 and resources/images/05/11.png 1970-01-01 00:00:00 +0000 differ
644=== removed file 'resources/images/05/12.png'
645Binary files resources/images/05/12.png 2014-02-10 19:26:40 +0000 and resources/images/05/12.png 1970-01-01 00:00:00 +0000 differ
646=== removed file 'resources/images/05/13.png'
647Binary files resources/images/05/13.png 2014-02-10 19:26:40 +0000 and resources/images/05/13.png 1970-01-01 00:00:00 +0000 differ
648=== removed file 'resources/images/05/14.png'
649Binary files resources/images/05/14.png 2014-02-10 19:26:40 +0000 and resources/images/05/14.png 1970-01-01 00:00:00 +0000 differ
650=== removed file 'resources/images/05/15.png'
651Binary files resources/images/05/15.png 2014-02-10 19:26:40 +0000 and resources/images/05/15.png 1970-01-01 00:00:00 +0000 differ
652=== removed file 'resources/images/05/16.png'
653Binary files resources/images/05/16.png 2014-02-10 19:26:40 +0000 and resources/images/05/16.png 1970-01-01 00:00:00 +0000 differ
654=== removed file 'resources/images/05/17.png'
655Binary files resources/images/05/17.png 2014-02-10 19:26:40 +0000 and resources/images/05/17.png 1970-01-01 00:00:00 +0000 differ
656=== removed file 'resources/images/05/18.png'
657Binary files resources/images/05/18.png 2014-02-10 19:26:40 +0000 and resources/images/05/18.png 1970-01-01 00:00:00 +0000 differ
658=== removed file 'resources/images/05/19.png'
659Binary files resources/images/05/19.png 2014-02-10 19:26:40 +0000 and resources/images/05/19.png 1970-01-01 00:00:00 +0000 differ
660=== removed file 'resources/images/05/2.png'
661Binary files resources/images/05/2.png 2014-02-10 19:26:40 +0000 and resources/images/05/2.png 1970-01-01 00:00:00 +0000 differ
662=== removed file 'resources/images/05/20.png'
663Binary files resources/images/05/20.png 2014-02-10 19:26:40 +0000 and resources/images/05/20.png 1970-01-01 00:00:00 +0000 differ
664=== removed file 'resources/images/05/21.png'
665Binary files resources/images/05/21.png 2014-02-10 19:26:40 +0000 and resources/images/05/21.png 1970-01-01 00:00:00 +0000 differ
666=== removed file 'resources/images/05/22.png'
667Binary files resources/images/05/22.png 2014-02-10 19:26:40 +0000 and resources/images/05/22.png 1970-01-01 00:00:00 +0000 differ
668=== removed file 'resources/images/05/23.png'
669Binary files resources/images/05/23.png 2014-02-10 19:26:40 +0000 and resources/images/05/23.png 1970-01-01 00:00:00 +0000 differ
670=== removed file 'resources/images/05/24.png'
671Binary files resources/images/05/24.png 2014-02-10 19:26:40 +0000 and resources/images/05/24.png 1970-01-01 00:00:00 +0000 differ
672=== removed file 'resources/images/05/25.png'
673Binary files resources/images/05/25.png 2014-02-10 19:26:40 +0000 and resources/images/05/25.png 1970-01-01 00:00:00 +0000 differ
674=== removed file 'resources/images/05/26.png'
675Binary files resources/images/05/26.png 2014-02-10 19:26:40 +0000 and resources/images/05/26.png 1970-01-01 00:00:00 +0000 differ
676=== removed file 'resources/images/05/27.png'
677Binary files resources/images/05/27.png 2014-02-10 19:26:40 +0000 and resources/images/05/27.png 1970-01-01 00:00:00 +0000 differ
678=== removed file 'resources/images/05/28.png'
679Binary files resources/images/05/28.png 2014-02-10 19:26:40 +0000 and resources/images/05/28.png 1970-01-01 00:00:00 +0000 differ
680=== removed file 'resources/images/05/29.png'
681Binary files resources/images/05/29.png 2014-02-10 19:26:40 +0000 and resources/images/05/29.png 1970-01-01 00:00:00 +0000 differ
682=== removed file 'resources/images/05/3.png'
683Binary files resources/images/05/3.png 2014-02-10 19:26:40 +0000 and resources/images/05/3.png 1970-01-01 00:00:00 +0000 differ
684=== removed file 'resources/images/05/30.png'
685Binary files resources/images/05/30.png 2014-02-10 19:26:40 +0000 and resources/images/05/30.png 1970-01-01 00:00:00 +0000 differ
686=== removed file 'resources/images/05/31.png'
687Binary files resources/images/05/31.png 2014-02-10 19:26:40 +0000 and resources/images/05/31.png 1970-01-01 00:00:00 +0000 differ
688=== removed file 'resources/images/05/32.png'
689Binary files resources/images/05/32.png 2014-02-10 19:26:40 +0000 and resources/images/05/32.png 1970-01-01 00:00:00 +0000 differ
690=== removed file 'resources/images/05/33.png'
691Binary files resources/images/05/33.png 2014-02-10 19:26:40 +0000 and resources/images/05/33.png 1970-01-01 00:00:00 +0000 differ
692=== removed file 'resources/images/05/34.png'
693Binary files resources/images/05/34.png 2014-02-10 19:26:40 +0000 and resources/images/05/34.png 1970-01-01 00:00:00 +0000 differ
694=== removed file 'resources/images/05/35.png'
695Binary files resources/images/05/35.png 2014-02-10 19:26:40 +0000 and resources/images/05/35.png 1970-01-01 00:00:00 +0000 differ
696=== removed file 'resources/images/05/36.png'
697Binary files resources/images/05/36.png 2014-02-10 19:26:40 +0000 and resources/images/05/36.png 1970-01-01 00:00:00 +0000 differ
698=== removed file 'resources/images/05/37.png'
699Binary files resources/images/05/37.png 2014-02-10 19:26:40 +0000 and resources/images/05/37.png 1970-01-01 00:00:00 +0000 differ
700=== removed file 'resources/images/05/38.png'
701Binary files resources/images/05/38.png 2014-02-10 19:26:40 +0000 and resources/images/05/38.png 1970-01-01 00:00:00 +0000 differ
702=== removed file 'resources/images/05/39.png'
703Binary files resources/images/05/39.png 2014-02-10 19:26:40 +0000 and resources/images/05/39.png 1970-01-01 00:00:00 +0000 differ
704=== removed file 'resources/images/05/4.png'
705Binary files resources/images/05/4.png 2014-02-10 19:26:40 +0000 and resources/images/05/4.png 1970-01-01 00:00:00 +0000 differ
706=== removed file 'resources/images/05/40.png'
707Binary files resources/images/05/40.png 2014-02-10 19:26:40 +0000 and resources/images/05/40.png 1970-01-01 00:00:00 +0000 differ
708=== removed file 'resources/images/05/41.png'
709Binary files resources/images/05/41.png 2014-02-10 19:26:40 +0000 and resources/images/05/41.png 1970-01-01 00:00:00 +0000 differ
710=== removed file 'resources/images/05/42.png'
711Binary files resources/images/05/42.png 2014-02-10 19:26:40 +0000 and resources/images/05/42.png 1970-01-01 00:00:00 +0000 differ
712=== removed file 'resources/images/05/43.png'
713Binary files resources/images/05/43.png 2014-02-10 19:26:40 +0000 and resources/images/05/43.png 1970-01-01 00:00:00 +0000 differ
714=== removed file 'resources/images/05/44.png'
715Binary files resources/images/05/44.png 2014-02-10 19:26:40 +0000 and resources/images/05/44.png 1970-01-01 00:00:00 +0000 differ
716=== removed file 'resources/images/05/45.png'
717Binary files resources/images/05/45.png 2014-02-10 19:26:40 +0000 and resources/images/05/45.png 1970-01-01 00:00:00 +0000 differ
718=== removed file 'resources/images/05/46.png'
719Binary files resources/images/05/46.png 2014-02-10 19:26:40 +0000 and resources/images/05/46.png 1970-01-01 00:00:00 +0000 differ
720=== removed file 'resources/images/05/47.png'
721Binary files resources/images/05/47.png 2014-02-10 19:26:40 +0000 and resources/images/05/47.png 1970-01-01 00:00:00 +0000 differ
722=== removed file 'resources/images/05/48.png'
723Binary files resources/images/05/48.png 2014-02-10 19:26:40 +0000 and resources/images/05/48.png 1970-01-01 00:00:00 +0000 differ
724=== removed file 'resources/images/05/49.png'
725Binary files resources/images/05/49.png 2014-02-10 19:26:40 +0000 and resources/images/05/49.png 1970-01-01 00:00:00 +0000 differ
726=== removed file 'resources/images/05/5.png'
727Binary files resources/images/05/5.png 2014-02-10 19:26:40 +0000 and resources/images/05/5.png 1970-01-01 00:00:00 +0000 differ
728=== removed file 'resources/images/05/50.png'
729Binary files resources/images/05/50.png 2014-02-10 19:26:40 +0000 and resources/images/05/50.png 1970-01-01 00:00:00 +0000 differ
730=== removed file 'resources/images/05/6.png'
731Binary files resources/images/05/6.png 2014-02-10 19:26:40 +0000 and resources/images/05/6.png 1970-01-01 00:00:00 +0000 differ
732=== removed file 'resources/images/05/7.png'
733Binary files resources/images/05/7.png 2014-02-10 19:26:40 +0000 and resources/images/05/7.png 1970-01-01 00:00:00 +0000 differ
734=== removed file 'resources/images/05/8.png'
735Binary files resources/images/05/8.png 2014-02-10 19:26:40 +0000 and resources/images/05/8.png 1970-01-01 00:00:00 +0000 differ
736=== removed file 'resources/images/05/9.png'
737Binary files resources/images/05/9.png 2014-02-10 19:26:40 +0000 and resources/images/05/9.png 1970-01-01 00:00:00 +0000 differ
738=== removed directory 'resources/images/06'
739=== removed file 'resources/images/06.png'
740Binary files resources/images/06.png 2013-08-28 13:09:31 +0000 and resources/images/06.png 1970-01-01 00:00:00 +0000 differ
741=== removed file 'resources/images/06/1.png'
742Binary files resources/images/06/1.png 2013-12-15 18:17:56 +0000 and resources/images/06/1.png 1970-01-01 00:00:00 +0000 differ
743=== removed file 'resources/images/06/10.png'
744Binary files resources/images/06/10.png 2014-02-10 19:26:40 +0000 and resources/images/06/10.png 1970-01-01 00:00:00 +0000 differ
745=== removed file 'resources/images/06/11.png'
746Binary files resources/images/06/11.png 2014-02-10 19:26:40 +0000 and resources/images/06/11.png 1970-01-01 00:00:00 +0000 differ
747=== removed file 'resources/images/06/12.png'
748Binary files resources/images/06/12.png 2014-02-10 19:26:40 +0000 and resources/images/06/12.png 1970-01-01 00:00:00 +0000 differ
749=== removed file 'resources/images/06/13.png'
750Binary files resources/images/06/13.png 2014-02-10 19:26:40 +0000 and resources/images/06/13.png 1970-01-01 00:00:00 +0000 differ
751=== removed file 'resources/images/06/14.png'
752Binary files resources/images/06/14.png 2014-02-10 19:26:40 +0000 and resources/images/06/14.png 1970-01-01 00:00:00 +0000 differ
753=== removed file 'resources/images/06/15.png'
754Binary files resources/images/06/15.png 2014-02-10 19:26:40 +0000 and resources/images/06/15.png 1970-01-01 00:00:00 +0000 differ
755=== removed file 'resources/images/06/16.png'
756Binary files resources/images/06/16.png 2014-02-10 19:26:40 +0000 and resources/images/06/16.png 1970-01-01 00:00:00 +0000 differ
757=== removed file 'resources/images/06/17.png'
758Binary files resources/images/06/17.png 2014-02-10 19:26:40 +0000 and resources/images/06/17.png 1970-01-01 00:00:00 +0000 differ
759=== removed file 'resources/images/06/18.png'
760Binary files resources/images/06/18.png 2014-02-10 19:26:40 +0000 and resources/images/06/18.png 1970-01-01 00:00:00 +0000 differ
761=== removed file 'resources/images/06/19.png'
762Binary files resources/images/06/19.png 2014-02-10 19:26:40 +0000 and resources/images/06/19.png 1970-01-01 00:00:00 +0000 differ
763=== removed file 'resources/images/06/2.png'
764Binary files resources/images/06/2.png 2014-02-10 19:26:40 +0000 and resources/images/06/2.png 1970-01-01 00:00:00 +0000 differ
765=== removed file 'resources/images/06/20.png'
766Binary files resources/images/06/20.png 2014-02-10 19:26:40 +0000 and resources/images/06/20.png 1970-01-01 00:00:00 +0000 differ
767=== removed file 'resources/images/06/21.png'
768Binary files resources/images/06/21.png 2014-02-10 19:26:40 +0000 and resources/images/06/21.png 1970-01-01 00:00:00 +0000 differ
769=== removed file 'resources/images/06/22.png'
770Binary files resources/images/06/22.png 2014-02-10 19:26:40 +0000 and resources/images/06/22.png 1970-01-01 00:00:00 +0000 differ
771=== removed file 'resources/images/06/23.png'
772Binary files resources/images/06/23.png 2014-02-10 19:26:40 +0000 and resources/images/06/23.png 1970-01-01 00:00:00 +0000 differ
773=== removed file 'resources/images/06/24.png'
774Binary files resources/images/06/24.png 2014-02-10 19:26:40 +0000 and resources/images/06/24.png 1970-01-01 00:00:00 +0000 differ
775=== removed file 'resources/images/06/25.png'
776Binary files resources/images/06/25.png 2014-02-10 19:26:40 +0000 and resources/images/06/25.png 1970-01-01 00:00:00 +0000 differ
777=== removed file 'resources/images/06/26.png'
778Binary files resources/images/06/26.png 2014-02-10 19:26:40 +0000 and resources/images/06/26.png 1970-01-01 00:00:00 +0000 differ
779=== removed file 'resources/images/06/27.png'
780Binary files resources/images/06/27.png 2014-02-10 19:26:40 +0000 and resources/images/06/27.png 1970-01-01 00:00:00 +0000 differ
781=== removed file 'resources/images/06/28.png'
782Binary files resources/images/06/28.png 2014-02-10 19:26:40 +0000 and resources/images/06/28.png 1970-01-01 00:00:00 +0000 differ
783=== removed file 'resources/images/06/29.png'
784Binary files resources/images/06/29.png 2014-02-10 19:26:40 +0000 and resources/images/06/29.png 1970-01-01 00:00:00 +0000 differ
785=== removed file 'resources/images/06/3.png'
786Binary files resources/images/06/3.png 2014-02-10 19:26:40 +0000 and resources/images/06/3.png 1970-01-01 00:00:00 +0000 differ
787=== removed file 'resources/images/06/30.png'
788Binary files resources/images/06/30.png 2014-02-10 19:26:40 +0000 and resources/images/06/30.png 1970-01-01 00:00:00 +0000 differ
789=== removed file 'resources/images/06/31.png'
790Binary files resources/images/06/31.png 2014-02-10 19:26:40 +0000 and resources/images/06/31.png 1970-01-01 00:00:00 +0000 differ
791=== removed file 'resources/images/06/32.png'
792Binary files resources/images/06/32.png 2014-02-10 19:26:40 +0000 and resources/images/06/32.png 1970-01-01 00:00:00 +0000 differ
793=== removed file 'resources/images/06/33.png'
794Binary files resources/images/06/33.png 2014-02-10 19:26:40 +0000 and resources/images/06/33.png 1970-01-01 00:00:00 +0000 differ
795=== removed file 'resources/images/06/34.png'
796Binary files resources/images/06/34.png 2014-02-10 19:26:40 +0000 and resources/images/06/34.png 1970-01-01 00:00:00 +0000 differ
797=== removed file 'resources/images/06/35.png'
798Binary files resources/images/06/35.png 2014-02-10 19:26:40 +0000 and resources/images/06/35.png 1970-01-01 00:00:00 +0000 differ
799=== removed file 'resources/images/06/36.png'
800Binary files resources/images/06/36.png 2014-02-10 19:26:40 +0000 and resources/images/06/36.png 1970-01-01 00:00:00 +0000 differ
801=== removed file 'resources/images/06/37.png'
802Binary files resources/images/06/37.png 2014-02-10 19:26:40 +0000 and resources/images/06/37.png 1970-01-01 00:00:00 +0000 differ
803=== removed file 'resources/images/06/38.png'
804Binary files resources/images/06/38.png 2014-02-10 19:26:40 +0000 and resources/images/06/38.png 1970-01-01 00:00:00 +0000 differ
805=== removed file 'resources/images/06/39.png'
806Binary files resources/images/06/39.png 2014-02-10 19:26:40 +0000 and resources/images/06/39.png 1970-01-01 00:00:00 +0000 differ
807=== removed file 'resources/images/06/4.png'
808Binary files resources/images/06/4.png 2014-02-10 19:26:40 +0000 and resources/images/06/4.png 1970-01-01 00:00:00 +0000 differ
809=== removed file 'resources/images/06/40.png'
810Binary files resources/images/06/40.png 2014-02-10 19:26:40 +0000 and resources/images/06/40.png 1970-01-01 00:00:00 +0000 differ
811=== removed file 'resources/images/06/41.png'
812Binary files resources/images/06/41.png 2014-02-10 19:26:40 +0000 and resources/images/06/41.png 1970-01-01 00:00:00 +0000 differ
813=== removed file 'resources/images/06/42.png'
814Binary files resources/images/06/42.png 2014-02-10 19:26:40 +0000 and resources/images/06/42.png 1970-01-01 00:00:00 +0000 differ
815=== removed file 'resources/images/06/43.png'
816Binary files resources/images/06/43.png 2014-02-10 19:26:40 +0000 and resources/images/06/43.png 1970-01-01 00:00:00 +0000 differ
817=== removed file 'resources/images/06/44.png'
818Binary files resources/images/06/44.png 2014-02-10 19:26:40 +0000 and resources/images/06/44.png 1970-01-01 00:00:00 +0000 differ
819=== removed file 'resources/images/06/45.png'
820Binary files resources/images/06/45.png 2014-02-10 19:26:40 +0000 and resources/images/06/45.png 1970-01-01 00:00:00 +0000 differ
821=== removed file 'resources/images/06/46.png'
822Binary files resources/images/06/46.png 2014-02-10 19:26:40 +0000 and resources/images/06/46.png 1970-01-01 00:00:00 +0000 differ
823=== removed file 'resources/images/06/47.png'
824Binary files resources/images/06/47.png 2014-02-10 19:26:40 +0000 and resources/images/06/47.png 1970-01-01 00:00:00 +0000 differ
825=== removed file 'resources/images/06/48.png'
826Binary files resources/images/06/48.png 2014-02-10 19:26:40 +0000 and resources/images/06/48.png 1970-01-01 00:00:00 +0000 differ
827=== removed file 'resources/images/06/49.png'
828Binary files resources/images/06/49.png 2014-02-10 19:26:40 +0000 and resources/images/06/49.png 1970-01-01 00:00:00 +0000 differ
829=== removed file 'resources/images/06/5.png'
830Binary files resources/images/06/5.png 2014-02-10 19:26:40 +0000 and resources/images/06/5.png 1970-01-01 00:00:00 +0000 differ
831=== removed file 'resources/images/06/50.png'
832Binary files resources/images/06/50.png 2014-02-10 19:26:40 +0000 and resources/images/06/50.png 1970-01-01 00:00:00 +0000 differ
833=== removed file 'resources/images/06/6.png'
834Binary files resources/images/06/6.png 2014-02-10 19:26:40 +0000 and resources/images/06/6.png 1970-01-01 00:00:00 +0000 differ
835=== removed file 'resources/images/06/7.png'
836Binary files resources/images/06/7.png 2014-02-10 19:26:40 +0000 and resources/images/06/7.png 1970-01-01 00:00:00 +0000 differ
837=== removed file 'resources/images/06/8.png'
838Binary files resources/images/06/8.png 2014-02-10 19:26:40 +0000 and resources/images/06/8.png 1970-01-01 00:00:00 +0000 differ
839=== removed file 'resources/images/06/9.png'
840Binary files resources/images/06/9.png 2014-02-10 19:26:40 +0000 and resources/images/06/9.png 1970-01-01 00:00:00 +0000 differ
841=== removed directory 'resources/images/07'
842=== removed file 'resources/images/07.png'
843Binary files resources/images/07.png 2013-08-28 13:09:31 +0000 and resources/images/07.png 1970-01-01 00:00:00 +0000 differ
844=== removed file 'resources/images/07/1.png'
845Binary files resources/images/07/1.png 2013-12-15 18:17:56 +0000 and resources/images/07/1.png 1970-01-01 00:00:00 +0000 differ
846=== removed file 'resources/images/07/10.png'
847Binary files resources/images/07/10.png 2014-02-10 19:26:40 +0000 and resources/images/07/10.png 1970-01-01 00:00:00 +0000 differ
848=== removed file 'resources/images/07/11.png'
849Binary files resources/images/07/11.png 2014-02-10 19:26:40 +0000 and resources/images/07/11.png 1970-01-01 00:00:00 +0000 differ
850=== removed file 'resources/images/07/12.png'
851Binary files resources/images/07/12.png 2014-02-10 19:26:40 +0000 and resources/images/07/12.png 1970-01-01 00:00:00 +0000 differ
852=== removed file 'resources/images/07/13.png'
853Binary files resources/images/07/13.png 2014-02-10 19:26:40 +0000 and resources/images/07/13.png 1970-01-01 00:00:00 +0000 differ
854=== removed file 'resources/images/07/14.png'
855Binary files resources/images/07/14.png 2014-02-10 19:26:40 +0000 and resources/images/07/14.png 1970-01-01 00:00:00 +0000 differ
856=== removed file 'resources/images/07/15.png'
857Binary files resources/images/07/15.png 2014-02-10 19:26:40 +0000 and resources/images/07/15.png 1970-01-01 00:00:00 +0000 differ
858=== removed file 'resources/images/07/16.png'
859Binary files resources/images/07/16.png 2014-02-10 19:26:40 +0000 and resources/images/07/16.png 1970-01-01 00:00:00 +0000 differ
860=== removed file 'resources/images/07/17.png'
861Binary files resources/images/07/17.png 2014-02-10 19:26:40 +0000 and resources/images/07/17.png 1970-01-01 00:00:00 +0000 differ
862=== removed file 'resources/images/07/18.png'
863Binary files resources/images/07/18.png 2014-02-10 19:26:40 +0000 and resources/images/07/18.png 1970-01-01 00:00:00 +0000 differ
864=== removed file 'resources/images/07/19.png'
865Binary files resources/images/07/19.png 2014-02-10 19:26:40 +0000 and resources/images/07/19.png 1970-01-01 00:00:00 +0000 differ
866=== removed file 'resources/images/07/2.png'
867Binary files resources/images/07/2.png 2014-02-10 19:26:40 +0000 and resources/images/07/2.png 1970-01-01 00:00:00 +0000 differ
868=== removed file 'resources/images/07/20.png'
869Binary files resources/images/07/20.png 2014-02-10 19:26:40 +0000 and resources/images/07/20.png 1970-01-01 00:00:00 +0000 differ
870=== removed file 'resources/images/07/21.png'
871Binary files resources/images/07/21.png 2014-02-10 19:26:40 +0000 and resources/images/07/21.png 1970-01-01 00:00:00 +0000 differ
872=== removed file 'resources/images/07/22.png'
873Binary files resources/images/07/22.png 2014-02-10 19:26:40 +0000 and resources/images/07/22.png 1970-01-01 00:00:00 +0000 differ
874=== removed file 'resources/images/07/23.png'
875Binary files resources/images/07/23.png 2014-02-10 19:26:40 +0000 and resources/images/07/23.png 1970-01-01 00:00:00 +0000 differ
876=== removed file 'resources/images/07/24.png'
877Binary files resources/images/07/24.png 2014-02-10 19:26:40 +0000 and resources/images/07/24.png 1970-01-01 00:00:00 +0000 differ
878=== removed file 'resources/images/07/25.png'
879Binary files resources/images/07/25.png 2014-02-10 19:26:40 +0000 and resources/images/07/25.png 1970-01-01 00:00:00 +0000 differ
880=== removed file 'resources/images/07/26.png'
881Binary files resources/images/07/26.png 2014-02-10 19:26:40 +0000 and resources/images/07/26.png 1970-01-01 00:00:00 +0000 differ
882=== removed file 'resources/images/07/27.png'
883Binary files resources/images/07/27.png 2014-02-10 19:26:40 +0000 and resources/images/07/27.png 1970-01-01 00:00:00 +0000 differ
884=== removed file 'resources/images/07/28.png'
885Binary files resources/images/07/28.png 2014-02-10 19:26:40 +0000 and resources/images/07/28.png 1970-01-01 00:00:00 +0000 differ
886=== removed file 'resources/images/07/29.png'
887Binary files resources/images/07/29.png 2014-02-10 19:26:40 +0000 and resources/images/07/29.png 1970-01-01 00:00:00 +0000 differ
888=== removed file 'resources/images/07/3.png'
889Binary files resources/images/07/3.png 2014-02-10 19:26:40 +0000 and resources/images/07/3.png 1970-01-01 00:00:00 +0000 differ
890=== removed file 'resources/images/07/30.png'
891Binary files resources/images/07/30.png 2014-02-10 19:26:40 +0000 and resources/images/07/30.png 1970-01-01 00:00:00 +0000 differ
892=== removed file 'resources/images/07/31.png'
893Binary files resources/images/07/31.png 2014-02-10 19:26:40 +0000 and resources/images/07/31.png 1970-01-01 00:00:00 +0000 differ
894=== removed file 'resources/images/07/32.png'
895Binary files resources/images/07/32.png 2014-02-10 19:26:40 +0000 and resources/images/07/32.png 1970-01-01 00:00:00 +0000 differ
896=== removed file 'resources/images/07/33.png'
897Binary files resources/images/07/33.png 2014-02-10 19:26:40 +0000 and resources/images/07/33.png 1970-01-01 00:00:00 +0000 differ
898=== removed file 'resources/images/07/34.png'
899Binary files resources/images/07/34.png 2014-02-10 19:26:40 +0000 and resources/images/07/34.png 1970-01-01 00:00:00 +0000 differ
900=== removed file 'resources/images/07/35.png'
901Binary files resources/images/07/35.png 2014-02-10 19:26:40 +0000 and resources/images/07/35.png 1970-01-01 00:00:00 +0000 differ
902=== removed file 'resources/images/07/36.png'
903Binary files resources/images/07/36.png 2014-02-10 19:26:40 +0000 and resources/images/07/36.png 1970-01-01 00:00:00 +0000 differ
904=== removed file 'resources/images/07/37.png'
905Binary files resources/images/07/37.png 2014-02-10 19:26:40 +0000 and resources/images/07/37.png 1970-01-01 00:00:00 +0000 differ
906=== removed file 'resources/images/07/38.png'
907Binary files resources/images/07/38.png 2014-02-10 19:26:40 +0000 and resources/images/07/38.png 1970-01-01 00:00:00 +0000 differ
908=== removed file 'resources/images/07/39.png'
909Binary files resources/images/07/39.png 2014-02-10 19:26:40 +0000 and resources/images/07/39.png 1970-01-01 00:00:00 +0000 differ
910=== removed file 'resources/images/07/4.png'
911Binary files resources/images/07/4.png 2014-02-10 19:26:40 +0000 and resources/images/07/4.png 1970-01-01 00:00:00 +0000 differ
912=== removed file 'resources/images/07/40.png'
913Binary files resources/images/07/40.png 2014-02-10 19:26:40 +0000 and resources/images/07/40.png 1970-01-01 00:00:00 +0000 differ
914=== removed file 'resources/images/07/41.png'
915Binary files resources/images/07/41.png 2014-02-10 19:26:40 +0000 and resources/images/07/41.png 1970-01-01 00:00:00 +0000 differ
916=== removed file 'resources/images/07/42.png'
917Binary files resources/images/07/42.png 2014-02-10 19:26:40 +0000 and resources/images/07/42.png 1970-01-01 00:00:00 +0000 differ
918=== removed file 'resources/images/07/43.png'
919Binary files resources/images/07/43.png 2014-02-10 19:26:40 +0000 and resources/images/07/43.png 1970-01-01 00:00:00 +0000 differ
920=== removed file 'resources/images/07/44.png'
921Binary files resources/images/07/44.png 2014-02-10 19:26:40 +0000 and resources/images/07/44.png 1970-01-01 00:00:00 +0000 differ
922=== removed file 'resources/images/07/45.png'
923Binary files resources/images/07/45.png 2014-02-10 19:26:40 +0000 and resources/images/07/45.png 1970-01-01 00:00:00 +0000 differ
924=== removed file 'resources/images/07/46.png'
925Binary files resources/images/07/46.png 2014-02-10 19:26:40 +0000 and resources/images/07/46.png 1970-01-01 00:00:00 +0000 differ
926=== removed file 'resources/images/07/47.png'
927Binary files resources/images/07/47.png 2014-02-10 19:26:40 +0000 and resources/images/07/47.png 1970-01-01 00:00:00 +0000 differ
928=== removed file 'resources/images/07/48.png'
929Binary files resources/images/07/48.png 2014-02-10 19:26:40 +0000 and resources/images/07/48.png 1970-01-01 00:00:00 +0000 differ
930=== removed file 'resources/images/07/49.png'
931Binary files resources/images/07/49.png 2014-02-10 19:26:40 +0000 and resources/images/07/49.png 1970-01-01 00:00:00 +0000 differ
932=== removed file 'resources/images/07/5.png'
933Binary files resources/images/07/5.png 2014-02-10 19:26:40 +0000 and resources/images/07/5.png 1970-01-01 00:00:00 +0000 differ
934=== removed file 'resources/images/07/50.png'
935Binary files resources/images/07/50.png 2014-02-10 19:26:40 +0000 and resources/images/07/50.png 1970-01-01 00:00:00 +0000 differ
936=== removed file 'resources/images/07/6.png'
937Binary files resources/images/07/6.png 2014-02-10 19:26:40 +0000 and resources/images/07/6.png 1970-01-01 00:00:00 +0000 differ
938=== removed file 'resources/images/07/7.png'
939Binary files resources/images/07/7.png 2014-02-10 19:26:40 +0000 and resources/images/07/7.png 1970-01-01 00:00:00 +0000 differ
940=== removed file 'resources/images/07/8.png'
941Binary files resources/images/07/8.png 2014-02-10 19:26:40 +0000 and resources/images/07/8.png 1970-01-01 00:00:00 +0000 differ
942=== removed file 'resources/images/07/9.png'
943Binary files resources/images/07/9.png 2014-02-10 19:26:40 +0000 and resources/images/07/9.png 1970-01-01 00:00:00 +0000 differ
944=== removed directory 'resources/images/08'
945=== removed file 'resources/images/08.png'
946Binary files resources/images/08.png 2013-08-28 13:09:31 +0000 and resources/images/08.png 1970-01-01 00:00:00 +0000 differ
947=== removed file 'resources/images/08/1.png'
948Binary files resources/images/08/1.png 2013-12-15 18:17:56 +0000 and resources/images/08/1.png 1970-01-01 00:00:00 +0000 differ
949=== removed file 'resources/images/08/10.png'
950Binary files resources/images/08/10.png 2014-02-10 19:26:40 +0000 and resources/images/08/10.png 1970-01-01 00:00:00 +0000 differ
951=== removed file 'resources/images/08/11.png'
952Binary files resources/images/08/11.png 2014-02-10 19:26:40 +0000 and resources/images/08/11.png 1970-01-01 00:00:00 +0000 differ
953=== removed file 'resources/images/08/12.png'
954Binary files resources/images/08/12.png 2014-02-10 19:26:40 +0000 and resources/images/08/12.png 1970-01-01 00:00:00 +0000 differ
955=== removed file 'resources/images/08/13.png'
956Binary files resources/images/08/13.png 2014-02-10 19:26:40 +0000 and resources/images/08/13.png 1970-01-01 00:00:00 +0000 differ
957=== removed file 'resources/images/08/14.png'
958Binary files resources/images/08/14.png 2014-02-10 19:26:40 +0000 and resources/images/08/14.png 1970-01-01 00:00:00 +0000 differ
959=== removed file 'resources/images/08/15.png'
960Binary files resources/images/08/15.png 2014-02-10 19:26:40 +0000 and resources/images/08/15.png 1970-01-01 00:00:00 +0000 differ
961=== removed file 'resources/images/08/16.png'
962Binary files resources/images/08/16.png 2014-02-10 19:26:40 +0000 and resources/images/08/16.png 1970-01-01 00:00:00 +0000 differ
963=== removed file 'resources/images/08/17.png'
964Binary files resources/images/08/17.png 2014-02-10 19:26:40 +0000 and resources/images/08/17.png 1970-01-01 00:00:00 +0000 differ
965=== removed file 'resources/images/08/18.png'
966Binary files resources/images/08/18.png 2014-02-10 19:26:40 +0000 and resources/images/08/18.png 1970-01-01 00:00:00 +0000 differ
967=== removed file 'resources/images/08/19.png'
968Binary files resources/images/08/19.png 2014-02-10 19:26:40 +0000 and resources/images/08/19.png 1970-01-01 00:00:00 +0000 differ
969=== removed file 'resources/images/08/2.png'
970Binary files resources/images/08/2.png 2014-02-10 19:26:40 +0000 and resources/images/08/2.png 1970-01-01 00:00:00 +0000 differ
971=== removed file 'resources/images/08/20.png'
972Binary files resources/images/08/20.png 2014-02-10 19:26:40 +0000 and resources/images/08/20.png 1970-01-01 00:00:00 +0000 differ
973=== removed file 'resources/images/08/21.png'
974Binary files resources/images/08/21.png 2014-02-10 19:26:40 +0000 and resources/images/08/21.png 1970-01-01 00:00:00 +0000 differ
975=== removed file 'resources/images/08/22.png'
976Binary files resources/images/08/22.png 2014-02-10 19:26:40 +0000 and resources/images/08/22.png 1970-01-01 00:00:00 +0000 differ
977=== removed file 'resources/images/08/23.png'
978Binary files resources/images/08/23.png 2014-02-10 19:26:40 +0000 and resources/images/08/23.png 1970-01-01 00:00:00 +0000 differ
979=== removed file 'resources/images/08/24.png'
980Binary files resources/images/08/24.png 2014-02-10 19:26:40 +0000 and resources/images/08/24.png 1970-01-01 00:00:00 +0000 differ
981=== removed file 'resources/images/08/25.png'
982Binary files resources/images/08/25.png 2014-02-10 19:26:40 +0000 and resources/images/08/25.png 1970-01-01 00:00:00 +0000 differ
983=== removed file 'resources/images/08/26.png'
984Binary files resources/images/08/26.png 2014-02-10 19:26:40 +0000 and resources/images/08/26.png 1970-01-01 00:00:00 +0000 differ
985=== removed file 'resources/images/08/27.png'
986Binary files resources/images/08/27.png 2014-02-10 19:26:40 +0000 and resources/images/08/27.png 1970-01-01 00:00:00 +0000 differ
987=== removed file 'resources/images/08/28.png'
988Binary files resources/images/08/28.png 2014-02-10 19:26:40 +0000 and resources/images/08/28.png 1970-01-01 00:00:00 +0000 differ
989=== removed file 'resources/images/08/29.png'
990Binary files resources/images/08/29.png 2014-02-10 19:26:40 +0000 and resources/images/08/29.png 1970-01-01 00:00:00 +0000 differ
991=== removed file 'resources/images/08/3.png'
992Binary files resources/images/08/3.png 2014-02-10 19:26:40 +0000 and resources/images/08/3.png 1970-01-01 00:00:00 +0000 differ
993=== removed file 'resources/images/08/30.png'
994Binary files resources/images/08/30.png 2014-02-10 19:26:40 +0000 and resources/images/08/30.png 1970-01-01 00:00:00 +0000 differ
995=== removed file 'resources/images/08/31.png'
996Binary files resources/images/08/31.png 2014-02-10 19:26:40 +0000 and resources/images/08/31.png 1970-01-01 00:00:00 +0000 differ
997=== removed file 'resources/images/08/32.png'
998Binary files resources/images/08/32.png 2014-02-10 19:26:40 +0000 and resources/images/08/32.png 1970-01-01 00:00:00 +0000 differ
999=== removed file 'resources/images/08/33.png'
1000Binary files resources/images/08/33.png 2014-02-10 19:26:40 +0000 and resources/images/08/33.png 1970-01-01 00:00:00 +0000 differ
1001=== removed file 'resources/images/08/34.png'
1002Binary files resources/images/08/34.png 2014-02-10 19:26:40 +0000 and resources/images/08/34.png 1970-01-01 00:00:00 +0000 differ
1003=== removed file 'resources/images/08/35.png'
1004Binary files resources/images/08/35.png 2014-02-10 19:26:40 +0000 and resources/images/08/35.png 1970-01-01 00:00:00 +0000 differ
1005=== removed file 'resources/images/08/36.png'
1006Binary files resources/images/08/36.png 2014-02-10 19:26:40 +0000 and resources/images/08/36.png 1970-01-01 00:00:00 +0000 differ
1007=== removed file 'resources/images/08/37.png'
1008Binary files resources/images/08/37.png 2014-02-10 19:26:40 +0000 and resources/images/08/37.png 1970-01-01 00:00:00 +0000 differ
1009=== removed file 'resources/images/08/38.png'
1010Binary files resources/images/08/38.png 2014-02-10 19:26:40 +0000 and resources/images/08/38.png 1970-01-01 00:00:00 +0000 differ
1011=== removed file 'resources/images/08/39.png'
1012Binary files resources/images/08/39.png 2014-02-10 19:26:40 +0000 and resources/images/08/39.png 1970-01-01 00:00:00 +0000 differ
1013=== removed file 'resources/images/08/4.png'
1014Binary files resources/images/08/4.png 2014-02-10 19:26:40 +0000 and resources/images/08/4.png 1970-01-01 00:00:00 +0000 differ
1015=== removed file 'resources/images/08/40.png'
1016Binary files resources/images/08/40.png 2014-02-10 19:26:40 +0000 and resources/images/08/40.png 1970-01-01 00:00:00 +0000 differ
1017=== removed file 'resources/images/08/41.png'
1018Binary files resources/images/08/41.png 2014-02-10 19:26:40 +0000 and resources/images/08/41.png 1970-01-01 00:00:00 +0000 differ
1019=== removed file 'resources/images/08/42.png'
1020Binary files resources/images/08/42.png 2014-02-10 19:26:40 +0000 and resources/images/08/42.png 1970-01-01 00:00:00 +0000 differ
1021=== removed file 'resources/images/08/43.png'
1022Binary files resources/images/08/43.png 2014-02-10 19:26:40 +0000 and resources/images/08/43.png 1970-01-01 00:00:00 +0000 differ
1023=== removed file 'resources/images/08/44.png'
1024Binary files resources/images/08/44.png 2014-02-10 19:26:40 +0000 and resources/images/08/44.png 1970-01-01 00:00:00 +0000 differ
1025=== removed file 'resources/images/08/45.png'
1026Binary files resources/images/08/45.png 2014-02-10 19:26:40 +0000 and resources/images/08/45.png 1970-01-01 00:00:00 +0000 differ
1027=== removed file 'resources/images/08/46.png'
1028Binary files resources/images/08/46.png 2014-02-10 19:26:40 +0000 and resources/images/08/46.png 1970-01-01 00:00:00 +0000 differ
1029=== removed file 'resources/images/08/47.png'
1030Binary files resources/images/08/47.png 2014-02-10 19:26:40 +0000 and resources/images/08/47.png 1970-01-01 00:00:00 +0000 differ
1031=== removed file 'resources/images/08/48.png'
1032Binary files resources/images/08/48.png 2014-02-10 19:26:40 +0000 and resources/images/08/48.png 1970-01-01 00:00:00 +0000 differ
1033=== removed file 'resources/images/08/49.png'
1034Binary files resources/images/08/49.png 2014-02-10 19:26:40 +0000 and resources/images/08/49.png 1970-01-01 00:00:00 +0000 differ
1035=== removed file 'resources/images/08/5.png'
1036Binary files resources/images/08/5.png 2014-02-10 19:26:40 +0000 and resources/images/08/5.png 1970-01-01 00:00:00 +0000 differ
1037=== removed file 'resources/images/08/50.png'
1038Binary files resources/images/08/50.png 2014-02-10 19:26:40 +0000 and resources/images/08/50.png 1970-01-01 00:00:00 +0000 differ
1039=== removed file 'resources/images/08/6.png'
1040Binary files resources/images/08/6.png 2014-02-10 19:26:40 +0000 and resources/images/08/6.png 1970-01-01 00:00:00 +0000 differ
1041=== removed file 'resources/images/08/7.png'
1042Binary files resources/images/08/7.png 2014-02-10 19:26:40 +0000 and resources/images/08/7.png 1970-01-01 00:00:00 +0000 differ
1043=== removed file 'resources/images/08/8.png'
1044Binary files resources/images/08/8.png 2014-02-10 19:26:40 +0000 and resources/images/08/8.png 1970-01-01 00:00:00 +0000 differ
1045=== removed file 'resources/images/08/9.png'
1046Binary files resources/images/08/9.png 2014-02-10 19:26:40 +0000 and resources/images/08/9.png 1970-01-01 00:00:00 +0000 differ
1047=== removed directory 'resources/images/09'
1048=== removed file 'resources/images/09.png'
1049Binary files resources/images/09.png 2013-08-28 13:09:31 +0000 and resources/images/09.png 1970-01-01 00:00:00 +0000 differ
1050=== removed file 'resources/images/09/1.png'
1051Binary files resources/images/09/1.png 2013-12-15 18:17:56 +0000 and resources/images/09/1.png 1970-01-01 00:00:00 +0000 differ
1052=== removed file 'resources/images/09/10.png'
1053Binary files resources/images/09/10.png 2014-02-10 19:26:40 +0000 and resources/images/09/10.png 1970-01-01 00:00:00 +0000 differ
1054=== removed file 'resources/images/09/11.png'
1055Binary files resources/images/09/11.png 2014-02-10 19:26:40 +0000 and resources/images/09/11.png 1970-01-01 00:00:00 +0000 differ
1056=== removed file 'resources/images/09/12.png'
1057Binary files resources/images/09/12.png 2014-02-10 19:26:40 +0000 and resources/images/09/12.png 1970-01-01 00:00:00 +0000 differ
1058=== removed file 'resources/images/09/13.png'
1059Binary files resources/images/09/13.png 2014-02-10 19:26:40 +0000 and resources/images/09/13.png 1970-01-01 00:00:00 +0000 differ
1060=== removed file 'resources/images/09/14.png'
1061Binary files resources/images/09/14.png 2014-02-10 19:26:40 +0000 and resources/images/09/14.png 1970-01-01 00:00:00 +0000 differ
1062=== removed file 'resources/images/09/15.png'
1063Binary files resources/images/09/15.png 2014-02-10 19:26:40 +0000 and resources/images/09/15.png 1970-01-01 00:00:00 +0000 differ
1064=== removed file 'resources/images/09/16.png'
1065Binary files resources/images/09/16.png 2014-02-10 19:26:40 +0000 and resources/images/09/16.png 1970-01-01 00:00:00 +0000 differ
1066=== removed file 'resources/images/09/17.png'
1067Binary files resources/images/09/17.png 2014-02-10 19:26:40 +0000 and resources/images/09/17.png 1970-01-01 00:00:00 +0000 differ
1068=== removed file 'resources/images/09/18.png'
1069Binary files resources/images/09/18.png 2014-02-10 19:26:40 +0000 and resources/images/09/18.png 1970-01-01 00:00:00 +0000 differ
1070=== removed file 'resources/images/09/19.png'
1071Binary files resources/images/09/19.png 2014-02-10 19:26:40 +0000 and resources/images/09/19.png 1970-01-01 00:00:00 +0000 differ
1072=== removed file 'resources/images/09/2.png'
1073Binary files resources/images/09/2.png 2014-02-10 19:26:40 +0000 and resources/images/09/2.png 1970-01-01 00:00:00 +0000 differ
1074=== removed file 'resources/images/09/20.png'
1075Binary files resources/images/09/20.png 2014-02-10 19:26:40 +0000 and resources/images/09/20.png 1970-01-01 00:00:00 +0000 differ
1076=== removed file 'resources/images/09/21.png'
1077Binary files resources/images/09/21.png 2014-02-10 19:26:40 +0000 and resources/images/09/21.png 1970-01-01 00:00:00 +0000 differ
1078=== removed file 'resources/images/09/22.png'
1079Binary files resources/images/09/22.png 2014-02-10 19:26:40 +0000 and resources/images/09/22.png 1970-01-01 00:00:00 +0000 differ
1080=== removed file 'resources/images/09/23.png'
1081Binary files resources/images/09/23.png 2014-02-10 19:26:40 +0000 and resources/images/09/23.png 1970-01-01 00:00:00 +0000 differ
1082=== removed file 'resources/images/09/24.png'
1083Binary files resources/images/09/24.png 2014-02-10 19:26:40 +0000 and resources/images/09/24.png 1970-01-01 00:00:00 +0000 differ
1084=== removed file 'resources/images/09/25.png'
1085Binary files resources/images/09/25.png 2014-02-10 19:26:40 +0000 and resources/images/09/25.png 1970-01-01 00:00:00 +0000 differ
1086=== removed file 'resources/images/09/26.png'
1087Binary files resources/images/09/26.png 2014-02-10 19:26:40 +0000 and resources/images/09/26.png 1970-01-01 00:00:00 +0000 differ
1088=== removed file 'resources/images/09/27.png'
1089Binary files resources/images/09/27.png 2014-02-10 19:26:40 +0000 and resources/images/09/27.png 1970-01-01 00:00:00 +0000 differ
1090=== removed file 'resources/images/09/28.png'
1091Binary files resources/images/09/28.png 2014-02-10 19:26:40 +0000 and resources/images/09/28.png 1970-01-01 00:00:00 +0000 differ
1092=== removed file 'resources/images/09/29.png'
1093Binary files resources/images/09/29.png 2014-02-10 19:26:40 +0000 and resources/images/09/29.png 1970-01-01 00:00:00 +0000 differ
1094=== removed file 'resources/images/09/3.png'
1095Binary files resources/images/09/3.png 2014-02-10 19:26:40 +0000 and resources/images/09/3.png 1970-01-01 00:00:00 +0000 differ
1096=== removed file 'resources/images/09/30.png'
1097Binary files resources/images/09/30.png 2014-02-10 19:26:40 +0000 and resources/images/09/30.png 1970-01-01 00:00:00 +0000 differ
1098=== removed file 'resources/images/09/31.png'
1099Binary files resources/images/09/31.png 2014-02-10 19:26:40 +0000 and resources/images/09/31.png 1970-01-01 00:00:00 +0000 differ
1100=== removed file 'resources/images/09/32.png'
1101Binary files resources/images/09/32.png 2014-02-10 19:26:40 +0000 and resources/images/09/32.png 1970-01-01 00:00:00 +0000 differ
1102=== removed file 'resources/images/09/33.png'
1103Binary files resources/images/09/33.png 2014-02-10 19:26:40 +0000 and resources/images/09/33.png 1970-01-01 00:00:00 +0000 differ
1104=== removed file 'resources/images/09/34.png'
1105Binary files resources/images/09/34.png 2014-02-10 19:26:40 +0000 and resources/images/09/34.png 1970-01-01 00:00:00 +0000 differ
1106=== removed file 'resources/images/09/35.png'
1107Binary files resources/images/09/35.png 2014-02-10 19:26:40 +0000 and resources/images/09/35.png 1970-01-01 00:00:00 +0000 differ
1108=== removed file 'resources/images/09/36.png'
1109Binary files resources/images/09/36.png 2014-02-10 19:26:40 +0000 and resources/images/09/36.png 1970-01-01 00:00:00 +0000 differ
1110=== removed file 'resources/images/09/37.png'
1111Binary files resources/images/09/37.png 2014-02-10 19:26:40 +0000 and resources/images/09/37.png 1970-01-01 00:00:00 +0000 differ
1112=== removed file 'resources/images/09/38.png'
1113Binary files resources/images/09/38.png 2014-02-10 19:26:40 +0000 and resources/images/09/38.png 1970-01-01 00:00:00 +0000 differ
1114=== removed file 'resources/images/09/39.png'
1115Binary files resources/images/09/39.png 2014-02-10 19:26:40 +0000 and resources/images/09/39.png 1970-01-01 00:00:00 +0000 differ
1116=== removed file 'resources/images/09/4.png'
1117Binary files resources/images/09/4.png 2014-02-10 19:26:40 +0000 and resources/images/09/4.png 1970-01-01 00:00:00 +0000 differ
1118=== removed file 'resources/images/09/40.png'
1119Binary files resources/images/09/40.png 2014-02-10 19:26:40 +0000 and resources/images/09/40.png 1970-01-01 00:00:00 +0000 differ
1120=== removed file 'resources/images/09/41.png'
1121Binary files resources/images/09/41.png 2014-02-10 19:26:40 +0000 and resources/images/09/41.png 1970-01-01 00:00:00 +0000 differ
1122=== removed file 'resources/images/09/42.png'
1123Binary files resources/images/09/42.png 2014-02-10 19:26:40 +0000 and resources/images/09/42.png 1970-01-01 00:00:00 +0000 differ
1124=== removed file 'resources/images/09/43.png'
1125Binary files resources/images/09/43.png 2014-02-10 19:26:40 +0000 and resources/images/09/43.png 1970-01-01 00:00:00 +0000 differ
1126=== removed file 'resources/images/09/44.png'
1127Binary files resources/images/09/44.png 2014-02-10 19:26:40 +0000 and resources/images/09/44.png 1970-01-01 00:00:00 +0000 differ
1128=== removed file 'resources/images/09/45.png'
1129Binary files resources/images/09/45.png 2014-02-10 19:26:40 +0000 and resources/images/09/45.png 1970-01-01 00:00:00 +0000 differ
1130=== removed file 'resources/images/09/46.png'
1131Binary files resources/images/09/46.png 2014-02-10 19:26:40 +0000 and resources/images/09/46.png 1970-01-01 00:00:00 +0000 differ
1132=== removed file 'resources/images/09/47.png'
1133Binary files resources/images/09/47.png 2014-02-10 19:26:40 +0000 and resources/images/09/47.png 1970-01-01 00:00:00 +0000 differ
1134=== removed file 'resources/images/09/48.png'
1135Binary files resources/images/09/48.png 2014-02-10 19:26:40 +0000 and resources/images/09/48.png 1970-01-01 00:00:00 +0000 differ
1136=== removed file 'resources/images/09/49.png'
1137Binary files resources/images/09/49.png 2014-02-10 19:26:40 +0000 and resources/images/09/49.png 1970-01-01 00:00:00 +0000 differ
1138=== removed file 'resources/images/09/5.png'
1139Binary files resources/images/09/5.png 2014-02-10 19:26:40 +0000 and resources/images/09/5.png 1970-01-01 00:00:00 +0000 differ
1140=== removed file 'resources/images/09/50.png'
1141Binary files resources/images/09/50.png 2014-02-10 19:26:40 +0000 and resources/images/09/50.png 1970-01-01 00:00:00 +0000 differ
1142=== removed file 'resources/images/09/6.png'
1143Binary files resources/images/09/6.png 2014-02-10 19:26:40 +0000 and resources/images/09/6.png 1970-01-01 00:00:00 +0000 differ
1144=== removed file 'resources/images/09/7.png'
1145Binary files resources/images/09/7.png 2014-02-10 19:26:40 +0000 and resources/images/09/7.png 1970-01-01 00:00:00 +0000 differ
1146=== removed file 'resources/images/09/8.png'
1147Binary files resources/images/09/8.png 2014-02-10 19:26:40 +0000 and resources/images/09/8.png 1970-01-01 00:00:00 +0000 differ
1148=== removed file 'resources/images/09/9.png'
1149Binary files resources/images/09/9.png 2014-02-10 19:26:40 +0000 and resources/images/09/9.png 1970-01-01 00:00:00 +0000 differ
1150=== removed directory 'resources/images/10'
1151=== removed file 'resources/images/10.png'
1152Binary files resources/images/10.png 2013-08-28 13:09:31 +0000 and resources/images/10.png 1970-01-01 00:00:00 +0000 differ
1153=== removed file 'resources/images/10/1.png'
1154Binary files resources/images/10/1.png 2013-12-15 18:17:56 +0000 and resources/images/10/1.png 1970-01-01 00:00:00 +0000 differ
1155=== removed file 'resources/images/10/10.png'
1156Binary files resources/images/10/10.png 2014-02-10 19:26:40 +0000 and resources/images/10/10.png 1970-01-01 00:00:00 +0000 differ
1157=== removed file 'resources/images/10/11.png'
1158Binary files resources/images/10/11.png 2014-02-10 19:26:40 +0000 and resources/images/10/11.png 1970-01-01 00:00:00 +0000 differ
1159=== removed file 'resources/images/10/12.png'
1160Binary files resources/images/10/12.png 2014-02-10 19:26:40 +0000 and resources/images/10/12.png 1970-01-01 00:00:00 +0000 differ
1161=== removed file 'resources/images/10/13.png'
1162Binary files resources/images/10/13.png 2014-02-10 19:26:40 +0000 and resources/images/10/13.png 1970-01-01 00:00:00 +0000 differ
1163=== removed file 'resources/images/10/14.png'
1164Binary files resources/images/10/14.png 2014-02-10 19:26:40 +0000 and resources/images/10/14.png 1970-01-01 00:00:00 +0000 differ
1165=== removed file 'resources/images/10/15.png'
1166Binary files resources/images/10/15.png 2014-02-10 19:26:40 +0000 and resources/images/10/15.png 1970-01-01 00:00:00 +0000 differ
1167=== removed file 'resources/images/10/16.png'
1168Binary files resources/images/10/16.png 2014-02-10 19:26:40 +0000 and resources/images/10/16.png 1970-01-01 00:00:00 +0000 differ
1169=== removed file 'resources/images/10/17.png'
1170Binary files resources/images/10/17.png 2014-02-10 19:26:40 +0000 and resources/images/10/17.png 1970-01-01 00:00:00 +0000 differ
1171=== removed file 'resources/images/10/18.png'
1172Binary files resources/images/10/18.png 2014-02-10 19:26:40 +0000 and resources/images/10/18.png 1970-01-01 00:00:00 +0000 differ
1173=== removed file 'resources/images/10/19.png'
1174Binary files resources/images/10/19.png 2014-02-10 19:26:40 +0000 and resources/images/10/19.png 1970-01-01 00:00:00 +0000 differ
1175=== removed file 'resources/images/10/2.png'
1176Binary files resources/images/10/2.png 2014-02-10 19:26:40 +0000 and resources/images/10/2.png 1970-01-01 00:00:00 +0000 differ
1177=== removed file 'resources/images/10/20.png'
1178Binary files resources/images/10/20.png 2014-02-10 19:26:40 +0000 and resources/images/10/20.png 1970-01-01 00:00:00 +0000 differ
1179=== removed file 'resources/images/10/21.png'
1180Binary files resources/images/10/21.png 2014-02-10 19:26:40 +0000 and resources/images/10/21.png 1970-01-01 00:00:00 +0000 differ
1181=== removed file 'resources/images/10/22.png'
1182Binary files resources/images/10/22.png 2014-02-10 19:26:40 +0000 and resources/images/10/22.png 1970-01-01 00:00:00 +0000 differ
1183=== removed file 'resources/images/10/23.png'
1184Binary files resources/images/10/23.png 2014-02-10 19:26:40 +0000 and resources/images/10/23.png 1970-01-01 00:00:00 +0000 differ
1185=== removed file 'resources/images/10/24.png'
1186Binary files resources/images/10/24.png 2014-02-10 19:26:40 +0000 and resources/images/10/24.png 1970-01-01 00:00:00 +0000 differ
1187=== removed file 'resources/images/10/25.png'
1188Binary files resources/images/10/25.png 2014-02-10 19:26:40 +0000 and resources/images/10/25.png 1970-01-01 00:00:00 +0000 differ
1189=== removed file 'resources/images/10/26.png'
1190Binary files resources/images/10/26.png 2014-02-10 19:26:40 +0000 and resources/images/10/26.png 1970-01-01 00:00:00 +0000 differ
1191=== removed file 'resources/images/10/27.png'
1192Binary files resources/images/10/27.png 2014-02-10 19:26:40 +0000 and resources/images/10/27.png 1970-01-01 00:00:00 +0000 differ
1193=== removed file 'resources/images/10/28.png'
1194Binary files resources/images/10/28.png 2014-02-10 19:26:40 +0000 and resources/images/10/28.png 1970-01-01 00:00:00 +0000 differ
1195=== removed file 'resources/images/10/29.png'
1196Binary files resources/images/10/29.png 2014-02-10 19:26:40 +0000 and resources/images/10/29.png 1970-01-01 00:00:00 +0000 differ
1197=== removed file 'resources/images/10/3.png'
1198Binary files resources/images/10/3.png 2014-02-10 19:26:40 +0000 and resources/images/10/3.png 1970-01-01 00:00:00 +0000 differ
1199=== removed file 'resources/images/10/30.png'
1200Binary files resources/images/10/30.png 2014-02-10 19:26:40 +0000 and resources/images/10/30.png 1970-01-01 00:00:00 +0000 differ
1201=== removed file 'resources/images/10/31.png'
1202Binary files resources/images/10/31.png 2014-02-10 19:26:40 +0000 and resources/images/10/31.png 1970-01-01 00:00:00 +0000 differ
1203=== removed file 'resources/images/10/32.png'
1204Binary files resources/images/10/32.png 2014-02-10 19:26:40 +0000 and resources/images/10/32.png 1970-01-01 00:00:00 +0000 differ
1205=== removed file 'resources/images/10/33.png'
1206Binary files resources/images/10/33.png 2014-02-10 19:26:40 +0000 and resources/images/10/33.png 1970-01-01 00:00:00 +0000 differ
1207=== removed file 'resources/images/10/34.png'
1208Binary files resources/images/10/34.png 2014-02-10 19:26:40 +0000 and resources/images/10/34.png 1970-01-01 00:00:00 +0000 differ
1209=== removed file 'resources/images/10/35.png'
1210Binary files resources/images/10/35.png 2014-02-10 19:26:40 +0000 and resources/images/10/35.png 1970-01-01 00:00:00 +0000 differ
1211=== removed file 'resources/images/10/36.png'
1212Binary files resources/images/10/36.png 2014-02-10 19:26:40 +0000 and resources/images/10/36.png 1970-01-01 00:00:00 +0000 differ
1213=== removed file 'resources/images/10/37.png'
1214Binary files resources/images/10/37.png 2014-02-10 19:26:40 +0000 and resources/images/10/37.png 1970-01-01 00:00:00 +0000 differ
1215=== removed file 'resources/images/10/38.png'
1216Binary files resources/images/10/38.png 2014-02-10 19:26:40 +0000 and resources/images/10/38.png 1970-01-01 00:00:00 +0000 differ
1217=== removed file 'resources/images/10/39.png'
1218Binary files resources/images/10/39.png 2014-02-10 19:26:40 +0000 and resources/images/10/39.png 1970-01-01 00:00:00 +0000 differ
1219=== removed file 'resources/images/10/4.png'
1220Binary files resources/images/10/4.png 2014-02-10 19:26:40 +0000 and resources/images/10/4.png 1970-01-01 00:00:00 +0000 differ
1221=== removed file 'resources/images/10/40.png'
1222Binary files resources/images/10/40.png 2014-02-10 19:26:40 +0000 and resources/images/10/40.png 1970-01-01 00:00:00 +0000 differ
1223=== removed file 'resources/images/10/41.png'
1224Binary files resources/images/10/41.png 2014-02-10 19:26:40 +0000 and resources/images/10/41.png 1970-01-01 00:00:00 +0000 differ
1225=== removed file 'resources/images/10/42.png'
1226Binary files resources/images/10/42.png 2014-02-10 19:26:40 +0000 and resources/images/10/42.png 1970-01-01 00:00:00 +0000 differ
1227=== removed file 'resources/images/10/43.png'
1228Binary files resources/images/10/43.png 2014-02-10 19:26:40 +0000 and resources/images/10/43.png 1970-01-01 00:00:00 +0000 differ
1229=== removed file 'resources/images/10/44.png'
1230Binary files resources/images/10/44.png 2014-02-10 19:26:40 +0000 and resources/images/10/44.png 1970-01-01 00:00:00 +0000 differ
1231=== removed file 'resources/images/10/45.png'
1232Binary files resources/images/10/45.png 2014-02-10 19:26:40 +0000 and resources/images/10/45.png 1970-01-01 00:00:00 +0000 differ
1233=== removed file 'resources/images/10/46.png'
1234Binary files resources/images/10/46.png 2014-02-10 19:26:40 +0000 and resources/images/10/46.png 1970-01-01 00:00:00 +0000 differ
1235=== removed file 'resources/images/10/47.png'
1236Binary files resources/images/10/47.png 2014-02-10 19:26:40 +0000 and resources/images/10/47.png 1970-01-01 00:00:00 +0000 differ
1237=== removed file 'resources/images/10/48.png'
1238Binary files resources/images/10/48.png 2014-02-10 19:26:40 +0000 and resources/images/10/48.png 1970-01-01 00:00:00 +0000 differ
1239=== removed file 'resources/images/10/49.png'
1240Binary files resources/images/10/49.png 2014-02-10 19:26:40 +0000 and resources/images/10/49.png 1970-01-01 00:00:00 +0000 differ
1241=== removed file 'resources/images/10/5.png'
1242Binary files resources/images/10/5.png 2014-02-10 19:26:40 +0000 and resources/images/10/5.png 1970-01-01 00:00:00 +0000 differ
1243=== removed file 'resources/images/10/6.png'
1244Binary files resources/images/10/6.png 2014-02-10 19:26:40 +0000 and resources/images/10/6.png 1970-01-01 00:00:00 +0000 differ
1245=== removed file 'resources/images/10/7.png'
1246Binary files resources/images/10/7.png 2014-02-10 19:26:40 +0000 and resources/images/10/7.png 1970-01-01 00:00:00 +0000 differ
1247=== removed file 'resources/images/10/8.png'
1248Binary files resources/images/10/8.png 2014-02-10 19:26:40 +0000 and resources/images/10/8.png 1970-01-01 00:00:00 +0000 differ
1249=== removed file 'resources/images/10/9.png'
1250Binary files resources/images/10/9.png 2014-02-10 19:26:40 +0000 and resources/images/10/9.png 1970-01-01 00:00:00 +0000 differ
1251=== removed directory 'resources/images/11'
1252=== removed file 'resources/images/11.png'
1253Binary files resources/images/11.png 2013-08-28 13:09:31 +0000 and resources/images/11.png 1970-01-01 00:00:00 +0000 differ
1254=== removed file 'resources/images/11/1.png'
1255Binary files resources/images/11/1.png 2013-12-15 18:17:56 +0000 and resources/images/11/1.png 1970-01-01 00:00:00 +0000 differ
1256=== removed file 'resources/images/11/10.png'
1257Binary files resources/images/11/10.png 2014-02-10 19:26:40 +0000 and resources/images/11/10.png 1970-01-01 00:00:00 +0000 differ
1258=== removed file 'resources/images/11/11.png'
1259Binary files resources/images/11/11.png 2014-02-10 19:26:40 +0000 and resources/images/11/11.png 1970-01-01 00:00:00 +0000 differ
1260=== removed file 'resources/images/11/12.png'
1261Binary files resources/images/11/12.png 2014-02-10 19:26:40 +0000 and resources/images/11/12.png 1970-01-01 00:00:00 +0000 differ
1262=== removed file 'resources/images/11/13.png'
1263Binary files resources/images/11/13.png 2014-02-10 19:26:40 +0000 and resources/images/11/13.png 1970-01-01 00:00:00 +0000 differ
1264=== removed file 'resources/images/11/14.png'
1265Binary files resources/images/11/14.png 2014-02-10 19:26:40 +0000 and resources/images/11/14.png 1970-01-01 00:00:00 +0000 differ
1266=== removed file 'resources/images/11/15.png'
1267Binary files resources/images/11/15.png 2014-02-10 19:26:40 +0000 and resources/images/11/15.png 1970-01-01 00:00:00 +0000 differ
1268=== removed file 'resources/images/11/16.png'
1269Binary files resources/images/11/16.png 2014-02-10 19:26:40 +0000 and resources/images/11/16.png 1970-01-01 00:00:00 +0000 differ
1270=== removed file 'resources/images/11/17.png'
1271Binary files resources/images/11/17.png 2014-02-10 19:26:40 +0000 and resources/images/11/17.png 1970-01-01 00:00:00 +0000 differ
1272=== removed file 'resources/images/11/18.png'
1273Binary files resources/images/11/18.png 2014-02-10 19:26:40 +0000 and resources/images/11/18.png 1970-01-01 00:00:00 +0000 differ
1274=== removed file 'resources/images/11/19.png'
1275Binary files resources/images/11/19.png 2014-02-10 19:26:40 +0000 and resources/images/11/19.png 1970-01-01 00:00:00 +0000 differ
1276=== removed file 'resources/images/11/2.png'
1277Binary files resources/images/11/2.png 2014-02-10 19:26:40 +0000 and resources/images/11/2.png 1970-01-01 00:00:00 +0000 differ
1278=== removed file 'resources/images/11/20.png'
1279Binary files resources/images/11/20.png 2014-02-10 19:26:40 +0000 and resources/images/11/20.png 1970-01-01 00:00:00 +0000 differ
1280=== removed file 'resources/images/11/21.png'
1281Binary files resources/images/11/21.png 2014-02-10 19:26:40 +0000 and resources/images/11/21.png 1970-01-01 00:00:00 +0000 differ
1282=== removed file 'resources/images/11/22.png'
1283Binary files resources/images/11/22.png 2014-02-10 19:26:40 +0000 and resources/images/11/22.png 1970-01-01 00:00:00 +0000 differ
1284=== removed file 'resources/images/11/23.png'
1285Binary files resources/images/11/23.png 2014-02-10 19:26:40 +0000 and resources/images/11/23.png 1970-01-01 00:00:00 +0000 differ
1286=== removed file 'resources/images/11/24.png'
1287Binary files resources/images/11/24.png 2014-02-10 19:26:40 +0000 and resources/images/11/24.png 1970-01-01 00:00:00 +0000 differ
1288=== removed file 'resources/images/11/25.png'
1289Binary files resources/images/11/25.png 2014-02-10 19:26:40 +0000 and resources/images/11/25.png 1970-01-01 00:00:00 +0000 differ
1290=== removed file 'resources/images/11/26.png'
1291Binary files resources/images/11/26.png 2014-02-10 19:26:40 +0000 and resources/images/11/26.png 1970-01-01 00:00:00 +0000 differ
1292=== removed file 'resources/images/11/27.png'
1293Binary files resources/images/11/27.png 2014-02-10 19:26:40 +0000 and resources/images/11/27.png 1970-01-01 00:00:00 +0000 differ
1294=== removed file 'resources/images/11/28.png'
1295Binary files resources/images/11/28.png 2014-02-10 19:26:40 +0000 and resources/images/11/28.png 1970-01-01 00:00:00 +0000 differ
1296=== removed file 'resources/images/11/29.png'
1297Binary files resources/images/11/29.png 2014-02-10 19:26:40 +0000 and resources/images/11/29.png 1970-01-01 00:00:00 +0000 differ
1298=== removed file 'resources/images/11/3.png'
1299Binary files resources/images/11/3.png 2014-02-10 19:26:40 +0000 and resources/images/11/3.png 1970-01-01 00:00:00 +0000 differ
1300=== removed file 'resources/images/11/30.png'
1301Binary files resources/images/11/30.png 2014-02-10 19:26:40 +0000 and resources/images/11/30.png 1970-01-01 00:00:00 +0000 differ
1302=== removed file 'resources/images/11/31.png'
1303Binary files resources/images/11/31.png 2014-02-10 19:26:40 +0000 and resources/images/11/31.png 1970-01-01 00:00:00 +0000 differ
1304=== removed file 'resources/images/11/32.png'
1305Binary files resources/images/11/32.png 2014-02-10 19:26:40 +0000 and resources/images/11/32.png 1970-01-01 00:00:00 +0000 differ
1306=== removed file 'resources/images/11/33.png'
1307Binary files resources/images/11/33.png 2014-02-10 19:26:40 +0000 and resources/images/11/33.png 1970-01-01 00:00:00 +0000 differ
1308=== removed file 'resources/images/11/34.png'
1309Binary files resources/images/11/34.png 2014-02-10 19:26:40 +0000 and resources/images/11/34.png 1970-01-01 00:00:00 +0000 differ
1310=== removed file 'resources/images/11/35.png'
1311Binary files resources/images/11/35.png 2014-02-10 19:26:40 +0000 and resources/images/11/35.png 1970-01-01 00:00:00 +0000 differ
1312=== removed file 'resources/images/11/36.png'
1313Binary files resources/images/11/36.png 2014-02-10 19:26:40 +0000 and resources/images/11/36.png 1970-01-01 00:00:00 +0000 differ
1314=== removed file 'resources/images/11/37.png'
1315Binary files resources/images/11/37.png 2014-02-10 19:26:40 +0000 and resources/images/11/37.png 1970-01-01 00:00:00 +0000 differ
1316=== removed file 'resources/images/11/38.png'
1317Binary files resources/images/11/38.png 2014-02-10 19:26:40 +0000 and resources/images/11/38.png 1970-01-01 00:00:00 +0000 differ
1318=== removed file 'resources/images/11/39.png'
1319Binary files resources/images/11/39.png 2014-02-10 19:26:40 +0000 and resources/images/11/39.png 1970-01-01 00:00:00 +0000 differ
1320=== removed file 'resources/images/11/4.png'
1321Binary files resources/images/11/4.png 2014-02-10 19:26:40 +0000 and resources/images/11/4.png 1970-01-01 00:00:00 +0000 differ
1322=== removed file 'resources/images/11/40.png'
1323Binary files resources/images/11/40.png 2014-02-10 19:26:40 +0000 and resources/images/11/40.png 1970-01-01 00:00:00 +0000 differ
1324=== removed file 'resources/images/11/41.png'
1325Binary files resources/images/11/41.png 2014-02-10 19:26:40 +0000 and resources/images/11/41.png 1970-01-01 00:00:00 +0000 differ
1326=== removed file 'resources/images/11/42.png'
1327Binary files resources/images/11/42.png 2014-02-10 19:26:40 +0000 and resources/images/11/42.png 1970-01-01 00:00:00 +0000 differ
1328=== removed file 'resources/images/11/43.png'
1329Binary files resources/images/11/43.png 2014-02-10 19:26:40 +0000 and resources/images/11/43.png 1970-01-01 00:00:00 +0000 differ
1330=== removed file 'resources/images/11/44.png'
1331Binary files resources/images/11/44.png 2014-02-10 19:26:40 +0000 and resources/images/11/44.png 1970-01-01 00:00:00 +0000 differ
1332=== removed file 'resources/images/11/45.png'
1333Binary files resources/images/11/45.png 2014-02-10 19:26:40 +0000 and resources/images/11/45.png 1970-01-01 00:00:00 +0000 differ
1334=== removed file 'resources/images/11/46.png'
1335Binary files resources/images/11/46.png 2014-02-10 19:26:40 +0000 and resources/images/11/46.png 1970-01-01 00:00:00 +0000 differ
1336=== removed file 'resources/images/11/47.png'
1337Binary files resources/images/11/47.png 2014-02-10 19:26:40 +0000 and resources/images/11/47.png 1970-01-01 00:00:00 +0000 differ
1338=== removed file 'resources/images/11/48.png'
1339Binary files resources/images/11/48.png 2014-02-10 19:26:40 +0000 and resources/images/11/48.png 1970-01-01 00:00:00 +0000 differ
1340=== removed file 'resources/images/11/49.png'
1341Binary files resources/images/11/49.png 2014-02-10 19:26:40 +0000 and resources/images/11/49.png 1970-01-01 00:00:00 +0000 differ
1342=== removed file 'resources/images/11/5.png'
1343Binary files resources/images/11/5.png 2014-02-10 19:26:40 +0000 and resources/images/11/5.png 1970-01-01 00:00:00 +0000 differ
1344=== removed file 'resources/images/11/50.png'
1345Binary files resources/images/11/50.png 2014-02-10 19:26:40 +0000 and resources/images/11/50.png 1970-01-01 00:00:00 +0000 differ
1346=== removed file 'resources/images/11/6.png'
1347Binary files resources/images/11/6.png 2014-02-10 19:26:40 +0000 and resources/images/11/6.png 1970-01-01 00:00:00 +0000 differ
1348=== removed file 'resources/images/11/7.png'
1349Binary files resources/images/11/7.png 2014-02-10 19:26:40 +0000 and resources/images/11/7.png 1970-01-01 00:00:00 +0000 differ
1350=== removed file 'resources/images/11/8.png'
1351Binary files resources/images/11/8.png 2014-02-10 19:26:40 +0000 and resources/images/11/8.png 1970-01-01 00:00:00 +0000 differ
1352=== removed file 'resources/images/11/9.png'
1353Binary files resources/images/11/9.png 2014-02-10 19:26:40 +0000 and resources/images/11/9.png 1970-01-01 00:00:00 +0000 differ
1354=== removed directory 'resources/images/12'
1355=== removed file 'resources/images/12.png'
1356Binary files resources/images/12.png 2013-08-30 13:31:25 +0000 and resources/images/12.png 1970-01-01 00:00:00 +0000 differ
1357=== removed file 'resources/images/12/1.png'
1358Binary files resources/images/12/1.png 2013-12-15 18:17:56 +0000 and resources/images/12/1.png 1970-01-01 00:00:00 +0000 differ
1359=== removed file 'resources/images/12/10.png'
1360Binary files resources/images/12/10.png 2014-02-10 19:26:40 +0000 and resources/images/12/10.png 1970-01-01 00:00:00 +0000 differ
1361=== removed file 'resources/images/12/11.png'
1362Binary files resources/images/12/11.png 2014-02-10 19:26:40 +0000 and resources/images/12/11.png 1970-01-01 00:00:00 +0000 differ
1363=== removed file 'resources/images/12/12.png'
1364Binary files resources/images/12/12.png 2014-02-10 19:26:40 +0000 and resources/images/12/12.png 1970-01-01 00:00:00 +0000 differ
1365=== removed file 'resources/images/12/13.png'
1366Binary files resources/images/12/13.png 2014-02-10 19:26:40 +0000 and resources/images/12/13.png 1970-01-01 00:00:00 +0000 differ
1367=== removed file 'resources/images/12/14.png'
1368Binary files resources/images/12/14.png 2014-02-10 19:26:40 +0000 and resources/images/12/14.png 1970-01-01 00:00:00 +0000 differ
1369=== removed file 'resources/images/12/15.png'
1370Binary files resources/images/12/15.png 2014-02-10 19:26:40 +0000 and resources/images/12/15.png 1970-01-01 00:00:00 +0000 differ
1371=== removed file 'resources/images/12/16.png'
1372Binary files resources/images/12/16.png 2014-02-10 19:26:40 +0000 and resources/images/12/16.png 1970-01-01 00:00:00 +0000 differ
1373=== removed file 'resources/images/12/17.png'
1374Binary files resources/images/12/17.png 2014-02-10 19:26:40 +0000 and resources/images/12/17.png 1970-01-01 00:00:00 +0000 differ
1375=== removed file 'resources/images/12/18.png'
1376Binary files resources/images/12/18.png 2014-02-10 19:26:40 +0000 and resources/images/12/18.png 1970-01-01 00:00:00 +0000 differ
1377=== removed file 'resources/images/12/19.png'
1378Binary files resources/images/12/19.png 2014-02-10 19:26:40 +0000 and resources/images/12/19.png 1970-01-01 00:00:00 +0000 differ
1379=== removed file 'resources/images/12/2.png'
1380Binary files resources/images/12/2.png 2014-02-10 19:26:40 +0000 and resources/images/12/2.png 1970-01-01 00:00:00 +0000 differ
1381=== removed file 'resources/images/12/20.png'
1382Binary files resources/images/12/20.png 2014-02-10 19:26:40 +0000 and resources/images/12/20.png 1970-01-01 00:00:00 +0000 differ
1383=== removed file 'resources/images/12/21.png'
1384Binary files resources/images/12/21.png 2014-02-10 19:26:40 +0000 and resources/images/12/21.png 1970-01-01 00:00:00 +0000 differ
1385=== removed file 'resources/images/12/22.png'
1386Binary files resources/images/12/22.png 2014-02-10 19:26:40 +0000 and resources/images/12/22.png 1970-01-01 00:00:00 +0000 differ
1387=== removed file 'resources/images/12/23.png'
1388Binary files resources/images/12/23.png 2014-02-10 19:26:40 +0000 and resources/images/12/23.png 1970-01-01 00:00:00 +0000 differ
1389=== removed file 'resources/images/12/24.png'
1390Binary files resources/images/12/24.png 2014-02-10 19:26:40 +0000 and resources/images/12/24.png 1970-01-01 00:00:00 +0000 differ
1391=== removed file 'resources/images/12/25.png'
1392Binary files resources/images/12/25.png 2014-02-10 19:26:40 +0000 and resources/images/12/25.png 1970-01-01 00:00:00 +0000 differ
1393=== removed file 'resources/images/12/26.png'
1394Binary files resources/images/12/26.png 2014-02-10 19:26:40 +0000 and resources/images/12/26.png 1970-01-01 00:00:00 +0000 differ
1395=== removed file 'resources/images/12/27.png'
1396Binary files resources/images/12/27.png 2014-02-10 19:26:40 +0000 and resources/images/12/27.png 1970-01-01 00:00:00 +0000 differ
1397=== removed file 'resources/images/12/28.png'
1398Binary files resources/images/12/28.png 2014-02-10 19:26:40 +0000 and resources/images/12/28.png 1970-01-01 00:00:00 +0000 differ
1399=== removed file 'resources/images/12/29.png'
1400Binary files resources/images/12/29.png 2014-02-10 19:26:40 +0000 and resources/images/12/29.png 1970-01-01 00:00:00 +0000 differ
1401=== removed file 'resources/images/12/3.png'
1402Binary files resources/images/12/3.png 2014-02-10 19:26:40 +0000 and resources/images/12/3.png 1970-01-01 00:00:00 +0000 differ
1403=== removed file 'resources/images/12/30.png'
1404Binary files resources/images/12/30.png 2014-02-10 19:26:40 +0000 and resources/images/12/30.png 1970-01-01 00:00:00 +0000 differ
1405=== removed file 'resources/images/12/31.png'
1406Binary files resources/images/12/31.png 2014-02-10 19:26:40 +0000 and resources/images/12/31.png 1970-01-01 00:00:00 +0000 differ
1407=== removed file 'resources/images/12/32.png'
1408Binary files resources/images/12/32.png 2014-02-10 19:26:40 +0000 and resources/images/12/32.png 1970-01-01 00:00:00 +0000 differ
1409=== removed file 'resources/images/12/33.png'
1410Binary files resources/images/12/33.png 2014-02-10 19:26:40 +0000 and resources/images/12/33.png 1970-01-01 00:00:00 +0000 differ
1411=== removed file 'resources/images/12/34.png'
1412Binary files resources/images/12/34.png 2014-02-10 19:26:40 +0000 and resources/images/12/34.png 1970-01-01 00:00:00 +0000 differ
1413=== removed file 'resources/images/12/35.png'
1414Binary files resources/images/12/35.png 2014-02-10 19:26:40 +0000 and resources/images/12/35.png 1970-01-01 00:00:00 +0000 differ
1415=== removed file 'resources/images/12/36.png'
1416Binary files resources/images/12/36.png 2014-02-10 19:26:40 +0000 and resources/images/12/36.png 1970-01-01 00:00:00 +0000 differ
1417=== removed file 'resources/images/12/37.png'
1418Binary files resources/images/12/37.png 2014-02-10 19:26:40 +0000 and resources/images/12/37.png 1970-01-01 00:00:00 +0000 differ
1419=== removed file 'resources/images/12/38.png'
1420Binary files resources/images/12/38.png 2014-02-10 19:26:40 +0000 and resources/images/12/38.png 1970-01-01 00:00:00 +0000 differ
1421=== removed file 'resources/images/12/39.png'
1422Binary files resources/images/12/39.png 2014-02-10 19:26:40 +0000 and resources/images/12/39.png 1970-01-01 00:00:00 +0000 differ
1423=== removed file 'resources/images/12/4.png'
1424Binary files resources/images/12/4.png 2014-02-10 19:26:40 +0000 and resources/images/12/4.png 1970-01-01 00:00:00 +0000 differ
1425=== removed file 'resources/images/12/40.png'
1426Binary files resources/images/12/40.png 2014-02-10 19:26:40 +0000 and resources/images/12/40.png 1970-01-01 00:00:00 +0000 differ
1427=== removed file 'resources/images/12/41.png'
1428Binary files resources/images/12/41.png 2014-02-10 19:26:40 +0000 and resources/images/12/41.png 1970-01-01 00:00:00 +0000 differ
1429=== removed file 'resources/images/12/42.png'
1430Binary files resources/images/12/42.png 2014-02-10 19:26:40 +0000 and resources/images/12/42.png 1970-01-01 00:00:00 +0000 differ
1431=== removed file 'resources/images/12/43.png'
1432Binary files resources/images/12/43.png 2014-02-10 19:26:40 +0000 and resources/images/12/43.png 1970-01-01 00:00:00 +0000 differ
1433=== removed file 'resources/images/12/44.png'
1434Binary files resources/images/12/44.png 2014-02-10 19:26:40 +0000 and resources/images/12/44.png 1970-01-01 00:00:00 +0000 differ
1435=== removed file 'resources/images/12/45.png'
1436Binary files resources/images/12/45.png 2014-02-10 19:26:40 +0000 and resources/images/12/45.png 1970-01-01 00:00:00 +0000 differ
1437=== removed file 'resources/images/12/46.png'
1438Binary files resources/images/12/46.png 2014-02-10 19:26:40 +0000 and resources/images/12/46.png 1970-01-01 00:00:00 +0000 differ
1439=== removed file 'resources/images/12/47.png'
1440Binary files resources/images/12/47.png 2014-02-10 19:26:40 +0000 and resources/images/12/47.png 1970-01-01 00:00:00 +0000 differ
1441=== removed file 'resources/images/12/48.png'
1442Binary files resources/images/12/48.png 2014-02-10 19:26:40 +0000 and resources/images/12/48.png 1970-01-01 00:00:00 +0000 differ
1443=== removed file 'resources/images/12/49.png'
1444Binary files resources/images/12/49.png 2014-02-10 19:26:40 +0000 and resources/images/12/49.png 1970-01-01 00:00:00 +0000 differ
1445=== removed file 'resources/images/12/5.png'
1446Binary files resources/images/12/5.png 2014-02-10 19:26:40 +0000 and resources/images/12/5.png 1970-01-01 00:00:00 +0000 differ
1447=== removed file 'resources/images/12/50.png'
1448Binary files resources/images/12/50.png 2014-02-10 19:26:40 +0000 and resources/images/12/50.png 1970-01-01 00:00:00 +0000 differ
1449=== removed file 'resources/images/12/6.png'
1450Binary files resources/images/12/6.png 2014-02-10 19:26:40 +0000 and resources/images/12/6.png 1970-01-01 00:00:00 +0000 differ
1451=== removed file 'resources/images/12/7.png'
1452Binary files resources/images/12/7.png 2014-02-10 19:26:40 +0000 and resources/images/12/7.png 1970-01-01 00:00:00 +0000 differ
1453=== removed file 'resources/images/12/8.png'
1454Binary files resources/images/12/8.png 2014-02-10 19:26:40 +0000 and resources/images/12/8.png 1970-01-01 00:00:00 +0000 differ
1455=== removed file 'resources/images/12/9.png'
1456Binary files resources/images/12/9.png 2014-02-10 19:26:40 +0000 and resources/images/12/9.png 1970-01-01 00:00:00 +0000 differ
1457=== removed directory 'resources/images/13'
1458=== removed file 'resources/images/13.png'
1459Binary files resources/images/13.png 2013-08-28 13:09:31 +0000 and resources/images/13.png 1970-01-01 00:00:00 +0000 differ
1460=== removed file 'resources/images/13/1.png'
1461Binary files resources/images/13/1.png 2013-12-15 18:17:56 +0000 and resources/images/13/1.png 1970-01-01 00:00:00 +0000 differ
1462=== removed file 'resources/images/13/10.png'
1463Binary files resources/images/13/10.png 2014-02-10 19:26:40 +0000 and resources/images/13/10.png 1970-01-01 00:00:00 +0000 differ
1464=== removed file 'resources/images/13/11.png'
1465Binary files resources/images/13/11.png 2014-02-10 19:26:40 +0000 and resources/images/13/11.png 1970-01-01 00:00:00 +0000 differ
1466=== removed file 'resources/images/13/12.png'
1467Binary files resources/images/13/12.png 2014-02-10 19:26:40 +0000 and resources/images/13/12.png 1970-01-01 00:00:00 +0000 differ
1468=== removed file 'resources/images/13/13.png'
1469Binary files resources/images/13/13.png 2014-02-10 19:26:40 +0000 and resources/images/13/13.png 1970-01-01 00:00:00 +0000 differ
1470=== removed file 'resources/images/13/14.png'
1471Binary files resources/images/13/14.png 2014-02-10 19:26:40 +0000 and resources/images/13/14.png 1970-01-01 00:00:00 +0000 differ
1472=== removed file 'resources/images/13/15.png'
1473Binary files resources/images/13/15.png 2014-02-10 19:26:40 +0000 and resources/images/13/15.png 1970-01-01 00:00:00 +0000 differ
1474=== removed file 'resources/images/13/16.png'
1475Binary files resources/images/13/16.png 2014-02-10 19:26:40 +0000 and resources/images/13/16.png 1970-01-01 00:00:00 +0000 differ
1476=== removed file 'resources/images/13/17.png'
1477Binary files resources/images/13/17.png 2014-02-10 19:26:40 +0000 and resources/images/13/17.png 1970-01-01 00:00:00 +0000 differ
1478=== removed file 'resources/images/13/18.png'
1479Binary files resources/images/13/18.png 2014-02-10 19:26:40 +0000 and resources/images/13/18.png 1970-01-01 00:00:00 +0000 differ
1480=== removed file 'resources/images/13/19.png'
1481Binary files resources/images/13/19.png 2014-02-10 19:26:40 +0000 and resources/images/13/19.png 1970-01-01 00:00:00 +0000 differ
1482=== removed file 'resources/images/13/2.png'
1483Binary files resources/images/13/2.png 2014-02-10 19:26:40 +0000 and resources/images/13/2.png 1970-01-01 00:00:00 +0000 differ
1484=== removed file 'resources/images/13/20.png'
1485Binary files resources/images/13/20.png 2014-02-10 19:26:40 +0000 and resources/images/13/20.png 1970-01-01 00:00:00 +0000 differ
1486=== removed file 'resources/images/13/21.png'
1487Binary files resources/images/13/21.png 2014-02-10 19:26:40 +0000 and resources/images/13/21.png 1970-01-01 00:00:00 +0000 differ
1488=== removed file 'resources/images/13/22.png'
1489Binary files resources/images/13/22.png 2014-02-10 19:26:40 +0000 and resources/images/13/22.png 1970-01-01 00:00:00 +0000 differ
1490=== removed file 'resources/images/13/23.png'
1491Binary files resources/images/13/23.png 2014-02-10 19:26:40 +0000 and resources/images/13/23.png 1970-01-01 00:00:00 +0000 differ
1492=== removed file 'resources/images/13/24.png'
1493Binary files resources/images/13/24.png 2014-02-10 19:26:40 +0000 and resources/images/13/24.png 1970-01-01 00:00:00 +0000 differ
1494=== removed file 'resources/images/13/25.png'
1495Binary files resources/images/13/25.png 2014-02-10 19:26:40 +0000 and resources/images/13/25.png 1970-01-01 00:00:00 +0000 differ
1496=== removed file 'resources/images/13/26.png'
1497Binary files resources/images/13/26.png 2014-02-10 19:26:40 +0000 and resources/images/13/26.png 1970-01-01 00:00:00 +0000 differ
1498=== removed file 'resources/images/13/27.png'
1499Binary files resources/images/13/27.png 2014-02-10 19:26:40 +0000 and resources/images/13/27.png 1970-01-01 00:00:00 +0000 differ
1500=== removed file 'resources/images/13/28.png'
1501Binary files resources/images/13/28.png 2014-02-10 19:26:40 +0000 and resources/images/13/28.png 1970-01-01 00:00:00 +0000 differ
1502=== removed file 'resources/images/13/29.png'
1503Binary files resources/images/13/29.png 2014-02-10 19:26:40 +0000 and resources/images/13/29.png 1970-01-01 00:00:00 +0000 differ
1504=== removed file 'resources/images/13/3.png'
1505Binary files resources/images/13/3.png 2014-02-10 19:26:40 +0000 and resources/images/13/3.png 1970-01-01 00:00:00 +0000 differ
1506=== removed file 'resources/images/13/30.png'
1507Binary files resources/images/13/30.png 2014-02-10 19:26:40 +0000 and resources/images/13/30.png 1970-01-01 00:00:00 +0000 differ
1508=== removed file 'resources/images/13/31.png'
1509Binary files resources/images/13/31.png 2014-02-10 19:26:40 +0000 and resources/images/13/31.png 1970-01-01 00:00:00 +0000 differ
1510=== removed file 'resources/images/13/32.png'
1511Binary files resources/images/13/32.png 2014-02-10 19:26:40 +0000 and resources/images/13/32.png 1970-01-01 00:00:00 +0000 differ
1512=== removed file 'resources/images/13/33.png'
1513Binary files resources/images/13/33.png 2014-02-10 19:26:40 +0000 and resources/images/13/33.png 1970-01-01 00:00:00 +0000 differ
1514=== removed file 'resources/images/13/34.png'
1515Binary files resources/images/13/34.png 2014-02-10 19:26:40 +0000 and resources/images/13/34.png 1970-01-01 00:00:00 +0000 differ
1516=== removed file 'resources/images/13/35.png'
1517Binary files resources/images/13/35.png 2014-02-10 19:26:40 +0000 and resources/images/13/35.png 1970-01-01 00:00:00 +0000 differ
1518=== removed file 'resources/images/13/36.png'
1519Binary files resources/images/13/36.png 2014-02-10 19:26:40 +0000 and resources/images/13/36.png 1970-01-01 00:00:00 +0000 differ
1520=== removed file 'resources/images/13/37.png'
1521Binary files resources/images/13/37.png 2014-02-10 19:26:40 +0000 and resources/images/13/37.png 1970-01-01 00:00:00 +0000 differ
1522=== removed file 'resources/images/13/38.png'
1523Binary files resources/images/13/38.png 2014-02-10 19:26:40 +0000 and resources/images/13/38.png 1970-01-01 00:00:00 +0000 differ
1524=== removed file 'resources/images/13/39.png'
1525Binary files resources/images/13/39.png 2014-02-10 19:26:40 +0000 and resources/images/13/39.png 1970-01-01 00:00:00 +0000 differ
1526=== removed file 'resources/images/13/4.png'
1527Binary files resources/images/13/4.png 2014-02-10 19:26:40 +0000 and resources/images/13/4.png 1970-01-01 00:00:00 +0000 differ
1528=== removed file 'resources/images/13/40.png'
1529Binary files resources/images/13/40.png 2014-02-10 19:26:40 +0000 and resources/images/13/40.png 1970-01-01 00:00:00 +0000 differ
1530=== removed file 'resources/images/13/41.png'
1531Binary files resources/images/13/41.png 2014-02-10 19:26:40 +0000 and resources/images/13/41.png 1970-01-01 00:00:00 +0000 differ
1532=== removed file 'resources/images/13/42.png'
1533Binary files resources/images/13/42.png 2014-02-10 19:26:40 +0000 and resources/images/13/42.png 1970-01-01 00:00:00 +0000 differ
1534=== removed file 'resources/images/13/43.png'
1535Binary files resources/images/13/43.png 2014-02-10 19:26:40 +0000 and resources/images/13/43.png 1970-01-01 00:00:00 +0000 differ
1536=== removed file 'resources/images/13/44.png'
1537Binary files resources/images/13/44.png 2014-02-10 19:26:40 +0000 and resources/images/13/44.png 1970-01-01 00:00:00 +0000 differ
1538=== removed file 'resources/images/13/45.png'
1539Binary files resources/images/13/45.png 2014-02-10 19:26:40 +0000 and resources/images/13/45.png 1970-01-01 00:00:00 +0000 differ
1540=== removed file 'resources/images/13/46.png'
1541Binary files resources/images/13/46.png 2014-02-10 19:26:40 +0000 and resources/images/13/46.png 1970-01-01 00:00:00 +0000 differ
1542=== removed file 'resources/images/13/47.png'
1543Binary files resources/images/13/47.png 2014-02-10 19:26:40 +0000 and resources/images/13/47.png 1970-01-01 00:00:00 +0000 differ
1544=== removed file 'resources/images/13/48.png'
1545Binary files resources/images/13/48.png 2014-02-10 19:26:40 +0000 and resources/images/13/48.png 1970-01-01 00:00:00 +0000 differ
1546=== removed file 'resources/images/13/49.png'
1547Binary files resources/images/13/49.png 2014-02-10 19:26:40 +0000 and resources/images/13/49.png 1970-01-01 00:00:00 +0000 differ
1548=== removed file 'resources/images/13/5.png'
1549Binary files resources/images/13/5.png 2014-02-10 19:26:40 +0000 and resources/images/13/5.png 1970-01-01 00:00:00 +0000 differ
1550=== removed file 'resources/images/13/50.png'
1551Binary files resources/images/13/50.png 2014-02-10 19:26:40 +0000 and resources/images/13/50.png 1970-01-01 00:00:00 +0000 differ
1552=== removed file 'resources/images/13/6.png'
1553Binary files resources/images/13/6.png 2014-02-10 19:26:40 +0000 and resources/images/13/6.png 1970-01-01 00:00:00 +0000 differ
1554=== removed file 'resources/images/13/7.png'
1555Binary files resources/images/13/7.png 2014-02-10 19:26:40 +0000 and resources/images/13/7.png 1970-01-01 00:00:00 +0000 differ
1556=== removed file 'resources/images/13/8.png'
1557Binary files resources/images/13/8.png 2014-02-10 19:26:40 +0000 and resources/images/13/8.png 1970-01-01 00:00:00 +0000 differ
1558=== removed file 'resources/images/13/9.png'
1559Binary files resources/images/13/9.png 2014-02-10 19:26:40 +0000 and resources/images/13/9.png 1970-01-01 00:00:00 +0000 differ
1560=== removed directory 'resources/images/14'
1561=== removed file 'resources/images/14.png'
1562Binary files resources/images/14.png 2013-08-28 13:09:31 +0000 and resources/images/14.png 1970-01-01 00:00:00 +0000 differ
1563=== removed file 'resources/images/14/1.png'
1564Binary files resources/images/14/1.png 2013-12-15 18:17:56 +0000 and resources/images/14/1.png 1970-01-01 00:00:00 +0000 differ
1565=== removed file 'resources/images/14/10.png'
1566Binary files resources/images/14/10.png 2014-02-10 19:26:40 +0000 and resources/images/14/10.png 1970-01-01 00:00:00 +0000 differ
1567=== removed file 'resources/images/14/11.png'
1568Binary files resources/images/14/11.png 2014-02-10 19:26:40 +0000 and resources/images/14/11.png 1970-01-01 00:00:00 +0000 differ
1569=== removed file 'resources/images/14/12.png'
1570Binary files resources/images/14/12.png 2014-02-10 19:26:40 +0000 and resources/images/14/12.png 1970-01-01 00:00:00 +0000 differ
1571=== removed file 'resources/images/14/13.png'
1572Binary files resources/images/14/13.png 2014-02-10 19:26:40 +0000 and resources/images/14/13.png 1970-01-01 00:00:00 +0000 differ
1573=== removed file 'resources/images/14/14.png'
1574Binary files resources/images/14/14.png 2014-02-10 19:26:40 +0000 and resources/images/14/14.png 1970-01-01 00:00:00 +0000 differ
1575=== removed file 'resources/images/14/15.png'
1576Binary files resources/images/14/15.png 2014-02-10 19:26:40 +0000 and resources/images/14/15.png 1970-01-01 00:00:00 +0000 differ
1577=== removed file 'resources/images/14/16.png'
1578Binary files resources/images/14/16.png 2014-02-10 19:26:40 +0000 and resources/images/14/16.png 1970-01-01 00:00:00 +0000 differ
1579=== removed file 'resources/images/14/17.png'
1580Binary files resources/images/14/17.png 2014-02-10 19:26:40 +0000 and resources/images/14/17.png 1970-01-01 00:00:00 +0000 differ
1581=== removed file 'resources/images/14/18.png'
1582Binary files resources/images/14/18.png 2014-02-10 19:26:40 +0000 and resources/images/14/18.png 1970-01-01 00:00:00 +0000 differ
1583=== removed file 'resources/images/14/19.png'
1584Binary files resources/images/14/19.png 2014-02-10 19:26:40 +0000 and resources/images/14/19.png 1970-01-01 00:00:00 +0000 differ
1585=== removed file 'resources/images/14/2.png'
1586Binary files resources/images/14/2.png 2014-02-10 19:26:40 +0000 and resources/images/14/2.png 1970-01-01 00:00:00 +0000 differ
1587=== removed file 'resources/images/14/20.png'
1588Binary files resources/images/14/20.png 2014-02-10 19:26:40 +0000 and resources/images/14/20.png 1970-01-01 00:00:00 +0000 differ
1589=== removed file 'resources/images/14/21.png'
1590Binary files resources/images/14/21.png 2014-02-10 19:26:40 +0000 and resources/images/14/21.png 1970-01-01 00:00:00 +0000 differ
1591=== removed file 'resources/images/14/22.png'
1592Binary files resources/images/14/22.png 2014-02-10 19:26:40 +0000 and resources/images/14/22.png 1970-01-01 00:00:00 +0000 differ
1593=== removed file 'resources/images/14/23.png'
1594Binary files resources/images/14/23.png 2014-02-10 19:26:40 +0000 and resources/images/14/23.png 1970-01-01 00:00:00 +0000 differ
1595=== removed file 'resources/images/14/24.png'
1596Binary files resources/images/14/24.png 2014-02-10 19:26:40 +0000 and resources/images/14/24.png 1970-01-01 00:00:00 +0000 differ
1597=== removed file 'resources/images/14/25.png'
1598Binary files resources/images/14/25.png 2014-02-10 19:26:40 +0000 and resources/images/14/25.png 1970-01-01 00:00:00 +0000 differ
1599=== removed file 'resources/images/14/26.png'
1600Binary files resources/images/14/26.png 2014-02-10 19:26:40 +0000 and resources/images/14/26.png 1970-01-01 00:00:00 +0000 differ
1601=== removed file 'resources/images/14/27.png'
1602Binary files resources/images/14/27.png 2014-02-10 19:26:40 +0000 and resources/images/14/27.png 1970-01-01 00:00:00 +0000 differ
1603=== removed file 'resources/images/14/28.png'
1604Binary files resources/images/14/28.png 2014-02-10 19:26:40 +0000 and resources/images/14/28.png 1970-01-01 00:00:00 +0000 differ
1605=== removed file 'resources/images/14/29.png'
1606Binary files resources/images/14/29.png 2014-02-10 19:26:40 +0000 and resources/images/14/29.png 1970-01-01 00:00:00 +0000 differ
1607=== removed file 'resources/images/14/3.png'
1608Binary files resources/images/14/3.png 2014-02-10 19:26:40 +0000 and resources/images/14/3.png 1970-01-01 00:00:00 +0000 differ
1609=== removed file 'resources/images/14/30.png'
1610Binary files resources/images/14/30.png 2014-02-10 19:26:40 +0000 and resources/images/14/30.png 1970-01-01 00:00:00 +0000 differ
1611=== removed file 'resources/images/14/31.png'
1612Binary files resources/images/14/31.png 2014-02-10 19:26:40 +0000 and resources/images/14/31.png 1970-01-01 00:00:00 +0000 differ
1613=== removed file 'resources/images/14/32.png'
1614Binary files resources/images/14/32.png 2014-02-10 19:26:40 +0000 and resources/images/14/32.png 1970-01-01 00:00:00 +0000 differ
1615=== removed file 'resources/images/14/33.png'
1616Binary files resources/images/14/33.png 2014-02-10 19:26:40 +0000 and resources/images/14/33.png 1970-01-01 00:00:00 +0000 differ
1617=== removed file 'resources/images/14/34.png'
1618Binary files resources/images/14/34.png 2014-02-10 19:26:40 +0000 and resources/images/14/34.png 1970-01-01 00:00:00 +0000 differ
1619=== removed file 'resources/images/14/35.png'
1620Binary files resources/images/14/35.png 2014-02-10 19:26:40 +0000 and resources/images/14/35.png 1970-01-01 00:00:00 +0000 differ
1621=== removed file 'resources/images/14/36.png'
1622Binary files resources/images/14/36.png 2014-02-10 19:26:40 +0000 and resources/images/14/36.png 1970-01-01 00:00:00 +0000 differ
1623=== removed file 'resources/images/14/37.png'
1624Binary files resources/images/14/37.png 2014-02-10 19:26:40 +0000 and resources/images/14/37.png 1970-01-01 00:00:00 +0000 differ
1625=== removed file 'resources/images/14/38.png'
1626Binary files resources/images/14/38.png 2014-02-10 19:26:40 +0000 and resources/images/14/38.png 1970-01-01 00:00:00 +0000 differ
1627=== removed file 'resources/images/14/39.png'
1628Binary files resources/images/14/39.png 2014-02-10 19:26:40 +0000 and resources/images/14/39.png 1970-01-01 00:00:00 +0000 differ
1629=== removed file 'resources/images/14/4.png'
1630Binary files resources/images/14/4.png 2014-02-10 19:26:40 +0000 and resources/images/14/4.png 1970-01-01 00:00:00 +0000 differ
1631=== removed file 'resources/images/14/40.png'
1632Binary files resources/images/14/40.png 2014-02-10 19:26:40 +0000 and resources/images/14/40.png 1970-01-01 00:00:00 +0000 differ
1633=== removed file 'resources/images/14/41.png'
1634Binary files resources/images/14/41.png 2014-02-10 19:26:40 +0000 and resources/images/14/41.png 1970-01-01 00:00:00 +0000 differ
1635=== removed file 'resources/images/14/42.png'
1636Binary files resources/images/14/42.png 2014-02-10 19:26:40 +0000 and resources/images/14/42.png 1970-01-01 00:00:00 +0000 differ
1637=== removed file 'resources/images/14/43.png'
1638Binary files resources/images/14/43.png 2014-02-10 19:26:40 +0000 and resources/images/14/43.png 1970-01-01 00:00:00 +0000 differ
1639=== removed file 'resources/images/14/44.png'
1640Binary files resources/images/14/44.png 2014-02-10 19:26:40 +0000 and resources/images/14/44.png 1970-01-01 00:00:00 +0000 differ
1641=== removed file 'resources/images/14/45.png'
1642Binary files resources/images/14/45.png 2014-02-10 19:26:40 +0000 and resources/images/14/45.png 1970-01-01 00:00:00 +0000 differ
1643=== removed file 'resources/images/14/46.png'
1644Binary files resources/images/14/46.png 2014-02-10 19:26:40 +0000 and resources/images/14/46.png 1970-01-01 00:00:00 +0000 differ
1645=== removed file 'resources/images/14/47.png'
1646Binary files resources/images/14/47.png 2014-02-10 19:26:40 +0000 and resources/images/14/47.png 1970-01-01 00:00:00 +0000 differ
1647=== removed file 'resources/images/14/48.png'
1648Binary files resources/images/14/48.png 2014-02-10 19:26:40 +0000 and resources/images/14/48.png 1970-01-01 00:00:00 +0000 differ
1649=== removed file 'resources/images/14/49.png'
1650Binary files resources/images/14/49.png 2014-02-10 19:26:40 +0000 and resources/images/14/49.png 1970-01-01 00:00:00 +0000 differ
1651=== removed file 'resources/images/14/5.png'
1652Binary files resources/images/14/5.png 2014-02-10 19:26:40 +0000 and resources/images/14/5.png 1970-01-01 00:00:00 +0000 differ
1653=== removed file 'resources/images/14/50.png'
1654Binary files resources/images/14/50.png 2014-02-10 19:26:40 +0000 and resources/images/14/50.png 1970-01-01 00:00:00 +0000 differ
1655=== removed file 'resources/images/14/6.png'
1656Binary files resources/images/14/6.png 2014-02-10 19:26:40 +0000 and resources/images/14/6.png 1970-01-01 00:00:00 +0000 differ
1657=== removed file 'resources/images/14/7.png'
1658Binary files resources/images/14/7.png 2014-02-10 19:26:40 +0000 and resources/images/14/7.png 1970-01-01 00:00:00 +0000 differ
1659=== removed file 'resources/images/14/8.png'
1660Binary files resources/images/14/8.png 2014-02-10 19:26:40 +0000 and resources/images/14/8.png 1970-01-01 00:00:00 +0000 differ
1661=== removed file 'resources/images/14/9.png'
1662Binary files resources/images/14/9.png 2014-02-10 19:26:40 +0000 and resources/images/14/9.png 1970-01-01 00:00:00 +0000 differ
1663=== added directory 'resources/images/cloud'
1664=== added file 'resources/images/cloud.png'
1665Binary files resources/images/cloud.png 1970-01-01 00:00:00 +0000 and resources/images/cloud.png 2014-03-26 11:19:27 +0000 differ
1666=== added file 'resources/images/cloud/1.png'
1667Binary files resources/images/cloud/1.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/1.png 2014-03-26 11:19:27 +0000 differ
1668=== added file 'resources/images/cloud/10.png'
1669Binary files resources/images/cloud/10.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/10.png 2014-03-26 11:19:27 +0000 differ
1670=== added file 'resources/images/cloud/11.png'
1671Binary files resources/images/cloud/11.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/11.png 2014-03-26 11:19:27 +0000 differ
1672=== added file 'resources/images/cloud/12.png'
1673Binary files resources/images/cloud/12.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/12.png 2014-03-26 11:19:27 +0000 differ
1674=== added file 'resources/images/cloud/13.png'
1675Binary files resources/images/cloud/13.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/13.png 2014-03-26 11:19:27 +0000 differ
1676=== added file 'resources/images/cloud/14.png'
1677Binary files resources/images/cloud/14.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/14.png 2014-03-26 11:19:27 +0000 differ
1678=== added file 'resources/images/cloud/15.png'
1679Binary files resources/images/cloud/15.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/15.png 2014-03-26 11:19:27 +0000 differ
1680=== added file 'resources/images/cloud/16.png'
1681Binary files resources/images/cloud/16.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/16.png 2014-03-26 11:19:27 +0000 differ
1682=== added file 'resources/images/cloud/17.png'
1683Binary files resources/images/cloud/17.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/17.png 2014-03-26 11:19:27 +0000 differ
1684=== added file 'resources/images/cloud/18.png'
1685Binary files resources/images/cloud/18.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/18.png 2014-03-26 11:19:27 +0000 differ
1686=== added file 'resources/images/cloud/19.png'
1687Binary files resources/images/cloud/19.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/19.png 2014-03-26 11:19:27 +0000 differ
1688=== added file 'resources/images/cloud/2.png'
1689Binary files resources/images/cloud/2.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/2.png 2014-03-26 11:19:27 +0000 differ
1690=== added file 'resources/images/cloud/20.png'
1691Binary files resources/images/cloud/20.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/20.png 2014-03-26 11:19:27 +0000 differ
1692=== added file 'resources/images/cloud/21.png'
1693Binary files resources/images/cloud/21.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/21.png 2014-03-26 11:19:27 +0000 differ
1694=== added file 'resources/images/cloud/22.png'
1695Binary files resources/images/cloud/22.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/22.png 2014-03-26 11:19:27 +0000 differ
1696=== added file 'resources/images/cloud/23.png'
1697Binary files resources/images/cloud/23.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/23.png 2014-03-26 11:19:27 +0000 differ
1698=== added file 'resources/images/cloud/24.png'
1699Binary files resources/images/cloud/24.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/24.png 2014-03-26 11:19:27 +0000 differ
1700=== added file 'resources/images/cloud/25.png'
1701Binary files resources/images/cloud/25.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/25.png 2014-03-26 11:19:27 +0000 differ
1702=== added file 'resources/images/cloud/26.png'
1703Binary files resources/images/cloud/26.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/26.png 2014-03-26 11:19:27 +0000 differ
1704=== added file 'resources/images/cloud/27.png'
1705Binary files resources/images/cloud/27.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/27.png 2014-03-26 11:19:27 +0000 differ
1706=== added file 'resources/images/cloud/28.png'
1707Binary files resources/images/cloud/28.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/28.png 2014-03-26 11:19:27 +0000 differ
1708=== added file 'resources/images/cloud/29.png'
1709Binary files resources/images/cloud/29.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/29.png 2014-03-26 11:19:27 +0000 differ
1710=== added file 'resources/images/cloud/3.png'
1711Binary files resources/images/cloud/3.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/3.png 2014-03-26 11:19:27 +0000 differ
1712=== added file 'resources/images/cloud/30.png'
1713Binary files resources/images/cloud/30.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/30.png 2014-03-26 11:19:27 +0000 differ
1714=== added file 'resources/images/cloud/31.png'
1715Binary files resources/images/cloud/31.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/31.png 2014-03-26 11:19:27 +0000 differ
1716=== added file 'resources/images/cloud/32.png'
1717Binary files resources/images/cloud/32.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/32.png 2014-03-26 11:19:27 +0000 differ
1718=== added file 'resources/images/cloud/33.png'
1719Binary files resources/images/cloud/33.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/33.png 2014-03-26 11:19:27 +0000 differ
1720=== added file 'resources/images/cloud/34.png'
1721Binary files resources/images/cloud/34.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/34.png 2014-03-26 11:19:27 +0000 differ
1722=== added file 'resources/images/cloud/35.png'
1723Binary files resources/images/cloud/35.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/35.png 2014-03-26 11:19:27 +0000 differ
1724=== added file 'resources/images/cloud/36.png'
1725Binary files resources/images/cloud/36.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/36.png 2014-03-26 11:19:27 +0000 differ
1726=== added file 'resources/images/cloud/37.png'
1727Binary files resources/images/cloud/37.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/37.png 2014-03-26 11:19:27 +0000 differ
1728=== added file 'resources/images/cloud/38.png'
1729Binary files resources/images/cloud/38.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/38.png 2014-03-26 11:19:27 +0000 differ
1730=== added file 'resources/images/cloud/39.png'
1731Binary files resources/images/cloud/39.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/39.png 2014-03-26 11:19:27 +0000 differ
1732=== added file 'resources/images/cloud/4.png'
1733Binary files resources/images/cloud/4.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/4.png 2014-03-26 11:19:27 +0000 differ
1734=== added file 'resources/images/cloud/40.png'
1735Binary files resources/images/cloud/40.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/40.png 2014-03-26 11:19:27 +0000 differ
1736=== added file 'resources/images/cloud/41.png'
1737Binary files resources/images/cloud/41.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/41.png 2014-03-26 11:19:27 +0000 differ
1738=== added file 'resources/images/cloud/42.png'
1739Binary files resources/images/cloud/42.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/42.png 2014-03-26 11:19:27 +0000 differ
1740=== added file 'resources/images/cloud/43.png'
1741Binary files resources/images/cloud/43.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/43.png 2014-03-26 11:19:27 +0000 differ
1742=== added file 'resources/images/cloud/44.png'
1743Binary files resources/images/cloud/44.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/44.png 2014-03-26 11:19:27 +0000 differ
1744=== added file 'resources/images/cloud/45.png'
1745Binary files resources/images/cloud/45.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/45.png 2014-03-26 11:19:27 +0000 differ
1746=== added file 'resources/images/cloud/46.png'
1747Binary files resources/images/cloud/46.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/46.png 2014-03-26 11:19:27 +0000 differ
1748=== added file 'resources/images/cloud/47.png'
1749Binary files resources/images/cloud/47.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/47.png 2014-03-26 11:19:27 +0000 differ
1750=== added file 'resources/images/cloud/48.png'
1751Binary files resources/images/cloud/48.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/48.png 2014-03-26 11:19:27 +0000 differ
1752=== added file 'resources/images/cloud/49.png'
1753Binary files resources/images/cloud/49.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/49.png 2014-03-26 11:19:27 +0000 differ
1754=== added file 'resources/images/cloud/5.png'
1755Binary files resources/images/cloud/5.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/5.png 2014-03-26 11:19:27 +0000 differ
1756=== added file 'resources/images/cloud/50.png'
1757Binary files resources/images/cloud/50.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/50.png 2014-03-26 11:19:27 +0000 differ
1758=== added file 'resources/images/cloud/6.png'
1759Binary files resources/images/cloud/6.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/6.png 2014-03-26 11:19:27 +0000 differ
1760=== added file 'resources/images/cloud/7.png'
1761Binary files resources/images/cloud/7.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/7.png 2014-03-26 11:19:27 +0000 differ
1762=== added file 'resources/images/cloud/8.png'
1763Binary files resources/images/cloud/8.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/8.png 2014-03-26 11:19:27 +0000 differ
1764=== added file 'resources/images/cloud/9.png'
1765Binary files resources/images/cloud/9.png 1970-01-01 00:00:00 +0000 and resources/images/cloud/9.png 2014-03-26 11:19:27 +0000 differ
1766=== added directory 'resources/images/cloud_moon'
1767=== added file 'resources/images/cloud_moon.png'
1768Binary files resources/images/cloud_moon.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon.png 2014-03-26 11:19:27 +0000 differ
1769=== added file 'resources/images/cloud_moon/1.png'
1770Binary files resources/images/cloud_moon/1.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/1.png 2014-03-26 11:19:27 +0000 differ
1771=== added file 'resources/images/cloud_moon/10.png'
1772Binary files resources/images/cloud_moon/10.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/10.png 2014-03-26 11:19:27 +0000 differ
1773=== added file 'resources/images/cloud_moon/11.png'
1774Binary files resources/images/cloud_moon/11.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/11.png 2014-03-26 11:19:27 +0000 differ
1775=== added file 'resources/images/cloud_moon/12.png'
1776Binary files resources/images/cloud_moon/12.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/12.png 2014-03-26 11:19:27 +0000 differ
1777=== added file 'resources/images/cloud_moon/13.png'
1778Binary files resources/images/cloud_moon/13.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/13.png 2014-03-26 11:19:27 +0000 differ
1779=== added file 'resources/images/cloud_moon/14.png'
1780Binary files resources/images/cloud_moon/14.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/14.png 2014-03-26 11:19:27 +0000 differ
1781=== added file 'resources/images/cloud_moon/15.png'
1782Binary files resources/images/cloud_moon/15.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/15.png 2014-03-26 11:19:27 +0000 differ
1783=== added file 'resources/images/cloud_moon/16.png'
1784Binary files resources/images/cloud_moon/16.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/16.png 2014-03-26 11:19:27 +0000 differ
1785=== added file 'resources/images/cloud_moon/17.png'
1786Binary files resources/images/cloud_moon/17.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/17.png 2014-03-26 11:19:27 +0000 differ
1787=== added file 'resources/images/cloud_moon/18.png'
1788Binary files resources/images/cloud_moon/18.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/18.png 2014-03-26 11:19:27 +0000 differ
1789=== added file 'resources/images/cloud_moon/19.png'
1790Binary files resources/images/cloud_moon/19.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/19.png 2014-03-26 11:19:27 +0000 differ
1791=== added file 'resources/images/cloud_moon/2.png'
1792Binary files resources/images/cloud_moon/2.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/2.png 2014-03-26 11:19:27 +0000 differ
1793=== added file 'resources/images/cloud_moon/20.png'
1794Binary files resources/images/cloud_moon/20.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/20.png 2014-03-26 11:19:27 +0000 differ
1795=== added file 'resources/images/cloud_moon/21.png'
1796Binary files resources/images/cloud_moon/21.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/21.png 2014-03-26 11:19:27 +0000 differ
1797=== added file 'resources/images/cloud_moon/22.png'
1798Binary files resources/images/cloud_moon/22.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/22.png 2014-03-26 11:19:27 +0000 differ
1799=== added file 'resources/images/cloud_moon/23.png'
1800Binary files resources/images/cloud_moon/23.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/23.png 2014-03-26 11:19:27 +0000 differ
1801=== added file 'resources/images/cloud_moon/24.png'
1802Binary files resources/images/cloud_moon/24.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/24.png 2014-03-26 11:19:27 +0000 differ
1803=== added file 'resources/images/cloud_moon/25.png'
1804Binary files resources/images/cloud_moon/25.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/25.png 2014-03-26 11:19:27 +0000 differ
1805=== added file 'resources/images/cloud_moon/26.png'
1806Binary files resources/images/cloud_moon/26.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/26.png 2014-03-26 11:19:27 +0000 differ
1807=== added file 'resources/images/cloud_moon/27.png'
1808Binary files resources/images/cloud_moon/27.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/27.png 2014-03-26 11:19:27 +0000 differ
1809=== added file 'resources/images/cloud_moon/28.png'
1810Binary files resources/images/cloud_moon/28.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/28.png 2014-03-26 11:19:27 +0000 differ
1811=== added file 'resources/images/cloud_moon/29.png'
1812Binary files resources/images/cloud_moon/29.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/29.png 2014-03-26 11:19:27 +0000 differ
1813=== added file 'resources/images/cloud_moon/3.png'
1814Binary files resources/images/cloud_moon/3.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/3.png 2014-03-26 11:19:27 +0000 differ
1815=== added file 'resources/images/cloud_moon/30.png'
1816Binary files resources/images/cloud_moon/30.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/30.png 2014-03-26 11:19:27 +0000 differ
1817=== added file 'resources/images/cloud_moon/31.png'
1818Binary files resources/images/cloud_moon/31.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/31.png 2014-03-26 11:19:27 +0000 differ
1819=== added file 'resources/images/cloud_moon/32.png'
1820Binary files resources/images/cloud_moon/32.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/32.png 2014-03-26 11:19:27 +0000 differ
1821=== added file 'resources/images/cloud_moon/33.png'
1822Binary files resources/images/cloud_moon/33.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/33.png 2014-03-26 11:19:27 +0000 differ
1823=== added file 'resources/images/cloud_moon/34.png'
1824Binary files resources/images/cloud_moon/34.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/34.png 2014-03-26 11:19:27 +0000 differ
1825=== added file 'resources/images/cloud_moon/35.png'
1826Binary files resources/images/cloud_moon/35.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/35.png 2014-03-26 11:19:27 +0000 differ
1827=== added file 'resources/images/cloud_moon/36.png'
1828Binary files resources/images/cloud_moon/36.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/36.png 2014-03-26 11:19:27 +0000 differ
1829=== added file 'resources/images/cloud_moon/37.png'
1830Binary files resources/images/cloud_moon/37.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/37.png 2014-03-26 11:19:27 +0000 differ
1831=== added file 'resources/images/cloud_moon/38.png'
1832Binary files resources/images/cloud_moon/38.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/38.png 2014-03-26 11:19:27 +0000 differ
1833=== added file 'resources/images/cloud_moon/39.png'
1834Binary files resources/images/cloud_moon/39.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/39.png 2014-03-26 11:19:27 +0000 differ
1835=== added file 'resources/images/cloud_moon/4.png'
1836Binary files resources/images/cloud_moon/4.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/4.png 2014-03-26 11:19:27 +0000 differ
1837=== added file 'resources/images/cloud_moon/40.png'
1838Binary files resources/images/cloud_moon/40.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/40.png 2014-03-26 11:19:27 +0000 differ
1839=== added file 'resources/images/cloud_moon/41.png'
1840Binary files resources/images/cloud_moon/41.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/41.png 2014-03-26 11:19:27 +0000 differ
1841=== added file 'resources/images/cloud_moon/42.png'
1842Binary files resources/images/cloud_moon/42.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/42.png 2014-03-26 11:19:27 +0000 differ
1843=== added file 'resources/images/cloud_moon/43.png'
1844Binary files resources/images/cloud_moon/43.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/43.png 2014-03-26 11:19:27 +0000 differ
1845=== added file 'resources/images/cloud_moon/44.png'
1846Binary files resources/images/cloud_moon/44.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/44.png 2014-03-26 11:19:27 +0000 differ
1847=== added file 'resources/images/cloud_moon/45.png'
1848Binary files resources/images/cloud_moon/45.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/45.png 2014-03-26 11:19:27 +0000 differ
1849=== added file 'resources/images/cloud_moon/46.png'
1850Binary files resources/images/cloud_moon/46.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/46.png 2014-03-26 11:19:27 +0000 differ
1851=== added file 'resources/images/cloud_moon/47.png'
1852Binary files resources/images/cloud_moon/47.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/47.png 2014-03-26 11:19:27 +0000 differ
1853=== added file 'resources/images/cloud_moon/48.png'
1854Binary files resources/images/cloud_moon/48.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/48.png 2014-03-26 11:19:27 +0000 differ
1855=== added file 'resources/images/cloud_moon/49.png'
1856Binary files resources/images/cloud_moon/49.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/49.png 2014-03-26 11:19:27 +0000 differ
1857=== added file 'resources/images/cloud_moon/5.png'
1858Binary files resources/images/cloud_moon/5.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/5.png 2014-03-26 11:19:27 +0000 differ
1859=== added file 'resources/images/cloud_moon/50.png'
1860Binary files resources/images/cloud_moon/50.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/50.png 2014-03-26 11:19:27 +0000 differ
1861=== added file 'resources/images/cloud_moon/6.png'
1862Binary files resources/images/cloud_moon/6.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/6.png 2014-03-26 11:19:27 +0000 differ
1863=== added file 'resources/images/cloud_moon/7.png'
1864Binary files resources/images/cloud_moon/7.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/7.png 2014-03-26 11:19:27 +0000 differ
1865=== added file 'resources/images/cloud_moon/8.png'
1866Binary files resources/images/cloud_moon/8.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/8.png 2014-03-26 11:19:27 +0000 differ
1867=== added file 'resources/images/cloud_moon/9.png'
1868Binary files resources/images/cloud_moon/9.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_moon/9.png 2014-03-26 11:19:27 +0000 differ
1869=== added directory 'resources/images/cloud_sun'
1870=== added file 'resources/images/cloud_sun.png'
1871Binary files resources/images/cloud_sun.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun.png 2014-03-26 11:19:27 +0000 differ
1872=== added file 'resources/images/cloud_sun/1.png'
1873Binary files resources/images/cloud_sun/1.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/1.png 2014-03-26 11:19:27 +0000 differ
1874=== added file 'resources/images/cloud_sun/10.png'
1875Binary files resources/images/cloud_sun/10.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/10.png 2014-03-26 11:19:27 +0000 differ
1876=== added file 'resources/images/cloud_sun/11.png'
1877Binary files resources/images/cloud_sun/11.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/11.png 2014-03-26 11:19:27 +0000 differ
1878=== added file 'resources/images/cloud_sun/12.png'
1879Binary files resources/images/cloud_sun/12.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/12.png 2014-03-26 11:19:27 +0000 differ
1880=== added file 'resources/images/cloud_sun/13.png'
1881Binary files resources/images/cloud_sun/13.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/13.png 2014-03-26 11:19:27 +0000 differ
1882=== added file 'resources/images/cloud_sun/14.png'
1883Binary files resources/images/cloud_sun/14.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/14.png 2014-03-26 11:19:27 +0000 differ
1884=== added file 'resources/images/cloud_sun/15.png'
1885Binary files resources/images/cloud_sun/15.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/15.png 2014-03-26 11:19:27 +0000 differ
1886=== added file 'resources/images/cloud_sun/16.png'
1887Binary files resources/images/cloud_sun/16.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/16.png 2014-03-26 11:19:27 +0000 differ
1888=== added file 'resources/images/cloud_sun/17.png'
1889Binary files resources/images/cloud_sun/17.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/17.png 2014-03-26 11:19:27 +0000 differ
1890=== added file 'resources/images/cloud_sun/18.png'
1891Binary files resources/images/cloud_sun/18.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/18.png 2014-03-26 11:19:27 +0000 differ
1892=== added file 'resources/images/cloud_sun/19.png'
1893Binary files resources/images/cloud_sun/19.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/19.png 2014-03-26 11:19:27 +0000 differ
1894=== added file 'resources/images/cloud_sun/2.png'
1895Binary files resources/images/cloud_sun/2.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/2.png 2014-03-26 11:19:27 +0000 differ
1896=== added file 'resources/images/cloud_sun/20.png'
1897Binary files resources/images/cloud_sun/20.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/20.png 2014-03-26 11:19:27 +0000 differ
1898=== added file 'resources/images/cloud_sun/21.png'
1899Binary files resources/images/cloud_sun/21.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/21.png 2014-03-26 11:19:27 +0000 differ
1900=== added file 'resources/images/cloud_sun/22.png'
1901Binary files resources/images/cloud_sun/22.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/22.png 2014-03-26 11:19:27 +0000 differ
1902=== added file 'resources/images/cloud_sun/23.png'
1903Binary files resources/images/cloud_sun/23.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/23.png 2014-03-26 11:19:27 +0000 differ
1904=== added file 'resources/images/cloud_sun/24.png'
1905Binary files resources/images/cloud_sun/24.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/24.png 2014-03-26 11:19:27 +0000 differ
1906=== added file 'resources/images/cloud_sun/25.png'
1907Binary files resources/images/cloud_sun/25.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/25.png 2014-03-26 11:19:27 +0000 differ
1908=== added file 'resources/images/cloud_sun/26.png'
1909Binary files resources/images/cloud_sun/26.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/26.png 2014-03-26 11:19:27 +0000 differ
1910=== added file 'resources/images/cloud_sun/27.png'
1911Binary files resources/images/cloud_sun/27.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/27.png 2014-03-26 11:19:27 +0000 differ
1912=== added file 'resources/images/cloud_sun/28.png'
1913Binary files resources/images/cloud_sun/28.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/28.png 2014-03-26 11:19:27 +0000 differ
1914=== added file 'resources/images/cloud_sun/29.png'
1915Binary files resources/images/cloud_sun/29.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/29.png 2014-03-26 11:19:27 +0000 differ
1916=== added file 'resources/images/cloud_sun/3.png'
1917Binary files resources/images/cloud_sun/3.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/3.png 2014-03-26 11:19:27 +0000 differ
1918=== added file 'resources/images/cloud_sun/30.png'
1919Binary files resources/images/cloud_sun/30.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/30.png 2014-03-26 11:19:27 +0000 differ
1920=== added file 'resources/images/cloud_sun/31.png'
1921Binary files resources/images/cloud_sun/31.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/31.png 2014-03-26 11:19:27 +0000 differ
1922=== added file 'resources/images/cloud_sun/32.png'
1923Binary files resources/images/cloud_sun/32.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/32.png 2014-03-26 11:19:27 +0000 differ
1924=== added file 'resources/images/cloud_sun/33.png'
1925Binary files resources/images/cloud_sun/33.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/33.png 2014-03-26 11:19:27 +0000 differ
1926=== added file 'resources/images/cloud_sun/34.png'
1927Binary files resources/images/cloud_sun/34.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/34.png 2014-03-26 11:19:27 +0000 differ
1928=== added file 'resources/images/cloud_sun/35.png'
1929Binary files resources/images/cloud_sun/35.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/35.png 2014-03-26 11:19:27 +0000 differ
1930=== added file 'resources/images/cloud_sun/36.png'
1931Binary files resources/images/cloud_sun/36.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/36.png 2014-03-26 11:19:27 +0000 differ
1932=== added file 'resources/images/cloud_sun/37.png'
1933Binary files resources/images/cloud_sun/37.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/37.png 2014-03-26 11:19:27 +0000 differ
1934=== added file 'resources/images/cloud_sun/38.png'
1935Binary files resources/images/cloud_sun/38.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/38.png 2014-03-26 11:19:27 +0000 differ
1936=== added file 'resources/images/cloud_sun/39.png'
1937Binary files resources/images/cloud_sun/39.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/39.png 2014-03-26 11:19:27 +0000 differ
1938=== added file 'resources/images/cloud_sun/4.png'
1939Binary files resources/images/cloud_sun/4.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/4.png 2014-03-26 11:19:27 +0000 differ
1940=== added file 'resources/images/cloud_sun/40.png'
1941Binary files resources/images/cloud_sun/40.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/40.png 2014-03-26 11:19:27 +0000 differ
1942=== added file 'resources/images/cloud_sun/41.png'
1943Binary files resources/images/cloud_sun/41.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/41.png 2014-03-26 11:19:27 +0000 differ
1944=== added file 'resources/images/cloud_sun/42.png'
1945Binary files resources/images/cloud_sun/42.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/42.png 2014-03-26 11:19:27 +0000 differ
1946=== added file 'resources/images/cloud_sun/43.png'
1947Binary files resources/images/cloud_sun/43.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/43.png 2014-03-26 11:19:27 +0000 differ
1948=== added file 'resources/images/cloud_sun/44.png'
1949Binary files resources/images/cloud_sun/44.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/44.png 2014-03-26 11:19:27 +0000 differ
1950=== added file 'resources/images/cloud_sun/45.png'
1951Binary files resources/images/cloud_sun/45.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/45.png 2014-03-26 11:19:27 +0000 differ
1952=== added file 'resources/images/cloud_sun/46.png'
1953Binary files resources/images/cloud_sun/46.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/46.png 2014-03-26 11:19:27 +0000 differ
1954=== added file 'resources/images/cloud_sun/47.png'
1955Binary files resources/images/cloud_sun/47.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/47.png 2014-03-26 11:19:27 +0000 differ
1956=== added file 'resources/images/cloud_sun/48.png'
1957Binary files resources/images/cloud_sun/48.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/48.png 2014-03-26 11:19:27 +0000 differ
1958=== added file 'resources/images/cloud_sun/49.png'
1959Binary files resources/images/cloud_sun/49.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/49.png 2014-03-26 11:19:27 +0000 differ
1960=== added file 'resources/images/cloud_sun/5.png'
1961Binary files resources/images/cloud_sun/5.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/5.png 2014-03-26 11:19:27 +0000 differ
1962=== added file 'resources/images/cloud_sun/50.png'
1963Binary files resources/images/cloud_sun/50.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/50.png 2014-03-26 11:19:27 +0000 differ
1964=== added file 'resources/images/cloud_sun/6.png'
1965Binary files resources/images/cloud_sun/6.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/6.png 2014-03-26 11:19:27 +0000 differ
1966=== added file 'resources/images/cloud_sun/7.png'
1967Binary files resources/images/cloud_sun/7.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/7.png 2014-03-26 11:19:27 +0000 differ
1968=== added file 'resources/images/cloud_sun/8.png'
1969Binary files resources/images/cloud_sun/8.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/8.png 2014-03-26 11:19:27 +0000 differ
1970=== added file 'resources/images/cloud_sun/9.png'
1971Binary files resources/images/cloud_sun/9.png 1970-01-01 00:00:00 +0000 and resources/images/cloud_sun/9.png 2014-03-26 11:19:27 +0000 differ
1972=== added directory 'resources/images/fog'
1973=== added file 'resources/images/fog.png'
1974Binary files resources/images/fog.png 1970-01-01 00:00:00 +0000 and resources/images/fog.png 2014-03-26 11:19:27 +0000 differ
1975=== added file 'resources/images/fog/1.png'
1976Binary files resources/images/fog/1.png 1970-01-01 00:00:00 +0000 and resources/images/fog/1.png 2014-03-26 11:19:27 +0000 differ
1977=== added file 'resources/images/fog/10.png'
1978Binary files resources/images/fog/10.png 1970-01-01 00:00:00 +0000 and resources/images/fog/10.png 2014-03-26 11:19:27 +0000 differ
1979=== added file 'resources/images/fog/11.png'
1980Binary files resources/images/fog/11.png 1970-01-01 00:00:00 +0000 and resources/images/fog/11.png 2014-03-26 11:19:27 +0000 differ
1981=== added file 'resources/images/fog/12.png'
1982Binary files resources/images/fog/12.png 1970-01-01 00:00:00 +0000 and resources/images/fog/12.png 2014-03-26 11:19:27 +0000 differ
1983=== added file 'resources/images/fog/13.png'
1984Binary files resources/images/fog/13.png 1970-01-01 00:00:00 +0000 and resources/images/fog/13.png 2014-03-26 11:19:27 +0000 differ
1985=== added file 'resources/images/fog/14.png'
1986Binary files resources/images/fog/14.png 1970-01-01 00:00:00 +0000 and resources/images/fog/14.png 2014-03-26 11:19:27 +0000 differ
1987=== added file 'resources/images/fog/15.png'
1988Binary files resources/images/fog/15.png 1970-01-01 00:00:00 +0000 and resources/images/fog/15.png 2014-03-26 11:19:27 +0000 differ
1989=== added file 'resources/images/fog/16.png'
1990Binary files resources/images/fog/16.png 1970-01-01 00:00:00 +0000 and resources/images/fog/16.png 2014-03-26 11:19:27 +0000 differ
1991=== added file 'resources/images/fog/17.png'
1992Binary files resources/images/fog/17.png 1970-01-01 00:00:00 +0000 and resources/images/fog/17.png 2014-03-26 11:19:27 +0000 differ
1993=== added file 'resources/images/fog/18.png'
1994Binary files resources/images/fog/18.png 1970-01-01 00:00:00 +0000 and resources/images/fog/18.png 2014-03-26 11:19:27 +0000 differ
1995=== added file 'resources/images/fog/19.png'
1996Binary files resources/images/fog/19.png 1970-01-01 00:00:00 +0000 and resources/images/fog/19.png 2014-03-26 11:19:27 +0000 differ
1997=== added file 'resources/images/fog/2.png'
1998Binary files resources/images/fog/2.png 1970-01-01 00:00:00 +0000 and resources/images/fog/2.png 2014-03-26 11:19:27 +0000 differ
1999=== added file 'resources/images/fog/20.png'
2000Binary files resources/images/fog/20.png 1970-01-01 00:00:00 +0000 and resources/images/fog/20.png 2014-03-26 11:19:27 +0000 differ
2001=== added file 'resources/images/fog/21.png'
2002Binary files resources/images/fog/21.png 1970-01-01 00:00:00 +0000 and resources/images/fog/21.png 2014-03-26 11:19:27 +0000 differ
2003=== added file 'resources/images/fog/22.png'
2004Binary files resources/images/fog/22.png 1970-01-01 00:00:00 +0000 and resources/images/fog/22.png 2014-03-26 11:19:27 +0000 differ
2005=== added file 'resources/images/fog/23.png'
2006Binary files resources/images/fog/23.png 1970-01-01 00:00:00 +0000 and resources/images/fog/23.png 2014-03-26 11:19:27 +0000 differ
2007=== added file 'resources/images/fog/24.png'
2008Binary files resources/images/fog/24.png 1970-01-01 00:00:00 +0000 and resources/images/fog/24.png 2014-03-26 11:19:27 +0000 differ
2009=== added file 'resources/images/fog/25.png'
2010Binary files resources/images/fog/25.png 1970-01-01 00:00:00 +0000 and resources/images/fog/25.png 2014-03-26 11:19:27 +0000 differ
2011=== added file 'resources/images/fog/26.png'
2012Binary files resources/images/fog/26.png 1970-01-01 00:00:00 +0000 and resources/images/fog/26.png 2014-03-26 11:19:27 +0000 differ
2013=== added file 'resources/images/fog/27.png'
2014Binary files resources/images/fog/27.png 1970-01-01 00:00:00 +0000 and resources/images/fog/27.png 2014-03-26 11:19:27 +0000 differ
2015=== added file 'resources/images/fog/28.png'
2016Binary files resources/images/fog/28.png 1970-01-01 00:00:00 +0000 and resources/images/fog/28.png 2014-03-26 11:19:27 +0000 differ
2017=== added file 'resources/images/fog/29.png'
2018Binary files resources/images/fog/29.png 1970-01-01 00:00:00 +0000 and resources/images/fog/29.png 2014-03-26 11:19:27 +0000 differ
2019=== added file 'resources/images/fog/3.png'
2020Binary files resources/images/fog/3.png 1970-01-01 00:00:00 +0000 and resources/images/fog/3.png 2014-03-26 11:19:27 +0000 differ
2021=== added file 'resources/images/fog/30.png'
2022Binary files resources/images/fog/30.png 1970-01-01 00:00:00 +0000 and resources/images/fog/30.png 2014-03-26 11:19:27 +0000 differ
2023=== added file 'resources/images/fog/31.png'
2024Binary files resources/images/fog/31.png 1970-01-01 00:00:00 +0000 and resources/images/fog/31.png 2014-03-26 11:19:27 +0000 differ
2025=== added file 'resources/images/fog/32.png'
2026Binary files resources/images/fog/32.png 1970-01-01 00:00:00 +0000 and resources/images/fog/32.png 2014-03-26 11:19:27 +0000 differ
2027=== added file 'resources/images/fog/33.png'
2028Binary files resources/images/fog/33.png 1970-01-01 00:00:00 +0000 and resources/images/fog/33.png 2014-03-26 11:19:27 +0000 differ
2029=== added file 'resources/images/fog/34.png'
2030Binary files resources/images/fog/34.png 1970-01-01 00:00:00 +0000 and resources/images/fog/34.png 2014-03-26 11:19:27 +0000 differ
2031=== added file 'resources/images/fog/35.png'
2032Binary files resources/images/fog/35.png 1970-01-01 00:00:00 +0000 and resources/images/fog/35.png 2014-03-26 11:19:27 +0000 differ
2033=== added file 'resources/images/fog/36.png'
2034Binary files resources/images/fog/36.png 1970-01-01 00:00:00 +0000 and resources/images/fog/36.png 2014-03-26 11:19:27 +0000 differ
2035=== added file 'resources/images/fog/37.png'
2036Binary files resources/images/fog/37.png 1970-01-01 00:00:00 +0000 and resources/images/fog/37.png 2014-03-26 11:19:27 +0000 differ
2037=== added file 'resources/images/fog/38.png'
2038Binary files resources/images/fog/38.png 1970-01-01 00:00:00 +0000 and resources/images/fog/38.png 2014-03-26 11:19:27 +0000 differ
2039=== added file 'resources/images/fog/39.png'
2040Binary files resources/images/fog/39.png 1970-01-01 00:00:00 +0000 and resources/images/fog/39.png 2014-03-26 11:19:27 +0000 differ
2041=== added file 'resources/images/fog/4.png'
2042Binary files resources/images/fog/4.png 1970-01-01 00:00:00 +0000 and resources/images/fog/4.png 2014-03-26 11:19:27 +0000 differ
2043=== added file 'resources/images/fog/40.png'
2044Binary files resources/images/fog/40.png 1970-01-01 00:00:00 +0000 and resources/images/fog/40.png 2014-03-26 11:19:27 +0000 differ
2045=== added file 'resources/images/fog/41.png'
2046Binary files resources/images/fog/41.png 1970-01-01 00:00:00 +0000 and resources/images/fog/41.png 2014-03-26 11:19:27 +0000 differ
2047=== added file 'resources/images/fog/42.png'
2048Binary files resources/images/fog/42.png 1970-01-01 00:00:00 +0000 and resources/images/fog/42.png 2014-03-26 11:19:27 +0000 differ
2049=== added file 'resources/images/fog/43.png'
2050Binary files resources/images/fog/43.png 1970-01-01 00:00:00 +0000 and resources/images/fog/43.png 2014-03-26 11:19:27 +0000 differ
2051=== added file 'resources/images/fog/44.png'
2052Binary files resources/images/fog/44.png 1970-01-01 00:00:00 +0000 and resources/images/fog/44.png 2014-03-26 11:19:27 +0000 differ
2053=== added file 'resources/images/fog/45.png'
2054Binary files resources/images/fog/45.png 1970-01-01 00:00:00 +0000 and resources/images/fog/45.png 2014-03-26 11:19:27 +0000 differ
2055=== added file 'resources/images/fog/46.png'
2056Binary files resources/images/fog/46.png 1970-01-01 00:00:00 +0000 and resources/images/fog/46.png 2014-03-26 11:19:27 +0000 differ
2057=== added file 'resources/images/fog/47.png'
2058Binary files resources/images/fog/47.png 1970-01-01 00:00:00 +0000 and resources/images/fog/47.png 2014-03-26 11:19:27 +0000 differ
2059=== added file 'resources/images/fog/48.png'
2060Binary files resources/images/fog/48.png 1970-01-01 00:00:00 +0000 and resources/images/fog/48.png 2014-03-26 11:19:27 +0000 differ
2061=== added file 'resources/images/fog/49.png'
2062Binary files resources/images/fog/49.png 1970-01-01 00:00:00 +0000 and resources/images/fog/49.png 2014-03-26 11:19:27 +0000 differ
2063=== added file 'resources/images/fog/5.png'
2064Binary files resources/images/fog/5.png 1970-01-01 00:00:00 +0000 and resources/images/fog/5.png 2014-03-26 11:19:27 +0000 differ
2065=== added file 'resources/images/fog/50.png'
2066Binary files resources/images/fog/50.png 1970-01-01 00:00:00 +0000 and resources/images/fog/50.png 2014-03-26 11:19:27 +0000 differ
2067=== added file 'resources/images/fog/6.png'
2068Binary files resources/images/fog/6.png 1970-01-01 00:00:00 +0000 and resources/images/fog/6.png 2014-03-26 11:19:27 +0000 differ
2069=== added file 'resources/images/fog/7.png'
2070Binary files resources/images/fog/7.png 1970-01-01 00:00:00 +0000 and resources/images/fog/7.png 2014-03-26 11:19:27 +0000 differ
2071=== added file 'resources/images/fog/8.png'
2072Binary files resources/images/fog/8.png 1970-01-01 00:00:00 +0000 and resources/images/fog/8.png 2014-03-26 11:19:27 +0000 differ
2073=== added file 'resources/images/fog/9.png'
2074Binary files resources/images/fog/9.png 1970-01-01 00:00:00 +0000 and resources/images/fog/9.png 2014-03-26 11:19:27 +0000 differ
2075=== added directory 'resources/images/moon'
2076=== added file 'resources/images/moon.png'
2077Binary files resources/images/moon.png 1970-01-01 00:00:00 +0000 and resources/images/moon.png 2014-03-26 11:19:27 +0000 differ
2078=== added file 'resources/images/moon/1.png'
2079Binary files resources/images/moon/1.png 1970-01-01 00:00:00 +0000 and resources/images/moon/1.png 2014-03-26 11:19:27 +0000 differ
2080=== added file 'resources/images/moon/10.png'
2081Binary files resources/images/moon/10.png 1970-01-01 00:00:00 +0000 and resources/images/moon/10.png 2014-03-26 11:19:27 +0000 differ
2082=== added file 'resources/images/moon/11.png'
2083Binary files resources/images/moon/11.png 1970-01-01 00:00:00 +0000 and resources/images/moon/11.png 2014-03-26 11:19:27 +0000 differ
2084=== added file 'resources/images/moon/12.png'
2085Binary files resources/images/moon/12.png 1970-01-01 00:00:00 +0000 and resources/images/moon/12.png 2014-03-26 11:19:27 +0000 differ
2086=== added file 'resources/images/moon/13.png'
2087Binary files resources/images/moon/13.png 1970-01-01 00:00:00 +0000 and resources/images/moon/13.png 2014-03-26 11:19:27 +0000 differ
2088=== added file 'resources/images/moon/14.png'
2089Binary files resources/images/moon/14.png 1970-01-01 00:00:00 +0000 and resources/images/moon/14.png 2014-03-26 11:19:27 +0000 differ
2090=== added file 'resources/images/moon/15.png'
2091Binary files resources/images/moon/15.png 1970-01-01 00:00:00 +0000 and resources/images/moon/15.png 2014-03-26 11:19:27 +0000 differ
2092=== added file 'resources/images/moon/16.png'
2093Binary files resources/images/moon/16.png 1970-01-01 00:00:00 +0000 and resources/images/moon/16.png 2014-03-26 11:19:27 +0000 differ
2094=== added file 'resources/images/moon/17.png'
2095Binary files resources/images/moon/17.png 1970-01-01 00:00:00 +0000 and resources/images/moon/17.png 2014-03-26 11:19:27 +0000 differ
2096=== added file 'resources/images/moon/18.png'
2097Binary files resources/images/moon/18.png 1970-01-01 00:00:00 +0000 and resources/images/moon/18.png 2014-03-26 11:19:27 +0000 differ
2098=== added file 'resources/images/moon/19.png'
2099Binary files resources/images/moon/19.png 1970-01-01 00:00:00 +0000 and resources/images/moon/19.png 2014-03-26 11:19:27 +0000 differ
2100=== added file 'resources/images/moon/2.png'
2101Binary files resources/images/moon/2.png 1970-01-01 00:00:00 +0000 and resources/images/moon/2.png 2014-03-26 11:19:27 +0000 differ
2102=== added file 'resources/images/moon/20.png'
2103Binary files resources/images/moon/20.png 1970-01-01 00:00:00 +0000 and resources/images/moon/20.png 2014-03-26 11:19:27 +0000 differ
2104=== added file 'resources/images/moon/21.png'
2105Binary files resources/images/moon/21.png 1970-01-01 00:00:00 +0000 and resources/images/moon/21.png 2014-03-26 11:19:27 +0000 differ
2106=== added file 'resources/images/moon/22.png'
2107Binary files resources/images/moon/22.png 1970-01-01 00:00:00 +0000 and resources/images/moon/22.png 2014-03-26 11:19:27 +0000 differ
2108=== added file 'resources/images/moon/23.png'
2109Binary files resources/images/moon/23.png 1970-01-01 00:00:00 +0000 and resources/images/moon/23.png 2014-03-26 11:19:27 +0000 differ
2110=== added file 'resources/images/moon/24.png'
2111Binary files resources/images/moon/24.png 1970-01-01 00:00:00 +0000 and resources/images/moon/24.png 2014-03-26 11:19:27 +0000 differ
2112=== added file 'resources/images/moon/25.png'
2113Binary files resources/images/moon/25.png 1970-01-01 00:00:00 +0000 and resources/images/moon/25.png 2014-03-26 11:19:27 +0000 differ
2114=== added file 'resources/images/moon/26.png'
2115Binary files resources/images/moon/26.png 1970-01-01 00:00:00 +0000 and resources/images/moon/26.png 2014-03-26 11:19:27 +0000 differ
2116=== added file 'resources/images/moon/27.png'
2117Binary files resources/images/moon/27.png 1970-01-01 00:00:00 +0000 and resources/images/moon/27.png 2014-03-26 11:19:27 +0000 differ
2118=== added file 'resources/images/moon/28.png'
2119Binary files resources/images/moon/28.png 1970-01-01 00:00:00 +0000 and resources/images/moon/28.png 2014-03-26 11:19:27 +0000 differ
2120=== added file 'resources/images/moon/29.png'
2121Binary files resources/images/moon/29.png 1970-01-01 00:00:00 +0000 and resources/images/moon/29.png 2014-03-26 11:19:27 +0000 differ
2122=== added file 'resources/images/moon/3.png'
2123Binary files resources/images/moon/3.png 1970-01-01 00:00:00 +0000 and resources/images/moon/3.png 2014-03-26 11:19:27 +0000 differ
2124=== added file 'resources/images/moon/30.png'
2125Binary files resources/images/moon/30.png 1970-01-01 00:00:00 +0000 and resources/images/moon/30.png 2014-03-26 11:19:27 +0000 differ
2126=== added file 'resources/images/moon/31.png'
2127Binary files resources/images/moon/31.png 1970-01-01 00:00:00 +0000 and resources/images/moon/31.png 2014-03-26 11:19:27 +0000 differ
2128=== added file 'resources/images/moon/32.png'
2129Binary files resources/images/moon/32.png 1970-01-01 00:00:00 +0000 and resources/images/moon/32.png 2014-03-26 11:19:27 +0000 differ
2130=== added file 'resources/images/moon/33.png'
2131Binary files resources/images/moon/33.png 1970-01-01 00:00:00 +0000 and resources/images/moon/33.png 2014-03-26 11:19:27 +0000 differ
2132=== added file 'resources/images/moon/34.png'
2133Binary files resources/images/moon/34.png 1970-01-01 00:00:00 +0000 and resources/images/moon/34.png 2014-03-26 11:19:27 +0000 differ
2134=== added file 'resources/images/moon/35.png'
2135Binary files resources/images/moon/35.png 1970-01-01 00:00:00 +0000 and resources/images/moon/35.png 2014-03-26 11:19:27 +0000 differ
2136=== added file 'resources/images/moon/36.png'
2137Binary files resources/images/moon/36.png 1970-01-01 00:00:00 +0000 and resources/images/moon/36.png 2014-03-26 11:19:27 +0000 differ
2138=== added file 'resources/images/moon/37.png'
2139Binary files resources/images/moon/37.png 1970-01-01 00:00:00 +0000 and resources/images/moon/37.png 2014-03-26 11:19:27 +0000 differ
2140=== added file 'resources/images/moon/38.png'
2141Binary files resources/images/moon/38.png 1970-01-01 00:00:00 +0000 and resources/images/moon/38.png 2014-03-26 11:19:27 +0000 differ
2142=== added file 'resources/images/moon/39.png'
2143Binary files resources/images/moon/39.png 1970-01-01 00:00:00 +0000 and resources/images/moon/39.png 2014-03-26 11:19:27 +0000 differ
2144=== added file 'resources/images/moon/4.png'
2145Binary files resources/images/moon/4.png 1970-01-01 00:00:00 +0000 and resources/images/moon/4.png 2014-03-26 11:19:27 +0000 differ
2146=== added file 'resources/images/moon/40.png'
2147Binary files resources/images/moon/40.png 1970-01-01 00:00:00 +0000 and resources/images/moon/40.png 2014-03-26 11:19:27 +0000 differ
2148=== added file 'resources/images/moon/41.png'
2149Binary files resources/images/moon/41.png 1970-01-01 00:00:00 +0000 and resources/images/moon/41.png 2014-03-26 11:19:27 +0000 differ
2150=== added file 'resources/images/moon/42.png'
2151Binary files resources/images/moon/42.png 1970-01-01 00:00:00 +0000 and resources/images/moon/42.png 2014-03-26 11:19:27 +0000 differ
2152=== added file 'resources/images/moon/43.png'
2153Binary files resources/images/moon/43.png 1970-01-01 00:00:00 +0000 and resources/images/moon/43.png 2014-03-26 11:19:27 +0000 differ
2154=== added file 'resources/images/moon/44.png'
2155Binary files resources/images/moon/44.png 1970-01-01 00:00:00 +0000 and resources/images/moon/44.png 2014-03-26 11:19:27 +0000 differ
2156=== added file 'resources/images/moon/45.png'
2157Binary files resources/images/moon/45.png 1970-01-01 00:00:00 +0000 and resources/images/moon/45.png 2014-03-26 11:19:27 +0000 differ
2158=== added file 'resources/images/moon/46.png'
2159Binary files resources/images/moon/46.png 1970-01-01 00:00:00 +0000 and resources/images/moon/46.png 2014-03-26 11:19:27 +0000 differ
2160=== added file 'resources/images/moon/47.png'
2161Binary files resources/images/moon/47.png 1970-01-01 00:00:00 +0000 and resources/images/moon/47.png 2014-03-26 11:19:27 +0000 differ
2162=== added file 'resources/images/moon/48.png'
2163Binary files resources/images/moon/48.png 1970-01-01 00:00:00 +0000 and resources/images/moon/48.png 2014-03-26 11:19:27 +0000 differ
2164=== added file 'resources/images/moon/49.png'
2165Binary files resources/images/moon/49.png 1970-01-01 00:00:00 +0000 and resources/images/moon/49.png 2014-03-26 11:19:27 +0000 differ
2166=== added file 'resources/images/moon/5.png'
2167Binary files resources/images/moon/5.png 1970-01-01 00:00:00 +0000 and resources/images/moon/5.png 2014-03-26 11:19:27 +0000 differ
2168=== added file 'resources/images/moon/50.png'
2169Binary files resources/images/moon/50.png 1970-01-01 00:00:00 +0000 and resources/images/moon/50.png 2014-03-26 11:19:27 +0000 differ
2170=== added file 'resources/images/moon/6.png'
2171Binary files resources/images/moon/6.png 1970-01-01 00:00:00 +0000 and resources/images/moon/6.png 2014-03-26 11:19:27 +0000 differ
2172=== added file 'resources/images/moon/7.png'
2173Binary files resources/images/moon/7.png 1970-01-01 00:00:00 +0000 and resources/images/moon/7.png 2014-03-26 11:19:27 +0000 differ
2174=== added file 'resources/images/moon/8.png'
2175Binary files resources/images/moon/8.png 1970-01-01 00:00:00 +0000 and resources/images/moon/8.png 2014-03-26 11:19:27 +0000 differ
2176=== added file 'resources/images/moon/9.png'
2177Binary files resources/images/moon/9.png 1970-01-01 00:00:00 +0000 and resources/images/moon/9.png 2014-03-26 11:19:27 +0000 differ
2178=== added directory 'resources/images/overcast'
2179=== added file 'resources/images/overcast.png'
2180Binary files resources/images/overcast.png 1970-01-01 00:00:00 +0000 and resources/images/overcast.png 2014-03-26 11:19:27 +0000 differ
2181=== added file 'resources/images/overcast/1.png'
2182Binary files resources/images/overcast/1.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/1.png 2014-03-26 11:19:27 +0000 differ
2183=== added file 'resources/images/overcast/10.png'
2184Binary files resources/images/overcast/10.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/10.png 2014-03-26 11:19:27 +0000 differ
2185=== added file 'resources/images/overcast/11.png'
2186Binary files resources/images/overcast/11.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/11.png 2014-03-26 11:19:27 +0000 differ
2187=== added file 'resources/images/overcast/12.png'
2188Binary files resources/images/overcast/12.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/12.png 2014-03-26 11:19:27 +0000 differ
2189=== added file 'resources/images/overcast/13.png'
2190Binary files resources/images/overcast/13.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/13.png 2014-03-26 11:19:27 +0000 differ
2191=== added file 'resources/images/overcast/14.png'
2192Binary files resources/images/overcast/14.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/14.png 2014-03-26 11:19:27 +0000 differ
2193=== added file 'resources/images/overcast/15.png'
2194Binary files resources/images/overcast/15.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/15.png 2014-03-26 11:19:27 +0000 differ
2195=== added file 'resources/images/overcast/16.png'
2196Binary files resources/images/overcast/16.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/16.png 2014-03-26 11:19:27 +0000 differ
2197=== added file 'resources/images/overcast/17.png'
2198Binary files resources/images/overcast/17.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/17.png 2014-03-26 11:19:27 +0000 differ
2199=== added file 'resources/images/overcast/18.png'
2200Binary files resources/images/overcast/18.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/18.png 2014-03-26 11:19:27 +0000 differ
2201=== added file 'resources/images/overcast/19.png'
2202Binary files resources/images/overcast/19.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/19.png 2014-03-26 11:19:27 +0000 differ
2203=== added file 'resources/images/overcast/2.png'
2204Binary files resources/images/overcast/2.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/2.png 2014-03-26 11:19:27 +0000 differ
2205=== added file 'resources/images/overcast/20.png'
2206Binary files resources/images/overcast/20.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/20.png 2014-03-26 11:19:27 +0000 differ
2207=== added file 'resources/images/overcast/21.png'
2208Binary files resources/images/overcast/21.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/21.png 2014-03-26 11:19:27 +0000 differ
2209=== added file 'resources/images/overcast/22.png'
2210Binary files resources/images/overcast/22.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/22.png 2014-03-26 11:19:27 +0000 differ
2211=== added file 'resources/images/overcast/23.png'
2212Binary files resources/images/overcast/23.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/23.png 2014-03-26 11:19:27 +0000 differ
2213=== added file 'resources/images/overcast/24.png'
2214Binary files resources/images/overcast/24.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/24.png 2014-03-26 11:19:27 +0000 differ
2215=== added file 'resources/images/overcast/25.png'
2216Binary files resources/images/overcast/25.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/25.png 2014-03-26 11:19:27 +0000 differ
2217=== added file 'resources/images/overcast/26.png'
2218Binary files resources/images/overcast/26.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/26.png 2014-03-26 11:19:27 +0000 differ
2219=== added file 'resources/images/overcast/27.png'
2220Binary files resources/images/overcast/27.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/27.png 2014-03-26 11:19:27 +0000 differ
2221=== added file 'resources/images/overcast/28.png'
2222Binary files resources/images/overcast/28.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/28.png 2014-03-26 11:19:27 +0000 differ
2223=== added file 'resources/images/overcast/29.png'
2224Binary files resources/images/overcast/29.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/29.png 2014-03-26 11:19:27 +0000 differ
2225=== added file 'resources/images/overcast/3.png'
2226Binary files resources/images/overcast/3.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/3.png 2014-03-26 11:19:27 +0000 differ
2227=== added file 'resources/images/overcast/30.png'
2228Binary files resources/images/overcast/30.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/30.png 2014-03-26 11:19:27 +0000 differ
2229=== added file 'resources/images/overcast/31.png'
2230Binary files resources/images/overcast/31.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/31.png 2014-03-26 11:19:27 +0000 differ
2231=== added file 'resources/images/overcast/32.png'
2232Binary files resources/images/overcast/32.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/32.png 2014-03-26 11:19:27 +0000 differ
2233=== added file 'resources/images/overcast/33.png'
2234Binary files resources/images/overcast/33.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/33.png 2014-03-26 11:19:27 +0000 differ
2235=== added file 'resources/images/overcast/34.png'
2236Binary files resources/images/overcast/34.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/34.png 2014-03-26 11:19:27 +0000 differ
2237=== added file 'resources/images/overcast/35.png'
2238Binary files resources/images/overcast/35.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/35.png 2014-03-26 11:19:27 +0000 differ
2239=== added file 'resources/images/overcast/36.png'
2240Binary files resources/images/overcast/36.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/36.png 2014-03-26 11:19:27 +0000 differ
2241=== added file 'resources/images/overcast/37.png'
2242Binary files resources/images/overcast/37.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/37.png 2014-03-26 11:19:27 +0000 differ
2243=== added file 'resources/images/overcast/38.png'
2244Binary files resources/images/overcast/38.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/38.png 2014-03-26 11:19:27 +0000 differ
2245=== added file 'resources/images/overcast/39.png'
2246Binary files resources/images/overcast/39.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/39.png 2014-03-26 11:19:27 +0000 differ
2247=== added file 'resources/images/overcast/4.png'
2248Binary files resources/images/overcast/4.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/4.png 2014-03-26 11:19:27 +0000 differ
2249=== added file 'resources/images/overcast/40.png'
2250Binary files resources/images/overcast/40.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/40.png 2014-03-26 11:19:27 +0000 differ
2251=== added file 'resources/images/overcast/41.png'
2252Binary files resources/images/overcast/41.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/41.png 2014-03-26 11:19:27 +0000 differ
2253=== added file 'resources/images/overcast/42.png'
2254Binary files resources/images/overcast/42.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/42.png 2014-03-26 11:19:27 +0000 differ
2255=== added file 'resources/images/overcast/43.png'
2256Binary files resources/images/overcast/43.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/43.png 2014-03-26 11:19:27 +0000 differ
2257=== added file 'resources/images/overcast/44.png'
2258Binary files resources/images/overcast/44.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/44.png 2014-03-26 11:19:27 +0000 differ
2259=== added file 'resources/images/overcast/45.png'
2260Binary files resources/images/overcast/45.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/45.png 2014-03-26 11:19:27 +0000 differ
2261=== added file 'resources/images/overcast/46.png'
2262Binary files resources/images/overcast/46.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/46.png 2014-03-26 11:19:27 +0000 differ
2263=== added file 'resources/images/overcast/47.png'
2264Binary files resources/images/overcast/47.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/47.png 2014-03-26 11:19:27 +0000 differ
2265=== added file 'resources/images/overcast/48.png'
2266Binary files resources/images/overcast/48.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/48.png 2014-03-26 11:19:27 +0000 differ
2267=== added file 'resources/images/overcast/49.png'
2268Binary files resources/images/overcast/49.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/49.png 2014-03-26 11:19:27 +0000 differ
2269=== added file 'resources/images/overcast/5.png'
2270Binary files resources/images/overcast/5.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/5.png 2014-03-26 11:19:27 +0000 differ
2271=== added file 'resources/images/overcast/50.png'
2272Binary files resources/images/overcast/50.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/50.png 2014-03-26 11:19:27 +0000 differ
2273=== added file 'resources/images/overcast/6.png'
2274Binary files resources/images/overcast/6.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/6.png 2014-03-26 11:19:27 +0000 differ
2275=== added file 'resources/images/overcast/7.png'
2276Binary files resources/images/overcast/7.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/7.png 2014-03-26 11:19:27 +0000 differ
2277=== added file 'resources/images/overcast/8.png'
2278Binary files resources/images/overcast/8.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/8.png 2014-03-26 11:19:27 +0000 differ
2279=== added file 'resources/images/overcast/9.png'
2280Binary files resources/images/overcast/9.png 1970-01-01 00:00:00 +0000 and resources/images/overcast/9.png 2014-03-26 11:19:27 +0000 differ
2281=== added directory 'resources/images/rain'
2282=== added file 'resources/images/rain.png'
2283Binary files resources/images/rain.png 1970-01-01 00:00:00 +0000 and resources/images/rain.png 2014-03-26 11:19:27 +0000 differ
2284=== added file 'resources/images/rain/1.png'
2285Binary files resources/images/rain/1.png 1970-01-01 00:00:00 +0000 and resources/images/rain/1.png 2014-03-26 11:19:27 +0000 differ
2286=== added file 'resources/images/rain/10.png'
2287Binary files resources/images/rain/10.png 1970-01-01 00:00:00 +0000 and resources/images/rain/10.png 2014-03-26 11:19:27 +0000 differ
2288=== added file 'resources/images/rain/11.png'
2289Binary files resources/images/rain/11.png 1970-01-01 00:00:00 +0000 and resources/images/rain/11.png 2014-03-26 11:19:27 +0000 differ
2290=== added file 'resources/images/rain/12.png'
2291Binary files resources/images/rain/12.png 1970-01-01 00:00:00 +0000 and resources/images/rain/12.png 2014-03-26 11:19:27 +0000 differ
2292=== added file 'resources/images/rain/13.png'
2293Binary files resources/images/rain/13.png 1970-01-01 00:00:00 +0000 and resources/images/rain/13.png 2014-03-26 11:19:27 +0000 differ
2294=== added file 'resources/images/rain/14.png'
2295Binary files resources/images/rain/14.png 1970-01-01 00:00:00 +0000 and resources/images/rain/14.png 2014-03-26 11:19:27 +0000 differ
2296=== added file 'resources/images/rain/15.png'
2297Binary files resources/images/rain/15.png 1970-01-01 00:00:00 +0000 and resources/images/rain/15.png 2014-03-26 11:19:27 +0000 differ
2298=== added file 'resources/images/rain/16.png'
2299Binary files resources/images/rain/16.png 1970-01-01 00:00:00 +0000 and resources/images/rain/16.png 2014-03-26 11:19:27 +0000 differ
2300=== added file 'resources/images/rain/17.png'
2301Binary files resources/images/rain/17.png 1970-01-01 00:00:00 +0000 and resources/images/rain/17.png 2014-03-26 11:19:27 +0000 differ
2302=== added file 'resources/images/rain/18.png'
2303Binary files resources/images/rain/18.png 1970-01-01 00:00:00 +0000 and resources/images/rain/18.png 2014-03-26 11:19:27 +0000 differ
2304=== added file 'resources/images/rain/19.png'
2305Binary files resources/images/rain/19.png 1970-01-01 00:00:00 +0000 and resources/images/rain/19.png 2014-03-26 11:19:27 +0000 differ
2306=== added file 'resources/images/rain/2.png'
2307Binary files resources/images/rain/2.png 1970-01-01 00:00:00 +0000 and resources/images/rain/2.png 2014-03-26 11:19:27 +0000 differ
2308=== added file 'resources/images/rain/20.png'
2309Binary files resources/images/rain/20.png 1970-01-01 00:00:00 +0000 and resources/images/rain/20.png 2014-03-26 11:19:27 +0000 differ
2310=== added file 'resources/images/rain/21.png'
2311Binary files resources/images/rain/21.png 1970-01-01 00:00:00 +0000 and resources/images/rain/21.png 2014-03-26 11:19:27 +0000 differ
2312=== added file 'resources/images/rain/22.png'
2313Binary files resources/images/rain/22.png 1970-01-01 00:00:00 +0000 and resources/images/rain/22.png 2014-03-26 11:19:27 +0000 differ
2314=== added file 'resources/images/rain/23.png'
2315Binary files resources/images/rain/23.png 1970-01-01 00:00:00 +0000 and resources/images/rain/23.png 2014-03-26 11:19:27 +0000 differ
2316=== added file 'resources/images/rain/24.png'
2317Binary files resources/images/rain/24.png 1970-01-01 00:00:00 +0000 and resources/images/rain/24.png 2014-03-26 11:19:27 +0000 differ
2318=== added file 'resources/images/rain/25.png'
2319Binary files resources/images/rain/25.png 1970-01-01 00:00:00 +0000 and resources/images/rain/25.png 2014-03-26 11:19:27 +0000 differ
2320=== added file 'resources/images/rain/26.png'
2321Binary files resources/images/rain/26.png 1970-01-01 00:00:00 +0000 and resources/images/rain/26.png 2014-03-26 11:19:27 +0000 differ
2322=== added file 'resources/images/rain/27.png'
2323Binary files resources/images/rain/27.png 1970-01-01 00:00:00 +0000 and resources/images/rain/27.png 2014-03-26 11:19:27 +0000 differ
2324=== added file 'resources/images/rain/28.png'
2325Binary files resources/images/rain/28.png 1970-01-01 00:00:00 +0000 and resources/images/rain/28.png 2014-03-26 11:19:27 +0000 differ
2326=== added file 'resources/images/rain/29.png'
2327Binary files resources/images/rain/29.png 1970-01-01 00:00:00 +0000 and resources/images/rain/29.png 2014-03-26 11:19:27 +0000 differ
2328=== added file 'resources/images/rain/3.png'
2329Binary files resources/images/rain/3.png 1970-01-01 00:00:00 +0000 and resources/images/rain/3.png 2014-03-26 11:19:27 +0000 differ
2330=== added file 'resources/images/rain/30.png'
2331Binary files resources/images/rain/30.png 1970-01-01 00:00:00 +0000 and resources/images/rain/30.png 2014-03-26 11:19:27 +0000 differ
2332=== added file 'resources/images/rain/31.png'
2333Binary files resources/images/rain/31.png 1970-01-01 00:00:00 +0000 and resources/images/rain/31.png 2014-03-26 11:19:27 +0000 differ
2334=== added file 'resources/images/rain/32.png'
2335Binary files resources/images/rain/32.png 1970-01-01 00:00:00 +0000 and resources/images/rain/32.png 2014-03-26 11:19:27 +0000 differ
2336=== added file 'resources/images/rain/33.png'
2337Binary files resources/images/rain/33.png 1970-01-01 00:00:00 +0000 and resources/images/rain/33.png 2014-03-26 11:19:27 +0000 differ
2338=== added file 'resources/images/rain/34.png'
2339Binary files resources/images/rain/34.png 1970-01-01 00:00:00 +0000 and resources/images/rain/34.png 2014-03-26 11:19:27 +0000 differ
2340=== added file 'resources/images/rain/35.png'
2341Binary files resources/images/rain/35.png 1970-01-01 00:00:00 +0000 and resources/images/rain/35.png 2014-03-26 11:19:27 +0000 differ
2342=== added file 'resources/images/rain/36.png'
2343Binary files resources/images/rain/36.png 1970-01-01 00:00:00 +0000 and resources/images/rain/36.png 2014-03-26 11:19:27 +0000 differ
2344=== added file 'resources/images/rain/37.png'
2345Binary files resources/images/rain/37.png 1970-01-01 00:00:00 +0000 and resources/images/rain/37.png 2014-03-26 11:19:27 +0000 differ
2346=== added file 'resources/images/rain/38.png'
2347Binary files resources/images/rain/38.png 1970-01-01 00:00:00 +0000 and resources/images/rain/38.png 2014-03-26 11:19:27 +0000 differ
2348=== added file 'resources/images/rain/39.png'
2349Binary files resources/images/rain/39.png 1970-01-01 00:00:00 +0000 and resources/images/rain/39.png 2014-03-26 11:19:27 +0000 differ
2350=== added file 'resources/images/rain/4.png'
2351Binary files resources/images/rain/4.png 1970-01-01 00:00:00 +0000 and resources/images/rain/4.png 2014-03-26 11:19:27 +0000 differ
2352=== added file 'resources/images/rain/40.png'
2353Binary files resources/images/rain/40.png 1970-01-01 00:00:00 +0000 and resources/images/rain/40.png 2014-03-26 11:19:27 +0000 differ
2354=== added file 'resources/images/rain/41.png'
2355Binary files resources/images/rain/41.png 1970-01-01 00:00:00 +0000 and resources/images/rain/41.png 2014-03-26 11:19:27 +0000 differ
2356=== added file 'resources/images/rain/42.png'
2357Binary files resources/images/rain/42.png 1970-01-01 00:00:00 +0000 and resources/images/rain/42.png 2014-03-26 11:19:27 +0000 differ
2358=== added file 'resources/images/rain/43.png'
2359Binary files resources/images/rain/43.png 1970-01-01 00:00:00 +0000 and resources/images/rain/43.png 2014-03-26 11:19:27 +0000 differ
2360=== added file 'resources/images/rain/44.png'
2361Binary files resources/images/rain/44.png 1970-01-01 00:00:00 +0000 and resources/images/rain/44.png 2014-03-26 11:19:27 +0000 differ
2362=== added file 'resources/images/rain/45.png'
2363Binary files resources/images/rain/45.png 1970-01-01 00:00:00 +0000 and resources/images/rain/45.png 2014-03-26 11:19:27 +0000 differ
2364=== added file 'resources/images/rain/46.png'
2365Binary files resources/images/rain/46.png 1970-01-01 00:00:00 +0000 and resources/images/rain/46.png 2014-03-26 11:19:27 +0000 differ
2366=== added file 'resources/images/rain/47.png'
2367Binary files resources/images/rain/47.png 1970-01-01 00:00:00 +0000 and resources/images/rain/47.png 2014-03-26 11:19:27 +0000 differ
2368=== added file 'resources/images/rain/48.png'
2369Binary files resources/images/rain/48.png 1970-01-01 00:00:00 +0000 and resources/images/rain/48.png 2014-03-26 11:19:27 +0000 differ
2370=== added file 'resources/images/rain/49.png'
2371Binary files resources/images/rain/49.png 1970-01-01 00:00:00 +0000 and resources/images/rain/49.png 2014-03-26 11:19:27 +0000 differ
2372=== added file 'resources/images/rain/5.png'
2373Binary files resources/images/rain/5.png 1970-01-01 00:00:00 +0000 and resources/images/rain/5.png 2014-03-26 11:19:27 +0000 differ
2374=== added file 'resources/images/rain/50.png'
2375Binary files resources/images/rain/50.png 1970-01-01 00:00:00 +0000 and resources/images/rain/50.png 2014-03-26 11:19:27 +0000 differ
2376=== added file 'resources/images/rain/6.png'
2377Binary files resources/images/rain/6.png 1970-01-01 00:00:00 +0000 and resources/images/rain/6.png 2014-03-26 11:19:27 +0000 differ
2378=== added file 'resources/images/rain/7.png'
2379Binary files resources/images/rain/7.png 1970-01-01 00:00:00 +0000 and resources/images/rain/7.png 2014-03-26 11:19:27 +0000 differ
2380=== added file 'resources/images/rain/8.png'
2381Binary files resources/images/rain/8.png 1970-01-01 00:00:00 +0000 and resources/images/rain/8.png 2014-03-26 11:19:27 +0000 differ
2382=== added file 'resources/images/rain/9.png'
2383Binary files resources/images/rain/9.png 1970-01-01 00:00:00 +0000 and resources/images/rain/9.png 2014-03-26 11:19:27 +0000 differ
2384=== added directory 'resources/images/scattered'
2385=== added file 'resources/images/scattered.png'
2386Binary files resources/images/scattered.png 1970-01-01 00:00:00 +0000 and resources/images/scattered.png 2014-03-26 11:19:27 +0000 differ
2387=== added file 'resources/images/scattered/1.png'
2388Binary files resources/images/scattered/1.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/1.png 2014-03-26 11:19:27 +0000 differ
2389=== added file 'resources/images/scattered/10.png'
2390Binary files resources/images/scattered/10.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/10.png 2014-03-26 11:19:27 +0000 differ
2391=== added file 'resources/images/scattered/11.png'
2392Binary files resources/images/scattered/11.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/11.png 2014-03-26 11:19:27 +0000 differ
2393=== added file 'resources/images/scattered/12.png'
2394Binary files resources/images/scattered/12.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/12.png 2014-03-26 11:19:27 +0000 differ
2395=== added file 'resources/images/scattered/13.png'
2396Binary files resources/images/scattered/13.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/13.png 2014-03-26 11:19:27 +0000 differ
2397=== added file 'resources/images/scattered/14.png'
2398Binary files resources/images/scattered/14.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/14.png 2014-03-26 11:19:27 +0000 differ
2399=== added file 'resources/images/scattered/15.png'
2400Binary files resources/images/scattered/15.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/15.png 2014-03-26 11:19:27 +0000 differ
2401=== added file 'resources/images/scattered/16.png'
2402Binary files resources/images/scattered/16.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/16.png 2014-03-26 11:19:27 +0000 differ
2403=== added file 'resources/images/scattered/17.png'
2404Binary files resources/images/scattered/17.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/17.png 2014-03-26 11:19:27 +0000 differ
2405=== added file 'resources/images/scattered/18.png'
2406Binary files resources/images/scattered/18.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/18.png 2014-03-26 11:19:27 +0000 differ
2407=== added file 'resources/images/scattered/19.png'
2408Binary files resources/images/scattered/19.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/19.png 2014-03-26 11:19:27 +0000 differ
2409=== added file 'resources/images/scattered/2.png'
2410Binary files resources/images/scattered/2.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/2.png 2014-03-26 11:19:27 +0000 differ
2411=== added file 'resources/images/scattered/20.png'
2412Binary files resources/images/scattered/20.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/20.png 2014-03-26 11:19:27 +0000 differ
2413=== added file 'resources/images/scattered/21.png'
2414Binary files resources/images/scattered/21.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/21.png 2014-03-26 11:19:27 +0000 differ
2415=== added file 'resources/images/scattered/22.png'
2416Binary files resources/images/scattered/22.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/22.png 2014-03-26 11:19:27 +0000 differ
2417=== added file 'resources/images/scattered/23.png'
2418Binary files resources/images/scattered/23.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/23.png 2014-03-26 11:19:27 +0000 differ
2419=== added file 'resources/images/scattered/24.png'
2420Binary files resources/images/scattered/24.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/24.png 2014-03-26 11:19:27 +0000 differ
2421=== added file 'resources/images/scattered/25.png'
2422Binary files resources/images/scattered/25.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/25.png 2014-03-26 11:19:27 +0000 differ
2423=== added file 'resources/images/scattered/26.png'
2424Binary files resources/images/scattered/26.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/26.png 2014-03-26 11:19:27 +0000 differ
2425=== added file 'resources/images/scattered/27.png'
2426Binary files resources/images/scattered/27.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/27.png 2014-03-26 11:19:27 +0000 differ
2427=== added file 'resources/images/scattered/28.png'
2428Binary files resources/images/scattered/28.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/28.png 2014-03-26 11:19:27 +0000 differ
2429=== added file 'resources/images/scattered/29.png'
2430Binary files resources/images/scattered/29.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/29.png 2014-03-26 11:19:27 +0000 differ
2431=== added file 'resources/images/scattered/3.png'
2432Binary files resources/images/scattered/3.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/3.png 2014-03-26 11:19:27 +0000 differ
2433=== added file 'resources/images/scattered/30.png'
2434Binary files resources/images/scattered/30.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/30.png 2014-03-26 11:19:27 +0000 differ
2435=== added file 'resources/images/scattered/31.png'
2436Binary files resources/images/scattered/31.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/31.png 2014-03-26 11:19:27 +0000 differ
2437=== added file 'resources/images/scattered/32.png'
2438Binary files resources/images/scattered/32.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/32.png 2014-03-26 11:19:27 +0000 differ
2439=== added file 'resources/images/scattered/33.png'
2440Binary files resources/images/scattered/33.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/33.png 2014-03-26 11:19:27 +0000 differ
2441=== added file 'resources/images/scattered/34.png'
2442Binary files resources/images/scattered/34.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/34.png 2014-03-26 11:19:27 +0000 differ
2443=== added file 'resources/images/scattered/35.png'
2444Binary files resources/images/scattered/35.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/35.png 2014-03-26 11:19:27 +0000 differ
2445=== added file 'resources/images/scattered/36.png'
2446Binary files resources/images/scattered/36.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/36.png 2014-03-26 11:19:27 +0000 differ
2447=== added file 'resources/images/scattered/37.png'
2448Binary files resources/images/scattered/37.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/37.png 2014-03-26 11:19:27 +0000 differ
2449=== added file 'resources/images/scattered/38.png'
2450Binary files resources/images/scattered/38.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/38.png 2014-03-26 11:19:27 +0000 differ
2451=== added file 'resources/images/scattered/39.png'
2452Binary files resources/images/scattered/39.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/39.png 2014-03-26 11:19:27 +0000 differ
2453=== added file 'resources/images/scattered/4.png'
2454Binary files resources/images/scattered/4.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/4.png 2014-03-26 11:19:27 +0000 differ
2455=== added file 'resources/images/scattered/40.png'
2456Binary files resources/images/scattered/40.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/40.png 2014-03-26 11:19:27 +0000 differ
2457=== added file 'resources/images/scattered/41.png'
2458Binary files resources/images/scattered/41.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/41.png 2014-03-26 11:19:27 +0000 differ
2459=== added file 'resources/images/scattered/42.png'
2460Binary files resources/images/scattered/42.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/42.png 2014-03-26 11:19:27 +0000 differ
2461=== added file 'resources/images/scattered/43.png'
2462Binary files resources/images/scattered/43.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/43.png 2014-03-26 11:19:27 +0000 differ
2463=== added file 'resources/images/scattered/44.png'
2464Binary files resources/images/scattered/44.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/44.png 2014-03-26 11:19:27 +0000 differ
2465=== added file 'resources/images/scattered/45.png'
2466Binary files resources/images/scattered/45.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/45.png 2014-03-26 11:19:27 +0000 differ
2467=== added file 'resources/images/scattered/46.png'
2468Binary files resources/images/scattered/46.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/46.png 2014-03-26 11:19:27 +0000 differ
2469=== added file 'resources/images/scattered/47.png'
2470Binary files resources/images/scattered/47.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/47.png 2014-03-26 11:19:27 +0000 differ
2471=== added file 'resources/images/scattered/48.png'
2472Binary files resources/images/scattered/48.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/48.png 2014-03-26 11:19:27 +0000 differ
2473=== added file 'resources/images/scattered/49.png'
2474Binary files resources/images/scattered/49.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/49.png 2014-03-26 11:19:27 +0000 differ
2475=== added file 'resources/images/scattered/5.png'
2476Binary files resources/images/scattered/5.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/5.png 2014-03-26 11:19:27 +0000 differ
2477=== added file 'resources/images/scattered/50.png'
2478Binary files resources/images/scattered/50.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/50.png 2014-03-26 11:19:27 +0000 differ
2479=== added file 'resources/images/scattered/6.png'
2480Binary files resources/images/scattered/6.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/6.png 2014-03-26 11:19:27 +0000 differ
2481=== added file 'resources/images/scattered/7.png'
2482Binary files resources/images/scattered/7.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/7.png 2014-03-26 11:19:27 +0000 differ
2483=== added file 'resources/images/scattered/8.png'
2484Binary files resources/images/scattered/8.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/8.png 2014-03-26 11:19:27 +0000 differ
2485=== added file 'resources/images/scattered/9.png'
2486Binary files resources/images/scattered/9.png 1970-01-01 00:00:00 +0000 and resources/images/scattered/9.png 2014-03-26 11:19:27 +0000 differ
2487=== added directory 'resources/images/snow'
2488=== added file 'resources/images/snow.png'
2489Binary files resources/images/snow.png 1970-01-01 00:00:00 +0000 and resources/images/snow.png 2014-03-26 11:19:27 +0000 differ
2490=== added file 'resources/images/snow/1.png'
2491Binary files resources/images/snow/1.png 1970-01-01 00:00:00 +0000 and resources/images/snow/1.png 2014-03-26 11:19:27 +0000 differ
2492=== added file 'resources/images/snow/10.png'
2493Binary files resources/images/snow/10.png 1970-01-01 00:00:00 +0000 and resources/images/snow/10.png 2014-03-26 11:19:27 +0000 differ
2494=== added file 'resources/images/snow/11.png'
2495Binary files resources/images/snow/11.png 1970-01-01 00:00:00 +0000 and resources/images/snow/11.png 2014-03-26 11:19:27 +0000 differ
2496=== added file 'resources/images/snow/12.png'
2497Binary files resources/images/snow/12.png 1970-01-01 00:00:00 +0000 and resources/images/snow/12.png 2014-03-26 11:19:27 +0000 differ
2498=== added file 'resources/images/snow/13.png'
2499Binary files resources/images/snow/13.png 1970-01-01 00:00:00 +0000 and resources/images/snow/13.png 2014-03-26 11:19:27 +0000 differ
2500=== added file 'resources/images/snow/14.png'
2501Binary files resources/images/snow/14.png 1970-01-01 00:00:00 +0000 and resources/images/snow/14.png 2014-03-26 11:19:27 +0000 differ
2502=== added file 'resources/images/snow/15.png'
2503Binary files resources/images/snow/15.png 1970-01-01 00:00:00 +0000 and resources/images/snow/15.png 2014-03-26 11:19:27 +0000 differ
2504=== added file 'resources/images/snow/16.png'
2505Binary files resources/images/snow/16.png 1970-01-01 00:00:00 +0000 and resources/images/snow/16.png 2014-03-26 11:19:27 +0000 differ
2506=== added file 'resources/images/snow/17.png'
2507Binary files resources/images/snow/17.png 1970-01-01 00:00:00 +0000 and resources/images/snow/17.png 2014-03-26 11:19:27 +0000 differ
2508=== added file 'resources/images/snow/18.png'
2509Binary files resources/images/snow/18.png 1970-01-01 00:00:00 +0000 and resources/images/snow/18.png 2014-03-26 11:19:27 +0000 differ
2510=== added file 'resources/images/snow/19.png'
2511Binary files resources/images/snow/19.png 1970-01-01 00:00:00 +0000 and resources/images/snow/19.png 2014-03-26 11:19:27 +0000 differ
2512=== added file 'resources/images/snow/2.png'
2513Binary files resources/images/snow/2.png 1970-01-01 00:00:00 +0000 and resources/images/snow/2.png 2014-03-26 11:19:27 +0000 differ
2514=== added file 'resources/images/snow/20.png'
2515Binary files resources/images/snow/20.png 1970-01-01 00:00:00 +0000 and resources/images/snow/20.png 2014-03-26 11:19:27 +0000 differ
2516=== added file 'resources/images/snow/21.png'
2517Binary files resources/images/snow/21.png 1970-01-01 00:00:00 +0000 and resources/images/snow/21.png 2014-03-26 11:19:27 +0000 differ
2518=== added file 'resources/images/snow/22.png'
2519Binary files resources/images/snow/22.png 1970-01-01 00:00:00 +0000 and resources/images/snow/22.png 2014-03-26 11:19:27 +0000 differ
2520=== added file 'resources/images/snow/23.png'
2521Binary files resources/images/snow/23.png 1970-01-01 00:00:00 +0000 and resources/images/snow/23.png 2014-03-26 11:19:27 +0000 differ
2522=== added file 'resources/images/snow/24.png'
2523Binary files resources/images/snow/24.png 1970-01-01 00:00:00 +0000 and resources/images/snow/24.png 2014-03-26 11:19:27 +0000 differ
2524=== added file 'resources/images/snow/25.png'
2525Binary files resources/images/snow/25.png 1970-01-01 00:00:00 +0000 and resources/images/snow/25.png 2014-03-26 11:19:27 +0000 differ
2526=== added file 'resources/images/snow/26.png'
2527Binary files resources/images/snow/26.png 1970-01-01 00:00:00 +0000 and resources/images/snow/26.png 2014-03-26 11:19:27 +0000 differ
2528=== added file 'resources/images/snow/27.png'
2529Binary files resources/images/snow/27.png 1970-01-01 00:00:00 +0000 and resources/images/snow/27.png 2014-03-26 11:19:27 +0000 differ
2530=== added file 'resources/images/snow/28.png'
2531Binary files resources/images/snow/28.png 1970-01-01 00:00:00 +0000 and resources/images/snow/28.png 2014-03-26 11:19:27 +0000 differ
2532=== added file 'resources/images/snow/29.png'
2533Binary files resources/images/snow/29.png 1970-01-01 00:00:00 +0000 and resources/images/snow/29.png 2014-03-26 11:19:27 +0000 differ
2534=== added file 'resources/images/snow/3.png'
2535Binary files resources/images/snow/3.png 1970-01-01 00:00:00 +0000 and resources/images/snow/3.png 2014-03-26 11:19:27 +0000 differ
2536=== added file 'resources/images/snow/30.png'
2537Binary files resources/images/snow/30.png 1970-01-01 00:00:00 +0000 and resources/images/snow/30.png 2014-03-26 11:19:27 +0000 differ
2538=== added file 'resources/images/snow/31.png'
2539Binary files resources/images/snow/31.png 1970-01-01 00:00:00 +0000 and resources/images/snow/31.png 2014-03-26 11:19:27 +0000 differ
2540=== added file 'resources/images/snow/32.png'
2541Binary files resources/images/snow/32.png 1970-01-01 00:00:00 +0000 and resources/images/snow/32.png 2014-03-26 11:19:27 +0000 differ
2542=== added file 'resources/images/snow/33.png'
2543Binary files resources/images/snow/33.png 1970-01-01 00:00:00 +0000 and resources/images/snow/33.png 2014-03-26 11:19:27 +0000 differ
2544=== added file 'resources/images/snow/34.png'
2545Binary files resources/images/snow/34.png 1970-01-01 00:00:00 +0000 and resources/images/snow/34.png 2014-03-26 11:19:27 +0000 differ
2546=== added file 'resources/images/snow/35.png'
2547Binary files resources/images/snow/35.png 1970-01-01 00:00:00 +0000 and resources/images/snow/35.png 2014-03-26 11:19:27 +0000 differ
2548=== added file 'resources/images/snow/36.png'
2549Binary files resources/images/snow/36.png 1970-01-01 00:00:00 +0000 and resources/images/snow/36.png 2014-03-26 11:19:27 +0000 differ
2550=== added file 'resources/images/snow/37.png'
2551Binary files resources/images/snow/37.png 1970-01-01 00:00:00 +0000 and resources/images/snow/37.png 2014-03-26 11:19:27 +0000 differ
2552=== added file 'resources/images/snow/38.png'
2553Binary files resources/images/snow/38.png 1970-01-01 00:00:00 +0000 and resources/images/snow/38.png 2014-03-26 11:19:27 +0000 differ
2554=== added file 'resources/images/snow/39.png'
2555Binary files resources/images/snow/39.png 1970-01-01 00:00:00 +0000 and resources/images/snow/39.png 2014-03-26 11:19:27 +0000 differ
2556=== added file 'resources/images/snow/4.png'
2557Binary files resources/images/snow/4.png 1970-01-01 00:00:00 +0000 and resources/images/snow/4.png 2014-03-26 11:19:27 +0000 differ
2558=== added file 'resources/images/snow/40.png'
2559Binary files resources/images/snow/40.png 1970-01-01 00:00:00 +0000 and resources/images/snow/40.png 2014-03-26 11:19:27 +0000 differ
2560=== added file 'resources/images/snow/41.png'
2561Binary files resources/images/snow/41.png 1970-01-01 00:00:00 +0000 and resources/images/snow/41.png 2014-03-26 11:19:27 +0000 differ
2562=== added file 'resources/images/snow/42.png'
2563Binary files resources/images/snow/42.png 1970-01-01 00:00:00 +0000 and resources/images/snow/42.png 2014-03-26 11:19:27 +0000 differ
2564=== added file 'resources/images/snow/43.png'
2565Binary files resources/images/snow/43.png 1970-01-01 00:00:00 +0000 and resources/images/snow/43.png 2014-03-26 11:19:27 +0000 differ
2566=== added file 'resources/images/snow/44.png'
2567Binary files resources/images/snow/44.png 1970-01-01 00:00:00 +0000 and resources/images/snow/44.png 2014-03-26 11:19:27 +0000 differ
2568=== added file 'resources/images/snow/45.png'
2569Binary files resources/images/snow/45.png 1970-01-01 00:00:00 +0000 and resources/images/snow/45.png 2014-03-26 11:19:27 +0000 differ
2570=== added file 'resources/images/snow/46.png'
2571Binary files resources/images/snow/46.png 1970-01-01 00:00:00 +0000 and resources/images/snow/46.png 2014-03-26 11:19:27 +0000 differ
2572=== added file 'resources/images/snow/47.png'
2573Binary files resources/images/snow/47.png 1970-01-01 00:00:00 +0000 and resources/images/snow/47.png 2014-03-26 11:19:27 +0000 differ
2574=== added file 'resources/images/snow/48.png'
2575Binary files resources/images/snow/48.png 1970-01-01 00:00:00 +0000 and resources/images/snow/48.png 2014-03-26 11:19:27 +0000 differ
2576=== added file 'resources/images/snow/49.png'
2577Binary files resources/images/snow/49.png 1970-01-01 00:00:00 +0000 and resources/images/snow/49.png 2014-03-26 11:19:27 +0000 differ
2578=== added file 'resources/images/snow/5.png'
2579Binary files resources/images/snow/5.png 1970-01-01 00:00:00 +0000 and resources/images/snow/5.png 2014-03-26 11:19:27 +0000 differ
2580=== added file 'resources/images/snow/50.png'
2581Binary files resources/images/snow/50.png 1970-01-01 00:00:00 +0000 and resources/images/snow/50.png 2014-03-26 11:19:27 +0000 differ
2582=== added file 'resources/images/snow/6.png'
2583Binary files resources/images/snow/6.png 1970-01-01 00:00:00 +0000 and resources/images/snow/6.png 2014-03-26 11:19:27 +0000 differ
2584=== added file 'resources/images/snow/7.png'
2585Binary files resources/images/snow/7.png 1970-01-01 00:00:00 +0000 and resources/images/snow/7.png 2014-03-26 11:19:27 +0000 differ
2586=== added file 'resources/images/snow/8.png'
2587Binary files resources/images/snow/8.png 1970-01-01 00:00:00 +0000 and resources/images/snow/8.png 2014-03-26 11:19:27 +0000 differ
2588=== added file 'resources/images/snow/9.png'
2589Binary files resources/images/snow/9.png 1970-01-01 00:00:00 +0000 and resources/images/snow/9.png 2014-03-26 11:19:27 +0000 differ
2590=== added directory 'resources/images/snow_rain'
2591=== added file 'resources/images/snow_rain.png'
2592Binary files resources/images/snow_rain.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain.png 2014-03-26 11:19:27 +0000 differ
2593=== added file 'resources/images/snow_rain/1.png'
2594Binary files resources/images/snow_rain/1.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/1.png 2014-03-26 11:19:27 +0000 differ
2595=== added file 'resources/images/snow_rain/10.png'
2596Binary files resources/images/snow_rain/10.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/10.png 2014-03-26 11:19:27 +0000 differ
2597=== added file 'resources/images/snow_rain/11.png'
2598Binary files resources/images/snow_rain/11.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/11.png 2014-03-26 11:19:27 +0000 differ
2599=== added file 'resources/images/snow_rain/12.png'
2600Binary files resources/images/snow_rain/12.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/12.png 2014-03-26 11:19:27 +0000 differ
2601=== added file 'resources/images/snow_rain/13.png'
2602Binary files resources/images/snow_rain/13.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/13.png 2014-03-26 11:19:27 +0000 differ
2603=== added file 'resources/images/snow_rain/14.png'
2604Binary files resources/images/snow_rain/14.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/14.png 2014-03-26 11:19:27 +0000 differ
2605=== added file 'resources/images/snow_rain/15.png'
2606Binary files resources/images/snow_rain/15.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/15.png 2014-03-26 11:19:27 +0000 differ
2607=== added file 'resources/images/snow_rain/16.png'
2608Binary files resources/images/snow_rain/16.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/16.png 2014-03-26 11:19:27 +0000 differ
2609=== added file 'resources/images/snow_rain/17.png'
2610Binary files resources/images/snow_rain/17.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/17.png 2014-03-26 11:19:27 +0000 differ
2611=== added file 'resources/images/snow_rain/18.png'
2612Binary files resources/images/snow_rain/18.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/18.png 2014-03-26 11:19:27 +0000 differ
2613=== added file 'resources/images/snow_rain/19.png'
2614Binary files resources/images/snow_rain/19.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/19.png 2014-03-26 11:19:27 +0000 differ
2615=== added file 'resources/images/snow_rain/2.png'
2616Binary files resources/images/snow_rain/2.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/2.png 2014-03-26 11:19:27 +0000 differ
2617=== added file 'resources/images/snow_rain/20.png'
2618Binary files resources/images/snow_rain/20.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/20.png 2014-03-26 11:19:27 +0000 differ
2619=== added file 'resources/images/snow_rain/21.png'
2620Binary files resources/images/snow_rain/21.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/21.png 2014-03-26 11:19:27 +0000 differ
2621=== added file 'resources/images/snow_rain/22.png'
2622Binary files resources/images/snow_rain/22.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/22.png 2014-03-26 11:19:27 +0000 differ
2623=== added file 'resources/images/snow_rain/23.png'
2624Binary files resources/images/snow_rain/23.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/23.png 2014-03-26 11:19:27 +0000 differ
2625=== added file 'resources/images/snow_rain/24.png'
2626Binary files resources/images/snow_rain/24.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/24.png 2014-03-26 11:19:27 +0000 differ
2627=== added file 'resources/images/snow_rain/25.png'
2628Binary files resources/images/snow_rain/25.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/25.png 2014-03-26 11:19:27 +0000 differ
2629=== added file 'resources/images/snow_rain/26.png'
2630Binary files resources/images/snow_rain/26.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/26.png 2014-03-26 11:19:27 +0000 differ
2631=== added file 'resources/images/snow_rain/27.png'
2632Binary files resources/images/snow_rain/27.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/27.png 2014-03-26 11:19:27 +0000 differ
2633=== added file 'resources/images/snow_rain/28.png'
2634Binary files resources/images/snow_rain/28.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/28.png 2014-03-26 11:19:27 +0000 differ
2635=== added file 'resources/images/snow_rain/29.png'
2636Binary files resources/images/snow_rain/29.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/29.png 2014-03-26 11:19:27 +0000 differ
2637=== added file 'resources/images/snow_rain/3.png'
2638Binary files resources/images/snow_rain/3.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/3.png 2014-03-26 11:19:27 +0000 differ
2639=== added file 'resources/images/snow_rain/30.png'
2640Binary files resources/images/snow_rain/30.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/30.png 2014-03-26 11:19:27 +0000 differ
2641=== added file 'resources/images/snow_rain/31.png'
2642Binary files resources/images/snow_rain/31.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/31.png 2014-03-26 11:19:27 +0000 differ
2643=== added file 'resources/images/snow_rain/32.png'
2644Binary files resources/images/snow_rain/32.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/32.png 2014-03-26 11:19:27 +0000 differ
2645=== added file 'resources/images/snow_rain/33.png'
2646Binary files resources/images/snow_rain/33.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/33.png 2014-03-26 11:19:27 +0000 differ
2647=== added file 'resources/images/snow_rain/34.png'
2648Binary files resources/images/snow_rain/34.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/34.png 2014-03-26 11:19:27 +0000 differ
2649=== added file 'resources/images/snow_rain/35.png'
2650Binary files resources/images/snow_rain/35.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/35.png 2014-03-26 11:19:27 +0000 differ
2651=== added file 'resources/images/snow_rain/36.png'
2652Binary files resources/images/snow_rain/36.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/36.png 2014-03-26 11:19:27 +0000 differ
2653=== added file 'resources/images/snow_rain/37.png'
2654Binary files resources/images/snow_rain/37.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/37.png 2014-03-26 11:19:27 +0000 differ
2655=== added file 'resources/images/snow_rain/38.png'
2656Binary files resources/images/snow_rain/38.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/38.png 2014-03-26 11:19:27 +0000 differ
2657=== added file 'resources/images/snow_rain/39.png'
2658Binary files resources/images/snow_rain/39.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/39.png 2014-03-26 11:19:27 +0000 differ
2659=== added file 'resources/images/snow_rain/4.png'
2660Binary files resources/images/snow_rain/4.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/4.png 2014-03-26 11:19:27 +0000 differ
2661=== added file 'resources/images/snow_rain/40.png'
2662Binary files resources/images/snow_rain/40.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/40.png 2014-03-26 11:19:27 +0000 differ
2663=== added file 'resources/images/snow_rain/41.png'
2664Binary files resources/images/snow_rain/41.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/41.png 2014-03-26 11:19:27 +0000 differ
2665=== added file 'resources/images/snow_rain/42.png'
2666Binary files resources/images/snow_rain/42.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/42.png 2014-03-26 11:19:27 +0000 differ
2667=== added file 'resources/images/snow_rain/43.png'
2668Binary files resources/images/snow_rain/43.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/43.png 2014-03-26 11:19:27 +0000 differ
2669=== added file 'resources/images/snow_rain/44.png'
2670Binary files resources/images/snow_rain/44.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/44.png 2014-03-26 11:19:27 +0000 differ
2671=== added file 'resources/images/snow_rain/45.png'
2672Binary files resources/images/snow_rain/45.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/45.png 2014-03-26 11:19:27 +0000 differ
2673=== added file 'resources/images/snow_rain/46.png'
2674Binary files resources/images/snow_rain/46.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/46.png 2014-03-26 11:19:27 +0000 differ
2675=== added file 'resources/images/snow_rain/47.png'
2676Binary files resources/images/snow_rain/47.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/47.png 2014-03-26 11:19:27 +0000 differ
2677=== added file 'resources/images/snow_rain/48.png'
2678Binary files resources/images/snow_rain/48.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/48.png 2014-03-26 11:19:27 +0000 differ
2679=== added file 'resources/images/snow_rain/49.png'
2680Binary files resources/images/snow_rain/49.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/49.png 2014-03-26 11:19:27 +0000 differ
2681=== added file 'resources/images/snow_rain/5.png'
2682Binary files resources/images/snow_rain/5.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/5.png 2014-03-26 11:19:27 +0000 differ
2683=== added file 'resources/images/snow_rain/50.png'
2684Binary files resources/images/snow_rain/50.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/50.png 2014-03-26 11:19:27 +0000 differ
2685=== added file 'resources/images/snow_rain/6.png'
2686Binary files resources/images/snow_rain/6.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/6.png 2014-03-26 11:19:27 +0000 differ
2687=== added file 'resources/images/snow_rain/7.png'
2688Binary files resources/images/snow_rain/7.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/7.png 2014-03-26 11:19:27 +0000 differ
2689=== added file 'resources/images/snow_rain/8.png'
2690Binary files resources/images/snow_rain/8.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/8.png 2014-03-26 11:19:27 +0000 differ
2691=== added file 'resources/images/snow_rain/9.png'
2692Binary files resources/images/snow_rain/9.png 1970-01-01 00:00:00 +0000 and resources/images/snow_rain/9.png 2014-03-26 11:19:27 +0000 differ
2693=== added directory 'resources/images/snow_shower'
2694=== added file 'resources/images/snow_shower.png'
2695Binary files resources/images/snow_shower.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower.png 2014-03-26 11:19:27 +0000 differ
2696=== added file 'resources/images/snow_shower/1.png'
2697Binary files resources/images/snow_shower/1.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/1.png 2014-03-26 11:19:27 +0000 differ
2698=== added file 'resources/images/snow_shower/10.png'
2699Binary files resources/images/snow_shower/10.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/10.png 2014-03-26 11:19:27 +0000 differ
2700=== added file 'resources/images/snow_shower/11.png'
2701Binary files resources/images/snow_shower/11.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/11.png 2014-03-26 11:19:27 +0000 differ
2702=== added file 'resources/images/snow_shower/12.png'
2703Binary files resources/images/snow_shower/12.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/12.png 2014-03-26 11:19:27 +0000 differ
2704=== added file 'resources/images/snow_shower/13.png'
2705Binary files resources/images/snow_shower/13.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/13.png 2014-03-26 11:19:27 +0000 differ
2706=== added file 'resources/images/snow_shower/14.png'
2707Binary files resources/images/snow_shower/14.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/14.png 2014-03-26 11:19:27 +0000 differ
2708=== added file 'resources/images/snow_shower/15.png'
2709Binary files resources/images/snow_shower/15.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/15.png 2014-03-26 11:19:27 +0000 differ
2710=== added file 'resources/images/snow_shower/16.png'
2711Binary files resources/images/snow_shower/16.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/16.png 2014-03-26 11:19:27 +0000 differ
2712=== added file 'resources/images/snow_shower/17.png'
2713Binary files resources/images/snow_shower/17.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/17.png 2014-03-26 11:19:27 +0000 differ
2714=== added file 'resources/images/snow_shower/18.png'
2715Binary files resources/images/snow_shower/18.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/18.png 2014-03-26 11:19:27 +0000 differ
2716=== added file 'resources/images/snow_shower/19.png'
2717Binary files resources/images/snow_shower/19.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/19.png 2014-03-26 11:19:27 +0000 differ
2718=== added file 'resources/images/snow_shower/2.png'
2719Binary files resources/images/snow_shower/2.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/2.png 2014-03-26 11:19:27 +0000 differ
2720=== added file 'resources/images/snow_shower/20.png'
2721Binary files resources/images/snow_shower/20.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/20.png 2014-03-26 11:19:27 +0000 differ
2722=== added file 'resources/images/snow_shower/21.png'
2723Binary files resources/images/snow_shower/21.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/21.png 2014-03-26 11:19:27 +0000 differ
2724=== added file 'resources/images/snow_shower/22.png'
2725Binary files resources/images/snow_shower/22.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/22.png 2014-03-26 11:19:27 +0000 differ
2726=== added file 'resources/images/snow_shower/23.png'
2727Binary files resources/images/snow_shower/23.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/23.png 2014-03-26 11:19:27 +0000 differ
2728=== added file 'resources/images/snow_shower/24.png'
2729Binary files resources/images/snow_shower/24.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/24.png 2014-03-26 11:19:27 +0000 differ
2730=== added file 'resources/images/snow_shower/25.png'
2731Binary files resources/images/snow_shower/25.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/25.png 2014-03-26 11:19:27 +0000 differ
2732=== added file 'resources/images/snow_shower/26.png'
2733Binary files resources/images/snow_shower/26.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/26.png 2014-03-26 11:19:27 +0000 differ
2734=== added file 'resources/images/snow_shower/27.png'
2735Binary files resources/images/snow_shower/27.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/27.png 2014-03-26 11:19:27 +0000 differ
2736=== added file 'resources/images/snow_shower/28.png'
2737Binary files resources/images/snow_shower/28.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/28.png 2014-03-26 11:19:27 +0000 differ
2738=== added file 'resources/images/snow_shower/29.png'
2739Binary files resources/images/snow_shower/29.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/29.png 2014-03-26 11:19:27 +0000 differ
2740=== added file 'resources/images/snow_shower/3.png'
2741Binary files resources/images/snow_shower/3.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/3.png 2014-03-26 11:19:27 +0000 differ
2742=== added file 'resources/images/snow_shower/30.png'
2743Binary files resources/images/snow_shower/30.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/30.png 2014-03-26 11:19:27 +0000 differ
2744=== added file 'resources/images/snow_shower/31.png'
2745Binary files resources/images/snow_shower/31.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/31.png 2014-03-26 11:19:27 +0000 differ
2746=== added file 'resources/images/snow_shower/32.png'
2747Binary files resources/images/snow_shower/32.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/32.png 2014-03-26 11:19:27 +0000 differ
2748=== added file 'resources/images/snow_shower/33.png'
2749Binary files resources/images/snow_shower/33.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/33.png 2014-03-26 11:19:27 +0000 differ
2750=== added file 'resources/images/snow_shower/34.png'
2751Binary files resources/images/snow_shower/34.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/34.png 2014-03-26 11:19:27 +0000 differ
2752=== added file 'resources/images/snow_shower/35.png'
2753Binary files resources/images/snow_shower/35.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/35.png 2014-03-26 11:19:27 +0000 differ
2754=== added file 'resources/images/snow_shower/36.png'
2755Binary files resources/images/snow_shower/36.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/36.png 2014-03-26 11:19:27 +0000 differ
2756=== added file 'resources/images/snow_shower/37.png'
2757Binary files resources/images/snow_shower/37.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/37.png 2014-03-26 11:19:27 +0000 differ
2758=== added file 'resources/images/snow_shower/38.png'
2759Binary files resources/images/snow_shower/38.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/38.png 2014-03-26 11:19:27 +0000 differ
2760=== added file 'resources/images/snow_shower/39.png'
2761Binary files resources/images/snow_shower/39.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/39.png 2014-03-26 11:19:27 +0000 differ
2762=== added file 'resources/images/snow_shower/4.png'
2763Binary files resources/images/snow_shower/4.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/4.png 2014-03-26 11:19:27 +0000 differ
2764=== added file 'resources/images/snow_shower/40.png'
2765Binary files resources/images/snow_shower/40.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/40.png 2014-03-26 11:19:27 +0000 differ
2766=== added file 'resources/images/snow_shower/41.png'
2767Binary files resources/images/snow_shower/41.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/41.png 2014-03-26 11:19:27 +0000 differ
2768=== added file 'resources/images/snow_shower/42.png'
2769Binary files resources/images/snow_shower/42.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/42.png 2014-03-26 11:19:27 +0000 differ
2770=== added file 'resources/images/snow_shower/43.png'
2771Binary files resources/images/snow_shower/43.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/43.png 2014-03-26 11:19:27 +0000 differ
2772=== added file 'resources/images/snow_shower/44.png'
2773Binary files resources/images/snow_shower/44.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/44.png 2014-03-26 11:19:27 +0000 differ
2774=== added file 'resources/images/snow_shower/45.png'
2775Binary files resources/images/snow_shower/45.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/45.png 2014-03-26 11:19:27 +0000 differ
2776=== added file 'resources/images/snow_shower/46.png'
2777Binary files resources/images/snow_shower/46.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/46.png 2014-03-26 11:19:27 +0000 differ
2778=== added file 'resources/images/snow_shower/47.png'
2779Binary files resources/images/snow_shower/47.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/47.png 2014-03-26 11:19:27 +0000 differ
2780=== added file 'resources/images/snow_shower/48.png'
2781Binary files resources/images/snow_shower/48.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/48.png 2014-03-26 11:19:27 +0000 differ
2782=== added file 'resources/images/snow_shower/49.png'
2783Binary files resources/images/snow_shower/49.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/49.png 2014-03-26 11:19:27 +0000 differ
2784=== added file 'resources/images/snow_shower/5.png'
2785Binary files resources/images/snow_shower/5.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/5.png 2014-03-26 11:19:27 +0000 differ
2786=== added file 'resources/images/snow_shower/50.png'
2787Binary files resources/images/snow_shower/50.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/50.png 2014-03-26 11:19:27 +0000 differ
2788=== added file 'resources/images/snow_shower/6.png'
2789Binary files resources/images/snow_shower/6.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/6.png 2014-03-26 11:19:27 +0000 differ
2790=== added file 'resources/images/snow_shower/7.png'
2791Binary files resources/images/snow_shower/7.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/7.png 2014-03-26 11:19:27 +0000 differ
2792=== added file 'resources/images/snow_shower/8.png'
2793Binary files resources/images/snow_shower/8.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/8.png 2014-03-26 11:19:27 +0000 differ
2794=== added file 'resources/images/snow_shower/9.png'
2795Binary files resources/images/snow_shower/9.png 1970-01-01 00:00:00 +0000 and resources/images/snow_shower/9.png 2014-03-26 11:19:27 +0000 differ
2796=== added directory 'resources/images/sun'
2797=== added file 'resources/images/sun.png'
2798Binary files resources/images/sun.png 1970-01-01 00:00:00 +0000 and resources/images/sun.png 2014-03-26 11:19:27 +0000 differ
2799=== added file 'resources/images/sun/1.png'
2800Binary files resources/images/sun/1.png 1970-01-01 00:00:00 +0000 and resources/images/sun/1.png 2014-03-26 11:19:27 +0000 differ
2801=== added file 'resources/images/sun/10.png'
2802Binary files resources/images/sun/10.png 1970-01-01 00:00:00 +0000 and resources/images/sun/10.png 2014-03-26 11:19:27 +0000 differ
2803=== added file 'resources/images/sun/11.png'
2804Binary files resources/images/sun/11.png 1970-01-01 00:00:00 +0000 and resources/images/sun/11.png 2014-03-26 11:19:27 +0000 differ
2805=== added file 'resources/images/sun/12.png'
2806Binary files resources/images/sun/12.png 1970-01-01 00:00:00 +0000 and resources/images/sun/12.png 2014-03-26 11:19:27 +0000 differ
2807=== added file 'resources/images/sun/13.png'
2808Binary files resources/images/sun/13.png 1970-01-01 00:00:00 +0000 and resources/images/sun/13.png 2014-03-26 11:19:27 +0000 differ
2809=== added file 'resources/images/sun/14.png'
2810Binary files resources/images/sun/14.png 1970-01-01 00:00:00 +0000 and resources/images/sun/14.png 2014-03-26 11:19:27 +0000 differ
2811=== added file 'resources/images/sun/15.png'
2812Binary files resources/images/sun/15.png 1970-01-01 00:00:00 +0000 and resources/images/sun/15.png 2014-03-26 11:19:27 +0000 differ
2813=== added file 'resources/images/sun/16.png'
2814Binary files resources/images/sun/16.png 1970-01-01 00:00:00 +0000 and resources/images/sun/16.png 2014-03-26 11:19:27 +0000 differ
2815=== added file 'resources/images/sun/17.png'
2816Binary files resources/images/sun/17.png 1970-01-01 00:00:00 +0000 and resources/images/sun/17.png 2014-03-26 11:19:27 +0000 differ
2817=== added file 'resources/images/sun/18.png'
2818Binary files resources/images/sun/18.png 1970-01-01 00:00:00 +0000 and resources/images/sun/18.png 2014-03-26 11:19:27 +0000 differ
2819=== added file 'resources/images/sun/19.png'
2820Binary files resources/images/sun/19.png 1970-01-01 00:00:00 +0000 and resources/images/sun/19.png 2014-03-26 11:19:27 +0000 differ
2821=== added file 'resources/images/sun/2.png'
2822Binary files resources/images/sun/2.png 1970-01-01 00:00:00 +0000 and resources/images/sun/2.png 2014-03-26 11:19:27 +0000 differ
2823=== added file 'resources/images/sun/20.png'
2824Binary files resources/images/sun/20.png 1970-01-01 00:00:00 +0000 and resources/images/sun/20.png 2014-03-26 11:19:27 +0000 differ
2825=== added file 'resources/images/sun/21.png'
2826Binary files resources/images/sun/21.png 1970-01-01 00:00:00 +0000 and resources/images/sun/21.png 2014-03-26 11:19:27 +0000 differ
2827=== added file 'resources/images/sun/22.png'
2828Binary files resources/images/sun/22.png 1970-01-01 00:00:00 +0000 and resources/images/sun/22.png 2014-03-26 11:19:27 +0000 differ
2829=== added file 'resources/images/sun/23.png'
2830Binary files resources/images/sun/23.png 1970-01-01 00:00:00 +0000 and resources/images/sun/23.png 2014-03-26 11:19:27 +0000 differ
2831=== added file 'resources/images/sun/24.png'
2832Binary files resources/images/sun/24.png 1970-01-01 00:00:00 +0000 and resources/images/sun/24.png 2014-03-26 11:19:27 +0000 differ
2833=== added file 'resources/images/sun/25.png'
2834Binary files resources/images/sun/25.png 1970-01-01 00:00:00 +0000 and resources/images/sun/25.png 2014-03-26 11:19:27 +0000 differ
2835=== added file 'resources/images/sun/26.png'
2836Binary files resources/images/sun/26.png 1970-01-01 00:00:00 +0000 and resources/images/sun/26.png 2014-03-26 11:19:27 +0000 differ
2837=== added file 'resources/images/sun/27.png'
2838Binary files resources/images/sun/27.png 1970-01-01 00:00:00 +0000 and resources/images/sun/27.png 2014-03-26 11:19:27 +0000 differ
2839=== added file 'resources/images/sun/28.png'
2840Binary files resources/images/sun/28.png 1970-01-01 00:00:00 +0000 and resources/images/sun/28.png 2014-03-26 11:19:27 +0000 differ
2841=== added file 'resources/images/sun/29.png'
2842Binary files resources/images/sun/29.png 1970-01-01 00:00:00 +0000 and resources/images/sun/29.png 2014-03-26 11:19:27 +0000 differ
2843=== added file 'resources/images/sun/3.png'
2844Binary files resources/images/sun/3.png 1970-01-01 00:00:00 +0000 and resources/images/sun/3.png 2014-03-26 11:19:27 +0000 differ
2845=== added file 'resources/images/sun/30.png'
2846Binary files resources/images/sun/30.png 1970-01-01 00:00:00 +0000 and resources/images/sun/30.png 2014-03-26 11:19:27 +0000 differ
2847=== added file 'resources/images/sun/31.png'
2848Binary files resources/images/sun/31.png 1970-01-01 00:00:00 +0000 and resources/images/sun/31.png 2014-03-26 11:19:27 +0000 differ
2849=== added file 'resources/images/sun/32.png'
2850Binary files resources/images/sun/32.png 1970-01-01 00:00:00 +0000 and resources/images/sun/32.png 2014-03-26 11:19:27 +0000 differ
2851=== added file 'resources/images/sun/33.png'
2852Binary files resources/images/sun/33.png 1970-01-01 00:00:00 +0000 and resources/images/sun/33.png 2014-03-26 11:19:27 +0000 differ
2853=== added file 'resources/images/sun/34.png'
2854Binary files resources/images/sun/34.png 1970-01-01 00:00:00 +0000 and resources/images/sun/34.png 2014-03-26 11:19:27 +0000 differ
2855=== added file 'resources/images/sun/35.png'
2856Binary files resources/images/sun/35.png 1970-01-01 00:00:00 +0000 and resources/images/sun/35.png 2014-03-26 11:19:27 +0000 differ
2857=== added file 'resources/images/sun/36.png'
2858Binary files resources/images/sun/36.png 1970-01-01 00:00:00 +0000 and resources/images/sun/36.png 2014-03-26 11:19:27 +0000 differ
2859=== added file 'resources/images/sun/37.png'
2860Binary files resources/images/sun/37.png 1970-01-01 00:00:00 +0000 and resources/images/sun/37.png 2014-03-26 11:19:27 +0000 differ
2861=== added file 'resources/images/sun/38.png'
2862Binary files resources/images/sun/38.png 1970-01-01 00:00:00 +0000 and resources/images/sun/38.png 2014-03-26 11:19:27 +0000 differ
2863=== added file 'resources/images/sun/39.png'
2864Binary files resources/images/sun/39.png 1970-01-01 00:00:00 +0000 and resources/images/sun/39.png 2014-03-26 11:19:27 +0000 differ
2865=== added file 'resources/images/sun/4.png'
2866Binary files resources/images/sun/4.png 1970-01-01 00:00:00 +0000 and resources/images/sun/4.png 2014-03-26 11:19:27 +0000 differ
2867=== added file 'resources/images/sun/40.png'
2868Binary files resources/images/sun/40.png 1970-01-01 00:00:00 +0000 and resources/images/sun/40.png 2014-03-26 11:19:27 +0000 differ
2869=== added file 'resources/images/sun/41.png'
2870Binary files resources/images/sun/41.png 1970-01-01 00:00:00 +0000 and resources/images/sun/41.png 2014-03-26 11:19:27 +0000 differ
2871=== added file 'resources/images/sun/42.png'
2872Binary files resources/images/sun/42.png 1970-01-01 00:00:00 +0000 and resources/images/sun/42.png 2014-03-26 11:19:27 +0000 differ
2873=== added file 'resources/images/sun/43.png'
2874Binary files resources/images/sun/43.png 1970-01-01 00:00:00 +0000 and resources/images/sun/43.png 2014-03-26 11:19:27 +0000 differ
2875=== added file 'resources/images/sun/44.png'
2876Binary files resources/images/sun/44.png 1970-01-01 00:00:00 +0000 and resources/images/sun/44.png 2014-03-26 11:19:27 +0000 differ
2877=== added file 'resources/images/sun/45.png'
2878Binary files resources/images/sun/45.png 1970-01-01 00:00:00 +0000 and resources/images/sun/45.png 2014-03-26 11:19:27 +0000 differ
2879=== added file 'resources/images/sun/46.png'
2880Binary files resources/images/sun/46.png 1970-01-01 00:00:00 +0000 and resources/images/sun/46.png 2014-03-26 11:19:27 +0000 differ
2881=== added file 'resources/images/sun/47.png'
2882Binary files resources/images/sun/47.png 1970-01-01 00:00:00 +0000 and resources/images/sun/47.png 2014-03-26 11:19:27 +0000 differ
2883=== added file 'resources/images/sun/48.png'
2884Binary files resources/images/sun/48.png 1970-01-01 00:00:00 +0000 and resources/images/sun/48.png 2014-03-26 11:19:27 +0000 differ
2885=== added file 'resources/images/sun/49.png'
2886Binary files resources/images/sun/49.png 1970-01-01 00:00:00 +0000 and resources/images/sun/49.png 2014-03-26 11:19:27 +0000 differ
2887=== added file 'resources/images/sun/5.png'
2888Binary files resources/images/sun/5.png 1970-01-01 00:00:00 +0000 and resources/images/sun/5.png 2014-03-26 11:19:27 +0000 differ
2889=== added file 'resources/images/sun/50.png'
2890Binary files resources/images/sun/50.png 1970-01-01 00:00:00 +0000 and resources/images/sun/50.png 2014-03-26 11:19:27 +0000 differ
2891=== added file 'resources/images/sun/6.png'
2892Binary files resources/images/sun/6.png 1970-01-01 00:00:00 +0000 and resources/images/sun/6.png 2014-03-26 11:19:27 +0000 differ
2893=== added file 'resources/images/sun/7.png'
2894Binary files resources/images/sun/7.png 1970-01-01 00:00:00 +0000 and resources/images/sun/7.png 2014-03-26 11:19:27 +0000 differ
2895=== added file 'resources/images/sun/8.png'
2896Binary files resources/images/sun/8.png 1970-01-01 00:00:00 +0000 and resources/images/sun/8.png 2014-03-26 11:19:27 +0000 differ
2897=== added file 'resources/images/sun/9.png'
2898Binary files resources/images/sun/9.png 1970-01-01 00:00:00 +0000 and resources/images/sun/9.png 2014-03-26 11:19:27 +0000 differ
2899=== added directory 'resources/images/thunder'
2900=== added file 'resources/images/thunder.png'
2901Binary files resources/images/thunder.png 1970-01-01 00:00:00 +0000 and resources/images/thunder.png 2014-03-26 11:19:27 +0000 differ
2902=== added file 'resources/images/thunder/1.png'
2903Binary files resources/images/thunder/1.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/1.png 2014-03-26 11:19:27 +0000 differ
2904=== added file 'resources/images/thunder/10.png'
2905Binary files resources/images/thunder/10.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/10.png 2014-03-26 11:19:27 +0000 differ
2906=== added file 'resources/images/thunder/11.png'
2907Binary files resources/images/thunder/11.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/11.png 2014-03-26 11:19:27 +0000 differ
2908=== added file 'resources/images/thunder/12.png'
2909Binary files resources/images/thunder/12.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/12.png 2014-03-26 11:19:27 +0000 differ
2910=== added file 'resources/images/thunder/13.png'
2911Binary files resources/images/thunder/13.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/13.png 2014-03-26 11:19:27 +0000 differ
2912=== added file 'resources/images/thunder/14.png'
2913Binary files resources/images/thunder/14.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/14.png 2014-03-26 11:19:27 +0000 differ
2914=== added file 'resources/images/thunder/15.png'
2915Binary files resources/images/thunder/15.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/15.png 2014-03-26 11:19:27 +0000 differ
2916=== added file 'resources/images/thunder/16.png'
2917Binary files resources/images/thunder/16.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/16.png 2014-03-26 11:19:27 +0000 differ
2918=== added file 'resources/images/thunder/17.png'
2919Binary files resources/images/thunder/17.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/17.png 2014-03-26 11:19:27 +0000 differ
2920=== added file 'resources/images/thunder/18.png'
2921Binary files resources/images/thunder/18.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/18.png 2014-03-26 11:19:27 +0000 differ
2922=== added file 'resources/images/thunder/19.png'
2923Binary files resources/images/thunder/19.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/19.png 2014-03-26 11:19:27 +0000 differ
2924=== added file 'resources/images/thunder/2.png'
2925Binary files resources/images/thunder/2.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/2.png 2014-03-26 11:19:27 +0000 differ
2926=== added file 'resources/images/thunder/20.png'
2927Binary files resources/images/thunder/20.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/20.png 2014-03-26 11:19:27 +0000 differ
2928=== added file 'resources/images/thunder/21.png'
2929Binary files resources/images/thunder/21.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/21.png 2014-03-26 11:19:27 +0000 differ
2930=== added file 'resources/images/thunder/22.png'
2931Binary files resources/images/thunder/22.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/22.png 2014-03-26 11:19:27 +0000 differ
2932=== added file 'resources/images/thunder/23.png'
2933Binary files resources/images/thunder/23.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/23.png 2014-03-26 11:19:27 +0000 differ
2934=== added file 'resources/images/thunder/24.png'
2935Binary files resources/images/thunder/24.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/24.png 2014-03-26 11:19:27 +0000 differ
2936=== added file 'resources/images/thunder/25.png'
2937Binary files resources/images/thunder/25.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/25.png 2014-03-26 11:19:27 +0000 differ
2938=== added file 'resources/images/thunder/26.png'
2939Binary files resources/images/thunder/26.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/26.png 2014-03-26 11:19:27 +0000 differ
2940=== added file 'resources/images/thunder/27.png'
2941Binary files resources/images/thunder/27.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/27.png 2014-03-26 11:19:27 +0000 differ
2942=== added file 'resources/images/thunder/28.png'
2943Binary files resources/images/thunder/28.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/28.png 2014-03-26 11:19:27 +0000 differ
2944=== added file 'resources/images/thunder/29.png'
2945Binary files resources/images/thunder/29.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/29.png 2014-03-26 11:19:27 +0000 differ
2946=== added file 'resources/images/thunder/3.png'
2947Binary files resources/images/thunder/3.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/3.png 2014-03-26 11:19:27 +0000 differ
2948=== added file 'resources/images/thunder/30.png'
2949Binary files resources/images/thunder/30.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/30.png 2014-03-26 11:19:27 +0000 differ
2950=== added file 'resources/images/thunder/31.png'
2951Binary files resources/images/thunder/31.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/31.png 2014-03-26 11:19:27 +0000 differ
2952=== added file 'resources/images/thunder/32.png'
2953Binary files resources/images/thunder/32.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/32.png 2014-03-26 11:19:27 +0000 differ
2954=== added file 'resources/images/thunder/33.png'
2955Binary files resources/images/thunder/33.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/33.png 2014-03-26 11:19:27 +0000 differ
2956=== added file 'resources/images/thunder/34.png'
2957Binary files resources/images/thunder/34.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/34.png 2014-03-26 11:19:27 +0000 differ
2958=== added file 'resources/images/thunder/35.png'
2959Binary files resources/images/thunder/35.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/35.png 2014-03-26 11:19:27 +0000 differ
2960=== added file 'resources/images/thunder/36.png'
2961Binary files resources/images/thunder/36.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/36.png 2014-03-26 11:19:27 +0000 differ
2962=== added file 'resources/images/thunder/37.png'
2963Binary files resources/images/thunder/37.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/37.png 2014-03-26 11:19:27 +0000 differ
2964=== added file 'resources/images/thunder/38.png'
2965Binary files resources/images/thunder/38.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/38.png 2014-03-26 11:19:27 +0000 differ
2966=== added file 'resources/images/thunder/39.png'
2967Binary files resources/images/thunder/39.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/39.png 2014-03-26 11:19:27 +0000 differ
2968=== added file 'resources/images/thunder/4.png'
2969Binary files resources/images/thunder/4.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/4.png 2014-03-26 11:19:27 +0000 differ
2970=== added file 'resources/images/thunder/40.png'
2971Binary files resources/images/thunder/40.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/40.png 2014-03-26 11:19:27 +0000 differ
2972=== added file 'resources/images/thunder/41.png'
2973Binary files resources/images/thunder/41.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/41.png 2014-03-26 11:19:27 +0000 differ
2974=== added file 'resources/images/thunder/42.png'
2975Binary files resources/images/thunder/42.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/42.png 2014-03-26 11:19:27 +0000 differ
2976=== added file 'resources/images/thunder/43.png'
2977Binary files resources/images/thunder/43.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/43.png 2014-03-26 11:19:27 +0000 differ
2978=== added file 'resources/images/thunder/44.png'
2979Binary files resources/images/thunder/44.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/44.png 2014-03-26 11:19:27 +0000 differ
2980=== added file 'resources/images/thunder/45.png'
2981Binary files resources/images/thunder/45.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/45.png 2014-03-26 11:19:27 +0000 differ
2982=== added file 'resources/images/thunder/46.png'
2983Binary files resources/images/thunder/46.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/46.png 2014-03-26 11:19:27 +0000 differ
2984=== added file 'resources/images/thunder/47.png'
2985Binary files resources/images/thunder/47.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/47.png 2014-03-26 11:19:27 +0000 differ
2986=== added file 'resources/images/thunder/48.png'
2987Binary files resources/images/thunder/48.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/48.png 2014-03-26 11:19:27 +0000 differ
2988=== added file 'resources/images/thunder/49.png'
2989Binary files resources/images/thunder/49.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/49.png 2014-03-26 11:19:27 +0000 differ
2990=== added file 'resources/images/thunder/5.png'
2991Binary files resources/images/thunder/5.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/5.png 2014-03-26 11:19:27 +0000 differ
2992=== added file 'resources/images/thunder/50.png'
2993Binary files resources/images/thunder/50.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/50.png 2014-03-26 11:19:27 +0000 differ
2994=== added file 'resources/images/thunder/6.png'
2995Binary files resources/images/thunder/6.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/6.png 2014-03-26 11:19:27 +0000 differ
2996=== added file 'resources/images/thunder/7.png'
2997Binary files resources/images/thunder/7.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/7.png 2014-03-26 11:19:27 +0000 differ
2998=== added file 'resources/images/thunder/8.png'
2999Binary files resources/images/thunder/8.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/8.png 2014-03-26 11:19:27 +0000 differ
3000=== added file 'resources/images/thunder/9.png'
3001Binary files resources/images/thunder/9.png 1970-01-01 00:00:00 +0000 and resources/images/thunder/9.png 2014-03-26 11:19:27 +0000 differ
3002=== modified file 'tests/autopilot/ubuntu_weather_app/files/1.json'
3003--- tests/autopilot/ubuntu_weather_app/files/1.json 2014-01-23 21:11:25 +0000
3004+++ tests/autopilot/ubuntu_weather_app/files/1.json 2014-03-26 11:19:27 +0000
3005@@ -1,1 +1,1709 @@
3006-{"location":{"coord":{"lon":"10.01534","lat":"53.57532"},"timezone":{"gmtOffset":1,"dstOffset":2,"timeZoneId":"Europe/Berlin"},"areaLabel":"Hamburg, Germany","population":1739117,"adminName2":"","name":"Hamburg","country":"DE","countryName":"Germany","adminName1":"Hamburg","adminName3":"","services":{"weatherchannel":"GMXX0049","geonames":2911298}},"db":{"updated":"2014-01-23T20:43:15.724Z","id":3},"format":20131207,"data":[{"date":{"year":2014,"month":0,"date":23,"hours":18,"minutes":59},"timestamp":1390500000,"metric":{"tempMin":-6,"windSpeed":22},"imperial":{"tempMin":21.2,"tempMax":21.2,"windSpeed":49.28},"precipType":"snow","propPrecip":50,"pressure":null,"humidity":65,"icon":"snow_day","condition":"Snow Showers Early","windDeg":102,"windDir":"ESE","uv":0,"hourly":[{"timestamp":1390510800,"date":{"year":2014,"month":0,"date":23,"hours":22,"minutes":0},"metric":{"temp":-3,"tempFeels":-10,"windSpeed":22},"imperial":{"temp":26.6,"tempFeels":14,"windSpeed":49.28},"precipType":"snow","propPrecip":50,"humidity":70,"windDeg":109,"windDir":"ESE","icon":"snow_shower","condition":"Snow Shower","uv":0},{"timestamp":1390514400,"date":{"year":2014,"month":0,"date":23,"hours":23,"minutes":0},"metric":{"temp":-4,"tempFeels":-11,"windSpeed":22},"imperial":{"temp":24.8,"tempFeels":12.2,"windSpeed":49.28},"precipType":"snow","propPrecip":40,"humidity":69,"windDeg":106,"windDir":"ESE","icon":"snow_shower","condition":"Snow Shower","uv":0}],"current":{"timestamp":"1390503000","date":{"year":2014,"month":0,"date":23,"hours":18,"minutes":59},"metric":{"temp":-3,"tempFeels":-11,"windSpeed":24},"imperial":{"temp":26.6,"tempFeels":12.2,"windSpeed":53.760000000000005},"precipType":null,"propPrecip":null,"humidity":91,"pressure":"1013.88","windDeg":100,"windDir":"E","icon":"broken_clouds_day","condition":"Cloudy","uv":0}},{"date":{"year":2014,"month":0,"date":24,"hours":18,"minutes":59},"timestamp":1390586400,"metric":{"tempMin":-8,"tempMax":-5,"windSpeed":19},"imperial":{"tempMin":17.6,"tempMax":23,"windSpeed":42.56},"precipType":"snow","propPrecip":20,"pressure":null,"humidity":61,"icon":"broken_clouds_day","condition":"AM Clouds / PM Sun","windDeg":96,"windDir":"E","uv":1,"hourly":[{"timestamp":1390518000,"date":{"year":2014,"month":0,"date":24,"hours":0,"minutes":0},"metric":{"temp":-4,"tempFeels":-11,"windSpeed":20},"imperial":{"temp":24.8,"tempFeels":12.2,"windSpeed":44.800000000000004},"precipType":"snow","propPrecip":20,"humidity":66,"windDeg":102,"windDir":"ESE","icon":"broken_clouds_day","condition":"Cloudy","uv":0},{"timestamp":1390521600,"date":{"year":2014,"month":0,"date":24,"hours":1,"minutes":0},"metric":{"temp":-5,"tempFeels":-11,"windSpeed":20},"imperial":{"temp":23,"tempFeels":12.2,"windSpeed":44.800000000000004},"precipType":"snow","propPrecip":20,"humidity":66,"windDeg":98,"windDir":"E","icon":"broken_clouds_day","condition":"Cloudy","uv":0},{"timestamp":1390525200,"date":{"year":2014,"month":0,"date":24,"hours":2,"minutes":0},"metric":{"temp":-5,"tempFeels":-11,"windSpeed":20},"imperial":{"temp":23,"tempFeels":12.2,"windSpeed":44.800000000000004},"precipType":"snow","propPrecip":20,"humidity":62,"windDeg":95,"windDir":"E","icon":"broken_clouds_day","condition":"Cloudy","uv":0},{"timestamp":1390528800,"date":{"year":2014,"month":0,"date":24,"hours":3,"minutes":0},"metric":{"temp":-5,"tempFeels":-12,"windSpeed":20},"imperial":{"temp":23,"tempFeels":10.399999999999999,"windSpeed":44.800000000000004},"precipType":"snow","propPrecip":20,"humidity":62,"windDeg":94,"windDir":"E","icon":"broken_clouds_day","condition":"Cloudy","uv":0},{"timestamp":1390532400,"date":{"year":2014,"month":0,"date":24,"hours":4,"minutes":0},"metric":{"temp":-5,"tempFeels":-12,"windSpeed":20},"imperial":{"temp":23,"tempFeels":10.399999999999999,"windSpeed":44.800000000000004},"precipType":"snow","propPrecip":20,"humidity":62,"windDeg":93,"windDir":"E","icon":"broken_clouds_day","condition":"Cloudy","uv":0},{"timestamp":1390536000,"date":{"year":2014,"month":0,"date":24,"hours":5,"minutes":0},"metric":{"temp":-5,"tempFeels":-12,"windSpeed":19},"imperial":{"temp":23,"tempFeels":10.399999999999999,"windSpeed":42.56},"precipType":"snow","propPrecip":20,"humidity":62,"windDeg":93,"windDir":"E","icon":"broken_clouds_day","condition":"Cloudy","uv":0},{"timestamp":1390539600,"date":{"year":2014,"month":0,"date":24,"hours":6,"minutes":0},"metric":{"temp":-6,"tempFeels":-12,"windSpeed":19},"imperial":{"temp":21.2,"tempFeels":10.399999999999999,"windSpeed":42.56},"precipType":"snow","propPrecip":20,"humidity":62,"windDeg":92,"windDir":"E","icon":"broken_clouds_day","condition":"Cloudy","uv":0},{"timestamp":1390543200,"date":{"year":2014,"month":0,"date":24,"hours":7,"minutes":0},"metric":{"temp":-6,"tempFeels":-12,"windSpeed":17},"imperial":{"temp":21.2,"tempFeels":10.399999999999999,"windSpeed":38.080000000000005},"precipType":"snow","propPrecip":20,"humidity":62,"windDeg":92,"windDir":"E","icon":"broken_clouds_day","condition":"Cloudy","uv":0},{"timestamp":1390546800,"date":{"year":2014,"month":0,"date":24,"hours":8,"minutes":0},"metric":{"temp":-6,"tempFeels":-13,"windSpeed":17},"imperial":{"temp":21.2,"tempFeels":8.599999999999998,"windSpeed":38.080000000000005},"precipType":"snow","propPrecip":20,"humidity":62,"windDeg":91,"windDir":"E","icon":"broken_clouds_day","condition":"Cloudy","uv":0},{"timestamp":1390550400,"date":{"year":2014,"month":0,"date":24,"hours":9,"minutes":0},"metric":{"temp":-6,"tempFeels":-13,"windSpeed":19},"imperial":{"temp":21.2,"tempFeels":8.599999999999998,"windSpeed":42.56},"precipType":"snow","propPrecip":10,"humidity":62,"windDeg":90,"windDir":"E","icon":"broken_clouds_day","condition":"Partly Cloudy","uv":0},{"timestamp":1390554000,"date":{"year":2014,"month":0,"date":24,"hours":10,"minutes":0},"metric":{"temp":-6,"tempFeels":-13,"windSpeed":19},"imperial":{"temp":21.2,"tempFeels":8.599999999999998,"windSpeed":42.56},"precipType":"snow","propPrecip":10,"humidity":62,"windDeg":91,"windDir":"E","icon":"broken_clouds_day","condition":"Partly Cloudy","uv":0},{"timestamp":1390557600,"date":{"year":2014,"month":0,"date":24,"hours":11,"minutes":0},"metric":{"temp":-6,"tempFeels":-12,"windSpeed":19},"imperial":{"temp":21.2,"tempFeels":10.399999999999999,"windSpeed":42.56},"precipType":"snow","propPrecip":null,"humidity":62,"windDeg":93,"windDir":"E","icon":"broken_clouds_day","condition":"Partly Cloudy","uv":0},{"timestamp":1390561200,"date":{"year":2014,"month":0,"date":24,"hours":12,"minutes":0},"metric":{"temp":-5,"tempFeels":-12,"windSpeed":19},"imperial":{"temp":23,"tempFeels":10.399999999999999,"windSpeed":42.56},"precipType":"snow","propPrecip":null,"humidity":62,"windDeg":96,"windDir":"E","icon":"few_clouds_day","condition":"Mostly Sunny","uv":1},{"timestamp":1390564800,"date":{"year":2014,"month":0,"date":24,"hours":13,"minutes":0},"metric":{"temp":-5,"tempFeels":-11,"windSpeed":19},"imperial":{"temp":23,"tempFeels":12.2,"windSpeed":42.56},"precipType":"snow","propPrecip":null,"humidity":62,"windDeg":98,"windDir":"E","icon":"few_clouds_day","condition":"Mostly Sunny","uv":1},{"timestamp":1390568400,"date":{"year":2014,"month":0,"date":24,"hours":14,"minutes":0},"metric":{"temp":-5,"tempFeels":-11,"windSpeed":17},"imperial":{"temp":23,"tempFeels":12.2,"windSpeed":38.080000000000005},"precipType":"snow","propPrecip":null,"humidity":62,"windDeg":98,"windDir":"E","icon":"few_clouds_day","condition":"Mostly Sunny","uv":0},{"timestamp":1390572000,"date":{"year":2014,"month":0,"date":24,"hours":15,"minutes":0},"metric":{"temp":-5,"tempFeels":-11,"windSpeed":17},"imperial":{"temp":23,"tempFeels":12.2,"windSpeed":38.080000000000005},"precipType":"snow","propPrecip":null,"humidity":62,"windDeg":98,"windDir":"E","icon":"few_clouds_day","condition":"Mostly Sunny","uv":0},{"timestamp":1390575600,"date":{"year":2014,"month":0,"date":24,"hours":16,"minutes":0},"metric":{"temp":-5,"tempFeels":-10,"windSpeed":16},"imperial":{"temp":23,"tempFeels":14,"windSpeed":35.84},"precipType":"snow","propPrecip":null,"humidity":59,"windDeg":97,"windDir":"E","icon":"few_clouds_day","condition":"Mostly Sunny","uv":0},{"timestamp":1390579200,"date":{"year":2014,"month":0,"date":24,"hours":17,"minutes":0},"metric":{"temp":-5,"tempFeels":-10,"windSpeed":16},"imperial":{"temp":23,"tempFeels":14,"windSpeed":35.84},"precipType":"snow","propPrecip":null,"humidity":59,"windDeg":97,"windDir":"E","icon":"few_clouds_day","condition":"Mostly Clear","uv":0},{"timestamp":1390582800,"date":{"year":2014,"month":0,"date":24,"hours":18,"minutes":0},"metric":{"temp":-5,"tempFeels":-11,"windSpeed":17},"imperial":{"temp":23,"tempFeels":12.2,"windSpeed":38.080000000000005},"precipType":"snow","propPrecip":null,"humidity":59,"windDeg":98,"windDir":"E","icon":"scattered_clouds_day","condition":"Partly Cloudy","uv":0},{"timestamp":1390586400,"date":{"year":2014,"month":0,"date":24,"hours":19,"minutes":0},"metric":{"temp":-5,"tempFeels":-11,"windSpeed":17},"imperial":{"temp":23,"tempFeels":12.2,"windSpeed":38.080000000000005},"precipType":"snow","propPrecip":null,"humidity":59,"windDeg":100,"windDir":"E","icon":"scattered_clouds_day","condition":"Partly Cloudy","uv":0},{"timestamp":1390590000,"date":{"year":2014,"month":0,"date":24,"hours":20,"minutes":0},"metric":{"temp":-5,"tempFeels":-11,"windSpeed":17},"imperial":{"temp":23,"tempFeels":12.2,"windSpeed":38.080000000000005},"precipType":"snow","propPrecip":null,"humidity":59,"windDeg":103,"windDir":"ESE","icon":"scattered_clouds_day","condition":"Partly Cloudy","uv":0},{"timestamp":1390593600,"date":{"year":2014,"month":0,"date":24,"hours":21,"minutes":0},"metric":{"temp":-5,"tempFeels":-11,"windSpeed":16},"imperial":{"temp":23,"tempFeels":12.2,"windSpeed":35.84},"precipType":"snow","propPrecip":null,"humidity":56,"windDeg":105,"windDir":"ESE","icon":"scattered_clouds_day","condition":"Partly Cloudy","uv":0}]},{"date":{"year":2014,"month":0,"date":25,"hours":18,"minutes":59},"timestamp":1390672800,"metric":{"tempMin":-8,"tempMax":-5,"windSpeed":24},"imperial":{"tempMin":17.6,"tempMax":23,"windSpeed":53.760000000000005},"precipType":"snow","propPrecip":10,"pressure":null,"humidity":58,"icon":"broken_clouds_day","condition":"Cloudy","windDeg":124,"windDir":"SE","uv":0,"hourly":[]},{"date":{"year":2014,"month":0,"date":26,"hours":18,"minutes":59},"timestamp":1390759200,"metric":{"tempMin":-8,"tempMax":-6,"windSpeed":19},"imperial":{"tempMin":17.6,"tempMax":21.2,"windSpeed":42.56},"precipType":"snow","propPrecip":10,"pressure":null,"humidity":60,"icon":"broken_clouds_day","condition":"Partly Cloudy","windDeg":112,"windDir":"ESE","uv":1,"hourly":[]},{"date":{"year":2014,"month":0,"date":27,"hours":18,"minutes":59},"timestamp":1390845600,"metric":{"tempMin":-2,"tempMax":-1,"windSpeed":27},"imperial":{"tempMin":28.4,"tempMax":30.2,"windSpeed":60.480000000000004},"precipType":"snow","propPrecip":90,"pressure":null,"humidity":78,"icon":"snow_day","condition":"Snow","windDeg":131,"windDir":"SE","uv":0,"hourly":[]},{"date":{"year":2014,"month":0,"date":28,"hours":18,"minutes":59},"timestamp":1390932000,"metric":{"tempMin":-3,"tempMax":2,"windSpeed":20},"imperial":{"tempMin":26.6,"tempMax":35.6,"windSpeed":44.800000000000004},"precipType":"precip","propPrecip":70,"pressure":null,"humidity":61,"icon":"shower_rain_day","condition":"Rain / Snow","windDeg":171,"windDir":"S","uv":0,"hourly":[]},{"date":{"year":2014,"month":0,"date":29,"hours":18,"minutes":59},"timestamp":1391018400,"metric":{"tempMin":-5,"tempMax":-1,"windSpeed":24},"imperial":{"tempMin":23,"tempMax":30.2,"windSpeed":53.760000000000005},"precipType":"precip","propPrecip":20,"pressure":null,"humidity":94,"icon":"broken_clouds_day","condition":"Cloudy","windDeg":108,"windDir":"ESE","uv":0,"hourly":[]},{"date":{"year":2014,"month":0,"date":30,"hours":18,"minutes":59},"timestamp":1391104800,"metric":{"tempMin":-5,"tempMax":-1,"windSpeed":16},"imperial":{"tempMin":23,"tempMax":30.2,"windSpeed":35.84},"precipType":"precip","propPrecip":10,"pressure":null,"humidity":93,"icon":"broken_clouds_day","condition":"Partly Cloudy","windDeg":78,"windDir":"ENE","uv":1,"hourly":[]},{"date":{"year":2014,"month":0,"date":31,"hours":18,"minutes":59},"timestamp":1391191200,"metric":{"tempMin":-2,"tempMax":0,"windSpeed":16},"imperial":{"tempMin":28.4,"tempMax":28.4,"windSpeed":35.84},"precipType":"precip","propPrecip":20,"pressure":null,"humidity":93,"icon":"broken_clouds_day","condition":"Partly Cloudy","windDeg":147,"windDir":"SSE","uv":1,"hourly":[]},{"date":{"year":2014,"month":1,"date":1,"hours":18,"minutes":59},"timestamp":1391277600,"metric":{"tempMin":-3,"tempMax":0,"windSpeed":14},"imperial":{"tempMin":26.6,"tempMax":26.6,"windSpeed":31.360000000000003},"precipType":"snow","propPrecip":30,"pressure":null,"humidity":92,"icon":"snow_shower","condition":"Snow Shower","windDeg":163,"windDir":"SSE","uv":0,"hourly":[]}],"save":true,"updated":1390509857882}
3007+{
3008+ "location": {
3009+ "coord": {
3010+ "lon": "10.01534",
3011+ "lat": "53.57532"
3012+ },
3013+ "timezone": {
3014+ "gmtOffset": 1,
3015+ "dstOffset": 2,
3016+ "timeZoneId": "Europe/Berlin"
3017+ },
3018+ "areaLabel": "Hamburg, Germany",
3019+ "population": 1739117,
3020+ "adminName2": "",
3021+ "name": "Hamburg",
3022+ "country": "DE",
3023+ "countryName": "Germany",
3024+ "adminName1": "Hamburg",
3025+ "adminName3": "",
3026+ "services": {
3027+ "weatherchannel": "GMXX0049",
3028+ "geonames": 2911298
3029+ }
3030+ },
3031+ "db": {
3032+ "id": 1,
3033+ "updated": "2014-03-15T14:41:54.459Z"
3034+ },
3035+ "format": 20140315,
3036+ "data": [
3037+ {
3038+ "date": {
3039+ "year": 2014,
3040+ "month": 2,
3041+ "date": 15,
3042+ "hours": 18,
3043+ "minutes": 59
3044+ },
3045+ "timestamp": 1394906400,
3046+ "metric": {
3047+ "tempMin": 6,
3048+ "windSpeed": 32
3049+ },
3050+ "imperial": {
3051+ "tempMin": 42.8,
3052+ "tempMax": 42.8,
3053+ "windSpeed": 19.472
3054+ },
3055+ "precipType": "rain",
3056+ "propPrecip": 60,
3057+ "pressure": null,
3058+ "humidity": 90,
3059+ "icon": "rain",
3060+ "condition": "Showers / Wind",
3061+ "windDeg": 279,
3062+ "windDir": "W",
3063+ "uv": 0,
3064+ "hourly": [
3065+ {
3066+ "timestamp": 1394895600,
3067+ "date": {
3068+ "year": 2014,
3069+ "month": 2,
3070+ "date": 15,
3071+ "hours": 16,
3072+ "minutes": 0
3073+ },
3074+ "metric": {
3075+ "temp": 8,
3076+ "tempFeels": 4,
3077+ "windSpeed": 32
3078+ },
3079+ "imperial": {
3080+ "temp": 46.4,
3081+ "tempFeels": 39.2,
3082+ "windSpeed": 19.872
3083+ },
3084+ "precipType": "rain",
3085+ "propPrecip": 10,
3086+ "humidity": 71,
3087+ "windDeg": 296,
3088+ "windDir": "WNW",
3089+ "icon": "overcast",
3090+ "condition": "Partly Cloudy / Wind",
3091+ "uv": 1
3092+ },
3093+ {
3094+ "timestamp": 1394899200,
3095+ "date": {
3096+ "year": 2014,
3097+ "month": 2,
3098+ "date": 15,
3099+ "hours": 17,
3100+ "minutes": 0
3101+ },
3102+ "metric": {
3103+ "temp": 7,
3104+ "tempFeels": 3,
3105+ "windSpeed": 32
3106+ },
3107+ "imperial": {
3108+ "temp": 44.6,
3109+ "tempFeels": 37.4,
3110+ "windSpeed": 19.872
3111+ },
3112+ "precipType": "rain",
3113+ "propPrecip": 10,
3114+ "humidity": 77,
3115+ "windDeg": 292,
3116+ "windDir": "WNW",
3117+ "icon": "overcast",
3118+ "condition": "Partly Cloudy / Wind",
3119+ "uv": 0
3120+ },
3121+ {
3122+ "timestamp": 1394902800,
3123+ "date": {
3124+ "year": 2014,
3125+ "month": 2,
3126+ "date": 15,
3127+ "hours": 18,
3128+ "minutes": 0
3129+ },
3130+ "metric": {
3131+ "temp": 7,
3132+ "tempFeels": 3,
3133+ "windSpeed": 27
3134+ },
3135+ "imperial": {
3136+ "temp": 44.6,
3137+ "tempFeels": 37.4,
3138+ "windSpeed": 16.767
3139+ },
3140+ "precipType": "rain",
3141+ "propPrecip": 20,
3142+ "humidity": 80,
3143+ "windDeg": 288,
3144+ "windDir": "WNW",
3145+ "icon": "overcast",
3146+ "condition": "Cloudy",
3147+ "uv": 0
3148+ },
3149+ {
3150+ "timestamp": 1394906400,
3151+ "date": {
3152+ "year": 2014,
3153+ "month": 2,
3154+ "date": 15,
3155+ "hours": 19,
3156+ "minutes": 0
3157+ },
3158+ "metric": {
3159+ "temp": 7,
3160+ "tempFeels": 3,
3161+ "windSpeed": 24
3162+ },
3163+ "imperial": {
3164+ "temp": 44.6,
3165+ "tempFeels": 37.4,
3166+ "windSpeed": 14.904
3167+ },
3168+ "precipType": "rain",
3169+ "propPrecip": 20,
3170+ "humidity": 83,
3171+ "windDeg": 283,
3172+ "windDir": "WNW",
3173+ "icon": "overcast",
3174+ "condition": "Cloudy",
3175+ "uv": 0
3176+ },
3177+ {
3178+ "timestamp": 1394910000,
3179+ "date": {
3180+ "year": 2014,
3181+ "month": 2,
3182+ "date": 15,
3183+ "hours": 20,
3184+ "minutes": 0
3185+ },
3186+ "metric": {
3187+ "temp": 7,
3188+ "tempFeels": 3,
3189+ "windSpeed": 24
3190+ },
3191+ "imperial": {
3192+ "temp": 44.6,
3193+ "tempFeels": 37.4,
3194+ "windSpeed": 14.904
3195+ },
3196+ "precipType": "rain",
3197+ "propPrecip": 20,
3198+ "humidity": 86,
3199+ "windDeg": 277,
3200+ "windDir": "W",
3201+ "icon": "overcast",
3202+ "condition": "Cloudy",
3203+ "uv": 0
3204+ },
3205+ {
3206+ "timestamp": 1394913600,
3207+ "date": {
3208+ "year": 2014,
3209+ "month": 2,
3210+ "date": 15,
3211+ "hours": 21,
3212+ "minutes": 0
3213+ },
3214+ "metric": {
3215+ "temp": 7,
3216+ "tempFeels": 3,
3217+ "windSpeed": 22
3218+ },
3219+ "imperial": {
3220+ "temp": 44.6,
3221+ "tempFeels": 37.4,
3222+ "windSpeed": 13.661999999999999
3223+ },
3224+ "precipType": "rain",
3225+ "propPrecip": 50,
3226+ "humidity": 86,
3227+ "windDeg": 271,
3228+ "windDir": "W",
3229+ "icon": "rain",
3230+ "condition": "Light Rain",
3231+ "uv": 0
3232+ },
3233+ {
3234+ "timestamp": 1394917200,
3235+ "date": {
3236+ "year": 2014,
3237+ "month": 2,
3238+ "date": 15,
3239+ "hours": 22,
3240+ "minutes": 0
3241+ },
3242+ "metric": {
3243+ "temp": 7,
3244+ "tempFeels": 3,
3245+ "windSpeed": 22
3246+ },
3247+ "imperial": {
3248+ "temp": 44.6,
3249+ "tempFeels": 37.4,
3250+ "windSpeed": 13.661999999999999
3251+ },
3252+ "precipType": "rain",
3253+ "propPrecip": 60,
3254+ "humidity": 89,
3255+ "windDeg": 268,
3256+ "windDir": "W",
3257+ "icon": "rain",
3258+ "condition": "Light Rain",
3259+ "uv": 0
3260+ },
3261+ {
3262+ "timestamp": 1394920800,
3263+ "date": {
3264+ "year": 2014,
3265+ "month": 2,
3266+ "date": 15,
3267+ "hours": 23,
3268+ "minutes": 0
3269+ },
3270+ "metric": {
3271+ "temp": 7,
3272+ "tempFeels": 3,
3273+ "windSpeed": 24
3274+ },
3275+ "imperial": {
3276+ "temp": 44.6,
3277+ "tempFeels": 37.4,
3278+ "windSpeed": 14.904
3279+ },
3280+ "precipType": "rain",
3281+ "propPrecip": 60,
3282+ "humidity": 93,
3283+ "windDeg": 268,
3284+ "windDir": "W",
3285+ "icon": "rain",
3286+ "condition": "Light Rain",
3287+ "uv": 0
3288+ }
3289+ ],
3290+ "current": {
3291+ "timestamp": "1394893200",
3292+ "date": {
3293+ "year": 2014,
3294+ "month": 2,
3295+ "date": 15,
3296+ "hours": 18,
3297+ "minutes": 59
3298+ },
3299+ "metric": {
3300+ "temp": 8,
3301+ "tempFeels": 4,
3302+ "windSpeed": 38
3303+ },
3304+ "imperial": {
3305+ "temp": 46.4,
3306+ "tempFeels": 39.2,
3307+ "windSpeed": 23.598
3308+ },
3309+ "precipType": null,
3310+ "propPrecip": null,
3311+ "humidity": 62,
3312+ "pressure": "1012.87",
3313+ "windDeg": 290,
3314+ "windDir": "WNW",
3315+ "icon": "cloud_sun",
3316+ "condition": "Partly Cloudy",
3317+ "uv": 1
3318+ }
3319+ },
3320+ {
3321+ "date": {
3322+ "year": 2014,
3323+ "month": 2,
3324+ "date": 16,
3325+ "hours": 18,
3326+ "minutes": 59
3327+ },
3328+ "timestamp": 1394992800,
3329+ "metric": {
3330+ "tempMin": 7,
3331+ "tempMax": 9,
3332+ "windSpeed": 35
3333+ },
3334+ "imperial": {
3335+ "tempMin": 44.6,
3336+ "tempMax": 48.2,
3337+ "windSpeed": 21.735
3338+ },
3339+ "precipType": "rain",
3340+ "propPrecip": 40,
3341+ "pressure": null,
3342+ "humidity": 88,
3343+ "icon": "rain",
3344+ "condition": "Showers / Wind",
3345+ "windDeg": 285,
3346+ "windDir": "WNW",
3347+ "uv": 1,
3348+ "hourly": [
3349+ {
3350+ "timestamp": 1394924400,
3351+ "date": {
3352+ "year": 2014,
3353+ "month": 2,
3354+ "date": 16,
3355+ "hours": 0,
3356+ "minutes": 0
3357+ },
3358+ "metric": {
3359+ "temp": 7,
3360+ "tempFeels": 3,
3361+ "windSpeed": 25
3362+ },
3363+ "imperial": {
3364+ "temp": 44.6,
3365+ "tempFeels": 37.4,
3366+ "windSpeed": 15.525
3367+ },
3368+ "precipType": "rain",
3369+ "propPrecip": 60,
3370+ "humidity": 89,
3371+ "windDeg": 271,
3372+ "windDir": "W",
3373+ "icon": "rain",
3374+ "condition": "Showers",
3375+ "uv": 0
3376+ },
3377+ {
3378+ "timestamp": 1394928000,
3379+ "date": {
3380+ "year": 2014,
3381+ "month": 2,
3382+ "date": 16,
3383+ "hours": 1,
3384+ "minutes": 0
3385+ },
3386+ "metric": {
3387+ "temp": 7,
3388+ "tempFeels": 3,
3389+ "windSpeed": 27
3390+ },
3391+ "imperial": {
3392+ "temp": 44.6,
3393+ "tempFeels": 37.4,
3394+ "windSpeed": 16.767
3395+ },
3396+ "precipType": "rain",
3397+ "propPrecip": 50,
3398+ "humidity": 93,
3399+ "windDeg": 275,
3400+ "windDir": "W",
3401+ "icon": "rain",
3402+ "condition": "Showers",
3403+ "uv": 0
3404+ },
3405+ {
3406+ "timestamp": 1394931600,
3407+ "date": {
3408+ "year": 2014,
3409+ "month": 2,
3410+ "date": 16,
3411+ "hours": 2,
3412+ "minutes": 0
3413+ },
3414+ "metric": {
3415+ "temp": 8,
3416+ "tempFeels": 4,
3417+ "windSpeed": 28
3418+ },
3419+ "imperial": {
3420+ "temp": 46.4,
3421+ "tempFeels": 39.2,
3422+ "windSpeed": 17.387999999999998
3423+ },
3424+ "precipType": "rain",
3425+ "propPrecip": 50,
3426+ "humidity": 93,
3427+ "windDeg": 280,
3428+ "windDir": "W",
3429+ "icon": "rain",
3430+ "condition": "Showers",
3431+ "uv": 0
3432+ },
3433+ {
3434+ "timestamp": 1394935200,
3435+ "date": {
3436+ "year": 2014,
3437+ "month": 2,
3438+ "date": 16,
3439+ "hours": 3,
3440+ "minutes": 0
3441+ },
3442+ "metric": {
3443+ "temp": 8,
3444+ "tempFeels": 4,
3445+ "windSpeed": 32
3446+ },
3447+ "imperial": {
3448+ "temp": 46.4,
3449+ "tempFeels": 39.2,
3450+ "windSpeed": 19.872
3451+ },
3452+ "precipType": "rain",
3453+ "propPrecip": 50,
3454+ "humidity": 96,
3455+ "windDeg": 285,
3456+ "windDir": "WNW",
3457+ "icon": "rain",
3458+ "condition": "Showers / Wind",
3459+ "uv": 0
3460+ },
3461+ {
3462+ "timestamp": 1394938800,
3463+ "date": {
3464+ "year": 2014,
3465+ "month": 2,
3466+ "date": 16,
3467+ "hours": 4,
3468+ "minutes": 0
3469+ },
3470+ "metric": {
3471+ "temp": 8,
3472+ "tempFeels": 5,
3473+ "windSpeed": 32
3474+ },
3475+ "imperial": {
3476+ "temp": 46.4,
3477+ "tempFeels": 41,
3478+ "windSpeed": 19.872
3479+ },
3480+ "precipType": "rain",
3481+ "propPrecip": 40,
3482+ "humidity": 93,
3483+ "windDeg": 288,
3484+ "windDir": "WNW",
3485+ "icon": "rain",
3486+ "condition": "Showers / Wind",
3487+ "uv": 0
3488+ },
3489+ {
3490+ "timestamp": 1394942400,
3491+ "date": {
3492+ "year": 2014,
3493+ "month": 2,
3494+ "date": 16,
3495+ "hours": 5,
3496+ "minutes": 0
3497+ },
3498+ "metric": {
3499+ "temp": 8,
3500+ "tempFeels": 5,
3501+ "windSpeed": 32
3502+ },
3503+ "imperial": {
3504+ "temp": 46.4,
3505+ "tempFeels": 41,
3506+ "windSpeed": 19.872
3507+ },
3508+ "precipType": "rain",
3509+ "propPrecip": 40,
3510+ "humidity": 93,
3511+ "windDeg": 289,
3512+ "windDir": "WNW",
3513+ "icon": "rain",
3514+ "condition": "Showers / Wind",
3515+ "uv": 0
3516+ },
3517+ {
3518+ "timestamp": 1394946000,
3519+ "date": {
3520+ "year": 2014,
3521+ "month": 2,
3522+ "date": 16,
3523+ "hours": 6,
3524+ "minutes": 0
3525+ },
3526+ "metric": {
3527+ "temp": 8,
3528+ "tempFeels": 5,
3529+ "windSpeed": 32
3530+ },
3531+ "imperial": {
3532+ "temp": 46.4,
3533+ "tempFeels": 41,
3534+ "windSpeed": 19.872
3535+ },
3536+ "precipType": "rain",
3537+ "propPrecip": 40,
3538+ "humidity": 89,
3539+ "windDeg": 289,
3540+ "windDir": "WNW",
3541+ "icon": "rain",
3542+ "condition": "Few Showers / Wind",
3543+ "uv": 0
3544+ },
3545+ {
3546+ "timestamp": 1394949600,
3547+ "date": {
3548+ "year": 2014,
3549+ "month": 2,
3550+ "date": 16,
3551+ "hours": 7,
3552+ "minutes": 0
3553+ },
3554+ "metric": {
3555+ "temp": 8,
3556+ "tempFeels": 5,
3557+ "windSpeed": 32
3558+ },
3559+ "imperial": {
3560+ "temp": 46.4,
3561+ "tempFeels": 41,
3562+ "windSpeed": 19.872
3563+ },
3564+ "precipType": "rain",
3565+ "propPrecip": 30,
3566+ "humidity": 89,
3567+ "windDeg": 288,
3568+ "windDir": "WNW",
3569+ "icon": "rain",
3570+ "condition": "Few Showers / Wind",
3571+ "uv": 0
3572+ },
3573+ {
3574+ "timestamp": 1394953200,
3575+ "date": {
3576+ "year": 2014,
3577+ "month": 2,
3578+ "date": 16,
3579+ "hours": 8,
3580+ "minutes": 0
3581+ },
3582+ "metric": {
3583+ "temp": 8,
3584+ "tempFeels": 5,
3585+ "windSpeed": 32
3586+ },
3587+ "imperial": {
3588+ "temp": 46.4,
3589+ "tempFeels": 41,
3590+ "windSpeed": 19.872
3591+ },
3592+ "precipType": "rain",
3593+ "propPrecip": 30,
3594+ "humidity": 89,
3595+ "windDeg": 286,
3596+ "windDir": "WNW",
3597+ "icon": "rain",
3598+ "condition": "Few Showers / Wind",
3599+ "uv": 0
3600+ },
3601+ {
3602+ "timestamp": 1394956800,
3603+ "date": {
3604+ "year": 2014,
3605+ "month": 2,
3606+ "date": 16,
3607+ "hours": 9,
3608+ "minutes": 0
3609+ },
3610+ "metric": {
3611+ "temp": 8,
3612+ "tempFeels": 5,
3613+ "windSpeed": 32
3614+ },
3615+ "imperial": {
3616+ "temp": 46.4,
3617+ "tempFeels": 41,
3618+ "windSpeed": 19.872
3619+ },
3620+ "precipType": "rain",
3621+ "propPrecip": 40,
3622+ "humidity": 93,
3623+ "windDeg": 285,
3624+ "windDir": "WNW",
3625+ "icon": "rain",
3626+ "condition": "Showers / Wind",
3627+ "uv": 0
3628+ },
3629+ {
3630+ "timestamp": 1394960400,
3631+ "date": {
3632+ "year": 2014,
3633+ "month": 2,
3634+ "date": 16,
3635+ "hours": 10,
3636+ "minutes": 0
3637+ },
3638+ "metric": {
3639+ "temp": 8,
3640+ "tempFeels": 5,
3641+ "windSpeed": 32
3642+ },
3643+ "imperial": {
3644+ "temp": 46.4,
3645+ "tempFeels": 41,
3646+ "windSpeed": 19.872
3647+ },
3648+ "precipType": "rain",
3649+ "propPrecip": 40,
3650+ "humidity": 93,
3651+ "windDeg": 284,
3652+ "windDir": "WNW",
3653+ "icon": "rain",
3654+ "condition": "Showers / Wind",
3655+ "uv": 0
3656+ },
3657+ {
3658+ "timestamp": 1394964000,
3659+ "date": {
3660+ "year": 2014,
3661+ "month": 2,
3662+ "date": 16,
3663+ "hours": 11,
3664+ "minutes": 0
3665+ },
3666+ "metric": {
3667+ "temp": 8,
3668+ "tempFeels": 5,
3669+ "windSpeed": 33
3670+ },
3671+ "imperial": {
3672+ "temp": 46.4,
3673+ "tempFeels": 41,
3674+ "windSpeed": 20.493
3675+ },
3676+ "precipType": "rain",
3677+ "propPrecip": 40,
3678+ "humidity": 93,
3679+ "windDeg": 285,
3680+ "windDir": "WNW",
3681+ "icon": "rain",
3682+ "condition": "Showers / Wind",
3683+ "uv": 1
3684+ },
3685+ {
3686+ "timestamp": 1394967600,
3687+ "date": {
3688+ "year": 2014,
3689+ "month": 2,
3690+ "date": 16,
3691+ "hours": 12,
3692+ "minutes": 0
3693+ },
3694+ "metric": {
3695+ "temp": 9,
3696+ "tempFeels": 5,
3697+ "windSpeed": 33
3698+ },
3699+ "imperial": {
3700+ "temp": 48.2,
3701+ "tempFeels": 41,
3702+ "windSpeed": 20.493
3703+ },
3704+ "precipType": "rain",
3705+ "propPrecip": 30,
3706+ "humidity": 86,
3707+ "windDeg": 286,
3708+ "windDir": "WNW",
3709+ "icon": "rain",
3710+ "condition": "Few Showers / Wind",
3711+ "uv": 1
3712+ },
3713+ {
3714+ "timestamp": 1394971200,
3715+ "date": {
3716+ "year": 2014,
3717+ "month": 2,
3718+ "date": 16,
3719+ "hours": 13,
3720+ "minutes": 0
3721+ },
3722+ "metric": {
3723+ "temp": 9,
3724+ "tempFeels": 5,
3725+ "windSpeed": 35
3726+ },
3727+ "imperial": {
3728+ "temp": 48.2,
3729+ "tempFeels": 41,
3730+ "windSpeed": 21.735
3731+ },
3732+ "precipType": "rain",
3733+ "propPrecip": 30,
3734+ "humidity": 86,
3735+ "windDeg": 286,
3736+ "windDir": "WNW",
3737+ "icon": "rain",
3738+ "condition": "Few Showers / Wind",
3739+ "uv": 1
3740+ },
3741+ {
3742+ "timestamp": 1394974800,
3743+ "date": {
3744+ "year": 2014,
3745+ "month": 2,
3746+ "date": 16,
3747+ "hours": 14,
3748+ "minutes": 0
3749+ },
3750+ "metric": {
3751+ "temp": 9,
3752+ "tempFeels": 5,
3753+ "windSpeed": 35
3754+ },
3755+ "imperial": {
3756+ "temp": 48.2,
3757+ "tempFeels": 41,
3758+ "windSpeed": 21.735
3759+ },
3760+ "precipType": "rain",
3761+ "propPrecip": 30,
3762+ "humidity": 86,
3763+ "windDeg": 285,
3764+ "windDir": "WNW",
3765+ "icon": "rain",
3766+ "condition": "Few Showers / Wind",
3767+ "uv": 0
3768+ },
3769+ {
3770+ "timestamp": 1394978400,
3771+ "date": {
3772+ "year": 2014,
3773+ "month": 2,
3774+ "date": 16,
3775+ "hours": 15,
3776+ "minutes": 0
3777+ },
3778+ "metric": {
3779+ "temp": 9,
3780+ "tempFeels": 5,
3781+ "windSpeed": 33
3782+ },
3783+ "imperial": {
3784+ "temp": 48.2,
3785+ "tempFeels": 41,
3786+ "windSpeed": 20.493
3787+ },
3788+ "precipType": "rain",
3789+ "propPrecip": 30,
3790+ "humidity": 86,
3791+ "windDeg": 283,
3792+ "windDir": "WNW",
3793+ "icon": "rain",
3794+ "condition": "Few Showers / Wind",
3795+ "uv": 0
3796+ },
3797+ {
3798+ "timestamp": 1394982000,
3799+ "date": {
3800+ "year": 2014,
3801+ "month": 2,
3802+ "date": 16,
3803+ "hours": 16,
3804+ "minutes": 0
3805+ },
3806+ "metric": {
3807+ "temp": 9,
3808+ "tempFeels": 5,
3809+ "windSpeed": 33
3810+ },
3811+ "imperial": {
3812+ "temp": 48.2,
3813+ "tempFeels": 41,
3814+ "windSpeed": 20.493
3815+ },
3816+ "precipType": "rain",
3817+ "propPrecip": 30,
3818+ "humidity": 86,
3819+ "windDeg": 281,
3820+ "windDir": "W",
3821+ "icon": "rain",
3822+ "condition": "Few Showers / Wind",
3823+ "uv": 0
3824+ },
3825+ {
3826+ "timestamp": 1394985600,
3827+ "date": {
3828+ "year": 2014,
3829+ "month": 2,
3830+ "date": 16,
3831+ "hours": 17,
3832+ "minutes": 0
3833+ },
3834+ "metric": {
3835+ "temp": 9,
3836+ "tempFeels": 5,
3837+ "windSpeed": 32
3838+ },
3839+ "imperial": {
3840+ "temp": 48.2,
3841+ "tempFeels": 41,
3842+ "windSpeed": 19.872
3843+ },
3844+ "precipType": "rain",
3845+ "propPrecip": 30,
3846+ "humidity": 86,
3847+ "windDeg": 281,
3848+ "windDir": "W",
3849+ "icon": "rain",
3850+ "condition": "Few Showers / Wind",
3851+ "uv": 0
3852+ },
3853+ {
3854+ "timestamp": 1394989200,
3855+ "date": {
3856+ "year": 2014,
3857+ "month": 2,
3858+ "date": 16,
3859+ "hours": 18,
3860+ "minutes": 0
3861+ },
3862+ "metric": {
3863+ "temp": 8,
3864+ "tempFeels": 5,
3865+ "windSpeed": 28
3866+ },
3867+ "imperial": {
3868+ "temp": 46.4,
3869+ "tempFeels": 41,
3870+ "windSpeed": 17.387999999999998
3871+ },
3872+ "precipType": "rain",
3873+ "propPrecip": 20,
3874+ "humidity": 86,
3875+ "windDeg": 281,
3876+ "windDir": "W",
3877+ "icon": "overcast",
3878+ "condition": "Cloudy",
3879+ "uv": 0
3880+ },
3881+ {
3882+ "timestamp": 1394992800,
3883+ "date": {
3884+ "year": 2014,
3885+ "month": 2,
3886+ "date": 16,
3887+ "hours": 19,
3888+ "minutes": 0
3889+ },
3890+ "metric": {
3891+ "temp": 8,
3892+ "tempFeels": 5,
3893+ "windSpeed": 27
3894+ },
3895+ "imperial": {
3896+ "temp": 46.4,
3897+ "tempFeels": 41,
3898+ "windSpeed": 16.767
3899+ },
3900+ "precipType": "rain",
3901+ "propPrecip": 20,
3902+ "humidity": 86,
3903+ "windDeg": 281,
3904+ "windDir": "W",
3905+ "icon": "overcast",
3906+ "condition": "Cloudy",
3907+ "uv": 0
3908+ },
3909+ {
3910+ "timestamp": 1394996400,
3911+ "date": {
3912+ "year": 2014,
3913+ "month": 2,
3914+ "date": 16,
3915+ "hours": 20,
3916+ "minutes": 0
3917+ },
3918+ "metric": {
3919+ "temp": 8,
3920+ "tempFeels": 5,
3921+ "windSpeed": 25
3922+ },
3923+ "imperial": {
3924+ "temp": 46.4,
3925+ "tempFeels": 41,
3926+ "windSpeed": 15.525
3927+ },
3928+ "precipType": "rain",
3929+ "propPrecip": 20,
3930+ "humidity": 86,
3931+ "windDeg": 279,
3932+ "windDir": "W",
3933+ "icon": "overcast",
3934+ "condition": "Cloudy",
3935+ "uv": 0
3936+ },
3937+ {
3938+ "timestamp": 1395000000,
3939+ "date": {
3940+ "year": 2014,
3941+ "month": 2,
3942+ "date": 16,
3943+ "hours": 21,
3944+ "minutes": 0
3945+ },
3946+ "metric": {
3947+ "temp": 8,
3948+ "tempFeels": 5,
3949+ "windSpeed": 25
3950+ },
3951+ "imperial": {
3952+ "temp": 46.4,
3953+ "tempFeels": 41,
3954+ "windSpeed": 15.525
3955+ },
3956+ "precipType": "rain",
3957+ "propPrecip": 20,
3958+ "humidity": 86,
3959+ "windDeg": 276,
3960+ "windDir": "W",
3961+ "icon": "overcast",
3962+ "condition": "Cloudy",
3963+ "uv": 0
3964+ },
3965+ {
3966+ "timestamp": 1395003600,
3967+ "date": {
3968+ "year": 2014,
3969+ "month": 2,
3970+ "date": 16,
3971+ "hours": 22,
3972+ "minutes": 0
3973+ },
3974+ "metric": {
3975+ "temp": 8,
3976+ "tempFeels": 5,
3977+ "windSpeed": 24
3978+ },
3979+ "imperial": {
3980+ "temp": 46.4,
3981+ "tempFeels": 41,
3982+ "windSpeed": 14.904
3983+ },
3984+ "precipType": "rain",
3985+ "propPrecip": 20,
3986+ "humidity": 86,
3987+ "windDeg": 273,
3988+ "windDir": "W",
3989+ "icon": "overcast",
3990+ "condition": "Cloudy",
3991+ "uv": 0
3992+ },
3993+ {
3994+ "timestamp": 1395007200,
3995+ "date": {
3996+ "year": 2014,
3997+ "month": 2,
3998+ "date": 16,
3999+ "hours": 23,
4000+ "minutes": 0
4001+ },
4002+ "metric": {
4003+ "temp": 8,
4004+ "tempFeels": 5,
4005+ "windSpeed": 24
4006+ },
4007+ "imperial": {
4008+ "temp": 46.4,
4009+ "tempFeels": 41,
4010+ "windSpeed": 14.904
4011+ },
4012+ "precipType": "rain",
4013+ "propPrecip": 20,
4014+ "humidity": 86,
4015+ "windDeg": 272,
4016+ "windDir": "W",
4017+ "icon": "overcast",
4018+ "condition": "Cloudy",
4019+ "uv": 0
4020+ }
4021+ ]
4022+ },
4023+ {
4024+ "date": {
4025+ "year": 2014,
4026+ "month": 2,
4027+ "date": 17,
4028+ "hours": 18,
4029+ "minutes": 59
4030+ },
4031+ "timestamp": 1395079200,
4032+ "metric": {
4033+ "tempMin": 5,
4034+ "tempMax": 10,
4035+ "windSpeed": 32
4036+ },
4037+ "imperial": {
4038+ "tempMin": 41,
4039+ "tempMax": 50,
4040+ "windSpeed": 19.872
4041+ },
4042+ "precipType": "rain",
4043+ "propPrecip": 40,
4044+ "pressure": null,
4045+ "humidity": 78,
4046+ "icon": "scattered",
4047+ "condition": "AM Showers / Wind",
4048+ "windDeg": 277,
4049+ "windDir": "W",
4050+ "uv": 1,
4051+ "hourly": [
4052+ {
4053+ "timestamp": 1395010800,
4054+ "date": {
4055+ "year": 2014,
4056+ "month": 2,
4057+ "date": 17,
4058+ "hours": 0,
4059+ "minutes": 0
4060+ },
4061+ "metric": {
4062+ "temp": 8,
4063+ "tempFeels": 5,
4064+ "windSpeed": 24
4065+ },
4066+ "imperial": {
4067+ "temp": 46.4,
4068+ "tempFeels": 41,
4069+ "windSpeed": 14.904
4070+ },
4071+ "precipType": "rain",
4072+ "propPrecip": 20,
4073+ "humidity": 89,
4074+ "windDeg": 272,
4075+ "windDir": "W",
4076+ "icon": "overcast",
4077+ "condition": "Cloudy",
4078+ "uv": 0
4079+ },
4080+ {
4081+ "timestamp": 1395014400,
4082+ "date": {
4083+ "year": 2014,
4084+ "month": 2,
4085+ "date": 17,
4086+ "hours": 1,
4087+ "minutes": 0
4088+ },
4089+ "metric": {
4090+ "temp": 8,
4091+ "tempFeels": 5,
4092+ "windSpeed": 24
4093+ },
4094+ "imperial": {
4095+ "temp": 46.4,
4096+ "tempFeels": 41,
4097+ "windSpeed": 14.904
4098+ },
4099+ "precipType": "rain",
4100+ "propPrecip": 20,
4101+ "humidity": 89,
4102+ "windDeg": 273,
4103+ "windDir": "W",
4104+ "icon": "overcast",
4105+ "condition": "Cloudy",
4106+ "uv": 0
4107+ },
4108+ {
4109+ "timestamp": 1395018000,
4110+ "date": {
4111+ "year": 2014,
4112+ "month": 2,
4113+ "date": 17,
4114+ "hours": 2,
4115+ "minutes": 0
4116+ },
4117+ "metric": {
4118+ "temp": 8,
4119+ "tempFeels": 5,
4120+ "windSpeed": 24
4121+ },
4122+ "imperial": {
4123+ "temp": 46.4,
4124+ "tempFeels": 41,
4125+ "windSpeed": 14.904
4126+ },
4127+ "precipType": "rain",
4128+ "propPrecip": 20,
4129+ "humidity": 89,
4130+ "windDeg": 274,
4131+ "windDir": "W",
4132+ "icon": "overcast",
4133+ "condition": "Cloudy",
4134+ "uv": 0
4135+ },
4136+ {
4137+ "timestamp": 1395021600,
4138+ "date": {
4139+ "year": 2014,
4140+ "month": 2,
4141+ "date": 17,
4142+ "hours": 3,
4143+ "minutes": 0
4144+ },
4145+ "metric": {
4146+ "temp": 8,
4147+ "tempFeels": 5,
4148+ "windSpeed": 24
4149+ },
4150+ "imperial": {
4151+ "temp": 46.4,
4152+ "tempFeels": 41,
4153+ "windSpeed": 14.904
4154+ },
4155+ "precipType": "rain",
4156+ "propPrecip": 20,
4157+ "humidity": 89,
4158+ "windDeg": 274,
4159+ "windDir": "W",
4160+ "icon": "overcast",
4161+ "condition": "Cloudy",
4162+ "uv": 0
4163+ },
4164+ {
4165+ "timestamp": 1395025200,
4166+ "date": {
4167+ "year": 2014,
4168+ "month": 2,
4169+ "date": 17,
4170+ "hours": 4,
4171+ "minutes": 0
4172+ },
4173+ "metric": {
4174+ "temp": 8,
4175+ "tempFeels": 5,
4176+ "windSpeed": 24
4177+ },
4178+ "imperial": {
4179+ "temp": 46.4,
4180+ "tempFeels": 41,
4181+ "windSpeed": 14.904
4182+ },
4183+ "precipType": "rain",
4184+ "propPrecip": 20,
4185+ "humidity": 89,
4186+ "windDeg": 274,
4187+ "windDir": "W",
4188+ "icon": "overcast",
4189+ "condition": "Cloudy",
4190+ "uv": 0
4191+ },
4192+ {
4193+ "timestamp": 1395028800,
4194+ "date": {
4195+ "year": 2014,
4196+ "month": 2,
4197+ "date": 17,
4198+ "hours": 5,
4199+ "minutes": 0
4200+ },
4201+ "metric": {
4202+ "temp": 8,
4203+ "tempFeels": 5,
4204+ "windSpeed": 24
4205+ },
4206+ "imperial": {
4207+ "temp": 46.4,
4208+ "tempFeels": 41,
4209+ "windSpeed": 14.904
4210+ },
4211+ "precipType": "rain",
4212+ "propPrecip": 20,
4213+ "humidity": 89,
4214+ "windDeg": 274,
4215+ "windDir": "W",
4216+ "icon": "overcast",
4217+ "condition": "Cloudy",
4218+ "uv": 0
4219+ },
4220+ {
4221+ "timestamp": 1395032400,
4222+ "date": {
4223+ "year": 2014,
4224+ "month": 2,
4225+ "date": 17,
4226+ "hours": 6,
4227+ "minutes": 0
4228+ },
4229+ "metric": {
4230+ "temp": 8,
4231+ "tempFeels": 5,
4232+ "windSpeed": 25
4233+ },
4234+ "imperial": {
4235+ "temp": 46.4,
4236+ "tempFeels": 41,
4237+ "windSpeed": 15.525
4238+ },
4239+ "precipType": "rain",
4240+ "propPrecip": 10,
4241+ "humidity": 86,
4242+ "windDeg": 273,
4243+ "windDir": "W",
4244+ "icon": "overcast",
4245+ "condition": "Cloudy",
4246+ "uv": 0
4247+ },
4248+ {
4249+ "timestamp": 1395036000,
4250+ "date": {
4251+ "year": 2014,
4252+ "month": 2,
4253+ "date": 17,
4254+ "hours": 7,
4255+ "minutes": 0
4256+ },
4257+ "metric": {
4258+ "temp": 8,
4259+ "tempFeels": 5,
4260+ "windSpeed": 25
4261+ },
4262+ "imperial": {
4263+ "temp": 46.4,
4264+ "tempFeels": 41,
4265+ "windSpeed": 15.525
4266+ },
4267+ "precipType": "rain",
4268+ "propPrecip": 10,
4269+ "humidity": 86,
4270+ "windDeg": 273,
4271+ "windDir": "W",
4272+ "icon": "overcast",
4273+ "condition": "Cloudy",
4274+ "uv": 0
4275+ },
4276+ {
4277+ "timestamp": 1395039600,
4278+ "date": {
4279+ "year": 2014,
4280+ "month": 2,
4281+ "date": 17,
4282+ "hours": 8,
4283+ "minutes": 0
4284+ },
4285+ "metric": {
4286+ "temp": 8,
4287+ "tempFeels": 4,
4288+ "windSpeed": 27
4289+ },
4290+ "imperial": {
4291+ "temp": 46.4,
4292+ "tempFeels": 39.2,
4293+ "windSpeed": 16.767
4294+ },
4295+ "precipType": "rain",
4296+ "propPrecip": 20,
4297+ "humidity": 86,
4298+ "windDeg": 274,
4299+ "windDir": "W",
4300+ "icon": "overcast",
4301+ "condition": "Cloudy",
4302+ "uv": 0
4303+ },
4304+ {
4305+ "timestamp": 1395043200,
4306+ "date": {
4307+ "year": 2014,
4308+ "month": 2,
4309+ "date": 17,
4310+ "hours": 9,
4311+ "minutes": 0
4312+ },
4313+ "metric": {
4314+ "temp": 8,
4315+ "tempFeels": 4,
4316+ "windSpeed": 27
4317+ },
4318+ "imperial": {
4319+ "temp": 46.4,
4320+ "tempFeels": 39.2,
4321+ "windSpeed": 16.767
4322+ },
4323+ "precipType": "rain",
4324+ "propPrecip": 40,
4325+ "humidity": 86,
4326+ "windDeg": 275,
4327+ "windDir": "W",
4328+ "icon": "rain",
4329+ "condition": "Showers",
4330+ "uv": 0
4331+ },
4332+ {
4333+ "timestamp": 1395046800,
4334+ "date": {
4335+ "year": 2014,
4336+ "month": 2,
4337+ "date": 17,
4338+ "hours": 10,
4339+ "minutes": 0
4340+ },
4341+ "metric": {
4342+ "temp": 8,
4343+ "tempFeels": 5,
4344+ "windSpeed": 28
4345+ },
4346+ "imperial": {
4347+ "temp": 46.4,
4348+ "tempFeels": 41,
4349+ "windSpeed": 17.387999999999998
4350+ },
4351+ "precipType": "rain",
4352+ "propPrecip": 40,
4353+ "humidity": 83,
4354+ "windDeg": 276,
4355+ "windDir": "W",
4356+ "icon": "rain",
4357+ "condition": "Showers",
4358+ "uv": 1
4359+ },
4360+ {
4361+ "timestamp": 1395050400,
4362+ "date": {
4363+ "year": 2014,
4364+ "month": 2,
4365+ "date": 17,
4366+ "hours": 11,
4367+ "minutes": 0
4368+ },
4369+ "metric": {
4370+ "temp": 9,
4371+ "tempFeels": 5,
4372+ "windSpeed": 30
4373+ },
4374+ "imperial": {
4375+ "temp": 48.2,
4376+ "tempFeels": 41,
4377+ "windSpeed": 18.63
4378+ },
4379+ "precipType": "rain",
4380+ "propPrecip": 40,
4381+ "humidity": 77,
4382+ "windDeg": 277,
4383+ "windDir": "W",
4384+ "icon": "rain",
4385+ "condition": "Showers",
4386+ "uv": 1
4387+ },
4388+ {
4389+ "timestamp": 1395054000,
4390+ "date": {
4391+ "year": 2014,
4392+ "month": 2,
4393+ "date": 17,
4394+ "hours": 12,
4395+ "minutes": 0
4396+ },
4397+ "metric": {
4398+ "temp": 10,
4399+ "tempFeels": 6,
4400+ "windSpeed": 32
4401+ },
4402+ "imperial": {
4403+ "temp": 50,
4404+ "tempFeels": 42.8,
4405+ "windSpeed": 19.872
4406+ },
4407+ "precipType": "rain",
4408+ "propPrecip": 20,
4409+ "humidity": 74,
4410+ "windDeg": 278,
4411+ "windDir": "W",
4412+ "icon": "overcast",
4413+ "condition": "Cloudy / Wind",
4414+ "uv": 1
4415+ },
4416+ {
4417+ "timestamp": 1395057600,
4418+ "date": {
4419+ "year": 2014,
4420+ "month": 2,
4421+ "date": 17,
4422+ "hours": 13,
4423+ "minutes": 0
4424+ },
4425+ "metric": {
4426+ "temp": 10,
4427+ "tempFeels": 6,
4428+ "windSpeed": 32
4429+ },
4430+ "imperial": {
4431+ "temp": 50,
4432+ "tempFeels": 42.8,
4433+ "windSpeed": 19.872
4434+ },
4435+ "precipType": "rain",
4436+ "propPrecip": 20,
4437+ "humidity": 71,
4438+ "windDeg": 279,
4439+ "windDir": "W",
4440+ "icon": "overcast",
4441+ "condition": "Cloudy / Wind",
4442+ "uv": 1
4443+ },
4444+ {
4445+ "timestamp": 1395061200,
4446+ "date": {
4447+ "year": 2014,
4448+ "month": 2,
4449+ "date": 17,
4450+ "hours": 14,
4451+ "minutes": 0
4452+ },
4453+ "metric": {
4454+ "temp": 10,
4455+ "tempFeels": 6,
4456+ "windSpeed": 32
4457+ },
4458+ "imperial": {
4459+ "temp": 50,
4460+ "tempFeels": 42.8,
4461+ "windSpeed": 19.872
4462+ },
4463+ "precipType": "rain",
4464+ "propPrecip": 20,
4465+ "humidity": 71,
4466+ "windDeg": 279,
4467+ "windDir": "W",
4468+ "icon": "overcast",
4469+ "condition": "Cloudy / Wind",
4470+ "uv": 1
4471+ },
4472+ {
4473+ "timestamp": 1395064800,
4474+ "date": {
4475+ "year": 2014,
4476+ "month": 2,
4477+ "date": 17,
4478+ "hours": 15,
4479+ "minutes": 0
4480+ },
4481+ "metric": {
4482+ "temp": 10,
4483+ "tempFeels": 6,
4484+ "windSpeed": 30
4485+ },
4486+ "imperial": {
4487+ "temp": 50,
4488+ "tempFeels": 42.8,
4489+ "windSpeed": 18.63
4490+ },
4491+ "precipType": "rain",
4492+ "propPrecip": 20,
4493+ "humidity": 71,
4494+ "windDeg": 279,
4495+ "windDir": "W",
4496+ "icon": "overcast",
4497+ "condition": "Cloudy",
4498+ "uv": 1
4499+ }
4500+ ]
4501+ },
4502+ {
4503+ "date": {
4504+ "year": 2014,
4505+ "month": 2,
4506+ "date": 18,
4507+ "hours": 18,
4508+ "minutes": 59
4509+ },
4510+ "timestamp": 1395165600,
4511+ "metric": {
4512+ "tempMin": 6,
4513+ "tempMax": 10,
4514+ "windSpeed": 22
4515+ },
4516+ "imperial": {
4517+ "tempMin": 42.8,
4518+ "tempMax": 50,
4519+ "windSpeed": 13.661999999999999
4520+ },
4521+ "precipType": "rain",
4522+ "propPrecip": 20,
4523+ "pressure": null,
4524+ "humidity": 79,
4525+ "icon": "overcast",
4526+ "condition": "Cloudy",
4527+ "windDeg": 260,
4528+ "windDir": "W",
4529+ "uv": 1,
4530+ "hourly": []
4531+ },
4532+ {
4533+ "date": {
4534+ "year": 2014,
4535+ "month": 2,
4536+ "date": 19,
4537+ "hours": 18,
4538+ "minutes": 59
4539+ },
4540+ "timestamp": 1395252000,
4541+ "metric": {
4542+ "tempMin": 5,
4543+ "tempMax": 8,
4544+ "windSpeed": 35
4545+ },
4546+ "imperial": {
4547+ "tempMin": 41,
4548+ "tempMax": 46.4,
4549+ "windSpeed": 21.735
4550+ },
4551+ "precipType": "rain",
4552+ "propPrecip": 60,
4553+ "pressure": null,
4554+ "humidity": 84,
4555+ "icon": "rain",
4556+ "condition": "Light Rain / Wind",
4557+ "windDeg": 272,
4558+ "windDir": "W",
4559+ "uv": 1,
4560+ "hourly": []
4561+ },
4562+ {
4563+ "date": {
4564+ "year": 2014,
4565+ "month": 2,
4566+ "date": 20,
4567+ "hours": 18,
4568+ "minutes": 59
4569+ },
4570+ "timestamp": 1395338400,
4571+ "metric": {
4572+ "tempMin": 6,
4573+ "tempMax": 13,
4574+ "windSpeed": 17
4575+ },
4576+ "imperial": {
4577+ "tempMin": 42.8,
4578+ "tempMax": 55.400000000000006,
4579+ "windSpeed": 10.557
4580+ },
4581+ "precipType": "rain",
4582+ "propPrecip": 0,
4583+ "pressure": null,
4584+ "humidity": 59,
4585+ "icon": "cloud_sun",
4586+ "condition": "Mostly Sunny",
4587+ "windDeg": 245,
4588+ "windDir": "WSW",
4589+ "uv": 2,
4590+ "hourly": []
4591+ },
4592+ {
4593+ "date": {
4594+ "year": 2014,
4595+ "month": 2,
4596+ "date": 21,
4597+ "hours": 18,
4598+ "minutes": 59
4599+ },
4600+ "timestamp": 1395424800,
4601+ "metric": {
4602+ "tempMin": 6,
4603+ "tempMax": 12,
4604+ "windSpeed": 20
4605+ },
4606+ "imperial": {
4607+ "tempMin": 42.8,
4608+ "tempMax": 53.6,
4609+ "windSpeed": 12.42
4610+ },
4611+ "precipType": "rain",
4612+ "propPrecip": 20,
4613+ "pressure": null,
4614+ "humidity": 45,
4615+ "icon": "cloud_sun",
4616+ "condition": "Partly Cloudy",
4617+ "windDeg": 186,
4618+ "windDir": "S",
4619+ "uv": 2,
4620+ "hourly": []
4621+ },
4622+ {
4623+ "date": {
4624+ "year": 2014,
4625+ "month": 2,
4626+ "date": 22,
4627+ "hours": 18,
4628+ "minutes": 59
4629+ },
4630+ "timestamp": 1395511200,
4631+ "metric": {
4632+ "tempMin": 5,
4633+ "tempMax": 13,
4634+ "windSpeed": 24
4635+ },
4636+ "imperial": {
4637+ "tempMin": 41,
4638+ "tempMax": 55.400000000000006,
4639+ "windSpeed": 14.904
4640+ },
4641+ "precipType": "rain",
4642+ "propPrecip": 10,
4643+ "pressure": null,
4644+ "humidity": 72,
4645+ "icon": "cloud_sun",
4646+ "condition": "Partly Cloudy",
4647+ "windDeg": 229,
4648+ "windDir": "SW",
4649+ "uv": 2,
4650+ "hourly": []
4651+ },
4652+ {
4653+ "date": {
4654+ "year": 2014,
4655+ "month": 2,
4656+ "date": 23,
4657+ "hours": 18,
4658+ "minutes": 59
4659+ },
4660+ "timestamp": 1395597600,
4661+ "metric": {
4662+ "tempMin": 3,
4663+ "tempMax": 11,
4664+ "windSpeed": 20
4665+ },
4666+ "imperial": {
4667+ "tempMin": 37.4,
4668+ "tempMax": 51.8,
4669+ "windSpeed": 12.42
4670+ },
4671+ "precipType": "rain",
4672+ "propPrecip": 40,
4673+ "pressure": null,
4674+ "humidity": 76,
4675+ "icon": "rain",
4676+ "condition": "Showers",
4677+ "windDeg": 241,
4678+ "windDir": "WSW",
4679+ "uv": 2,
4680+ "hourly": []
4681+ },
4682+ {
4683+ "date": {
4684+ "year": 2014,
4685+ "month": 2,
4686+ "date": 24,
4687+ "hours": 18,
4688+ "minutes": 59
4689+ },
4690+ "timestamp": 1395684000,
4691+ "metric": {
4692+ "tempMin": 3,
4693+ "tempMax": 11,
4694+ "windSpeed": 17
4695+ },
4696+ "imperial": {
4697+ "tempMin": 37.4,
4698+ "tempMax": 51.8,
4699+ "windSpeed": 10.557
4700+ },
4701+ "precipType": "rain",
4702+ "propPrecip": 20,
4703+ "pressure": null,
4704+ "humidity": 75,
4705+ "icon": "cloud_sun",
4706+ "condition": "Mostly Cloudy",
4707+ "windDeg": 245,
4708+ "windDir": "WSW",
4709+ "uv": 2,
4710+ "hourly": []
4711+ }
4712+ ],
4713+ "save": true,
4714+ "updated": 1394894538202
4715+}
4716
4717=== modified file 'tests/autopilot/ubuntu_weather_app/files/2.json'
4718--- tests/autopilot/ubuntu_weather_app/files/2.json 2014-01-23 21:11:25 +0000
4719+++ tests/autopilot/ubuntu_weather_app/files/2.json 2014-03-26 11:19:27 +0000
4720@@ -1,1 +1,1710 @@
4721-{"location":{"coord":{"lon":"-0.12574","lat":"51.50853"},"timezone":{"gmtOffset":0,"dstOffset":1,"timeZoneId":"Europe/London"},"areaLabel":"England, Greater London, United Kingdom","population":7556900,"adminName2":"Greater London","name":"London","country":"GB","countryName":"United Kingdom","adminName1":"England","adminName3":"","dbId":0,"services":{"weatherchannel":"UKXX0085","geonames":2643743}},"db":{"updated":"2014-01-23T20:46:03.554Z","id":4},"format":20131207,"data":[{"date":{"year":2014,"month":0,"date":23,"hours":18,"minutes":59},"timestamp":1390503600,"metric":{"tempMin":3,"windSpeed":17},"imperial":{"tempMin":37.4,"tempMax":37.4,"windSpeed":38.080000000000005},"precipType":"precip","propPrecip":20,"pressure":null,"humidity":79,"icon":"few_clouds_day","condition":"Mostly Cloudy","windDeg":260,"windDir":"W","uv":0,"hourly":[{"timestamp":1390510800,"date":{"year":2014,"month":0,"date":23,"hours":21,"minutes":0},"metric":{"temp":4,"tempFeels":1,"windSpeed":16},"imperial":{"temp":39.2,"tempFeels":33.8,"windSpeed":35.84},"precipType":"rain","propPrecip":10,"humidity":76,"windDeg":284,"windDir":"WNW","icon":"few_clouds_day","condition":"Mostly Clear","uv":0},{"timestamp":1390514400,"date":{"year":2014,"month":0,"date":23,"hours":22,"minutes":0},"metric":{"temp":4,"tempFeels":1,"windSpeed":14},"imperial":{"temp":39.2,"tempFeels":33.8,"windSpeed":31.360000000000003},"precipType":"rain","propPrecip":null,"humidity":76,"windDeg":284,"windDir":"WNW","icon":"few_clouds_day","condition":"Mostly Clear","uv":0},{"timestamp":1390518000,"date":{"year":2014,"month":0,"date":23,"hours":23,"minutes":0},"metric":{"temp":3,"tempFeels":0,"windSpeed":12},"imperial":{"temp":37.4,"tempFeels":32,"windSpeed":26.880000000000003},"precipType":"precip","propPrecip":null,"humidity":79,"windDeg":284,"windDir":"WNW","icon":"scattered_clouds_day","condition":"Partly Cloudy","uv":0}],"current":{"timestamp":"1390508400","date":{"year":2014,"month":0,"date":23,"hours":18,"minutes":59},"metric":{"temp":6,"tempFeels":2,"windSpeed":22},"imperial":{"temp":42.8,"tempFeels":35.6,"windSpeed":49.28},"precipType":null,"propPrecip":null,"humidity":66,"pressure":"1013.88","windDeg":290,"windDir":"WNW","icon":"few_clouds_day","condition":"Fair","uv":0}},{"date":{"year":2014,"month":0,"date":24,"hours":18,"minutes":59},"timestamp":1390590000,"metric":{"tempMin":7,"tempMax":7,"windSpeed":20},"imperial":{"tempMin":44.6,"tempMax":44.6,"windSpeed":44.800000000000004},"precipType":"rain","propPrecip":90,"pressure":null,"humidity":88,"icon":"shower_rain_day","condition":"Light Rain","windDeg":162,"windDir":"SSE","uv":0,"hourly":[{"timestamp":1390521600,"date":{"year":2014,"month":0,"date":24,"hours":0,"minutes":0},"metric":{"temp":3,"tempFeels":1,"windSpeed":11},"imperial":{"temp":37.4,"tempFeels":33.8,"windSpeed":24.64},"precipType":"precip","propPrecip":10,"humidity":79,"windDeg":280,"windDir":"W","icon":"scattered_clouds_day","condition":"Partly Cloudy","uv":0},{"timestamp":1390525200,"date":{"year":2014,"month":0,"date":24,"hours":1,"minutes":0},"metric":{"temp":3,"tempFeels":1,"windSpeed":9},"imperial":{"temp":37.4,"tempFeels":33.8,"windSpeed":20.160000000000004},"precipType":"precip","propPrecip":10,"humidity":79,"windDeg":271,"windDir":"W","icon":"scattered_clouds_day","condition":"Partly Cloudy","uv":0},{"timestamp":1390528800,"date":{"year":2014,"month":0,"date":24,"hours":2,"minutes":0},"metric":{"temp":3,"tempFeels":1,"windSpeed":8},"imperial":{"temp":37.4,"tempFeels":33.8,"windSpeed":17.92},"precipType":"precip","propPrecip":10,"humidity":79,"windDeg":259,"windDir":"W","icon":"broken_clouds_day","condition":"Cloudy","uv":0},{"timestamp":1390532400,"date":{"year":2014,"month":0,"date":24,"hours":3,"minutes":0},"metric":{"temp":3,"tempFeels":2,"windSpeed":6},"imperial":{"temp":37.4,"tempFeels":35.6,"windSpeed":13.440000000000001},"precipType":"precip","propPrecip":20,"humidity":82,"windDeg":244,"windDir":"WSW","icon":"broken_clouds_day","condition":"Cloudy","uv":0},{"timestamp":1390536000,"date":{"year":2014,"month":0,"date":24,"hours":4,"minutes":0},"metric":{"temp":3,"tempFeels":2,"windSpeed":6},"imperial":{"temp":37.4,"tempFeels":35.6,"windSpeed":13.440000000000001},"precipType":"precip","propPrecip":20,"humidity":86,"windDeg":228,"windDir":"SW","icon":"broken_clouds_day","condition":"Cloudy","uv":0},{"timestamp":1390539600,"date":{"year":2014,"month":0,"date":24,"hours":5,"minutes":0},"metric":{"temp":4,"tempFeels":2,"windSpeed":8},"imperial":{"temp":39.2,"tempFeels":35.6,"windSpeed":17.92},"precipType":"rain","propPrecip":20,"humidity":82,"windDeg":210,"windDir":"SSW","icon":"broken_clouds_day","condition":"Cloudy","uv":0},{"timestamp":1390543200,"date":{"year":2014,"month":0,"date":24,"hours":6,"minutes":0},"metric":{"temp":4,"tempFeels":2,"windSpeed":8},"imperial":{"temp":39.2,"tempFeels":35.6,"windSpeed":17.92},"precipType":"rain","propPrecip":20,"humidity":86,"windDeg":194,"windDir":"SSW","icon":"broken_clouds_day","condition":"Cloudy","uv":0},{"timestamp":1390546800,"date":{"year":2014,"month":0,"date":24,"hours":7,"minutes":0},"metric":{"temp":4,"tempFeels":2,"windSpeed":9},"imperial":{"temp":39.2,"tempFeels":35.6,"windSpeed":20.160000000000004},"precipType":"rain","propPrecip":20,"humidity":86,"windDeg":179,"windDir":"S","icon":"broken_clouds_day","condition":"Cloudy","uv":0},{"timestamp":1390550400,"date":{"year":2014,"month":0,"date":24,"hours":8,"minutes":0},"metric":{"temp":5,"tempFeels":2,"windSpeed":12},"imperial":{"temp":41,"tempFeels":35.6,"windSpeed":26.880000000000003},"precipType":"rain","propPrecip":20,"humidity":86,"windDeg":168,"windDir":"SSE","icon":"broken_clouds_day","condition":"Cloudy","uv":0},{"timestamp":1390554000,"date":{"year":2014,"month":0,"date":24,"hours":9,"minutes":0},"metric":{"temp":5,"tempFeels":1,"windSpeed":14},"imperial":{"temp":41,"tempFeels":33.8,"windSpeed":31.360000000000003},"precipType":"rain","propPrecip":20,"humidity":86,"windDeg":160,"windDir":"SSE","icon":"broken_clouds_day","condition":"Cloudy","uv":0},{"timestamp":1390557600,"date":{"year":2014,"month":0,"date":24,"hours":10,"minutes":0},"metric":{"temp":5,"tempFeels":1,"windSpeed":16},"imperial":{"temp":41,"tempFeels":33.8,"windSpeed":35.84},"precipType":"rain","propPrecip":20,"humidity":89,"windDeg":159,"windDir":"SSE","icon":"broken_clouds_day","condition":"Cloudy","uv":0},{"timestamp":1390561200,"date":{"year":2014,"month":0,"date":24,"hours":11,"minutes":0},"metric":{"temp":5,"tempFeels":2,"windSpeed":17},"imperial":{"temp":41,"tempFeels":35.6,"windSpeed":38.080000000000005},"precipType":"rain","propPrecip":50,"humidity":89,"windDeg":161,"windDir":"SSE","icon":"shower_rain_day","condition":"Light Rain","uv":0},{"timestamp":1390564800,"date":{"year":2014,"month":0,"date":24,"hours":12,"minutes":0},"metric":{"temp":6,"tempFeels":2,"windSpeed":19},"imperial":{"temp":42.8,"tempFeels":35.6,"windSpeed":42.56},"precipType":"rain","propPrecip":70,"humidity":89,"windDeg":163,"windDir":"SSE","icon":"shower_rain_day","condition":"Light Rain","uv":0},{"timestamp":1390568400,"date":{"year":2014,"month":0,"date":24,"hours":13,"minutes":0},"metric":{"temp":6,"tempFeels":3,"windSpeed":19},"imperial":{"temp":42.8,"tempFeels":37.4,"windSpeed":42.56},"precipType":"rain","propPrecip":80,"humidity":89,"windDeg":163,"windDir":"SSE","icon":"shower_rain_day","condition":"Light Rain","uv":0},{"timestamp":1390572000,"date":{"year":2014,"month":0,"date":24,"hours":14,"minutes":0},"metric":{"temp":7,"tempFeels":3,"windSpeed":20},"imperial":{"temp":44.6,"tempFeels":37.4,"windSpeed":44.800000000000004},"precipType":"rain","propPrecip":80,"humidity":89,"windDeg":161,"windDir":"SSE","icon":"shower_rain_day","condition":"Light Rain","uv":0},{"timestamp":1390575600,"date":{"year":2014,"month":0,"date":24,"hours":15,"minutes":0},"metric":{"temp":7,"tempFeels":4,"windSpeed":20},"imperial":{"temp":44.6,"tempFeels":39.2,"windSpeed":44.800000000000004},"precipType":"rain","propPrecip":70,"humidity":86,"windDeg":158,"windDir":"SSE","icon":"shower_rain_day","condition":"Light Rain","uv":0},{"timestamp":1390579200,"date":{"year":2014,"month":0,"date":24,"hours":16,"minutes":0},"metric":{"temp":7,"tempFeels":4,"windSpeed":19},"imperial":{"temp":44.6,"tempFeels":39.2,"windSpeed":42.56},"precipType":"rain","propPrecip":80,"humidity":86,"windDeg":155,"windDir":"SSE","icon":"shower_rain_day","condition":"Light Rain","uv":0},{"timestamp":1390582800,"date":{"year":2014,"month":0,"date":24,"hours":17,"minutes":0},"metric":{"temp":7,"tempFeels":4,"windSpeed":19},"imperial":{"temp":44.6,"tempFeels":39.2,"windSpeed":42.56},"precipType":"rain","propPrecip":80,"humidity":89,"windDeg":154,"windDir":"SSE","icon":"shower_rain_day","condition":"Light Rain","uv":0},{"timestamp":1390586400,"date":{"year":2014,"month":0,"date":24,"hours":18,"minutes":0},"metric":{"temp":7,"tempFeels":5,"windSpeed":17},"imperial":{"temp":44.6,"tempFeels":41,"windSpeed":38.080000000000005},"precipType":"rain","propPrecip":90,"humidity":89,"windDeg":153,"windDir":"SSE","icon":"shower_rain_day","condition":"Light Rain","uv":0},{"timestamp":1390590000,"date":{"year":2014,"month":0,"date":24,"hours":19,"minutes":0},"metric":{"temp":7,"tempFeels":5,"windSpeed":16},"imperial":{"temp":44.6,"tempFeels":41,"windSpeed":35.84},"precipType":"rain","propPrecip":90,"humidity":93,"windDeg":154,"windDir":"SSE","icon":"shower_rain_day","condition":"Light Rain","uv":0},{"timestamp":1390593600,"date":{"year":2014,"month":0,"date":24,"hours":20,"minutes":0},"metric":{"temp":8,"tempFeels":5,"windSpeed":16},"imperial":{"temp":46.4,"tempFeels":41,"windSpeed":35.84},"precipType":"rain","propPrecip":90,"humidity":93,"windDeg":156,"windDir":"SSE","icon":"rain_day","condition":"Rain","uv":0}]},{"date":{"year":2014,"month":0,"date":25,"hours":18,"minutes":59},"timestamp":1390676400,"metric":{"tempMin":2,"tempMax":11,"windSpeed":27},"imperial":{"tempMin":35.6,"tempMax":51.8,"windSpeed":60.480000000000004},"precipType":"rain","propPrecip":80,"pressure":null,"humidity":83,"icon":"shower_rain_day","condition":"Showers","windDeg":256,"windDir":"WSW","uv":0,"hourly":[]},{"date":{"year":2014,"month":0,"date":26,"hours":18,"minutes":59},"timestamp":1390762800,"metric":{"tempMin":2,"tempMax":8,"windSpeed":27},"imperial":{"tempMin":35.6,"tempMax":46.4,"windSpeed":60.480000000000004},"precipType":"rain","propPrecip":100,"pressure":null,"humidity":80,"icon":"rain_day","condition":"Rain","windDeg":227,"windDir":"SW","uv":0,"hourly":[]},{"date":{"year":2014,"month":0,"date":27,"hours":18,"minutes":59},"timestamp":1390849200,"metric":{"tempMin":3,"tempMax":7,"windSpeed":30},"imperial":{"tempMin":37.4,"tempMax":44.6,"windSpeed":67.2},"precipType":"rain","propPrecip":40,"pressure":null,"humidity":74,"icon":"shower_rain_day","condition":"Showers","windDeg":247,"windDir":"WSW","uv":1,"hourly":[]},{"date":{"year":2014,"month":0,"date":28,"hours":18,"minutes":59},"timestamp":1390935600,"metric":{"tempMin":3,"tempMax":7,"windSpeed":22},"imperial":{"tempMin":37.4,"tempMax":44.6,"windSpeed":49.28},"precipType":"rain","propPrecip":80,"pressure":null,"humidity":82,"icon":"shower_rain_day","condition":"Light Rain","windDeg":193,"windDir":"SSW","uv":1,"hourly":[]},{"date":{"year":2014,"month":0,"date":29,"hours":18,"minutes":59},"timestamp":1391022000,"metric":{"tempMin":2,"tempMax":5,"windSpeed":24},"imperial":{"tempMin":35.6,"tempMax":41,"windSpeed":53.760000000000005},"precipType":"rain","propPrecip":40,"pressure":null,"humidity":85,"icon":"rain_day","condition":"Scattered Showers","windDeg":346,"windDir":"NNW","uv":1,"hourly":[]},{"date":{"year":2014,"month":0,"date":30,"hours":18,"minutes":59},"timestamp":1391108400,"metric":{"tempMin":1,"tempMax":5,"windSpeed":16},"imperial":{"tempMin":33.8,"tempMax":41,"windSpeed":35.84},"precipType":"rain","propPrecip":30,"pressure":null,"humidity":82,"icon":"rain_day","condition":"Scattered Showers","windDeg":332,"windDir":"NNW","uv":1,"hourly":[]},{"date":{"year":2014,"month":0,"date":31,"hours":18,"minutes":59},"timestamp":1391194800,"metric":{"tempMin":2,"tempMax":6,"windSpeed":16},"imperial":{"tempMin":35.6,"tempMax":42.8,"windSpeed":35.84},"precipType":"rain","propPrecip":60,"pressure":null,"humidity":81,"icon":"shower_rain_day","condition":"Rain / Snow Showers","windDeg":225,"windDir":"SW","uv":1,"hourly":[]},{"date":{"year":2014,"month":1,"date":1,"hours":18,"minutes":59},"timestamp":1391281200,"metric":{"tempMin":2,"tempMax":6,"windSpeed":16},"imperial":{"tempMin":35.6,"tempMax":42.8,"windSpeed":35.84},"precipType":"rain","propPrecip":40,"pressure":null,"humidity":80,"icon":"shower_rain_day","condition":"Showers","windDeg":241,"windDir":"WSW","uv":1,"hourly":[]}],"save":true,"updated":1390510095272}
4722+{
4723+ "location": {
4724+ "coord": {
4725+ "lat": "51.50853",
4726+ "lon": "-0.12574"
4727+ },
4728+ "timezone": {
4729+ "dstOffset": 1,
4730+ "gmtOffset": 0,
4731+ "timeZoneId": "Europe/London"
4732+ },
4733+ "areaLabel": "England, Greater London, United Kingdom",
4734+ "population": 7556900,
4735+ "adminName2": "Greater London",
4736+ "name": "London",
4737+ "country": "GB",
4738+ "countryName": "United Kingdom",
4739+ "adminName1": "England",
4740+ "adminName3": "",
4741+ "services": {
4742+ "geonames": 2643743,
4743+ "weatherchannel": "UKXX0085"
4744+ },
4745+ "dbId": 0
4746+ },
4747+ "db": {
4748+ "id": 3,
4749+ "updated": "2014-03-15T14:43:17.704Z"
4750+ },
4751+ "format": 20140315,
4752+ "data": [
4753+ {
4754+ "date": {
4755+ "year": 2014,
4756+ "month": 2,
4757+ "date": 15,
4758+ "hours": 18,
4759+ "minutes": 59
4760+ },
4761+ "timestamp": 1394910000,
4762+ "metric": {
4763+ "tempMin": 8,
4764+ "tempMax": 17,
4765+ "windSpeed": 22
4766+ },
4767+ "imperial": {
4768+ "tempMin": 46.4,
4769+ "tempMax": 62.6,
4770+ "windSpeed": 13.661999999999999
4771+ },
4772+ "precipType": "rain",
4773+ "propPrecip": 0,
4774+ "pressure": null,
4775+ "humidity": 48,
4776+ "icon": "cloud_sun",
4777+ "condition": "Mostly Sunny",
4778+ "windDeg": 285,
4779+ "windDir": "WNW",
4780+ "uv": 2,
4781+ "hourly": [
4782+ {
4783+ "timestamp": 1394895600,
4784+ "date": {
4785+ "year": 2014,
4786+ "month": 2,
4787+ "date": 15,
4788+ "hours": 15,
4789+ "minutes": 0
4790+ },
4791+ "metric": {
4792+ "temp": 17,
4793+ "tempFeels": 17,
4794+ "windSpeed": 22
4795+ },
4796+ "imperial": {
4797+ "temp": 62.6,
4798+ "tempFeels": 62.6,
4799+ "windSpeed": 13.661999999999999
4800+ },
4801+ "precipType": "rain",
4802+ "propPrecip": null,
4803+ "humidity": 44,
4804+ "windDeg": 288,
4805+ "windDir": "WNW",
4806+ "icon": "cloud_sun",
4807+ "condition": "Mostly Sunny",
4808+ "uv": 1
4809+ },
4810+ {
4811+ "timestamp": 1394899200,
4812+ "date": {
4813+ "year": 2014,
4814+ "month": 2,
4815+ "date": 15,
4816+ "hours": 16,
4817+ "minutes": 0
4818+ },
4819+ "metric": {
4820+ "temp": 16,
4821+ "tempFeels": 16,
4822+ "windSpeed": 20
4823+ },
4824+ "imperial": {
4825+ "temp": 60.8,
4826+ "tempFeels": 60.8,
4827+ "windSpeed": 12.42
4828+ },
4829+ "precipType": "rain",
4830+ "propPrecip": null,
4831+ "humidity": 48,
4832+ "windDeg": 285,
4833+ "windDir": "WNW",
4834+ "icon": "cloud_sun",
4835+ "condition": "Mostly Sunny",
4836+ "uv": 0
4837+ },
4838+ {
4839+ "timestamp": 1394902800,
4840+ "date": {
4841+ "year": 2014,
4842+ "month": 2,
4843+ "date": 15,
4844+ "hours": 17,
4845+ "minutes": 0
4846+ },
4847+ "metric": {
4848+ "temp": 16,
4849+ "tempFeels": 16,
4850+ "windSpeed": 19
4851+ },
4852+ "imperial": {
4853+ "temp": 60.8,
4854+ "tempFeels": 60.8,
4855+ "windSpeed": 11.799
4856+ },
4857+ "precipType": "rain",
4858+ "propPrecip": null,
4859+ "humidity": 52,
4860+ "windDeg": 282,
4861+ "windDir": "WNW",
4862+ "icon": "cloud_sun",
4863+ "condition": "Mostly Sunny",
4864+ "uv": 0
4865+ },
4866+ {
4867+ "timestamp": 1394906400,
4868+ "date": {
4869+ "year": 2014,
4870+ "month": 2,
4871+ "date": 15,
4872+ "hours": 18,
4873+ "minutes": 0
4874+ },
4875+ "metric": {
4876+ "temp": 15,
4877+ "tempFeels": 14,
4878+ "windSpeed": 17
4879+ },
4880+ "imperial": {
4881+ "temp": 59,
4882+ "tempFeels": 57.2,
4883+ "windSpeed": 10.557
4884+ },
4885+ "precipType": "rain",
4886+ "propPrecip": null,
4887+ "humidity": 55,
4888+ "windDeg": 280,
4889+ "windDir": "W",
4890+ "icon": "cloud_sun",
4891+ "condition": "Mostly Sunny",
4892+ "uv": 0
4893+ },
4894+ {
4895+ "timestamp": 1394910000,
4896+ "date": {
4897+ "year": 2014,
4898+ "month": 2,
4899+ "date": 15,
4900+ "hours": 19,
4901+ "minutes": 0
4902+ },
4903+ "metric": {
4904+ "temp": 14,
4905+ "tempFeels": 13,
4906+ "windSpeed": 17
4907+ },
4908+ "imperial": {
4909+ "temp": 57.2,
4910+ "tempFeels": 55.400000000000006,
4911+ "windSpeed": 10.557
4912+ },
4913+ "precipType": "rain",
4914+ "propPrecip": null,
4915+ "humidity": 60,
4916+ "windDeg": 281,
4917+ "windDir": "W",
4918+ "icon": "cloud_moon",
4919+ "condition": "Mostly Clear",
4920+ "uv": 0
4921+ },
4922+ {
4923+ "timestamp": 1394913600,
4924+ "date": {
4925+ "year": 2014,
4926+ "month": 2,
4927+ "date": 15,
4928+ "hours": 20,
4929+ "minutes": 0
4930+ },
4931+ "metric": {
4932+ "temp": 12,
4933+ "tempFeels": 11,
4934+ "windSpeed": 16
4935+ },
4936+ "imperial": {
4937+ "temp": 53.6,
4938+ "tempFeels": 51.8,
4939+ "windSpeed": 9.936
4940+ },
4941+ "precipType": "rain",
4942+ "propPrecip": null,
4943+ "humidity": 66,
4944+ "windDeg": 283,
4945+ "windDir": "WNW",
4946+ "icon": "moon",
4947+ "condition": "Clear",
4948+ "uv": 0
4949+ },
4950+ {
4951+ "timestamp": 1394917200,
4952+ "date": {
4953+ "year": 2014,
4954+ "month": 2,
4955+ "date": 15,
4956+ "hours": 21,
4957+ "minutes": 0
4958+ },
4959+ "metric": {
4960+ "temp": 11,
4961+ "tempFeels": 10,
4962+ "windSpeed": 16
4963+ },
4964+ "imperial": {
4965+ "temp": 51.8,
4966+ "tempFeels": 50,
4967+ "windSpeed": 9.936
4968+ },
4969+ "precipType": "rain",
4970+ "propPrecip": null,
4971+ "humidity": 69,
4972+ "windDeg": 283,
4973+ "windDir": "WNW",
4974+ "icon": "moon",
4975+ "condition": "Clear",
4976+ "uv": 0
4977+ },
4978+ {
4979+ "timestamp": 1394920800,
4980+ "date": {
4981+ "year": 2014,
4982+ "month": 2,
4983+ "date": 15,
4984+ "hours": 22,
4985+ "minutes": 0
4986+ },
4987+ "metric": {
4988+ "temp": 10,
4989+ "tempFeels": 8,
4990+ "windSpeed": 16
4991+ },
4992+ "imperial": {
4993+ "temp": 50,
4994+ "tempFeels": 46.4,
4995+ "windSpeed": 9.936
4996+ },
4997+ "precipType": "rain",
4998+ "propPrecip": null,
4999+ "humidity": 74,
5000+ "windDeg": 280,
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches