@opentiny/vue-renderless 3.1.0-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (397) hide show
  1. package/action-sheet/index.js +28 -0
  2. package/action-sheet/vue.js +29 -0
  3. package/alert/index.js +23 -0
  4. package/alert/vue.js +37 -0
  5. package/autocomplete/index.js +175 -0
  6. package/autocomplete/vue.js +171 -0
  7. package/avatar/index.js +29 -0
  8. package/avatar/vue.js +24 -0
  9. package/badge/index.js +16 -0
  10. package/badge/vue.js +30 -0
  11. package/breadcrumb/vue.js +4 -0
  12. package/breadcrumb-item/vue.js +24 -0
  13. package/bulletin-board/index.js +21 -0
  14. package/bulletin-board/vue.js +36 -0
  15. package/button/index.js +19 -0
  16. package/button/vue.js +43 -0
  17. package/button-group/index.js +25 -0
  18. package/button-group/vue.js +51 -0
  19. package/calendar/index.js +279 -0
  20. package/calendar/vue.js +124 -0
  21. package/card-template/index.js +39 -0
  22. package/card-template/vue.js +34 -0
  23. package/carousel/index.js +206 -0
  24. package/carousel/vue.js +222 -0
  25. package/carousel-item/index.js +93 -0
  26. package/carousel-item/vue.js +57 -0
  27. package/cascader/index.js +511 -0
  28. package/cascader/vue.js +342 -0
  29. package/cascader-menu/index.js +41 -0
  30. package/cascader-menu/vue.js +36 -0
  31. package/cascader-node/index.js +63 -0
  32. package/cascader-node/vue.js +62 -0
  33. package/cascader-panel/index.js +359 -0
  34. package/cascader-panel/node.js +199 -0
  35. package/cascader-panel/store.js +80 -0
  36. package/cascader-panel/vue.js +217 -0
  37. package/checkbox/index.js +145 -0
  38. package/checkbox/vue.js +139 -0
  39. package/checkbox-button/index.js +102 -0
  40. package/checkbox-button/vue.js +150 -0
  41. package/checkbox-group/index.js +12 -0
  42. package/checkbox-group/vue.js +33 -0
  43. package/col/index.js +132 -0
  44. package/col/vue.js +34 -0
  45. package/collapse/index.js +45 -0
  46. package/collapse/vue.js +35 -0
  47. package/collapse-item/index.js +38 -0
  48. package/collapse-item/vue.js +48 -0
  49. package/common/array.js +120 -0
  50. package/common/bigInt.js +352 -0
  51. package/common/browser.js +69 -0
  52. package/common/dataset/index.js +135 -0
  53. package/common/date.js +352 -0
  54. package/common/decimal.js +203 -0
  55. package/common/deps/ResizeObserver.js +474 -0
  56. package/common/deps/after-leave.js +25 -0
  57. package/common/deps/clickoutside.js +61 -0
  58. package/common/deps/date-util.js +262 -0
  59. package/common/deps/date.js +308 -0
  60. package/common/deps/debounce.js +4 -0
  61. package/common/deps/dom.js +190 -0
  62. package/common/deps/fullscreen/apis.js +157 -0
  63. package/common/deps/fullscreen/screenfull.js +106 -0
  64. package/common/deps/letter-only.js +15 -0
  65. package/common/deps/memorize.js +149 -0
  66. package/common/deps/number-only.js +16 -0
  67. package/common/deps/popper.js +713 -0
  68. package/common/deps/popup-manager.js +179 -0
  69. package/common/deps/repeat-click.js +24 -0
  70. package/common/deps/requestAnimationFrame.js +25 -0
  71. package/common/deps/resize-event.js +29 -0
  72. package/common/deps/scroll-into-view.js +29 -0
  73. package/common/deps/scrollbar-width.js +25 -0
  74. package/common/deps/throttle.js +34 -0
  75. package/common/deps/touch.js +33 -0
  76. package/common/deps/tree-model/node.js +586 -0
  77. package/common/deps/tree-model/tree-store.js +377 -0
  78. package/common/deps/tree-model/util.js +14 -0
  79. package/common/deps/upload-ajax.js +71 -0
  80. package/common/deps/vue-emitter.js +30 -0
  81. package/common/deps/vue-popper.js +291 -0
  82. package/common/deps/vue-popup.js +211 -0
  83. package/common/event.js +17 -0
  84. package/common/index.js +288 -0
  85. package/common/object.js +228 -0
  86. package/common/runtime.js +52 -0
  87. package/common/string.js +446 -0
  88. package/common/type.js +65 -0
  89. package/common/validate/index.js +6 -0
  90. package/common/validate/messages.js +68 -0
  91. package/common/validate/rules/enum.js +8 -0
  92. package/common/validate/rules/index.js +14 -0
  93. package/common/validate/rules/pattern.js +16 -0
  94. package/common/validate/rules/range.js +62 -0
  95. package/common/validate/rules/required.js +13 -0
  96. package/common/validate/rules/type.js +110 -0
  97. package/common/validate/rules/whitespace.js +6 -0
  98. package/common/validate/schema.js +323 -0
  99. package/common/validate/util.js +198 -0
  100. package/common/validate/validations/array.js +25 -0
  101. package/common/validate/validations/date.js +35 -0
  102. package/common/validate/validations/enum.js +24 -0
  103. package/common/validate/validations/float.js +24 -0
  104. package/common/validate/validations/index.js +42 -0
  105. package/common/validate/validations/integer.js +24 -0
  106. package/common/validate/validations/method.js +23 -0
  107. package/common/validate/validations/number.js +27 -0
  108. package/common/validate/validations/pattern.js +23 -0
  109. package/common/validate/validations/required.js +15 -0
  110. package/common/validate/validations/string.js +29 -0
  111. package/common/validate/validations/type.js +25 -0
  112. package/common/xss.js +325 -0
  113. package/container/index.js +110 -0
  114. package/container/vue.js +63 -0
  115. package/credit-card/index.js +107 -0
  116. package/credit-card/vue.js +117 -0
  117. package/credit-card-form/index.js +143 -0
  118. package/credit-card-form/vue.js +150 -0
  119. package/crop/index.js +297 -0
  120. package/crop/vue.js +191 -0
  121. package/date-panel/index.js +584 -0
  122. package/date-panel/vue.js +319 -0
  123. package/date-picker/index.js +301 -0
  124. package/date-picker/vue.js +169 -0
  125. package/date-range/index.js +463 -0
  126. package/date-range/vue.js +297 -0
  127. package/date-table/index.js +457 -0
  128. package/date-table/vue.js +151 -0
  129. package/detail-page/index.js +135 -0
  130. package/detail-page/vue.js +145 -0
  131. package/dialog-box/index.js +268 -0
  132. package/dialog-box/vue.js +226 -0
  133. package/drop-times/index.js +23 -0
  134. package/drop-times/vue.js +28 -0
  135. package/dropdown/index.js +259 -0
  136. package/dropdown/vue.js +107 -0
  137. package/dropdown-item/index.js +155 -0
  138. package/dropdown-item/vue.js +124 -0
  139. package/dropdown-menu/index.js +148 -0
  140. package/dropdown-menu/vue.js +44 -0
  141. package/exception/index.js +13 -0
  142. package/exception/vue.js +25 -0
  143. package/fall-menu/index.js +121 -0
  144. package/fall-menu/vue.js +90 -0
  145. package/file-upload/index.js +1940 -0
  146. package/file-upload/vue.js +458 -0
  147. package/floatbar/index.js +10 -0
  148. package/floatbar/vue.js +17 -0
  149. package/form/index.js +186 -0
  150. package/form/vue.js +69 -0
  151. package/form-item/index.js +364 -0
  152. package/form-item/vue.js +210 -0
  153. package/fullscreen/index.js +138 -0
  154. package/fullscreen/vue.js +77 -0
  155. package/grid/core/index.js +3 -0
  156. package/grid/core/interceptor.js +38 -0
  157. package/grid/core/storeMap.js +19 -0
  158. package/grid/plugins/export.js +169 -0
  159. package/grid/plugins/exportExcel.js +749 -0
  160. package/grid/plugins/header.js +58 -0
  161. package/grid/plugins/resize.js +82 -0
  162. package/grid/static/array/arrayEach.js +12 -0
  163. package/grid/static/array/arrayIndexOf.js +11 -0
  164. package/grid/static/array/eachTree.js +32 -0
  165. package/grid/static/array/every.js +2 -0
  166. package/grid/static/array/filterTree.js +16 -0
  167. package/grid/static/array/find.js +3 -0
  168. package/grid/static/array/findTree.js +46 -0
  169. package/grid/static/array/helperCreateIterateHandle.js +59 -0
  170. package/grid/static/array/helperCreateTreeFunc.js +18 -0
  171. package/grid/static/array/includes.js +5 -0
  172. package/grid/static/array/lastArrayEach.js +6 -0
  173. package/grid/static/array/map.js +23 -0
  174. package/grid/static/array/mapTree.js +33 -0
  175. package/grid/static/array/slice.js +10 -0
  176. package/grid/static/array/sortBy.js +69 -0
  177. package/grid/static/array/sum.js +28 -0
  178. package/grid/static/array/toArray.js +7 -0
  179. package/grid/static/array/toTreeArray.js +24 -0
  180. package/grid/static/base/clear.js +44 -0
  181. package/grid/static/base/clone.js +18 -0
  182. package/grid/static/base/destructuring.js +18 -0
  183. package/grid/static/base/each.js +9 -0
  184. package/grid/static/base/eqNull.js +6 -0
  185. package/grid/static/base/findIndexOf.js +10 -0
  186. package/grid/static/base/get.js +42 -0
  187. package/grid/static/base/has.js +60 -0
  188. package/grid/static/base/hasOwnProp.js +4 -0
  189. package/grid/static/base/helperCreateGetObjects.js +26 -0
  190. package/grid/static/base/helperCreateInInObjectString.js +7 -0
  191. package/grid/static/base/helperCreateInTypeof.js +6 -0
  192. package/grid/static/base/helperCreateIndexOf.js +21 -0
  193. package/grid/static/base/helperCreateiterateIndexOf.js +21 -0
  194. package/grid/static/base/helperDefaultCompare.js +4 -0
  195. package/grid/static/base/helperDeleteProperty.js +8 -0
  196. package/grid/static/base/helperEqualCompare.js +60 -0
  197. package/grid/static/base/helperGetHGSKeys.js +4 -0
  198. package/grid/static/base/indexOf.js +3 -0
  199. package/grid/static/base/isArray.js +3 -0
  200. package/grid/static/base/isBoolean.js +4 -0
  201. package/grid/static/base/isDate.js +3 -0
  202. package/grid/static/base/isEmpty.js +8 -0
  203. package/grid/static/base/isEqual.js +11 -0
  204. package/grid/static/base/isFunction.js +4 -0
  205. package/grid/static/base/isNaN.js +5 -0
  206. package/grid/static/base/isNull.js +4 -0
  207. package/grid/static/base/isNumber.js +4 -0
  208. package/grid/static/base/isObject.js +5 -0
  209. package/grid/static/base/isPlainObject.js +2 -0
  210. package/grid/static/base/isRegExp.js +3 -0
  211. package/grid/static/base/isSet.js +5 -0
  212. package/grid/static/base/isString.js +4 -0
  213. package/grid/static/base/isUndefined.js +4 -0
  214. package/grid/static/base/keys.js +3 -0
  215. package/grid/static/base/lastEach.js +9 -0
  216. package/grid/static/base/remove.js +44 -0
  217. package/grid/static/base/set.js +43 -0
  218. package/grid/static/base/toJSONString.js +4 -0
  219. package/grid/static/base/toStringJSON.js +13 -0
  220. package/grid/static/base/uniqueId.js +5 -0
  221. package/grid/static/browse/browse.js +54 -0
  222. package/grid/static/function/property.js +7 -0
  223. package/grid/static/function/throttle.js +43 -0
  224. package/grid/static/index.js +55 -0
  225. package/grid/static/number/helperCreateToNumber.js +12 -0
  226. package/grid/static/number/toNumber.js +3 -0
  227. package/grid/static/object/assign.js +41 -0
  228. package/grid/static/object/extend.js +3 -0
  229. package/grid/static/object/lastObjectEach.js +8 -0
  230. package/grid/static/object/objectEach.js +11 -0
  231. package/grid/static/object/objectMap.js +20 -0
  232. package/grid/static/object/values.js +9 -0
  233. package/grid/static/static/staticDocument.js +4 -0
  234. package/grid/static/static/staticHGKeyRE.js +2 -0
  235. package/grid/static/static/staticParseInt.js +2 -0
  236. package/grid/static/static/staticStrUndefined.js +2 -0
  237. package/grid/static/static/staticWindow.js +4 -0
  238. package/grid/static/string/template.js +12 -0
  239. package/grid/static/string/toString.js +12 -0
  240. package/grid/utils/column.js +72 -0
  241. package/grid/utils/common.js +155 -0
  242. package/grid/utils/dom.js +213 -0
  243. package/grid/utils/event.js +40 -0
  244. package/grid/utils/index.js +5 -0
  245. package/image/index.js +187 -0
  246. package/image/vue.js +142 -0
  247. package/image-viewer/index.js +469 -0
  248. package/image-viewer/vue.js +243 -0
  249. package/input/index.js +319 -0
  250. package/input/vue.js +319 -0
  251. package/ip-address/index.js +370 -0
  252. package/ip-address/vue.js +185 -0
  253. package/layout/vue.js +4 -0
  254. package/link/index.js +10 -0
  255. package/link/vue.js +26 -0
  256. package/link-menu/index.js +146 -0
  257. package/link-menu/vue.js +138 -0
  258. package/list/index.js +13 -0
  259. package/list/vue.js +17 -0
  260. package/loading/index.js +29 -0
  261. package/loading/vue.js +28 -0
  262. package/milestone/index.js +92 -0
  263. package/milestone/vue.js +31 -0
  264. package/mini-picker/index.js +227 -0
  265. package/mini-picker/vue.js +142 -0
  266. package/modal/index.js +866 -0
  267. package/modal/vue.js +130 -0
  268. package/month-range/index.js +169 -0
  269. package/month-range/vue.js +104 -0
  270. package/month-table/index.js +232 -0
  271. package/month-table/vue.js +72 -0
  272. package/nav-menu/index.js +457 -0
  273. package/nav-menu/vue.js +187 -0
  274. package/notify/index.js +91 -0
  275. package/notify/vue.js +67 -0
  276. package/numeric/index.js +419 -0
  277. package/numeric/vue.js +218 -0
  278. package/option/index.js +79 -0
  279. package/option/vue.js +219 -0
  280. package/option-group/index.js +18 -0
  281. package/option-group/vue.js +37 -0
  282. package/package.json +179 -0
  283. package/pager-item/index.js +122 -0
  284. package/pager-item/vue.js +52 -0
  285. package/panel/index.js +30 -0
  286. package/panel/vue.js +26 -0
  287. package/picker/index.js +1039 -0
  288. package/picker/timezone.js +974 -0
  289. package/picker/vue.js +415 -0
  290. package/picker-column/index.js +261 -0
  291. package/picker-column/vue.js +163 -0
  292. package/pop-upload/index.js +324 -0
  293. package/pop-upload/vue.js +292 -0
  294. package/popeditor/index.js +884 -0
  295. package/popeditor/vue.js +368 -0
  296. package/popover/index.js +203 -0
  297. package/popover/vue.js +174 -0
  298. package/popup/index.js +139 -0
  299. package/popup/vue.js +129 -0
  300. package/progress/index.js +174 -0
  301. package/progress/vue.js +118 -0
  302. package/pull-refresh/index.js +104 -0
  303. package/pull-refresh/vue.js +64 -0
  304. package/radio/index.js +83 -0
  305. package/radio/vue.js +99 -0
  306. package/radio-button/index.js +58 -0
  307. package/radio-button/vue.js +70 -0
  308. package/radio-group/index.js +51 -0
  309. package/radio-group/vue.js +34 -0
  310. package/rate/index.js +254 -0
  311. package/rate/vue.js +158 -0
  312. package/row/index.js +19 -0
  313. package/row/vue.js +24 -0
  314. package/scroll-text/index.js +24 -0
  315. package/scroll-text/vue.js +31 -0
  316. package/scrollbar/index.js +127 -0
  317. package/scrollbar/vue-bar.js +49 -0
  318. package/scrollbar/vue.js +43 -0
  319. package/search/index.js +110 -0
  320. package/search/vue.js +110 -0
  321. package/select/index.js +1766 -0
  322. package/select/vue.js +693 -0
  323. package/select-dropdown/index.js +23 -0
  324. package/select-dropdown/vue.js +122 -0
  325. package/slide-bar/index.js +94 -0
  326. package/slide-bar/vue.js +58 -0
  327. package/slider/index.js +434 -0
  328. package/slider/vue.js +172 -0
  329. package/split/index.js +122 -0
  330. package/split/vue.js +131 -0
  331. package/steps/vue.js +4 -0
  332. package/switch/index.js +45 -0
  333. package/switch/vue.js +62 -0
  334. package/tab-bar/index.js +51 -0
  335. package/tab-bar/vue.js +16 -0
  336. package/tab-dropdown/index.js +11 -0
  337. package/tab-dropdown/vue.js +17 -0
  338. package/tab-item/index.js +37 -0
  339. package/tab-item/vue.js +49 -0
  340. package/tab-nav/index.js +247 -0
  341. package/tab-nav/vue.js +106 -0
  342. package/tabbar/index.js +32 -0
  343. package/tabbar/vue.js +54 -0
  344. package/tabbar-item/index.js +55 -0
  345. package/tabbar-item/vue.js +53 -0
  346. package/table/index.js +111 -0
  347. package/table/vue.js +66 -0
  348. package/tabs/index.js +174 -0
  349. package/tabs/vue.js +141 -0
  350. package/tag/index.js +14 -0
  351. package/tag/vue.js +13 -0
  352. package/tall-storage/index.js +161 -0
  353. package/tall-storage/vue-storage-box.js +25 -0
  354. package/tall-storage/vue.js +38 -0
  355. package/text-popup/index.js +75 -0
  356. package/text-popup/vue.js +64 -0
  357. package/time/index.js +121 -0
  358. package/time/vue.js +124 -0
  359. package/time-line/index.js +60 -0
  360. package/time-line/vue.js +49 -0
  361. package/time-panel/index.js +189 -0
  362. package/time-panel/scrollIntoView.js +23 -0
  363. package/time-panel/vue.js +110 -0
  364. package/time-range/index.js +199 -0
  365. package/time-range/vue.js +129 -0
  366. package/time-spinner/index.js +175 -0
  367. package/time-spinner/vue.js +122 -0
  368. package/toggle-menu/index.js +104 -0
  369. package/toggle-menu/vue.js +74 -0
  370. package/tooltip/index.js +171 -0
  371. package/tooltip/vue.js +133 -0
  372. package/top-box/index.js +81 -0
  373. package/top-box/vue.js +77 -0
  374. package/transfer/index.js +296 -0
  375. package/transfer/vue.js +138 -0
  376. package/transfer-panel/index.js +364 -0
  377. package/transfer-panel/vue.js +258 -0
  378. package/tree/index.js +642 -0
  379. package/tree/vue.js +268 -0
  380. package/tree-menu/index.js +124 -0
  381. package/tree-menu/vue.js +60 -0
  382. package/tree-node/index.js +271 -0
  383. package/tree-node/vue.js +211 -0
  384. package/upload/index.js +324 -0
  385. package/upload/vue.js +93 -0
  386. package/upload-dragger/index.js +50 -0
  387. package/upload-dragger/vue.js +27 -0
  388. package/upload-list/index.js +55 -0
  389. package/upload-list/vue.js +48 -0
  390. package/user-contact/index.js +13 -0
  391. package/user-contact/vue.js +20 -0
  392. package/user-head/index.js +71 -0
  393. package/user-head/vue.js +47 -0
  394. package/wizard/index.js +123 -0
  395. package/wizard/vue.js +45 -0
  396. package/year-table/index.js +40 -0
  397. package/year-table/vue.js +23 -0
