columbus3 0.2.1 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (199) hide show
  1. checksums.yaml +4 -4
  2. data/README.textile +62 -0
  3. data/bower_components/flot/.bower.json +19 -0
  4. data/bower_components/flot/.gitignore +3 -0
  5. data/bower_components/flot/.travis.yml +3 -0
  6. data/bower_components/flot/API.md +1498 -0
  7. data/bower_components/flot/CONTRIBUTING.md +98 -0
  8. data/bower_components/flot/FAQ.md +75 -0
  9. data/bower_components/flot/LICENSE.txt +22 -0
  10. data/bower_components/flot/Makefile +12 -0
  11. data/bower_components/flot/NEWS.md +1026 -0
  12. data/bower_components/flot/PLUGINS.md +143 -0
  13. data/bower_components/flot/README.md +110 -0
  14. data/bower_components/flot/component.json +8 -0
  15. data/bower_components/flot/examples/ajax/data-eu-gdp-growth-1.json +4 -0
  16. data/bower_components/flot/examples/ajax/data-eu-gdp-growth-2.json +4 -0
  17. data/bower_components/flot/examples/ajax/data-eu-gdp-growth-3.json +4 -0
  18. data/bower_components/flot/examples/ajax/data-eu-gdp-growth-4.json +4 -0
  19. data/bower_components/flot/examples/ajax/data-eu-gdp-growth-5.json +4 -0
  20. data/bower_components/flot/examples/ajax/data-eu-gdp-growth.json +4 -0
  21. data/bower_components/flot/examples/ajax/data-japan-gdp-growth.json +4 -0
  22. data/bower_components/flot/examples/ajax/data-usa-gdp-growth.json +4 -0
  23. data/bower_components/flot/examples/ajax/index.html +173 -0
  24. data/bower_components/flot/examples/annotating/index.html +87 -0
  25. data/bower_components/flot/examples/axes-interacting/index.html +97 -0
  26. data/bower_components/flot/examples/axes-multiple/index.html +77 -0
  27. data/bower_components/flot/examples/axes-time-zones/date.js +893 -0
  28. data/bower_components/flot/examples/axes-time-zones/index.html +114 -0
  29. data/bower_components/flot/examples/axes-time-zones/tz/africa +1181 -0
  30. data/bower_components/flot/examples/axes-time-zones/tz/antarctica +413 -0
  31. data/bower_components/flot/examples/axes-time-zones/tz/asia +2717 -0
  32. data/bower_components/flot/examples/axes-time-zones/tz/australasia +1719 -0
  33. data/bower_components/flot/examples/axes-time-zones/tz/backward +117 -0
  34. data/bower_components/flot/examples/axes-time-zones/tz/etcetera +81 -0
  35. data/bower_components/flot/examples/axes-time-zones/tz/europe +2856 -0
  36. data/bower_components/flot/examples/axes-time-zones/tz/factory +10 -0
  37. data/bower_components/flot/examples/axes-time-zones/tz/iso3166.tab +276 -0
  38. data/bower_components/flot/examples/axes-time-zones/tz/leapseconds +100 -0
  39. data/bower_components/flot/examples/axes-time-zones/tz/northamerica +3235 -0
  40. data/bower_components/flot/examples/axes-time-zones/tz/pacificnew +28 -0
  41. data/bower_components/flot/examples/axes-time-zones/tz/solar87 +390 -0
  42. data/bower_components/flot/examples/axes-time-zones/tz/solar88 +390 -0
  43. data/bower_components/flot/examples/axes-time-zones/tz/solar89 +395 -0
  44. data/bower_components/flot/examples/axes-time-zones/tz/southamerica +1711 -0
  45. data/bower_components/flot/examples/axes-time-zones/tz/systemv +38 -0
  46. data/bower_components/flot/examples/axes-time-zones/tz/yearistype.sh +38 -0
  47. data/bower_components/flot/examples/axes-time-zones/tz/zone.tab +441 -0
  48. data/bower_components/flot/examples/axes-time/index.html +137 -0
  49. data/bower_components/flot/examples/background.png +0 -0
  50. data/bower_components/flot/examples/basic-options/index.html +91 -0
  51. data/bower_components/flot/examples/basic-usage/index.html +57 -0
  52. data/bower_components/flot/examples/canvas/index.html +75 -0
  53. data/bower_components/flot/examples/categories/index.html +64 -0
  54. data/bower_components/flot/examples/examples.css +97 -0
  55. data/bower_components/flot/examples/image/hs-2004-27-a-large-web.jpg +0 -0
  56. data/bower_components/flot/examples/image/index.html +69 -0
  57. data/bower_components/flot/examples/index.html +80 -0
  58. data/bower_components/flot/examples/interacting/index.html +118 -0
  59. data/bower_components/flot/examples/navigate/arrow-down.gif +0 -0
  60. data/bower_components/flot/examples/navigate/arrow-left.gif +0 -0
  61. data/bower_components/flot/examples/navigate/arrow-right.gif +0 -0
  62. data/bower_components/flot/examples/navigate/arrow-up.gif +0 -0
  63. data/bower_components/flot/examples/navigate/index.html +153 -0
  64. data/bower_components/flot/examples/percentiles/index.html +79 -0
  65. data/bower_components/flot/examples/realtime/index.html +122 -0
  66. data/bower_components/flot/examples/resize/index.html +76 -0
  67. data/bower_components/flot/examples/selection/index.html +152 -0
  68. data/bower_components/flot/examples/series-errorbars/index.html +150 -0
  69. data/bower_components/flot/examples/series-pie/index.html +818 -0
  70. data/bower_components/flot/examples/series-toggle/index.html +121 -0
  71. data/bower_components/flot/examples/series-types/index.html +90 -0
  72. data/bower_components/flot/examples/shared/jquery-ui/jquery-ui.min.css +6 -0
  73. data/bower_components/flot/examples/stacking/index.html +107 -0
  74. data/bower_components/flot/examples/symbols/index.html +76 -0
  75. data/bower_components/flot/examples/threshold/index.html +76 -0
  76. data/bower_components/flot/examples/tracking/index.html +135 -0
  77. data/bower_components/flot/examples/visitors/index.html +147 -0
  78. data/bower_components/flot/examples/zooming/index.html +144 -0
  79. data/bower_components/flot/excanvas.js +1428 -0
  80. data/bower_components/flot/excanvas.min.js +1 -0
  81. data/bower_components/flot/flot.jquery.json +27 -0
  82. data/bower_components/flot/jquery.colorhelpers.js +180 -0
  83. data/bower_components/flot/jquery.flot.canvas.js +345 -0
  84. data/bower_components/flot/jquery.flot.categories.js +190 -0
  85. data/bower_components/flot/jquery.flot.crosshair.js +176 -0
  86. data/bower_components/flot/jquery.flot.errorbars.js +353 -0
  87. data/bower_components/flot/jquery.flot.fillbetween.js +226 -0
  88. data/bower_components/flot/jquery.flot.image.js +241 -0
  89. data/bower_components/flot/jquery.flot.js +3168 -0
  90. data/bower_components/flot/jquery.flot.navigate.js +346 -0
  91. data/bower_components/flot/jquery.flot.pie.js +820 -0
  92. data/bower_components/flot/jquery.flot.resize.js +59 -0
  93. data/bower_components/flot/jquery.flot.selection.js +360 -0
  94. data/bower_components/flot/jquery.flot.stack.js +188 -0
  95. data/bower_components/flot/jquery.flot.symbol.js +71 -0
  96. data/bower_components/flot/jquery.flot.threshold.js +142 -0
  97. data/bower_components/flot/jquery.flot.time.js +432 -0
  98. data/bower_components/flot/jquery.js +9472 -0
  99. data/bower_components/flot/package.json +11 -0
  100. data/bower_components/jquery/.bower.json +38 -0
  101. data/bower_components/jquery/MIT-LICENSE.txt +21 -0
  102. data/bower_components/jquery/bower.json +28 -0
  103. data/bower_components/jquery/dist/jquery.js +9210 -0
  104. data/bower_components/jquery/dist/jquery.min.js +5 -0
  105. data/bower_components/jquery/dist/jquery.min.map +1 -0
  106. data/bower_components/jquery/src/ajax.js +786 -0
  107. data/bower_components/jquery/src/ajax/jsonp.js +89 -0
  108. data/bower_components/jquery/src/ajax/load.js +75 -0
  109. data/bower_components/jquery/src/ajax/parseJSON.js +13 -0
  110. data/bower_components/jquery/src/ajax/parseXML.js +28 -0
  111. data/bower_components/jquery/src/ajax/script.js +64 -0
  112. data/bower_components/jquery/src/ajax/var/nonce.js +5 -0
  113. data/bower_components/jquery/src/ajax/var/rquery.js +3 -0
  114. data/bower_components/jquery/src/ajax/xhr.js +136 -0
  115. data/bower_components/jquery/src/attributes.js +11 -0
  116. data/bower_components/jquery/src/attributes/attr.js +141 -0
  117. data/bower_components/jquery/src/attributes/classes.js +158 -0
  118. data/bower_components/jquery/src/attributes/prop.js +94 -0
  119. data/bower_components/jquery/src/attributes/support.js +35 -0
  120. data/bower_components/jquery/src/attributes/val.js +161 -0
  121. data/bower_components/jquery/src/callbacks.js +205 -0
  122. data/bower_components/jquery/src/core.js +502 -0
  123. data/bower_components/jquery/src/core/access.js +60 -0
  124. data/bower_components/jquery/src/core/init.js +123 -0
  125. data/bower_components/jquery/src/core/parseHTML.js +39 -0
  126. data/bower_components/jquery/src/core/ready.js +97 -0
  127. data/bower_components/jquery/src/core/var/rsingleTag.js +4 -0
  128. data/bower_components/jquery/src/css.js +450 -0
  129. data/bower_components/jquery/src/css/addGetHookIf.js +22 -0
  130. data/bower_components/jquery/src/css/curCSS.js +57 -0
  131. data/bower_components/jquery/src/css/defaultDisplay.js +70 -0
  132. data/bower_components/jquery/src/css/hiddenVisibleSelectors.js +15 -0
  133. data/bower_components/jquery/src/css/support.js +96 -0
  134. data/bower_components/jquery/src/css/swap.js +28 -0
  135. data/bower_components/jquery/src/css/var/cssExpand.js +3 -0
  136. data/bower_components/jquery/src/css/var/getStyles.js +12 -0
  137. data/bower_components/jquery/src/css/var/isHidden.js +13 -0
  138. data/bower_components/jquery/src/css/var/rmargin.js +3 -0
  139. data/bower_components/jquery/src/css/var/rnumnonpx.js +5 -0
  140. data/bower_components/jquery/src/data.js +178 -0
  141. data/bower_components/jquery/src/data/Data.js +181 -0
  142. data/bower_components/jquery/src/data/accepts.js +20 -0
  143. data/bower_components/jquery/src/data/var/data_priv.js +5 -0
  144. data/bower_components/jquery/src/data/var/data_user.js +5 -0
  145. data/bower_components/jquery/src/deferred.js +149 -0
  146. data/bower_components/jquery/src/deprecated.js +13 -0
  147. data/bower_components/jquery/src/dimensions.js +50 -0
  148. data/bower_components/jquery/src/effects.js +648 -0
  149. data/bower_components/jquery/src/effects/Tween.js +114 -0
  150. data/bower_components/jquery/src/effects/animatedSelector.js +13 -0
  151. data/bower_components/jquery/src/event.js +868 -0
  152. data/bower_components/jquery/src/event/ajax.js +13 -0
  153. data/bower_components/jquery/src/event/alias.js +39 -0
  154. data/bower_components/jquery/src/event/support.js +9 -0
  155. data/bower_components/jquery/src/exports/amd.js +24 -0
  156. data/bower_components/jquery/src/exports/global.js +32 -0
  157. data/bower_components/jquery/src/intro.js +44 -0
  158. data/bower_components/jquery/src/jquery.js +37 -0
  159. data/bower_components/jquery/src/manipulation.js +580 -0
  160. data/bower_components/jquery/src/manipulation/_evalUrl.js +18 -0
  161. data/bower_components/jquery/src/manipulation/support.js +32 -0
  162. data/bower_components/jquery/src/manipulation/var/rcheckableType.js +3 -0
  163. data/bower_components/jquery/src/offset.js +207 -0
  164. data/bower_components/jquery/src/outro.js +1 -0
  165. data/bower_components/jquery/src/queue.js +142 -0
  166. data/bower_components/jquery/src/queue/delay.js +22 -0
  167. data/bower_components/jquery/src/selector-native.js +172 -0
  168. data/bower_components/jquery/src/selector-sizzle.js +14 -0
  169. data/bower_components/jquery/src/selector.js +1 -0
  170. data/bower_components/jquery/src/serialize.js +111 -0
  171. data/bower_components/jquery/src/sizzle/dist/sizzle.js +2067 -0
  172. data/bower_components/jquery/src/sizzle/dist/sizzle.min.js +3 -0
  173. data/bower_components/jquery/src/sizzle/dist/sizzle.min.map +1 -0
  174. data/bower_components/jquery/src/traversing.js +199 -0
  175. data/bower_components/jquery/src/traversing/findFilter.js +100 -0
  176. data/bower_components/jquery/src/traversing/var/rneedsContext.js +6 -0
  177. data/bower_components/jquery/src/var/arr.js +3 -0
  178. data/bower_components/jquery/src/var/class2type.js +4 -0
  179. data/bower_components/jquery/src/var/concat.js +5 -0
  180. data/bower_components/jquery/src/var/hasOwn.js +5 -0
  181. data/bower_components/jquery/src/var/indexOf.js +5 -0
  182. data/bower_components/jquery/src/var/pnum.js +3 -0
  183. data/bower_components/jquery/src/var/push.js +5 -0
  184. data/bower_components/jquery/src/var/rnotwhite.js +3 -0
  185. data/bower_components/jquery/src/var/slice.js +5 -0
  186. data/bower_components/jquery/src/var/strundefined.js +3 -0
  187. data/bower_components/jquery/src/var/support.js +4 -0
  188. data/bower_components/jquery/src/var/toString.js +5 -0
  189. data/bower_components/jquery/src/wrap.js +79 -0
  190. data/columbus3.gemspec +1 -1
  191. data/exe/columbus3 +72 -7
  192. data/lib/columbus3.rb +2 -1
  193. data/lib/columbus3/metadata/sidecar.rb +10 -1
  194. data/lib/columbus3/renderer/flot_renderer.rb +66 -0
  195. data/lib/columbus3/renderer/{renderer.rb → leaflet_renderer.rb} +0 -0
  196. data/lib/columbus3/version.rb +1 -1
  197. data/lib/html/flot.html.erb +106 -0
  198. metadata +194 -5
  199. data/README.md +0 -41
