@terreno/ui 0.7.2 → 0.8.1
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.
- package/dist/BooleanField.js +23 -23
- package/dist/BooleanField.js.map +1 -1
- package/dist/ConsentFormScreen.d.ts +14 -0
- package/dist/ConsentFormScreen.js +93 -0
- package/dist/ConsentFormScreen.js.map +1 -0
- package/dist/ConsentHistory.d.ts +8 -0
- package/dist/ConsentHistory.js +70 -0
- package/dist/ConsentHistory.js.map +1 -0
- package/dist/ConsentNavigator.d.ts +9 -0
- package/dist/ConsentNavigator.js +72 -0
- package/dist/ConsentNavigator.js.map +1 -0
- package/dist/DataTable.js +1 -1
- package/dist/DataTable.js.map +1 -1
- package/dist/DateTimeActionSheet.js +22 -6
- package/dist/DateTimeActionSheet.js.map +1 -1
- package/dist/DateTimeField.d.ts +22 -0
- package/dist/DateTimeField.js +187 -67
- package/dist/DateTimeField.js.map +1 -1
- package/dist/DraggableList.d.ts +66 -0
- package/dist/DraggableList.js +241 -0
- package/dist/DraggableList.js.map +1 -0
- package/dist/Link.js +1 -1
- package/dist/Link.js.map +1 -1
- package/dist/MarkdownEditor.d.ts +12 -0
- package/dist/MarkdownEditor.js +12 -0
- package/dist/MarkdownEditor.js.map +1 -0
- package/dist/MarkdownEditorField.d.ts +1 -0
- package/dist/MarkdownEditorField.js +16 -16
- package/dist/MarkdownEditorField.js.map +1 -1
- package/dist/Modal.js +11 -1
- package/dist/Modal.js.map +1 -1
- package/dist/PickerSelect.js +10 -0
- package/dist/PickerSelect.js.map +1 -1
- package/dist/TerrenoProvider.js +10 -1
- package/dist/TerrenoProvider.js.map +1 -1
- package/dist/UpgradeRequiredScreen.d.ts +8 -0
- package/dist/UpgradeRequiredScreen.js +10 -0
- package/dist/UpgradeRequiredScreen.js.map +1 -0
- package/dist/generateConsentHistoryPdf.d.ts +2 -0
- package/dist/generateConsentHistoryPdf.js +185 -0
- package/dist/generateConsentHistoryPdf.js.map +1 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.js +9 -0
- package/dist/index.js.map +1 -1
- package/dist/useConsentForms.d.ts +29 -0
- package/dist/useConsentForms.js +50 -0
- package/dist/useConsentForms.js.map +1 -0
- package/dist/useConsentHistory.d.ts +31 -0
- package/dist/useConsentHistory.js +17 -0
- package/dist/useConsentHistory.js.map +1 -0
- package/dist/useSubmitConsent.d.ts +12 -0
- package/dist/useSubmitConsent.js +23 -0
- package/dist/useSubmitConsent.js.map +1 -0
- package/package.json +4 -2
- package/src/BooleanField.test.tsx +3 -5
- package/src/BooleanField.tsx +33 -31
- package/src/ConsentFormScreen.tsx +216 -0
- package/src/ConsentHistory.tsx +249 -0
- package/src/ConsentNavigator.test.tsx +111 -0
- package/src/ConsentNavigator.tsx +128 -0
- package/src/DataTable.tsx +1 -1
- package/src/DateTimeActionSheet.tsx +19 -6
- package/src/DateTimeField.tsx +416 -133
- package/src/DraggableList.tsx +424 -0
- package/src/Link.tsx +1 -1
- package/src/MarkdownEditor.tsx +66 -0
- package/src/MarkdownEditorField.tsx +32 -28
- package/src/Modal.tsx +19 -1
- package/src/PickerSelect.tsx +11 -0
- package/src/TerrenoProvider.tsx +10 -1
- package/src/TimezonePicker.test.tsx +9 -1
- package/src/UpgradeRequiredScreen.tsx +52 -0
- package/src/__snapshots__/BooleanField.test.tsx.snap +167 -203
- package/src/__snapshots__/DataTable.test.tsx.snap +0 -114
- package/src/__snapshots__/Field.test.tsx.snap +53 -69
- package/src/__snapshots__/Link.test.tsx.snap +14 -21
- package/src/__snapshots__/TimezonePicker.test.tsx.snap +0 -4710
- package/src/generateConsentHistoryPdf.ts +211 -0
- package/src/index.tsx +9 -1
- package/src/useConsentForms.ts +70 -0
- package/src/useConsentHistory.ts +40 -0
- package/src/useSubmitConsent.ts +35 -0
|
@@ -1305,4716 +1305,6 @@ exports[`TimezonePicker renders USA timezones by default 1`] = `
|
|
|
1305
1305
|
}
|
|
1306
1306
|
`;
|
|
1307
1307
|
|
|
1308
|
-
exports[`TimezonePicker renders worldwide timezones when specified 1`] = `
|
|
1309
|
-
{
|
|
1310
|
-
"$$typeof": Symbol(react.test.json),
|
|
1311
|
-
"children": [
|
|
1312
|
-
{
|
|
1313
|
-
"$$typeof": Symbol(react.test.json),
|
|
1314
|
-
"children": [
|
|
1315
|
-
"Timezone",
|
|
1316
|
-
],
|
|
1317
|
-
"props": {
|
|
1318
|
-
"style": {
|
|
1319
|
-
"color": "#1C1C1C",
|
|
1320
|
-
"fontSize": 14,
|
|
1321
|
-
"fontWeight": 600,
|
|
1322
|
-
"lineHeight": 22.4,
|
|
1323
|
-
},
|
|
1324
|
-
},
|
|
1325
|
-
"type": "Text",
|
|
1326
|
-
},
|
|
1327
|
-
{
|
|
1328
|
-
"$$typeof": Symbol(react.test.json),
|
|
1329
|
-
"children": [
|
|
1330
|
-
{
|
|
1331
|
-
"$$typeof": Symbol(react.test.json),
|
|
1332
|
-
"children": [
|
|
1333
|
-
{
|
|
1334
|
-
"$$typeof": Symbol(react.test.json),
|
|
1335
|
-
"children": [
|
|
1336
|
-
{
|
|
1337
|
-
"$$typeof": Symbol(react.test.json),
|
|
1338
|
-
"children": null,
|
|
1339
|
-
"props": {
|
|
1340
|
-
"readOnly": true,
|
|
1341
|
-
"style": {
|
|
1342
|
-
"color": "#1C1C1C",
|
|
1343
|
-
},
|
|
1344
|
-
"testID": "text_input",
|
|
1345
|
-
"value": "Europe/London",
|
|
1346
|
-
},
|
|
1347
|
-
"type": "TextInput",
|
|
1348
|
-
},
|
|
1349
|
-
{
|
|
1350
|
-
"$$typeof": Symbol(react.test.json),
|
|
1351
|
-
"children": null,
|
|
1352
|
-
"props": {
|
|
1353
|
-
"style": {
|
|
1354
|
-
"pointerEvents": "none",
|
|
1355
|
-
},
|
|
1356
|
-
"testID": "icon_container",
|
|
1357
|
-
},
|
|
1358
|
-
"type": "View",
|
|
1359
|
-
},
|
|
1360
|
-
],
|
|
1361
|
-
"props": {
|
|
1362
|
-
"style": {
|
|
1363
|
-
"flexDirection": "row",
|
|
1364
|
-
"justifyContent": "space-between",
|
|
1365
|
-
"pointerEvents": "box-only",
|
|
1366
|
-
"width": "100%",
|
|
1367
|
-
},
|
|
1368
|
-
"testID": undefined,
|
|
1369
|
-
},
|
|
1370
|
-
"type": "View",
|
|
1371
|
-
},
|
|
1372
|
-
],
|
|
1373
|
-
"props": {
|
|
1374
|
-
"activeOpacity": 1,
|
|
1375
|
-
"onPress": [Function],
|
|
1376
|
-
"style": {
|
|
1377
|
-
"alignItems": "center",
|
|
1378
|
-
"flexDirection": "row",
|
|
1379
|
-
"justifyContent": "center",
|
|
1380
|
-
"minHeight": 40,
|
|
1381
|
-
"width": "95%",
|
|
1382
|
-
},
|
|
1383
|
-
"testID": "ios_touchable_wrapper",
|
|
1384
|
-
},
|
|
1385
|
-
"type": "Pressable",
|
|
1386
|
-
},
|
|
1387
|
-
{
|
|
1388
|
-
"$$typeof": Symbol(react.test.json),
|
|
1389
|
-
"children": [
|
|
1390
|
-
{
|
|
1391
|
-
"$$typeof": Symbol(react.test.json),
|
|
1392
|
-
"children": null,
|
|
1393
|
-
"props": {
|
|
1394
|
-
"aria-role": "button",
|
|
1395
|
-
"onPress": [Function],
|
|
1396
|
-
"style": {
|
|
1397
|
-
"flex": 1,
|
|
1398
|
-
},
|
|
1399
|
-
"testID": "ios_modal_top",
|
|
1400
|
-
},
|
|
1401
|
-
"type": "Pressable",
|
|
1402
|
-
},
|
|
1403
|
-
{
|
|
1404
|
-
"$$typeof": Symbol(react.test.json),
|
|
1405
|
-
"children": [
|
|
1406
|
-
{
|
|
1407
|
-
"$$typeof": Symbol(react.test.json),
|
|
1408
|
-
"children": null,
|
|
1409
|
-
"props": {
|
|
1410
|
-
"style": {
|
|
1411
|
-
"flexDirection": "row",
|
|
1412
|
-
},
|
|
1413
|
-
"testID": undefined,
|
|
1414
|
-
},
|
|
1415
|
-
"type": "View",
|
|
1416
|
-
},
|
|
1417
|
-
{
|
|
1418
|
-
"$$typeof": Symbol(react.test.json),
|
|
1419
|
-
"children": [
|
|
1420
|
-
{
|
|
1421
|
-
"$$typeof": Symbol(react.test.json),
|
|
1422
|
-
"children": [
|
|
1423
|
-
{
|
|
1424
|
-
"$$typeof": Symbol(react.test.json),
|
|
1425
|
-
"children": [
|
|
1426
|
-
"Done",
|
|
1427
|
-
],
|
|
1428
|
-
"props": {
|
|
1429
|
-
"allowFontScaling": false,
|
|
1430
|
-
"style": [
|
|
1431
|
-
{
|
|
1432
|
-
"color": "#007aff",
|
|
1433
|
-
"fontSize": 17,
|
|
1434
|
-
"fontWeight": "600",
|
|
1435
|
-
"paddingRight": 11,
|
|
1436
|
-
"paddingTop": 1,
|
|
1437
|
-
},
|
|
1438
|
-
{},
|
|
1439
|
-
],
|
|
1440
|
-
"testID": "done_text",
|
|
1441
|
-
},
|
|
1442
|
-
"type": "Text",
|
|
1443
|
-
},
|
|
1444
|
-
],
|
|
1445
|
-
"props": {
|
|
1446
|
-
"style": undefined,
|
|
1447
|
-
"testID": "needed_for_touchable",
|
|
1448
|
-
},
|
|
1449
|
-
"type": "View",
|
|
1450
|
-
},
|
|
1451
|
-
],
|
|
1452
|
-
"props": {
|
|
1453
|
-
"hitSlop": {
|
|
1454
|
-
"bottom": 4,
|
|
1455
|
-
"left": 4,
|
|
1456
|
-
"right": 4,
|
|
1457
|
-
"top": 4,
|
|
1458
|
-
},
|
|
1459
|
-
"onPress": [Function],
|
|
1460
|
-
"onPressIn": [Function],
|
|
1461
|
-
"onPressOut": [Function],
|
|
1462
|
-
"testID": "done_button",
|
|
1463
|
-
},
|
|
1464
|
-
"type": "Pressable",
|
|
1465
|
-
},
|
|
1466
|
-
],
|
|
1467
|
-
"props": {
|
|
1468
|
-
"style": {
|
|
1469
|
-
"alignItems": "center",
|
|
1470
|
-
"backgroundColor": "#f8f8f8",
|
|
1471
|
-
"borderTopColor": "#dedede",
|
|
1472
|
-
"borderTopWidth": 1,
|
|
1473
|
-
"flexDirection": "row",
|
|
1474
|
-
"height": 45,
|
|
1475
|
-
"justifyContent": "space-between",
|
|
1476
|
-
"paddingHorizontal": 10,
|
|
1477
|
-
"zIndex": 2,
|
|
1478
|
-
},
|
|
1479
|
-
"testID": "input_accessory_view",
|
|
1480
|
-
},
|
|
1481
|
-
"type": "View",
|
|
1482
|
-
},
|
|
1483
|
-
{
|
|
1484
|
-
"$$typeof": Symbol(react.test.json),
|
|
1485
|
-
"children": [
|
|
1486
|
-
{
|
|
1487
|
-
"$$typeof": Symbol(react.test.json),
|
|
1488
|
-
"children": [
|
|
1489
|
-
{
|
|
1490
|
-
"$$typeof": Symbol(react.test.json),
|
|
1491
|
-
"children": null,
|
|
1492
|
-
"props": {
|
|
1493
|
-
"color": undefined,
|
|
1494
|
-
"label": "Please select an option.",
|
|
1495
|
-
"value": "",
|
|
1496
|
-
},
|
|
1497
|
-
"type": "Picker.Item",
|
|
1498
|
-
},
|
|
1499
|
-
{
|
|
1500
|
-
"$$typeof": Symbol(react.test.json),
|
|
1501
|
-
"children": null,
|
|
1502
|
-
"props": {
|
|
1503
|
-
"color": undefined,
|
|
1504
|
-
"label": "Africa/Abidjan",
|
|
1505
|
-
"value": "Africa/Abidjan",
|
|
1506
|
-
},
|
|
1507
|
-
"type": "Picker.Item",
|
|
1508
|
-
},
|
|
1509
|
-
{
|
|
1510
|
-
"$$typeof": Symbol(react.test.json),
|
|
1511
|
-
"children": null,
|
|
1512
|
-
"props": {
|
|
1513
|
-
"color": undefined,
|
|
1514
|
-
"label": "Africa/Accra",
|
|
1515
|
-
"value": "Africa/Accra",
|
|
1516
|
-
},
|
|
1517
|
-
"type": "Picker.Item",
|
|
1518
|
-
},
|
|
1519
|
-
{
|
|
1520
|
-
"$$typeof": Symbol(react.test.json),
|
|
1521
|
-
"children": null,
|
|
1522
|
-
"props": {
|
|
1523
|
-
"color": undefined,
|
|
1524
|
-
"label": "Africa/Addis_Ababa",
|
|
1525
|
-
"value": "Africa/Addis_Ababa",
|
|
1526
|
-
},
|
|
1527
|
-
"type": "Picker.Item",
|
|
1528
|
-
},
|
|
1529
|
-
{
|
|
1530
|
-
"$$typeof": Symbol(react.test.json),
|
|
1531
|
-
"children": null,
|
|
1532
|
-
"props": {
|
|
1533
|
-
"color": undefined,
|
|
1534
|
-
"label": "Africa/Algiers",
|
|
1535
|
-
"value": "Africa/Algiers",
|
|
1536
|
-
},
|
|
1537
|
-
"type": "Picker.Item",
|
|
1538
|
-
},
|
|
1539
|
-
{
|
|
1540
|
-
"$$typeof": Symbol(react.test.json),
|
|
1541
|
-
"children": null,
|
|
1542
|
-
"props": {
|
|
1543
|
-
"color": undefined,
|
|
1544
|
-
"label": "Africa/Asmera",
|
|
1545
|
-
"value": "Africa/Asmera",
|
|
1546
|
-
},
|
|
1547
|
-
"type": "Picker.Item",
|
|
1548
|
-
},
|
|
1549
|
-
{
|
|
1550
|
-
"$$typeof": Symbol(react.test.json),
|
|
1551
|
-
"children": null,
|
|
1552
|
-
"props": {
|
|
1553
|
-
"color": undefined,
|
|
1554
|
-
"label": "Africa/Bamako",
|
|
1555
|
-
"value": "Africa/Bamako",
|
|
1556
|
-
},
|
|
1557
|
-
"type": "Picker.Item",
|
|
1558
|
-
},
|
|
1559
|
-
{
|
|
1560
|
-
"$$typeof": Symbol(react.test.json),
|
|
1561
|
-
"children": null,
|
|
1562
|
-
"props": {
|
|
1563
|
-
"color": undefined,
|
|
1564
|
-
"label": "Africa/Bangui",
|
|
1565
|
-
"value": "Africa/Bangui",
|
|
1566
|
-
},
|
|
1567
|
-
"type": "Picker.Item",
|
|
1568
|
-
},
|
|
1569
|
-
{
|
|
1570
|
-
"$$typeof": Symbol(react.test.json),
|
|
1571
|
-
"children": null,
|
|
1572
|
-
"props": {
|
|
1573
|
-
"color": undefined,
|
|
1574
|
-
"label": "Africa/Banjul",
|
|
1575
|
-
"value": "Africa/Banjul",
|
|
1576
|
-
},
|
|
1577
|
-
"type": "Picker.Item",
|
|
1578
|
-
},
|
|
1579
|
-
{
|
|
1580
|
-
"$$typeof": Symbol(react.test.json),
|
|
1581
|
-
"children": null,
|
|
1582
|
-
"props": {
|
|
1583
|
-
"color": undefined,
|
|
1584
|
-
"label": "Africa/Bissau",
|
|
1585
|
-
"value": "Africa/Bissau",
|
|
1586
|
-
},
|
|
1587
|
-
"type": "Picker.Item",
|
|
1588
|
-
},
|
|
1589
|
-
{
|
|
1590
|
-
"$$typeof": Symbol(react.test.json),
|
|
1591
|
-
"children": null,
|
|
1592
|
-
"props": {
|
|
1593
|
-
"color": undefined,
|
|
1594
|
-
"label": "Africa/Blantyre",
|
|
1595
|
-
"value": "Africa/Blantyre",
|
|
1596
|
-
},
|
|
1597
|
-
"type": "Picker.Item",
|
|
1598
|
-
},
|
|
1599
|
-
{
|
|
1600
|
-
"$$typeof": Symbol(react.test.json),
|
|
1601
|
-
"children": null,
|
|
1602
|
-
"props": {
|
|
1603
|
-
"color": undefined,
|
|
1604
|
-
"label": "Africa/Brazzaville",
|
|
1605
|
-
"value": "Africa/Brazzaville",
|
|
1606
|
-
},
|
|
1607
|
-
"type": "Picker.Item",
|
|
1608
|
-
},
|
|
1609
|
-
{
|
|
1610
|
-
"$$typeof": Symbol(react.test.json),
|
|
1611
|
-
"children": null,
|
|
1612
|
-
"props": {
|
|
1613
|
-
"color": undefined,
|
|
1614
|
-
"label": "Africa/Bujumbura",
|
|
1615
|
-
"value": "Africa/Bujumbura",
|
|
1616
|
-
},
|
|
1617
|
-
"type": "Picker.Item",
|
|
1618
|
-
},
|
|
1619
|
-
{
|
|
1620
|
-
"$$typeof": Symbol(react.test.json),
|
|
1621
|
-
"children": null,
|
|
1622
|
-
"props": {
|
|
1623
|
-
"color": undefined,
|
|
1624
|
-
"label": "Africa/Cairo",
|
|
1625
|
-
"value": "Africa/Cairo",
|
|
1626
|
-
},
|
|
1627
|
-
"type": "Picker.Item",
|
|
1628
|
-
},
|
|
1629
|
-
{
|
|
1630
|
-
"$$typeof": Symbol(react.test.json),
|
|
1631
|
-
"children": null,
|
|
1632
|
-
"props": {
|
|
1633
|
-
"color": undefined,
|
|
1634
|
-
"label": "Africa/Casablanca",
|
|
1635
|
-
"value": "Africa/Casablanca",
|
|
1636
|
-
},
|
|
1637
|
-
"type": "Picker.Item",
|
|
1638
|
-
},
|
|
1639
|
-
{
|
|
1640
|
-
"$$typeof": Symbol(react.test.json),
|
|
1641
|
-
"children": null,
|
|
1642
|
-
"props": {
|
|
1643
|
-
"color": undefined,
|
|
1644
|
-
"label": "Africa/Ceuta",
|
|
1645
|
-
"value": "Africa/Ceuta",
|
|
1646
|
-
},
|
|
1647
|
-
"type": "Picker.Item",
|
|
1648
|
-
},
|
|
1649
|
-
{
|
|
1650
|
-
"$$typeof": Symbol(react.test.json),
|
|
1651
|
-
"children": null,
|
|
1652
|
-
"props": {
|
|
1653
|
-
"color": undefined,
|
|
1654
|
-
"label": "Africa/Conakry",
|
|
1655
|
-
"value": "Africa/Conakry",
|
|
1656
|
-
},
|
|
1657
|
-
"type": "Picker.Item",
|
|
1658
|
-
},
|
|
1659
|
-
{
|
|
1660
|
-
"$$typeof": Symbol(react.test.json),
|
|
1661
|
-
"children": null,
|
|
1662
|
-
"props": {
|
|
1663
|
-
"color": undefined,
|
|
1664
|
-
"label": "Africa/Dakar",
|
|
1665
|
-
"value": "Africa/Dakar",
|
|
1666
|
-
},
|
|
1667
|
-
"type": "Picker.Item",
|
|
1668
|
-
},
|
|
1669
|
-
{
|
|
1670
|
-
"$$typeof": Symbol(react.test.json),
|
|
1671
|
-
"children": null,
|
|
1672
|
-
"props": {
|
|
1673
|
-
"color": undefined,
|
|
1674
|
-
"label": "Africa/Dar_es_Salaam",
|
|
1675
|
-
"value": "Africa/Dar_es_Salaam",
|
|
1676
|
-
},
|
|
1677
|
-
"type": "Picker.Item",
|
|
1678
|
-
},
|
|
1679
|
-
{
|
|
1680
|
-
"$$typeof": Symbol(react.test.json),
|
|
1681
|
-
"children": null,
|
|
1682
|
-
"props": {
|
|
1683
|
-
"color": undefined,
|
|
1684
|
-
"label": "Africa/Djibouti",
|
|
1685
|
-
"value": "Africa/Djibouti",
|
|
1686
|
-
},
|
|
1687
|
-
"type": "Picker.Item",
|
|
1688
|
-
},
|
|
1689
|
-
{
|
|
1690
|
-
"$$typeof": Symbol(react.test.json),
|
|
1691
|
-
"children": null,
|
|
1692
|
-
"props": {
|
|
1693
|
-
"color": undefined,
|
|
1694
|
-
"label": "Africa/Douala",
|
|
1695
|
-
"value": "Africa/Douala",
|
|
1696
|
-
},
|
|
1697
|
-
"type": "Picker.Item",
|
|
1698
|
-
},
|
|
1699
|
-
{
|
|
1700
|
-
"$$typeof": Symbol(react.test.json),
|
|
1701
|
-
"children": null,
|
|
1702
|
-
"props": {
|
|
1703
|
-
"color": undefined,
|
|
1704
|
-
"label": "Africa/El_Aaiun",
|
|
1705
|
-
"value": "Africa/El_Aaiun",
|
|
1706
|
-
},
|
|
1707
|
-
"type": "Picker.Item",
|
|
1708
|
-
},
|
|
1709
|
-
{
|
|
1710
|
-
"$$typeof": Symbol(react.test.json),
|
|
1711
|
-
"children": null,
|
|
1712
|
-
"props": {
|
|
1713
|
-
"color": undefined,
|
|
1714
|
-
"label": "Africa/Freetown",
|
|
1715
|
-
"value": "Africa/Freetown",
|
|
1716
|
-
},
|
|
1717
|
-
"type": "Picker.Item",
|
|
1718
|
-
},
|
|
1719
|
-
{
|
|
1720
|
-
"$$typeof": Symbol(react.test.json),
|
|
1721
|
-
"children": null,
|
|
1722
|
-
"props": {
|
|
1723
|
-
"color": undefined,
|
|
1724
|
-
"label": "Africa/Gaborone",
|
|
1725
|
-
"value": "Africa/Gaborone",
|
|
1726
|
-
},
|
|
1727
|
-
"type": "Picker.Item",
|
|
1728
|
-
},
|
|
1729
|
-
{
|
|
1730
|
-
"$$typeof": Symbol(react.test.json),
|
|
1731
|
-
"children": null,
|
|
1732
|
-
"props": {
|
|
1733
|
-
"color": undefined,
|
|
1734
|
-
"label": "Africa/Harare",
|
|
1735
|
-
"value": "Africa/Harare",
|
|
1736
|
-
},
|
|
1737
|
-
"type": "Picker.Item",
|
|
1738
|
-
},
|
|
1739
|
-
{
|
|
1740
|
-
"$$typeof": Symbol(react.test.json),
|
|
1741
|
-
"children": null,
|
|
1742
|
-
"props": {
|
|
1743
|
-
"color": undefined,
|
|
1744
|
-
"label": "Africa/Johannesburg",
|
|
1745
|
-
"value": "Africa/Johannesburg",
|
|
1746
|
-
},
|
|
1747
|
-
"type": "Picker.Item",
|
|
1748
|
-
},
|
|
1749
|
-
{
|
|
1750
|
-
"$$typeof": Symbol(react.test.json),
|
|
1751
|
-
"children": null,
|
|
1752
|
-
"props": {
|
|
1753
|
-
"color": undefined,
|
|
1754
|
-
"label": "Africa/Juba",
|
|
1755
|
-
"value": "Africa/Juba",
|
|
1756
|
-
},
|
|
1757
|
-
"type": "Picker.Item",
|
|
1758
|
-
},
|
|
1759
|
-
{
|
|
1760
|
-
"$$typeof": Symbol(react.test.json),
|
|
1761
|
-
"children": null,
|
|
1762
|
-
"props": {
|
|
1763
|
-
"color": undefined,
|
|
1764
|
-
"label": "Africa/Kampala",
|
|
1765
|
-
"value": "Africa/Kampala",
|
|
1766
|
-
},
|
|
1767
|
-
"type": "Picker.Item",
|
|
1768
|
-
},
|
|
1769
|
-
{
|
|
1770
|
-
"$$typeof": Symbol(react.test.json),
|
|
1771
|
-
"children": null,
|
|
1772
|
-
"props": {
|
|
1773
|
-
"color": undefined,
|
|
1774
|
-
"label": "Africa/Khartoum",
|
|
1775
|
-
"value": "Africa/Khartoum",
|
|
1776
|
-
},
|
|
1777
|
-
"type": "Picker.Item",
|
|
1778
|
-
},
|
|
1779
|
-
{
|
|
1780
|
-
"$$typeof": Symbol(react.test.json),
|
|
1781
|
-
"children": null,
|
|
1782
|
-
"props": {
|
|
1783
|
-
"color": undefined,
|
|
1784
|
-
"label": "Africa/Kigali",
|
|
1785
|
-
"value": "Africa/Kigali",
|
|
1786
|
-
},
|
|
1787
|
-
"type": "Picker.Item",
|
|
1788
|
-
},
|
|
1789
|
-
{
|
|
1790
|
-
"$$typeof": Symbol(react.test.json),
|
|
1791
|
-
"children": null,
|
|
1792
|
-
"props": {
|
|
1793
|
-
"color": undefined,
|
|
1794
|
-
"label": "Africa/Kinshasa",
|
|
1795
|
-
"value": "Africa/Kinshasa",
|
|
1796
|
-
},
|
|
1797
|
-
"type": "Picker.Item",
|
|
1798
|
-
},
|
|
1799
|
-
{
|
|
1800
|
-
"$$typeof": Symbol(react.test.json),
|
|
1801
|
-
"children": null,
|
|
1802
|
-
"props": {
|
|
1803
|
-
"color": undefined,
|
|
1804
|
-
"label": "Africa/Lagos",
|
|
1805
|
-
"value": "Africa/Lagos",
|
|
1806
|
-
},
|
|
1807
|
-
"type": "Picker.Item",
|
|
1808
|
-
},
|
|
1809
|
-
{
|
|
1810
|
-
"$$typeof": Symbol(react.test.json),
|
|
1811
|
-
"children": null,
|
|
1812
|
-
"props": {
|
|
1813
|
-
"color": undefined,
|
|
1814
|
-
"label": "Africa/Libreville",
|
|
1815
|
-
"value": "Africa/Libreville",
|
|
1816
|
-
},
|
|
1817
|
-
"type": "Picker.Item",
|
|
1818
|
-
},
|
|
1819
|
-
{
|
|
1820
|
-
"$$typeof": Symbol(react.test.json),
|
|
1821
|
-
"children": null,
|
|
1822
|
-
"props": {
|
|
1823
|
-
"color": undefined,
|
|
1824
|
-
"label": "Africa/Lome",
|
|
1825
|
-
"value": "Africa/Lome",
|
|
1826
|
-
},
|
|
1827
|
-
"type": "Picker.Item",
|
|
1828
|
-
},
|
|
1829
|
-
{
|
|
1830
|
-
"$$typeof": Symbol(react.test.json),
|
|
1831
|
-
"children": null,
|
|
1832
|
-
"props": {
|
|
1833
|
-
"color": undefined,
|
|
1834
|
-
"label": "Africa/Luanda",
|
|
1835
|
-
"value": "Africa/Luanda",
|
|
1836
|
-
},
|
|
1837
|
-
"type": "Picker.Item",
|
|
1838
|
-
},
|
|
1839
|
-
{
|
|
1840
|
-
"$$typeof": Symbol(react.test.json),
|
|
1841
|
-
"children": null,
|
|
1842
|
-
"props": {
|
|
1843
|
-
"color": undefined,
|
|
1844
|
-
"label": "Africa/Lubumbashi",
|
|
1845
|
-
"value": "Africa/Lubumbashi",
|
|
1846
|
-
},
|
|
1847
|
-
"type": "Picker.Item",
|
|
1848
|
-
},
|
|
1849
|
-
{
|
|
1850
|
-
"$$typeof": Symbol(react.test.json),
|
|
1851
|
-
"children": null,
|
|
1852
|
-
"props": {
|
|
1853
|
-
"color": undefined,
|
|
1854
|
-
"label": "Africa/Lusaka",
|
|
1855
|
-
"value": "Africa/Lusaka",
|
|
1856
|
-
},
|
|
1857
|
-
"type": "Picker.Item",
|
|
1858
|
-
},
|
|
1859
|
-
{
|
|
1860
|
-
"$$typeof": Symbol(react.test.json),
|
|
1861
|
-
"children": null,
|
|
1862
|
-
"props": {
|
|
1863
|
-
"color": undefined,
|
|
1864
|
-
"label": "Africa/Malabo",
|
|
1865
|
-
"value": "Africa/Malabo",
|
|
1866
|
-
},
|
|
1867
|
-
"type": "Picker.Item",
|
|
1868
|
-
},
|
|
1869
|
-
{
|
|
1870
|
-
"$$typeof": Symbol(react.test.json),
|
|
1871
|
-
"children": null,
|
|
1872
|
-
"props": {
|
|
1873
|
-
"color": undefined,
|
|
1874
|
-
"label": "Africa/Maputo",
|
|
1875
|
-
"value": "Africa/Maputo",
|
|
1876
|
-
},
|
|
1877
|
-
"type": "Picker.Item",
|
|
1878
|
-
},
|
|
1879
|
-
{
|
|
1880
|
-
"$$typeof": Symbol(react.test.json),
|
|
1881
|
-
"children": null,
|
|
1882
|
-
"props": {
|
|
1883
|
-
"color": undefined,
|
|
1884
|
-
"label": "Africa/Maseru",
|
|
1885
|
-
"value": "Africa/Maseru",
|
|
1886
|
-
},
|
|
1887
|
-
"type": "Picker.Item",
|
|
1888
|
-
},
|
|
1889
|
-
{
|
|
1890
|
-
"$$typeof": Symbol(react.test.json),
|
|
1891
|
-
"children": null,
|
|
1892
|
-
"props": {
|
|
1893
|
-
"color": undefined,
|
|
1894
|
-
"label": "Africa/Mbabane",
|
|
1895
|
-
"value": "Africa/Mbabane",
|
|
1896
|
-
},
|
|
1897
|
-
"type": "Picker.Item",
|
|
1898
|
-
},
|
|
1899
|
-
{
|
|
1900
|
-
"$$typeof": Symbol(react.test.json),
|
|
1901
|
-
"children": null,
|
|
1902
|
-
"props": {
|
|
1903
|
-
"color": undefined,
|
|
1904
|
-
"label": "Africa/Mogadishu",
|
|
1905
|
-
"value": "Africa/Mogadishu",
|
|
1906
|
-
},
|
|
1907
|
-
"type": "Picker.Item",
|
|
1908
|
-
},
|
|
1909
|
-
{
|
|
1910
|
-
"$$typeof": Symbol(react.test.json),
|
|
1911
|
-
"children": null,
|
|
1912
|
-
"props": {
|
|
1913
|
-
"color": undefined,
|
|
1914
|
-
"label": "Africa/Monrovia",
|
|
1915
|
-
"value": "Africa/Monrovia",
|
|
1916
|
-
},
|
|
1917
|
-
"type": "Picker.Item",
|
|
1918
|
-
},
|
|
1919
|
-
{
|
|
1920
|
-
"$$typeof": Symbol(react.test.json),
|
|
1921
|
-
"children": null,
|
|
1922
|
-
"props": {
|
|
1923
|
-
"color": undefined,
|
|
1924
|
-
"label": "Africa/Nairobi",
|
|
1925
|
-
"value": "Africa/Nairobi",
|
|
1926
|
-
},
|
|
1927
|
-
"type": "Picker.Item",
|
|
1928
|
-
},
|
|
1929
|
-
{
|
|
1930
|
-
"$$typeof": Symbol(react.test.json),
|
|
1931
|
-
"children": null,
|
|
1932
|
-
"props": {
|
|
1933
|
-
"color": undefined,
|
|
1934
|
-
"label": "Africa/Ndjamena",
|
|
1935
|
-
"value": "Africa/Ndjamena",
|
|
1936
|
-
},
|
|
1937
|
-
"type": "Picker.Item",
|
|
1938
|
-
},
|
|
1939
|
-
{
|
|
1940
|
-
"$$typeof": Symbol(react.test.json),
|
|
1941
|
-
"children": null,
|
|
1942
|
-
"props": {
|
|
1943
|
-
"color": undefined,
|
|
1944
|
-
"label": "Africa/Niamey",
|
|
1945
|
-
"value": "Africa/Niamey",
|
|
1946
|
-
},
|
|
1947
|
-
"type": "Picker.Item",
|
|
1948
|
-
},
|
|
1949
|
-
{
|
|
1950
|
-
"$$typeof": Symbol(react.test.json),
|
|
1951
|
-
"children": null,
|
|
1952
|
-
"props": {
|
|
1953
|
-
"color": undefined,
|
|
1954
|
-
"label": "Africa/Nouakchott",
|
|
1955
|
-
"value": "Africa/Nouakchott",
|
|
1956
|
-
},
|
|
1957
|
-
"type": "Picker.Item",
|
|
1958
|
-
},
|
|
1959
|
-
{
|
|
1960
|
-
"$$typeof": Symbol(react.test.json),
|
|
1961
|
-
"children": null,
|
|
1962
|
-
"props": {
|
|
1963
|
-
"color": undefined,
|
|
1964
|
-
"label": "Africa/Ouagadougou",
|
|
1965
|
-
"value": "Africa/Ouagadougou",
|
|
1966
|
-
},
|
|
1967
|
-
"type": "Picker.Item",
|
|
1968
|
-
},
|
|
1969
|
-
{
|
|
1970
|
-
"$$typeof": Symbol(react.test.json),
|
|
1971
|
-
"children": null,
|
|
1972
|
-
"props": {
|
|
1973
|
-
"color": undefined,
|
|
1974
|
-
"label": "Africa/Porto-Novo",
|
|
1975
|
-
"value": "Africa/Porto-Novo",
|
|
1976
|
-
},
|
|
1977
|
-
"type": "Picker.Item",
|
|
1978
|
-
},
|
|
1979
|
-
{
|
|
1980
|
-
"$$typeof": Symbol(react.test.json),
|
|
1981
|
-
"children": null,
|
|
1982
|
-
"props": {
|
|
1983
|
-
"color": undefined,
|
|
1984
|
-
"label": "Africa/Sao_Tome",
|
|
1985
|
-
"value": "Africa/Sao_Tome",
|
|
1986
|
-
},
|
|
1987
|
-
"type": "Picker.Item",
|
|
1988
|
-
},
|
|
1989
|
-
{
|
|
1990
|
-
"$$typeof": Symbol(react.test.json),
|
|
1991
|
-
"children": null,
|
|
1992
|
-
"props": {
|
|
1993
|
-
"color": undefined,
|
|
1994
|
-
"label": "Africa/Tripoli",
|
|
1995
|
-
"value": "Africa/Tripoli",
|
|
1996
|
-
},
|
|
1997
|
-
"type": "Picker.Item",
|
|
1998
|
-
},
|
|
1999
|
-
{
|
|
2000
|
-
"$$typeof": Symbol(react.test.json),
|
|
2001
|
-
"children": null,
|
|
2002
|
-
"props": {
|
|
2003
|
-
"color": undefined,
|
|
2004
|
-
"label": "Africa/Tunis",
|
|
2005
|
-
"value": "Africa/Tunis",
|
|
2006
|
-
},
|
|
2007
|
-
"type": "Picker.Item",
|
|
2008
|
-
},
|
|
2009
|
-
{
|
|
2010
|
-
"$$typeof": Symbol(react.test.json),
|
|
2011
|
-
"children": null,
|
|
2012
|
-
"props": {
|
|
2013
|
-
"color": undefined,
|
|
2014
|
-
"label": "Africa/Windhoek",
|
|
2015
|
-
"value": "Africa/Windhoek",
|
|
2016
|
-
},
|
|
2017
|
-
"type": "Picker.Item",
|
|
2018
|
-
},
|
|
2019
|
-
{
|
|
2020
|
-
"$$typeof": Symbol(react.test.json),
|
|
2021
|
-
"children": null,
|
|
2022
|
-
"props": {
|
|
2023
|
-
"color": undefined,
|
|
2024
|
-
"label": "America/Adak",
|
|
2025
|
-
"value": "America/Adak",
|
|
2026
|
-
},
|
|
2027
|
-
"type": "Picker.Item",
|
|
2028
|
-
},
|
|
2029
|
-
{
|
|
2030
|
-
"$$typeof": Symbol(react.test.json),
|
|
2031
|
-
"children": null,
|
|
2032
|
-
"props": {
|
|
2033
|
-
"color": undefined,
|
|
2034
|
-
"label": "America/Anchorage",
|
|
2035
|
-
"value": "America/Anchorage",
|
|
2036
|
-
},
|
|
2037
|
-
"type": "Picker.Item",
|
|
2038
|
-
},
|
|
2039
|
-
{
|
|
2040
|
-
"$$typeof": Symbol(react.test.json),
|
|
2041
|
-
"children": null,
|
|
2042
|
-
"props": {
|
|
2043
|
-
"color": undefined,
|
|
2044
|
-
"label": "America/Anguilla",
|
|
2045
|
-
"value": "America/Anguilla",
|
|
2046
|
-
},
|
|
2047
|
-
"type": "Picker.Item",
|
|
2048
|
-
},
|
|
2049
|
-
{
|
|
2050
|
-
"$$typeof": Symbol(react.test.json),
|
|
2051
|
-
"children": null,
|
|
2052
|
-
"props": {
|
|
2053
|
-
"color": undefined,
|
|
2054
|
-
"label": "America/Antigua",
|
|
2055
|
-
"value": "America/Antigua",
|
|
2056
|
-
},
|
|
2057
|
-
"type": "Picker.Item",
|
|
2058
|
-
},
|
|
2059
|
-
{
|
|
2060
|
-
"$$typeof": Symbol(react.test.json),
|
|
2061
|
-
"children": null,
|
|
2062
|
-
"props": {
|
|
2063
|
-
"color": undefined,
|
|
2064
|
-
"label": "America/Araguaina",
|
|
2065
|
-
"value": "America/Araguaina",
|
|
2066
|
-
},
|
|
2067
|
-
"type": "Picker.Item",
|
|
2068
|
-
},
|
|
2069
|
-
{
|
|
2070
|
-
"$$typeof": Symbol(react.test.json),
|
|
2071
|
-
"children": null,
|
|
2072
|
-
"props": {
|
|
2073
|
-
"color": undefined,
|
|
2074
|
-
"label": "America/Argentina/La_Rioja",
|
|
2075
|
-
"value": "America/Argentina/La_Rioja",
|
|
2076
|
-
},
|
|
2077
|
-
"type": "Picker.Item",
|
|
2078
|
-
},
|
|
2079
|
-
{
|
|
2080
|
-
"$$typeof": Symbol(react.test.json),
|
|
2081
|
-
"children": null,
|
|
2082
|
-
"props": {
|
|
2083
|
-
"color": undefined,
|
|
2084
|
-
"label": "America/Argentina/Rio_Gallegos",
|
|
2085
|
-
"value": "America/Argentina/Rio_Gallegos",
|
|
2086
|
-
},
|
|
2087
|
-
"type": "Picker.Item",
|
|
2088
|
-
},
|
|
2089
|
-
{
|
|
2090
|
-
"$$typeof": Symbol(react.test.json),
|
|
2091
|
-
"children": null,
|
|
2092
|
-
"props": {
|
|
2093
|
-
"color": undefined,
|
|
2094
|
-
"label": "America/Argentina/Salta",
|
|
2095
|
-
"value": "America/Argentina/Salta",
|
|
2096
|
-
},
|
|
2097
|
-
"type": "Picker.Item",
|
|
2098
|
-
},
|
|
2099
|
-
{
|
|
2100
|
-
"$$typeof": Symbol(react.test.json),
|
|
2101
|
-
"children": null,
|
|
2102
|
-
"props": {
|
|
2103
|
-
"color": undefined,
|
|
2104
|
-
"label": "America/Argentina/San_Juan",
|
|
2105
|
-
"value": "America/Argentina/San_Juan",
|
|
2106
|
-
},
|
|
2107
|
-
"type": "Picker.Item",
|
|
2108
|
-
},
|
|
2109
|
-
{
|
|
2110
|
-
"$$typeof": Symbol(react.test.json),
|
|
2111
|
-
"children": null,
|
|
2112
|
-
"props": {
|
|
2113
|
-
"color": undefined,
|
|
2114
|
-
"label": "America/Argentina/San_Luis",
|
|
2115
|
-
"value": "America/Argentina/San_Luis",
|
|
2116
|
-
},
|
|
2117
|
-
"type": "Picker.Item",
|
|
2118
|
-
},
|
|
2119
|
-
{
|
|
2120
|
-
"$$typeof": Symbol(react.test.json),
|
|
2121
|
-
"children": null,
|
|
2122
|
-
"props": {
|
|
2123
|
-
"color": undefined,
|
|
2124
|
-
"label": "America/Argentina/Tucuman",
|
|
2125
|
-
"value": "America/Argentina/Tucuman",
|
|
2126
|
-
},
|
|
2127
|
-
"type": "Picker.Item",
|
|
2128
|
-
},
|
|
2129
|
-
{
|
|
2130
|
-
"$$typeof": Symbol(react.test.json),
|
|
2131
|
-
"children": null,
|
|
2132
|
-
"props": {
|
|
2133
|
-
"color": undefined,
|
|
2134
|
-
"label": "America/Argentina/Ushuaia",
|
|
2135
|
-
"value": "America/Argentina/Ushuaia",
|
|
2136
|
-
},
|
|
2137
|
-
"type": "Picker.Item",
|
|
2138
|
-
},
|
|
2139
|
-
{
|
|
2140
|
-
"$$typeof": Symbol(react.test.json),
|
|
2141
|
-
"children": null,
|
|
2142
|
-
"props": {
|
|
2143
|
-
"color": undefined,
|
|
2144
|
-
"label": "America/Aruba",
|
|
2145
|
-
"value": "America/Aruba",
|
|
2146
|
-
},
|
|
2147
|
-
"type": "Picker.Item",
|
|
2148
|
-
},
|
|
2149
|
-
{
|
|
2150
|
-
"$$typeof": Symbol(react.test.json),
|
|
2151
|
-
"children": null,
|
|
2152
|
-
"props": {
|
|
2153
|
-
"color": undefined,
|
|
2154
|
-
"label": "America/Asuncion",
|
|
2155
|
-
"value": "America/Asuncion",
|
|
2156
|
-
},
|
|
2157
|
-
"type": "Picker.Item",
|
|
2158
|
-
},
|
|
2159
|
-
{
|
|
2160
|
-
"$$typeof": Symbol(react.test.json),
|
|
2161
|
-
"children": null,
|
|
2162
|
-
"props": {
|
|
2163
|
-
"color": undefined,
|
|
2164
|
-
"label": "America/Bahia",
|
|
2165
|
-
"value": "America/Bahia",
|
|
2166
|
-
},
|
|
2167
|
-
"type": "Picker.Item",
|
|
2168
|
-
},
|
|
2169
|
-
{
|
|
2170
|
-
"$$typeof": Symbol(react.test.json),
|
|
2171
|
-
"children": null,
|
|
2172
|
-
"props": {
|
|
2173
|
-
"color": undefined,
|
|
2174
|
-
"label": "America/Bahia_Banderas",
|
|
2175
|
-
"value": "America/Bahia_Banderas",
|
|
2176
|
-
},
|
|
2177
|
-
"type": "Picker.Item",
|
|
2178
|
-
},
|
|
2179
|
-
{
|
|
2180
|
-
"$$typeof": Symbol(react.test.json),
|
|
2181
|
-
"children": null,
|
|
2182
|
-
"props": {
|
|
2183
|
-
"color": undefined,
|
|
2184
|
-
"label": "America/Barbados",
|
|
2185
|
-
"value": "America/Barbados",
|
|
2186
|
-
},
|
|
2187
|
-
"type": "Picker.Item",
|
|
2188
|
-
},
|
|
2189
|
-
{
|
|
2190
|
-
"$$typeof": Symbol(react.test.json),
|
|
2191
|
-
"children": null,
|
|
2192
|
-
"props": {
|
|
2193
|
-
"color": undefined,
|
|
2194
|
-
"label": "America/Belem",
|
|
2195
|
-
"value": "America/Belem",
|
|
2196
|
-
},
|
|
2197
|
-
"type": "Picker.Item",
|
|
2198
|
-
},
|
|
2199
|
-
{
|
|
2200
|
-
"$$typeof": Symbol(react.test.json),
|
|
2201
|
-
"children": null,
|
|
2202
|
-
"props": {
|
|
2203
|
-
"color": undefined,
|
|
2204
|
-
"label": "America/Belize",
|
|
2205
|
-
"value": "America/Belize",
|
|
2206
|
-
},
|
|
2207
|
-
"type": "Picker.Item",
|
|
2208
|
-
},
|
|
2209
|
-
{
|
|
2210
|
-
"$$typeof": Symbol(react.test.json),
|
|
2211
|
-
"children": null,
|
|
2212
|
-
"props": {
|
|
2213
|
-
"color": undefined,
|
|
2214
|
-
"label": "America/Blanc-Sablon",
|
|
2215
|
-
"value": "America/Blanc-Sablon",
|
|
2216
|
-
},
|
|
2217
|
-
"type": "Picker.Item",
|
|
2218
|
-
},
|
|
2219
|
-
{
|
|
2220
|
-
"$$typeof": Symbol(react.test.json),
|
|
2221
|
-
"children": null,
|
|
2222
|
-
"props": {
|
|
2223
|
-
"color": undefined,
|
|
2224
|
-
"label": "America/Boa_Vista",
|
|
2225
|
-
"value": "America/Boa_Vista",
|
|
2226
|
-
},
|
|
2227
|
-
"type": "Picker.Item",
|
|
2228
|
-
},
|
|
2229
|
-
{
|
|
2230
|
-
"$$typeof": Symbol(react.test.json),
|
|
2231
|
-
"children": null,
|
|
2232
|
-
"props": {
|
|
2233
|
-
"color": undefined,
|
|
2234
|
-
"label": "America/Bogota",
|
|
2235
|
-
"value": "America/Bogota",
|
|
2236
|
-
},
|
|
2237
|
-
"type": "Picker.Item",
|
|
2238
|
-
},
|
|
2239
|
-
{
|
|
2240
|
-
"$$typeof": Symbol(react.test.json),
|
|
2241
|
-
"children": null,
|
|
2242
|
-
"props": {
|
|
2243
|
-
"color": undefined,
|
|
2244
|
-
"label": "America/Boise",
|
|
2245
|
-
"value": "America/Boise",
|
|
2246
|
-
},
|
|
2247
|
-
"type": "Picker.Item",
|
|
2248
|
-
},
|
|
2249
|
-
{
|
|
2250
|
-
"$$typeof": Symbol(react.test.json),
|
|
2251
|
-
"children": null,
|
|
2252
|
-
"props": {
|
|
2253
|
-
"color": undefined,
|
|
2254
|
-
"label": "America/Buenos_Aires",
|
|
2255
|
-
"value": "America/Buenos_Aires",
|
|
2256
|
-
},
|
|
2257
|
-
"type": "Picker.Item",
|
|
2258
|
-
},
|
|
2259
|
-
{
|
|
2260
|
-
"$$typeof": Symbol(react.test.json),
|
|
2261
|
-
"children": null,
|
|
2262
|
-
"props": {
|
|
2263
|
-
"color": undefined,
|
|
2264
|
-
"label": "America/Cambridge_Bay",
|
|
2265
|
-
"value": "America/Cambridge_Bay",
|
|
2266
|
-
},
|
|
2267
|
-
"type": "Picker.Item",
|
|
2268
|
-
},
|
|
2269
|
-
{
|
|
2270
|
-
"$$typeof": Symbol(react.test.json),
|
|
2271
|
-
"children": null,
|
|
2272
|
-
"props": {
|
|
2273
|
-
"color": undefined,
|
|
2274
|
-
"label": "America/Campo_Grande",
|
|
2275
|
-
"value": "America/Campo_Grande",
|
|
2276
|
-
},
|
|
2277
|
-
"type": "Picker.Item",
|
|
2278
|
-
},
|
|
2279
|
-
{
|
|
2280
|
-
"$$typeof": Symbol(react.test.json),
|
|
2281
|
-
"children": null,
|
|
2282
|
-
"props": {
|
|
2283
|
-
"color": undefined,
|
|
2284
|
-
"label": "America/Cancun",
|
|
2285
|
-
"value": "America/Cancun",
|
|
2286
|
-
},
|
|
2287
|
-
"type": "Picker.Item",
|
|
2288
|
-
},
|
|
2289
|
-
{
|
|
2290
|
-
"$$typeof": Symbol(react.test.json),
|
|
2291
|
-
"children": null,
|
|
2292
|
-
"props": {
|
|
2293
|
-
"color": undefined,
|
|
2294
|
-
"label": "America/Caracas",
|
|
2295
|
-
"value": "America/Caracas",
|
|
2296
|
-
},
|
|
2297
|
-
"type": "Picker.Item",
|
|
2298
|
-
},
|
|
2299
|
-
{
|
|
2300
|
-
"$$typeof": Symbol(react.test.json),
|
|
2301
|
-
"children": null,
|
|
2302
|
-
"props": {
|
|
2303
|
-
"color": undefined,
|
|
2304
|
-
"label": "America/Catamarca",
|
|
2305
|
-
"value": "America/Catamarca",
|
|
2306
|
-
},
|
|
2307
|
-
"type": "Picker.Item",
|
|
2308
|
-
},
|
|
2309
|
-
{
|
|
2310
|
-
"$$typeof": Symbol(react.test.json),
|
|
2311
|
-
"children": null,
|
|
2312
|
-
"props": {
|
|
2313
|
-
"color": undefined,
|
|
2314
|
-
"label": "America/Cayenne",
|
|
2315
|
-
"value": "America/Cayenne",
|
|
2316
|
-
},
|
|
2317
|
-
"type": "Picker.Item",
|
|
2318
|
-
},
|
|
2319
|
-
{
|
|
2320
|
-
"$$typeof": Symbol(react.test.json),
|
|
2321
|
-
"children": null,
|
|
2322
|
-
"props": {
|
|
2323
|
-
"color": undefined,
|
|
2324
|
-
"label": "America/Cayman",
|
|
2325
|
-
"value": "America/Cayman",
|
|
2326
|
-
},
|
|
2327
|
-
"type": "Picker.Item",
|
|
2328
|
-
},
|
|
2329
|
-
{
|
|
2330
|
-
"$$typeof": Symbol(react.test.json),
|
|
2331
|
-
"children": null,
|
|
2332
|
-
"props": {
|
|
2333
|
-
"color": undefined,
|
|
2334
|
-
"label": "America/Chicago",
|
|
2335
|
-
"value": "America/Chicago",
|
|
2336
|
-
},
|
|
2337
|
-
"type": "Picker.Item",
|
|
2338
|
-
},
|
|
2339
|
-
{
|
|
2340
|
-
"$$typeof": Symbol(react.test.json),
|
|
2341
|
-
"children": null,
|
|
2342
|
-
"props": {
|
|
2343
|
-
"color": undefined,
|
|
2344
|
-
"label": "America/Chihuahua",
|
|
2345
|
-
"value": "America/Chihuahua",
|
|
2346
|
-
},
|
|
2347
|
-
"type": "Picker.Item",
|
|
2348
|
-
},
|
|
2349
|
-
{
|
|
2350
|
-
"$$typeof": Symbol(react.test.json),
|
|
2351
|
-
"children": null,
|
|
2352
|
-
"props": {
|
|
2353
|
-
"color": undefined,
|
|
2354
|
-
"label": "America/Ciudad_Juarez",
|
|
2355
|
-
"value": "America/Ciudad_Juarez",
|
|
2356
|
-
},
|
|
2357
|
-
"type": "Picker.Item",
|
|
2358
|
-
},
|
|
2359
|
-
{
|
|
2360
|
-
"$$typeof": Symbol(react.test.json),
|
|
2361
|
-
"children": null,
|
|
2362
|
-
"props": {
|
|
2363
|
-
"color": undefined,
|
|
2364
|
-
"label": "America/Coral_Harbour",
|
|
2365
|
-
"value": "America/Coral_Harbour",
|
|
2366
|
-
},
|
|
2367
|
-
"type": "Picker.Item",
|
|
2368
|
-
},
|
|
2369
|
-
{
|
|
2370
|
-
"$$typeof": Symbol(react.test.json),
|
|
2371
|
-
"children": null,
|
|
2372
|
-
"props": {
|
|
2373
|
-
"color": undefined,
|
|
2374
|
-
"label": "America/Cordoba",
|
|
2375
|
-
"value": "America/Cordoba",
|
|
2376
|
-
},
|
|
2377
|
-
"type": "Picker.Item",
|
|
2378
|
-
},
|
|
2379
|
-
{
|
|
2380
|
-
"$$typeof": Symbol(react.test.json),
|
|
2381
|
-
"children": null,
|
|
2382
|
-
"props": {
|
|
2383
|
-
"color": undefined,
|
|
2384
|
-
"label": "America/Costa_Rica",
|
|
2385
|
-
"value": "America/Costa_Rica",
|
|
2386
|
-
},
|
|
2387
|
-
"type": "Picker.Item",
|
|
2388
|
-
},
|
|
2389
|
-
{
|
|
2390
|
-
"$$typeof": Symbol(react.test.json),
|
|
2391
|
-
"children": null,
|
|
2392
|
-
"props": {
|
|
2393
|
-
"color": undefined,
|
|
2394
|
-
"label": "America/Creston",
|
|
2395
|
-
"value": "America/Creston",
|
|
2396
|
-
},
|
|
2397
|
-
"type": "Picker.Item",
|
|
2398
|
-
},
|
|
2399
|
-
{
|
|
2400
|
-
"$$typeof": Symbol(react.test.json),
|
|
2401
|
-
"children": null,
|
|
2402
|
-
"props": {
|
|
2403
|
-
"color": undefined,
|
|
2404
|
-
"label": "America/Cuiaba",
|
|
2405
|
-
"value": "America/Cuiaba",
|
|
2406
|
-
},
|
|
2407
|
-
"type": "Picker.Item",
|
|
2408
|
-
},
|
|
2409
|
-
{
|
|
2410
|
-
"$$typeof": Symbol(react.test.json),
|
|
2411
|
-
"children": null,
|
|
2412
|
-
"props": {
|
|
2413
|
-
"color": undefined,
|
|
2414
|
-
"label": "America/Curacao",
|
|
2415
|
-
"value": "America/Curacao",
|
|
2416
|
-
},
|
|
2417
|
-
"type": "Picker.Item",
|
|
2418
|
-
},
|
|
2419
|
-
{
|
|
2420
|
-
"$$typeof": Symbol(react.test.json),
|
|
2421
|
-
"children": null,
|
|
2422
|
-
"props": {
|
|
2423
|
-
"color": undefined,
|
|
2424
|
-
"label": "America/Danmarkshavn",
|
|
2425
|
-
"value": "America/Danmarkshavn",
|
|
2426
|
-
},
|
|
2427
|
-
"type": "Picker.Item",
|
|
2428
|
-
},
|
|
2429
|
-
{
|
|
2430
|
-
"$$typeof": Symbol(react.test.json),
|
|
2431
|
-
"children": null,
|
|
2432
|
-
"props": {
|
|
2433
|
-
"color": undefined,
|
|
2434
|
-
"label": "America/Dawson",
|
|
2435
|
-
"value": "America/Dawson",
|
|
2436
|
-
},
|
|
2437
|
-
"type": "Picker.Item",
|
|
2438
|
-
},
|
|
2439
|
-
{
|
|
2440
|
-
"$$typeof": Symbol(react.test.json),
|
|
2441
|
-
"children": null,
|
|
2442
|
-
"props": {
|
|
2443
|
-
"color": undefined,
|
|
2444
|
-
"label": "America/Dawson_Creek",
|
|
2445
|
-
"value": "America/Dawson_Creek",
|
|
2446
|
-
},
|
|
2447
|
-
"type": "Picker.Item",
|
|
2448
|
-
},
|
|
2449
|
-
{
|
|
2450
|
-
"$$typeof": Symbol(react.test.json),
|
|
2451
|
-
"children": null,
|
|
2452
|
-
"props": {
|
|
2453
|
-
"color": undefined,
|
|
2454
|
-
"label": "America/Denver",
|
|
2455
|
-
"value": "America/Denver",
|
|
2456
|
-
},
|
|
2457
|
-
"type": "Picker.Item",
|
|
2458
|
-
},
|
|
2459
|
-
{
|
|
2460
|
-
"$$typeof": Symbol(react.test.json),
|
|
2461
|
-
"children": null,
|
|
2462
|
-
"props": {
|
|
2463
|
-
"color": undefined,
|
|
2464
|
-
"label": "America/Detroit",
|
|
2465
|
-
"value": "America/Detroit",
|
|
2466
|
-
},
|
|
2467
|
-
"type": "Picker.Item",
|
|
2468
|
-
},
|
|
2469
|
-
{
|
|
2470
|
-
"$$typeof": Symbol(react.test.json),
|
|
2471
|
-
"children": null,
|
|
2472
|
-
"props": {
|
|
2473
|
-
"color": undefined,
|
|
2474
|
-
"label": "America/Dominica",
|
|
2475
|
-
"value": "America/Dominica",
|
|
2476
|
-
},
|
|
2477
|
-
"type": "Picker.Item",
|
|
2478
|
-
},
|
|
2479
|
-
{
|
|
2480
|
-
"$$typeof": Symbol(react.test.json),
|
|
2481
|
-
"children": null,
|
|
2482
|
-
"props": {
|
|
2483
|
-
"color": undefined,
|
|
2484
|
-
"label": "America/Edmonton",
|
|
2485
|
-
"value": "America/Edmonton",
|
|
2486
|
-
},
|
|
2487
|
-
"type": "Picker.Item",
|
|
2488
|
-
},
|
|
2489
|
-
{
|
|
2490
|
-
"$$typeof": Symbol(react.test.json),
|
|
2491
|
-
"children": null,
|
|
2492
|
-
"props": {
|
|
2493
|
-
"color": undefined,
|
|
2494
|
-
"label": "America/Eirunepe",
|
|
2495
|
-
"value": "America/Eirunepe",
|
|
2496
|
-
},
|
|
2497
|
-
"type": "Picker.Item",
|
|
2498
|
-
},
|
|
2499
|
-
{
|
|
2500
|
-
"$$typeof": Symbol(react.test.json),
|
|
2501
|
-
"children": null,
|
|
2502
|
-
"props": {
|
|
2503
|
-
"color": undefined,
|
|
2504
|
-
"label": "America/El_Salvador",
|
|
2505
|
-
"value": "America/El_Salvador",
|
|
2506
|
-
},
|
|
2507
|
-
"type": "Picker.Item",
|
|
2508
|
-
},
|
|
2509
|
-
{
|
|
2510
|
-
"$$typeof": Symbol(react.test.json),
|
|
2511
|
-
"children": null,
|
|
2512
|
-
"props": {
|
|
2513
|
-
"color": undefined,
|
|
2514
|
-
"label": "America/Fort_Nelson",
|
|
2515
|
-
"value": "America/Fort_Nelson",
|
|
2516
|
-
},
|
|
2517
|
-
"type": "Picker.Item",
|
|
2518
|
-
},
|
|
2519
|
-
{
|
|
2520
|
-
"$$typeof": Symbol(react.test.json),
|
|
2521
|
-
"children": null,
|
|
2522
|
-
"props": {
|
|
2523
|
-
"color": undefined,
|
|
2524
|
-
"label": "America/Fortaleza",
|
|
2525
|
-
"value": "America/Fortaleza",
|
|
2526
|
-
},
|
|
2527
|
-
"type": "Picker.Item",
|
|
2528
|
-
},
|
|
2529
|
-
{
|
|
2530
|
-
"$$typeof": Symbol(react.test.json),
|
|
2531
|
-
"children": null,
|
|
2532
|
-
"props": {
|
|
2533
|
-
"color": undefined,
|
|
2534
|
-
"label": "America/Glace_Bay",
|
|
2535
|
-
"value": "America/Glace_Bay",
|
|
2536
|
-
},
|
|
2537
|
-
"type": "Picker.Item",
|
|
2538
|
-
},
|
|
2539
|
-
{
|
|
2540
|
-
"$$typeof": Symbol(react.test.json),
|
|
2541
|
-
"children": null,
|
|
2542
|
-
"props": {
|
|
2543
|
-
"color": undefined,
|
|
2544
|
-
"label": "America/Godthab",
|
|
2545
|
-
"value": "America/Godthab",
|
|
2546
|
-
},
|
|
2547
|
-
"type": "Picker.Item",
|
|
2548
|
-
},
|
|
2549
|
-
{
|
|
2550
|
-
"$$typeof": Symbol(react.test.json),
|
|
2551
|
-
"children": null,
|
|
2552
|
-
"props": {
|
|
2553
|
-
"color": undefined,
|
|
2554
|
-
"label": "America/Goose_Bay",
|
|
2555
|
-
"value": "America/Goose_Bay",
|
|
2556
|
-
},
|
|
2557
|
-
"type": "Picker.Item",
|
|
2558
|
-
},
|
|
2559
|
-
{
|
|
2560
|
-
"$$typeof": Symbol(react.test.json),
|
|
2561
|
-
"children": null,
|
|
2562
|
-
"props": {
|
|
2563
|
-
"color": undefined,
|
|
2564
|
-
"label": "America/Grand_Turk",
|
|
2565
|
-
"value": "America/Grand_Turk",
|
|
2566
|
-
},
|
|
2567
|
-
"type": "Picker.Item",
|
|
2568
|
-
},
|
|
2569
|
-
{
|
|
2570
|
-
"$$typeof": Symbol(react.test.json),
|
|
2571
|
-
"children": null,
|
|
2572
|
-
"props": {
|
|
2573
|
-
"color": undefined,
|
|
2574
|
-
"label": "America/Grenada",
|
|
2575
|
-
"value": "America/Grenada",
|
|
2576
|
-
},
|
|
2577
|
-
"type": "Picker.Item",
|
|
2578
|
-
},
|
|
2579
|
-
{
|
|
2580
|
-
"$$typeof": Symbol(react.test.json),
|
|
2581
|
-
"children": null,
|
|
2582
|
-
"props": {
|
|
2583
|
-
"color": undefined,
|
|
2584
|
-
"label": "America/Guadeloupe",
|
|
2585
|
-
"value": "America/Guadeloupe",
|
|
2586
|
-
},
|
|
2587
|
-
"type": "Picker.Item",
|
|
2588
|
-
},
|
|
2589
|
-
{
|
|
2590
|
-
"$$typeof": Symbol(react.test.json),
|
|
2591
|
-
"children": null,
|
|
2592
|
-
"props": {
|
|
2593
|
-
"color": undefined,
|
|
2594
|
-
"label": "America/Guatemala",
|
|
2595
|
-
"value": "America/Guatemala",
|
|
2596
|
-
},
|
|
2597
|
-
"type": "Picker.Item",
|
|
2598
|
-
},
|
|
2599
|
-
{
|
|
2600
|
-
"$$typeof": Symbol(react.test.json),
|
|
2601
|
-
"children": null,
|
|
2602
|
-
"props": {
|
|
2603
|
-
"color": undefined,
|
|
2604
|
-
"label": "America/Guayaquil",
|
|
2605
|
-
"value": "America/Guayaquil",
|
|
2606
|
-
},
|
|
2607
|
-
"type": "Picker.Item",
|
|
2608
|
-
},
|
|
2609
|
-
{
|
|
2610
|
-
"$$typeof": Symbol(react.test.json),
|
|
2611
|
-
"children": null,
|
|
2612
|
-
"props": {
|
|
2613
|
-
"color": undefined,
|
|
2614
|
-
"label": "America/Guyana",
|
|
2615
|
-
"value": "America/Guyana",
|
|
2616
|
-
},
|
|
2617
|
-
"type": "Picker.Item",
|
|
2618
|
-
},
|
|
2619
|
-
{
|
|
2620
|
-
"$$typeof": Symbol(react.test.json),
|
|
2621
|
-
"children": null,
|
|
2622
|
-
"props": {
|
|
2623
|
-
"color": undefined,
|
|
2624
|
-
"label": "America/Halifax",
|
|
2625
|
-
"value": "America/Halifax",
|
|
2626
|
-
},
|
|
2627
|
-
"type": "Picker.Item",
|
|
2628
|
-
},
|
|
2629
|
-
{
|
|
2630
|
-
"$$typeof": Symbol(react.test.json),
|
|
2631
|
-
"children": null,
|
|
2632
|
-
"props": {
|
|
2633
|
-
"color": undefined,
|
|
2634
|
-
"label": "America/Havana",
|
|
2635
|
-
"value": "America/Havana",
|
|
2636
|
-
},
|
|
2637
|
-
"type": "Picker.Item",
|
|
2638
|
-
},
|
|
2639
|
-
{
|
|
2640
|
-
"$$typeof": Symbol(react.test.json),
|
|
2641
|
-
"children": null,
|
|
2642
|
-
"props": {
|
|
2643
|
-
"color": undefined,
|
|
2644
|
-
"label": "America/Hermosillo",
|
|
2645
|
-
"value": "America/Hermosillo",
|
|
2646
|
-
},
|
|
2647
|
-
"type": "Picker.Item",
|
|
2648
|
-
},
|
|
2649
|
-
{
|
|
2650
|
-
"$$typeof": Symbol(react.test.json),
|
|
2651
|
-
"children": null,
|
|
2652
|
-
"props": {
|
|
2653
|
-
"color": undefined,
|
|
2654
|
-
"label": "America/Indiana/Knox",
|
|
2655
|
-
"value": "America/Indiana/Knox",
|
|
2656
|
-
},
|
|
2657
|
-
"type": "Picker.Item",
|
|
2658
|
-
},
|
|
2659
|
-
{
|
|
2660
|
-
"$$typeof": Symbol(react.test.json),
|
|
2661
|
-
"children": null,
|
|
2662
|
-
"props": {
|
|
2663
|
-
"color": undefined,
|
|
2664
|
-
"label": "America/Indiana/Marengo",
|
|
2665
|
-
"value": "America/Indiana/Marengo",
|
|
2666
|
-
},
|
|
2667
|
-
"type": "Picker.Item",
|
|
2668
|
-
},
|
|
2669
|
-
{
|
|
2670
|
-
"$$typeof": Symbol(react.test.json),
|
|
2671
|
-
"children": null,
|
|
2672
|
-
"props": {
|
|
2673
|
-
"color": undefined,
|
|
2674
|
-
"label": "America/Indiana/Petersburg",
|
|
2675
|
-
"value": "America/Indiana/Petersburg",
|
|
2676
|
-
},
|
|
2677
|
-
"type": "Picker.Item",
|
|
2678
|
-
},
|
|
2679
|
-
{
|
|
2680
|
-
"$$typeof": Symbol(react.test.json),
|
|
2681
|
-
"children": null,
|
|
2682
|
-
"props": {
|
|
2683
|
-
"color": undefined,
|
|
2684
|
-
"label": "America/Indiana/Tell_City",
|
|
2685
|
-
"value": "America/Indiana/Tell_City",
|
|
2686
|
-
},
|
|
2687
|
-
"type": "Picker.Item",
|
|
2688
|
-
},
|
|
2689
|
-
{
|
|
2690
|
-
"$$typeof": Symbol(react.test.json),
|
|
2691
|
-
"children": null,
|
|
2692
|
-
"props": {
|
|
2693
|
-
"color": undefined,
|
|
2694
|
-
"label": "America/Indiana/Vevay",
|
|
2695
|
-
"value": "America/Indiana/Vevay",
|
|
2696
|
-
},
|
|
2697
|
-
"type": "Picker.Item",
|
|
2698
|
-
},
|
|
2699
|
-
{
|
|
2700
|
-
"$$typeof": Symbol(react.test.json),
|
|
2701
|
-
"children": null,
|
|
2702
|
-
"props": {
|
|
2703
|
-
"color": undefined,
|
|
2704
|
-
"label": "America/Indiana/Vincennes",
|
|
2705
|
-
"value": "America/Indiana/Vincennes",
|
|
2706
|
-
},
|
|
2707
|
-
"type": "Picker.Item",
|
|
2708
|
-
},
|
|
2709
|
-
{
|
|
2710
|
-
"$$typeof": Symbol(react.test.json),
|
|
2711
|
-
"children": null,
|
|
2712
|
-
"props": {
|
|
2713
|
-
"color": undefined,
|
|
2714
|
-
"label": "America/Indiana/Winamac",
|
|
2715
|
-
"value": "America/Indiana/Winamac",
|
|
2716
|
-
},
|
|
2717
|
-
"type": "Picker.Item",
|
|
2718
|
-
},
|
|
2719
|
-
{
|
|
2720
|
-
"$$typeof": Symbol(react.test.json),
|
|
2721
|
-
"children": null,
|
|
2722
|
-
"props": {
|
|
2723
|
-
"color": undefined,
|
|
2724
|
-
"label": "America/Indianapolis",
|
|
2725
|
-
"value": "America/Indianapolis",
|
|
2726
|
-
},
|
|
2727
|
-
"type": "Picker.Item",
|
|
2728
|
-
},
|
|
2729
|
-
{
|
|
2730
|
-
"$$typeof": Symbol(react.test.json),
|
|
2731
|
-
"children": null,
|
|
2732
|
-
"props": {
|
|
2733
|
-
"color": undefined,
|
|
2734
|
-
"label": "America/Inuvik",
|
|
2735
|
-
"value": "America/Inuvik",
|
|
2736
|
-
},
|
|
2737
|
-
"type": "Picker.Item",
|
|
2738
|
-
},
|
|
2739
|
-
{
|
|
2740
|
-
"$$typeof": Symbol(react.test.json),
|
|
2741
|
-
"children": null,
|
|
2742
|
-
"props": {
|
|
2743
|
-
"color": undefined,
|
|
2744
|
-
"label": "America/Iqaluit",
|
|
2745
|
-
"value": "America/Iqaluit",
|
|
2746
|
-
},
|
|
2747
|
-
"type": "Picker.Item",
|
|
2748
|
-
},
|
|
2749
|
-
{
|
|
2750
|
-
"$$typeof": Symbol(react.test.json),
|
|
2751
|
-
"children": null,
|
|
2752
|
-
"props": {
|
|
2753
|
-
"color": undefined,
|
|
2754
|
-
"label": "America/Jamaica",
|
|
2755
|
-
"value": "America/Jamaica",
|
|
2756
|
-
},
|
|
2757
|
-
"type": "Picker.Item",
|
|
2758
|
-
},
|
|
2759
|
-
{
|
|
2760
|
-
"$$typeof": Symbol(react.test.json),
|
|
2761
|
-
"children": null,
|
|
2762
|
-
"props": {
|
|
2763
|
-
"color": undefined,
|
|
2764
|
-
"label": "America/Jujuy",
|
|
2765
|
-
"value": "America/Jujuy",
|
|
2766
|
-
},
|
|
2767
|
-
"type": "Picker.Item",
|
|
2768
|
-
},
|
|
2769
|
-
{
|
|
2770
|
-
"$$typeof": Symbol(react.test.json),
|
|
2771
|
-
"children": null,
|
|
2772
|
-
"props": {
|
|
2773
|
-
"color": undefined,
|
|
2774
|
-
"label": "America/Juneau",
|
|
2775
|
-
"value": "America/Juneau",
|
|
2776
|
-
},
|
|
2777
|
-
"type": "Picker.Item",
|
|
2778
|
-
},
|
|
2779
|
-
{
|
|
2780
|
-
"$$typeof": Symbol(react.test.json),
|
|
2781
|
-
"children": null,
|
|
2782
|
-
"props": {
|
|
2783
|
-
"color": undefined,
|
|
2784
|
-
"label": "America/Kentucky/Monticello",
|
|
2785
|
-
"value": "America/Kentucky/Monticello",
|
|
2786
|
-
},
|
|
2787
|
-
"type": "Picker.Item",
|
|
2788
|
-
},
|
|
2789
|
-
{
|
|
2790
|
-
"$$typeof": Symbol(react.test.json),
|
|
2791
|
-
"children": null,
|
|
2792
|
-
"props": {
|
|
2793
|
-
"color": undefined,
|
|
2794
|
-
"label": "America/Kralendijk",
|
|
2795
|
-
"value": "America/Kralendijk",
|
|
2796
|
-
},
|
|
2797
|
-
"type": "Picker.Item",
|
|
2798
|
-
},
|
|
2799
|
-
{
|
|
2800
|
-
"$$typeof": Symbol(react.test.json),
|
|
2801
|
-
"children": null,
|
|
2802
|
-
"props": {
|
|
2803
|
-
"color": undefined,
|
|
2804
|
-
"label": "America/La_Paz",
|
|
2805
|
-
"value": "America/La_Paz",
|
|
2806
|
-
},
|
|
2807
|
-
"type": "Picker.Item",
|
|
2808
|
-
},
|
|
2809
|
-
{
|
|
2810
|
-
"$$typeof": Symbol(react.test.json),
|
|
2811
|
-
"children": null,
|
|
2812
|
-
"props": {
|
|
2813
|
-
"color": undefined,
|
|
2814
|
-
"label": "America/Lima",
|
|
2815
|
-
"value": "America/Lima",
|
|
2816
|
-
},
|
|
2817
|
-
"type": "Picker.Item",
|
|
2818
|
-
},
|
|
2819
|
-
{
|
|
2820
|
-
"$$typeof": Symbol(react.test.json),
|
|
2821
|
-
"children": null,
|
|
2822
|
-
"props": {
|
|
2823
|
-
"color": undefined,
|
|
2824
|
-
"label": "America/Los_Angeles",
|
|
2825
|
-
"value": "America/Los_Angeles",
|
|
2826
|
-
},
|
|
2827
|
-
"type": "Picker.Item",
|
|
2828
|
-
},
|
|
2829
|
-
{
|
|
2830
|
-
"$$typeof": Symbol(react.test.json),
|
|
2831
|
-
"children": null,
|
|
2832
|
-
"props": {
|
|
2833
|
-
"color": undefined,
|
|
2834
|
-
"label": "America/Louisville",
|
|
2835
|
-
"value": "America/Louisville",
|
|
2836
|
-
},
|
|
2837
|
-
"type": "Picker.Item",
|
|
2838
|
-
},
|
|
2839
|
-
{
|
|
2840
|
-
"$$typeof": Symbol(react.test.json),
|
|
2841
|
-
"children": null,
|
|
2842
|
-
"props": {
|
|
2843
|
-
"color": undefined,
|
|
2844
|
-
"label": "America/Lower_Princes",
|
|
2845
|
-
"value": "America/Lower_Princes",
|
|
2846
|
-
},
|
|
2847
|
-
"type": "Picker.Item",
|
|
2848
|
-
},
|
|
2849
|
-
{
|
|
2850
|
-
"$$typeof": Symbol(react.test.json),
|
|
2851
|
-
"children": null,
|
|
2852
|
-
"props": {
|
|
2853
|
-
"color": undefined,
|
|
2854
|
-
"label": "America/Maceio",
|
|
2855
|
-
"value": "America/Maceio",
|
|
2856
|
-
},
|
|
2857
|
-
"type": "Picker.Item",
|
|
2858
|
-
},
|
|
2859
|
-
{
|
|
2860
|
-
"$$typeof": Symbol(react.test.json),
|
|
2861
|
-
"children": null,
|
|
2862
|
-
"props": {
|
|
2863
|
-
"color": undefined,
|
|
2864
|
-
"label": "America/Managua",
|
|
2865
|
-
"value": "America/Managua",
|
|
2866
|
-
},
|
|
2867
|
-
"type": "Picker.Item",
|
|
2868
|
-
},
|
|
2869
|
-
{
|
|
2870
|
-
"$$typeof": Symbol(react.test.json),
|
|
2871
|
-
"children": null,
|
|
2872
|
-
"props": {
|
|
2873
|
-
"color": undefined,
|
|
2874
|
-
"label": "America/Manaus",
|
|
2875
|
-
"value": "America/Manaus",
|
|
2876
|
-
},
|
|
2877
|
-
"type": "Picker.Item",
|
|
2878
|
-
},
|
|
2879
|
-
{
|
|
2880
|
-
"$$typeof": Symbol(react.test.json),
|
|
2881
|
-
"children": null,
|
|
2882
|
-
"props": {
|
|
2883
|
-
"color": undefined,
|
|
2884
|
-
"label": "America/Marigot",
|
|
2885
|
-
"value": "America/Marigot",
|
|
2886
|
-
},
|
|
2887
|
-
"type": "Picker.Item",
|
|
2888
|
-
},
|
|
2889
|
-
{
|
|
2890
|
-
"$$typeof": Symbol(react.test.json),
|
|
2891
|
-
"children": null,
|
|
2892
|
-
"props": {
|
|
2893
|
-
"color": undefined,
|
|
2894
|
-
"label": "America/Martinique",
|
|
2895
|
-
"value": "America/Martinique",
|
|
2896
|
-
},
|
|
2897
|
-
"type": "Picker.Item",
|
|
2898
|
-
},
|
|
2899
|
-
{
|
|
2900
|
-
"$$typeof": Symbol(react.test.json),
|
|
2901
|
-
"children": null,
|
|
2902
|
-
"props": {
|
|
2903
|
-
"color": undefined,
|
|
2904
|
-
"label": "America/Matamoros",
|
|
2905
|
-
"value": "America/Matamoros",
|
|
2906
|
-
},
|
|
2907
|
-
"type": "Picker.Item",
|
|
2908
|
-
},
|
|
2909
|
-
{
|
|
2910
|
-
"$$typeof": Symbol(react.test.json),
|
|
2911
|
-
"children": null,
|
|
2912
|
-
"props": {
|
|
2913
|
-
"color": undefined,
|
|
2914
|
-
"label": "America/Mazatlan",
|
|
2915
|
-
"value": "America/Mazatlan",
|
|
2916
|
-
},
|
|
2917
|
-
"type": "Picker.Item",
|
|
2918
|
-
},
|
|
2919
|
-
{
|
|
2920
|
-
"$$typeof": Symbol(react.test.json),
|
|
2921
|
-
"children": null,
|
|
2922
|
-
"props": {
|
|
2923
|
-
"color": undefined,
|
|
2924
|
-
"label": "America/Mendoza",
|
|
2925
|
-
"value": "America/Mendoza",
|
|
2926
|
-
},
|
|
2927
|
-
"type": "Picker.Item",
|
|
2928
|
-
},
|
|
2929
|
-
{
|
|
2930
|
-
"$$typeof": Symbol(react.test.json),
|
|
2931
|
-
"children": null,
|
|
2932
|
-
"props": {
|
|
2933
|
-
"color": undefined,
|
|
2934
|
-
"label": "America/Menominee",
|
|
2935
|
-
"value": "America/Menominee",
|
|
2936
|
-
},
|
|
2937
|
-
"type": "Picker.Item",
|
|
2938
|
-
},
|
|
2939
|
-
{
|
|
2940
|
-
"$$typeof": Symbol(react.test.json),
|
|
2941
|
-
"children": null,
|
|
2942
|
-
"props": {
|
|
2943
|
-
"color": undefined,
|
|
2944
|
-
"label": "America/Merida",
|
|
2945
|
-
"value": "America/Merida",
|
|
2946
|
-
},
|
|
2947
|
-
"type": "Picker.Item",
|
|
2948
|
-
},
|
|
2949
|
-
{
|
|
2950
|
-
"$$typeof": Symbol(react.test.json),
|
|
2951
|
-
"children": null,
|
|
2952
|
-
"props": {
|
|
2953
|
-
"color": undefined,
|
|
2954
|
-
"label": "America/Metlakatla",
|
|
2955
|
-
"value": "America/Metlakatla",
|
|
2956
|
-
},
|
|
2957
|
-
"type": "Picker.Item",
|
|
2958
|
-
},
|
|
2959
|
-
{
|
|
2960
|
-
"$$typeof": Symbol(react.test.json),
|
|
2961
|
-
"children": null,
|
|
2962
|
-
"props": {
|
|
2963
|
-
"color": undefined,
|
|
2964
|
-
"label": "America/Mexico_City",
|
|
2965
|
-
"value": "America/Mexico_City",
|
|
2966
|
-
},
|
|
2967
|
-
"type": "Picker.Item",
|
|
2968
|
-
},
|
|
2969
|
-
{
|
|
2970
|
-
"$$typeof": Symbol(react.test.json),
|
|
2971
|
-
"children": null,
|
|
2972
|
-
"props": {
|
|
2973
|
-
"color": undefined,
|
|
2974
|
-
"label": "America/Miquelon",
|
|
2975
|
-
"value": "America/Miquelon",
|
|
2976
|
-
},
|
|
2977
|
-
"type": "Picker.Item",
|
|
2978
|
-
},
|
|
2979
|
-
{
|
|
2980
|
-
"$$typeof": Symbol(react.test.json),
|
|
2981
|
-
"children": null,
|
|
2982
|
-
"props": {
|
|
2983
|
-
"color": undefined,
|
|
2984
|
-
"label": "America/Moncton",
|
|
2985
|
-
"value": "America/Moncton",
|
|
2986
|
-
},
|
|
2987
|
-
"type": "Picker.Item",
|
|
2988
|
-
},
|
|
2989
|
-
{
|
|
2990
|
-
"$$typeof": Symbol(react.test.json),
|
|
2991
|
-
"children": null,
|
|
2992
|
-
"props": {
|
|
2993
|
-
"color": undefined,
|
|
2994
|
-
"label": "America/Monterrey",
|
|
2995
|
-
"value": "America/Monterrey",
|
|
2996
|
-
},
|
|
2997
|
-
"type": "Picker.Item",
|
|
2998
|
-
},
|
|
2999
|
-
{
|
|
3000
|
-
"$$typeof": Symbol(react.test.json),
|
|
3001
|
-
"children": null,
|
|
3002
|
-
"props": {
|
|
3003
|
-
"color": undefined,
|
|
3004
|
-
"label": "America/Montevideo",
|
|
3005
|
-
"value": "America/Montevideo",
|
|
3006
|
-
},
|
|
3007
|
-
"type": "Picker.Item",
|
|
3008
|
-
},
|
|
3009
|
-
{
|
|
3010
|
-
"$$typeof": Symbol(react.test.json),
|
|
3011
|
-
"children": null,
|
|
3012
|
-
"props": {
|
|
3013
|
-
"color": undefined,
|
|
3014
|
-
"label": "America/Montserrat",
|
|
3015
|
-
"value": "America/Montserrat",
|
|
3016
|
-
},
|
|
3017
|
-
"type": "Picker.Item",
|
|
3018
|
-
},
|
|
3019
|
-
{
|
|
3020
|
-
"$$typeof": Symbol(react.test.json),
|
|
3021
|
-
"children": null,
|
|
3022
|
-
"props": {
|
|
3023
|
-
"color": undefined,
|
|
3024
|
-
"label": "America/Nassau",
|
|
3025
|
-
"value": "America/Nassau",
|
|
3026
|
-
},
|
|
3027
|
-
"type": "Picker.Item",
|
|
3028
|
-
},
|
|
3029
|
-
{
|
|
3030
|
-
"$$typeof": Symbol(react.test.json),
|
|
3031
|
-
"children": null,
|
|
3032
|
-
"props": {
|
|
3033
|
-
"color": undefined,
|
|
3034
|
-
"label": "America/New_York",
|
|
3035
|
-
"value": "America/New_York",
|
|
3036
|
-
},
|
|
3037
|
-
"type": "Picker.Item",
|
|
3038
|
-
},
|
|
3039
|
-
{
|
|
3040
|
-
"$$typeof": Symbol(react.test.json),
|
|
3041
|
-
"children": null,
|
|
3042
|
-
"props": {
|
|
3043
|
-
"color": undefined,
|
|
3044
|
-
"label": "America/Nome",
|
|
3045
|
-
"value": "America/Nome",
|
|
3046
|
-
},
|
|
3047
|
-
"type": "Picker.Item",
|
|
3048
|
-
},
|
|
3049
|
-
{
|
|
3050
|
-
"$$typeof": Symbol(react.test.json),
|
|
3051
|
-
"children": null,
|
|
3052
|
-
"props": {
|
|
3053
|
-
"color": undefined,
|
|
3054
|
-
"label": "America/Noronha",
|
|
3055
|
-
"value": "America/Noronha",
|
|
3056
|
-
},
|
|
3057
|
-
"type": "Picker.Item",
|
|
3058
|
-
},
|
|
3059
|
-
{
|
|
3060
|
-
"$$typeof": Symbol(react.test.json),
|
|
3061
|
-
"children": null,
|
|
3062
|
-
"props": {
|
|
3063
|
-
"color": undefined,
|
|
3064
|
-
"label": "America/North_Dakota/Beulah",
|
|
3065
|
-
"value": "America/North_Dakota/Beulah",
|
|
3066
|
-
},
|
|
3067
|
-
"type": "Picker.Item",
|
|
3068
|
-
},
|
|
3069
|
-
{
|
|
3070
|
-
"$$typeof": Symbol(react.test.json),
|
|
3071
|
-
"children": null,
|
|
3072
|
-
"props": {
|
|
3073
|
-
"color": undefined,
|
|
3074
|
-
"label": "America/North_Dakota/Center",
|
|
3075
|
-
"value": "America/North_Dakota/Center",
|
|
3076
|
-
},
|
|
3077
|
-
"type": "Picker.Item",
|
|
3078
|
-
},
|
|
3079
|
-
{
|
|
3080
|
-
"$$typeof": Symbol(react.test.json),
|
|
3081
|
-
"children": null,
|
|
3082
|
-
"props": {
|
|
3083
|
-
"color": undefined,
|
|
3084
|
-
"label": "America/North_Dakota/New_Salem",
|
|
3085
|
-
"value": "America/North_Dakota/New_Salem",
|
|
3086
|
-
},
|
|
3087
|
-
"type": "Picker.Item",
|
|
3088
|
-
},
|
|
3089
|
-
{
|
|
3090
|
-
"$$typeof": Symbol(react.test.json),
|
|
3091
|
-
"children": null,
|
|
3092
|
-
"props": {
|
|
3093
|
-
"color": undefined,
|
|
3094
|
-
"label": "America/Ojinaga",
|
|
3095
|
-
"value": "America/Ojinaga",
|
|
3096
|
-
},
|
|
3097
|
-
"type": "Picker.Item",
|
|
3098
|
-
},
|
|
3099
|
-
{
|
|
3100
|
-
"$$typeof": Symbol(react.test.json),
|
|
3101
|
-
"children": null,
|
|
3102
|
-
"props": {
|
|
3103
|
-
"color": undefined,
|
|
3104
|
-
"label": "America/Panama",
|
|
3105
|
-
"value": "America/Panama",
|
|
3106
|
-
},
|
|
3107
|
-
"type": "Picker.Item",
|
|
3108
|
-
},
|
|
3109
|
-
{
|
|
3110
|
-
"$$typeof": Symbol(react.test.json),
|
|
3111
|
-
"children": null,
|
|
3112
|
-
"props": {
|
|
3113
|
-
"color": undefined,
|
|
3114
|
-
"label": "America/Paramaribo",
|
|
3115
|
-
"value": "America/Paramaribo",
|
|
3116
|
-
},
|
|
3117
|
-
"type": "Picker.Item",
|
|
3118
|
-
},
|
|
3119
|
-
{
|
|
3120
|
-
"$$typeof": Symbol(react.test.json),
|
|
3121
|
-
"children": null,
|
|
3122
|
-
"props": {
|
|
3123
|
-
"color": undefined,
|
|
3124
|
-
"label": "America/Phoenix",
|
|
3125
|
-
"value": "America/Phoenix",
|
|
3126
|
-
},
|
|
3127
|
-
"type": "Picker.Item",
|
|
3128
|
-
},
|
|
3129
|
-
{
|
|
3130
|
-
"$$typeof": Symbol(react.test.json),
|
|
3131
|
-
"children": null,
|
|
3132
|
-
"props": {
|
|
3133
|
-
"color": undefined,
|
|
3134
|
-
"label": "America/Port-au-Prince",
|
|
3135
|
-
"value": "America/Port-au-Prince",
|
|
3136
|
-
},
|
|
3137
|
-
"type": "Picker.Item",
|
|
3138
|
-
},
|
|
3139
|
-
{
|
|
3140
|
-
"$$typeof": Symbol(react.test.json),
|
|
3141
|
-
"children": null,
|
|
3142
|
-
"props": {
|
|
3143
|
-
"color": undefined,
|
|
3144
|
-
"label": "America/Port_of_Spain",
|
|
3145
|
-
"value": "America/Port_of_Spain",
|
|
3146
|
-
},
|
|
3147
|
-
"type": "Picker.Item",
|
|
3148
|
-
},
|
|
3149
|
-
{
|
|
3150
|
-
"$$typeof": Symbol(react.test.json),
|
|
3151
|
-
"children": null,
|
|
3152
|
-
"props": {
|
|
3153
|
-
"color": undefined,
|
|
3154
|
-
"label": "America/Porto_Velho",
|
|
3155
|
-
"value": "America/Porto_Velho",
|
|
3156
|
-
},
|
|
3157
|
-
"type": "Picker.Item",
|
|
3158
|
-
},
|
|
3159
|
-
{
|
|
3160
|
-
"$$typeof": Symbol(react.test.json),
|
|
3161
|
-
"children": null,
|
|
3162
|
-
"props": {
|
|
3163
|
-
"color": undefined,
|
|
3164
|
-
"label": "America/Puerto_Rico",
|
|
3165
|
-
"value": "America/Puerto_Rico",
|
|
3166
|
-
},
|
|
3167
|
-
"type": "Picker.Item",
|
|
3168
|
-
},
|
|
3169
|
-
{
|
|
3170
|
-
"$$typeof": Symbol(react.test.json),
|
|
3171
|
-
"children": null,
|
|
3172
|
-
"props": {
|
|
3173
|
-
"color": undefined,
|
|
3174
|
-
"label": "America/Punta_Arenas",
|
|
3175
|
-
"value": "America/Punta_Arenas",
|
|
3176
|
-
},
|
|
3177
|
-
"type": "Picker.Item",
|
|
3178
|
-
},
|
|
3179
|
-
{
|
|
3180
|
-
"$$typeof": Symbol(react.test.json),
|
|
3181
|
-
"children": null,
|
|
3182
|
-
"props": {
|
|
3183
|
-
"color": undefined,
|
|
3184
|
-
"label": "America/Rankin_Inlet",
|
|
3185
|
-
"value": "America/Rankin_Inlet",
|
|
3186
|
-
},
|
|
3187
|
-
"type": "Picker.Item",
|
|
3188
|
-
},
|
|
3189
|
-
{
|
|
3190
|
-
"$$typeof": Symbol(react.test.json),
|
|
3191
|
-
"children": null,
|
|
3192
|
-
"props": {
|
|
3193
|
-
"color": undefined,
|
|
3194
|
-
"label": "America/Recife",
|
|
3195
|
-
"value": "America/Recife",
|
|
3196
|
-
},
|
|
3197
|
-
"type": "Picker.Item",
|
|
3198
|
-
},
|
|
3199
|
-
{
|
|
3200
|
-
"$$typeof": Symbol(react.test.json),
|
|
3201
|
-
"children": null,
|
|
3202
|
-
"props": {
|
|
3203
|
-
"color": undefined,
|
|
3204
|
-
"label": "America/Regina",
|
|
3205
|
-
"value": "America/Regina",
|
|
3206
|
-
},
|
|
3207
|
-
"type": "Picker.Item",
|
|
3208
|
-
},
|
|
3209
|
-
{
|
|
3210
|
-
"$$typeof": Symbol(react.test.json),
|
|
3211
|
-
"children": null,
|
|
3212
|
-
"props": {
|
|
3213
|
-
"color": undefined,
|
|
3214
|
-
"label": "America/Resolute",
|
|
3215
|
-
"value": "America/Resolute",
|
|
3216
|
-
},
|
|
3217
|
-
"type": "Picker.Item",
|
|
3218
|
-
},
|
|
3219
|
-
{
|
|
3220
|
-
"$$typeof": Symbol(react.test.json),
|
|
3221
|
-
"children": null,
|
|
3222
|
-
"props": {
|
|
3223
|
-
"color": undefined,
|
|
3224
|
-
"label": "America/Rio_Branco",
|
|
3225
|
-
"value": "America/Rio_Branco",
|
|
3226
|
-
},
|
|
3227
|
-
"type": "Picker.Item",
|
|
3228
|
-
},
|
|
3229
|
-
{
|
|
3230
|
-
"$$typeof": Symbol(react.test.json),
|
|
3231
|
-
"children": null,
|
|
3232
|
-
"props": {
|
|
3233
|
-
"color": undefined,
|
|
3234
|
-
"label": "America/Santarem",
|
|
3235
|
-
"value": "America/Santarem",
|
|
3236
|
-
},
|
|
3237
|
-
"type": "Picker.Item",
|
|
3238
|
-
},
|
|
3239
|
-
{
|
|
3240
|
-
"$$typeof": Symbol(react.test.json),
|
|
3241
|
-
"children": null,
|
|
3242
|
-
"props": {
|
|
3243
|
-
"color": undefined,
|
|
3244
|
-
"label": "America/Santiago",
|
|
3245
|
-
"value": "America/Santiago",
|
|
3246
|
-
},
|
|
3247
|
-
"type": "Picker.Item",
|
|
3248
|
-
},
|
|
3249
|
-
{
|
|
3250
|
-
"$$typeof": Symbol(react.test.json),
|
|
3251
|
-
"children": null,
|
|
3252
|
-
"props": {
|
|
3253
|
-
"color": undefined,
|
|
3254
|
-
"label": "America/Santo_Domingo",
|
|
3255
|
-
"value": "America/Santo_Domingo",
|
|
3256
|
-
},
|
|
3257
|
-
"type": "Picker.Item",
|
|
3258
|
-
},
|
|
3259
|
-
{
|
|
3260
|
-
"$$typeof": Symbol(react.test.json),
|
|
3261
|
-
"children": null,
|
|
3262
|
-
"props": {
|
|
3263
|
-
"color": undefined,
|
|
3264
|
-
"label": "America/Sao_Paulo",
|
|
3265
|
-
"value": "America/Sao_Paulo",
|
|
3266
|
-
},
|
|
3267
|
-
"type": "Picker.Item",
|
|
3268
|
-
},
|
|
3269
|
-
{
|
|
3270
|
-
"$$typeof": Symbol(react.test.json),
|
|
3271
|
-
"children": null,
|
|
3272
|
-
"props": {
|
|
3273
|
-
"color": undefined,
|
|
3274
|
-
"label": "America/Scoresbysund",
|
|
3275
|
-
"value": "America/Scoresbysund",
|
|
3276
|
-
},
|
|
3277
|
-
"type": "Picker.Item",
|
|
3278
|
-
},
|
|
3279
|
-
{
|
|
3280
|
-
"$$typeof": Symbol(react.test.json),
|
|
3281
|
-
"children": null,
|
|
3282
|
-
"props": {
|
|
3283
|
-
"color": undefined,
|
|
3284
|
-
"label": "America/Sitka",
|
|
3285
|
-
"value": "America/Sitka",
|
|
3286
|
-
},
|
|
3287
|
-
"type": "Picker.Item",
|
|
3288
|
-
},
|
|
3289
|
-
{
|
|
3290
|
-
"$$typeof": Symbol(react.test.json),
|
|
3291
|
-
"children": null,
|
|
3292
|
-
"props": {
|
|
3293
|
-
"color": undefined,
|
|
3294
|
-
"label": "America/St_Barthelemy",
|
|
3295
|
-
"value": "America/St_Barthelemy",
|
|
3296
|
-
},
|
|
3297
|
-
"type": "Picker.Item",
|
|
3298
|
-
},
|
|
3299
|
-
{
|
|
3300
|
-
"$$typeof": Symbol(react.test.json),
|
|
3301
|
-
"children": null,
|
|
3302
|
-
"props": {
|
|
3303
|
-
"color": undefined,
|
|
3304
|
-
"label": "America/St_Johns",
|
|
3305
|
-
"value": "America/St_Johns",
|
|
3306
|
-
},
|
|
3307
|
-
"type": "Picker.Item",
|
|
3308
|
-
},
|
|
3309
|
-
{
|
|
3310
|
-
"$$typeof": Symbol(react.test.json),
|
|
3311
|
-
"children": null,
|
|
3312
|
-
"props": {
|
|
3313
|
-
"color": undefined,
|
|
3314
|
-
"label": "America/St_Kitts",
|
|
3315
|
-
"value": "America/St_Kitts",
|
|
3316
|
-
},
|
|
3317
|
-
"type": "Picker.Item",
|
|
3318
|
-
},
|
|
3319
|
-
{
|
|
3320
|
-
"$$typeof": Symbol(react.test.json),
|
|
3321
|
-
"children": null,
|
|
3322
|
-
"props": {
|
|
3323
|
-
"color": undefined,
|
|
3324
|
-
"label": "America/St_Lucia",
|
|
3325
|
-
"value": "America/St_Lucia",
|
|
3326
|
-
},
|
|
3327
|
-
"type": "Picker.Item",
|
|
3328
|
-
},
|
|
3329
|
-
{
|
|
3330
|
-
"$$typeof": Symbol(react.test.json),
|
|
3331
|
-
"children": null,
|
|
3332
|
-
"props": {
|
|
3333
|
-
"color": undefined,
|
|
3334
|
-
"label": "America/St_Thomas",
|
|
3335
|
-
"value": "America/St_Thomas",
|
|
3336
|
-
},
|
|
3337
|
-
"type": "Picker.Item",
|
|
3338
|
-
},
|
|
3339
|
-
{
|
|
3340
|
-
"$$typeof": Symbol(react.test.json),
|
|
3341
|
-
"children": null,
|
|
3342
|
-
"props": {
|
|
3343
|
-
"color": undefined,
|
|
3344
|
-
"label": "America/St_Vincent",
|
|
3345
|
-
"value": "America/St_Vincent",
|
|
3346
|
-
},
|
|
3347
|
-
"type": "Picker.Item",
|
|
3348
|
-
},
|
|
3349
|
-
{
|
|
3350
|
-
"$$typeof": Symbol(react.test.json),
|
|
3351
|
-
"children": null,
|
|
3352
|
-
"props": {
|
|
3353
|
-
"color": undefined,
|
|
3354
|
-
"label": "America/Swift_Current",
|
|
3355
|
-
"value": "America/Swift_Current",
|
|
3356
|
-
},
|
|
3357
|
-
"type": "Picker.Item",
|
|
3358
|
-
},
|
|
3359
|
-
{
|
|
3360
|
-
"$$typeof": Symbol(react.test.json),
|
|
3361
|
-
"children": null,
|
|
3362
|
-
"props": {
|
|
3363
|
-
"color": undefined,
|
|
3364
|
-
"label": "America/Tegucigalpa",
|
|
3365
|
-
"value": "America/Tegucigalpa",
|
|
3366
|
-
},
|
|
3367
|
-
"type": "Picker.Item",
|
|
3368
|
-
},
|
|
3369
|
-
{
|
|
3370
|
-
"$$typeof": Symbol(react.test.json),
|
|
3371
|
-
"children": null,
|
|
3372
|
-
"props": {
|
|
3373
|
-
"color": undefined,
|
|
3374
|
-
"label": "America/Thule",
|
|
3375
|
-
"value": "America/Thule",
|
|
3376
|
-
},
|
|
3377
|
-
"type": "Picker.Item",
|
|
3378
|
-
},
|
|
3379
|
-
{
|
|
3380
|
-
"$$typeof": Symbol(react.test.json),
|
|
3381
|
-
"children": null,
|
|
3382
|
-
"props": {
|
|
3383
|
-
"color": undefined,
|
|
3384
|
-
"label": "America/Tijuana",
|
|
3385
|
-
"value": "America/Tijuana",
|
|
3386
|
-
},
|
|
3387
|
-
"type": "Picker.Item",
|
|
3388
|
-
},
|
|
3389
|
-
{
|
|
3390
|
-
"$$typeof": Symbol(react.test.json),
|
|
3391
|
-
"children": null,
|
|
3392
|
-
"props": {
|
|
3393
|
-
"color": undefined,
|
|
3394
|
-
"label": "America/Toronto",
|
|
3395
|
-
"value": "America/Toronto",
|
|
3396
|
-
},
|
|
3397
|
-
"type": "Picker.Item",
|
|
3398
|
-
},
|
|
3399
|
-
{
|
|
3400
|
-
"$$typeof": Symbol(react.test.json),
|
|
3401
|
-
"children": null,
|
|
3402
|
-
"props": {
|
|
3403
|
-
"color": undefined,
|
|
3404
|
-
"label": "America/Tortola",
|
|
3405
|
-
"value": "America/Tortola",
|
|
3406
|
-
},
|
|
3407
|
-
"type": "Picker.Item",
|
|
3408
|
-
},
|
|
3409
|
-
{
|
|
3410
|
-
"$$typeof": Symbol(react.test.json),
|
|
3411
|
-
"children": null,
|
|
3412
|
-
"props": {
|
|
3413
|
-
"color": undefined,
|
|
3414
|
-
"label": "America/Vancouver",
|
|
3415
|
-
"value": "America/Vancouver",
|
|
3416
|
-
},
|
|
3417
|
-
"type": "Picker.Item",
|
|
3418
|
-
},
|
|
3419
|
-
{
|
|
3420
|
-
"$$typeof": Symbol(react.test.json),
|
|
3421
|
-
"children": null,
|
|
3422
|
-
"props": {
|
|
3423
|
-
"color": undefined,
|
|
3424
|
-
"label": "America/Whitehorse",
|
|
3425
|
-
"value": "America/Whitehorse",
|
|
3426
|
-
},
|
|
3427
|
-
"type": "Picker.Item",
|
|
3428
|
-
},
|
|
3429
|
-
{
|
|
3430
|
-
"$$typeof": Symbol(react.test.json),
|
|
3431
|
-
"children": null,
|
|
3432
|
-
"props": {
|
|
3433
|
-
"color": undefined,
|
|
3434
|
-
"label": "America/Winnipeg",
|
|
3435
|
-
"value": "America/Winnipeg",
|
|
3436
|
-
},
|
|
3437
|
-
"type": "Picker.Item",
|
|
3438
|
-
},
|
|
3439
|
-
{
|
|
3440
|
-
"$$typeof": Symbol(react.test.json),
|
|
3441
|
-
"children": null,
|
|
3442
|
-
"props": {
|
|
3443
|
-
"color": undefined,
|
|
3444
|
-
"label": "America/Yakutat",
|
|
3445
|
-
"value": "America/Yakutat",
|
|
3446
|
-
},
|
|
3447
|
-
"type": "Picker.Item",
|
|
3448
|
-
},
|
|
3449
|
-
{
|
|
3450
|
-
"$$typeof": Symbol(react.test.json),
|
|
3451
|
-
"children": null,
|
|
3452
|
-
"props": {
|
|
3453
|
-
"color": undefined,
|
|
3454
|
-
"label": "Antarctica/Casey",
|
|
3455
|
-
"value": "Antarctica/Casey",
|
|
3456
|
-
},
|
|
3457
|
-
"type": "Picker.Item",
|
|
3458
|
-
},
|
|
3459
|
-
{
|
|
3460
|
-
"$$typeof": Symbol(react.test.json),
|
|
3461
|
-
"children": null,
|
|
3462
|
-
"props": {
|
|
3463
|
-
"color": undefined,
|
|
3464
|
-
"label": "Antarctica/Davis",
|
|
3465
|
-
"value": "Antarctica/Davis",
|
|
3466
|
-
},
|
|
3467
|
-
"type": "Picker.Item",
|
|
3468
|
-
},
|
|
3469
|
-
{
|
|
3470
|
-
"$$typeof": Symbol(react.test.json),
|
|
3471
|
-
"children": null,
|
|
3472
|
-
"props": {
|
|
3473
|
-
"color": undefined,
|
|
3474
|
-
"label": "Antarctica/DumontDUrville",
|
|
3475
|
-
"value": "Antarctica/DumontDUrville",
|
|
3476
|
-
},
|
|
3477
|
-
"type": "Picker.Item",
|
|
3478
|
-
},
|
|
3479
|
-
{
|
|
3480
|
-
"$$typeof": Symbol(react.test.json),
|
|
3481
|
-
"children": null,
|
|
3482
|
-
"props": {
|
|
3483
|
-
"color": undefined,
|
|
3484
|
-
"label": "Antarctica/Macquarie",
|
|
3485
|
-
"value": "Antarctica/Macquarie",
|
|
3486
|
-
},
|
|
3487
|
-
"type": "Picker.Item",
|
|
3488
|
-
},
|
|
3489
|
-
{
|
|
3490
|
-
"$$typeof": Symbol(react.test.json),
|
|
3491
|
-
"children": null,
|
|
3492
|
-
"props": {
|
|
3493
|
-
"color": undefined,
|
|
3494
|
-
"label": "Antarctica/Mawson",
|
|
3495
|
-
"value": "Antarctica/Mawson",
|
|
3496
|
-
},
|
|
3497
|
-
"type": "Picker.Item",
|
|
3498
|
-
},
|
|
3499
|
-
{
|
|
3500
|
-
"$$typeof": Symbol(react.test.json),
|
|
3501
|
-
"children": null,
|
|
3502
|
-
"props": {
|
|
3503
|
-
"color": undefined,
|
|
3504
|
-
"label": "Antarctica/McMurdo",
|
|
3505
|
-
"value": "Antarctica/McMurdo",
|
|
3506
|
-
},
|
|
3507
|
-
"type": "Picker.Item",
|
|
3508
|
-
},
|
|
3509
|
-
{
|
|
3510
|
-
"$$typeof": Symbol(react.test.json),
|
|
3511
|
-
"children": null,
|
|
3512
|
-
"props": {
|
|
3513
|
-
"color": undefined,
|
|
3514
|
-
"label": "Antarctica/Palmer",
|
|
3515
|
-
"value": "Antarctica/Palmer",
|
|
3516
|
-
},
|
|
3517
|
-
"type": "Picker.Item",
|
|
3518
|
-
},
|
|
3519
|
-
{
|
|
3520
|
-
"$$typeof": Symbol(react.test.json),
|
|
3521
|
-
"children": null,
|
|
3522
|
-
"props": {
|
|
3523
|
-
"color": undefined,
|
|
3524
|
-
"label": "Antarctica/Rothera",
|
|
3525
|
-
"value": "Antarctica/Rothera",
|
|
3526
|
-
},
|
|
3527
|
-
"type": "Picker.Item",
|
|
3528
|
-
},
|
|
3529
|
-
{
|
|
3530
|
-
"$$typeof": Symbol(react.test.json),
|
|
3531
|
-
"children": null,
|
|
3532
|
-
"props": {
|
|
3533
|
-
"color": undefined,
|
|
3534
|
-
"label": "Antarctica/Syowa",
|
|
3535
|
-
"value": "Antarctica/Syowa",
|
|
3536
|
-
},
|
|
3537
|
-
"type": "Picker.Item",
|
|
3538
|
-
},
|
|
3539
|
-
{
|
|
3540
|
-
"$$typeof": Symbol(react.test.json),
|
|
3541
|
-
"children": null,
|
|
3542
|
-
"props": {
|
|
3543
|
-
"color": undefined,
|
|
3544
|
-
"label": "Antarctica/Troll",
|
|
3545
|
-
"value": "Antarctica/Troll",
|
|
3546
|
-
},
|
|
3547
|
-
"type": "Picker.Item",
|
|
3548
|
-
},
|
|
3549
|
-
{
|
|
3550
|
-
"$$typeof": Symbol(react.test.json),
|
|
3551
|
-
"children": null,
|
|
3552
|
-
"props": {
|
|
3553
|
-
"color": undefined,
|
|
3554
|
-
"label": "Antarctica/Vostok",
|
|
3555
|
-
"value": "Antarctica/Vostok",
|
|
3556
|
-
},
|
|
3557
|
-
"type": "Picker.Item",
|
|
3558
|
-
},
|
|
3559
|
-
{
|
|
3560
|
-
"$$typeof": Symbol(react.test.json),
|
|
3561
|
-
"children": null,
|
|
3562
|
-
"props": {
|
|
3563
|
-
"color": undefined,
|
|
3564
|
-
"label": "Arctic/Longyearbyen",
|
|
3565
|
-
"value": "Arctic/Longyearbyen",
|
|
3566
|
-
},
|
|
3567
|
-
"type": "Picker.Item",
|
|
3568
|
-
},
|
|
3569
|
-
{
|
|
3570
|
-
"$$typeof": Symbol(react.test.json),
|
|
3571
|
-
"children": null,
|
|
3572
|
-
"props": {
|
|
3573
|
-
"color": undefined,
|
|
3574
|
-
"label": "Asia/Aden",
|
|
3575
|
-
"value": "Asia/Aden",
|
|
3576
|
-
},
|
|
3577
|
-
"type": "Picker.Item",
|
|
3578
|
-
},
|
|
3579
|
-
{
|
|
3580
|
-
"$$typeof": Symbol(react.test.json),
|
|
3581
|
-
"children": null,
|
|
3582
|
-
"props": {
|
|
3583
|
-
"color": undefined,
|
|
3584
|
-
"label": "Asia/Almaty",
|
|
3585
|
-
"value": "Asia/Almaty",
|
|
3586
|
-
},
|
|
3587
|
-
"type": "Picker.Item",
|
|
3588
|
-
},
|
|
3589
|
-
{
|
|
3590
|
-
"$$typeof": Symbol(react.test.json),
|
|
3591
|
-
"children": null,
|
|
3592
|
-
"props": {
|
|
3593
|
-
"color": undefined,
|
|
3594
|
-
"label": "Asia/Amman",
|
|
3595
|
-
"value": "Asia/Amman",
|
|
3596
|
-
},
|
|
3597
|
-
"type": "Picker.Item",
|
|
3598
|
-
},
|
|
3599
|
-
{
|
|
3600
|
-
"$$typeof": Symbol(react.test.json),
|
|
3601
|
-
"children": null,
|
|
3602
|
-
"props": {
|
|
3603
|
-
"color": undefined,
|
|
3604
|
-
"label": "Asia/Anadyr",
|
|
3605
|
-
"value": "Asia/Anadyr",
|
|
3606
|
-
},
|
|
3607
|
-
"type": "Picker.Item",
|
|
3608
|
-
},
|
|
3609
|
-
{
|
|
3610
|
-
"$$typeof": Symbol(react.test.json),
|
|
3611
|
-
"children": null,
|
|
3612
|
-
"props": {
|
|
3613
|
-
"color": undefined,
|
|
3614
|
-
"label": "Asia/Aqtau",
|
|
3615
|
-
"value": "Asia/Aqtau",
|
|
3616
|
-
},
|
|
3617
|
-
"type": "Picker.Item",
|
|
3618
|
-
},
|
|
3619
|
-
{
|
|
3620
|
-
"$$typeof": Symbol(react.test.json),
|
|
3621
|
-
"children": null,
|
|
3622
|
-
"props": {
|
|
3623
|
-
"color": undefined,
|
|
3624
|
-
"label": "Asia/Aqtobe",
|
|
3625
|
-
"value": "Asia/Aqtobe",
|
|
3626
|
-
},
|
|
3627
|
-
"type": "Picker.Item",
|
|
3628
|
-
},
|
|
3629
|
-
{
|
|
3630
|
-
"$$typeof": Symbol(react.test.json),
|
|
3631
|
-
"children": null,
|
|
3632
|
-
"props": {
|
|
3633
|
-
"color": undefined,
|
|
3634
|
-
"label": "Asia/Ashgabat",
|
|
3635
|
-
"value": "Asia/Ashgabat",
|
|
3636
|
-
},
|
|
3637
|
-
"type": "Picker.Item",
|
|
3638
|
-
},
|
|
3639
|
-
{
|
|
3640
|
-
"$$typeof": Symbol(react.test.json),
|
|
3641
|
-
"children": null,
|
|
3642
|
-
"props": {
|
|
3643
|
-
"color": undefined,
|
|
3644
|
-
"label": "Asia/Atyrau",
|
|
3645
|
-
"value": "Asia/Atyrau",
|
|
3646
|
-
},
|
|
3647
|
-
"type": "Picker.Item",
|
|
3648
|
-
},
|
|
3649
|
-
{
|
|
3650
|
-
"$$typeof": Symbol(react.test.json),
|
|
3651
|
-
"children": null,
|
|
3652
|
-
"props": {
|
|
3653
|
-
"color": undefined,
|
|
3654
|
-
"label": "Asia/Baghdad",
|
|
3655
|
-
"value": "Asia/Baghdad",
|
|
3656
|
-
},
|
|
3657
|
-
"type": "Picker.Item",
|
|
3658
|
-
},
|
|
3659
|
-
{
|
|
3660
|
-
"$$typeof": Symbol(react.test.json),
|
|
3661
|
-
"children": null,
|
|
3662
|
-
"props": {
|
|
3663
|
-
"color": undefined,
|
|
3664
|
-
"label": "Asia/Bahrain",
|
|
3665
|
-
"value": "Asia/Bahrain",
|
|
3666
|
-
},
|
|
3667
|
-
"type": "Picker.Item",
|
|
3668
|
-
},
|
|
3669
|
-
{
|
|
3670
|
-
"$$typeof": Symbol(react.test.json),
|
|
3671
|
-
"children": null,
|
|
3672
|
-
"props": {
|
|
3673
|
-
"color": undefined,
|
|
3674
|
-
"label": "Asia/Baku",
|
|
3675
|
-
"value": "Asia/Baku",
|
|
3676
|
-
},
|
|
3677
|
-
"type": "Picker.Item",
|
|
3678
|
-
},
|
|
3679
|
-
{
|
|
3680
|
-
"$$typeof": Symbol(react.test.json),
|
|
3681
|
-
"children": null,
|
|
3682
|
-
"props": {
|
|
3683
|
-
"color": undefined,
|
|
3684
|
-
"label": "Asia/Bangkok",
|
|
3685
|
-
"value": "Asia/Bangkok",
|
|
3686
|
-
},
|
|
3687
|
-
"type": "Picker.Item",
|
|
3688
|
-
},
|
|
3689
|
-
{
|
|
3690
|
-
"$$typeof": Symbol(react.test.json),
|
|
3691
|
-
"children": null,
|
|
3692
|
-
"props": {
|
|
3693
|
-
"color": undefined,
|
|
3694
|
-
"label": "Asia/Barnaul",
|
|
3695
|
-
"value": "Asia/Barnaul",
|
|
3696
|
-
},
|
|
3697
|
-
"type": "Picker.Item",
|
|
3698
|
-
},
|
|
3699
|
-
{
|
|
3700
|
-
"$$typeof": Symbol(react.test.json),
|
|
3701
|
-
"children": null,
|
|
3702
|
-
"props": {
|
|
3703
|
-
"color": undefined,
|
|
3704
|
-
"label": "Asia/Beirut",
|
|
3705
|
-
"value": "Asia/Beirut",
|
|
3706
|
-
},
|
|
3707
|
-
"type": "Picker.Item",
|
|
3708
|
-
},
|
|
3709
|
-
{
|
|
3710
|
-
"$$typeof": Symbol(react.test.json),
|
|
3711
|
-
"children": null,
|
|
3712
|
-
"props": {
|
|
3713
|
-
"color": undefined,
|
|
3714
|
-
"label": "Asia/Bishkek",
|
|
3715
|
-
"value": "Asia/Bishkek",
|
|
3716
|
-
},
|
|
3717
|
-
"type": "Picker.Item",
|
|
3718
|
-
},
|
|
3719
|
-
{
|
|
3720
|
-
"$$typeof": Symbol(react.test.json),
|
|
3721
|
-
"children": null,
|
|
3722
|
-
"props": {
|
|
3723
|
-
"color": undefined,
|
|
3724
|
-
"label": "Asia/Brunei",
|
|
3725
|
-
"value": "Asia/Brunei",
|
|
3726
|
-
},
|
|
3727
|
-
"type": "Picker.Item",
|
|
3728
|
-
},
|
|
3729
|
-
{
|
|
3730
|
-
"$$typeof": Symbol(react.test.json),
|
|
3731
|
-
"children": null,
|
|
3732
|
-
"props": {
|
|
3733
|
-
"color": undefined,
|
|
3734
|
-
"label": "Asia/Calcutta",
|
|
3735
|
-
"value": "Asia/Calcutta",
|
|
3736
|
-
},
|
|
3737
|
-
"type": "Picker.Item",
|
|
3738
|
-
},
|
|
3739
|
-
{
|
|
3740
|
-
"$$typeof": Symbol(react.test.json),
|
|
3741
|
-
"children": null,
|
|
3742
|
-
"props": {
|
|
3743
|
-
"color": undefined,
|
|
3744
|
-
"label": "Asia/Chita",
|
|
3745
|
-
"value": "Asia/Chita",
|
|
3746
|
-
},
|
|
3747
|
-
"type": "Picker.Item",
|
|
3748
|
-
},
|
|
3749
|
-
{
|
|
3750
|
-
"$$typeof": Symbol(react.test.json),
|
|
3751
|
-
"children": null,
|
|
3752
|
-
"props": {
|
|
3753
|
-
"color": undefined,
|
|
3754
|
-
"label": "Asia/Choibalsan",
|
|
3755
|
-
"value": "Asia/Choibalsan",
|
|
3756
|
-
},
|
|
3757
|
-
"type": "Picker.Item",
|
|
3758
|
-
},
|
|
3759
|
-
{
|
|
3760
|
-
"$$typeof": Symbol(react.test.json),
|
|
3761
|
-
"children": null,
|
|
3762
|
-
"props": {
|
|
3763
|
-
"color": undefined,
|
|
3764
|
-
"label": "Asia/Colombo",
|
|
3765
|
-
"value": "Asia/Colombo",
|
|
3766
|
-
},
|
|
3767
|
-
"type": "Picker.Item",
|
|
3768
|
-
},
|
|
3769
|
-
{
|
|
3770
|
-
"$$typeof": Symbol(react.test.json),
|
|
3771
|
-
"children": null,
|
|
3772
|
-
"props": {
|
|
3773
|
-
"color": undefined,
|
|
3774
|
-
"label": "Asia/Damascus",
|
|
3775
|
-
"value": "Asia/Damascus",
|
|
3776
|
-
},
|
|
3777
|
-
"type": "Picker.Item",
|
|
3778
|
-
},
|
|
3779
|
-
{
|
|
3780
|
-
"$$typeof": Symbol(react.test.json),
|
|
3781
|
-
"children": null,
|
|
3782
|
-
"props": {
|
|
3783
|
-
"color": undefined,
|
|
3784
|
-
"label": "Asia/Dhaka",
|
|
3785
|
-
"value": "Asia/Dhaka",
|
|
3786
|
-
},
|
|
3787
|
-
"type": "Picker.Item",
|
|
3788
|
-
},
|
|
3789
|
-
{
|
|
3790
|
-
"$$typeof": Symbol(react.test.json),
|
|
3791
|
-
"children": null,
|
|
3792
|
-
"props": {
|
|
3793
|
-
"color": undefined,
|
|
3794
|
-
"label": "Asia/Dili",
|
|
3795
|
-
"value": "Asia/Dili",
|
|
3796
|
-
},
|
|
3797
|
-
"type": "Picker.Item",
|
|
3798
|
-
},
|
|
3799
|
-
{
|
|
3800
|
-
"$$typeof": Symbol(react.test.json),
|
|
3801
|
-
"children": null,
|
|
3802
|
-
"props": {
|
|
3803
|
-
"color": undefined,
|
|
3804
|
-
"label": "Asia/Dubai",
|
|
3805
|
-
"value": "Asia/Dubai",
|
|
3806
|
-
},
|
|
3807
|
-
"type": "Picker.Item",
|
|
3808
|
-
},
|
|
3809
|
-
{
|
|
3810
|
-
"$$typeof": Symbol(react.test.json),
|
|
3811
|
-
"children": null,
|
|
3812
|
-
"props": {
|
|
3813
|
-
"color": undefined,
|
|
3814
|
-
"label": "Asia/Dushanbe",
|
|
3815
|
-
"value": "Asia/Dushanbe",
|
|
3816
|
-
},
|
|
3817
|
-
"type": "Picker.Item",
|
|
3818
|
-
},
|
|
3819
|
-
{
|
|
3820
|
-
"$$typeof": Symbol(react.test.json),
|
|
3821
|
-
"children": null,
|
|
3822
|
-
"props": {
|
|
3823
|
-
"color": undefined,
|
|
3824
|
-
"label": "Asia/Famagusta",
|
|
3825
|
-
"value": "Asia/Famagusta",
|
|
3826
|
-
},
|
|
3827
|
-
"type": "Picker.Item",
|
|
3828
|
-
},
|
|
3829
|
-
{
|
|
3830
|
-
"$$typeof": Symbol(react.test.json),
|
|
3831
|
-
"children": null,
|
|
3832
|
-
"props": {
|
|
3833
|
-
"color": undefined,
|
|
3834
|
-
"label": "Asia/Gaza",
|
|
3835
|
-
"value": "Asia/Gaza",
|
|
3836
|
-
},
|
|
3837
|
-
"type": "Picker.Item",
|
|
3838
|
-
},
|
|
3839
|
-
{
|
|
3840
|
-
"$$typeof": Symbol(react.test.json),
|
|
3841
|
-
"children": null,
|
|
3842
|
-
"props": {
|
|
3843
|
-
"color": undefined,
|
|
3844
|
-
"label": "Asia/Hebron",
|
|
3845
|
-
"value": "Asia/Hebron",
|
|
3846
|
-
},
|
|
3847
|
-
"type": "Picker.Item",
|
|
3848
|
-
},
|
|
3849
|
-
{
|
|
3850
|
-
"$$typeof": Symbol(react.test.json),
|
|
3851
|
-
"children": null,
|
|
3852
|
-
"props": {
|
|
3853
|
-
"color": undefined,
|
|
3854
|
-
"label": "Asia/Hong_Kong",
|
|
3855
|
-
"value": "Asia/Hong_Kong",
|
|
3856
|
-
},
|
|
3857
|
-
"type": "Picker.Item",
|
|
3858
|
-
},
|
|
3859
|
-
{
|
|
3860
|
-
"$$typeof": Symbol(react.test.json),
|
|
3861
|
-
"children": null,
|
|
3862
|
-
"props": {
|
|
3863
|
-
"color": undefined,
|
|
3864
|
-
"label": "Asia/Hovd",
|
|
3865
|
-
"value": "Asia/Hovd",
|
|
3866
|
-
},
|
|
3867
|
-
"type": "Picker.Item",
|
|
3868
|
-
},
|
|
3869
|
-
{
|
|
3870
|
-
"$$typeof": Symbol(react.test.json),
|
|
3871
|
-
"children": null,
|
|
3872
|
-
"props": {
|
|
3873
|
-
"color": undefined,
|
|
3874
|
-
"label": "Asia/Irkutsk",
|
|
3875
|
-
"value": "Asia/Irkutsk",
|
|
3876
|
-
},
|
|
3877
|
-
"type": "Picker.Item",
|
|
3878
|
-
},
|
|
3879
|
-
{
|
|
3880
|
-
"$$typeof": Symbol(react.test.json),
|
|
3881
|
-
"children": null,
|
|
3882
|
-
"props": {
|
|
3883
|
-
"color": undefined,
|
|
3884
|
-
"label": "Asia/Jakarta",
|
|
3885
|
-
"value": "Asia/Jakarta",
|
|
3886
|
-
},
|
|
3887
|
-
"type": "Picker.Item",
|
|
3888
|
-
},
|
|
3889
|
-
{
|
|
3890
|
-
"$$typeof": Symbol(react.test.json),
|
|
3891
|
-
"children": null,
|
|
3892
|
-
"props": {
|
|
3893
|
-
"color": undefined,
|
|
3894
|
-
"label": "Asia/Jayapura",
|
|
3895
|
-
"value": "Asia/Jayapura",
|
|
3896
|
-
},
|
|
3897
|
-
"type": "Picker.Item",
|
|
3898
|
-
},
|
|
3899
|
-
{
|
|
3900
|
-
"$$typeof": Symbol(react.test.json),
|
|
3901
|
-
"children": null,
|
|
3902
|
-
"props": {
|
|
3903
|
-
"color": undefined,
|
|
3904
|
-
"label": "Asia/Jerusalem",
|
|
3905
|
-
"value": "Asia/Jerusalem",
|
|
3906
|
-
},
|
|
3907
|
-
"type": "Picker.Item",
|
|
3908
|
-
},
|
|
3909
|
-
{
|
|
3910
|
-
"$$typeof": Symbol(react.test.json),
|
|
3911
|
-
"children": null,
|
|
3912
|
-
"props": {
|
|
3913
|
-
"color": undefined,
|
|
3914
|
-
"label": "Asia/Kabul",
|
|
3915
|
-
"value": "Asia/Kabul",
|
|
3916
|
-
},
|
|
3917
|
-
"type": "Picker.Item",
|
|
3918
|
-
},
|
|
3919
|
-
{
|
|
3920
|
-
"$$typeof": Symbol(react.test.json),
|
|
3921
|
-
"children": null,
|
|
3922
|
-
"props": {
|
|
3923
|
-
"color": undefined,
|
|
3924
|
-
"label": "Asia/Kamchatka",
|
|
3925
|
-
"value": "Asia/Kamchatka",
|
|
3926
|
-
},
|
|
3927
|
-
"type": "Picker.Item",
|
|
3928
|
-
},
|
|
3929
|
-
{
|
|
3930
|
-
"$$typeof": Symbol(react.test.json),
|
|
3931
|
-
"children": null,
|
|
3932
|
-
"props": {
|
|
3933
|
-
"color": undefined,
|
|
3934
|
-
"label": "Asia/Karachi",
|
|
3935
|
-
"value": "Asia/Karachi",
|
|
3936
|
-
},
|
|
3937
|
-
"type": "Picker.Item",
|
|
3938
|
-
},
|
|
3939
|
-
{
|
|
3940
|
-
"$$typeof": Symbol(react.test.json),
|
|
3941
|
-
"children": null,
|
|
3942
|
-
"props": {
|
|
3943
|
-
"color": undefined,
|
|
3944
|
-
"label": "Asia/Katmandu",
|
|
3945
|
-
"value": "Asia/Katmandu",
|
|
3946
|
-
},
|
|
3947
|
-
"type": "Picker.Item",
|
|
3948
|
-
},
|
|
3949
|
-
{
|
|
3950
|
-
"$$typeof": Symbol(react.test.json),
|
|
3951
|
-
"children": null,
|
|
3952
|
-
"props": {
|
|
3953
|
-
"color": undefined,
|
|
3954
|
-
"label": "Asia/Khandyga",
|
|
3955
|
-
"value": "Asia/Khandyga",
|
|
3956
|
-
},
|
|
3957
|
-
"type": "Picker.Item",
|
|
3958
|
-
},
|
|
3959
|
-
{
|
|
3960
|
-
"$$typeof": Symbol(react.test.json),
|
|
3961
|
-
"children": null,
|
|
3962
|
-
"props": {
|
|
3963
|
-
"color": undefined,
|
|
3964
|
-
"label": "Asia/Krasnoyarsk",
|
|
3965
|
-
"value": "Asia/Krasnoyarsk",
|
|
3966
|
-
},
|
|
3967
|
-
"type": "Picker.Item",
|
|
3968
|
-
},
|
|
3969
|
-
{
|
|
3970
|
-
"$$typeof": Symbol(react.test.json),
|
|
3971
|
-
"children": null,
|
|
3972
|
-
"props": {
|
|
3973
|
-
"color": undefined,
|
|
3974
|
-
"label": "Asia/Kuala_Lumpur",
|
|
3975
|
-
"value": "Asia/Kuala_Lumpur",
|
|
3976
|
-
},
|
|
3977
|
-
"type": "Picker.Item",
|
|
3978
|
-
},
|
|
3979
|
-
{
|
|
3980
|
-
"$$typeof": Symbol(react.test.json),
|
|
3981
|
-
"children": null,
|
|
3982
|
-
"props": {
|
|
3983
|
-
"color": undefined,
|
|
3984
|
-
"label": "Asia/Kuching",
|
|
3985
|
-
"value": "Asia/Kuching",
|
|
3986
|
-
},
|
|
3987
|
-
"type": "Picker.Item",
|
|
3988
|
-
},
|
|
3989
|
-
{
|
|
3990
|
-
"$$typeof": Symbol(react.test.json),
|
|
3991
|
-
"children": null,
|
|
3992
|
-
"props": {
|
|
3993
|
-
"color": undefined,
|
|
3994
|
-
"label": "Asia/Kuwait",
|
|
3995
|
-
"value": "Asia/Kuwait",
|
|
3996
|
-
},
|
|
3997
|
-
"type": "Picker.Item",
|
|
3998
|
-
},
|
|
3999
|
-
{
|
|
4000
|
-
"$$typeof": Symbol(react.test.json),
|
|
4001
|
-
"children": null,
|
|
4002
|
-
"props": {
|
|
4003
|
-
"color": undefined,
|
|
4004
|
-
"label": "Asia/Macau",
|
|
4005
|
-
"value": "Asia/Macau",
|
|
4006
|
-
},
|
|
4007
|
-
"type": "Picker.Item",
|
|
4008
|
-
},
|
|
4009
|
-
{
|
|
4010
|
-
"$$typeof": Symbol(react.test.json),
|
|
4011
|
-
"children": null,
|
|
4012
|
-
"props": {
|
|
4013
|
-
"color": undefined,
|
|
4014
|
-
"label": "Asia/Magadan",
|
|
4015
|
-
"value": "Asia/Magadan",
|
|
4016
|
-
},
|
|
4017
|
-
"type": "Picker.Item",
|
|
4018
|
-
},
|
|
4019
|
-
{
|
|
4020
|
-
"$$typeof": Symbol(react.test.json),
|
|
4021
|
-
"children": null,
|
|
4022
|
-
"props": {
|
|
4023
|
-
"color": undefined,
|
|
4024
|
-
"label": "Asia/Makassar",
|
|
4025
|
-
"value": "Asia/Makassar",
|
|
4026
|
-
},
|
|
4027
|
-
"type": "Picker.Item",
|
|
4028
|
-
},
|
|
4029
|
-
{
|
|
4030
|
-
"$$typeof": Symbol(react.test.json),
|
|
4031
|
-
"children": null,
|
|
4032
|
-
"props": {
|
|
4033
|
-
"color": undefined,
|
|
4034
|
-
"label": "Asia/Manila",
|
|
4035
|
-
"value": "Asia/Manila",
|
|
4036
|
-
},
|
|
4037
|
-
"type": "Picker.Item",
|
|
4038
|
-
},
|
|
4039
|
-
{
|
|
4040
|
-
"$$typeof": Symbol(react.test.json),
|
|
4041
|
-
"children": null,
|
|
4042
|
-
"props": {
|
|
4043
|
-
"color": undefined,
|
|
4044
|
-
"label": "Asia/Muscat",
|
|
4045
|
-
"value": "Asia/Muscat",
|
|
4046
|
-
},
|
|
4047
|
-
"type": "Picker.Item",
|
|
4048
|
-
},
|
|
4049
|
-
{
|
|
4050
|
-
"$$typeof": Symbol(react.test.json),
|
|
4051
|
-
"children": null,
|
|
4052
|
-
"props": {
|
|
4053
|
-
"color": undefined,
|
|
4054
|
-
"label": "Asia/Nicosia",
|
|
4055
|
-
"value": "Asia/Nicosia",
|
|
4056
|
-
},
|
|
4057
|
-
"type": "Picker.Item",
|
|
4058
|
-
},
|
|
4059
|
-
{
|
|
4060
|
-
"$$typeof": Symbol(react.test.json),
|
|
4061
|
-
"children": null,
|
|
4062
|
-
"props": {
|
|
4063
|
-
"color": undefined,
|
|
4064
|
-
"label": "Asia/Novokuznetsk",
|
|
4065
|
-
"value": "Asia/Novokuznetsk",
|
|
4066
|
-
},
|
|
4067
|
-
"type": "Picker.Item",
|
|
4068
|
-
},
|
|
4069
|
-
{
|
|
4070
|
-
"$$typeof": Symbol(react.test.json),
|
|
4071
|
-
"children": null,
|
|
4072
|
-
"props": {
|
|
4073
|
-
"color": undefined,
|
|
4074
|
-
"label": "Asia/Novosibirsk",
|
|
4075
|
-
"value": "Asia/Novosibirsk",
|
|
4076
|
-
},
|
|
4077
|
-
"type": "Picker.Item",
|
|
4078
|
-
},
|
|
4079
|
-
{
|
|
4080
|
-
"$$typeof": Symbol(react.test.json),
|
|
4081
|
-
"children": null,
|
|
4082
|
-
"props": {
|
|
4083
|
-
"color": undefined,
|
|
4084
|
-
"label": "Asia/Omsk",
|
|
4085
|
-
"value": "Asia/Omsk",
|
|
4086
|
-
},
|
|
4087
|
-
"type": "Picker.Item",
|
|
4088
|
-
},
|
|
4089
|
-
{
|
|
4090
|
-
"$$typeof": Symbol(react.test.json),
|
|
4091
|
-
"children": null,
|
|
4092
|
-
"props": {
|
|
4093
|
-
"color": undefined,
|
|
4094
|
-
"label": "Asia/Oral",
|
|
4095
|
-
"value": "Asia/Oral",
|
|
4096
|
-
},
|
|
4097
|
-
"type": "Picker.Item",
|
|
4098
|
-
},
|
|
4099
|
-
{
|
|
4100
|
-
"$$typeof": Symbol(react.test.json),
|
|
4101
|
-
"children": null,
|
|
4102
|
-
"props": {
|
|
4103
|
-
"color": undefined,
|
|
4104
|
-
"label": "Asia/Phnom_Penh",
|
|
4105
|
-
"value": "Asia/Phnom_Penh",
|
|
4106
|
-
},
|
|
4107
|
-
"type": "Picker.Item",
|
|
4108
|
-
},
|
|
4109
|
-
{
|
|
4110
|
-
"$$typeof": Symbol(react.test.json),
|
|
4111
|
-
"children": null,
|
|
4112
|
-
"props": {
|
|
4113
|
-
"color": undefined,
|
|
4114
|
-
"label": "Asia/Pontianak",
|
|
4115
|
-
"value": "Asia/Pontianak",
|
|
4116
|
-
},
|
|
4117
|
-
"type": "Picker.Item",
|
|
4118
|
-
},
|
|
4119
|
-
{
|
|
4120
|
-
"$$typeof": Symbol(react.test.json),
|
|
4121
|
-
"children": null,
|
|
4122
|
-
"props": {
|
|
4123
|
-
"color": undefined,
|
|
4124
|
-
"label": "Asia/Pyongyang",
|
|
4125
|
-
"value": "Asia/Pyongyang",
|
|
4126
|
-
},
|
|
4127
|
-
"type": "Picker.Item",
|
|
4128
|
-
},
|
|
4129
|
-
{
|
|
4130
|
-
"$$typeof": Symbol(react.test.json),
|
|
4131
|
-
"children": null,
|
|
4132
|
-
"props": {
|
|
4133
|
-
"color": undefined,
|
|
4134
|
-
"label": "Asia/Qatar",
|
|
4135
|
-
"value": "Asia/Qatar",
|
|
4136
|
-
},
|
|
4137
|
-
"type": "Picker.Item",
|
|
4138
|
-
},
|
|
4139
|
-
{
|
|
4140
|
-
"$$typeof": Symbol(react.test.json),
|
|
4141
|
-
"children": null,
|
|
4142
|
-
"props": {
|
|
4143
|
-
"color": undefined,
|
|
4144
|
-
"label": "Asia/Qostanay",
|
|
4145
|
-
"value": "Asia/Qostanay",
|
|
4146
|
-
},
|
|
4147
|
-
"type": "Picker.Item",
|
|
4148
|
-
},
|
|
4149
|
-
{
|
|
4150
|
-
"$$typeof": Symbol(react.test.json),
|
|
4151
|
-
"children": null,
|
|
4152
|
-
"props": {
|
|
4153
|
-
"color": undefined,
|
|
4154
|
-
"label": "Asia/Qyzylorda",
|
|
4155
|
-
"value": "Asia/Qyzylorda",
|
|
4156
|
-
},
|
|
4157
|
-
"type": "Picker.Item",
|
|
4158
|
-
},
|
|
4159
|
-
{
|
|
4160
|
-
"$$typeof": Symbol(react.test.json),
|
|
4161
|
-
"children": null,
|
|
4162
|
-
"props": {
|
|
4163
|
-
"color": undefined,
|
|
4164
|
-
"label": "Asia/Rangoon",
|
|
4165
|
-
"value": "Asia/Rangoon",
|
|
4166
|
-
},
|
|
4167
|
-
"type": "Picker.Item",
|
|
4168
|
-
},
|
|
4169
|
-
{
|
|
4170
|
-
"$$typeof": Symbol(react.test.json),
|
|
4171
|
-
"children": null,
|
|
4172
|
-
"props": {
|
|
4173
|
-
"color": undefined,
|
|
4174
|
-
"label": "Asia/Riyadh",
|
|
4175
|
-
"value": "Asia/Riyadh",
|
|
4176
|
-
},
|
|
4177
|
-
"type": "Picker.Item",
|
|
4178
|
-
},
|
|
4179
|
-
{
|
|
4180
|
-
"$$typeof": Symbol(react.test.json),
|
|
4181
|
-
"children": null,
|
|
4182
|
-
"props": {
|
|
4183
|
-
"color": undefined,
|
|
4184
|
-
"label": "Asia/Saigon",
|
|
4185
|
-
"value": "Asia/Saigon",
|
|
4186
|
-
},
|
|
4187
|
-
"type": "Picker.Item",
|
|
4188
|
-
},
|
|
4189
|
-
{
|
|
4190
|
-
"$$typeof": Symbol(react.test.json),
|
|
4191
|
-
"children": null,
|
|
4192
|
-
"props": {
|
|
4193
|
-
"color": undefined,
|
|
4194
|
-
"label": "Asia/Sakhalin",
|
|
4195
|
-
"value": "Asia/Sakhalin",
|
|
4196
|
-
},
|
|
4197
|
-
"type": "Picker.Item",
|
|
4198
|
-
},
|
|
4199
|
-
{
|
|
4200
|
-
"$$typeof": Symbol(react.test.json),
|
|
4201
|
-
"children": null,
|
|
4202
|
-
"props": {
|
|
4203
|
-
"color": undefined,
|
|
4204
|
-
"label": "Asia/Samarkand",
|
|
4205
|
-
"value": "Asia/Samarkand",
|
|
4206
|
-
},
|
|
4207
|
-
"type": "Picker.Item",
|
|
4208
|
-
},
|
|
4209
|
-
{
|
|
4210
|
-
"$$typeof": Symbol(react.test.json),
|
|
4211
|
-
"children": null,
|
|
4212
|
-
"props": {
|
|
4213
|
-
"color": undefined,
|
|
4214
|
-
"label": "Asia/Seoul",
|
|
4215
|
-
"value": "Asia/Seoul",
|
|
4216
|
-
},
|
|
4217
|
-
"type": "Picker.Item",
|
|
4218
|
-
},
|
|
4219
|
-
{
|
|
4220
|
-
"$$typeof": Symbol(react.test.json),
|
|
4221
|
-
"children": null,
|
|
4222
|
-
"props": {
|
|
4223
|
-
"color": undefined,
|
|
4224
|
-
"label": "Asia/Shanghai",
|
|
4225
|
-
"value": "Asia/Shanghai",
|
|
4226
|
-
},
|
|
4227
|
-
"type": "Picker.Item",
|
|
4228
|
-
},
|
|
4229
|
-
{
|
|
4230
|
-
"$$typeof": Symbol(react.test.json),
|
|
4231
|
-
"children": null,
|
|
4232
|
-
"props": {
|
|
4233
|
-
"color": undefined,
|
|
4234
|
-
"label": "Asia/Singapore",
|
|
4235
|
-
"value": "Asia/Singapore",
|
|
4236
|
-
},
|
|
4237
|
-
"type": "Picker.Item",
|
|
4238
|
-
},
|
|
4239
|
-
{
|
|
4240
|
-
"$$typeof": Symbol(react.test.json),
|
|
4241
|
-
"children": null,
|
|
4242
|
-
"props": {
|
|
4243
|
-
"color": undefined,
|
|
4244
|
-
"label": "Asia/Srednekolymsk",
|
|
4245
|
-
"value": "Asia/Srednekolymsk",
|
|
4246
|
-
},
|
|
4247
|
-
"type": "Picker.Item",
|
|
4248
|
-
},
|
|
4249
|
-
{
|
|
4250
|
-
"$$typeof": Symbol(react.test.json),
|
|
4251
|
-
"children": null,
|
|
4252
|
-
"props": {
|
|
4253
|
-
"color": undefined,
|
|
4254
|
-
"label": "Asia/Taipei",
|
|
4255
|
-
"value": "Asia/Taipei",
|
|
4256
|
-
},
|
|
4257
|
-
"type": "Picker.Item",
|
|
4258
|
-
},
|
|
4259
|
-
{
|
|
4260
|
-
"$$typeof": Symbol(react.test.json),
|
|
4261
|
-
"children": null,
|
|
4262
|
-
"props": {
|
|
4263
|
-
"color": undefined,
|
|
4264
|
-
"label": "Asia/Tashkent",
|
|
4265
|
-
"value": "Asia/Tashkent",
|
|
4266
|
-
},
|
|
4267
|
-
"type": "Picker.Item",
|
|
4268
|
-
},
|
|
4269
|
-
{
|
|
4270
|
-
"$$typeof": Symbol(react.test.json),
|
|
4271
|
-
"children": null,
|
|
4272
|
-
"props": {
|
|
4273
|
-
"color": undefined,
|
|
4274
|
-
"label": "Asia/Tbilisi",
|
|
4275
|
-
"value": "Asia/Tbilisi",
|
|
4276
|
-
},
|
|
4277
|
-
"type": "Picker.Item",
|
|
4278
|
-
},
|
|
4279
|
-
{
|
|
4280
|
-
"$$typeof": Symbol(react.test.json),
|
|
4281
|
-
"children": null,
|
|
4282
|
-
"props": {
|
|
4283
|
-
"color": undefined,
|
|
4284
|
-
"label": "Asia/Tehran",
|
|
4285
|
-
"value": "Asia/Tehran",
|
|
4286
|
-
},
|
|
4287
|
-
"type": "Picker.Item",
|
|
4288
|
-
},
|
|
4289
|
-
{
|
|
4290
|
-
"$$typeof": Symbol(react.test.json),
|
|
4291
|
-
"children": null,
|
|
4292
|
-
"props": {
|
|
4293
|
-
"color": undefined,
|
|
4294
|
-
"label": "Asia/Thimphu",
|
|
4295
|
-
"value": "Asia/Thimphu",
|
|
4296
|
-
},
|
|
4297
|
-
"type": "Picker.Item",
|
|
4298
|
-
},
|
|
4299
|
-
{
|
|
4300
|
-
"$$typeof": Symbol(react.test.json),
|
|
4301
|
-
"children": null,
|
|
4302
|
-
"props": {
|
|
4303
|
-
"color": undefined,
|
|
4304
|
-
"label": "Asia/Tokyo",
|
|
4305
|
-
"value": "Asia/Tokyo",
|
|
4306
|
-
},
|
|
4307
|
-
"type": "Picker.Item",
|
|
4308
|
-
},
|
|
4309
|
-
{
|
|
4310
|
-
"$$typeof": Symbol(react.test.json),
|
|
4311
|
-
"children": null,
|
|
4312
|
-
"props": {
|
|
4313
|
-
"color": undefined,
|
|
4314
|
-
"label": "Asia/Tomsk",
|
|
4315
|
-
"value": "Asia/Tomsk",
|
|
4316
|
-
},
|
|
4317
|
-
"type": "Picker.Item",
|
|
4318
|
-
},
|
|
4319
|
-
{
|
|
4320
|
-
"$$typeof": Symbol(react.test.json),
|
|
4321
|
-
"children": null,
|
|
4322
|
-
"props": {
|
|
4323
|
-
"color": undefined,
|
|
4324
|
-
"label": "Asia/Ulaanbaatar",
|
|
4325
|
-
"value": "Asia/Ulaanbaatar",
|
|
4326
|
-
},
|
|
4327
|
-
"type": "Picker.Item",
|
|
4328
|
-
},
|
|
4329
|
-
{
|
|
4330
|
-
"$$typeof": Symbol(react.test.json),
|
|
4331
|
-
"children": null,
|
|
4332
|
-
"props": {
|
|
4333
|
-
"color": undefined,
|
|
4334
|
-
"label": "Asia/Urumqi",
|
|
4335
|
-
"value": "Asia/Urumqi",
|
|
4336
|
-
},
|
|
4337
|
-
"type": "Picker.Item",
|
|
4338
|
-
},
|
|
4339
|
-
{
|
|
4340
|
-
"$$typeof": Symbol(react.test.json),
|
|
4341
|
-
"children": null,
|
|
4342
|
-
"props": {
|
|
4343
|
-
"color": undefined,
|
|
4344
|
-
"label": "Asia/Ust-Nera",
|
|
4345
|
-
"value": "Asia/Ust-Nera",
|
|
4346
|
-
},
|
|
4347
|
-
"type": "Picker.Item",
|
|
4348
|
-
},
|
|
4349
|
-
{
|
|
4350
|
-
"$$typeof": Symbol(react.test.json),
|
|
4351
|
-
"children": null,
|
|
4352
|
-
"props": {
|
|
4353
|
-
"color": undefined,
|
|
4354
|
-
"label": "Asia/Vientiane",
|
|
4355
|
-
"value": "Asia/Vientiane",
|
|
4356
|
-
},
|
|
4357
|
-
"type": "Picker.Item",
|
|
4358
|
-
},
|
|
4359
|
-
{
|
|
4360
|
-
"$$typeof": Symbol(react.test.json),
|
|
4361
|
-
"children": null,
|
|
4362
|
-
"props": {
|
|
4363
|
-
"color": undefined,
|
|
4364
|
-
"label": "Asia/Vladivostok",
|
|
4365
|
-
"value": "Asia/Vladivostok",
|
|
4366
|
-
},
|
|
4367
|
-
"type": "Picker.Item",
|
|
4368
|
-
},
|
|
4369
|
-
{
|
|
4370
|
-
"$$typeof": Symbol(react.test.json),
|
|
4371
|
-
"children": null,
|
|
4372
|
-
"props": {
|
|
4373
|
-
"color": undefined,
|
|
4374
|
-
"label": "Asia/Yakutsk",
|
|
4375
|
-
"value": "Asia/Yakutsk",
|
|
4376
|
-
},
|
|
4377
|
-
"type": "Picker.Item",
|
|
4378
|
-
},
|
|
4379
|
-
{
|
|
4380
|
-
"$$typeof": Symbol(react.test.json),
|
|
4381
|
-
"children": null,
|
|
4382
|
-
"props": {
|
|
4383
|
-
"color": undefined,
|
|
4384
|
-
"label": "Asia/Yekaterinburg",
|
|
4385
|
-
"value": "Asia/Yekaterinburg",
|
|
4386
|
-
},
|
|
4387
|
-
"type": "Picker.Item",
|
|
4388
|
-
},
|
|
4389
|
-
{
|
|
4390
|
-
"$$typeof": Symbol(react.test.json),
|
|
4391
|
-
"children": null,
|
|
4392
|
-
"props": {
|
|
4393
|
-
"color": undefined,
|
|
4394
|
-
"label": "Asia/Yerevan",
|
|
4395
|
-
"value": "Asia/Yerevan",
|
|
4396
|
-
},
|
|
4397
|
-
"type": "Picker.Item",
|
|
4398
|
-
},
|
|
4399
|
-
{
|
|
4400
|
-
"$$typeof": Symbol(react.test.json),
|
|
4401
|
-
"children": null,
|
|
4402
|
-
"props": {
|
|
4403
|
-
"color": undefined,
|
|
4404
|
-
"label": "Atlantic/Azores",
|
|
4405
|
-
"value": "Atlantic/Azores",
|
|
4406
|
-
},
|
|
4407
|
-
"type": "Picker.Item",
|
|
4408
|
-
},
|
|
4409
|
-
{
|
|
4410
|
-
"$$typeof": Symbol(react.test.json),
|
|
4411
|
-
"children": null,
|
|
4412
|
-
"props": {
|
|
4413
|
-
"color": undefined,
|
|
4414
|
-
"label": "Atlantic/Bermuda",
|
|
4415
|
-
"value": "Atlantic/Bermuda",
|
|
4416
|
-
},
|
|
4417
|
-
"type": "Picker.Item",
|
|
4418
|
-
},
|
|
4419
|
-
{
|
|
4420
|
-
"$$typeof": Symbol(react.test.json),
|
|
4421
|
-
"children": null,
|
|
4422
|
-
"props": {
|
|
4423
|
-
"color": undefined,
|
|
4424
|
-
"label": "Atlantic/Canary",
|
|
4425
|
-
"value": "Atlantic/Canary",
|
|
4426
|
-
},
|
|
4427
|
-
"type": "Picker.Item",
|
|
4428
|
-
},
|
|
4429
|
-
{
|
|
4430
|
-
"$$typeof": Symbol(react.test.json),
|
|
4431
|
-
"children": null,
|
|
4432
|
-
"props": {
|
|
4433
|
-
"color": undefined,
|
|
4434
|
-
"label": "Atlantic/Cape_Verde",
|
|
4435
|
-
"value": "Atlantic/Cape_Verde",
|
|
4436
|
-
},
|
|
4437
|
-
"type": "Picker.Item",
|
|
4438
|
-
},
|
|
4439
|
-
{
|
|
4440
|
-
"$$typeof": Symbol(react.test.json),
|
|
4441
|
-
"children": null,
|
|
4442
|
-
"props": {
|
|
4443
|
-
"color": undefined,
|
|
4444
|
-
"label": "Atlantic/Faeroe",
|
|
4445
|
-
"value": "Atlantic/Faeroe",
|
|
4446
|
-
},
|
|
4447
|
-
"type": "Picker.Item",
|
|
4448
|
-
},
|
|
4449
|
-
{
|
|
4450
|
-
"$$typeof": Symbol(react.test.json),
|
|
4451
|
-
"children": null,
|
|
4452
|
-
"props": {
|
|
4453
|
-
"color": undefined,
|
|
4454
|
-
"label": "Atlantic/Madeira",
|
|
4455
|
-
"value": "Atlantic/Madeira",
|
|
4456
|
-
},
|
|
4457
|
-
"type": "Picker.Item",
|
|
4458
|
-
},
|
|
4459
|
-
{
|
|
4460
|
-
"$$typeof": Symbol(react.test.json),
|
|
4461
|
-
"children": null,
|
|
4462
|
-
"props": {
|
|
4463
|
-
"color": undefined,
|
|
4464
|
-
"label": "Atlantic/Reykjavik",
|
|
4465
|
-
"value": "Atlantic/Reykjavik",
|
|
4466
|
-
},
|
|
4467
|
-
"type": "Picker.Item",
|
|
4468
|
-
},
|
|
4469
|
-
{
|
|
4470
|
-
"$$typeof": Symbol(react.test.json),
|
|
4471
|
-
"children": null,
|
|
4472
|
-
"props": {
|
|
4473
|
-
"color": undefined,
|
|
4474
|
-
"label": "Atlantic/South_Georgia",
|
|
4475
|
-
"value": "Atlantic/South_Georgia",
|
|
4476
|
-
},
|
|
4477
|
-
"type": "Picker.Item",
|
|
4478
|
-
},
|
|
4479
|
-
{
|
|
4480
|
-
"$$typeof": Symbol(react.test.json),
|
|
4481
|
-
"children": null,
|
|
4482
|
-
"props": {
|
|
4483
|
-
"color": undefined,
|
|
4484
|
-
"label": "Atlantic/St_Helena",
|
|
4485
|
-
"value": "Atlantic/St_Helena",
|
|
4486
|
-
},
|
|
4487
|
-
"type": "Picker.Item",
|
|
4488
|
-
},
|
|
4489
|
-
{
|
|
4490
|
-
"$$typeof": Symbol(react.test.json),
|
|
4491
|
-
"children": null,
|
|
4492
|
-
"props": {
|
|
4493
|
-
"color": undefined,
|
|
4494
|
-
"label": "Atlantic/Stanley",
|
|
4495
|
-
"value": "Atlantic/Stanley",
|
|
4496
|
-
},
|
|
4497
|
-
"type": "Picker.Item",
|
|
4498
|
-
},
|
|
4499
|
-
{
|
|
4500
|
-
"$$typeof": Symbol(react.test.json),
|
|
4501
|
-
"children": null,
|
|
4502
|
-
"props": {
|
|
4503
|
-
"color": undefined,
|
|
4504
|
-
"label": "Australia/Adelaide",
|
|
4505
|
-
"value": "Australia/Adelaide",
|
|
4506
|
-
},
|
|
4507
|
-
"type": "Picker.Item",
|
|
4508
|
-
},
|
|
4509
|
-
{
|
|
4510
|
-
"$$typeof": Symbol(react.test.json),
|
|
4511
|
-
"children": null,
|
|
4512
|
-
"props": {
|
|
4513
|
-
"color": undefined,
|
|
4514
|
-
"label": "Australia/Brisbane",
|
|
4515
|
-
"value": "Australia/Brisbane",
|
|
4516
|
-
},
|
|
4517
|
-
"type": "Picker.Item",
|
|
4518
|
-
},
|
|
4519
|
-
{
|
|
4520
|
-
"$$typeof": Symbol(react.test.json),
|
|
4521
|
-
"children": null,
|
|
4522
|
-
"props": {
|
|
4523
|
-
"color": undefined,
|
|
4524
|
-
"label": "Australia/Broken_Hill",
|
|
4525
|
-
"value": "Australia/Broken_Hill",
|
|
4526
|
-
},
|
|
4527
|
-
"type": "Picker.Item",
|
|
4528
|
-
},
|
|
4529
|
-
{
|
|
4530
|
-
"$$typeof": Symbol(react.test.json),
|
|
4531
|
-
"children": null,
|
|
4532
|
-
"props": {
|
|
4533
|
-
"color": undefined,
|
|
4534
|
-
"label": "Australia/Darwin",
|
|
4535
|
-
"value": "Australia/Darwin",
|
|
4536
|
-
},
|
|
4537
|
-
"type": "Picker.Item",
|
|
4538
|
-
},
|
|
4539
|
-
{
|
|
4540
|
-
"$$typeof": Symbol(react.test.json),
|
|
4541
|
-
"children": null,
|
|
4542
|
-
"props": {
|
|
4543
|
-
"color": undefined,
|
|
4544
|
-
"label": "Australia/Eucla",
|
|
4545
|
-
"value": "Australia/Eucla",
|
|
4546
|
-
},
|
|
4547
|
-
"type": "Picker.Item",
|
|
4548
|
-
},
|
|
4549
|
-
{
|
|
4550
|
-
"$$typeof": Symbol(react.test.json),
|
|
4551
|
-
"children": null,
|
|
4552
|
-
"props": {
|
|
4553
|
-
"color": undefined,
|
|
4554
|
-
"label": "Australia/Hobart",
|
|
4555
|
-
"value": "Australia/Hobart",
|
|
4556
|
-
},
|
|
4557
|
-
"type": "Picker.Item",
|
|
4558
|
-
},
|
|
4559
|
-
{
|
|
4560
|
-
"$$typeof": Symbol(react.test.json),
|
|
4561
|
-
"children": null,
|
|
4562
|
-
"props": {
|
|
4563
|
-
"color": undefined,
|
|
4564
|
-
"label": "Australia/Lindeman",
|
|
4565
|
-
"value": "Australia/Lindeman",
|
|
4566
|
-
},
|
|
4567
|
-
"type": "Picker.Item",
|
|
4568
|
-
},
|
|
4569
|
-
{
|
|
4570
|
-
"$$typeof": Symbol(react.test.json),
|
|
4571
|
-
"children": null,
|
|
4572
|
-
"props": {
|
|
4573
|
-
"color": undefined,
|
|
4574
|
-
"label": "Australia/Lord_Howe",
|
|
4575
|
-
"value": "Australia/Lord_Howe",
|
|
4576
|
-
},
|
|
4577
|
-
"type": "Picker.Item",
|
|
4578
|
-
},
|
|
4579
|
-
{
|
|
4580
|
-
"$$typeof": Symbol(react.test.json),
|
|
4581
|
-
"children": null,
|
|
4582
|
-
"props": {
|
|
4583
|
-
"color": undefined,
|
|
4584
|
-
"label": "Australia/Melbourne",
|
|
4585
|
-
"value": "Australia/Melbourne",
|
|
4586
|
-
},
|
|
4587
|
-
"type": "Picker.Item",
|
|
4588
|
-
},
|
|
4589
|
-
{
|
|
4590
|
-
"$$typeof": Symbol(react.test.json),
|
|
4591
|
-
"children": null,
|
|
4592
|
-
"props": {
|
|
4593
|
-
"color": undefined,
|
|
4594
|
-
"label": "Australia/Perth",
|
|
4595
|
-
"value": "Australia/Perth",
|
|
4596
|
-
},
|
|
4597
|
-
"type": "Picker.Item",
|
|
4598
|
-
},
|
|
4599
|
-
{
|
|
4600
|
-
"$$typeof": Symbol(react.test.json),
|
|
4601
|
-
"children": null,
|
|
4602
|
-
"props": {
|
|
4603
|
-
"color": undefined,
|
|
4604
|
-
"label": "Australia/Sydney",
|
|
4605
|
-
"value": "Australia/Sydney",
|
|
4606
|
-
},
|
|
4607
|
-
"type": "Picker.Item",
|
|
4608
|
-
},
|
|
4609
|
-
{
|
|
4610
|
-
"$$typeof": Symbol(react.test.json),
|
|
4611
|
-
"children": null,
|
|
4612
|
-
"props": {
|
|
4613
|
-
"color": undefined,
|
|
4614
|
-
"label": "Etc/GMT+1",
|
|
4615
|
-
"value": "Etc/GMT+1",
|
|
4616
|
-
},
|
|
4617
|
-
"type": "Picker.Item",
|
|
4618
|
-
},
|
|
4619
|
-
{
|
|
4620
|
-
"$$typeof": Symbol(react.test.json),
|
|
4621
|
-
"children": null,
|
|
4622
|
-
"props": {
|
|
4623
|
-
"color": undefined,
|
|
4624
|
-
"label": "Etc/GMT+10",
|
|
4625
|
-
"value": "Etc/GMT+10",
|
|
4626
|
-
},
|
|
4627
|
-
"type": "Picker.Item",
|
|
4628
|
-
},
|
|
4629
|
-
{
|
|
4630
|
-
"$$typeof": Symbol(react.test.json),
|
|
4631
|
-
"children": null,
|
|
4632
|
-
"props": {
|
|
4633
|
-
"color": undefined,
|
|
4634
|
-
"label": "Etc/GMT+11",
|
|
4635
|
-
"value": "Etc/GMT+11",
|
|
4636
|
-
},
|
|
4637
|
-
"type": "Picker.Item",
|
|
4638
|
-
},
|
|
4639
|
-
{
|
|
4640
|
-
"$$typeof": Symbol(react.test.json),
|
|
4641
|
-
"children": null,
|
|
4642
|
-
"props": {
|
|
4643
|
-
"color": undefined,
|
|
4644
|
-
"label": "Etc/GMT+12",
|
|
4645
|
-
"value": "Etc/GMT+12",
|
|
4646
|
-
},
|
|
4647
|
-
"type": "Picker.Item",
|
|
4648
|
-
},
|
|
4649
|
-
{
|
|
4650
|
-
"$$typeof": Symbol(react.test.json),
|
|
4651
|
-
"children": null,
|
|
4652
|
-
"props": {
|
|
4653
|
-
"color": undefined,
|
|
4654
|
-
"label": "Etc/GMT+2",
|
|
4655
|
-
"value": "Etc/GMT+2",
|
|
4656
|
-
},
|
|
4657
|
-
"type": "Picker.Item",
|
|
4658
|
-
},
|
|
4659
|
-
{
|
|
4660
|
-
"$$typeof": Symbol(react.test.json),
|
|
4661
|
-
"children": null,
|
|
4662
|
-
"props": {
|
|
4663
|
-
"color": undefined,
|
|
4664
|
-
"label": "Etc/GMT+3",
|
|
4665
|
-
"value": "Etc/GMT+3",
|
|
4666
|
-
},
|
|
4667
|
-
"type": "Picker.Item",
|
|
4668
|
-
},
|
|
4669
|
-
{
|
|
4670
|
-
"$$typeof": Symbol(react.test.json),
|
|
4671
|
-
"children": null,
|
|
4672
|
-
"props": {
|
|
4673
|
-
"color": undefined,
|
|
4674
|
-
"label": "Etc/GMT+4",
|
|
4675
|
-
"value": "Etc/GMT+4",
|
|
4676
|
-
},
|
|
4677
|
-
"type": "Picker.Item",
|
|
4678
|
-
},
|
|
4679
|
-
{
|
|
4680
|
-
"$$typeof": Symbol(react.test.json),
|
|
4681
|
-
"children": null,
|
|
4682
|
-
"props": {
|
|
4683
|
-
"color": undefined,
|
|
4684
|
-
"label": "Etc/GMT+5",
|
|
4685
|
-
"value": "Etc/GMT+5",
|
|
4686
|
-
},
|
|
4687
|
-
"type": "Picker.Item",
|
|
4688
|
-
},
|
|
4689
|
-
{
|
|
4690
|
-
"$$typeof": Symbol(react.test.json),
|
|
4691
|
-
"children": null,
|
|
4692
|
-
"props": {
|
|
4693
|
-
"color": undefined,
|
|
4694
|
-
"label": "Etc/GMT+6",
|
|
4695
|
-
"value": "Etc/GMT+6",
|
|
4696
|
-
},
|
|
4697
|
-
"type": "Picker.Item",
|
|
4698
|
-
},
|
|
4699
|
-
{
|
|
4700
|
-
"$$typeof": Symbol(react.test.json),
|
|
4701
|
-
"children": null,
|
|
4702
|
-
"props": {
|
|
4703
|
-
"color": undefined,
|
|
4704
|
-
"label": "Etc/GMT+7",
|
|
4705
|
-
"value": "Etc/GMT+7",
|
|
4706
|
-
},
|
|
4707
|
-
"type": "Picker.Item",
|
|
4708
|
-
},
|
|
4709
|
-
{
|
|
4710
|
-
"$$typeof": Symbol(react.test.json),
|
|
4711
|
-
"children": null,
|
|
4712
|
-
"props": {
|
|
4713
|
-
"color": undefined,
|
|
4714
|
-
"label": "Etc/GMT+8",
|
|
4715
|
-
"value": "Etc/GMT+8",
|
|
4716
|
-
},
|
|
4717
|
-
"type": "Picker.Item",
|
|
4718
|
-
},
|
|
4719
|
-
{
|
|
4720
|
-
"$$typeof": Symbol(react.test.json),
|
|
4721
|
-
"children": null,
|
|
4722
|
-
"props": {
|
|
4723
|
-
"color": undefined,
|
|
4724
|
-
"label": "Etc/GMT+9",
|
|
4725
|
-
"value": "Etc/GMT+9",
|
|
4726
|
-
},
|
|
4727
|
-
"type": "Picker.Item",
|
|
4728
|
-
},
|
|
4729
|
-
{
|
|
4730
|
-
"$$typeof": Symbol(react.test.json),
|
|
4731
|
-
"children": null,
|
|
4732
|
-
"props": {
|
|
4733
|
-
"color": undefined,
|
|
4734
|
-
"label": "Etc/GMT-1",
|
|
4735
|
-
"value": "Etc/GMT-1",
|
|
4736
|
-
},
|
|
4737
|
-
"type": "Picker.Item",
|
|
4738
|
-
},
|
|
4739
|
-
{
|
|
4740
|
-
"$$typeof": Symbol(react.test.json),
|
|
4741
|
-
"children": null,
|
|
4742
|
-
"props": {
|
|
4743
|
-
"color": undefined,
|
|
4744
|
-
"label": "Etc/GMT-10",
|
|
4745
|
-
"value": "Etc/GMT-10",
|
|
4746
|
-
},
|
|
4747
|
-
"type": "Picker.Item",
|
|
4748
|
-
},
|
|
4749
|
-
{
|
|
4750
|
-
"$$typeof": Symbol(react.test.json),
|
|
4751
|
-
"children": null,
|
|
4752
|
-
"props": {
|
|
4753
|
-
"color": undefined,
|
|
4754
|
-
"label": "Etc/GMT-11",
|
|
4755
|
-
"value": "Etc/GMT-11",
|
|
4756
|
-
},
|
|
4757
|
-
"type": "Picker.Item",
|
|
4758
|
-
},
|
|
4759
|
-
{
|
|
4760
|
-
"$$typeof": Symbol(react.test.json),
|
|
4761
|
-
"children": null,
|
|
4762
|
-
"props": {
|
|
4763
|
-
"color": undefined,
|
|
4764
|
-
"label": "Etc/GMT-12",
|
|
4765
|
-
"value": "Etc/GMT-12",
|
|
4766
|
-
},
|
|
4767
|
-
"type": "Picker.Item",
|
|
4768
|
-
},
|
|
4769
|
-
{
|
|
4770
|
-
"$$typeof": Symbol(react.test.json),
|
|
4771
|
-
"children": null,
|
|
4772
|
-
"props": {
|
|
4773
|
-
"color": undefined,
|
|
4774
|
-
"label": "Etc/GMT-13",
|
|
4775
|
-
"value": "Etc/GMT-13",
|
|
4776
|
-
},
|
|
4777
|
-
"type": "Picker.Item",
|
|
4778
|
-
},
|
|
4779
|
-
{
|
|
4780
|
-
"$$typeof": Symbol(react.test.json),
|
|
4781
|
-
"children": null,
|
|
4782
|
-
"props": {
|
|
4783
|
-
"color": undefined,
|
|
4784
|
-
"label": "Etc/GMT-14",
|
|
4785
|
-
"value": "Etc/GMT-14",
|
|
4786
|
-
},
|
|
4787
|
-
"type": "Picker.Item",
|
|
4788
|
-
},
|
|
4789
|
-
{
|
|
4790
|
-
"$$typeof": Symbol(react.test.json),
|
|
4791
|
-
"children": null,
|
|
4792
|
-
"props": {
|
|
4793
|
-
"color": undefined,
|
|
4794
|
-
"label": "Etc/GMT-2",
|
|
4795
|
-
"value": "Etc/GMT-2",
|
|
4796
|
-
},
|
|
4797
|
-
"type": "Picker.Item",
|
|
4798
|
-
},
|
|
4799
|
-
{
|
|
4800
|
-
"$$typeof": Symbol(react.test.json),
|
|
4801
|
-
"children": null,
|
|
4802
|
-
"props": {
|
|
4803
|
-
"color": undefined,
|
|
4804
|
-
"label": "Etc/GMT-3",
|
|
4805
|
-
"value": "Etc/GMT-3",
|
|
4806
|
-
},
|
|
4807
|
-
"type": "Picker.Item",
|
|
4808
|
-
},
|
|
4809
|
-
{
|
|
4810
|
-
"$$typeof": Symbol(react.test.json),
|
|
4811
|
-
"children": null,
|
|
4812
|
-
"props": {
|
|
4813
|
-
"color": undefined,
|
|
4814
|
-
"label": "Etc/GMT-4",
|
|
4815
|
-
"value": "Etc/GMT-4",
|
|
4816
|
-
},
|
|
4817
|
-
"type": "Picker.Item",
|
|
4818
|
-
},
|
|
4819
|
-
{
|
|
4820
|
-
"$$typeof": Symbol(react.test.json),
|
|
4821
|
-
"children": null,
|
|
4822
|
-
"props": {
|
|
4823
|
-
"color": undefined,
|
|
4824
|
-
"label": "Etc/GMT-5",
|
|
4825
|
-
"value": "Etc/GMT-5",
|
|
4826
|
-
},
|
|
4827
|
-
"type": "Picker.Item",
|
|
4828
|
-
},
|
|
4829
|
-
{
|
|
4830
|
-
"$$typeof": Symbol(react.test.json),
|
|
4831
|
-
"children": null,
|
|
4832
|
-
"props": {
|
|
4833
|
-
"color": undefined,
|
|
4834
|
-
"label": "Etc/GMT-6",
|
|
4835
|
-
"value": "Etc/GMT-6",
|
|
4836
|
-
},
|
|
4837
|
-
"type": "Picker.Item",
|
|
4838
|
-
},
|
|
4839
|
-
{
|
|
4840
|
-
"$$typeof": Symbol(react.test.json),
|
|
4841
|
-
"children": null,
|
|
4842
|
-
"props": {
|
|
4843
|
-
"color": undefined,
|
|
4844
|
-
"label": "Etc/GMT-7",
|
|
4845
|
-
"value": "Etc/GMT-7",
|
|
4846
|
-
},
|
|
4847
|
-
"type": "Picker.Item",
|
|
4848
|
-
},
|
|
4849
|
-
{
|
|
4850
|
-
"$$typeof": Symbol(react.test.json),
|
|
4851
|
-
"children": null,
|
|
4852
|
-
"props": {
|
|
4853
|
-
"color": undefined,
|
|
4854
|
-
"label": "Etc/GMT-8",
|
|
4855
|
-
"value": "Etc/GMT-8",
|
|
4856
|
-
},
|
|
4857
|
-
"type": "Picker.Item",
|
|
4858
|
-
},
|
|
4859
|
-
{
|
|
4860
|
-
"$$typeof": Symbol(react.test.json),
|
|
4861
|
-
"children": null,
|
|
4862
|
-
"props": {
|
|
4863
|
-
"color": undefined,
|
|
4864
|
-
"label": "Etc/GMT-9",
|
|
4865
|
-
"value": "Etc/GMT-9",
|
|
4866
|
-
},
|
|
4867
|
-
"type": "Picker.Item",
|
|
4868
|
-
},
|
|
4869
|
-
{
|
|
4870
|
-
"$$typeof": Symbol(react.test.json),
|
|
4871
|
-
"children": null,
|
|
4872
|
-
"props": {
|
|
4873
|
-
"color": undefined,
|
|
4874
|
-
"label": "Europe/Amsterdam",
|
|
4875
|
-
"value": "Europe/Amsterdam",
|
|
4876
|
-
},
|
|
4877
|
-
"type": "Picker.Item",
|
|
4878
|
-
},
|
|
4879
|
-
{
|
|
4880
|
-
"$$typeof": Symbol(react.test.json),
|
|
4881
|
-
"children": null,
|
|
4882
|
-
"props": {
|
|
4883
|
-
"color": undefined,
|
|
4884
|
-
"label": "Europe/Andorra",
|
|
4885
|
-
"value": "Europe/Andorra",
|
|
4886
|
-
},
|
|
4887
|
-
"type": "Picker.Item",
|
|
4888
|
-
},
|
|
4889
|
-
{
|
|
4890
|
-
"$$typeof": Symbol(react.test.json),
|
|
4891
|
-
"children": null,
|
|
4892
|
-
"props": {
|
|
4893
|
-
"color": undefined,
|
|
4894
|
-
"label": "Europe/Astrakhan",
|
|
4895
|
-
"value": "Europe/Astrakhan",
|
|
4896
|
-
},
|
|
4897
|
-
"type": "Picker.Item",
|
|
4898
|
-
},
|
|
4899
|
-
{
|
|
4900
|
-
"$$typeof": Symbol(react.test.json),
|
|
4901
|
-
"children": null,
|
|
4902
|
-
"props": {
|
|
4903
|
-
"color": undefined,
|
|
4904
|
-
"label": "Europe/Athens",
|
|
4905
|
-
"value": "Europe/Athens",
|
|
4906
|
-
},
|
|
4907
|
-
"type": "Picker.Item",
|
|
4908
|
-
},
|
|
4909
|
-
{
|
|
4910
|
-
"$$typeof": Symbol(react.test.json),
|
|
4911
|
-
"children": null,
|
|
4912
|
-
"props": {
|
|
4913
|
-
"color": undefined,
|
|
4914
|
-
"label": "Europe/Belgrade",
|
|
4915
|
-
"value": "Europe/Belgrade",
|
|
4916
|
-
},
|
|
4917
|
-
"type": "Picker.Item",
|
|
4918
|
-
},
|
|
4919
|
-
{
|
|
4920
|
-
"$$typeof": Symbol(react.test.json),
|
|
4921
|
-
"children": null,
|
|
4922
|
-
"props": {
|
|
4923
|
-
"color": undefined,
|
|
4924
|
-
"label": "Europe/Berlin",
|
|
4925
|
-
"value": "Europe/Berlin",
|
|
4926
|
-
},
|
|
4927
|
-
"type": "Picker.Item",
|
|
4928
|
-
},
|
|
4929
|
-
{
|
|
4930
|
-
"$$typeof": Symbol(react.test.json),
|
|
4931
|
-
"children": null,
|
|
4932
|
-
"props": {
|
|
4933
|
-
"color": undefined,
|
|
4934
|
-
"label": "Europe/Bratislava",
|
|
4935
|
-
"value": "Europe/Bratislava",
|
|
4936
|
-
},
|
|
4937
|
-
"type": "Picker.Item",
|
|
4938
|
-
},
|
|
4939
|
-
{
|
|
4940
|
-
"$$typeof": Symbol(react.test.json),
|
|
4941
|
-
"children": null,
|
|
4942
|
-
"props": {
|
|
4943
|
-
"color": undefined,
|
|
4944
|
-
"label": "Europe/Brussels",
|
|
4945
|
-
"value": "Europe/Brussels",
|
|
4946
|
-
},
|
|
4947
|
-
"type": "Picker.Item",
|
|
4948
|
-
},
|
|
4949
|
-
{
|
|
4950
|
-
"$$typeof": Symbol(react.test.json),
|
|
4951
|
-
"children": null,
|
|
4952
|
-
"props": {
|
|
4953
|
-
"color": undefined,
|
|
4954
|
-
"label": "Europe/Bucharest",
|
|
4955
|
-
"value": "Europe/Bucharest",
|
|
4956
|
-
},
|
|
4957
|
-
"type": "Picker.Item",
|
|
4958
|
-
},
|
|
4959
|
-
{
|
|
4960
|
-
"$$typeof": Symbol(react.test.json),
|
|
4961
|
-
"children": null,
|
|
4962
|
-
"props": {
|
|
4963
|
-
"color": undefined,
|
|
4964
|
-
"label": "Europe/Budapest",
|
|
4965
|
-
"value": "Europe/Budapest",
|
|
4966
|
-
},
|
|
4967
|
-
"type": "Picker.Item",
|
|
4968
|
-
},
|
|
4969
|
-
{
|
|
4970
|
-
"$$typeof": Symbol(react.test.json),
|
|
4971
|
-
"children": null,
|
|
4972
|
-
"props": {
|
|
4973
|
-
"color": undefined,
|
|
4974
|
-
"label": "Europe/Busingen",
|
|
4975
|
-
"value": "Europe/Busingen",
|
|
4976
|
-
},
|
|
4977
|
-
"type": "Picker.Item",
|
|
4978
|
-
},
|
|
4979
|
-
{
|
|
4980
|
-
"$$typeof": Symbol(react.test.json),
|
|
4981
|
-
"children": null,
|
|
4982
|
-
"props": {
|
|
4983
|
-
"color": undefined,
|
|
4984
|
-
"label": "Europe/Chisinau",
|
|
4985
|
-
"value": "Europe/Chisinau",
|
|
4986
|
-
},
|
|
4987
|
-
"type": "Picker.Item",
|
|
4988
|
-
},
|
|
4989
|
-
{
|
|
4990
|
-
"$$typeof": Symbol(react.test.json),
|
|
4991
|
-
"children": null,
|
|
4992
|
-
"props": {
|
|
4993
|
-
"color": undefined,
|
|
4994
|
-
"label": "Europe/Copenhagen",
|
|
4995
|
-
"value": "Europe/Copenhagen",
|
|
4996
|
-
},
|
|
4997
|
-
"type": "Picker.Item",
|
|
4998
|
-
},
|
|
4999
|
-
{
|
|
5000
|
-
"$$typeof": Symbol(react.test.json),
|
|
5001
|
-
"children": null,
|
|
5002
|
-
"props": {
|
|
5003
|
-
"color": undefined,
|
|
5004
|
-
"label": "Europe/Dublin",
|
|
5005
|
-
"value": "Europe/Dublin",
|
|
5006
|
-
},
|
|
5007
|
-
"type": "Picker.Item",
|
|
5008
|
-
},
|
|
5009
|
-
{
|
|
5010
|
-
"$$typeof": Symbol(react.test.json),
|
|
5011
|
-
"children": null,
|
|
5012
|
-
"props": {
|
|
5013
|
-
"color": undefined,
|
|
5014
|
-
"label": "Europe/Gibraltar",
|
|
5015
|
-
"value": "Europe/Gibraltar",
|
|
5016
|
-
},
|
|
5017
|
-
"type": "Picker.Item",
|
|
5018
|
-
},
|
|
5019
|
-
{
|
|
5020
|
-
"$$typeof": Symbol(react.test.json),
|
|
5021
|
-
"children": null,
|
|
5022
|
-
"props": {
|
|
5023
|
-
"color": undefined,
|
|
5024
|
-
"label": "Europe/Guernsey",
|
|
5025
|
-
"value": "Europe/Guernsey",
|
|
5026
|
-
},
|
|
5027
|
-
"type": "Picker.Item",
|
|
5028
|
-
},
|
|
5029
|
-
{
|
|
5030
|
-
"$$typeof": Symbol(react.test.json),
|
|
5031
|
-
"children": null,
|
|
5032
|
-
"props": {
|
|
5033
|
-
"color": undefined,
|
|
5034
|
-
"label": "Europe/Helsinki",
|
|
5035
|
-
"value": "Europe/Helsinki",
|
|
5036
|
-
},
|
|
5037
|
-
"type": "Picker.Item",
|
|
5038
|
-
},
|
|
5039
|
-
{
|
|
5040
|
-
"$$typeof": Symbol(react.test.json),
|
|
5041
|
-
"children": null,
|
|
5042
|
-
"props": {
|
|
5043
|
-
"color": undefined,
|
|
5044
|
-
"label": "Europe/Isle_of_Man",
|
|
5045
|
-
"value": "Europe/Isle_of_Man",
|
|
5046
|
-
},
|
|
5047
|
-
"type": "Picker.Item",
|
|
5048
|
-
},
|
|
5049
|
-
{
|
|
5050
|
-
"$$typeof": Symbol(react.test.json),
|
|
5051
|
-
"children": null,
|
|
5052
|
-
"props": {
|
|
5053
|
-
"color": undefined,
|
|
5054
|
-
"label": "Europe/Istanbul",
|
|
5055
|
-
"value": "Europe/Istanbul",
|
|
5056
|
-
},
|
|
5057
|
-
"type": "Picker.Item",
|
|
5058
|
-
},
|
|
5059
|
-
{
|
|
5060
|
-
"$$typeof": Symbol(react.test.json),
|
|
5061
|
-
"children": null,
|
|
5062
|
-
"props": {
|
|
5063
|
-
"color": undefined,
|
|
5064
|
-
"label": "Europe/Jersey",
|
|
5065
|
-
"value": "Europe/Jersey",
|
|
5066
|
-
},
|
|
5067
|
-
"type": "Picker.Item",
|
|
5068
|
-
},
|
|
5069
|
-
{
|
|
5070
|
-
"$$typeof": Symbol(react.test.json),
|
|
5071
|
-
"children": null,
|
|
5072
|
-
"props": {
|
|
5073
|
-
"color": undefined,
|
|
5074
|
-
"label": "Europe/Kaliningrad",
|
|
5075
|
-
"value": "Europe/Kaliningrad",
|
|
5076
|
-
},
|
|
5077
|
-
"type": "Picker.Item",
|
|
5078
|
-
},
|
|
5079
|
-
{
|
|
5080
|
-
"$$typeof": Symbol(react.test.json),
|
|
5081
|
-
"children": null,
|
|
5082
|
-
"props": {
|
|
5083
|
-
"color": undefined,
|
|
5084
|
-
"label": "Europe/Kiev",
|
|
5085
|
-
"value": "Europe/Kiev",
|
|
5086
|
-
},
|
|
5087
|
-
"type": "Picker.Item",
|
|
5088
|
-
},
|
|
5089
|
-
{
|
|
5090
|
-
"$$typeof": Symbol(react.test.json),
|
|
5091
|
-
"children": null,
|
|
5092
|
-
"props": {
|
|
5093
|
-
"color": undefined,
|
|
5094
|
-
"label": "Europe/Kirov",
|
|
5095
|
-
"value": "Europe/Kirov",
|
|
5096
|
-
},
|
|
5097
|
-
"type": "Picker.Item",
|
|
5098
|
-
},
|
|
5099
|
-
{
|
|
5100
|
-
"$$typeof": Symbol(react.test.json),
|
|
5101
|
-
"children": null,
|
|
5102
|
-
"props": {
|
|
5103
|
-
"color": undefined,
|
|
5104
|
-
"label": "Europe/Lisbon",
|
|
5105
|
-
"value": "Europe/Lisbon",
|
|
5106
|
-
},
|
|
5107
|
-
"type": "Picker.Item",
|
|
5108
|
-
},
|
|
5109
|
-
{
|
|
5110
|
-
"$$typeof": Symbol(react.test.json),
|
|
5111
|
-
"children": null,
|
|
5112
|
-
"props": {
|
|
5113
|
-
"color": undefined,
|
|
5114
|
-
"label": "Europe/Ljubljana",
|
|
5115
|
-
"value": "Europe/Ljubljana",
|
|
5116
|
-
},
|
|
5117
|
-
"type": "Picker.Item",
|
|
5118
|
-
},
|
|
5119
|
-
{
|
|
5120
|
-
"$$typeof": Symbol(react.test.json),
|
|
5121
|
-
"children": null,
|
|
5122
|
-
"props": {
|
|
5123
|
-
"color": undefined,
|
|
5124
|
-
"label": "Europe/London",
|
|
5125
|
-
"value": "Europe/London",
|
|
5126
|
-
},
|
|
5127
|
-
"type": "Picker.Item",
|
|
5128
|
-
},
|
|
5129
|
-
{
|
|
5130
|
-
"$$typeof": Symbol(react.test.json),
|
|
5131
|
-
"children": null,
|
|
5132
|
-
"props": {
|
|
5133
|
-
"color": undefined,
|
|
5134
|
-
"label": "Europe/Luxembourg",
|
|
5135
|
-
"value": "Europe/Luxembourg",
|
|
5136
|
-
},
|
|
5137
|
-
"type": "Picker.Item",
|
|
5138
|
-
},
|
|
5139
|
-
{
|
|
5140
|
-
"$$typeof": Symbol(react.test.json),
|
|
5141
|
-
"children": null,
|
|
5142
|
-
"props": {
|
|
5143
|
-
"color": undefined,
|
|
5144
|
-
"label": "Europe/Madrid",
|
|
5145
|
-
"value": "Europe/Madrid",
|
|
5146
|
-
},
|
|
5147
|
-
"type": "Picker.Item",
|
|
5148
|
-
},
|
|
5149
|
-
{
|
|
5150
|
-
"$$typeof": Symbol(react.test.json),
|
|
5151
|
-
"children": null,
|
|
5152
|
-
"props": {
|
|
5153
|
-
"color": undefined,
|
|
5154
|
-
"label": "Europe/Malta",
|
|
5155
|
-
"value": "Europe/Malta",
|
|
5156
|
-
},
|
|
5157
|
-
"type": "Picker.Item",
|
|
5158
|
-
},
|
|
5159
|
-
{
|
|
5160
|
-
"$$typeof": Symbol(react.test.json),
|
|
5161
|
-
"children": null,
|
|
5162
|
-
"props": {
|
|
5163
|
-
"color": undefined,
|
|
5164
|
-
"label": "Europe/Mariehamn",
|
|
5165
|
-
"value": "Europe/Mariehamn",
|
|
5166
|
-
},
|
|
5167
|
-
"type": "Picker.Item",
|
|
5168
|
-
},
|
|
5169
|
-
{
|
|
5170
|
-
"$$typeof": Symbol(react.test.json),
|
|
5171
|
-
"children": null,
|
|
5172
|
-
"props": {
|
|
5173
|
-
"color": undefined,
|
|
5174
|
-
"label": "Europe/Minsk",
|
|
5175
|
-
"value": "Europe/Minsk",
|
|
5176
|
-
},
|
|
5177
|
-
"type": "Picker.Item",
|
|
5178
|
-
},
|
|
5179
|
-
{
|
|
5180
|
-
"$$typeof": Symbol(react.test.json),
|
|
5181
|
-
"children": null,
|
|
5182
|
-
"props": {
|
|
5183
|
-
"color": undefined,
|
|
5184
|
-
"label": "Europe/Monaco",
|
|
5185
|
-
"value": "Europe/Monaco",
|
|
5186
|
-
},
|
|
5187
|
-
"type": "Picker.Item",
|
|
5188
|
-
},
|
|
5189
|
-
{
|
|
5190
|
-
"$$typeof": Symbol(react.test.json),
|
|
5191
|
-
"children": null,
|
|
5192
|
-
"props": {
|
|
5193
|
-
"color": undefined,
|
|
5194
|
-
"label": "Europe/Moscow",
|
|
5195
|
-
"value": "Europe/Moscow",
|
|
5196
|
-
},
|
|
5197
|
-
"type": "Picker.Item",
|
|
5198
|
-
},
|
|
5199
|
-
{
|
|
5200
|
-
"$$typeof": Symbol(react.test.json),
|
|
5201
|
-
"children": null,
|
|
5202
|
-
"props": {
|
|
5203
|
-
"color": undefined,
|
|
5204
|
-
"label": "Europe/Oslo",
|
|
5205
|
-
"value": "Europe/Oslo",
|
|
5206
|
-
},
|
|
5207
|
-
"type": "Picker.Item",
|
|
5208
|
-
},
|
|
5209
|
-
{
|
|
5210
|
-
"$$typeof": Symbol(react.test.json),
|
|
5211
|
-
"children": null,
|
|
5212
|
-
"props": {
|
|
5213
|
-
"color": undefined,
|
|
5214
|
-
"label": "Europe/Paris",
|
|
5215
|
-
"value": "Europe/Paris",
|
|
5216
|
-
},
|
|
5217
|
-
"type": "Picker.Item",
|
|
5218
|
-
},
|
|
5219
|
-
{
|
|
5220
|
-
"$$typeof": Symbol(react.test.json),
|
|
5221
|
-
"children": null,
|
|
5222
|
-
"props": {
|
|
5223
|
-
"color": undefined,
|
|
5224
|
-
"label": "Europe/Podgorica",
|
|
5225
|
-
"value": "Europe/Podgorica",
|
|
5226
|
-
},
|
|
5227
|
-
"type": "Picker.Item",
|
|
5228
|
-
},
|
|
5229
|
-
{
|
|
5230
|
-
"$$typeof": Symbol(react.test.json),
|
|
5231
|
-
"children": null,
|
|
5232
|
-
"props": {
|
|
5233
|
-
"color": undefined,
|
|
5234
|
-
"label": "Europe/Prague",
|
|
5235
|
-
"value": "Europe/Prague",
|
|
5236
|
-
},
|
|
5237
|
-
"type": "Picker.Item",
|
|
5238
|
-
},
|
|
5239
|
-
{
|
|
5240
|
-
"$$typeof": Symbol(react.test.json),
|
|
5241
|
-
"children": null,
|
|
5242
|
-
"props": {
|
|
5243
|
-
"color": undefined,
|
|
5244
|
-
"label": "Europe/Riga",
|
|
5245
|
-
"value": "Europe/Riga",
|
|
5246
|
-
},
|
|
5247
|
-
"type": "Picker.Item",
|
|
5248
|
-
},
|
|
5249
|
-
{
|
|
5250
|
-
"$$typeof": Symbol(react.test.json),
|
|
5251
|
-
"children": null,
|
|
5252
|
-
"props": {
|
|
5253
|
-
"color": undefined,
|
|
5254
|
-
"label": "Europe/Rome",
|
|
5255
|
-
"value": "Europe/Rome",
|
|
5256
|
-
},
|
|
5257
|
-
"type": "Picker.Item",
|
|
5258
|
-
},
|
|
5259
|
-
{
|
|
5260
|
-
"$$typeof": Symbol(react.test.json),
|
|
5261
|
-
"children": null,
|
|
5262
|
-
"props": {
|
|
5263
|
-
"color": undefined,
|
|
5264
|
-
"label": "Europe/Samara",
|
|
5265
|
-
"value": "Europe/Samara",
|
|
5266
|
-
},
|
|
5267
|
-
"type": "Picker.Item",
|
|
5268
|
-
},
|
|
5269
|
-
{
|
|
5270
|
-
"$$typeof": Symbol(react.test.json),
|
|
5271
|
-
"children": null,
|
|
5272
|
-
"props": {
|
|
5273
|
-
"color": undefined,
|
|
5274
|
-
"label": "Europe/San_Marino",
|
|
5275
|
-
"value": "Europe/San_Marino",
|
|
5276
|
-
},
|
|
5277
|
-
"type": "Picker.Item",
|
|
5278
|
-
},
|
|
5279
|
-
{
|
|
5280
|
-
"$$typeof": Symbol(react.test.json),
|
|
5281
|
-
"children": null,
|
|
5282
|
-
"props": {
|
|
5283
|
-
"color": undefined,
|
|
5284
|
-
"label": "Europe/Sarajevo",
|
|
5285
|
-
"value": "Europe/Sarajevo",
|
|
5286
|
-
},
|
|
5287
|
-
"type": "Picker.Item",
|
|
5288
|
-
},
|
|
5289
|
-
{
|
|
5290
|
-
"$$typeof": Symbol(react.test.json),
|
|
5291
|
-
"children": null,
|
|
5292
|
-
"props": {
|
|
5293
|
-
"color": undefined,
|
|
5294
|
-
"label": "Europe/Saratov",
|
|
5295
|
-
"value": "Europe/Saratov",
|
|
5296
|
-
},
|
|
5297
|
-
"type": "Picker.Item",
|
|
5298
|
-
},
|
|
5299
|
-
{
|
|
5300
|
-
"$$typeof": Symbol(react.test.json),
|
|
5301
|
-
"children": null,
|
|
5302
|
-
"props": {
|
|
5303
|
-
"color": undefined,
|
|
5304
|
-
"label": "Europe/Simferopol",
|
|
5305
|
-
"value": "Europe/Simferopol",
|
|
5306
|
-
},
|
|
5307
|
-
"type": "Picker.Item",
|
|
5308
|
-
},
|
|
5309
|
-
{
|
|
5310
|
-
"$$typeof": Symbol(react.test.json),
|
|
5311
|
-
"children": null,
|
|
5312
|
-
"props": {
|
|
5313
|
-
"color": undefined,
|
|
5314
|
-
"label": "Europe/Skopje",
|
|
5315
|
-
"value": "Europe/Skopje",
|
|
5316
|
-
},
|
|
5317
|
-
"type": "Picker.Item",
|
|
5318
|
-
},
|
|
5319
|
-
{
|
|
5320
|
-
"$$typeof": Symbol(react.test.json),
|
|
5321
|
-
"children": null,
|
|
5322
|
-
"props": {
|
|
5323
|
-
"color": undefined,
|
|
5324
|
-
"label": "Europe/Sofia",
|
|
5325
|
-
"value": "Europe/Sofia",
|
|
5326
|
-
},
|
|
5327
|
-
"type": "Picker.Item",
|
|
5328
|
-
},
|
|
5329
|
-
{
|
|
5330
|
-
"$$typeof": Symbol(react.test.json),
|
|
5331
|
-
"children": null,
|
|
5332
|
-
"props": {
|
|
5333
|
-
"color": undefined,
|
|
5334
|
-
"label": "Europe/Stockholm",
|
|
5335
|
-
"value": "Europe/Stockholm",
|
|
5336
|
-
},
|
|
5337
|
-
"type": "Picker.Item",
|
|
5338
|
-
},
|
|
5339
|
-
{
|
|
5340
|
-
"$$typeof": Symbol(react.test.json),
|
|
5341
|
-
"children": null,
|
|
5342
|
-
"props": {
|
|
5343
|
-
"color": undefined,
|
|
5344
|
-
"label": "Europe/Tallinn",
|
|
5345
|
-
"value": "Europe/Tallinn",
|
|
5346
|
-
},
|
|
5347
|
-
"type": "Picker.Item",
|
|
5348
|
-
},
|
|
5349
|
-
{
|
|
5350
|
-
"$$typeof": Symbol(react.test.json),
|
|
5351
|
-
"children": null,
|
|
5352
|
-
"props": {
|
|
5353
|
-
"color": undefined,
|
|
5354
|
-
"label": "Europe/Tirane",
|
|
5355
|
-
"value": "Europe/Tirane",
|
|
5356
|
-
},
|
|
5357
|
-
"type": "Picker.Item",
|
|
5358
|
-
},
|
|
5359
|
-
{
|
|
5360
|
-
"$$typeof": Symbol(react.test.json),
|
|
5361
|
-
"children": null,
|
|
5362
|
-
"props": {
|
|
5363
|
-
"color": undefined,
|
|
5364
|
-
"label": "Europe/Ulyanovsk",
|
|
5365
|
-
"value": "Europe/Ulyanovsk",
|
|
5366
|
-
},
|
|
5367
|
-
"type": "Picker.Item",
|
|
5368
|
-
},
|
|
5369
|
-
{
|
|
5370
|
-
"$$typeof": Symbol(react.test.json),
|
|
5371
|
-
"children": null,
|
|
5372
|
-
"props": {
|
|
5373
|
-
"color": undefined,
|
|
5374
|
-
"label": "Europe/Vaduz",
|
|
5375
|
-
"value": "Europe/Vaduz",
|
|
5376
|
-
},
|
|
5377
|
-
"type": "Picker.Item",
|
|
5378
|
-
},
|
|
5379
|
-
{
|
|
5380
|
-
"$$typeof": Symbol(react.test.json),
|
|
5381
|
-
"children": null,
|
|
5382
|
-
"props": {
|
|
5383
|
-
"color": undefined,
|
|
5384
|
-
"label": "Europe/Vatican",
|
|
5385
|
-
"value": "Europe/Vatican",
|
|
5386
|
-
},
|
|
5387
|
-
"type": "Picker.Item",
|
|
5388
|
-
},
|
|
5389
|
-
{
|
|
5390
|
-
"$$typeof": Symbol(react.test.json),
|
|
5391
|
-
"children": null,
|
|
5392
|
-
"props": {
|
|
5393
|
-
"color": undefined,
|
|
5394
|
-
"label": "Europe/Vienna",
|
|
5395
|
-
"value": "Europe/Vienna",
|
|
5396
|
-
},
|
|
5397
|
-
"type": "Picker.Item",
|
|
5398
|
-
},
|
|
5399
|
-
{
|
|
5400
|
-
"$$typeof": Symbol(react.test.json),
|
|
5401
|
-
"children": null,
|
|
5402
|
-
"props": {
|
|
5403
|
-
"color": undefined,
|
|
5404
|
-
"label": "Europe/Vilnius",
|
|
5405
|
-
"value": "Europe/Vilnius",
|
|
5406
|
-
},
|
|
5407
|
-
"type": "Picker.Item",
|
|
5408
|
-
},
|
|
5409
|
-
{
|
|
5410
|
-
"$$typeof": Symbol(react.test.json),
|
|
5411
|
-
"children": null,
|
|
5412
|
-
"props": {
|
|
5413
|
-
"color": undefined,
|
|
5414
|
-
"label": "Europe/Volgograd",
|
|
5415
|
-
"value": "Europe/Volgograd",
|
|
5416
|
-
},
|
|
5417
|
-
"type": "Picker.Item",
|
|
5418
|
-
},
|
|
5419
|
-
{
|
|
5420
|
-
"$$typeof": Symbol(react.test.json),
|
|
5421
|
-
"children": null,
|
|
5422
|
-
"props": {
|
|
5423
|
-
"color": undefined,
|
|
5424
|
-
"label": "Europe/Warsaw",
|
|
5425
|
-
"value": "Europe/Warsaw",
|
|
5426
|
-
},
|
|
5427
|
-
"type": "Picker.Item",
|
|
5428
|
-
},
|
|
5429
|
-
{
|
|
5430
|
-
"$$typeof": Symbol(react.test.json),
|
|
5431
|
-
"children": null,
|
|
5432
|
-
"props": {
|
|
5433
|
-
"color": undefined,
|
|
5434
|
-
"label": "Europe/Zagreb",
|
|
5435
|
-
"value": "Europe/Zagreb",
|
|
5436
|
-
},
|
|
5437
|
-
"type": "Picker.Item",
|
|
5438
|
-
},
|
|
5439
|
-
{
|
|
5440
|
-
"$$typeof": Symbol(react.test.json),
|
|
5441
|
-
"children": null,
|
|
5442
|
-
"props": {
|
|
5443
|
-
"color": undefined,
|
|
5444
|
-
"label": "Europe/Zurich",
|
|
5445
|
-
"value": "Europe/Zurich",
|
|
5446
|
-
},
|
|
5447
|
-
"type": "Picker.Item",
|
|
5448
|
-
},
|
|
5449
|
-
{
|
|
5450
|
-
"$$typeof": Symbol(react.test.json),
|
|
5451
|
-
"children": null,
|
|
5452
|
-
"props": {
|
|
5453
|
-
"color": undefined,
|
|
5454
|
-
"label": "Indian/Antananarivo",
|
|
5455
|
-
"value": "Indian/Antananarivo",
|
|
5456
|
-
},
|
|
5457
|
-
"type": "Picker.Item",
|
|
5458
|
-
},
|
|
5459
|
-
{
|
|
5460
|
-
"$$typeof": Symbol(react.test.json),
|
|
5461
|
-
"children": null,
|
|
5462
|
-
"props": {
|
|
5463
|
-
"color": undefined,
|
|
5464
|
-
"label": "Indian/Chagos",
|
|
5465
|
-
"value": "Indian/Chagos",
|
|
5466
|
-
},
|
|
5467
|
-
"type": "Picker.Item",
|
|
5468
|
-
},
|
|
5469
|
-
{
|
|
5470
|
-
"$$typeof": Symbol(react.test.json),
|
|
5471
|
-
"children": null,
|
|
5472
|
-
"props": {
|
|
5473
|
-
"color": undefined,
|
|
5474
|
-
"label": "Indian/Christmas",
|
|
5475
|
-
"value": "Indian/Christmas",
|
|
5476
|
-
},
|
|
5477
|
-
"type": "Picker.Item",
|
|
5478
|
-
},
|
|
5479
|
-
{
|
|
5480
|
-
"$$typeof": Symbol(react.test.json),
|
|
5481
|
-
"children": null,
|
|
5482
|
-
"props": {
|
|
5483
|
-
"color": undefined,
|
|
5484
|
-
"label": "Indian/Cocos",
|
|
5485
|
-
"value": "Indian/Cocos",
|
|
5486
|
-
},
|
|
5487
|
-
"type": "Picker.Item",
|
|
5488
|
-
},
|
|
5489
|
-
{
|
|
5490
|
-
"$$typeof": Symbol(react.test.json),
|
|
5491
|
-
"children": null,
|
|
5492
|
-
"props": {
|
|
5493
|
-
"color": undefined,
|
|
5494
|
-
"label": "Indian/Comoro",
|
|
5495
|
-
"value": "Indian/Comoro",
|
|
5496
|
-
},
|
|
5497
|
-
"type": "Picker.Item",
|
|
5498
|
-
},
|
|
5499
|
-
{
|
|
5500
|
-
"$$typeof": Symbol(react.test.json),
|
|
5501
|
-
"children": null,
|
|
5502
|
-
"props": {
|
|
5503
|
-
"color": undefined,
|
|
5504
|
-
"label": "Indian/Kerguelen",
|
|
5505
|
-
"value": "Indian/Kerguelen",
|
|
5506
|
-
},
|
|
5507
|
-
"type": "Picker.Item",
|
|
5508
|
-
},
|
|
5509
|
-
{
|
|
5510
|
-
"$$typeof": Symbol(react.test.json),
|
|
5511
|
-
"children": null,
|
|
5512
|
-
"props": {
|
|
5513
|
-
"color": undefined,
|
|
5514
|
-
"label": "Indian/Mahe",
|
|
5515
|
-
"value": "Indian/Mahe",
|
|
5516
|
-
},
|
|
5517
|
-
"type": "Picker.Item",
|
|
5518
|
-
},
|
|
5519
|
-
{
|
|
5520
|
-
"$$typeof": Symbol(react.test.json),
|
|
5521
|
-
"children": null,
|
|
5522
|
-
"props": {
|
|
5523
|
-
"color": undefined,
|
|
5524
|
-
"label": "Indian/Maldives",
|
|
5525
|
-
"value": "Indian/Maldives",
|
|
5526
|
-
},
|
|
5527
|
-
"type": "Picker.Item",
|
|
5528
|
-
},
|
|
5529
|
-
{
|
|
5530
|
-
"$$typeof": Symbol(react.test.json),
|
|
5531
|
-
"children": null,
|
|
5532
|
-
"props": {
|
|
5533
|
-
"color": undefined,
|
|
5534
|
-
"label": "Indian/Mauritius",
|
|
5535
|
-
"value": "Indian/Mauritius",
|
|
5536
|
-
},
|
|
5537
|
-
"type": "Picker.Item",
|
|
5538
|
-
},
|
|
5539
|
-
{
|
|
5540
|
-
"$$typeof": Symbol(react.test.json),
|
|
5541
|
-
"children": null,
|
|
5542
|
-
"props": {
|
|
5543
|
-
"color": undefined,
|
|
5544
|
-
"label": "Indian/Mayotte",
|
|
5545
|
-
"value": "Indian/Mayotte",
|
|
5546
|
-
},
|
|
5547
|
-
"type": "Picker.Item",
|
|
5548
|
-
},
|
|
5549
|
-
{
|
|
5550
|
-
"$$typeof": Symbol(react.test.json),
|
|
5551
|
-
"children": null,
|
|
5552
|
-
"props": {
|
|
5553
|
-
"color": undefined,
|
|
5554
|
-
"label": "Indian/Reunion",
|
|
5555
|
-
"value": "Indian/Reunion",
|
|
5556
|
-
},
|
|
5557
|
-
"type": "Picker.Item",
|
|
5558
|
-
},
|
|
5559
|
-
{
|
|
5560
|
-
"$$typeof": Symbol(react.test.json),
|
|
5561
|
-
"children": null,
|
|
5562
|
-
"props": {
|
|
5563
|
-
"color": undefined,
|
|
5564
|
-
"label": "Pacific/Apia",
|
|
5565
|
-
"value": "Pacific/Apia",
|
|
5566
|
-
},
|
|
5567
|
-
"type": "Picker.Item",
|
|
5568
|
-
},
|
|
5569
|
-
{
|
|
5570
|
-
"$$typeof": Symbol(react.test.json),
|
|
5571
|
-
"children": null,
|
|
5572
|
-
"props": {
|
|
5573
|
-
"color": undefined,
|
|
5574
|
-
"label": "Pacific/Auckland",
|
|
5575
|
-
"value": "Pacific/Auckland",
|
|
5576
|
-
},
|
|
5577
|
-
"type": "Picker.Item",
|
|
5578
|
-
},
|
|
5579
|
-
{
|
|
5580
|
-
"$$typeof": Symbol(react.test.json),
|
|
5581
|
-
"children": null,
|
|
5582
|
-
"props": {
|
|
5583
|
-
"color": undefined,
|
|
5584
|
-
"label": "Pacific/Bougainville",
|
|
5585
|
-
"value": "Pacific/Bougainville",
|
|
5586
|
-
},
|
|
5587
|
-
"type": "Picker.Item",
|
|
5588
|
-
},
|
|
5589
|
-
{
|
|
5590
|
-
"$$typeof": Symbol(react.test.json),
|
|
5591
|
-
"children": null,
|
|
5592
|
-
"props": {
|
|
5593
|
-
"color": undefined,
|
|
5594
|
-
"label": "Pacific/Chatham",
|
|
5595
|
-
"value": "Pacific/Chatham",
|
|
5596
|
-
},
|
|
5597
|
-
"type": "Picker.Item",
|
|
5598
|
-
},
|
|
5599
|
-
{
|
|
5600
|
-
"$$typeof": Symbol(react.test.json),
|
|
5601
|
-
"children": null,
|
|
5602
|
-
"props": {
|
|
5603
|
-
"color": undefined,
|
|
5604
|
-
"label": "Pacific/Easter",
|
|
5605
|
-
"value": "Pacific/Easter",
|
|
5606
|
-
},
|
|
5607
|
-
"type": "Picker.Item",
|
|
5608
|
-
},
|
|
5609
|
-
{
|
|
5610
|
-
"$$typeof": Symbol(react.test.json),
|
|
5611
|
-
"children": null,
|
|
5612
|
-
"props": {
|
|
5613
|
-
"color": undefined,
|
|
5614
|
-
"label": "Pacific/Efate",
|
|
5615
|
-
"value": "Pacific/Efate",
|
|
5616
|
-
},
|
|
5617
|
-
"type": "Picker.Item",
|
|
5618
|
-
},
|
|
5619
|
-
{
|
|
5620
|
-
"$$typeof": Symbol(react.test.json),
|
|
5621
|
-
"children": null,
|
|
5622
|
-
"props": {
|
|
5623
|
-
"color": undefined,
|
|
5624
|
-
"label": "Pacific/Enderbury",
|
|
5625
|
-
"value": "Pacific/Enderbury",
|
|
5626
|
-
},
|
|
5627
|
-
"type": "Picker.Item",
|
|
5628
|
-
},
|
|
5629
|
-
{
|
|
5630
|
-
"$$typeof": Symbol(react.test.json),
|
|
5631
|
-
"children": null,
|
|
5632
|
-
"props": {
|
|
5633
|
-
"color": undefined,
|
|
5634
|
-
"label": "Pacific/Fakaofo",
|
|
5635
|
-
"value": "Pacific/Fakaofo",
|
|
5636
|
-
},
|
|
5637
|
-
"type": "Picker.Item",
|
|
5638
|
-
},
|
|
5639
|
-
{
|
|
5640
|
-
"$$typeof": Symbol(react.test.json),
|
|
5641
|
-
"children": null,
|
|
5642
|
-
"props": {
|
|
5643
|
-
"color": undefined,
|
|
5644
|
-
"label": "Pacific/Fiji",
|
|
5645
|
-
"value": "Pacific/Fiji",
|
|
5646
|
-
},
|
|
5647
|
-
"type": "Picker.Item",
|
|
5648
|
-
},
|
|
5649
|
-
{
|
|
5650
|
-
"$$typeof": Symbol(react.test.json),
|
|
5651
|
-
"children": null,
|
|
5652
|
-
"props": {
|
|
5653
|
-
"color": undefined,
|
|
5654
|
-
"label": "Pacific/Funafuti",
|
|
5655
|
-
"value": "Pacific/Funafuti",
|
|
5656
|
-
},
|
|
5657
|
-
"type": "Picker.Item",
|
|
5658
|
-
},
|
|
5659
|
-
{
|
|
5660
|
-
"$$typeof": Symbol(react.test.json),
|
|
5661
|
-
"children": null,
|
|
5662
|
-
"props": {
|
|
5663
|
-
"color": undefined,
|
|
5664
|
-
"label": "Pacific/Galapagos",
|
|
5665
|
-
"value": "Pacific/Galapagos",
|
|
5666
|
-
},
|
|
5667
|
-
"type": "Picker.Item",
|
|
5668
|
-
},
|
|
5669
|
-
{
|
|
5670
|
-
"$$typeof": Symbol(react.test.json),
|
|
5671
|
-
"children": null,
|
|
5672
|
-
"props": {
|
|
5673
|
-
"color": undefined,
|
|
5674
|
-
"label": "Pacific/Gambier",
|
|
5675
|
-
"value": "Pacific/Gambier",
|
|
5676
|
-
},
|
|
5677
|
-
"type": "Picker.Item",
|
|
5678
|
-
},
|
|
5679
|
-
{
|
|
5680
|
-
"$$typeof": Symbol(react.test.json),
|
|
5681
|
-
"children": null,
|
|
5682
|
-
"props": {
|
|
5683
|
-
"color": undefined,
|
|
5684
|
-
"label": "Pacific/Guadalcanal",
|
|
5685
|
-
"value": "Pacific/Guadalcanal",
|
|
5686
|
-
},
|
|
5687
|
-
"type": "Picker.Item",
|
|
5688
|
-
},
|
|
5689
|
-
{
|
|
5690
|
-
"$$typeof": Symbol(react.test.json),
|
|
5691
|
-
"children": null,
|
|
5692
|
-
"props": {
|
|
5693
|
-
"color": undefined,
|
|
5694
|
-
"label": "Pacific/Guam",
|
|
5695
|
-
"value": "Pacific/Guam",
|
|
5696
|
-
},
|
|
5697
|
-
"type": "Picker.Item",
|
|
5698
|
-
},
|
|
5699
|
-
{
|
|
5700
|
-
"$$typeof": Symbol(react.test.json),
|
|
5701
|
-
"children": null,
|
|
5702
|
-
"props": {
|
|
5703
|
-
"color": undefined,
|
|
5704
|
-
"label": "Pacific/Honolulu",
|
|
5705
|
-
"value": "Pacific/Honolulu",
|
|
5706
|
-
},
|
|
5707
|
-
"type": "Picker.Item",
|
|
5708
|
-
},
|
|
5709
|
-
{
|
|
5710
|
-
"$$typeof": Symbol(react.test.json),
|
|
5711
|
-
"children": null,
|
|
5712
|
-
"props": {
|
|
5713
|
-
"color": undefined,
|
|
5714
|
-
"label": "Pacific/Kiritimati",
|
|
5715
|
-
"value": "Pacific/Kiritimati",
|
|
5716
|
-
},
|
|
5717
|
-
"type": "Picker.Item",
|
|
5718
|
-
},
|
|
5719
|
-
{
|
|
5720
|
-
"$$typeof": Symbol(react.test.json),
|
|
5721
|
-
"children": null,
|
|
5722
|
-
"props": {
|
|
5723
|
-
"color": undefined,
|
|
5724
|
-
"label": "Pacific/Kosrae",
|
|
5725
|
-
"value": "Pacific/Kosrae",
|
|
5726
|
-
},
|
|
5727
|
-
"type": "Picker.Item",
|
|
5728
|
-
},
|
|
5729
|
-
{
|
|
5730
|
-
"$$typeof": Symbol(react.test.json),
|
|
5731
|
-
"children": null,
|
|
5732
|
-
"props": {
|
|
5733
|
-
"color": undefined,
|
|
5734
|
-
"label": "Pacific/Kwajalein",
|
|
5735
|
-
"value": "Pacific/Kwajalein",
|
|
5736
|
-
},
|
|
5737
|
-
"type": "Picker.Item",
|
|
5738
|
-
},
|
|
5739
|
-
{
|
|
5740
|
-
"$$typeof": Symbol(react.test.json),
|
|
5741
|
-
"children": null,
|
|
5742
|
-
"props": {
|
|
5743
|
-
"color": undefined,
|
|
5744
|
-
"label": "Pacific/Majuro",
|
|
5745
|
-
"value": "Pacific/Majuro",
|
|
5746
|
-
},
|
|
5747
|
-
"type": "Picker.Item",
|
|
5748
|
-
},
|
|
5749
|
-
{
|
|
5750
|
-
"$$typeof": Symbol(react.test.json),
|
|
5751
|
-
"children": null,
|
|
5752
|
-
"props": {
|
|
5753
|
-
"color": undefined,
|
|
5754
|
-
"label": "Pacific/Marquesas",
|
|
5755
|
-
"value": "Pacific/Marquesas",
|
|
5756
|
-
},
|
|
5757
|
-
"type": "Picker.Item",
|
|
5758
|
-
},
|
|
5759
|
-
{
|
|
5760
|
-
"$$typeof": Symbol(react.test.json),
|
|
5761
|
-
"children": null,
|
|
5762
|
-
"props": {
|
|
5763
|
-
"color": undefined,
|
|
5764
|
-
"label": "Pacific/Midway",
|
|
5765
|
-
"value": "Pacific/Midway",
|
|
5766
|
-
},
|
|
5767
|
-
"type": "Picker.Item",
|
|
5768
|
-
},
|
|
5769
|
-
{
|
|
5770
|
-
"$$typeof": Symbol(react.test.json),
|
|
5771
|
-
"children": null,
|
|
5772
|
-
"props": {
|
|
5773
|
-
"color": undefined,
|
|
5774
|
-
"label": "Pacific/Nauru",
|
|
5775
|
-
"value": "Pacific/Nauru",
|
|
5776
|
-
},
|
|
5777
|
-
"type": "Picker.Item",
|
|
5778
|
-
},
|
|
5779
|
-
{
|
|
5780
|
-
"$$typeof": Symbol(react.test.json),
|
|
5781
|
-
"children": null,
|
|
5782
|
-
"props": {
|
|
5783
|
-
"color": undefined,
|
|
5784
|
-
"label": "Pacific/Niue",
|
|
5785
|
-
"value": "Pacific/Niue",
|
|
5786
|
-
},
|
|
5787
|
-
"type": "Picker.Item",
|
|
5788
|
-
},
|
|
5789
|
-
{
|
|
5790
|
-
"$$typeof": Symbol(react.test.json),
|
|
5791
|
-
"children": null,
|
|
5792
|
-
"props": {
|
|
5793
|
-
"color": undefined,
|
|
5794
|
-
"label": "Pacific/Norfolk",
|
|
5795
|
-
"value": "Pacific/Norfolk",
|
|
5796
|
-
},
|
|
5797
|
-
"type": "Picker.Item",
|
|
5798
|
-
},
|
|
5799
|
-
{
|
|
5800
|
-
"$$typeof": Symbol(react.test.json),
|
|
5801
|
-
"children": null,
|
|
5802
|
-
"props": {
|
|
5803
|
-
"color": undefined,
|
|
5804
|
-
"label": "Pacific/Noumea",
|
|
5805
|
-
"value": "Pacific/Noumea",
|
|
5806
|
-
},
|
|
5807
|
-
"type": "Picker.Item",
|
|
5808
|
-
},
|
|
5809
|
-
{
|
|
5810
|
-
"$$typeof": Symbol(react.test.json),
|
|
5811
|
-
"children": null,
|
|
5812
|
-
"props": {
|
|
5813
|
-
"color": undefined,
|
|
5814
|
-
"label": "Pacific/Pago_Pago",
|
|
5815
|
-
"value": "Pacific/Pago_Pago",
|
|
5816
|
-
},
|
|
5817
|
-
"type": "Picker.Item",
|
|
5818
|
-
},
|
|
5819
|
-
{
|
|
5820
|
-
"$$typeof": Symbol(react.test.json),
|
|
5821
|
-
"children": null,
|
|
5822
|
-
"props": {
|
|
5823
|
-
"color": undefined,
|
|
5824
|
-
"label": "Pacific/Palau",
|
|
5825
|
-
"value": "Pacific/Palau",
|
|
5826
|
-
},
|
|
5827
|
-
"type": "Picker.Item",
|
|
5828
|
-
},
|
|
5829
|
-
{
|
|
5830
|
-
"$$typeof": Symbol(react.test.json),
|
|
5831
|
-
"children": null,
|
|
5832
|
-
"props": {
|
|
5833
|
-
"color": undefined,
|
|
5834
|
-
"label": "Pacific/Pitcairn",
|
|
5835
|
-
"value": "Pacific/Pitcairn",
|
|
5836
|
-
},
|
|
5837
|
-
"type": "Picker.Item",
|
|
5838
|
-
},
|
|
5839
|
-
{
|
|
5840
|
-
"$$typeof": Symbol(react.test.json),
|
|
5841
|
-
"children": null,
|
|
5842
|
-
"props": {
|
|
5843
|
-
"color": undefined,
|
|
5844
|
-
"label": "Pacific/Ponape",
|
|
5845
|
-
"value": "Pacific/Ponape",
|
|
5846
|
-
},
|
|
5847
|
-
"type": "Picker.Item",
|
|
5848
|
-
},
|
|
5849
|
-
{
|
|
5850
|
-
"$$typeof": Symbol(react.test.json),
|
|
5851
|
-
"children": null,
|
|
5852
|
-
"props": {
|
|
5853
|
-
"color": undefined,
|
|
5854
|
-
"label": "Pacific/Port_Moresby",
|
|
5855
|
-
"value": "Pacific/Port_Moresby",
|
|
5856
|
-
},
|
|
5857
|
-
"type": "Picker.Item",
|
|
5858
|
-
},
|
|
5859
|
-
{
|
|
5860
|
-
"$$typeof": Symbol(react.test.json),
|
|
5861
|
-
"children": null,
|
|
5862
|
-
"props": {
|
|
5863
|
-
"color": undefined,
|
|
5864
|
-
"label": "Pacific/Rarotonga",
|
|
5865
|
-
"value": "Pacific/Rarotonga",
|
|
5866
|
-
},
|
|
5867
|
-
"type": "Picker.Item",
|
|
5868
|
-
},
|
|
5869
|
-
{
|
|
5870
|
-
"$$typeof": Symbol(react.test.json),
|
|
5871
|
-
"children": null,
|
|
5872
|
-
"props": {
|
|
5873
|
-
"color": undefined,
|
|
5874
|
-
"label": "Pacific/Saipan",
|
|
5875
|
-
"value": "Pacific/Saipan",
|
|
5876
|
-
},
|
|
5877
|
-
"type": "Picker.Item",
|
|
5878
|
-
},
|
|
5879
|
-
{
|
|
5880
|
-
"$$typeof": Symbol(react.test.json),
|
|
5881
|
-
"children": null,
|
|
5882
|
-
"props": {
|
|
5883
|
-
"color": undefined,
|
|
5884
|
-
"label": "Pacific/Tahiti",
|
|
5885
|
-
"value": "Pacific/Tahiti",
|
|
5886
|
-
},
|
|
5887
|
-
"type": "Picker.Item",
|
|
5888
|
-
},
|
|
5889
|
-
{
|
|
5890
|
-
"$$typeof": Symbol(react.test.json),
|
|
5891
|
-
"children": null,
|
|
5892
|
-
"props": {
|
|
5893
|
-
"color": undefined,
|
|
5894
|
-
"label": "Pacific/Tarawa",
|
|
5895
|
-
"value": "Pacific/Tarawa",
|
|
5896
|
-
},
|
|
5897
|
-
"type": "Picker.Item",
|
|
5898
|
-
},
|
|
5899
|
-
{
|
|
5900
|
-
"$$typeof": Symbol(react.test.json),
|
|
5901
|
-
"children": null,
|
|
5902
|
-
"props": {
|
|
5903
|
-
"color": undefined,
|
|
5904
|
-
"label": "Pacific/Tongatapu",
|
|
5905
|
-
"value": "Pacific/Tongatapu",
|
|
5906
|
-
},
|
|
5907
|
-
"type": "Picker.Item",
|
|
5908
|
-
},
|
|
5909
|
-
{
|
|
5910
|
-
"$$typeof": Symbol(react.test.json),
|
|
5911
|
-
"children": null,
|
|
5912
|
-
"props": {
|
|
5913
|
-
"color": undefined,
|
|
5914
|
-
"label": "Pacific/Truk",
|
|
5915
|
-
"value": "Pacific/Truk",
|
|
5916
|
-
},
|
|
5917
|
-
"type": "Picker.Item",
|
|
5918
|
-
},
|
|
5919
|
-
{
|
|
5920
|
-
"$$typeof": Symbol(react.test.json),
|
|
5921
|
-
"children": null,
|
|
5922
|
-
"props": {
|
|
5923
|
-
"color": undefined,
|
|
5924
|
-
"label": "Pacific/Wake",
|
|
5925
|
-
"value": "Pacific/Wake",
|
|
5926
|
-
},
|
|
5927
|
-
"type": "Picker.Item",
|
|
5928
|
-
},
|
|
5929
|
-
{
|
|
5930
|
-
"$$typeof": Symbol(react.test.json),
|
|
5931
|
-
"children": null,
|
|
5932
|
-
"props": {
|
|
5933
|
-
"color": undefined,
|
|
5934
|
-
"label": "Pacific/Wallis",
|
|
5935
|
-
"value": "Pacific/Wallis",
|
|
5936
|
-
},
|
|
5937
|
-
"type": "Picker.Item",
|
|
5938
|
-
},
|
|
5939
|
-
{
|
|
5940
|
-
"$$typeof": Symbol(react.test.json),
|
|
5941
|
-
"children": null,
|
|
5942
|
-
"props": {
|
|
5943
|
-
"color": undefined,
|
|
5944
|
-
"label": "UTC",
|
|
5945
|
-
"value": "UTC",
|
|
5946
|
-
},
|
|
5947
|
-
"type": "Picker.Item",
|
|
5948
|
-
},
|
|
5949
|
-
],
|
|
5950
|
-
"props": {
|
|
5951
|
-
"onValueChange": [Function],
|
|
5952
|
-
"selectedValue": "Europe/London",
|
|
5953
|
-
"testID": "ios_picker",
|
|
5954
|
-
},
|
|
5955
|
-
"type": "Picker",
|
|
5956
|
-
},
|
|
5957
|
-
],
|
|
5958
|
-
"props": {
|
|
5959
|
-
"style": [
|
|
5960
|
-
{
|
|
5961
|
-
"backgroundColor": "#d0d4da",
|
|
5962
|
-
"justifyContent": "center",
|
|
5963
|
-
},
|
|
5964
|
-
{
|
|
5965
|
-
"height": 215,
|
|
5966
|
-
},
|
|
5967
|
-
],
|
|
5968
|
-
"testID": undefined,
|
|
5969
|
-
},
|
|
5970
|
-
"type": "View",
|
|
5971
|
-
},
|
|
5972
|
-
],
|
|
5973
|
-
"props": {
|
|
5974
|
-
"animationType": undefined,
|
|
5975
|
-
"onOrientationChange": [Function],
|
|
5976
|
-
"supportedOrientations": [
|
|
5977
|
-
"portrait",
|
|
5978
|
-
"landscape",
|
|
5979
|
-
],
|
|
5980
|
-
"testID": "ios_modal",
|
|
5981
|
-
"transparent": true,
|
|
5982
|
-
"visible": false,
|
|
5983
|
-
},
|
|
5984
|
-
"type": "Modal",
|
|
5985
|
-
},
|
|
5986
|
-
],
|
|
5987
|
-
"props": {
|
|
5988
|
-
"style": [
|
|
5989
|
-
{
|
|
5990
|
-
"alignItems": "center",
|
|
5991
|
-
"alignSelf": "stretch",
|
|
5992
|
-
"borderRadius": 4,
|
|
5993
|
-
"borderWidth": 1,
|
|
5994
|
-
"flexDirection": "row",
|
|
5995
|
-
"justifyContent": "center",
|
|
5996
|
-
"minHeight": 40,
|
|
5997
|
-
"width": "100%",
|
|
5998
|
-
},
|
|
5999
|
-
{
|
|
6000
|
-
"backgroundColor": "#FFFFFF",
|
|
6001
|
-
"borderColor": "#9A9A9A",
|
|
6002
|
-
},
|
|
6003
|
-
false,
|
|
6004
|
-
],
|
|
6005
|
-
"testID": undefined,
|
|
6006
|
-
},
|
|
6007
|
-
"type": "View",
|
|
6008
|
-
},
|
|
6009
|
-
],
|
|
6010
|
-
"props": {
|
|
6011
|
-
"style": undefined,
|
|
6012
|
-
"testID": undefined,
|
|
6013
|
-
},
|
|
6014
|
-
"type": "View",
|
|
6015
|
-
}
|
|
6016
|
-
`;
|
|
6017
|
-
|
|
6018
1308
|
exports[`TimezonePicker renders with short timezone labels 1`] = `
|
|
6019
1309
|
{
|
|
6020
1310
|
"$$typeof": Symbol(react.test.json),
|