@@ -0,0 +1,974 @@
1
+ export default {
2
+ 'en-US': [{
3
+ name: '(UTC-12:00)International Date Line West',
4
+ code: '001-12',
5
+ offset: -12,
6
+ tz: 'Etc/GMT+12'
7
+ }, {
8
+ name: '(UTC+13:00)Samoa',
9
+ code: '002-11',
10
+ offset: 14,
11
+ tz: 'Pacific/Apia'
12
+ }, {
13
+ name: '(UTC-11:00)Coordinated Universal Time-11',
14
+ code: '003-11',
15
+ offset: -11,
16
+ tz: 'Etc/GMT+11'
17
+ }, {
18
+ name: '(UTC-10:00)Hawaii',
19
+ code: '004-10',
20
+ offset: -10,
21
+ tz: 'Pacific/Honolulu'
22
+ }, {
23
+ name: '(UTC-09:00)Alaska',
24
+ code: '005-9',
25
+ offset: -9,
26
+ tz: 'America/Anchorage'
27
+ }, {
28
+ name: '(UTC-08:00)Pacific Time (US & Canada)',
29
+ code: '006-8',
30
+ offset: -8,
31
+ tz: 'America/Los_Angeles'
32
+ }, {
33
+ name: '(UTC-08:00)Baja California',
34
+ code: '007-8',
35
+ offset: -8,
36
+ tz: 'America/Santa_Isabel'
37
+ }, {
38
+ name: '(UTC-07:00)Chihuahua, La Paz, Mazatlan',
39
+ code: '008-7',
40
+ offset: -7,
41
+ tz: 'America/Chihuahua'
42
+ }, {
43
+ name: '(UTC-07:00)Mountain Time (US & Canada)',
44
+ code: '009-7',
45
+ offset: -7,
46
+ tz: 'America/Denver'
47
+ }, {
48
+ name: '(UTC-07:00)Arizona',
49
+ code: '010-7',
50
+ offset: -7,
51
+ tz: 'America/Phoenix'
52
+ }, {
53
+ name: '(UTC-06:00)Guadalajara, Mexico City, Monterey',
54
+ code: '011-6',
55
+ offset: -6,
56
+ tz: 'America/Mexico_City'
57
+ }, {
58
+ name: '(UTC-06:00)Saskatchewan',
59
+ code: '012-6',
60
+ offset: -6,
61
+ tz: 'America/Regina'
62
+ }, {
63
+ name: '(UTC-06:00)Central Time (US & Canada)',
64
+ code: '013-6',
65
+ offset: -6,
66
+ tz: 'America/Chicago'
67
+ }, {
68
+ name: '(UTC-06:00)Central America',
69
+ code: '014-6',
70
+ offset: -6,
71
+ tz: 'America/Guatemala'
72
+ }, {
73
+ name: '(UTC-05:00)Bogota, Lima, Quito',
74
+ code: '015-5',
75
+ offset: -5,
76
+ tz: 'America/Bogota'
77
+ }, {
78
+ name: '(UTC-05:00)Eastern Time (US & Canada)',
79
+ code: '016-5',
80
+ offset: -5,
81
+ tz: 'America/New_York'
82
+ }, {
83
+ name: '(UTC-05:00)Indiana(East)',
84
+ code: '017-5',
85
+ offset: -5,
86
+ tz: 'America/Indiana/Indianapolis'
87
+ }, {
88
+ name: '(UTC-04:30)Caracas',
89
+ code: '018-4.5',
90
+ offset: -4,
91
+ tz: 'America/Caracas'
92
+ }, {
93
+ name: '(UTC-04:00)Atlantic Time (Canada)',
94
+ code: '019-4',
95
+ offset: -4,
96
+ tz: 'America/Halifax'
97
+ }, {
98
+ name: '(UTC-04:00)Cuiaba',
99
+ code: '020-4',
100
+ offset: -4,
101
+ tz: 'America/Cuiaba'
102
+ }, {
103
+ name: '(UTC-04:00)Georgetown, La Paz, Manaus, San Juan',
104
+ code: '021-4',
105
+ offset: -4,
106
+ tz: 'America/La_Paz'
107
+ }, {
108
+ name: '(UTC-04:00)Santiago',
109
+ code: '022-4',
110
+ offset: -3,
111
+ tz: 'America/Santiago'
112
+ }, {
113
+ name: '(UTC-04:00)Asuncion',
114
+ code: '023-4',
115
+ offset: -3,
116
+ tz: 'America/Asuncion'
117
+ }, {
118
+ name: '(UTC-03:30)Newfoundland',
119
+ code: '024-3.5',
120
+ offset: -3.5,
121
+ tz: 'America/St_Johns'
122
+ }, {
123
+ name: '(UTC-03:00)Brasilia',
124
+ code: '025-3',
125
+ offset: -3,
126
+ tz: 'America/Sao_Paulo'
127
+ }, {
128
+ name: '(UTC-03:00)Buenos Aires',
129
+ code: '026-3',
130
+ offset: -3,
131
+ tz: 'America/Argentina/Buenos_Aires'
132
+ }, {
133
+ name: '(UTC-03:00)Greenland',
134
+ code: '027-3',
135
+ offset: -3,
136
+ tz: 'America/Godthab'
137
+ }, {
138
+ name: '(UTC-03:00)Cayenne, Fortaleza',
139
+ code: '028-3',
140
+ offset: -3,
141
+ tz: 'America/Cayenne'
142
+ }, {
143
+ name: '(UTC-03:00)Montevideo',
144
+ code: '029-3',
145
+ offset: -3,
146
+ tz: 'America/Montevideo'
147
+ }, {
148
+ name: '(UTC-11:00)Coordinated Universal Time-11',
149
+ code: '030-2',
150
+ offset: -11,
151
+ tz: 'Etc/GMT+11'
152
+ }, {
153
+ name: '(UTC-02:00)Mid-Atlantic',
154
+ code: '031-2',
155
+ offset: -4,
156
+ tz: 'America/Halifax'
157
+ }, {
158
+ name: '(UTC-01:00)Cape Verde Is',
159
+ code: '032-1',
160
+ offset: -1,
161
+ tz: 'Atlantic/Cape_Verde'
162
+ }, {
163
+ name: '(UTC-01:00)Azores',
164
+ code: '033-1',
165
+ offset: -1,
166
+ tz: 'Atlantic/Azores'
167
+ }, {
168
+ name: '(UTC)Dublin, Edinburgh, Lisbon, London',
169
+ code: '034-0',
170
+ offset: 0,
171
+ tz: 'Europe/London'
172
+ }, {
173
+ name: '(UTC)Casablanca',
174
+ code: '035-0',
175
+ offset: 1,
176
+ tz: 'Africa/Casablanca'
177
+ }, {
178
+ name: '(UTC)Monrovia, Reykjavik',
179
+ code: '036-0',
180
+ offset: 0,
181
+ tz: 'Atlantic/Reykjavik'
182
+ }, {
183
+ name: '(UTC)Coordinated Universal Time',
184
+ code: '037-0',
185
+ offset: 0,
186
+ tz: 'Etc/GMT'
187
+ }, {
188
+ name: '(UTC+01:00)Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna',
189
+ code: '038+1',
190
+ offset: 1,
191
+ tz: 'Europe/Berlin'
192
+ }, {
193
+ name: '(UTC+01:00)Belgrade, Bratislava, Budapest, Ljubljana, Prague',
194
+ code: '039+1',
195
+ offset: 1,
196
+ tz: 'Europe/Budapest'
197
+ }, {
198
+ name: '(UTC+01:00)Brussels, Copenhagen, Madrid, Paris',
199
+ code: '040+1',
200
+ offset: 1,
201
+ tz: 'Europe/Paris'
202
+ }, {
203
+ name: '(UTC+01:00)Sarajevo, Skopje, Warsaw, Zagreb',
204
+ code: '041+1',
205
+ offset: 1,
206
+ tz: 'Europe/Warsaw'
207
+ }, {
208
+ name: '(UTC+01:00)Windhoek',
209
+ code: '042+1',
210
+ offset: 2,
211
+ tz: 'Africa/Windhoek'
212
+ }, {
213
+ name: '(UTC+01:00)West Central Africa',
214
+ code: '043+1',
215
+ offset: 1,
216
+ tz: 'Africa/Lagos'
217
+ }, {
218
+ name: '(UTC+02:00)Amman',
219
+ code: '044+2',
220
+ offset: 2,
221
+ tz: 'Asia/Amman'
222
+ }, {
223
+ name: '(UTC+02:00)Beirut',
224
+ code: '045+2',
225
+ offset: 2,
226
+ tz: 'Asia/Beirut'
227
+ }, {
228
+ name: '(UTC+02:00)Damascus',
229
+ code: '046+2',
230
+ offset: 2,
231
+ tz: 'Asia/Damascus'
232
+ }, {
233
+ name: '(UTC+02:00)Harare, Pretoria',
234
+ code: '047+2',
235
+ offset: 2,
236
+ tz: 'Africa/Johannesburg'
237
+ }, {
238
+ name: '(UTC+02:00)Helsinki, Kiev, Riga, Sofia, Tallinn, Vilnius',
239
+ code: '048+2',
240
+ offset: 2,
241
+ tz: 'Europe/Kiev'
242
+ }, {
243
+ name: '(UTC+02:00)Cairo',
244
+ code: '049+2',
245
+ offset: 2,
246
+ tz: 'Africa/Cairo'
247
+ }, {
248
+ name: '(UTC+02:00)Minsk',
249
+ code: '050+2',
250
+ offset: 3,
251
+ tz: 'Europe/Minsk'
252
+ }, {
253
+ name: '(UTC+02:00)Athens, Bucharest, Istanbul',
254
+ code: '051+2',
255
+ offset: 3,
256
+ tz: 'Europe/Istanbul'
257
+ }, {
258
+ name: '(UTC+02:00)Jerusalem',
259
+ code: '052+2',
260
+ offset: 2,
261
+ tz: 'Asia/Jerusalem'
262
+ }, {
263
+ name: '(UTC+03:00)Baghdad',
264
+ code: '053+3',
265
+ offset: 3,
266
+ tz: 'Asia/Baghdad'
267
+ }, {
268
+ name: '(UTC+03:00)Kuwait, Riyadh',
269
+ code: '054+3',
270
+ offset: 3,
271
+ tz: 'Asia/Riyadh'
272
+ }, {
273
+ name: '(UTC+03:00)Moscow, St. Petersburg, Volgograd',
274
+ code: '055+3',
275
+ offset: 3,
276
+ tz: 'Europe/Moscow'
277
+ }, {
278
+ name: '(UTC+03:00)Nairobi',
279
+ code: '056+3',
280
+ offset: 3,
281
+ tz: 'Africa/Nairobi'
282
+ }, {
283
+ name: '(UTC+03:30)Teheran',
284
+ code: '057+3.5',
285
+ offset: 3.5,
286
+ tz: 'Asia/Tehran'
287
+ }, {
288
+ name: '(UTC+04:00)Abu Dhabi, Muscat',
289
+ code: '058+4',
290
+ offset: 4,
291
+ tz: 'Asia/Dubai'
292
+ }, {
293
+ name: '(UTC+04:00)Yerevan',
294
+ code: '059+4',
295
+ offset: 4,
296
+ tz: 'Asia/Yerevan'
297
+ }, {
298
+ name: '(UTC+04:00)Baku',
299
+ code: '060+4',
300
+ offset: 4,
301
+ tz: 'Asia/Baku'
302
+ }, {
303
+ name: '(UTC+04:00)Tbilisi',
304
+ code: '061+4',
305
+ offset: 4,
306
+ tz: 'Asia/Tbilisi'
307
+ }, {
308
+ name: '(UTC+04:00)Port Louis',
309
+ code: '062+4',
310
+ offset: 4,
311
+ tz: 'Indian/Mauritius'
312
+ }, {
313
+ name: '(UTC+04:30)Kabul',
314
+ code: '063+4.5',
315
+ offset: 4.5,
316
+ tz: 'Asia/Kabul'
317
+ }, {
318
+ name: '(UTC+05:00)Tashkent',
319
+ code: '064+5',
320
+ offset: 5,
321
+ tz: 'Asia/Tashkent'
322
+ }, {
323
+ name: '(UTC+05:00)Yekaterinburg',
324
+ code: '065+5',
325
+ offset: 5,
326
+ tz: 'Asia/Yekaterinburg'
327
+ }, {
328
+ name: '(UTC+05:00)Islamabad, Karachi',
329
+ code: '066+5',
330
+ offset: 5,
331
+ tz: 'Asia/Karachi'
332
+ }, {
333
+ name: '(UTC+05:30)Chennai, Kolkata, Mumbai, New Delhi',
334
+ code: '067+5.5',
335
+ offset: 5.5,
336
+ tz: 'Asia/Kolkata'
337
+ }, {
338
+ name: '(UTC+05:30)Sri Jayawardenepura',
339
+ code: '068+5.5',
340
+ offset: 5.5,
341
+ tz: 'Asia/Colombo'
342
+ }, {
343
+ name: '(UTC+05:45)Katmandu',
344
+ code: '069+5.75',
345
+ offset: 5.75,
346
+ tz: 'Asia/Kathmandu'
347
+ }, {
348
+ name: '(UTC+06:00)Astana',
349
+ code: '070+6',
350
+ offset: 6,
351
+ tz: 'Asia/Almaty'
352
+ }, {
353
+ name: '(UTC+06:00)Dhaka',
354
+ code: '071+6',
355
+ offset: 6,
356
+ tz: 'Asia/Dhaka'
357
+ }, {
358
+ name: '(UTC+07:00)Novosibirsk',
359
+ code: '072+6',
360
+ offset: 7,
361
+ tz: 'Asia/Novosibirsk'
362
+ }, {
363
+ name: '(UTC+06:30)Yangon(Rangoon)',
364
+ code: '073+6.5',
365
+ offset: 6.5,
366
+ tz: 'Asia/Yangon'
367
+ }, {
368
+ name: '(UTC+07:00)Krasnoyarsk',
369
+ code: '074+7',
370
+ offset: 7,
371
+ tz: 'Asia/Krasnoyarsk'
372
+ }, {
373
+ name: '(UTC+07:00)Bangkok, Hanoi, Jakarta',
374
+ code: '075+7',
375
+ offset: 7,
376
+ tz: 'Asia/Bangkok'
377
+ }, {
378
+ name: '(UTC+08:00)Beijing, Chongqing, Hong Kong, Urumqi',
379
+ code: '076+8',
380
+ offset: 8,
381
+ tz: 'Asia/Shanghai'
382
+ }, {
383
+ name: '(UTC+08:00)Kuala Lumpur, Singapore',
384
+ code: '077+8',
385
+ offset: 8,
386
+ tz: 'Asia/Singapore'
387
+ }, {
388
+ name: '(UTC+08:00)Perth',
389
+ code: '078+8',
390
+ offset: 8,
391
+ tz: 'Australia/Perth'
392
+ }, {
393
+ name: '(UTC+08:00)Taipei',
394
+ code: '079+8',
395
+ offset: 8,
396
+ tz: 'Asia/Taipei'
397
+ }, {
398
+ name: '(UTC+08:00)Ulaanbaatar',
399
+ code: '080+8',
400
+ offset: 8,
401
+ tz: 'Asia/Ulaanbaatar'
402
+ }, {
403
+ name: '(UTC+08:00)Irkutsk',
404
+ code: '081+8',
405
+ offset: 8,
406
+ tz: 'Asia/Irkutsk'
407
+ }, {
408
+ name: '(UTC+09:00)Osaka, Sapporo, Tokyo',
409
+ code: '082+9',
410
+ offset: 9,
411
+ tz: 'Asia/Tokyo'
412
+ }, {
413
+ name: '(UTC+09:00)Seoul',
414
+ code: '083+9',
415
+ offset: 9,
416
+ tz: 'Asia/Seoul'
417
+ }, {
418
+ name: '(UTC+09:00)Yakutsk',
419
+ code: '084+9',
420
+ offset: 9,
421
+ tz: 'Asia/Yakutsk'
422
+ }, {
423
+ name: '(UTC+09:30)Adelaide',
424
+ code: '085+9.5',
425
+ offset: 10.5,
426
+ tz: 'Australia/Adelaide'
427
+ }, {
428
+ name: '(UTC+09:30)Darwin',
429
+ code: '086+9.5',
430
+ offset: 9.5,
431
+ tz: 'Australia/Darwin'
432
+ }, {
433
+ name: '(UTC+10:00)Brisbane',
434
+ code: '087+10',
435
+ offset: 10,
436
+ tz: 'Australia/Brisbane'
437
+ }, {
438
+ name: '(UTC+10:00)Vladivostok',
439
+ code: '088+10',
440
+ offset: 10,
441
+ tz: 'Asia/Vladivostok'
442
+ }, {
443
+ name: '(UTC+10:00)Guam, Port Moresby',
444
+ code: '089+10',
445
+ offset: 10,
446
+ tz: 'Pacific/Port_Moresby'
447
+ }, {
448
+ name: '(UTC+10:00)Hobart',
449
+ code: '090+10',
450
+ offset: 11,
451
+ tz: 'Australia/Hobart'
452
+ }, {
453
+ name: '(UTC+10:00)Canberra, Melbourne, Sydney',
454
+ code: '091+10',
455
+ offset: 11,
456
+ tz: 'Australia/Sydney'
457
+ }, {
458
+ name: '(UTC+11:00)Magadan',
459
+ code: '092+11',
460
+ offset: 11,
461
+ tz: 'Asia/Magadan'
462
+ }, {
463
+ name: '(UTC+11:00)Solomon Is, New Caledonia',
464
+ code: '093+11',
465
+ offset: 11,
466
+ tz: 'Pacific/Guadalcanal'
467
+ }, {
468
+ name: '(UTC+12:00)Auckland, Wellington',
469
+ code: '094+12',
470
+ offset: 13,
471
+ tz: 'Pacific/Auckland'
472
+ }, {
473
+ name: '(UTC+12:00)Fiji',
474
+ code: '095+12',
475
+ offset: 13,
476
+ tz: 'Pacific/Fiji'
477
+ }, {
478
+ name: '(UTC+12:00)Coordinated Universal Time+12',
479
+ code: '096+12',
480
+ offset: 12,
481
+ tz: 'Etc/GMT-12'
482
+ }, {
483
+ name: '(UTC+13:00)Nuku`alofa',
484
+ code: '097+13',
485
+ offset: 13,
486
+ tz: 'Pacific/Tongatapu'
487
+ }],
488
+ 'zh-CN': [{
489
+ name: '(UTC-12:00)国际日期变更线西',
490
+ code: '001-12',
491
+ offset: -12,
492
+ tz: 'Etc/GMT+12'
493
+ }, {
494
+ name: '(UTC+13:00) 萨摩亚群岛',
495
+ code: '002-11',
496
+ offset: 14,
497
+ tz: 'Pacific/Apia'
498
+ }, {
499
+ name: '(UTC-11:00)协调世界时-11',
500
+ code: '003-11',
501
+ offset: -11,
502
+ tz: 'Etc/GMT+11'
503
+ }, {
504
+ name: '(UTC-10:00)夏威夷',
505
+ code: '004-10',
506
+ offset: -10,
507
+ tz: 'Pacific/Honolulu'
508
+ }, {
509
+ name: '(UTC-09:00)阿拉斯加',
510
+ code: '005-9',
511
+ offset: -9,
512
+ tz: 'America/Anchorage'
513
+ }, {
514
+ name: '(UTC-08:00)太平洋时间(美国和加拿大)',
515
+ code: '006-8',
516
+ offset: -8,
517
+ tz: 'America/Los_Angeles'
518
+ }, {
519
+ name: '(UTC-08:00)下加利福尼亚州',
520
+ code: '007-8',
521
+ offset: -8,
522
+ tz: 'America/Santa_Isabel'
523
+ }, {
524
+ name: '(UTC-07:00)奇瓦瓦,拉巴斯,马萨特兰',
525
+ code: '008-7',
526
+ offset: -7,
527
+ tz: 'America/Chihuahua'
528
+ }, {
529
+ name: '(UTC-07:00)山地时间(美国和加拿大)',
530
+ code: '009-7',
531
+ offset: -7,
532
+ tz: 'America/Denver'
533
+ }, {
534
+ name: '(UTC-07:00)亚利桑那',
535
+ code: '010-7',
536
+ offset: -7,
537
+ tz: 'America/Phoenix'
538
+ }, {
539
+ name: '(UTC-06:00)瓜达拉哈拉,墨西哥城,蒙特雷',
540
+ code: '011-6',
541
+ offset: -6,
542
+ tz: 'America/Mexico_City'
543
+ }, {
544
+ name: '(UTC-06:00)萨斯喀彻温',
545
+ code: '012-6',
546
+ offset: -6,
547
+ tz: 'America/Regina'
548
+ }, {
549
+ name: '(UTC-06:00)中部时间(美国和加拿大)',
550
+ code: '013-6',
551
+ offset: -6,
552
+ tz: 'America/Chicago'
553
+ }, {
554
+ name: '(UTC-06:00)中美洲',
555
+ code: '014-6',
556
+ offset: -6,
557
+ tz: 'America/Guatemala'
558
+ }, {
559
+ name: '(UTC-05:00)波哥大,利马,基多',
560
+ code: '015-5',
561
+ offset: -5,
562
+ tz: 'America/Bogota'
563
+ }, {
564
+ name: '(UTC-05:00)东部时间(美国和加拿大)',
565
+ code: '016-5',
566
+ offset: -5,
567
+ tz: 'America/New_York'
568
+ }, {
569
+ name: '(UTC-05:00)印地安那州(东部)',
570
+ code: '017-5',
571
+ offset: -5,
572
+ tz: 'America/Indiana/Indianapolis'
573
+ }, {
574
+ name: '(UTC-04:30)加拉加斯',
575
+ code: '018-4.5',
576
+ offset: -4,
577
+ tz: 'America/Caracas'
578
+ }, {
579
+ name: '(UTC-04:00)大西洋时间(加拿大)',
580
+ code: '019-4',
581
+ offset: -4,
582
+ tz: 'America/Halifax'
583
+ }, {
584
+ name: '(UTC-04:00)库亚巴',
585
+ code: '020-4',
586
+ offset: -4,
587
+ tz: 'America/Cuiaba'
588
+ }, {
589
+ name: '(UTC-04:00)乔治敦,拉巴斯,马瑙斯,圣胡安',
590
+ code: '021-4',
591
+ offset: -4,
592
+ tz: 'America/La_Paz'
593
+ }, {
594
+ name: '(UTC-04:00)圣地亚哥',
595
+ code: '022-4',
596
+ offset: -3,
597
+ tz: 'America/Santiago'
598
+ }, {
599
+ name: '(UTC-04:00)亚松森',
600
+ code: '023-4',
601
+ offset: -3,
602
+ tz: 'America/Asuncion'
603
+ }, {
604
+ name: '(UTC-03:30)纽芬兰',
605
+ code: '024-3.5',
606
+ offset: -3.5,
607
+ tz: 'America/St_Johns'
608
+ }, {
609
+ name: '(UTC-03:00)巴西利亚',
610
+ code: '025-3',
611
+ offset: -3,
612
+ tz: 'America/Sao_Paulo'
613
+ }, {
614
+ name: '(UTC-03:00)布宜诺斯艾利斯',
615
+ code: '026-3',
616
+ offset: -3,
617
+ tz: 'America/Argentina/Buenos_Aires'
618
+ }, {
619
+ name: '(UTC-03:00)格陵兰',
620
+ code: '027-3',
621
+ offset: -3,
622
+ tz: 'America/Godthab'
623
+ }, {
624
+ name: '(UTC-03:00)卡宴,福塔雷萨',
625
+ code: '028-3',
626
+ offset: -3,
627
+ tz: 'America/Cayenne'
628
+ }, {
629
+ name: '(UTC-03:00)蒙得维的亚',
630
+ code: '029-3',
631
+ offset: -3,
632
+ tz: 'America/Montevideo'
633
+ }, {
634
+ name: '(UTC-11:00)协调世界时-11',
635
+ code: '030-2',
636
+ offset: -11,
637
+ tz: 'Etc/GMT+11'
638
+ }, {
639
+ name: '(UTC-02:00)中大西洋',
640
+ code: '031-2',
641
+ offset: -4,
642
+ tz: 'America/Halifax'
643
+ }, {
644
+ name: '(UTC-01:00)佛得角群岛',
645
+ code: '032-1',
646
+ offset: -1,
647
+ tz: 'Atlantic/Cape_Verde'
648
+ }, {
649
+ name: '(UTC-01:00)亚速尔群岛',
650
+ code: '033-1',
651
+ offset: -1,
652
+ tz: 'Atlantic/Azores'
653
+ }, {
654
+ name: '(UTC)都柏林,爱丁堡,里斯本,伦敦',
655
+ code: '034-0',
656
+ offset: 0,
657
+ tz: 'Europe/London'
658
+ }, {
659
+ name: '(UTC)卡萨布兰卡',
660
+ code: '035-0',
661
+ offset: 1,
662
+ tz: 'Africa/Casablanca'
663
+ }, {
664
+ name: '(UTC)蒙罗维亚,雷克雅未克',
665
+ code: '036-0',
666
+ offset: 0,
667
+ tz: 'Atlantic/Reykjavik'
668
+ }, {
669
+ name: '(UTC)协调世界时',
670
+ code: '037-0',
671
+ offset: 0,
672
+ tz: 'Etc/GMT'
673
+ }, {
674
+ name: '(UTC+01:00)阿姆斯特丹,柏林,伯尔尼,罗马,斯德哥尔摩,维也纳',
675
+ code: '038+1',
676
+ offset: 1,
677
+ tz: 'Europe/Berlin'
678
+ }, {
679
+ name: '(UTC+01:00)贝尔格莱德,布拉迪斯拉发,布达佩斯,卢布尔雅那,布拉格',
680
+ code: '039+1',
681
+ offset: 1,
682
+ tz: 'Europe/Budapest'
683
+ }, {
684
+ name: '(UTC+01:00)布鲁塞尔,哥本哈根,马德里,巴黎',
685
+ code: '040+1',
686
+ offset: 1,
687
+ tz: 'Europe/Paris'
688
+ }, {
689
+ name: '(UTC+01:00)萨拉热窝,斯科普里,华沙,萨格勒布',
690
+ code: '041+1',
691
+ offset: 1,
692
+ tz: 'Europe/Warsaw'
693
+ }, {
694
+ name: '(UTC+01:00)温得和克',
695
+ code: '042+1',
696
+ offset: 2,
697
+ tz: 'Africa/Windhoek'
698
+ }, {
699
+ name: '(UTC+01:00)中非西部',
700
+ code: '043+1',
701
+ offset: 1,
702
+ tz: 'Africa/Lagos'
703
+ }, {
704
+ name: '(UTC+02:00)安曼',
705
+ code: '044+2',
706
+ offset: 2,
707
+ tz: 'Asia/Amman'
708
+ }, {
709
+ name: '(UTC+02:00)贝鲁特',
710
+ code: '045+2',
711
+ offset: 2,
712
+ tz: 'Asia/Beirut'
713
+ }, {
714
+ name: '(UTC+02:00)大马士革',
715
+ code: '046+2',
716
+ offset: 2,
717
+ tz: 'Asia/Damascus'
718
+ }, {
719
+ name: '(UTC+02:00)哈拉雷,比勒陀利亚',
720
+ code: '047+2',
721
+ offset: 2,
722
+ tz: 'Africa/Johannesburg'
723
+ }, {
724
+ name: '(UTC+02:00)赫尔辛基,基辅,里加,索非亚,塔林,维尔纽斯',
725
+ code: '048+2',
726
+ offset: 2,
727
+ tz: 'Europe/Kiev'
728
+ }, {
729
+ name: 'UTC+02:00)开罗',
730
+ code: '049+2',
731
+ offset: 2,
732
+ tz: 'Africa/Cairo'
733
+ }, {
734
+ name: '(UTC+02:00)明斯克',
735
+ code: '050+2',
736
+ offset: 3,
737
+ tz: 'Europe/Minsk'
738
+ }, {
739
+ name: '(UTC+02:00)雅典,布加勒斯特,伊斯坦布尔',
740
+ code: '051+2',
741
+ offset: 3,
742
+ tz: 'Europe/Istanbul'
743
+ }, {
744
+ name: '(UTC+02:00)耶路撒冷',
745
+ code: '052+2',
746
+ offset: 2,
747
+ tz: 'Asia/Jerusalem'
748
+ }, {
749
+ name: '(UTC+03:00)巴格达',
750
+ code: '053+3',
751
+ offset: 3,
752
+ tz: 'Asia/Baghdad'
753
+ }, {
754
+ name: '(UTC+03:00)科威特,利雅得',
755
+ code: '054+3',
756
+ offset: 3,
757
+ tz: 'Asia/Riyadh'
758
+ }, {
759
+ name: '(UTC+03:00)莫斯科,圣彼得堡,伏尔加格勒',
760
+ code: '055+3',
761
+ offset: 3,
762
+ tz: 'Europe/Moscow'
763
+ }, {
764
+ name: '(UTC+03:00)内罗毕',
765
+ code: '056+3',
766
+ offset: 3,
767
+ tz: 'Africa/Nairobi'
768
+ }, {
769
+ name: '(UTC+03:30)德黑兰',
770
+ code: '057+3.5',
771
+ offset: 3.5,
772
+ tz: 'Asia/Tehran'
773
+ }, {
774
+ name: '(UTC+04:00)阿布扎比,马斯喀特',
775
+ code: '058+4',
776
+ offset: 4,
777
+ tz: 'Asia/Dubai'
778
+ }, {
779
+ name: '(UTC+04:00)埃里温',
780
+ code: '059+4',
781
+ offset: 4,
782
+ tz: 'Asia/Yerevan'
783
+ }, {
784
+ name: '(UTC+04:00)巴库',
785
+ code: '060+4',
786
+ offset: 4,
787
+ tz: 'Asia/Baku'
788
+ }, {
789
+ name: '(UTC+04:00)第比利斯',
790
+ code: '061+4',
791
+ offset: 4,
792
+ tz: 'Asia/Tbilisi'
793
+ }, {
794
+ name: '(UTC+04:00)路易港',
795
+ code: '062+4',
796
+ offset: 4,
797
+ tz: 'Indian/Mauritius'
798
+ }, {
799
+ name: '(UTC+04:30)喀布尔',
800
+ code: '063+4.5',
801
+ offset: 4.5,
802
+ tz: 'Asia/Kabul'
803
+ }, {
804
+ name: '(UTC+05:00)塔什干',
805
+ code: '064+5',
806
+ offset: 5,
807
+ tz: 'Asia/Tashkent'
808
+ }, {
809
+ name: '(UTC+05:00)叶卡捷琳堡',
810
+ code: '065+5',
811
+ offset: 5,
812
+ tz: 'Asia/Yekaterinburg'
813
+ }, {
814
+ name: '(UTC+05:00)伊斯兰堡,卡拉奇',
815
+ code: '066+5',
816
+ offset: 5,
817
+ tz: 'Asia/Karachi'
818
+ }, {
819
+ name: '(UTC+05:30)钦奈,加尔各答,孟买,新德里',
820
+ code: '067+5.5',
821
+ offset: 5.5,
822
+ tz: 'Asia/Kolkata'
823
+ }, {
824
+ name: '(UTC+05:30)斯里加亚渥登普拉',
825
+ code: '068+5.5',
826
+ offset: 5.5,
827
+ tz: 'Asia/Colombo'
828
+ }, {
829
+ name: '(UTC+05:45)加德满都',
830
+ code: '069+5.75',
831
+ offset: 5.75,
832
+ tz: 'Asia/Kathmandu'
833
+ }, {
834
+ name: '(UTC+06:00)阿斯塔纳',
835
+ code: '070+6',
836
+ offset: 6,
837
+ tz: 'Asia/Almaty'
838
+ }, {
839
+ name: '(UTC+06:00)达卡',
840
+ code: '071+6',
841
+ offset: 6,
842
+ tz: 'Asia/Dhaka'
843
+ }, {
844
+ name: '(UTC+07:00)新西伯利亚',
845
+ code: '072+6',
846
+ offset: 7,
847
+ tz: 'Asia/Novosibirsk'
848
+ }, {
849
+ name: '(UTC+06:30)仰光',
850
+ code: '073+6.5',
851
+ offset: 6.5,
852
+ tz: 'Asia/Yangon'
853
+ }, {
854
+ name: '(UTC+07:00)克拉斯诺亚尔斯克',
855
+ code: '074+7',
856
+ offset: 7,
857
+ tz: 'Asia/Krasnoyarsk'
858
+ }, {
859
+ name: '(UTC+07:00)曼谷,河内,雅加达',
860
+ code: '075+7',
861
+ offset: 7,
862
+ tz: 'Asia/Bangkok'
863
+ }, {
864
+ name: '(UTC+08:00)北京,重庆,香港特别行政区,乌鲁木齐',
865
+ code: '076+8',
866
+ offset: 8,
867
+ tz: 'Asia/Shanghai'
868
+ }, {
869
+ name: '(UTC+08:00)吉隆坡,新加坡',
870
+ code: '077+8',
871
+ offset: 8,
872
+ tz: 'Asia/Singapore'
873
+ }, {
874
+ name: '(UTC+08:00)珀斯',
875
+ code: '078+8',
876
+ offset: 8,
877
+ tz: 'Australia/Perth'
878
+ }, {
879
+ name: '(UTC+08:00)台北',
880
+ code: '079+8',
881
+ offset: 8,
882
+ tz: 'Asia/Taipei'
883
+ }, {
884
+ name: '(UTC+08:00)乌兰巴托',
885
+ code: '080+8',
886
+ offset: 8,
887
+ tz: 'Asia/Ulaanbaatar'
888
+ }, {
889
+ name: '(UTC+08:00)伊尔库茨克',
890
+ code: '081+8',
891
+ offset: 8,
892
+ tz: 'Asia/Irkutsk'
893
+ }, {
894
+ name: '(UTC+09:00)大阪,札幌,东京',
895
+ code: '082+9',
896
+ offset: 9,
897
+ tz: 'Asia/Tokyo'
898
+ }, {
899
+ name: '(UTC+09:00)首尔',
900
+ code: '083+9',
901
+ offset: 9,
902
+ tz: 'Asia/Seoul'
903
+ }, {
904
+ name: '(UTC+09:00)雅库茨克',
905
+ code: '084+9',
906
+ offset: 9,
907
+ tz: 'Asia/Yakutsk'
908
+ }, {
909
+ name: '(UTC+09:30)阿德莱德',
910
+ code: '085+9.5',
911
+ offset: 10.5,
912
+ tz: 'Australia/Adelaide'
913
+ }, {
914
+ name: '(UTC+09:30)达尔文',
915
+ code: '086+9.5',
916
+ offset: 9.5,
917
+ tz: 'Australia/Darwin'
918
+ }, {
919
+ name: '(UTC+10:00)布里斯班',
920
+ code: '087+10',
921
+ offset: 10,
922
+ tz: 'Australia/Brisbane'
923
+ }, {
924
+ name: '(UTC+10:00)符拉迪沃斯托克',
925
+ code: '088+10',
926
+ offset: 10,
927
+ tz: 'Asia/Vladivostok'
928
+ }, {
929
+ name: '(UTC+10:00)关岛,莫尔兹比港',
930
+ code: '089+10',
931
+ offset: 10,
932
+ tz: 'Pacific/Port_Moresby'
933
+ }, {
934
+ name: '(UTC+10:00)霍巴特',
935
+ code: '090+10',
936
+ offset: 11,
937
+ tz: 'Australia/Hobart'
938
+ }, {
939
+ name: '(UTC+10:00)堪培拉,墨尔本,悉尼',
940
+ code: '091+10',
941
+ offset: 11,
942
+ tz: 'Australia/Sydney'
943
+ }, {
944
+ name: '(UTC+11:00)马加丹',
945
+ code: '092+11',
946
+ offset: 11,
947
+ tz: 'Asia/Magadan'
948
+ }, {
949
+ name: '(UTC+11:00)所罗门群岛,新喀里多尼亚',
950
+ code: '093+11',
951
+ offset: 11,
952
+ tz: 'Pacific/Guadalcanal'
953
+ }, {
954
+ name: '(UTC+12:00)奥克兰,惠灵顿',
955
+ code: '094+12',
956
+ offset: 13,
957
+ tz: 'Pacific/Auckland'
958
+ }, {
959
+ name: '(UTC+12:00)斐济',
960
+ code: '095+12',
961
+ offset: 13,
962
+ tz: 'Pacific/Fiji'
963
+ }, {
964
+ name: '(UTC+12:00)协调世界时+12',
965
+ code: '096+12',
966
+ offset: 12,
967
+ tz: 'Etc/GMT-12'
968
+ }, {
969
+ name: '(UTC+13:00)努库阿洛法',
970
+ code: '097+13',
971
+ offset: 13,
972
+ tz: 'Pacific/Tongatapu'
973
+ }]
974
+ };