@@ -0,0 +1,28 @@
1
+ # <pre>
2
+ # This file is in the public domain, so clarified as of
3
+ # 2009-05-17 by Arthur David Olson.
4
+
5
+ # From Arthur David Olson (1989-04-05):
6
+ # On 1989-04-05, the U. S. House of Representatives passed (238-154) a bill
7
+ # establishing "Pacific Presidential Election Time"; it was not acted on
8
+ # by the Senate or signed into law by the President.
9
+ # You might want to change the "PE" (Presidential Election) below to
10
+ # "Q" (Quadrennial) to maintain three-character zone abbreviations.
11
+ # If you're really conservative, you might want to change it to "D".
12
+ # Avoid "L" (Leap Year), which won't be true in 2100.
13
+
14
+ # If Presidential Election Time is ever established, replace "XXXX" below
15
+ # with the year the law takes effect and uncomment the "##" lines.
16
+
17
+ # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S
18
+ ## Rule Twilite XXXX max - Apr Sun>=1 2:00 1:00 D
19
+ ## Rule Twilite XXXX max uspres Oct lastSun 2:00 1:00 PE
20
+ ## Rule Twilite XXXX max uspres Nov Sun>=7 2:00 0 S
21
+ ## Rule Twilite XXXX max nonpres Oct lastSun 2:00 0 S
22
+
23
+ # Zone NAME GMTOFF RULES/SAVE FORMAT [UNTIL]
24
+ ## Zone America/Los_Angeles-PET -8:00 US P%sT XXXX
25
+ ## -8:00 Twilite P%sT
26
+
27
+ # For now...
28
+ Link America/Los_Angeles US/Pacific-New ##
@@ -0,0 +1,390 @@
1
+ # <pre>
2
+ # This file is in the public domain, so clarified as of
3
+ # 2009-05-17 by Arthur David Olson.
4
+
5
+ # So much for footnotes about Saudi Arabia.
6
+ # Apparent noon times below are for Riyadh; your mileage will vary.
7
+ # Times were computed using formulas in the U.S. Naval Observatory's
8
+ # Almanac for Computers 1987; the formulas "will give EqT to an accuracy of
9
+ # [plus or minus two] seconds during the current year."
10
+ #
11
+ # Rounding to the nearest five seconds results in fewer than
12
+ # 256 different "time types"--a limit that's faced because time types are
13
+ # stored on disk as unsigned chars.
14
+
15
+ # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S
16
+ Rule sol87 1987 only - Jan 1 12:03:20s -0:03:20 -
17
+ Rule sol87 1987 only - Jan 2 12:03:50s -0:03:50 -
18
+ Rule sol87 1987 only - Jan 3 12:04:15s -0:04:15 -
19
+ Rule sol87 1987 only - Jan 4 12:04:45s -0:04:45 -
20
+ Rule sol87 1987 only - Jan 5 12:05:10s -0:05:10 -
21
+ Rule sol87 1987 only - Jan 6 12:05:40s -0:05:40 -
22
+ Rule sol87 1987 only - Jan 7 12:06:05s -0:06:05 -
23
+ Rule sol87 1987 only - Jan 8 12:06:30s -0:06:30 -
24
+ Rule sol87 1987 only - Jan 9 12:06:55s -0:06:55 -
25
+ Rule sol87 1987 only - Jan 10 12:07:20s -0:07:20 -
26
+ Rule sol87 1987 only - Jan 11 12:07:45s -0:07:45 -
27
+ Rule sol87 1987 only - Jan 12 12:08:10s -0:08:10 -
28
+ Rule sol87 1987 only - Jan 13 12:08:30s -0:08:30 -
29
+ Rule sol87 1987 only - Jan 14 12:08:55s -0:08:55 -
30
+ Rule sol87 1987 only - Jan 15 12:09:15s -0:09:15 -
31
+ Rule sol87 1987 only - Jan 16 12:09:35s -0:09:35 -
32
+ Rule sol87 1987 only - Jan 17 12:09:55s -0:09:55 -
33
+ Rule sol87 1987 only - Jan 18 12:10:15s -0:10:15 -
34
+ Rule sol87 1987 only - Jan 19 12:10:35s -0:10:35 -
35
+ Rule sol87 1987 only - Jan 20 12:10:55s -0:10:55 -
36
+ Rule sol87 1987 only - Jan 21 12:11:10s -0:11:10 -
37
+ Rule sol87 1987 only - Jan 22 12:11:30s -0:11:30 -
38
+ Rule sol87 1987 only - Jan 23 12:11:45s -0:11:45 -
39
+ Rule sol87 1987 only - Jan 24 12:12:00s -0:12:00 -
40
+ Rule sol87 1987 only - Jan 25 12:12:15s -0:12:15 -
41
+ Rule sol87 1987 only - Jan 26 12:12:30s -0:12:30 -
42
+ Rule sol87 1987 only - Jan 27 12:12:40s -0:12:40 -
43
+ Rule sol87 1987 only - Jan 28 12:12:55s -0:12:55 -
44
+ Rule sol87 1987 only - Jan 29 12:13:05s -0:13:05 -
45
+ Rule sol87 1987 only - Jan 30 12:13:15s -0:13:15 -
46
+ Rule sol87 1987 only - Jan 31 12:13:25s -0:13:25 -
47
+ Rule sol87 1987 only - Feb 1 12:13:35s -0:13:35 -
48
+ Rule sol87 1987 only - Feb 2 12:13:40s -0:13:40 -
49
+ Rule sol87 1987 only - Feb 3 12:13:50s -0:13:50 -
50
+ Rule sol87 1987 only - Feb 4 12:13:55s -0:13:55 -
51
+ Rule sol87 1987 only - Feb 5 12:14:00s -0:14:00 -
52
+ Rule sol87 1987 only - Feb 6 12:14:05s -0:14:05 -
53
+ Rule sol87 1987 only - Feb 7 12:14:10s -0:14:10 -
54
+ Rule sol87 1987 only - Feb 8 12:14:10s -0:14:10 -
55
+ Rule sol87 1987 only - Feb 9 12:14:15s -0:14:15 -
56
+ Rule sol87 1987 only - Feb 10 12:14:15s -0:14:15 -
57
+ Rule sol87 1987 only - Feb 11 12:14:15s -0:14:15 -
58
+ Rule sol87 1987 only - Feb 12 12:14:15s -0:14:15 -
59
+ Rule sol87 1987 only - Feb 13 12:14:15s -0:14:15 -
60
+ Rule sol87 1987 only - Feb 14 12:14:15s -0:14:15 -
61
+ Rule sol87 1987 only - Feb 15 12:14:10s -0:14:10 -
62
+ Rule sol87 1987 only - Feb 16 12:14:10s -0:14:10 -
63
+ Rule sol87 1987 only - Feb 17 12:14:05s -0:14:05 -
64
+ Rule sol87 1987 only - Feb 18 12:14:00s -0:14:00 -
65
+ Rule sol87 1987 only - Feb 19 12:13:55s -0:13:55 -
66
+ Rule sol87 1987 only - Feb 20 12:13:50s -0:13:50 -
67
+ Rule sol87 1987 only - Feb 21 12:13:45s -0:13:45 -
68
+ Rule sol87 1987 only - Feb 22 12:13:35s -0:13:35 -
69
+ Rule sol87 1987 only - Feb 23 12:13:30s -0:13:30 -
70
+ Rule sol87 1987 only - Feb 24 12:13:20s -0:13:20 -
71
+ Rule sol87 1987 only - Feb 25 12:13:10s -0:13:10 -
72
+ Rule sol87 1987 only - Feb 26 12:13:00s -0:13:00 -
73
+ Rule sol87 1987 only - Feb 27 12:12:50s -0:12:50 -
74
+ Rule sol87 1987 only - Feb 28 12:12:40s -0:12:40 -
75
+ Rule sol87 1987 only - Mar 1 12:12:30s -0:12:30 -
76
+ Rule sol87 1987 only - Mar 2 12:12:20s -0:12:20 -
77
+ Rule sol87 1987 only - Mar 3 12:12:05s -0:12:05 -
78
+ Rule sol87 1987 only - Mar 4 12:11:55s -0:11:55 -
79
+ Rule sol87 1987 only - Mar 5 12:11:40s -0:11:40 -
80
+ Rule sol87 1987 only - Mar 6 12:11:25s -0:11:25 -
81
+ Rule sol87 1987 only - Mar 7 12:11:15s -0:11:15 -
82
+ Rule sol87 1987 only - Mar 8 12:11:00s -0:11:00 -
83
+ Rule sol87 1987 only - Mar 9 12:10:45s -0:10:45 -
84
+ Rule sol87 1987 only - Mar 10 12:10:30s -0:10:30 -
85
+ Rule sol87 1987 only - Mar 11 12:10:15s -0:10:15 -
86
+ Rule sol87 1987 only - Mar 12 12:09:55s -0:09:55 -
87
+ Rule sol87 1987 only - Mar 13 12:09:40s -0:09:40 -
88
+ Rule sol87 1987 only - Mar 14 12:09:25s -0:09:25 -
89
+ Rule sol87 1987 only - Mar 15 12:09:10s -0:09:10 -
90
+ Rule sol87 1987 only - Mar 16 12:08:50s -0:08:50 -
91
+ Rule sol87 1987 only - Mar 17 12:08:35s -0:08:35 -
92
+ Rule sol87 1987 only - Mar 18 12:08:15s -0:08:15 -
93
+ Rule sol87 1987 only - Mar 19 12:08:00s -0:08:00 -
94
+ Rule sol87 1987 only - Mar 20 12:07:40s -0:07:40 -
95
+ Rule sol87 1987 only - Mar 21 12:07:25s -0:07:25 -
96
+ Rule sol87 1987 only - Mar 22 12:07:05s -0:07:05 -
97
+ Rule sol87 1987 only - Mar 23 12:06:50s -0:06:50 -
98
+ Rule sol87 1987 only - Mar 24 12:06:30s -0:06:30 -
99
+ Rule sol87 1987 only - Mar 25 12:06:10s -0:06:10 -
100
+ Rule sol87 1987 only - Mar 26 12:05:55s -0:05:55 -
101
+ Rule sol87 1987 only - Mar 27 12:05:35s -0:05:35 -
102
+ Rule sol87 1987 only - Mar 28 12:05:15s -0:05:15 -
103
+ Rule sol87 1987 only - Mar 29 12:05:00s -0:05:00 -
104
+ Rule sol87 1987 only - Mar 30 12:04:40s -0:04:40 -
105
+ Rule sol87 1987 only - Mar 31 12:04:25s -0:04:25 -
106
+ Rule sol87 1987 only - Apr 1 12:04:05s -0:04:05 -
107
+ Rule sol87 1987 only - Apr 2 12:03:45s -0:03:45 -
108
+ Rule sol87 1987 only - Apr 3 12:03:30s -0:03:30 -
109
+ Rule sol87 1987 only - Apr 4 12:03:10s -0:03:10 -
110
+ Rule sol87 1987 only - Apr 5 12:02:55s -0:02:55 -
111
+ Rule sol87 1987 only - Apr 6 12:02:35s -0:02:35 -
112
+ Rule sol87 1987 only - Apr 7 12:02:20s -0:02:20 -
113
+ Rule sol87 1987 only - Apr 8 12:02:05s -0:02:05 -
114
+ Rule sol87 1987 only - Apr 9 12:01:45s -0:01:45 -
115
+ Rule sol87 1987 only - Apr 10 12:01:30s -0:01:30 -
116
+ Rule sol87 1987 only - Apr 11 12:01:15s -0:01:15 -
117
+ Rule sol87 1987 only - Apr 12 12:00:55s -0:00:55 -
118
+ Rule sol87 1987 only - Apr 13 12:00:40s -0:00:40 -
119
+ Rule sol87 1987 only - Apr 14 12:00:25s -0:00:25 -
120
+ Rule sol87 1987 only - Apr 15 12:00:10s -0:00:10 -
121
+ Rule sol87 1987 only - Apr 16 11:59:55s 0:00:05 -
122
+ Rule sol87 1987 only - Apr 17 11:59:45s 0:00:15 -
123
+ Rule sol87 1987 only - Apr 18 11:59:30s 0:00:30 -
124
+ Rule sol87 1987 only - Apr 19 11:59:15s 0:00:45 -
125
+ Rule sol87 1987 only - Apr 20 11:59:05s 0:00:55 -
126
+ Rule sol87 1987 only - Apr 21 11:58:50s 0:01:10 -
127
+ Rule sol87 1987 only - Apr 22 11:58:40s 0:01:20 -
128
+ Rule sol87 1987 only - Apr 23 11:58:25s 0:01:35 -
129
+ Rule sol87 1987 only - Apr 24 11:58:15s 0:01:45 -
130
+ Rule sol87 1987 only - Apr 25 11:58:05s 0:01:55 -
131
+ Rule sol87 1987 only - Apr 26 11:57:55s 0:02:05 -
132
+ Rule sol87 1987 only - Apr 27 11:57:45s 0:02:15 -
133
+ Rule sol87 1987 only - Apr 28 11:57:35s 0:02:25 -
134
+ Rule sol87 1987 only - Apr 29 11:57:25s 0:02:35 -
135
+ Rule sol87 1987 only - Apr 30 11:57:15s 0:02:45 -
136
+ Rule sol87 1987 only - May 1 11:57:10s 0:02:50 -
137
+ Rule sol87 1987 only - May 2 11:57:00s 0:03:00 -
138
+ Rule sol87 1987 only - May 3 11:56:55s 0:03:05 -
139
+ Rule sol87 1987 only - May 4 11:56:50s 0:03:10 -
140
+ Rule sol87 1987 only - May 5 11:56:45s 0:03:15 -
141
+ Rule sol87 1987 only - May 6 11:56:40s 0:03:20 -
142
+ Rule sol87 1987 only - May 7 11:56:35s 0:03:25 -
143
+ Rule sol87 1987 only - May 8 11:56:30s 0:03:30 -
144
+ Rule sol87 1987 only - May 9 11:56:25s 0:03:35 -
145
+ Rule sol87 1987 only - May 10 11:56:25s 0:03:35 -
146
+ Rule sol87 1987 only - May 11 11:56:20s 0:03:40 -
147
+ Rule sol87 1987 only - May 12 11:56:20s 0:03:40 -
148
+ Rule sol87 1987 only - May 13 11:56:20s 0:03:40 -
149
+ Rule sol87 1987 only - May 14 11:56:20s 0:03:40 -
150
+ Rule sol87 1987 only - May 15 11:56:20s 0:03:40 -
151
+ Rule sol87 1987 only - May 16 11:56:20s 0:03:40 -
152
+ Rule sol87 1987 only - May 17 11:56:20s 0:03:40 -
153
+ Rule sol87 1987 only - May 18 11:56:20s 0:03:40 -
154
+ Rule sol87 1987 only - May 19 11:56:25s 0:03:35 -
155
+ Rule sol87 1987 only - May 20 11:56:25s 0:03:35 -
156
+ Rule sol87 1987 only - May 21 11:56:30s 0:03:30 -
157
+ Rule sol87 1987 only - May 22 11:56:35s 0:03:25 -
158
+ Rule sol87 1987 only - May 23 11:56:40s 0:03:20 -
159
+ Rule sol87 1987 only - May 24 11:56:45s 0:03:15 -
160
+ Rule sol87 1987 only - May 25 11:56:50s 0:03:10 -
161
+ Rule sol87 1987 only - May 26 11:56:55s 0:03:05 -
162
+ Rule sol87 1987 only - May 27 11:57:00s 0:03:00 -
163
+ Rule sol87 1987 only - May 28 11:57:10s 0:02:50 -
164
+ Rule sol87 1987 only - May 29 11:57:15s 0:02:45 -
165
+ Rule sol87 1987 only - May 30 11:57:25s 0:02:35 -
166
+ Rule sol87 1987 only - May 31 11:57:30s 0:02:30 -
167
+ Rule sol87 1987 only - Jun 1 11:57:40s 0:02:20 -
168
+ Rule sol87 1987 only - Jun 2 11:57:50s 0:02:10 -
169
+ Rule sol87 1987 only - Jun 3 11:58:00s 0:02:00 -
170
+ Rule sol87 1987 only - Jun 4 11:58:10s 0:01:50 -
171
+ Rule sol87 1987 only - Jun 5 11:58:20s 0:01:40 -
172
+ Rule sol87 1987 only - Jun 6 11:58:30s 0:01:30 -
173
+ Rule sol87 1987 only - Jun 7 11:58:40s 0:01:20 -
174
+ Rule sol87 1987 only - Jun 8 11:58:50s 0:01:10 -
175
+ Rule sol87 1987 only - Jun 9 11:59:05s 0:00:55 -
176
+ Rule sol87 1987 only - Jun 10 11:59:15s 0:00:45 -
177
+ Rule sol87 1987 only - Jun 11 11:59:30s 0:00:30 -
178
+ Rule sol87 1987 only - Jun 12 11:59:40s 0:00:20 -
179
+ Rule sol87 1987 only - Jun 13 11:59:50s 0:00:10 -
180
+ Rule sol87 1987 only - Jun 14 12:00:05s -0:00:05 -
181
+ Rule sol87 1987 only - Jun 15 12:00:15s -0:00:15 -
182
+ Rule sol87 1987 only - Jun 16 12:00:30s -0:00:30 -
183
+ Rule sol87 1987 only - Jun 17 12:00:45s -0:00:45 -
184
+ Rule sol87 1987 only - Jun 18 12:00:55s -0:00:55 -
185
+ Rule sol87 1987 only - Jun 19 12:01:10s -0:01:10 -
186
+ Rule sol87 1987 only - Jun 20 12:01:20s -0:01:20 -
187
+ Rule sol87 1987 only - Jun 21 12:01:35s -0:01:35 -
188
+ Rule sol87 1987 only - Jun 22 12:01:50s -0:01:50 -
189
+ Rule sol87 1987 only - Jun 23 12:02:00s -0:02:00 -
190
+ Rule sol87 1987 only - Jun 24 12:02:15s -0:02:15 -
191
+ Rule sol87 1987 only - Jun 25 12:02:25s -0:02:25 -
192
+ Rule sol87 1987 only - Jun 26 12:02:40s -0:02:40 -
193
+ Rule sol87 1987 only - Jun 27 12:02:50s -0:02:50 -
194
+ Rule sol87 1987 only - Jun 28 12:03:05s -0:03:05 -
195
+ Rule sol87 1987 only - Jun 29 12:03:15s -0:03:15 -
196
+ Rule sol87 1987 only - Jun 30 12:03:30s -0:03:30 -
197
+ Rule sol87 1987 only - Jul 1 12:03:40s -0:03:40 -
198
+ Rule sol87 1987 only - Jul 2 12:03:50s -0:03:50 -
199
+ Rule sol87 1987 only - Jul 3 12:04:05s -0:04:05 -
200
+ Rule sol87 1987 only - Jul 4 12:04:15s -0:04:15 -
201
+ Rule sol87 1987 only - Jul 5 12:04:25s -0:04:25 -
202
+ Rule sol87 1987 only - Jul 6 12:04:35s -0:04:35 -
203
+ Rule sol87 1987 only - Jul 7 12:04:45s -0:04:45 -
204
+ Rule sol87 1987 only - Jul 8 12:04:55s -0:04:55 -
205
+ Rule sol87 1987 only - Jul 9 12:05:05s -0:05:05 -
206
+ Rule sol87 1987 only - Jul 10 12:05:15s -0:05:15 -
207
+ Rule sol87 1987 only - Jul 11 12:05:20s -0:05:20 -
208
+ Rule sol87 1987 only - Jul 12 12:05:30s -0:05:30 -
209
+ Rule sol87 1987 only - Jul 13 12:05:40s -0:05:40 -
210
+ Rule sol87 1987 only - Jul 14 12:05:45s -0:05:45 -
211
+ Rule sol87 1987 only - Jul 15 12:05:50s -0:05:50 -
212
+ Rule sol87 1987 only - Jul 16 12:06:00s -0:06:00 -
213
+ Rule sol87 1987 only - Jul 17 12:06:05s -0:06:05 -
214
+ Rule sol87 1987 only - Jul 18 12:06:10s -0:06:10 -
215
+ Rule sol87 1987 only - Jul 19 12:06:15s -0:06:15 -
216
+ Rule sol87 1987 only - Jul 20 12:06:15s -0:06:15 -
217
+ Rule sol87 1987 only - Jul 21 12:06:20s -0:06:20 -
218
+ Rule sol87 1987 only - Jul 22 12:06:25s -0:06:25 -
219
+ Rule sol87 1987 only - Jul 23 12:06:25s -0:06:25 -
220
+ Rule sol87 1987 only - Jul 24 12:06:25s -0:06:25 -
221
+ Rule sol87 1987 only - Jul 25 12:06:30s -0:06:30 -
222
+ Rule sol87 1987 only - Jul 26 12:06:30s -0:06:30 -
223
+ Rule sol87 1987 only - Jul 27 12:06:30s -0:06:30 -
224
+ Rule sol87 1987 only - Jul 28 12:06:30s -0:06:30 -
225
+ Rule sol87 1987 only - Jul 29 12:06:25s -0:06:25 -
226
+ Rule sol87 1987 only - Jul 30 12:06:25s -0:06:25 -
227
+ Rule sol87 1987 only - Jul 31 12:06:25s -0:06:25 -
228
+ Rule sol87 1987 only - Aug 1 12:06:20s -0:06:20 -
229
+ Rule sol87 1987 only - Aug 2 12:06:15s -0:06:15 -
230
+ Rule sol87 1987 only - Aug 3 12:06:10s -0:06:10 -
231
+ Rule sol87 1987 only - Aug 4 12:06:05s -0:06:05 -
232
+ Rule sol87 1987 only - Aug 5 12:06:00s -0:06:00 -
233
+ Rule sol87 1987 only - Aug 6 12:05:55s -0:05:55 -
234
+ Rule sol87 1987 only - Aug 7 12:05:50s -0:05:50 -
235
+ Rule sol87 1987 only - Aug 8 12:05:40s -0:05:40 -
236
+ Rule sol87 1987 only - Aug 9 12:05:35s -0:05:35 -
237
+ Rule sol87 1987 only - Aug 10 12:05:25s -0:05:25 -
238
+ Rule sol87 1987 only - Aug 11 12:05:15s -0:05:15 -
239
+ Rule sol87 1987 only - Aug 12 12:05:05s -0:05:05 -
240
+ Rule sol87 1987 only - Aug 13 12:04:55s -0:04:55 -
241
+ Rule sol87 1987 only - Aug 14 12:04:45s -0:04:45 -
242
+ Rule sol87 1987 only - Aug 15 12:04:35s -0:04:35 -
243
+ Rule sol87 1987 only - Aug 16 12:04:25s -0:04:25 -
244
+ Rule sol87 1987 only - Aug 17 12:04:10s -0:04:10 -
245
+ Rule sol87 1987 only - Aug 18 12:04:00s -0:04:00 -
246
+ Rule sol87 1987 only - Aug 19 12:03:45s -0:03:45 -
247
+ Rule sol87 1987 only - Aug 20 12:03:30s -0:03:30 -
248
+ Rule sol87 1987 only - Aug 21 12:03:15s -0:03:15 -
249
+ Rule sol87 1987 only - Aug 22 12:03:00s -0:03:00 -
250
+ Rule sol87 1987 only - Aug 23 12:02:45s -0:02:45 -
251
+ Rule sol87 1987 only - Aug 24 12:02:30s -0:02:30 -
252
+ Rule sol87 1987 only - Aug 25 12:02:15s -0:02:15 -
253
+ Rule sol87 1987 only - Aug 26 12:02:00s -0:02:00 -
254
+ Rule sol87 1987 only - Aug 27 12:01:40s -0:01:40 -
255
+ Rule sol87 1987 only - Aug 28 12:01:25s -0:01:25 -
256
+ Rule sol87 1987 only - Aug 29 12:01:05s -0:01:05 -
257
+ Rule sol87 1987 only - Aug 30 12:00:50s -0:00:50 -
258
+ Rule sol87 1987 only - Aug 31 12:00:30s -0:00:30 -
259
+ Rule sol87 1987 only - Sep 1 12:00:10s -0:00:10 -
260
+ Rule sol87 1987 only - Sep 2 11:59:50s 0:00:10 -
261
+ Rule sol87 1987 only - Sep 3 11:59:35s 0:00:25 -
262
+ Rule sol87 1987 only - Sep 4 11:59:15s 0:00:45 -
263
+ Rule sol87 1987 only - Sep 5 11:58:55s 0:01:05 -
264
+ Rule sol87 1987 only - Sep 6 11:58:35s 0:01:25 -
265
+ Rule sol87 1987 only - Sep 7 11:58:15s 0:01:45 -
266
+ Rule sol87 1987 only - Sep 8 11:57:55s 0:02:05 -
267
+ Rule sol87 1987 only - Sep 9 11:57:30s 0:02:30 -
268
+ Rule sol87 1987 only - Sep 10 11:57:10s 0:02:50 -
269
+ Rule sol87 1987 only - Sep 11 11:56:50s 0:03:10 -
270
+ Rule sol87 1987 only - Sep 12 11:56:30s 0:03:30 -
271
+ Rule sol87 1987 only - Sep 13 11:56:10s 0:03:50 -
272
+ Rule sol87 1987 only - Sep 14 11:55:45s 0:04:15 -
273
+ Rule sol87 1987 only - Sep 15 11:55:25s 0:04:35 -
274
+ Rule sol87 1987 only - Sep 16 11:55:05s 0:04:55 -
275
+ Rule sol87 1987 only - Sep 17 11:54:45s 0:05:15 -
276
+ Rule sol87 1987 only - Sep 18 11:54:20s 0:05:40 -
277
+ Rule sol87 1987 only - Sep 19 11:54:00s 0:06:00 -
278
+ Rule sol87 1987 only - Sep 20 11:53:40s 0:06:20 -
279
+ Rule sol87 1987 only - Sep 21 11:53:15s 0:06:45 -
280
+ Rule sol87 1987 only - Sep 22 11:52:55s 0:07:05 -
281
+ Rule sol87 1987 only - Sep 23 11:52:35s 0:07:25 -
282
+ Rule sol87 1987 only - Sep 24 11:52:15s 0:07:45 -
283
+ Rule sol87 1987 only - Sep 25 11:51:55s 0:08:05 -
284
+ Rule sol87 1987 only - Sep 26 11:51:35s 0:08:25 -
285
+ Rule sol87 1987 only - Sep 27 11:51:10s 0:08:50 -
286
+ Rule sol87 1987 only - Sep 28 11:50:50s 0:09:10 -
287
+ Rule sol87 1987 only - Sep 29 11:50:30s 0:09:30 -
288
+ Rule sol87 1987 only - Sep 30 11:50:10s 0:09:50 -
289
+ Rule sol87 1987 only - Oct 1 11:49:50s 0:10:10 -
290
+ Rule sol87 1987 only - Oct 2 11:49:35s 0:10:25 -
291
+ Rule sol87 1987 only - Oct 3 11:49:15s 0:10:45 -
292
+ Rule sol87 1987 only - Oct 4 11:48:55s 0:11:05 -
293
+ Rule sol87 1987 only - Oct 5 11:48:35s 0:11:25 -
294
+ Rule sol87 1987 only - Oct 6 11:48:20s 0:11:40 -
295
+ Rule sol87 1987 only - Oct 7 11:48:00s 0:12:00 -
296
+ Rule sol87 1987 only - Oct 8 11:47:45s 0:12:15 -
297
+ Rule sol87 1987 only - Oct 9 11:47:25s 0:12:35 -
298
+ Rule sol87 1987 only - Oct 10 11:47:10s 0:12:50 -
299
+ Rule sol87 1987 only - Oct 11 11:46:55s 0:13:05 -
300
+ Rule sol87 1987 only - Oct 12 11:46:40s 0:13:20 -
301
+ Rule sol87 1987 only - Oct 13 11:46:25s 0:13:35 -
302
+ Rule sol87 1987 only - Oct 14 11:46:10s 0:13:50 -
303
+ Rule sol87 1987 only - Oct 15 11:45:55s 0:14:05 -
304
+ Rule sol87 1987 only - Oct 16 11:45:45s 0:14:15 -
305
+ Rule sol87 1987 only - Oct 17 11:45:30s 0:14:30 -
306
+ Rule sol87 1987 only - Oct 18 11:45:20s 0:14:40 -
307
+ Rule sol87 1987 only - Oct 19 11:45:05s 0:14:55 -
308
+ Rule sol87 1987 only - Oct 20 11:44:55s 0:15:05 -
309
+ Rule sol87 1987 only - Oct 21 11:44:45s 0:15:15 -
310
+ Rule sol87 1987 only - Oct 22 11:44:35s 0:15:25 -
311
+ Rule sol87 1987 only - Oct 23 11:44:25s 0:15:35 -
312
+ Rule sol87 1987 only - Oct 24 11:44:20s 0:15:40 -
313
+ Rule sol87 1987 only - Oct 25 11:44:10s 0:15:50 -
314
+ Rule sol87 1987 only - Oct 26 11:44:05s 0:15:55 -
315
+ Rule sol87 1987 only - Oct 27 11:43:55s 0:16:05 -
316
+ Rule sol87 1987 only - Oct 28 11:43:50s 0:16:10 -
317
+ Rule sol87 1987 only - Oct 29 11:43:45s 0:16:15 -
318
+ Rule sol87 1987 only - Oct 30 11:43:45s 0:16:15 -
319
+ Rule sol87 1987 only - Oct 31 11:43:40s 0:16:20 -
320
+ Rule sol87 1987 only - Nov 1 11:43:40s 0:16:20 -
321
+ Rule sol87 1987 only - Nov 2 11:43:35s 0:16:25 -
322
+ Rule sol87 1987 only - Nov 3 11:43:35s 0:16:25 -
323
+ Rule sol87 1987 only - Nov 4 11:43:35s 0:16:25 -
324
+ Rule sol87 1987 only - Nov 5 11:43:35s 0:16:25 -
325
+ Rule sol87 1987 only - Nov 6 11:43:40s 0:16:20 -
326
+ Rule sol87 1987 only - Nov 7 11:43:40s 0:16:20 -
327
+ Rule sol87 1987 only - Nov 8 11:43:45s 0:16:15 -
328
+ Rule sol87 1987 only - Nov 9 11:43:50s 0:16:10 -
329
+ Rule sol87 1987 only - Nov 10 11:43:55s 0:16:05 -
330
+ Rule sol87 1987 only - Nov 11 11:44:00s 0:16:00 -
331
+ Rule sol87 1987 only - Nov 12 11:44:05s 0:15:55 -
332
+ Rule sol87 1987 only - Nov 13 11:44:15s 0:15:45 -
333
+ Rule sol87 1987 only - Nov 14 11:44:20s 0:15:40 -
334
+ Rule sol87 1987 only - Nov 15 11:44:30s 0:15:30 -
335
+ Rule sol87 1987 only - Nov 16 11:44:40s 0:15:20 -
336
+ Rule sol87 1987 only - Nov 17 11:44:50s 0:15:10 -
337
+ Rule sol87 1987 only - Nov 18 11:45:05s 0:14:55 -
338
+ Rule sol87 1987 only - Nov 19 11:45:15s 0:14:45 -
339
+ Rule sol87 1987 only - Nov 20 11:45:30s 0:14:30 -
340
+ Rule sol87 1987 only - Nov 21 11:45:45s 0:14:15 -
341
+ Rule sol87 1987 only - Nov 22 11:46:00s 0:14:00 -
342
+ Rule sol87 1987 only - Nov 23 11:46:15s 0:13:45 -
343
+ Rule sol87 1987 only - Nov 24 11:46:30s 0:13:30 -
344
+ Rule sol87 1987 only - Nov 25 11:46:50s 0:13:10 -
345
+ Rule sol87 1987 only - Nov 26 11:47:10s 0:12:50 -
346
+ Rule sol87 1987 only - Nov 27 11:47:25s 0:12:35 -
347
+ Rule sol87 1987 only - Nov 28 11:47:45s 0:12:15 -
348
+ Rule sol87 1987 only - Nov 29 11:48:05s 0:11:55 -
349
+ Rule sol87 1987 only - Nov 30 11:48:30s 0:11:30 -
350
+ Rule sol87 1987 only - Dec 1 11:48:50s 0:11:10 -
351
+ Rule sol87 1987 only - Dec 2 11:49:10s 0:10:50 -
352
+ Rule sol87 1987 only - Dec 3 11:49:35s 0:10:25 -
353
+ Rule sol87 1987 only - Dec 4 11:50:00s 0:10:00 -
354
+ Rule sol87 1987 only - Dec 5 11:50:25s 0:09:35 -
355
+ Rule sol87 1987 only - Dec 6 11:50:50s 0:09:10 -
356
+ Rule sol87 1987 only - Dec 7 11:51:15s 0:08:45 -
357
+ Rule sol87 1987 only - Dec 8 11:51:40s 0:08:20 -
358
+ Rule sol87 1987 only - Dec 9 11:52:05s 0:07:55 -
359
+ Rule sol87 1987 only - Dec 10 11:52:30s 0:07:30 -
360
+ Rule sol87 1987 only - Dec 11 11:53:00s 0:07:00 -
361
+ Rule sol87 1987 only - Dec 12 11:53:25s 0:06:35 -
362
+ Rule sol87 1987 only - Dec 13 11:53:55s 0:06:05 -
363
+ Rule sol87 1987 only - Dec 14 11:54:25s 0:05:35 -
364
+ Rule sol87 1987 only - Dec 15 11:54:50s 0:05:10 -
365
+ Rule sol87 1987 only - Dec 16 11:55:20s 0:04:40 -
366
+ Rule sol87 1987 only - Dec 17 11:55:50s 0:04:10 -
367
+ Rule sol87 1987 only - Dec 18 11:56:20s 0:03:40 -
368
+ Rule sol87 1987 only - Dec 19 11:56:50s 0:03:10 -
369
+ Rule sol87 1987 only - Dec 20 11:57:20s 0:02:40 -
370
+ Rule sol87 1987 only - Dec 21 11:57:50s 0:02:10 -
371
+ Rule sol87 1987 only - Dec 22 11:58:20s 0:01:40 -
372
+ Rule sol87 1987 only - Dec 23 11:58:50s 0:01:10 -
373
+ Rule sol87 1987 only - Dec 24 11:59:20s 0:00:40 -
374
+ Rule sol87 1987 only - Dec 25 11:59:50s 0:00:10 -
375
+ Rule sol87 1987 only - Dec 26 12:00:20s -0:00:20 -
376
+ Rule sol87 1987 only - Dec 27 12:00:45s -0:00:45 -
377
+ Rule sol87 1987 only - Dec 28 12:01:15s -0:01:15 -
378
+ Rule sol87 1987 only - Dec 29 12:01:45s -0:01:45 -
379
+ Rule sol87 1987 only - Dec 30 12:02:15s -0:02:15 -
380
+ Rule sol87 1987 only - Dec 31 12:02:45s -0:02:45 -
381
+
382
+ # Riyadh is at about 46 degrees 46 minutes East: 3 hrs, 7 mins, 4 secs
383
+ # Before and after 1987, we'll operate on local mean solar time.
384
+
385
+ # Zone NAME GMTOFF RULES/SAVE FORMAT [UNTIL]
386
+ Zone Asia/Riyadh87 3:07:04 - zzz 1987
387
+ 3:07:04 sol87 zzz 1988
388
+ 3:07:04 - zzz
389
+ # For backward compatibility...
390
+ Link Asia/Riyadh87 Mideast/Riyadh87
@@ -0,0 +1,390 @@
1
+ # <pre>
2
+ # This file is in the public domain, so clarified as of
3
+ # 2009-05-17 by Arthur David Olson.
4
+
5
+ # Apparent noon times below are for Riyadh; they're a bit off for other places.
6
+ # Times were computed using formulas in the U.S. Naval Observatory's
7
+ # Almanac for Computers 1988; the formulas "will give EqT to an accuracy of
8
+ # [plus or minus two] seconds during the current year."
9
+ #
10
+ # Rounding to the nearest five seconds results in fewer than
11
+ # 256 different "time types"--a limit that's faced because time types are
12
+ # stored on disk as unsigned chars.
13
+
14
+ # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S
15
+ Rule sol88 1988 only - Jan 1 12:03:15s -0:03:15 -
16
+ Rule sol88 1988 only - Jan 2 12:03:40s -0:03:40 -
17
+ Rule sol88 1988 only - Jan 3 12:04:10s -0:04:10 -
18
+ Rule sol88 1988 only - Jan 4 12:04:40s -0:04:40 -
19
+ Rule sol88 1988 only - Jan 5 12:05:05s -0:05:05 -
20
+ Rule sol88 1988 only - Jan 6 12:05:30s -0:05:30 -
21
+ Rule sol88 1988 only - Jan 7 12:06:00s -0:06:00 -
22
+ Rule sol88 1988 only - Jan 8 12:06:25s -0:06:25 -
23
+ Rule sol88 1988 only - Jan 9 12:06:50s -0:06:50 -
24
+ Rule sol88 1988 only - Jan 10 12:07:15s -0:07:15 -
25
+ Rule sol88 1988 only - Jan 11 12:07:40s -0:07:40 -
26
+ Rule sol88 1988 only - Jan 12 12:08:05s -0:08:05 -
27
+ Rule sol88 1988 only - Jan 13 12:08:25s -0:08:25 -
28
+ Rule sol88 1988 only - Jan 14 12:08:50s -0:08:50 -
29
+ Rule sol88 1988 only - Jan 15 12:09:10s -0:09:10 -
30
+ Rule sol88 1988 only - Jan 16 12:09:30s -0:09:30 -
31
+ Rule sol88 1988 only - Jan 17 12:09:50s -0:09:50 -
32
+ Rule sol88 1988 only - Jan 18 12:10:10s -0:10:10 -
33
+ Rule sol88 1988 only - Jan 19 12:10:30s -0:10:30 -
34
+ Rule sol88 1988 only - Jan 20 12:10:50s -0:10:50 -
35
+ Rule sol88 1988 only - Jan 21 12:11:05s -0:11:05 -
36
+ Rule sol88 1988 only - Jan 22 12:11:25s -0:11:25 -
37
+ Rule sol88 1988 only - Jan 23 12:11:40s -0:11:40 -
38
+ Rule sol88 1988 only - Jan 24 12:11:55s -0:11:55 -
39
+ Rule sol88 1988 only - Jan 25 12:12:10s -0:12:10 -
40
+ Rule sol88 1988 only - Jan 26 12:12:25s -0:12:25 -
41
+ Rule sol88 1988 only - Jan 27 12:12:40s -0:12:40 -
42
+ Rule sol88 1988 only - Jan 28 12:12:50s -0:12:50 -
43
+ Rule sol88 1988 only - Jan 29 12:13:00s -0:13:00 -
44
+ Rule sol88 1988 only - Jan 30 12:13:10s -0:13:10 -
45
+ Rule sol88 1988 only - Jan 31 12:13:20s -0:13:20 -
46
+ Rule sol88 1988 only - Feb 1 12:13:30s -0:13:30 -
47
+ Rule sol88 1988 only - Feb 2 12:13:40s -0:13:40 -
48
+ Rule sol88 1988 only - Feb 3 12:13:45s -0:13:45 -
49
+ Rule sol88 1988 only - Feb 4 12:13:55s -0:13:55 -
50
+ Rule sol88 1988 only - Feb 5 12:14:00s -0:14:00 -
51
+ Rule sol88 1988 only - Feb 6 12:14:05s -0:14:05 -
52
+ Rule sol88 1988 only - Feb 7 12:14:10s -0:14:10 -
53
+ Rule sol88 1988 only - Feb 8 12:14:10s -0:14:10 -
54
+ Rule sol88 1988 only - Feb 9 12:14:15s -0:14:15 -
55
+ Rule sol88 1988 only - Feb 10 12:14:15s -0:14:15 -
56
+ Rule sol88 1988 only - Feb 11 12:14:15s -0:14:15 -
57
+ Rule sol88 1988 only - Feb 12 12:14:15s -0:14:15 -
58
+ Rule sol88 1988 only - Feb 13 12:14:15s -0:14:15 -
59
+ Rule sol88 1988 only - Feb 14 12:14:15s -0:14:15 -
60
+ Rule sol88 1988 only - Feb 15 12:14:10s -0:14:10 -
61
+ Rule sol88 1988 only - Feb 16 12:14:10s -0:14:10 -
62
+ Rule sol88 1988 only - Feb 17 12:14:05s -0:14:05 -
63
+ Rule sol88 1988 only - Feb 18 12:14:00s -0:14:00 -
64
+ Rule sol88 1988 only - Feb 19 12:13:55s -0:13:55 -
65
+ Rule sol88 1988 only - Feb 20 12:13:50s -0:13:50 -
66
+ Rule sol88 1988 only - Feb 21 12:13:45s -0:13:45 -
67
+ Rule sol88 1988 only - Feb 22 12:13:40s -0:13:40 -
68
+ Rule sol88 1988 only - Feb 23 12:13:30s -0:13:30 -
69
+ Rule sol88 1988 only - Feb 24 12:13:20s -0:13:20 -
70
+ Rule sol88 1988 only - Feb 25 12:13:15s -0:13:15 -
71
+ Rule sol88 1988 only - Feb 26 12:13:05s -0:13:05 -
72
+ Rule sol88 1988 only - Feb 27 12:12:55s -0:12:55 -
73
+ Rule sol88 1988 only - Feb 28 12:12:45s -0:12:45 -
74
+ Rule sol88 1988 only - Feb 29 12:12:30s -0:12:30 -
75
+ Rule sol88 1988 only - Mar 1 12:12:20s -0:12:20 -
76
+ Rule sol88 1988 only - Mar 2 12:12:10s -0:12:10 -
77
+ Rule sol88 1988 only - Mar 3 12:11:55s -0:11:55 -
78
+ Rule sol88 1988 only - Mar 4 12:11:45s -0:11:45 -
79
+ Rule sol88 1988 only - Mar 5 12:11:30s -0:11:30 -
80
+ Rule sol88 1988 only - Mar 6 12:11:15s -0:11:15 -
81
+ Rule sol88 1988 only - Mar 7 12:11:00s -0:11:00 -
82
+ Rule sol88 1988 only - Mar 8 12:10:45s -0:10:45 -
83
+ Rule sol88 1988 only - Mar 9 12:10:30s -0:10:30 -
84
+ Rule sol88 1988 only - Mar 10 12:10:15s -0:10:15 -
85
+ Rule sol88 1988 only - Mar 11 12:10:00s -0:10:00 -
86
+ Rule sol88 1988 only - Mar 12 12:09:45s -0:09:45 -
87
+ Rule sol88 1988 only - Mar 13 12:09:30s -0:09:30 -
88
+ Rule sol88 1988 only - Mar 14 12:09:10s -0:09:10 -
89
+ Rule sol88 1988 only - Mar 15 12:08:55s -0:08:55 -
90
+ Rule sol88 1988 only - Mar 16 12:08:40s -0:08:40 -
91
+ Rule sol88 1988 only - Mar 17 12:08:20s -0:08:20 -
92
+ Rule sol88 1988 only - Mar 18 12:08:05s -0:08:05 -
93
+ Rule sol88 1988 only - Mar 19 12:07:45s -0:07:45 -
94
+ Rule sol88 1988 only - Mar 20 12:07:30s -0:07:30 -
95
+ Rule sol88 1988 only - Mar 21 12:07:10s -0:07:10 -
96
+ Rule sol88 1988 only - Mar 22 12:06:50s -0:06:50 -
97
+ Rule sol88 1988 only - Mar 23 12:06:35s -0:06:35 -
98
+ Rule sol88 1988 only - Mar 24 12:06:15s -0:06:15 -
99
+ Rule sol88 1988 only - Mar 25 12:06:00s -0:06:00 -
100
+ Rule sol88 1988 only - Mar 26 12:05:40s -0:05:40 -
101
+ Rule sol88 1988 only - Mar 27 12:05:20s -0:05:20 -
102
+ Rule sol88 1988 only - Mar 28 12:05:05s -0:05:05 -
103
+ Rule sol88 1988 only - Mar 29 12:04:45s -0:04:45 -
104
+ Rule sol88 1988 only - Mar 30 12:04:25s -0:04:25 -
105
+ Rule sol88 1988 only - Mar 31 12:04:10s -0:04:10 -
106
+ Rule sol88 1988 only - Apr 1 12:03:50s -0:03:50 -
107
+ Rule sol88 1988 only - Apr 2 12:03:35s -0:03:35 -
108
+ Rule sol88 1988 only - Apr 3 12:03:15s -0:03:15 -
109
+ Rule sol88 1988 only - Apr 4 12:03:00s -0:03:00 -
110
+ Rule sol88 1988 only - Apr 5 12:02:40s -0:02:40 -
111
+ Rule sol88 1988 only - Apr 6 12:02:25s -0:02:25 -
112
+ Rule sol88 1988 only - Apr 7 12:02:05s -0:02:05 -
113
+ Rule sol88 1988 only - Apr 8 12:01:50s -0:01:50 -
114
+ Rule sol88 1988 only - Apr 9 12:01:35s -0:01:35 -
115
+ Rule sol88 1988 only - Apr 10 12:01:15s -0:01:15 -
116
+ Rule sol88 1988 only - Apr 11 12:01:00s -0:01:00 -
117
+ Rule sol88 1988 only - Apr 12 12:00:45s -0:00:45 -
118
+ Rule sol88 1988 only - Apr 13 12:00:30s -0:00:30 -
119
+ Rule sol88 1988 only - Apr 14 12:00:15s -0:00:15 -
120
+ Rule sol88 1988 only - Apr 15 12:00:00s 0:00:00 -
121
+ Rule sol88 1988 only - Apr 16 11:59:45s 0:00:15 -
122
+ Rule sol88 1988 only - Apr 17 11:59:30s 0:00:30 -
123
+ Rule sol88 1988 only - Apr 18 11:59:20s 0:00:40 -
124
+ Rule sol88 1988 only - Apr 19 11:59:05s 0:00:55 -
125
+ Rule sol88 1988 only - Apr 20 11:58:55s 0:01:05 -
126
+ Rule sol88 1988 only - Apr 21 11:58:40s 0:01:20 -
127
+ Rule sol88 1988 only - Apr 22 11:58:30s 0:01:30 -
128
+ Rule sol88 1988 only - Apr 23 11:58:15s 0:01:45 -
129
+ Rule sol88 1988 only - Apr 24 11:58:05s 0:01:55 -
130
+ Rule sol88 1988 only - Apr 25 11:57:55s 0:02:05 -
131
+ Rule sol88 1988 only - Apr 26 11:57:45s 0:02:15 -
132
+ Rule sol88 1988 only - Apr 27 11:57:35s 0:02:25 -
133
+ Rule sol88 1988 only - Apr 28 11:57:30s 0:02:30 -
134
+ Rule sol88 1988 only - Apr 29 11:57:20s 0:02:40 -
135
+ Rule sol88 1988 only - Apr 30 11:57:10s 0:02:50 -
136
+ Rule sol88 1988 only - May 1 11:57:05s 0:02:55 -
137
+ Rule sol88 1988 only - May 2 11:56:55s 0:03:05 -
138
+ Rule sol88 1988 only - May 3 11:56:50s 0:03:10 -
139
+ Rule sol88 1988 only - May 4 11:56:45s 0:03:15 -
140
+ Rule sol88 1988 only - May 5 11:56:40s 0:03:20 -
141
+ Rule sol88 1988 only - May 6 11:56:35s 0:03:25 -
142
+ Rule sol88 1988 only - May 7 11:56:30s 0:03:30 -
143
+ Rule sol88 1988 only - May 8 11:56:25s 0:03:35 -
144
+ Rule sol88 1988 only - May 9 11:56:25s 0:03:35 -
145
+ Rule sol88 1988 only - May 10 11:56:20s 0:03:40 -
146
+ Rule sol88 1988 only - May 11 11:56:20s 0:03:40 -
147
+ Rule sol88 1988 only - May 12 11:56:20s 0:03:40 -
148
+ Rule sol88 1988 only - May 13 11:56:20s 0:03:40 -
149
+ Rule sol88 1988 only - May 14 11:56:20s 0:03:40 -
150
+ Rule sol88 1988 only - May 15 11:56:20s 0:03:40 -
151
+ Rule sol88 1988 only - May 16 11:56:20s 0:03:40 -
152
+ Rule sol88 1988 only - May 17 11:56:20s 0:03:40 -
153
+ Rule sol88 1988 only - May 18 11:56:25s 0:03:35 -
154
+ Rule sol88 1988 only - May 19 11:56:25s 0:03:35 -
155
+ Rule sol88 1988 only - May 20 11:56:30s 0:03:30 -
156
+ Rule sol88 1988 only - May 21 11:56:35s 0:03:25 -
157
+ Rule sol88 1988 only - May 22 11:56:40s 0:03:20 -
158
+ Rule sol88 1988 only - May 23 11:56:45s 0:03:15 -
159
+ Rule sol88 1988 only - May 24 11:56:50s 0:03:10 -
160
+ Rule sol88 1988 only - May 25 11:56:55s 0:03:05 -
161
+ Rule sol88 1988 only - May 26 11:57:00s 0:03:00 -
162
+ Rule sol88 1988 only - May 27 11:57:05s 0:02:55 -
163
+ Rule sol88 1988 only - May 28 11:57:15s 0:02:45 -
164
+ Rule sol88 1988 only - May 29 11:57:20s 0:02:40 -
165
+ Rule sol88 1988 only - May 30 11:57:30s 0:02:30 -
166
+ Rule sol88 1988 only - May 31 11:57:40s 0:02:20 -
167
+ Rule sol88 1988 only - Jun 1 11:57:50s 0:02:10 -
168
+ Rule sol88 1988 only - Jun 2 11:57:55s 0:02:05 -
169
+ Rule sol88 1988 only - Jun 3 11:58:05s 0:01:55 -
170
+ Rule sol88 1988 only - Jun 4 11:58:15s 0:01:45 -
171
+ Rule sol88 1988 only - Jun 5 11:58:30s 0:01:30 -
172
+ Rule sol88 1988 only - Jun 6 11:58:40s 0:01:20 -
173
+ Rule sol88 1988 only - Jun 7 11:58:50s 0:01:10 -
174
+ Rule sol88 1988 only - Jun 8 11:59:00s 0:01:00 -
175
+ Rule sol88 1988 only - Jun 9 11:59:15s 0:00:45 -
176
+ Rule sol88 1988 only - Jun 10 11:59:25s 0:00:35 -
177
+ Rule sol88 1988 only - Jun 11 11:59:35s 0:00:25 -
178
+ Rule sol88 1988 only - Jun 12 11:59:50s 0:00:10 -
179
+ Rule sol88 1988 only - Jun 13 12:00:00s 0:00:00 -
180
+ Rule sol88 1988 only - Jun 14 12:00:15s -0:00:15 -
181
+ Rule sol88 1988 only - Jun 15 12:00:25s -0:00:25 -
182
+ Rule sol88 1988 only - Jun 16 12:00:40s -0:00:40 -
183
+ Rule sol88 1988 only - Jun 17 12:00:55s -0:00:55 -
184
+ Rule sol88 1988 only - Jun 18 12:01:05s -0:01:05 -
185
+ Rule sol88 1988 only - Jun 19 12:01:20s -0:01:20 -
186
+ Rule sol88 1988 only - Jun 20 12:01:30s -0:01:30 -
187
+ Rule sol88 1988 only - Jun 21 12:01:45s -0:01:45 -
188
+ Rule sol88 1988 only - Jun 22 12:02:00s -0:02:00 -
189
+ Rule sol88 1988 only - Jun 23 12:02:10s -0:02:10 -
190
+ Rule sol88 1988 only - Jun 24 12:02:25s -0:02:25 -
191
+ Rule sol88 1988 only - Jun 25 12:02:35s -0:02:35 -
192
+ Rule sol88 1988 only - Jun 26 12:02:50s -0:02:50 -
193
+ Rule sol88 1988 only - Jun 27 12:03:00s -0:03:00 -
194
+ Rule sol88 1988 only - Jun 28 12:03:15s -0:03:15 -
195
+ Rule sol88 1988 only - Jun 29 12:03:25s -0:03:25 -
196
+ Rule sol88 1988 only - Jun 30 12:03:40s -0:03:40 -
197
+ Rule sol88 1988 only - Jul 1 12:03:50s -0:03:50 -
198
+ Rule sol88 1988 only - Jul 2 12:04:00s -0:04:00 -
199
+ Rule sol88 1988 only - Jul 3 12:04:10s -0:04:10 -
200
+ Rule sol88 1988 only - Jul 4 12:04:25s -0:04:25 -
201
+ Rule sol88 1988 only - Jul 5 12:04:35s -0:04:35 -
202
+ Rule sol88 1988 only - Jul 6 12:04:45s -0:04:45 -
203
+ Rule sol88 1988 only - Jul 7 12:04:55s -0:04:55 -
204
+ Rule sol88 1988 only - Jul 8 12:05:05s -0:05:05 -
205
+ Rule sol88 1988 only - Jul 9 12:05:10s -0:05:10 -
206
+ Rule sol88 1988 only - Jul 10 12:05:20s -0:05:20 -
207
+ Rule sol88 1988 only - Jul 11 12:05:30s -0:05:30 -
208
+ Rule sol88 1988 only - Jul 12 12:05:35s -0:05:35 -
209
+ Rule sol88 1988 only - Jul 13 12:05:45s -0:05:45 -
210
+ Rule sol88 1988 only - Jul 14 12:05:50s -0:05:50 -
211
+ Rule sol88 1988 only - Jul 15 12:05:55s -0:05:55 -
212
+ Rule sol88 1988 only - Jul 16 12:06:00s -0:06:00 -
213
+ Rule sol88 1988 only - Jul 17 12:06:05s -0:06:05 -
214
+ Rule sol88 1988 only - Jul 18 12:06:10s -0:06:10 -
215
+ Rule sol88 1988 only - Jul 19 12:06:15s -0:06:15 -
216
+ Rule sol88 1988 only - Jul 20 12:06:20s -0:06:20 -
217
+ Rule sol88 1988 only - Jul 21 12:06:25s -0:06:25 -
218
+ Rule sol88 1988 only - Jul 22 12:06:25s -0:06:25 -
219
+ Rule sol88 1988 only - Jul 23 12:06:25s -0:06:25 -
220
+ Rule sol88 1988 only - Jul 24 12:06:30s -0:06:30 -
221
+ Rule sol88 1988 only - Jul 25 12:06:30s -0:06:30 -
222
+ Rule sol88 1988 only - Jul 26 12:06:30s -0:06:30 -
223
+ Rule sol88 1988 only - Jul 27 12:06:30s -0:06:30 -
224
+ Rule sol88 1988 only - Jul 28 12:06:30s -0:06:30 -
225
+ Rule sol88 1988 only - Jul 29 12:06:25s -0:06:25 -
226
+ Rule sol88 1988 only - Jul 30 12:06:25s -0:06:25 -
227
+ Rule sol88 1988 only - Jul 31 12:06:20s -0:06:20 -
228
+ Rule sol88 1988 only - Aug 1 12:06:15s -0:06:15 -
229
+ Rule sol88 1988 only - Aug 2 12:06:15s -0:06:15 -
230
+ Rule sol88 1988 only - Aug 3 12:06:10s -0:06:10 -
231
+ Rule sol88 1988 only - Aug 4 12:06:05s -0:06:05 -
232
+ Rule sol88 1988 only - Aug 5 12:05:55s -0:05:55 -
233
+ Rule sol88 1988 only - Aug 6 12:05:50s -0:05:50 -
234
+ Rule sol88 1988 only - Aug 7 12:05:45s -0:05:45 -
235
+ Rule sol88 1988 only - Aug 8 12:05:35s -0:05:35 -
236
+ Rule sol88 1988 only - Aug 9 12:05:25s -0:05:25 -
237
+ Rule sol88 1988 only - Aug 10 12:05:20s -0:05:20 -
238
+ Rule sol88 1988 only - Aug 11 12:05:10s -0:05:10 -
239
+ Rule sol88 1988 only - Aug 12 12:05:00s -0:05:00 -
240
+ Rule sol88 1988 only - Aug 13 12:04:50s -0:04:50 -
241
+ Rule sol88 1988 only - Aug 14 12:04:35s -0:04:35 -
242
+ Rule sol88 1988 only - Aug 15 12:04:25s -0:04:25 -
243
+ Rule sol88 1988 only - Aug 16 12:04:15s -0:04:15 -
244
+ Rule sol88 1988 only - Aug 17 12:04:00s -0:04:00 -
245
+ Rule sol88 1988 only - Aug 18 12:03:50s -0:03:50 -
246
+ Rule sol88 1988 only - Aug 19 12:03:35s -0:03:35 -
247
+ Rule sol88 1988 only - Aug 20 12:03:20s -0:03:20 -
248
+ Rule sol88 1988 only - Aug 21 12:03:05s -0:03:05 -
249
+ Rule sol88 1988 only - Aug 22 12:02:50s -0:02:50 -
250
+ Rule sol88 1988 only - Aug 23 12:02:35s -0:02:35 -
251
+ Rule sol88 1988 only - Aug 24 12:02:20s -0:02:20 -
252
+ Rule sol88 1988 only - Aug 25 12:02:00s -0:02:00 -
253
+ Rule sol88 1988 only - Aug 26 12:01:45s -0:01:45 -
254
+ Rule sol88 1988 only - Aug 27 12:01:30s -0:01:30 -
255
+ Rule sol88 1988 only - Aug 28 12:01:10s -0:01:10 -
256
+ Rule sol88 1988 only - Aug 29 12:00:50s -0:00:50 -
257
+ Rule sol88 1988 only - Aug 30 12:00:35s -0:00:35 -
258
+ Rule sol88 1988 only - Aug 31 12:00:15s -0:00:15 -
259
+ Rule sol88 1988 only - Sep 1 11:59:55s 0:00:05 -
260
+ Rule sol88 1988 only - Sep 2 11:59:35s 0:00:25 -
261
+ Rule sol88 1988 only - Sep 3 11:59:20s 0:00:40 -
262
+ Rule sol88 1988 only - Sep 4 11:59:00s 0:01:00 -
263
+ Rule sol88 1988 only - Sep 5 11:58:40s 0:01:20 -
264
+ Rule sol88 1988 only - Sep 6 11:58:20s 0:01:40 -
265
+ Rule sol88 1988 only - Sep 7 11:58:00s 0:02:00 -
266
+ Rule sol88 1988 only - Sep 8 11:57:35s 0:02:25 -
267
+ Rule sol88 1988 only - Sep 9 11:57:15s 0:02:45 -
268
+ Rule sol88 1988 only - Sep 10 11:56:55s 0:03:05 -
269
+ Rule sol88 1988 only - Sep 11 11:56:35s 0:03:25 -
270
+ Rule sol88 1988 only - Sep 12 11:56:15s 0:03:45 -
271
+ Rule sol88 1988 only - Sep 13 11:55:50s 0:04:10 -
272
+ Rule sol88 1988 only - Sep 14 11:55:30s 0:04:30 -
273
+ Rule sol88 1988 only - Sep 15 11:55:10s 0:04:50 -
274
+ Rule sol88 1988 only - Sep 16 11:54:50s 0:05:10 -
275
+ Rule sol88 1988 only - Sep 17 11:54:25s 0:05:35 -
276
+ Rule sol88 1988 only - Sep 18 11:54:05s 0:05:55 -
277
+ Rule sol88 1988 only - Sep 19 11:53:45s 0:06:15 -
278
+ Rule sol88 1988 only - Sep 20 11:53:25s 0:06:35 -
279
+ Rule sol88 1988 only - Sep 21 11:53:00s 0:07:00 -
280
+ Rule sol88 1988 only - Sep 22 11:52:40s 0:07:20 -
281
+ Rule sol88 1988 only - Sep 23 11:52:20s 0:07:40 -
282
+ Rule sol88 1988 only - Sep 24 11:52:00s 0:08:00 -
283
+ Rule sol88 1988 only - Sep 25 11:51:40s 0:08:20 -
284
+ Rule sol88 1988 only - Sep 26 11:51:15s 0:08:45 -
285
+ Rule sol88 1988 only - Sep 27 11:50:55s 0:09:05 -
286
+ Rule sol88 1988 only - Sep 28 11:50:35s 0:09:25 -
287
+ Rule sol88 1988 only - Sep 29 11:50:15s 0:09:45 -
288
+ Rule sol88 1988 only - Sep 30 11:49:55s 0:10:05 -
289
+ Rule sol88 1988 only - Oct 1 11:49:35s 0:10:25 -
290
+ Rule sol88 1988 only - Oct 2 11:49:20s 0:10:40 -
291
+ Rule sol88 1988 only - Oct 3 11:49:00s 0:11:00 -
292
+ Rule sol88 1988 only - Oct 4 11:48:40s 0:11:20 -
293
+ Rule sol88 1988 only - Oct 5 11:48:25s 0:11:35 -
294
+ Rule sol88 1988 only - Oct 6 11:48:05s 0:11:55 -
295
+ Rule sol88 1988 only - Oct 7 11:47:50s 0:12:10 -
296
+ Rule sol88 1988 only - Oct 8 11:47:30s 0:12:30 -
297
+ Rule sol88 1988 only - Oct 9 11:47:15s 0:12:45 -
298
+ Rule sol88 1988 only - Oct 10 11:47:00s 0:13:00 -
299
+ Rule sol88 1988 only - Oct 11 11:46:45s 0:13:15 -
300
+ Rule sol88 1988 only - Oct 12 11:46:30s 0:13:30 -
301
+ Rule sol88 1988 only - Oct 13 11:46:15s 0:13:45 -
302
+ Rule sol88 1988 only - Oct 14 11:46:00s 0:14:00 -
303
+ Rule sol88 1988 only - Oct 15 11:45:45s 0:14:15 -
304
+ Rule sol88 1988 only - Oct 16 11:45:35s 0:14:25 -
305
+ Rule sol88 1988 only - Oct 17 11:45:20s 0:14:40 -
306
+ Rule sol88 1988 only - Oct 18 11:45:10s 0:14:50 -
307
+ Rule sol88 1988 only - Oct 19 11:45:00s 0:15:00 -
308
+ Rule sol88 1988 only - Oct 20 11:44:45s 0:15:15 -
309
+ Rule sol88 1988 only - Oct 21 11:44:40s 0:15:20 -
310
+ Rule sol88 1988 only - Oct 22 11:44:30s 0:15:30 -
311
+ Rule sol88 1988 only - Oct 23 11:44:20s 0:15:40 -
312
+ Rule sol88 1988 only - Oct 24 11:44:10s 0:15:50 -
313
+ Rule sol88 1988 only - Oct 25 11:44:05s 0:15:55 -
314
+ Rule sol88 1988 only - Oct 26 11:44:00s 0:16:00 -
315
+ Rule sol88 1988 only - Oct 27 11:43:55s 0:16:05 -
316
+ Rule sol88 1988 only - Oct 28 11:43:50s 0:16:10 -
317
+ Rule sol88 1988 only - Oct 29 11:43:45s 0:16:15 -
318
+ Rule sol88 1988 only - Oct 30 11:43:40s 0:16:20 -
319
+ Rule sol88 1988 only - Oct 31 11:43:40s 0:16:20 -
320
+ Rule sol88 1988 only - Nov 1 11:43:35s 0:16:25 -
321
+ Rule sol88 1988 only - Nov 2 11:43:35s 0:16:25 -
322
+ Rule sol88 1988 only - Nov 3 11:43:35s 0:16:25 -
323
+ Rule sol88 1988 only - Nov 4 11:43:35s 0:16:25 -
324
+ Rule sol88 1988 only - Nov 5 11:43:40s 0:16:20 -
325
+ Rule sol88 1988 only - Nov 6 11:43:40s 0:16:20 -
326
+ Rule sol88 1988 only - Nov 7 11:43:45s 0:16:15 -
327
+ Rule sol88 1988 only - Nov 8 11:43:45s 0:16:15 -
328
+ Rule sol88 1988 only - Nov 9 11:43:50s 0:16:10 -
329
+ Rule sol88 1988 only - Nov 10 11:44:00s 0:16:00 -
330
+ Rule sol88 1988 only - Nov 11 11:44:05s 0:15:55 -
331
+ Rule sol88 1988 only - Nov 12 11:44:10s 0:15:50 -
332
+ Rule sol88 1988 only - Nov 13 11:44:20s 0:15:40 -
333
+ Rule sol88 1988 only - Nov 14 11:44:30s 0:15:30 -
334
+ Rule sol88 1988 only - Nov 15 11:44:40s 0:15:20 -
335
+ Rule sol88 1988 only - Nov 16 11:44:50s 0:15:10 -
336
+ Rule sol88 1988 only - Nov 17 11:45:00s 0:15:00 -
337
+ Rule sol88 1988 only - Nov 18 11:45:15s 0:14:45 -
338
+ Rule sol88 1988 only - Nov 19 11:45:25s 0:14:35 -
339
+ Rule sol88 1988 only - Nov 20 11:45:40s 0:14:20 -
340
+ Rule sol88 1988 only - Nov 21 11:45:55s 0:14:05 -
341
+ Rule sol88 1988 only - Nov 22 11:46:10s 0:13:50 -
342
+ Rule sol88 1988 only - Nov 23 11:46:30s 0:13:30 -
343
+ Rule sol88 1988 only - Nov 24 11:46:45s 0:13:15 -
344
+ Rule sol88 1988 only - Nov 25 11:47:05s 0:12:55 -
345
+ Rule sol88 1988 only - Nov 26 11:47:20s 0:12:40 -
346
+ Rule sol88 1988 only - Nov 27 11:47:40s 0:12:20 -
347
+ Rule sol88 1988 only - Nov 28 11:48:00s 0:12:00 -
348
+ Rule sol88 1988 only - Nov 29 11:48:25s 0:11:35 -
349
+ Rule sol88 1988 only - Nov 30 11:48:45s 0:11:15 -
350
+ Rule sol88 1988 only - Dec 1 11:49:05s 0:10:55 -
351
+ Rule sol88 1988 only - Dec 2 11:49:30s 0:10:30 -
352
+ Rule sol88 1988 only - Dec 3 11:49:55s 0:10:05 -
353
+ Rule sol88 1988 only - Dec 4 11:50:15s 0:09:45 -
354
+ Rule sol88 1988 only - Dec 5 11:50:40s 0:09:20 -
355
+ Rule sol88 1988 only - Dec 6 11:51:05s 0:08:55 -
356
+ Rule sol88 1988 only - Dec 7 11:51:35s 0:08:25 -
357
+ Rule sol88 1988 only - Dec 8 11:52:00s 0:08:00 -
358
+ Rule sol88 1988 only - Dec 9 11:52:25s 0:07:35 -
359
+ Rule sol88 1988 only - Dec 10 11:52:55s 0:07:05 -
360
+ Rule sol88 1988 only - Dec 11 11:53:20s 0:06:40 -
361
+ Rule sol88 1988 only - Dec 12 11:53:50s 0:06:10 -
362
+ Rule sol88 1988 only - Dec 13 11:54:15s 0:05:45 -
363
+ Rule sol88 1988 only - Dec 14 11:54:45s 0:05:15 -
364
+ Rule sol88 1988 only - Dec 15 11:55:15s 0:04:45 -
365
+ Rule sol88 1988 only - Dec 16 11:55:45s 0:04:15 -
366
+ Rule sol88 1988 only - Dec 17 11:56:15s 0:03:45 -
367
+ Rule sol88 1988 only - Dec 18 11:56:40s 0:03:20 -
368
+ Rule sol88 1988 only - Dec 19 11:57:10s 0:02:50 -
369
+ Rule sol88 1988 only - Dec 20 11:57:40s 0:02:20 -
370
+ Rule sol88 1988 only - Dec 21 11:58:10s 0:01:50 -
371
+ Rule sol88 1988 only - Dec 22 11:58:40s 0:01:20 -
372
+ Rule sol88 1988 only - Dec 23 11:59:10s 0:00:50 -
373
+ Rule sol88 1988 only - Dec 24 11:59:40s 0:00:20 -
374
+ Rule sol88 1988 only - Dec 25 12:00:10s -0:00:10 -
375
+ Rule sol88 1988 only - Dec 26 12:00:40s -0:00:40 -
376
+ Rule sol88 1988 only - Dec 27 12:01:10s -0:01:10 -
377
+ Rule sol88 1988 only - Dec 28 12:01:40s -0:01:40 -
378
+ Rule sol88 1988 only - Dec 29 12:02:10s -0:02:10 -
379
+ Rule sol88 1988 only - Dec 30 12:02:35s -0:02:35 -
380
+ Rule sol88 1988 only - Dec 31 12:03:05s -0:03:05 -
381
+
382
+ # Riyadh is at about 46 degrees 46 minutes East: 3 hrs, 7 mins, 4 secs
383
+ # Before and after 1988, we'll operate on local mean solar time.
384
+
385
+ # Zone NAME GMTOFF RULES/SAVE FORMAT [UNTIL]
386
+ Zone Asia/Riyadh88 3:07:04 - zzz 1988
387
+ 3:07:04 sol88 zzz 1989
388
+ 3:07:04 - zzz
389
+ # For backward compatibility...
390
+ Link Asia/Riyadh88 Mideast/Riyadh88