mirror of
https://github.com/wader/fq.git
synced 2024-11-23 00:57:15 +03:00
Merge branch 'master' of https://github.com/wader/fq into macos_bookmark
This commit is contained in:
commit
34c560c2f5
77
Makefile
77
Makefile
@ -3,57 +3,51 @@ GO_BUILD_LDFLAGS ?= -s -w
|
||||
|
||||
all: test fq
|
||||
|
||||
.PHONY: fq
|
||||
fq:
|
||||
# used to force make to always redo
|
||||
.PHONY: always
|
||||
|
||||
fq: always
|
||||
CGO_ENABLED=0 go build -o fq -ldflags "${GO_BUILD_LDFLAGS}" ${GO_BUILD_FLAGS} .
|
||||
|
||||
.PHONY: test
|
||||
test: testgo testjq testcli
|
||||
test: always testgo testjq testcli
|
||||
test-race: always testgo-race testjq testcli
|
||||
|
||||
.PHONY: test-race
|
||||
test-race: testgo-race testjq testcli
|
||||
|
||||
.PHONY: testgo
|
||||
# figure out all go pakges with test files
|
||||
# figure out all go packages with test files
|
||||
testgo: PKGS=$(shell find . -name "*_test.go" | xargs -n 1 dirname | sort | uniq)
|
||||
testgo:
|
||||
testgo: always
|
||||
go test -timeout 20m ${RACE} ${VERBOSE} ${COVER} ${PKGS}
|
||||
|
||||
.PHONY: testgo-race
|
||||
testgo-race: RACE=-race
|
||||
testgo-race: testgo
|
||||
|
||||
.PHONY: testjq
|
||||
testjq: fq
|
||||
@pkg/interp/testjq.sh ./fq pkg/interp/*_test.jq
|
||||
testjq: $(shell find . -name "*.jq.test")
|
||||
%.jq.test: fq
|
||||
@echo $@
|
||||
@./fq -rRs -L pkg/interp 'include "jqtest"; run_tests' $@
|
||||
|
||||
.PHONY: testcli
|
||||
testcli: fq
|
||||
@pkg/cli/test_exp.sh ./fq pkg/cli/test_repl.exp
|
||||
@pkg/cli/test_exp.sh ./fq pkg/cli/test_cli_ctrlc.exp
|
||||
@pkg/cli/test_exp.sh ./fq pkg/cli/test_cli_ctrld.exp
|
||||
|
||||
.PHONY: cover
|
||||
cover: COVER=-cover -coverpkg=./... -coverprofile=cover.out
|
||||
cover: test
|
||||
go tool cover -html=cover.out -o cover.out.html
|
||||
cat cover.out.html | grep '<option value="file' | sed -E 's/.*>(.*) \((.*)%\)<.*/\2 \1/' | sort -rn
|
||||
|
||||
.PHONY: doc
|
||||
doc: doc/formats.svg doc/demo.svg
|
||||
doc: doc/display_json.svg
|
||||
doc: doc/display_decode_value.svg
|
||||
doc: doc/display_decode_value_d.svg
|
||||
doc: doc/display_decode_value_dv.svg
|
||||
@doc/mdsh.sh ./fq *.md doc/*.md
|
||||
doc: always
|
||||
doc: $(wildcard doc/*.svg)
|
||||
doc: $(wildcard *.md doc/*.md)
|
||||
|
||||
doc/%.svg: doc/%.sh fq
|
||||
(cd doc ; ../$< ../fq) | go run github.com/wader/ansisvg@master > $@
|
||||
%.md: fq
|
||||
@doc/mdsh.sh ./fq $@
|
||||
|
||||
doc/%.svg: fq
|
||||
(cd doc ; ../$@.sh ../fq) | go run github.com/wader/ansisvg@master > $@
|
||||
|
||||
.PHONY: doc/formats.svg
|
||||
doc/formats.svg: fq
|
||||
# ignore graphviz version as it causes diff when nothing has changed
|
||||
./fq -rnf doc/formats_diagram.jq | dot -Tsvg | sed 's/Generated by graphviz.*//' > doc/formats.svg
|
||||
# ignore graphviz version as it causes diff when nothing has changed
|
||||
./fq -rnf doc/formats_diagram.jq | dot -Tsvg | sed 's/Generated by graphviz.*//' >doc/formats.svg
|
||||
|
||||
doc/file.mp3: Makefile
|
||||
ffmpeg -y -f lavfi -i sine -f lavfi -i testsrc -map 0:0 -map 1:0 -t 20ms "$@"
|
||||
@ -61,36 +55,28 @@ doc/file.mp3: Makefile
|
||||
doc/file.mp4: Makefile
|
||||
ffmpeg -y -f lavfi -i sine -f lavfi -i testsrc -c:a aac -c:v h264 -f mp4 -t 20ms "$@"
|
||||
|
||||
.PHONY: gogenerate
|
||||
gogenerate:
|
||||
gogenerate: always
|
||||
go generate -x ./...
|
||||
|
||||
.PHONY: lint
|
||||
lint:
|
||||
lint: always
|
||||
# bump: make-golangci-lint /golangci-lint@v([\d.]+)/ git:https://github.com/golangci/golangci-lint.git|^1
|
||||
# bump: make-golangci-lint link "Release notes" https://github.com/golangci/golangci-lint/releases/tag/v$LATEST
|
||||
go run github.com/golangci/golangci-lint/cmd/golangci-lint@v1.50.1 run
|
||||
|
||||
.PHONY: depgraph.svg
|
||||
depgraph.svg:
|
||||
depgraph.svg: always
|
||||
go run github.com/kisielk/godepgraph@latest github.com/wader/fq | dot -Tsvg -o godepgraph.svg
|
||||
|
||||
# make memprof ARGS=". test.mp3"
|
||||
# make cpuprof ARGS=". test.mp3"
|
||||
.PHONY: prof
|
||||
prof:
|
||||
go build -tags profile -o fq.prof fq.go
|
||||
prof: always
|
||||
go build -tags profile -o fq.prof .
|
||||
CPUPROFILE=fq.cpu.prof MEMPROFILE=fq.mem.prof ./fq.prof ${ARGS}
|
||||
.PHONY: memprof
|
||||
memprof: prof
|
||||
go tool pprof -http :5555 fq.prof fq.mem.prof
|
||||
|
||||
.PHONY: cpuprof
|
||||
cpuprof: prof
|
||||
go tool pprof -http :5555 fq.prof fq.cpu.prof
|
||||
|
||||
.PHONY: update-gomod
|
||||
update-gomod:
|
||||
update-gomod: always
|
||||
GOPROXY=direct go get -d github.com/wader/readline@fq
|
||||
GOPROXY=direct go get -d github.com/wader/gojq@fq
|
||||
go mod tidy
|
||||
@ -99,19 +85,18 @@ update-gomod:
|
||||
# Usage: make fuzz GROUP=mp4 # fuzz a group (each format is a group also)
|
||||
# TODO: as decode recovers panic and "repanics" unrecoverable errors this is a bit hacky at the moment
|
||||
# Retrigger:
|
||||
# try to decode crsash with all formats:
|
||||
# try to decode crash with all formats in order to see which one paniced:
|
||||
# cat format/testdata/fuzz/FuzzFormats/... | go run dev/fuzzbytes.go | go run . -d bytes '. as $b | formats | keys[] as $f | $b | decode($f)'
|
||||
# convert crash into raw bytes:
|
||||
# cat format/testdata/fuzz/FuzzFormats/... | go run dev/fuzzbytes.go | fq -d bytes tobase64
|
||||
# fq -n '"..." | frombase64 | ...'
|
||||
.PHONY: fuzz
|
||||
fuzz:
|
||||
fuzz: always
|
||||
# in other terminal: tail -f /tmp/repanic
|
||||
FUZZTEST=1 REPANIC_LOG=/tmp/repanic go test -v -run Fuzz -fuzz=Fuzz ./format/
|
||||
|
||||
# usage: make release VERSION=0.0.1
|
||||
# tag forked dependeces for history and to make then stay around
|
||||
.PHONY: release
|
||||
release: always
|
||||
release: WADER_GOJQ_COMMIT=$(shell go list -m -f '{{.Version}}' github.com/wader/gojq | sed 's/.*-\(.*\)/\1/')
|
||||
release: WADER_READLINE_COMMIT=$(shell go list -m -f '{{.Version}}' github.com/wader/readline | sed 's/.*-\(.*\)/\1/')
|
||||
release:
|
||||
|
@ -132,6 +132,7 @@ tar,
|
||||
tcp_segment,
|
||||
tiff,
|
||||
toml,
|
||||
[tzif](doc/formats.md#tzif),
|
||||
udp_datagram,
|
||||
vorbis_comment,
|
||||
vorbis_packet,
|
||||
@ -240,9 +241,8 @@ cp "$(go env GOPATH)/bin/fq" /usr/local/bin
|
||||
To build, run and test from source:
|
||||
```sh
|
||||
# build an run
|
||||
go run fq.go
|
||||
# or
|
||||
go run .
|
||||
go run . -d mp3 file.mp3
|
||||
# just build
|
||||
go build -o fq .
|
||||
# run all tests and build binary
|
||||
|
@ -1,5 +1,5 @@
|
||||
// tool to convert go fuzz input files to bytes
|
||||
// Usage: cat format/testdata/fuzz/FuzzFormats/144bde49b40c90fd05d302ec90b6ddb2b6d6aea553bad520a8b954797e40fe72 | go run dev/fuzzbytes.go | go run fq.go
|
||||
// Usage: cat format/testdata/fuzz/FuzzFormats/144bde49b40c90fd05d302ec90b6ddb2b6d6aea553bad520a8b954797e40fe72 | go run dev/fuzzbytes.go | go run .
|
||||
package main
|
||||
|
||||
import (
|
||||
|
31
doc/dev.md
31
doc/dev.md
@ -17,6 +17,7 @@ But maybe in lowercase to be jq/JSON-ish.
|
||||
- Decode only ranges you know what they are. If possible let "parent" decide what to do with unknown gaps
|
||||
bits by using `*Decode*Len/Range/Limit` functions. fq will also automatically add "gap" fields if
|
||||
it finds gaps.
|
||||
- If you have decode helpers functions that decode a bunch of fields etc it is usually nice to make it only decode fields, not seek or add it's own "containing" struct. That way the function will be easier to reuse and only do one thing. Ex the helper `func decodeHeader(d *decode.D)` can then be use as `d.FieldStruct("header", decodeHeader)`, `d.SeekRel(1234, decodeHeader)` or `d.SeekRel(1234, func(d *decode.D) { d.FieldStruct("header, decodeHeader") }`
|
||||
- Try to not decode too much as one value.
|
||||
A length encoded int could be two fields, but maybe a length prefixed string should be one.
|
||||
Flags can be struct with bit-fields.
|
||||
@ -32,6 +33,26 @@ Flags can be struct with bit-fields.
|
||||
- Can new formats be added to other formats
|
||||
- Does the new format include existing formats
|
||||
|
||||
### Checklist
|
||||
|
||||
- Commits:
|
||||
- Use commit messages with a context prefix to make it easier to find and understand, ex:<br>
|
||||
`mp3: Validate sync correctly`
|
||||
- Tests:
|
||||
- If possible use a pair of `testdata/file` and `testdata/file.fqtest` where `file.fqtest` is `$ fq dv file` and optionally `$ fq torepr file` if there is `torepr` support.
|
||||
- If `dv` produces a lof of output maybe use `dv({array_truncate: 50})` etc
|
||||
- Run `go test ./format -run TestFormats/<name>` to test expected output.
|
||||
- Run `WRITE_ACTUAL=1 go test ./format -run TestFormats/<name>` to write current output as expected output.
|
||||
- If you have format specific documentation:
|
||||
- Put it in `format/*/<name>.md` and use `//go:embed <name>.md`/`interp.RegisterFS(..)` to embed/register it.
|
||||
- Use simple markdown, just sections (depth starts at 3, `### Section`), paragraphs, lists and links.
|
||||
- No heading section is needs with format name, will be added by `make doc` and fq cli help system.
|
||||
- Add a `testdata/<name>_help.fqtest` with just `$ fq -h <name>` to test CLI help.
|
||||
- If in doubt look at `mp4.md`/`mp4.go` etc.
|
||||
- Run `make README.md doc/formats.md` to update md files.
|
||||
- Run linter `make lint`
|
||||
- Run fuzzer `make fuzz GROUP=<name>`, see usage in Makefile
|
||||
|
||||
### Decoder API
|
||||
|
||||
`*decode.D` reader methods use this name convention:
|
||||
@ -185,7 +206,7 @@ I ususally use `-d <format>` and `dv` while developing, that way you will get a
|
||||
even if it fails. `dv` gives verbose output and also includes stacktrace.
|
||||
|
||||
```sh
|
||||
go run fq.go -d <format> dv file
|
||||
go run . -d <format> dv file
|
||||
```
|
||||
|
||||
If the format is inside some other format it can be handy to first extract the bits and run
|
||||
@ -205,7 +226,7 @@ make things more comfortable. Also using vscode/delve for debugging should work
|
||||
launch `args` are setup etc.
|
||||
|
||||
```
|
||||
watchexec "go run fq.go -d aac_frame dv aac_frame"
|
||||
watchexec "go run . -d aac_frame dv aac_frame"
|
||||
```
|
||||
|
||||
Some different ways to run tests:
|
||||
@ -215,7 +236,7 @@ make test
|
||||
# run all go tests
|
||||
go test ./...
|
||||
# run all tests for one format
|
||||
go test -run TestFQTests/mp4 ./format/
|
||||
go test -run TestFormats/mp4 ./format/
|
||||
# write all actual outputs
|
||||
WRITE_ACTUAL=1 go test ./...
|
||||
# write actual output for specific tests
|
||||
@ -242,12 +263,12 @@ Split debug and normal output even when using repl:
|
||||
|
||||
Write `log` package output and stderr to a file that can be `tail -f`:ed in another terminal:
|
||||
```sh
|
||||
LOGFILE=/tmp/log go run fq.go ... 2>>/tmp/log
|
||||
LOGFILE=/tmp/log go run . ... 2>>/tmp/log
|
||||
```
|
||||
|
||||
gojq execution debug:
|
||||
```sh
|
||||
GOJQ_DEBUG=1 go run -tags debug fq.go ...
|
||||
GOJQ_DEBUG=1 go run -tags debug . ...
|
||||
```
|
||||
|
||||
Memory and CPU profile (will open a browser):
|
||||
|
@ -60,8 +60,8 @@ def formats_table:
|
||||
, .uses
|
||||
];
|
||||
[ ""
|
||||
, (.[0] | . as $rc | $rc.string | rpad(" "; $rc.maxwidth))
|
||||
, (.[1] | . as $rc | $rc.string | rpad(" "; $rc.maxwidth))
|
||||
, (.[0] | . as $rc | $rc.string | rpad(" "; $rc.maxwidth | [., .+20] | max))
|
||||
, (.[1] | . as $rc | $rc.string | rpad(" "; $rc.maxwidth | [., .+20] | max))
|
||||
, .[2].string
|
||||
, ""
|
||||
] | join("|")
|
||||
|
260
doc/formats.md
260
doc/formats.md
@ -2,126 +2,126 @@
|
||||
|
||||
[fq -rn -L . 'include "formats"; formats_table']: sh-start
|
||||
|
||||
|Name |Description |Dependencies|
|
||||
|- |- |-|
|
||||
|[`aac_frame`](#aac_frame) |Advanced Audio Coding frame |<sub></sub>|
|
||||
|`adts` |Audio Data Transport Stream |<sub>`adts_frame`</sub>|
|
||||
|`adts_frame` |Audio Data Transport Stream frame |<sub>`aac_frame`</sub>|
|
||||
|`amf0` |Action Message Format 0 |<sub></sub>|
|
||||
|`apev2` |APEv2 metadata tag |<sub>`image`</sub>|
|
||||
|[`apple_bookmark`](#apple_bookmark) |Apple BookmarkData |<sub></sub>|
|
||||
|`ar` |Unix archive |<sub>`probe`</sub>|
|
||||
|[`asn1_ber`](#asn1_ber) |ASN1 BER (basic encoding rules, also CER and DER)|<sub></sub>|
|
||||
|`av1_ccr` |AV1 Codec Configuration Record |<sub></sub>|
|
||||
|`av1_frame` |AV1 frame |<sub>`av1_obu`</sub>|
|
||||
|`av1_obu` |AV1 Open Bitstream Unit |<sub></sub>|
|
||||
|`avc_annexb` |H.264/AVC Annex B |<sub>`avc_nalu`</sub>|
|
||||
|[`avc_au`](#avc_au) |H.264/AVC Access Unit |<sub>`avc_nalu`</sub>|
|
||||
|`avc_dcr` |H.264/AVC Decoder Configuration Record |<sub>`avc_nalu`</sub>|
|
||||
|`avc_nalu` |H.264/AVC Network Access Layer Unit |<sub>`avc_sps` `avc_pps` `avc_sei`</sub>|
|
||||
|`avc_pps` |H.264/AVC Picture Parameter Set |<sub></sub>|
|
||||
|`avc_sei` |H.264/AVC Supplemental Enhancement Information |<sub></sub>|
|
||||
|`avc_sps` |H.264/AVC Sequence Parameter Set |<sub></sub>|
|
||||
|[`avi`](#avi) |Audio Video Interleaved |<sub>`avc_au` `hevc_au` `mp3_frame` `flac_frame`</sub>|
|
||||
|[`avro_ocf`](#avro_ocf) |Avro object container file |<sub></sub>|
|
||||
|[`bencode`](#bencode) |BitTorrent bencoding |<sub></sub>|
|
||||
|`bitcoin_blkdat` |Bitcoin blk.dat |<sub>`bitcoin_block`</sub>|
|
||||
|[`bitcoin_block`](#bitcoin_block) |Bitcoin block |<sub>`bitcoin_transaction`</sub>|
|
||||
|`bitcoin_script` |Bitcoin script |<sub></sub>|
|
||||
|`bitcoin_transaction` |Bitcoin transaction |<sub>`bitcoin_script`</sub>|
|
||||
|[`bits`](#bits) |Raw bits |<sub></sub>|
|
||||
|[`bplist`](#bplist) |Apple Binary Property List |<sub></sub>|
|
||||
|`bsd_loopback_frame` |BSD loopback frame |<sub>`inet_packet`</sub>|
|
||||
|[`bson`](#bson) |Binary JSON |<sub></sub>|
|
||||
|[`bytes`](#bytes) |Raw bytes |<sub></sub>|
|
||||
|`bzip2` |bzip2 compression |<sub>`probe`</sub>|
|
||||
|[`cbor`](#cbor) |Concise Binary Object Representation |<sub></sub>|
|
||||
|[`csv`](#csv) |Comma separated values |<sub></sub>|
|
||||
|`dns` |DNS packet |<sub></sub>|
|
||||
|`dns_tcp` |DNS packet (TCP) |<sub></sub>|
|
||||
|`elf` |Executable and Linkable Format |<sub></sub>|
|
||||
|`ether8023_frame` |Ethernet 802.3 frame |<sub>`inet_packet`</sub>|
|
||||
|`exif` |Exchangeable Image File Format |<sub></sub>|
|
||||
|`fairplay_spc` |FairPlay Server Playback Context |<sub></sub>|
|
||||
|`flac` |Free Lossless Audio Codec file |<sub>`flac_metadatablocks` `flac_frame`</sub>|
|
||||
|[`flac_frame`](#flac_frame) |FLAC frame |<sub></sub>|
|
||||
|`flac_metadatablock` |FLAC metadatablock |<sub>`flac_streaminfo` `flac_picture` `vorbis_comment`</sub>|
|
||||
|`flac_metadatablocks` |FLAC metadatablocks |<sub>`flac_metadatablock`</sub>|
|
||||
|`flac_picture` |FLAC metadatablock picture |<sub>`image`</sub>|
|
||||
|`flac_streaminfo` |FLAC streaminfo |<sub></sub>|
|
||||
|`gif` |Graphics Interchange Format |<sub></sub>|
|
||||
|`gzip` |gzip compression |<sub>`probe`</sub>|
|
||||
|`hevc_annexb` |H.265/HEVC Annex B |<sub>`hevc_nalu`</sub>|
|
||||
|[`hevc_au`](#hevc_au) |H.265/HEVC Access Unit |<sub>`hevc_nalu`</sub>|
|
||||
|`hevc_dcr` |H.265/HEVC Decoder Configuration Record |<sub>`hevc_nalu`</sub>|
|
||||
|`hevc_nalu` |H.265/HEVC Network Access Layer Unit |<sub>`hevc_vps` `hevc_pps` `hevc_sps`</sub>|
|
||||
|`hevc_pps` |H.265/HEVC Picture Parameter Set |<sub></sub>|
|
||||
|`hevc_sps` |H.265/HEVC Sequence Parameter Set |<sub></sub>|
|
||||
|`hevc_vps` |H.265/HEVC Video Parameter Set |<sub></sub>|
|
||||
|[`html`](#html) |HyperText Markup Language |<sub></sub>|
|
||||
|`icc_profile` |International Color Consortium profile |<sub></sub>|
|
||||
|`icmp` |Internet Control Message Protocol |<sub></sub>|
|
||||
|`icmpv6` |Internet Control Message Protocol v6 |<sub></sub>|
|
||||
|`id3v1` |ID3v1 metadata |<sub></sub>|
|
||||
|`id3v11` |ID3v1.1 metadata |<sub></sub>|
|
||||
|`id3v2` |ID3v2 metadata |<sub>`image`</sub>|
|
||||
|`ipv4_packet` |Internet protocol v4 packet |<sub>`ip_packet`</sub>|
|
||||
|`ipv6_packet` |Internet protocol v6 packet |<sub>`ip_packet`</sub>|
|
||||
|`jpeg` |Joint Photographic Experts Group file |<sub>`exif` `icc_profile`</sub>|
|
||||
|`json` |JavaScript Object Notation |<sub></sub>|
|
||||
|`jsonl` |JavaScript Object Notation Lines |<sub></sub>|
|
||||
|[`macho`](#macho) |Mach-O macOS executable |<sub></sub>|
|
||||
|`macho_fat` |Fat Mach-O macOS executable (multi-architecture) |<sub>`macho`</sub>|
|
||||
|[`markdown`](#markdown) |Markdown |<sub></sub>|
|
||||
|[`matroska`](#matroska) |Matroska file |<sub>`aac_frame` `av1_ccr` `av1_frame` `avc_au` `avc_dcr` `flac_frame` `flac_metadatablocks` `hevc_au` `hevc_dcr` `image` `mp3_frame` `mpeg_asc` `mpeg_pes_packet` `mpeg_spu` `opus_packet` `vorbis_packet` `vp8_frame` `vp9_cfm` `vp9_frame`</sub>|
|
||||
|[`mp3`](#mp3) |MP3 file |<sub>`id3v2` `id3v1` `id3v11` `apev2` `mp3_frame`</sub>|
|
||||
|`mp3_frame` |MPEG audio layer 3 frame |<sub>`mp3_frame_tags`</sub>|
|
||||
|`mp3_frame_tags` |MP3 frame info/xing tags |<sub></sub>|
|
||||
|[`mp4`](#mp4) |ISOBMFF, QuickTime and similar |<sub>`aac_frame` `av1_ccr` `av1_frame` `avc_au` `avc_dcr` `flac_frame` `flac_metadatablocks` `hevc_au` `hevc_dcr` `icc_profile` `id3v2` `image` `jpeg` `mp3_frame` `mpeg_es` `mpeg_pes_packet` `opus_packet` `png` `prores_frame` `protobuf_widevine` `pssh_playready` `vorbis_packet` `vp9_frame` `vpx_ccr`</sub>|
|
||||
|`mpeg_asc` |MPEG-4 Audio Specific Config |<sub></sub>|
|
||||
|`mpeg_es` |MPEG Elementary Stream |<sub>`mpeg_asc` `vorbis_packet`</sub>|
|
||||
|`mpeg_pes` |MPEG Packetized elementary stream |<sub>`mpeg_pes_packet` `mpeg_spu`</sub>|
|
||||
|`mpeg_pes_packet` |MPEG Packetized elementary stream packet |<sub></sub>|
|
||||
|`mpeg_spu` |Sub Picture Unit (DVD subtitle) |<sub></sub>|
|
||||
|`mpeg_ts` |MPEG Transport Stream |<sub></sub>|
|
||||
|[`msgpack`](#msgpack) |MessagePack |<sub></sub>|
|
||||
|`ogg` |OGG file |<sub>`ogg_page` `vorbis_packet` `opus_packet` `flac_metadatablock` `flac_frame`</sub>|
|
||||
|`ogg_page` |OGG page |<sub></sub>|
|
||||
|`opus_packet` |Opus packet |<sub>`vorbis_comment`</sub>|
|
||||
|[`pcap`](#pcap) |PCAP packet capture |<sub>`link_frame` `tcp_stream` `ipv4_packet`</sub>|
|
||||
|`pcapng` |PCAPNG packet capture |<sub>`link_frame` `tcp_stream` `ipv4_packet`</sub>|
|
||||
|`png` |Portable Network Graphics file |<sub>`icc_profile` `exif`</sub>|
|
||||
|`prores_frame` |Apple ProRes frame |<sub></sub>|
|
||||
|[`protobuf`](#protobuf) |Protobuf |<sub></sub>|
|
||||
|`protobuf_widevine` |Widevine protobuf |<sub>`protobuf`</sub>|
|
||||
|`pssh_playready` |PlayReady PSSH |<sub></sub>|
|
||||
|[`rtmp`](#rtmp) |Real-Time Messaging Protocol |<sub>`amf0` `mpeg_asc`</sub>|
|
||||
|`sll2_packet` |Linux cooked capture encapsulation v2 |<sub>`inet_packet`</sub>|
|
||||
|`sll_packet` |Linux cooked capture encapsulation |<sub>`inet_packet`</sub>|
|
||||
|`tar` |Tar archive |<sub>`probe`</sub>|
|
||||
|`tcp_segment` |Transmission control protocol segment |<sub></sub>|
|
||||
|`tiff` |Tag Image File Format |<sub>`icc_profile`</sub>|
|
||||
|`toml` |Tom's Obvious, Minimal Language |<sub></sub>|
|
||||
|`udp_datagram` |User datagram protocol |<sub>`udp_payload`</sub>|
|
||||
|`vorbis_comment` |Vorbis comment |<sub>`flac_picture`</sub>|
|
||||
|`vorbis_packet` |Vorbis packet |<sub>`vorbis_comment`</sub>|
|
||||
|`vp8_frame` |VP8 frame |<sub></sub>|
|
||||
|`vp9_cfm` |VP9 Codec Feature Metadata |<sub></sub>|
|
||||
|`vp9_frame` |VP9 frame |<sub></sub>|
|
||||
|`vpx_ccr` |VPX Codec Configuration Record |<sub></sub>|
|
||||
|[`wasm`](#wasm) |WebAssembly Binary Format |<sub></sub>|
|
||||
|`wav` |WAV file |<sub>`id3v2` `id3v1` `id3v11`</sub>|
|
||||
|`webp` |WebP image |<sub>`vp8_frame`</sub>|
|
||||
|[`xml`](#xml) |Extensible Markup Language |<sub></sub>|
|
||||
|`yaml` |YAML Ain't Markup Language |<sub></sub>|
|
||||
|[`zip`](#zip) |ZIP archive |<sub>`probe`</sub>|
|
||||
|`image` |Group |<sub>`gif` `jpeg` `mp4` `png` `tiff` `webp`</sub>|
|
||||
|`inet_packet` |Group |<sub>`ipv4_packet` `ipv6_packet`</sub>|
|
||||
|`ip_packet` |Group |<sub>`icmp` `icmpv6` `tcp_segment` `udp_datagram`</sub>|
|
||||
|`link_frame` |Group |<sub>`bsd_loopback_frame` `ether8023_frame` `sll2_packet` `sll_packet`</sub>|
|
||||
|`probe` |Group |<sub>`adts` `apple_bookmark` `ar` `avi` `avro_ocf` `bitcoin_blkdat` `bplist` `bzip2` `elf` `flac` `gif` `gzip` `jpeg` `json` `jsonl` `macho` `macho_fat` `matroska` `mp3` `mp4` `mpeg_ts` `ogg` `pcap` `pcapng` `png` `tar` `tiff` `toml` `wasm` `wav` `webp` `xml` `yaml` `zip`</sub>|
|
||||
|`tcp_stream` |Group |<sub>`dns_tcp` `rtmp`</sub>|
|
||||
|`udp_payload` |Group |<sub>`dns`</sub>|
|
||||
|Name |Description |Dependencies|
|
||||
|- |- |-|
|
||||
|[`aac_frame`](#aac_frame) |Advanced Audio Coding frame |<sub></sub>|
|
||||
|`adts` |Audio Data Transport Stream |<sub>`adts_frame`</sub>|
|
||||
|`adts_frame` |Audio Data Transport Stream frame |<sub>`aac_frame`</sub>|
|
||||
|`amf0` |Action Message Format 0 |<sub></sub>|
|
||||
|`apev2` |APEv2 metadata tag |<sub>`image`</sub>|
|
||||
|`ar` |Unix archive |<sub>`probe`</sub>|
|
||||
|[`asn1_ber`](#asn1_ber) |ASN1 BER (basic encoding rules, also CER and DER) |<sub></sub>|
|
||||
|`av1_ccr` |AV1 Codec Configuration Record |<sub></sub>|
|
||||
|`av1_frame` |AV1 frame |<sub>`av1_obu`</sub>|
|
||||
|`av1_obu` |AV1 Open Bitstream Unit |<sub></sub>|
|
||||
|`avc_annexb` |H.264/AVC Annex B |<sub>`avc_nalu`</sub>|
|
||||
|[`avc_au`](#avc_au) |H.264/AVC Access Unit |<sub>`avc_nalu`</sub>|
|
||||
|`avc_dcr` |H.264/AVC Decoder Configuration Record |<sub>`avc_nalu`</sub>|
|
||||
|`avc_nalu` |H.264/AVC Network Access Layer Unit |<sub>`avc_sps` `avc_pps` `avc_sei`</sub>|
|
||||
|`avc_pps` |H.264/AVC Picture Parameter Set |<sub></sub>|
|
||||
|`avc_sei` |H.264/AVC Supplemental Enhancement Information |<sub></sub>|
|
||||
|`avc_sps` |H.264/AVC Sequence Parameter Set |<sub></sub>|
|
||||
|[`avi`](#avi) |Audio Video Interleaved |<sub>`avc_au` `hevc_au` `mp3_frame` `flac_frame`</sub>|
|
||||
|[`avro_ocf`](#avro_ocf) |Avro object container file |<sub></sub>|
|
||||
|[`bencode`](#bencode) |BitTorrent bencoding |<sub></sub>|
|
||||
|`bitcoin_blkdat` |Bitcoin blk.dat |<sub>`bitcoin_block`</sub>|
|
||||
|[`bitcoin_block`](#bitcoin_block) |Bitcoin block |<sub>`bitcoin_transaction`</sub>|
|
||||
|`bitcoin_script` |Bitcoin script |<sub></sub>|
|
||||
|`bitcoin_transaction` |Bitcoin transaction |<sub>`bitcoin_script`</sub>|
|
||||
|[`bits`](#bits) |Raw bits |<sub></sub>|
|
||||
|[`bplist`](#bplist) |Apple Binary Property List |<sub></sub>|
|
||||
|`bsd_loopback_frame` |BSD loopback frame |<sub>`inet_packet`</sub>|
|
||||
|[`bson`](#bson) |Binary JSON |<sub></sub>|
|
||||
|[`bytes`](#bytes) |Raw bytes |<sub></sub>|
|
||||
|`bzip2` |bzip2 compression |<sub>`probe`</sub>|
|
||||
|[`cbor`](#cbor) |Concise Binary Object Representation |<sub></sub>|
|
||||
|[`csv`](#csv) |Comma separated values |<sub></sub>|
|
||||
|`dns` |DNS packet |<sub></sub>|
|
||||
|`dns_tcp` |DNS packet (TCP) |<sub></sub>|
|
||||
|`elf` |Executable and Linkable Format |<sub></sub>|
|
||||
|`ether8023_frame` |Ethernet 802.3 frame |<sub>`inet_packet`</sub>|
|
||||
|`exif` |Exchangeable Image File Format |<sub></sub>|
|
||||
|`fairplay_spc` |FairPlay Server Playback Context |<sub></sub>|
|
||||
|`flac` |Free Lossless Audio Codec file |<sub>`flac_metadatablocks` `flac_frame`</sub>|
|
||||
|[`flac_frame`](#flac_frame) |FLAC frame |<sub></sub>|
|
||||
|`flac_metadatablock` |FLAC metadatablock |<sub>`flac_streaminfo` `flac_picture` `vorbis_comment`</sub>|
|
||||
|`flac_metadatablocks` |FLAC metadatablocks |<sub>`flac_metadatablock`</sub>|
|
||||
|`flac_picture` |FLAC metadatablock picture |<sub>`image`</sub>|
|
||||
|`flac_streaminfo` |FLAC streaminfo |<sub></sub>|
|
||||
|`gif` |Graphics Interchange Format |<sub></sub>|
|
||||
|`gzip` |gzip compression |<sub>`probe`</sub>|
|
||||
|`hevc_annexb` |H.265/HEVC Annex B |<sub>`hevc_nalu`</sub>|
|
||||
|[`hevc_au`](#hevc_au) |H.265/HEVC Access Unit |<sub>`hevc_nalu`</sub>|
|
||||
|`hevc_dcr` |H.265/HEVC Decoder Configuration Record |<sub>`hevc_nalu`</sub>|
|
||||
|`hevc_nalu` |H.265/HEVC Network Access Layer Unit |<sub>`hevc_vps` `hevc_pps` `hevc_sps`</sub>|
|
||||
|`hevc_pps` |H.265/HEVC Picture Parameter Set |<sub></sub>|
|
||||
|`hevc_sps` |H.265/HEVC Sequence Parameter Set |<sub></sub>|
|
||||
|`hevc_vps` |H.265/HEVC Video Parameter Set |<sub></sub>|
|
||||
|[`html`](#html) |HyperText Markup Language |<sub></sub>|
|
||||
|`icc_profile` |International Color Consortium profile |<sub></sub>|
|
||||
|`icmp` |Internet Control Message Protocol |<sub></sub>|
|
||||
|`icmpv6` |Internet Control Message Protocol v6 |<sub></sub>|
|
||||
|`id3v1` |ID3v1 metadata |<sub></sub>|
|
||||
|`id3v11` |ID3v1.1 metadata |<sub></sub>|
|
||||
|`id3v2` |ID3v2 metadata |<sub>`image`</sub>|
|
||||
|`ipv4_packet` |Internet protocol v4 packet |<sub>`ip_packet`</sub>|
|
||||
|`ipv6_packet` |Internet protocol v6 packet |<sub>`ip_packet`</sub>|
|
||||
|`jpeg` |Joint Photographic Experts Group file |<sub>`exif` `icc_profile`</sub>|
|
||||
|`json` |JavaScript Object Notation |<sub></sub>|
|
||||
|`jsonl` |JavaScript Object Notation Lines |<sub></sub>|
|
||||
|[`macho`](#macho) |Mach-O macOS executable |<sub></sub>|
|
||||
|`macho_fat` |Fat Mach-O macOS executable (multi-architecture) |<sub>`macho`</sub>|
|
||||
|[`markdown`](#markdown) |Markdown |<sub></sub>|
|
||||
|[`matroska`](#matroska) |Matroska file |<sub>`aac_frame` `av1_ccr` `av1_frame` `avc_au` `avc_dcr` `flac_frame` `flac_metadatablocks` `hevc_au` `hevc_dcr` `image` `mp3_frame` `mpeg_asc` `mpeg_pes_packet` `mpeg_spu` `opus_packet` `vorbis_packet` `vp8_frame` `vp9_cfm` `vp9_frame`</sub>|
|
||||
|[`mp3`](#mp3) |MP3 file |<sub>`id3v2` `id3v1` `id3v11` `apev2` `mp3_frame`</sub>|
|
||||
|`mp3_frame` |MPEG audio layer 3 frame |<sub>`mp3_frame_tags`</sub>|
|
||||
|`mp3_frame_tags` |MP3 frame info/xing tags |<sub></sub>|
|
||||
|[`mp4`](#mp4) |ISOBMFF, QuickTime and similar |<sub>`aac_frame` `av1_ccr` `av1_frame` `avc_au` `avc_dcr` `flac_frame` `flac_metadatablocks` `hevc_au` `hevc_dcr` `icc_profile` `id3v2` `image` `jpeg` `mp3_frame` `mpeg_es` `mpeg_pes_packet` `opus_packet` `png` `prores_frame` `protobuf_widevine` `pssh_playready` `vorbis_packet` `vp9_frame` `vpx_ccr`</sub>|
|
||||
|`mpeg_asc` |MPEG-4 Audio Specific Config |<sub></sub>|
|
||||
|`mpeg_es` |MPEG Elementary Stream |<sub>`mpeg_asc` `vorbis_packet`</sub>|
|
||||
|`mpeg_pes` |MPEG Packetized elementary stream |<sub>`mpeg_pes_packet` `mpeg_spu`</sub>|
|
||||
|`mpeg_pes_packet` |MPEG Packetized elementary stream packet |<sub></sub>|
|
||||
|`mpeg_spu` |Sub Picture Unit (DVD subtitle) |<sub></sub>|
|
||||
|`mpeg_ts` |MPEG Transport Stream |<sub></sub>|
|
||||
|[`msgpack`](#msgpack) |MessagePack |<sub></sub>|
|
||||
|`ogg` |OGG file |<sub>`ogg_page` `vorbis_packet` `opus_packet` `flac_metadatablock` `flac_frame`</sub>|
|
||||
|`ogg_page` |OGG page |<sub></sub>|
|
||||
|`opus_packet` |Opus packet |<sub>`vorbis_comment`</sub>|
|
||||
|[`pcap`](#pcap) |PCAP packet capture |<sub>`link_frame` `tcp_stream` `ipv4_packet`</sub>|
|
||||
|`pcapng` |PCAPNG packet capture |<sub>`link_frame` `tcp_stream` `ipv4_packet`</sub>|
|
||||
|`png` |Portable Network Graphics file |<sub>`icc_profile` `exif`</sub>|
|
||||
|`prores_frame` |Apple ProRes frame |<sub></sub>|
|
||||
|[`protobuf`](#protobuf) |Protobuf |<sub></sub>|
|
||||
|`protobuf_widevine` |Widevine protobuf |<sub>`protobuf`</sub>|
|
||||
|`pssh_playready` |PlayReady PSSH |<sub></sub>|
|
||||
|[`rtmp`](#rtmp) |Real-Time Messaging Protocol |<sub>`amf0` `mpeg_asc`</sub>|
|
||||
|`sll2_packet` |Linux cooked capture encapsulation v2 |<sub>`inet_packet`</sub>|
|
||||
|`sll_packet` |Linux cooked capture encapsulation |<sub>`inet_packet`</sub>|
|
||||
|`tar` |Tar archive |<sub>`probe`</sub>|
|
||||
|`tcp_segment` |Transmission control protocol segment |<sub></sub>|
|
||||
|`tiff` |Tag Image File Format |<sub>`icc_profile`</sub>|
|
||||
|`toml` |Tom's Obvious, Minimal Language |<sub></sub>|
|
||||
|[`tzif`](#tzif) |Time Zone Information Format |<sub></sub>|
|
||||
|`udp_datagram` |User datagram protocol |<sub>`udp_payload`</sub>|
|
||||
|`vorbis_comment` |Vorbis comment |<sub>`flac_picture`</sub>|
|
||||
|`vorbis_packet` |Vorbis packet |<sub>`vorbis_comment`</sub>|
|
||||
|`vp8_frame` |VP8 frame |<sub></sub>|
|
||||
|`vp9_cfm` |VP9 Codec Feature Metadata |<sub></sub>|
|
||||
|`vp9_frame` |VP9 frame |<sub></sub>|
|
||||
|`vpx_ccr` |VPX Codec Configuration Record |<sub></sub>|
|
||||
|[`wasm`](#wasm) |WebAssembly Binary Format |<sub></sub>|
|
||||
|`wav` |WAV file |<sub>`id3v2` `id3v1` `id3v11`</sub>|
|
||||
|`webp` |WebP image |<sub>`vp8_frame`</sub>|
|
||||
|[`xml`](#xml) |Extensible Markup Language |<sub></sub>|
|
||||
|`yaml` |YAML Ain't Markup Language |<sub></sub>|
|
||||
|[`zip`](#zip) |ZIP archive |<sub>`probe`</sub>|
|
||||
|`image` |Group |<sub>`gif` `jpeg` `mp4` `png` `tiff` `webp`</sub>|
|
||||
|`inet_packet` |Group |<sub>`ipv4_packet` `ipv6_packet`</sub>|
|
||||
|`ip_packet` |Group |<sub>`icmp` `icmpv6` `tcp_segment` `udp_datagram`</sub>|
|
||||
|`link_frame` |Group |<sub>`bsd_loopback_frame` `ether8023_frame` `sll2_packet` `sll_packet`</sub>|
|
||||
|`probe` |Group |<sub>`adts` `ar` `avi` `avro_ocf` `bitcoin_blkdat` `bplist` `bzip2` `elf` `flac` `gif` `gzip` `jpeg` `json` `jsonl` `macho` `macho_fat` `matroska` `mp3` `mp4` `mpeg_ts` `ogg` `pcap` `pcapng` `png` `tar` `tiff` `toml` `tzif` `wasm` `wav` `webp` `xml` `yaml` `zip`</sub>|
|
||||
|`tcp_stream` |Group |<sub>`dns_tcp` `rtmp`</sub>|
|
||||
|`udp_payload` |Group |<sub>`dns`</sub>|
|
||||
|
||||
[#]: sh-end
|
||||
|
||||
@ -787,6 +787,26 @@ fq '.tcp_connections[] | select(.server.port=="rtmp") | d' file.cap
|
||||
- https://rtmp.veriskope.com/docs/spec/
|
||||
- https://rtmp.veriskope.com/pdf/video_file_format_spec_v10.pdf
|
||||
|
||||
## tzif
|
||||
|
||||
### Get last transition time
|
||||
```sh
|
||||
fq '.v2plusdatablock.transition_times[-1] | tovalue' tziffile
|
||||
```
|
||||
|
||||
### Count leap second records
|
||||
```sh
|
||||
fq '.v2plusdatablock.leap_second_records | length' tziffile
|
||||
```
|
||||
|
||||
### Authors
|
||||
- Takashi Oguma
|
||||
[@bitbears-dev](https://github.com/bitbears-dev)
|
||||
[@0xb17bea125](https://twitter.com/0xb17bea125)
|
||||
|
||||
### References
|
||||
- https://datatracker.ietf.org/doc/html/rfc8536
|
||||
|
||||
## wasm
|
||||
|
||||
### Count opcode usage
|
||||
|
1680
doc/formats.svg
1680
doc/formats.svg
File diff suppressed because it is too large
Load Diff
Before Width: | Height: | Size: 139 KiB After Width: | Height: | Size: 142 KiB |
43
doc/usage.md
43
doc/usage.md
@ -9,6 +9,7 @@ cat file | fq
|
||||
fq . < file
|
||||
fq . *.png *.mp3
|
||||
fq '.frames[0]' *.mp3
|
||||
fq '.frames[-1] | tobytes' file.mp3 > last_frame
|
||||
```
|
||||
|
||||
### Common usages
|
||||
@ -20,18 +21,40 @@ fq d file
|
||||
fq display file
|
||||
|
||||
# display all bytes for each value
|
||||
fq dd file
|
||||
# same as
|
||||
fq 'd({display_bytes: 0})' file
|
||||
|
||||
# display 200 bytes for each value
|
||||
fq 'd({display_bytes: 200})' file
|
||||
|
||||
# recursively display decode tree without truncating
|
||||
fq da file
|
||||
# same as
|
||||
fq 'd({array_truncate: 0})' file
|
||||
|
||||
# recursively and verbosely display decode tree
|
||||
fq dv file
|
||||
# same as
|
||||
fq 'd({verbose: true})' file
|
||||
|
||||
# JSON repersenation for whole file
|
||||
fq tovalue file
|
||||
# JSON but raw bit fields truncated
|
||||
fq -o bits_format=truncate tovalue file
|
||||
# JSON but raw bit fields as md5 hex string
|
||||
fq -o bits_format=md5 tovalue file
|
||||
|
||||
# grep whole tree by value
|
||||
fq 'grep("^prefix")' file
|
||||
fq 'grep(123)' file
|
||||
# grep whole tree by condition
|
||||
fq 'grep_by(. >= 100 and . =< 100)' file
|
||||
|
||||
# recursively look for values fullfilling some condition
|
||||
fq '.. | select(.type=="trak")?' file
|
||||
fq 'grep_by(.type=="trak")' file
|
||||
# grep_by(f) is alias for .. | select(f)?, that is: recuse, select and ignore errors
|
||||
|
||||
# recursively look for decode value roots for a format
|
||||
fq '.. | select(format=="jpeg")' file
|
||||
@ -42,15 +65,6 @@ fq 'grep_by(format=="jpeg")' file
|
||||
fq 'first(.. | select(format=="jpeg"))' file
|
||||
fq 'first(grep_by(format=="jpeg"))' file
|
||||
|
||||
# recursively look for objects fullfilling condition
|
||||
fq '.. | select(.type=="trak")?' file
|
||||
fq 'grep_by(.type=="trak")' file
|
||||
|
||||
# grep whole tree
|
||||
fq 'grep("^prefix")' file
|
||||
fq 'grep(123)' file
|
||||
fq 'grep_by(. >= 100 and . =< 100)' file
|
||||
|
||||
# decode file as mp4 and return a result even if there are some errors
|
||||
fq -d mp4 file.mp4
|
||||
# decode file as mp4 and also ignore validity assertions
|
||||
@ -179,9 +193,9 @@ fq '.frames[0:10] | map(tobytesrange.start)' file.mp3
|
||||
#### Decode at range
|
||||
|
||||
```sh
|
||||
# decode byte range 100 to end
|
||||
# decode byte range 100 to end as mp3_frame
|
||||
fq -d bytes '.[100:] | mp3_frame | d' file.mp3
|
||||
# decode byte range 10 bytes into .somefield and preseve relative position in file
|
||||
# decode byte range 10 bytes from .somefield and preseve relative position in file
|
||||
fq '.somefield | tobytesrange[10:] | mp3_frame | d' file.mp3
|
||||
```
|
||||
|
||||
@ -261,6 +275,12 @@ To get the most out of fq it's recommended to learn more about jq, here are some
|
||||
- [jq wiki: Pitfalls](https://github.com/stedolan/jq/wiki/How-to:-Avoid-Pitfalls)
|
||||
- [FAQ](https://github.com/stedolan/jq/wiki/FAQ)
|
||||
|
||||
For a more convenient jq experience these might be interesting:
|
||||
|
||||
- [jq Dash docset](https://github.com/wader/jq-dash-docset)
|
||||
- [vscode-jq](https://github.com/wader/vscode-jq)
|
||||
- [jq-lsp](https://github.com/wader/jq-lsp)
|
||||
|
||||
Common beginner gotcha are:
|
||||
- jq's use of `;` and `,`. jq uses `;` as argument separator
|
||||
and `,` as output separator. To call a function `f` with two arguments use `f(1; 2)`. If you do `f(1, 2)` you pass a
|
||||
@ -269,7 +289,6 @@ single argument `1, 2` (a lambda expression that output `1` and then output `2`)
|
||||
achieved.
|
||||
- Expressions have one implicit input and output value. This how pipelines like `1 | . * 2` work.
|
||||
|
||||
|
||||
## Types specific to fq
|
||||
|
||||
fq has two additional types compared to jq, decode value and binary. In standard jq expressions they will in most case behave as some standard jq type.
|
||||
|
@ -23,6 +23,7 @@ $ fq -n _registry.groups.probe
|
||||
"png",
|
||||
"tar",
|
||||
"tiff",
|
||||
"tzif",
|
||||
"wasm",
|
||||
"webp",
|
||||
"zip",
|
||||
@ -134,6 +135,7 @@ tar Tar archive
|
||||
tcp_segment Transmission control protocol segment
|
||||
tiff Tag Image File Format
|
||||
toml Tom's Obvious, Minimal Language
|
||||
tzif Time Zone Information Format
|
||||
udp_datagram User datagram protocol
|
||||
vorbis_comment Vorbis comment
|
||||
vorbis_packet Vorbis packet
|
||||
|
@ -50,6 +50,7 @@ import (
|
||||
_ "github.com/wader/fq/format/text"
|
||||
_ "github.com/wader/fq/format/tiff"
|
||||
_ "github.com/wader/fq/format/toml"
|
||||
_ "github.com/wader/fq/format/tzif"
|
||||
_ "github.com/wader/fq/format/vorbis"
|
||||
_ "github.com/wader/fq/format/vpx"
|
||||
_ "github.com/wader/fq/format/wasm"
|
||||
|
@ -122,6 +122,7 @@ const (
|
||||
TCP_SEGMENT = "tcp_segment"
|
||||
TIFF = "tiff"
|
||||
TOML = "toml"
|
||||
TZIF = "tzif"
|
||||
UDP_DATAGRAM = "udp_datagram"
|
||||
VORBIS_COMMENT = "vorbis_comment"
|
||||
VORBIS_PACKET = "vorbis_packet"
|
||||
|
@ -8,6 +8,6 @@ import (
|
||||
"github.com/wader/fq/pkg/interp"
|
||||
)
|
||||
|
||||
func TestFQTests(t *testing.T) {
|
||||
func TestFormats(t *testing.T) {
|
||||
fqtest.TestPath(t, interp.DefaultRegistry)
|
||||
}
|
||||
|
@ -400,16 +400,16 @@ func init() {
|
||||
entryCount := d.FieldU32("entry_count")
|
||||
var i uint64
|
||||
d.FieldStructArrayLoop("entries", "entry", func() bool { return i < entryCount }, func(d *decode.D) {
|
||||
d.FieldS32("segment_duration")
|
||||
d.FieldSFn("media_time", func(d *decode.D) int64 {
|
||||
var t int64
|
||||
if version == 0 {
|
||||
t = d.S32()
|
||||
} else {
|
||||
t = d.S64()
|
||||
}
|
||||
return t
|
||||
}, mediaTimeNames)
|
||||
switch version {
|
||||
case 0:
|
||||
d.FieldS32("segment_duration")
|
||||
d.FieldS32("media_time", mediaTimeNames)
|
||||
case 1:
|
||||
d.FieldS64("segment_duration")
|
||||
d.FieldS64("media_time", mediaTimeNames)
|
||||
default:
|
||||
return
|
||||
}
|
||||
d.FieldFP32("media_rate")
|
||||
i++
|
||||
})
|
||||
|
BIN
format/mp4/testdata/mp4-elst-version1
vendored
Normal file
BIN
format/mp4/testdata/mp4-elst-version1
vendored
Normal file
Binary file not shown.
14
format/mp4/testdata/mp4-elst-version1.fqtest
vendored
Normal file
14
format/mp4/testdata/mp4-elst-version1.fqtest
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
$ fq -d mp4 -o force=true dv mp4-elst-version1
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: mp4-elst-version1 (mp4) 0x0-0x23.7 (36)
|
||||
| | | boxes[0:1]: 0x0-0x23.7 (36)
|
||||
| | | [0]{}: box 0x0-0x23.7 (36)
|
||||
0x00|00 00 00 24 |...$ | size: 36 0x0-0x3.7 (4)
|
||||
0x00| 65 6c 73 74 | elst | type: "elst" (An edit list) 0x4-0x7.7 (4)
|
||||
0x00| 01 | . | version: 1 0x8-0x8.7 (1)
|
||||
0x00| 00 00 00 | ... | flags: 0 0x9-0xb.7 (3)
|
||||
0x00| 00 00 00 01| ....| entry_count: 1 0xc-0xf.7 (4)
|
||||
| | | entries[0:1]: 0x10-0x23.7 (20)
|
||||
| | | [0]{}: entry 0x10-0x23.7 (20)
|
||||
0x10|00 00 00 00 00 00 00 00 |........ | segment_duration: 0 0x10-0x17.7 (8)
|
||||
0x10| 00 00 00 00 00 00 04 20| ....... | media_time: 1056 0x18-0x1f.7 (8)
|
||||
0x20|00 01 00 00| |....| | media_rate: 1 0x20-0x23.7 (4)
|
22
format/text/testdata/base64.fqtest
vendored
22
format/text/testdata/base64.fqtest
vendored
@ -1,4 +1,18 @@
|
||||
$ fq -n '"ff7f00" | frombase64 | ., (("", "std", "url", "rawstd", "rawurl") as $e | tobase64({encoding: $e}) | ., frombase64({encoding: $e})
|
||||
exitcode: 3
|
||||
stderr:
|
||||
error: arg:1:131: unexpected EOF
|
||||
$ fq -n '"ff7f00ff" | fromhex | ., ("", "std", "url", "rawstd", "rawurl") as $e | tobase64({encoding: $e}) | ., frombase64({encoding: $e})'
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|
|
||||
0x0|ff 7f 00 ff| |....| |.: raw bits 0x0-0x3.7 (4)
|
||||
"/38A/w=="
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|
|
||||
0x0|ff 7f 00 ff| |....| |.: raw bits 0x0-0x3.7 (4)
|
||||
"/38A/w=="
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|
|
||||
0x0|ff 7f 00 ff| |....| |.: raw bits 0x0-0x3.7 (4)
|
||||
"_38A_w=="
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|
|
||||
0x0|ff 7f 00 ff| |....| |.: raw bits 0x0-0x3.7 (4)
|
||||
"/38A/w"
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|
|
||||
0x0|ff 7f 00 ff| |....| |.: raw bits 0x0-0x3.7 (4)
|
||||
"_38A_w"
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|
|
||||
0x0|ff 7f 00 ff| |....| |.: raw bits 0x0-0x3.7 (4)
|
||||
|
2
format/toml/testdata/trailing.fqtest
vendored
2
format/toml/testdata/trailing.fqtest
vendored
@ -1,4 +1,4 @@
|
||||
$ fq.go -n '"[a] trailing" | fromtoml._error.error'
|
||||
$ fq -n '"[a] trailing" | fromtoml._error.error'
|
||||
exitcode: 5
|
||||
stderr:
|
||||
error: error at position 0xc: toml: line 1 (last key "a"): expected a top-level item to end with a newline, comment, or EOF, but got 't' instead
|
||||
|
BIN
format/tzif/testdata/Abidjan
vendored
Normal file
BIN
format/tzif/testdata/Abidjan
vendored
Normal file
Binary file not shown.
72
format/tzif/testdata/Abidjan.fqtest
vendored
Normal file
72
format/tzif/testdata/Abidjan.fqtest
vendored
Normal file
@ -0,0 +1,72 @@
|
||||
$ fq -d tzif dv Abidjan
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: Abidjan (tzif) 0x0-0x93.7 (148)
|
||||
| | | v1header{}: 0x0-0x2b.7 (44)
|
||||
0x00|54 5a 69 66 |TZif | magic: 0x545a6966 (valid) 0x0-0x3.7 (4)
|
||||
0x00| 32 | 2 | ver: "2" (0x32) (valid) 0x4-0x4.7 (1)
|
||||
0x00| 00 00 00 00 00 00 00 00 00 00 00| ...........| reserved: raw bits 0x5-0x13.7 (15)
|
||||
0x10|00 00 00 00 |.... |
|
||||
0x10| 00 00 00 00 | .... | isutcnt: 0 0x14-0x17.7 (4)
|
||||
0x10| 00 00 00 00 | .... | isstdcnt: 0 0x18-0x1b.7 (4)
|
||||
0x10| 00 00 00 00| ....| leapcnt: 0 0x1c-0x1f.7 (4)
|
||||
0x20|00 00 00 01 |.... | timecnt: 1 0x20-0x23.7 (4)
|
||||
0x20| 00 00 00 02 | .... | typecnt: 2 0x24-0x27.7 (4)
|
||||
0x20| 00 00 00 08 | .... | charcnt: 8 0x28-0x2b.7 (4)
|
||||
| | | v1datablock{}: 0x2c-0x44.7 (25)
|
||||
| | | transition_times[0:1]: 0x2c-0x2f.7 (4)
|
||||
0x20| 92 e6 92 48| ...H| [0]: "1912-01-01T00:16:08Z" (-1830383032) transition_time 0x2c-0x2f.7 (4)
|
||||
| | | transition_types[0:1]: 0x30-0x30.7 (1)
|
||||
0x30|01 |. | [0]: 1 transition_type 0x30-0x30.7 (1)
|
||||
| | | local_time_type_records[0:2]: 0x31-0x3c.7 (12)
|
||||
| | | [0]{}: local_time_type 0x31-0x36.7 (6)
|
||||
0x30| ff ff fc 38 | ...8 | utoff: -968 (valid) 0x31-0x34.7 (4)
|
||||
0x30| 00 | . | dst: 0 (valid) 0x35-0x35.7 (1)
|
||||
0x30| 00 | . | idx: 0 (valid) 0x36-0x36.7 (1)
|
||||
| | | [1]{}: local_time_type 0x37-0x3c.7 (6)
|
||||
0x30| 00 00 00 00 | .... | utoff: 0 (valid) 0x37-0x3a.7 (4)
|
||||
0x30| 00 | . | dst: 0 (valid) 0x3b-0x3b.7 (1)
|
||||
0x30| 04 | . | idx: 4 (valid) 0x3c-0x3c.7 (1)
|
||||
| | | time_zone_designations[0:2]: 0x3d-0x44.7 (8)
|
||||
0x30| 4c 4d 54| LMT| [0]: "LMT" time_zone_designation 0x3d-0x40.7 (4)
|
||||
0x40|00 |. |
|
||||
0x40| 47 4d 54 00 | GMT. | [1]: "GMT" time_zone_designation 0x41-0x44.7 (4)
|
||||
| | | leap_second_records[0:0]: 0x45-NA (0)
|
||||
| | | standard_wall_indicators[0:0]: 0x45-NA (0)
|
||||
| | | ut_local_indicators[0:0]: 0x45-NA (0)
|
||||
| | | v2plusheader{}: 0x45-0x70.7 (44)
|
||||
0x40| 54 5a 69 66 | TZif | magic: 0x545a6966 (valid) 0x45-0x48.7 (4)
|
||||
0x40| 32 | 2 | ver: "2" (0x32) (valid) 0x49-0x49.7 (1)
|
||||
0x40| 00 00 00 00 00 00| ......| reserved: raw bits 0x4a-0x58.7 (15)
|
||||
0x50|00 00 00 00 00 00 00 00 00 |......... |
|
||||
0x50| 00 00 00 00 | .... | isutcnt: 0 0x59-0x5c.7 (4)
|
||||
0x50| 00 00 00| ...| isstdcnt: 0 0x5d-0x60.7 (4)
|
||||
0x60|00 |. |
|
||||
0x60| 00 00 00 00 | .... | leapcnt: 0 0x61-0x64.7 (4)
|
||||
0x60| 00 00 00 01 | .... | timecnt: 1 0x65-0x68.7 (4)
|
||||
0x60| 00 00 00 02 | .... | typecnt: 2 0x69-0x6c.7 (4)
|
||||
0x60| 00 00 00| ...| charcnt: 8 0x6d-0x70.7 (4)
|
||||
0x70|08 |. |
|
||||
| | | v2plusdatablock{}: 0x71-0x8d.7 (29)
|
||||
| | | transition_times[0:1]: 0x71-0x78.7 (8)
|
||||
0x70| ff ff ff ff 92 e6 92 48 | .......H | [0]: "1912-01-01T00:16:08Z" (-1830383032) transition_time 0x71-0x78.7 (8)
|
||||
| | | transition_types[0:1]: 0x79-0x79.7 (1)
|
||||
0x70| 01 | . | [0]: 1 transition_type 0x79-0x79.7 (1)
|
||||
| | | local_time_type_records[0:2]: 0x7a-0x85.7 (12)
|
||||
| | | [0]{}: local_time_type 0x7a-0x7f.7 (6)
|
||||
0x70| ff ff fc 38 | ...8 | utoff: -968 (valid) 0x7a-0x7d.7 (4)
|
||||
0x70| 00 | . | dst: 0 (valid) 0x7e-0x7e.7 (1)
|
||||
0x70| 00| .| idx: 0 (valid) 0x7f-0x7f.7 (1)
|
||||
| | | [1]{}: local_time_type 0x80-0x85.7 (6)
|
||||
0x80|00 00 00 00 |.... | utoff: 0 (valid) 0x80-0x83.7 (4)
|
||||
0x80| 00 | . | dst: 0 (valid) 0x84-0x84.7 (1)
|
||||
0x80| 04 | . | idx: 4 (valid) 0x85-0x85.7 (1)
|
||||
| | | time_zone_designations[0:2]: 0x86-0x8d.7 (8)
|
||||
0x80| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x86-0x89.7 (4)
|
||||
0x80| 47 4d 54 00 | GMT. | [1]: "GMT" time_zone_designation 0x8a-0x8d.7 (4)
|
||||
| | | leap_second_records[0:0]: 0x8e-NA (0)
|
||||
| | | standard_wall_indicators[0:0]: 0x8e-NA (0)
|
||||
| | | ut_local_indicators[0:0]: 0x8e-NA (0)
|
||||
| | | footer{}: 0x8e-0x93.7 (6)
|
||||
0x80| 0a | . | nl1: 10 (valid) 0x8e-0x8e.7 (1)
|
||||
0x80| 47| G| tz_string: "GMT0" 0x8f-0x92.7 (4)
|
||||
0x90|4d 54 30 |MT0 |
|
||||
0x90| 0a| | .| | nl2: 10 (valid) 0x93-0x93.7 (1)
|
BIN
format/tzif/testdata/Adak
vendored
Normal file
BIN
format/tzif/testdata/Adak
vendored
Normal file
Binary file not shown.
901
format/tzif/testdata/Adak.fqtest
vendored
Normal file
901
format/tzif/testdata/Adak.fqtest
vendored
Normal file
@ -0,0 +1,901 @@
|
||||
$ fq -d tzif dv Adak
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: Adak (tzif) 0x0-0x9b0.7 (2481)
|
||||
| | | v1header{}: 0x0-0x2b.7 (44)
|
||||
0x000|54 5a 69 66 |TZif | magic: 0x545a6966 (valid) 0x0-0x3.7 (4)
|
||||
0x000| 32 | 2 | ver: "2" (0x32) (valid) 0x4-0x4.7 (1)
|
||||
0x000| 00 00 00 00 00 00 00 00 00 00 00| ...........| reserved: raw bits 0x5-0x13.7 (15)
|
||||
0x010|00 00 00 00 |.... |
|
||||
0x010| 00 00 00 09 | .... | isutcnt: 9 0x14-0x17.7 (4)
|
||||
0x010| 00 00 00 09 | .... | isstdcnt: 9 0x18-0x1b.7 (4)
|
||||
0x010| 00 00 00 1b| ....| leapcnt: 27 0x1c-0x1f.7 (4)
|
||||
0x020|00 00 00 74 |...t | timecnt: 116 0x20-0x23.7 (4)
|
||||
0x020| 00 00 00 09 | .... | typecnt: 9 0x24-0x27.7 (4)
|
||||
0x020| 00 00 00 21 | ...! | charcnt: 33 0x28-0x2b.7 (4)
|
||||
| | | v1datablock{}: 0x2c-0x3b0.7 (901)
|
||||
| | | transition_times[0:116]: 0x2c-0x1fb.7 (464)
|
||||
0x020| 80 00 00 00| ....| [0]: "1901-12-13T20:45:52Z" (-2147483648) transition_time 0x2c-0x2f.7 (4)
|
||||
0x030|cb 89 44 d0 |..D. | [1]: "1942-02-09T13:00:00Z" (-880196400) transition_time 0x30-0x33.7 (4)
|
||||
0x030| d2 23 f4 70 | .#.p | [2]: "1945-08-14T23:00:00Z" (-769395600) transition_time 0x34-0x37.7 (4)
|
||||
0x030| d2 61 50 40 | .aP@ | [3]: "1945-09-30T12:00:00Z" (-765374400) transition_time 0x38-0x3b.7 (4)
|
||||
0x030| fa d2 55 b0| ..U.| [4]: "1967-04-01T11:00:00Z" (-86878800) transition_time 0x3c-0x3f.7 (4)
|
||||
0x040|fe b8 71 50 |..qP | [5]: "1969-04-27T13:00:00Z" (-21466800) transition_time 0x40-0x43.7 (4)
|
||||
0x040| ff a8 54 40 | ..T@ | [6]: "1969-10-26T12:00:00Z" (-5745600) transition_time 0x44-0x47.7 (4)
|
||||
0x040| 00 98 53 50 | ..SP | [7]: "1970-04-26T13:00:00Z" (9982800) transition_time 0x48-0x4b.7 (4)
|
||||
0x040| 01 88 36 40| ..6@| [8]: "1970-10-25T12:00:00Z" (25704000) transition_time 0x4c-0x4f.7 (4)
|
||||
0x050|02 78 35 50 |.x5P | [9]: "1971-04-25T13:00:00Z" (41432400) transition_time 0x50-0x53.7 (4)
|
||||
0x050| 03 71 52 c0 | .qR. | [10]: "1971-10-31T12:00:00Z" (57758400) transition_time 0x54-0x57.7 (4)
|
||||
0x050| 04 61 51 d0 | .aQ. | [11]: "1972-04-30T13:00:00Z" (73486800) transition_time 0x58-0x5b.7 (4)
|
||||
0x050| 05 51 34 c1| .Q4.| [12]: "1972-10-29T12:00:01Z" (89208001) transition_time 0x5c-0x5f.7 (4)
|
||||
0x060|06 41 33 d2 |.A3. | [13]: "1973-04-29T13:00:02Z" (104936402) transition_time 0x60-0x63.7 (4)
|
||||
0x060| 07 31 16 c2 | .1.. | [14]: "1973-10-28T12:00:02Z" (120657602) transition_time 0x64-0x67.7 (4)
|
||||
0x060| 07 8d 6d d3 | ..m. | [15]: "1974-01-06T13:00:03Z" (126709203) transition_time 0x68-0x6b.7 (4)
|
||||
0x060| 09 10 f8 c3| ....| [16]: "1974-10-27T12:00:03Z" (152107203) transition_time 0x6c-0x6f.7 (4)
|
||||
0x070|09 ad e9 54 |...T | [17]: "1975-02-23T13:00:04Z" (162392404) transition_time 0x70-0x73.7 (4)
|
||||
0x070| 0a f0 da c4 | .... | [18]: "1975-10-26T12:00:04Z" (183556804) transition_time 0x74-0x77.7 (4)
|
||||
0x070| 0b e0 d9 d5 | .... | [19]: "1976-04-25T13:00:05Z" (199285205) transition_time 0x78-0x7b.7 (4)
|
||||
0x070| 0c d9 f7 45| ...E| [20]: "1976-10-31T12:00:05Z" (215611205) transition_time 0x7c-0x7f.7 (4)
|
||||
0x080|0d c0 bb d6 |.... | [21]: "1977-04-24T13:00:06Z" (230734806) transition_time 0x80-0x83.7 (4)
|
||||
0x080| 0e b9 d9 46 | ...F | [22]: "1977-10-30T12:00:06Z" (247060806) transition_time 0x84-0x87.7 (4)
|
||||
0x080| 0f a9 d8 57 | ...W | [23]: "1978-04-30T13:00:07Z" (262789207) transition_time 0x88-0x8b.7 (4)
|
||||
0x080| 10 99 bb 47| ...G| [24]: "1978-10-29T12:00:07Z" (278510407) transition_time 0x8c-0x8f.7 (4)
|
||||
0x090|11 89 ba 58 |...X | [25]: "1979-04-29T13:00:08Z" (294238808) transition_time 0x90-0x93.7 (4)
|
||||
0x090| 12 79 9d 48 | .y.H | [26]: "1979-10-28T12:00:08Z" (309960008) transition_time 0x94-0x97.7 (4)
|
||||
0x090| 13 69 9c 59 | .i.Y | [27]: "1980-04-27T13:00:09Z" (325688409) transition_time 0x98-0x9b.7 (4)
|
||||
0x090| 14 59 7f 49| .Y.I| [28]: "1980-10-26T12:00:09Z" (341409609) transition_time 0x9c-0x9f.7 (4)
|
||||
0x0a0|15 49 7e 59 |.I~Y | [29]: "1981-04-26T13:00:09Z" (357138009) transition_time 0xa0-0xa3.7 (4)
|
||||
0x0a0| 16 39 61 4a | .9aJ | [30]: "1981-10-25T12:00:10Z" (372859210) transition_time 0xa4-0xa7.7 (4)
|
||||
0x0a0| 17 29 60 5a | .)`Z | [31]: "1982-04-25T13:00:10Z" (388587610) transition_time 0xa8-0xab.7 (4)
|
||||
0x0a0| 18 22 7d cb| ."}.| [32]: "1982-10-31T12:00:11Z" (404913611) transition_time 0xac-0xaf.7 (4)
|
||||
0x0b0|19 09 42 5b |..B[ | [33]: "1983-04-24T13:00:11Z" (420037211) transition_time 0xb0-0xb3.7 (4)
|
||||
0x0b0| 1a 02 5f cc | .._. | [34]: "1983-10-30T12:00:12Z" (436363212) transition_time 0xb4-0xb7.7 (4)
|
||||
0x0b0| 1a 2b 22 2c | .+", | [35]: "1983-11-30T10:00:12Z" (439034412) transition_time 0xb8-0xbb.7 (4)
|
||||
0x0b0| 1a f2 50 cc| ..P.| [36]: "1984-04-29T12:00:12Z" (452088012) transition_time 0xbc-0xbf.7 (4)
|
||||
0x0c0|1b e2 33 bc |..3. | [37]: "1984-10-28T11:00:12Z" (467809212) transition_time 0xc0-0xc3.7 (4)
|
||||
0x0c0| 1c d2 32 cc | ..2. | [38]: "1985-04-28T12:00:12Z" (483537612) transition_time 0xc4-0xc7.7 (4)
|
||||
0x0c0| 1d c2 15 bd | .... | [39]: "1985-10-27T11:00:13Z" (499258813) transition_time 0xc8-0xcb.7 (4)
|
||||
0x0c0| 1e b2 14 cd| ....| [40]: "1986-04-27T12:00:13Z" (514987213) transition_time 0xcc-0xcf.7 (4)
|
||||
0x0d0|1f a1 f7 bd |.... | [41]: "1986-10-26T11:00:13Z" (530708413) transition_time 0xd0-0xd3.7 (4)
|
||||
0x0d0| 20 76 47 4d | vGM | [42]: "1987-04-05T12:00:13Z" (544622413) transition_time 0xd4-0xd7.7 (4)
|
||||
0x0d0| 21 81 d9 bd | !... | [43]: "1987-10-25T11:00:13Z" (562158013) transition_time 0xd8-0xdb.7 (4)
|
||||
0x0d0| 22 56 29 4e| "V)N| [44]: "1988-04-03T12:00:14Z" (576072014) transition_time 0xdc-0xdf.7 (4)
|
||||
0x0e0|23 6a f6 3e |#j.> | [45]: "1988-10-30T11:00:14Z" (594212414) transition_time 0xe0-0xe3.7 (4)
|
||||
0x0e0| 24 36 0b 4e | $6.N | [46]: "1989-04-02T12:00:14Z" (607521614) transition_time 0xe4-0xe7.7 (4)
|
||||
0x0e0| 25 4a d8 3e | %J.> | [47]: "1989-10-29T11:00:14Z" (625662014) transition_time 0xe8-0xeb.7 (4)
|
||||
0x0e0| 26 15 ed 4f| &..O| [48]: "1990-04-01T12:00:15Z" (638971215) transition_time 0xec-0xef.7 (4)
|
||||
0x0f0|27 2a ba 3f |'*.? | [49]: "1990-10-28T11:00:15Z" (657111615) transition_time 0xf0-0xf3.7 (4)
|
||||
0x0f0| 27 ff 09 d0 | '... | [50]: "1991-04-07T12:00:16Z" (671025616) transition_time 0xf4-0xf7.7 (4)
|
||||
0x0f0| 29 0a 9c 40 | )..@ | [51]: "1991-10-27T11:00:16Z" (688561216) transition_time 0xf8-0xfb.7 (4)
|
||||
0x0f0| 29 de eb d0| )...| [52]: "1992-04-05T12:00:16Z" (702475216) transition_time 0xfc-0xff.7 (4)
|
||||
0x100|2a ea 7e 41 |*.~A | [53]: "1992-10-25T11:00:17Z" (720010817) transition_time 0x100-0x103.7 (4)
|
||||
0x100| 2b be cd d1 | +... | [54]: "1993-04-04T12:00:17Z" (733924817) transition_time 0x104-0x107.7 (4)
|
||||
0x100| 2c d3 9a c2 | ,... | [55]: "1993-10-31T11:00:18Z" (752065218) transition_time 0x108-0x10b.7 (4)
|
||||
0x100| 2d 9e af d2| -...| [56]: "1994-04-03T12:00:18Z" (765374418) transition_time 0x10c-0x10f.7 (4)
|
||||
0x110|2e b3 7c c3 |..|. | [57]: "1994-10-30T11:00:19Z" (783514819) transition_time 0x110-0x113.7 (4)
|
||||
0x110| 2f 7e 91 d3 | /~.. | [58]: "1995-04-02T12:00:19Z" (796824019) transition_time 0x114-0x117.7 (4)
|
||||
0x110| 30 93 5e c3 | 0.^. | [59]: "1995-10-29T11:00:19Z" (814964419) transition_time 0x118-0x11b.7 (4)
|
||||
0x110| 31 67 ae 54| 1g.T| [60]: "1996-04-07T12:00:20Z" (828878420) transition_time 0x11c-0x11f.7 (4)
|
||||
0x120|32 73 40 c4 |2s@. | [61]: "1996-10-27T11:00:20Z" (846414020) transition_time 0x120-0x123.7 (4)
|
||||
0x120| 33 47 90 54 | 3G.T | [62]: "1997-04-06T12:00:20Z" (860328020) transition_time 0x124-0x127.7 (4)
|
||||
0x120| 34 53 22 c5 | 4S". | [63]: "1997-10-26T11:00:21Z" (877863621) transition_time 0x128-0x12b.7 (4)
|
||||
0x120| 35 27 72 55| 5'rU| [64]: "1998-04-05T12:00:21Z" (891777621) transition_time 0x12c-0x12f.7 (4)
|
||||
0x130|36 33 04 c5 |63.. | [65]: "1998-10-25T11:00:21Z" (909313221) transition_time 0x130-0x133.7 (4)
|
||||
0x130| 37 07 54 56 | 7.TV | [66]: "1999-04-04T12:00:22Z" (923227222) transition_time 0x134-0x137.7 (4)
|
||||
0x130| 38 1c 21 46 | 8.!F | [67]: "1999-10-31T11:00:22Z" (941367622) transition_time 0x138-0x13b.7 (4)
|
||||
0x130| 38 e7 36 56| 8.6V| [68]: "2000-04-02T12:00:22Z" (954676822) transition_time 0x13c-0x13f.7 (4)
|
||||
0x140|39 fc 03 46 |9..F | [69]: "2000-10-29T11:00:22Z" (972817222) transition_time 0x140-0x143.7 (4)
|
||||
0x140| 3a c7 18 56 | :..V | [70]: "2001-04-01T12:00:22Z" (986126422) transition_time 0x144-0x147.7 (4)
|
||||
0x140| 3b db e5 46 | ;..F | [71]: "2001-10-28T11:00:22Z" (1004266822) transition_time 0x148-0x14b.7 (4)
|
||||
0x140| 3c b0 34 d6| <.4.| [72]: "2002-04-07T12:00:22Z" (1018180822) transition_time 0x14c-0x14f.7 (4)
|
||||
0x150|3d bb c7 46 |=..F | [73]: "2002-10-27T11:00:22Z" (1035716422) transition_time 0x150-0x153.7 (4)
|
||||
0x150| 3e 90 16 d6 | >... | [74]: "2003-04-06T12:00:22Z" (1049630422) transition_time 0x154-0x157.7 (4)
|
||||
0x150| 3f 9b a9 46 | ?..F | [75]: "2003-10-26T11:00:22Z" (1067166022) transition_time 0x158-0x15b.7 (4)
|
||||
0x150| 40 6f f8 d6| @o..| [76]: "2004-04-04T12:00:22Z" (1081080022) transition_time 0x15c-0x15f.7 (4)
|
||||
0x160|41 84 c5 c6 |A... | [77]: "2004-10-31T11:00:22Z" (1099220422) transition_time 0x160-0x163.7 (4)
|
||||
0x160| 42 4f da d6 | BO.. | [78]: "2005-04-03T12:00:22Z" (1112529622) transition_time 0x164-0x167.7 (4)
|
||||
0x160| 43 64 a7 c6 | Cd.. | [79]: "2005-10-30T11:00:22Z" (1130670022) transition_time 0x168-0x16b.7 (4)
|
||||
0x160| 44 2f bc d7| D/..| [80]: "2006-04-02T12:00:23Z" (1143979223) transition_time 0x16c-0x16f.7 (4)
|
||||
0x170|45 44 89 c7 |ED.. | [81]: "2006-10-29T11:00:23Z" (1162119623) transition_time 0x170-0x173.7 (4)
|
||||
0x170| 45 f3 ef 57 | E..W | [82]: "2007-03-11T12:00:23Z" (1173614423) transition_time 0x174-0x177.7 (4)
|
||||
0x170| 47 2d a6 47 | G-.G | [83]: "2007-11-04T11:00:23Z" (1194174023) transition_time 0x178-0x17b.7 (4)
|
||||
0x170| 47 d3 d1 57| G..W| [84]: "2008-03-09T12:00:23Z" (1205064023) transition_time 0x17c-0x17f.7 (4)
|
||||
0x180|49 0d 88 47 |I..G | [85]: "2008-11-02T11:00:23Z" (1225623623) transition_time 0x180-0x183.7 (4)
|
||||
0x180| 49 b3 b3 58 | I..X | [86]: "2009-03-08T12:00:24Z" (1236513624) transition_time 0x184-0x187.7 (4)
|
||||
0x180| 4a ed 6a 48 | J.jH | [87]: "2009-11-01T11:00:24Z" (1257073224) transition_time 0x188-0x18b.7 (4)
|
||||
0x180| 4b 9c cf d8| K...| [88]: "2010-03-14T12:00:24Z" (1268568024) transition_time 0x18c-0x18f.7 (4)
|
||||
0x190|4c d6 86 c8 |L... | [89]: "2010-11-07T11:00:24Z" (1289127624) transition_time 0x190-0x193.7 (4)
|
||||
0x190| 4d 7c b1 d8 | M|.. | [90]: "2011-03-13T12:00:24Z" (1300017624) transition_time 0x194-0x197.7 (4)
|
||||
0x190| 4e b6 68 c8 | N.h. | [91]: "2011-11-06T11:00:24Z" (1320577224) transition_time 0x198-0x19b.7 (4)
|
||||
0x190| 4f 5c 93 d8| O\..| [92]: "2012-03-11T12:00:24Z" (1331467224) transition_time 0x19c-0x19f.7 (4)
|
||||
0x1a0|50 96 4a c9 |P.J. | [93]: "2012-11-04T11:00:25Z" (1352026825) transition_time 0x1a0-0x1a3.7 (4)
|
||||
0x1a0| 51 3c 75 d9 | Q<u. | [94]: "2013-03-10T12:00:25Z" (1362916825) transition_time 0x1a4-0x1a7.7 (4)
|
||||
0x1a0| 52 76 2c c9 | Rv,. | [95]: "2013-11-03T11:00:25Z" (1383476425) transition_time 0x1a8-0x1ab.7 (4)
|
||||
0x1a0| 53 1c 57 d9| S.W.| [96]: "2014-03-09T12:00:25Z" (1394366425) transition_time 0x1ac-0x1af.7 (4)
|
||||
0x1b0|54 56 0e c9 |TV.. | [97]: "2014-11-02T11:00:25Z" (1414926025) transition_time 0x1b0-0x1b3.7 (4)
|
||||
0x1b0| 54 fc 39 d9 | T.9. | [98]: "2015-03-08T12:00:25Z" (1425816025) transition_time 0x1b4-0x1b7.7 (4)
|
||||
0x1b0| 56 35 f0 ca | V5.. | [99]: "2015-11-01T11:00:26Z" (1446375626) transition_time 0x1b8-0x1bb.7 (4)
|
||||
0x1b0| 56 e5 56 5a| V.VZ| [100]: "2016-03-13T12:00:26Z" (1457870426) transition_time 0x1bc-0x1bf.7 (4)
|
||||
0x1c0|58 1f 0d 4a |X..J | [101]: "2016-11-06T11:00:26Z" (1478430026) transition_time 0x1c0-0x1c3.7 (4)
|
||||
0x1c0| 58 c5 38 5b | X.8[ | [102]: "2017-03-12T12:00:27Z" (1489320027) transition_time 0x1c4-0x1c7.7 (4)
|
||||
0x1c0| 59 fe ef 4b | Y..K | [103]: "2017-11-05T11:00:27Z" (1509879627) transition_time 0x1c8-0x1cb.7 (4)
|
||||
0x1c0| 5a a5 1a 5b| Z..[| [104]: "2018-03-11T12:00:27Z" (1520769627) transition_time 0x1cc-0x1cf.7 (4)
|
||||
0x1d0|5b de d1 4b |[..K | [105]: "2018-11-04T11:00:27Z" (1541329227) transition_time 0x1d0-0x1d3.7 (4)
|
||||
0x1d0| 5c 84 fc 5b | \..[ | [106]: "2019-03-10T12:00:27Z" (1552219227) transition_time 0x1d4-0x1d7.7 (4)
|
||||
0x1d0| 5d be b3 4b | ]..K | [107]: "2019-11-03T11:00:27Z" (1572778827) transition_time 0x1d8-0x1db.7 (4)
|
||||
0x1d0| 5e 64 de 5b| ^d.[| [108]: "2020-03-08T12:00:27Z" (1583668827) transition_time 0x1dc-0x1df.7 (4)
|
||||
0x1e0|5f 9e 95 4b |_..K | [109]: "2020-11-01T11:00:27Z" (1604228427) transition_time 0x1e0-0x1e3.7 (4)
|
||||
0x1e0| 60 4d fa db | `M.. | [110]: "2021-03-14T12:00:27Z" (1615723227) transition_time 0x1e4-0x1e7.7 (4)
|
||||
0x1e0| 61 87 b1 cb | a... | [111]: "2021-11-07T11:00:27Z" (1636282827) transition_time 0x1e8-0x1eb.7 (4)
|
||||
0x1e0| 62 2d dc db| b-..| [112]: "2022-03-13T12:00:27Z" (1647172827) transition_time 0x1ec-0x1ef.7 (4)
|
||||
0x1f0|63 67 93 cb |cg.. | [113]: "2022-11-06T11:00:27Z" (1667732427) transition_time 0x1f0-0x1f3.7 (4)
|
||||
0x1f0| 64 0d be db | d... | [114]: "2023-03-12T12:00:27Z" (1678622427) transition_time 0x1f4-0x1f7.7 (4)
|
||||
0x1f0| 64 9b 78 1b | d.x. | [115]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x1f8-0x1fb.7 (4)
|
||||
| | | transition_types[0:116]: 0x1fc-0x26f.7 (116)
|
||||
0x1f0| 01 | . | [0]: 1 transition_type 0x1fc-0x1fc.7 (1)
|
||||
0x1f0| 02 | . | [1]: 2 transition_type 0x1fd-0x1fd.7 (1)
|
||||
0x1f0| 03 | . | [2]: 3 transition_type 0x1fe-0x1fe.7 (1)
|
||||
0x1f0| 01| .| [3]: 1 transition_type 0x1ff-0x1ff.7 (1)
|
||||
0x200|04 |. | [4]: 4 transition_type 0x200-0x200.7 (1)
|
||||
0x200| 05 | . | [5]: 5 transition_type 0x201-0x201.7 (1)
|
||||
0x200| 04 | . | [6]: 4 transition_type 0x202-0x202.7 (1)
|
||||
0x200| 05 | . | [7]: 5 transition_type 0x203-0x203.7 (1)
|
||||
0x200| 04 | . | [8]: 4 transition_type 0x204-0x204.7 (1)
|
||||
0x200| 05 | . | [9]: 5 transition_type 0x205-0x205.7 (1)
|
||||
0x200| 04 | . | [10]: 4 transition_type 0x206-0x206.7 (1)
|
||||
0x200| 05 | . | [11]: 5 transition_type 0x207-0x207.7 (1)
|
||||
0x200| 04 | . | [12]: 4 transition_type 0x208-0x208.7 (1)
|
||||
0x200| 05 | . | [13]: 5 transition_type 0x209-0x209.7 (1)
|
||||
0x200| 04 | . | [14]: 4 transition_type 0x20a-0x20a.7 (1)
|
||||
0x200| 05 | . | [15]: 5 transition_type 0x20b-0x20b.7 (1)
|
||||
0x200| 04 | . | [16]: 4 transition_type 0x20c-0x20c.7 (1)
|
||||
0x200| 05 | . | [17]: 5 transition_type 0x20d-0x20d.7 (1)
|
||||
0x200| 04 | . | [18]: 4 transition_type 0x20e-0x20e.7 (1)
|
||||
0x200| 05| .| [19]: 5 transition_type 0x20f-0x20f.7 (1)
|
||||
0x210|04 |. | [20]: 4 transition_type 0x210-0x210.7 (1)
|
||||
0x210| 05 | . | [21]: 5 transition_type 0x211-0x211.7 (1)
|
||||
0x210| 04 | . | [22]: 4 transition_type 0x212-0x212.7 (1)
|
||||
0x210| 05 | . | [23]: 5 transition_type 0x213-0x213.7 (1)
|
||||
0x210| 04 | . | [24]: 4 transition_type 0x214-0x214.7 (1)
|
||||
0x210| 05 | . | [25]: 5 transition_type 0x215-0x215.7 (1)
|
||||
0x210| 04 | . | [26]: 4 transition_type 0x216-0x216.7 (1)
|
||||
0x210| 05 | . | [27]: 5 transition_type 0x217-0x217.7 (1)
|
||||
0x210| 04 | . | [28]: 4 transition_type 0x218-0x218.7 (1)
|
||||
0x210| 05 | . | [29]: 5 transition_type 0x219-0x219.7 (1)
|
||||
0x210| 04 | . | [30]: 4 transition_type 0x21a-0x21a.7 (1)
|
||||
0x210| 05 | . | [31]: 5 transition_type 0x21b-0x21b.7 (1)
|
||||
0x210| 04 | . | [32]: 4 transition_type 0x21c-0x21c.7 (1)
|
||||
0x210| 05 | . | [33]: 5 transition_type 0x21d-0x21d.7 (1)
|
||||
0x210| 06 | . | [34]: 6 transition_type 0x21e-0x21e.7 (1)
|
||||
0x210| 08| .| [35]: 8 transition_type 0x21f-0x21f.7 (1)
|
||||
0x220|07 |. | [36]: 7 transition_type 0x220-0x220.7 (1)
|
||||
0x220| 08 | . | [37]: 8 transition_type 0x221-0x221.7 (1)
|
||||
0x220| 07 | . | [38]: 7 transition_type 0x222-0x222.7 (1)
|
||||
0x220| 08 | . | [39]: 8 transition_type 0x223-0x223.7 (1)
|
||||
0x220| 07 | . | [40]: 7 transition_type 0x224-0x224.7 (1)
|
||||
0x220| 08 | . | [41]: 8 transition_type 0x225-0x225.7 (1)
|
||||
0x220| 07 | . | [42]: 7 transition_type 0x226-0x226.7 (1)
|
||||
0x220| 08 | . | [43]: 8 transition_type 0x227-0x227.7 (1)
|
||||
0x220| 07 | . | [44]: 7 transition_type 0x228-0x228.7 (1)
|
||||
0x220| 08 | . | [45]: 8 transition_type 0x229-0x229.7 (1)
|
||||
0x220| 07 | . | [46]: 7 transition_type 0x22a-0x22a.7 (1)
|
||||
0x220| 08 | . | [47]: 8 transition_type 0x22b-0x22b.7 (1)
|
||||
0x220| 07 | . | [48]: 7 transition_type 0x22c-0x22c.7 (1)
|
||||
0x220| 08 | . | [49]: 8 transition_type 0x22d-0x22d.7 (1)
|
||||
0x220| 07 | . | [50]: 7 transition_type 0x22e-0x22e.7 (1)
|
||||
0x220| 08| .| [51]: 8 transition_type 0x22f-0x22f.7 (1)
|
||||
0x230|07 |. | [52]: 7 transition_type 0x230-0x230.7 (1)
|
||||
0x230| 08 | . | [53]: 8 transition_type 0x231-0x231.7 (1)
|
||||
0x230| 07 | . | [54]: 7 transition_type 0x232-0x232.7 (1)
|
||||
0x230| 08 | . | [55]: 8 transition_type 0x233-0x233.7 (1)
|
||||
0x230| 07 | . | [56]: 7 transition_type 0x234-0x234.7 (1)
|
||||
0x230| 08 | . | [57]: 8 transition_type 0x235-0x235.7 (1)
|
||||
0x230| 07 | . | [58]: 7 transition_type 0x236-0x236.7 (1)
|
||||
0x230| 08 | . | [59]: 8 transition_type 0x237-0x237.7 (1)
|
||||
0x230| 07 | . | [60]: 7 transition_type 0x238-0x238.7 (1)
|
||||
0x230| 08 | . | [61]: 8 transition_type 0x239-0x239.7 (1)
|
||||
0x230| 07 | . | [62]: 7 transition_type 0x23a-0x23a.7 (1)
|
||||
0x230| 08 | . | [63]: 8 transition_type 0x23b-0x23b.7 (1)
|
||||
0x230| 07 | . | [64]: 7 transition_type 0x23c-0x23c.7 (1)
|
||||
0x230| 08 | . | [65]: 8 transition_type 0x23d-0x23d.7 (1)
|
||||
0x230| 07 | . | [66]: 7 transition_type 0x23e-0x23e.7 (1)
|
||||
0x230| 08| .| [67]: 8 transition_type 0x23f-0x23f.7 (1)
|
||||
0x240|07 |. | [68]: 7 transition_type 0x240-0x240.7 (1)
|
||||
0x240| 08 | . | [69]: 8 transition_type 0x241-0x241.7 (1)
|
||||
0x240| 07 | . | [70]: 7 transition_type 0x242-0x242.7 (1)
|
||||
0x240| 08 | . | [71]: 8 transition_type 0x243-0x243.7 (1)
|
||||
0x240| 07 | . | [72]: 7 transition_type 0x244-0x244.7 (1)
|
||||
0x240| 08 | . | [73]: 8 transition_type 0x245-0x245.7 (1)
|
||||
0x240| 07 | . | [74]: 7 transition_type 0x246-0x246.7 (1)
|
||||
0x240| 08 | . | [75]: 8 transition_type 0x247-0x247.7 (1)
|
||||
0x240| 07 | . | [76]: 7 transition_type 0x248-0x248.7 (1)
|
||||
0x240| 08 | . | [77]: 8 transition_type 0x249-0x249.7 (1)
|
||||
0x240| 07 | . | [78]: 7 transition_type 0x24a-0x24a.7 (1)
|
||||
0x240| 08 | . | [79]: 8 transition_type 0x24b-0x24b.7 (1)
|
||||
0x240| 07 | . | [80]: 7 transition_type 0x24c-0x24c.7 (1)
|
||||
0x240| 08 | . | [81]: 8 transition_type 0x24d-0x24d.7 (1)
|
||||
0x240| 07 | . | [82]: 7 transition_type 0x24e-0x24e.7 (1)
|
||||
0x240| 08| .| [83]: 8 transition_type 0x24f-0x24f.7 (1)
|
||||
0x250|07 |. | [84]: 7 transition_type 0x250-0x250.7 (1)
|
||||
0x250| 08 | . | [85]: 8 transition_type 0x251-0x251.7 (1)
|
||||
0x250| 07 | . | [86]: 7 transition_type 0x252-0x252.7 (1)
|
||||
0x250| 08 | . | [87]: 8 transition_type 0x253-0x253.7 (1)
|
||||
0x250| 07 | . | [88]: 7 transition_type 0x254-0x254.7 (1)
|
||||
0x250| 08 | . | [89]: 8 transition_type 0x255-0x255.7 (1)
|
||||
0x250| 07 | . | [90]: 7 transition_type 0x256-0x256.7 (1)
|
||||
0x250| 08 | . | [91]: 8 transition_type 0x257-0x257.7 (1)
|
||||
0x250| 07 | . | [92]: 7 transition_type 0x258-0x258.7 (1)
|
||||
0x250| 08 | . | [93]: 8 transition_type 0x259-0x259.7 (1)
|
||||
0x250| 07 | . | [94]: 7 transition_type 0x25a-0x25a.7 (1)
|
||||
0x250| 08 | . | [95]: 8 transition_type 0x25b-0x25b.7 (1)
|
||||
0x250| 07 | . | [96]: 7 transition_type 0x25c-0x25c.7 (1)
|
||||
0x250| 08 | . | [97]: 8 transition_type 0x25d-0x25d.7 (1)
|
||||
0x250| 07 | . | [98]: 7 transition_type 0x25e-0x25e.7 (1)
|
||||
0x250| 08| .| [99]: 8 transition_type 0x25f-0x25f.7 (1)
|
||||
0x260|07 |. | [100]: 7 transition_type 0x260-0x260.7 (1)
|
||||
0x260| 08 | . | [101]: 8 transition_type 0x261-0x261.7 (1)
|
||||
0x260| 07 | . | [102]: 7 transition_type 0x262-0x262.7 (1)
|
||||
0x260| 08 | . | [103]: 8 transition_type 0x263-0x263.7 (1)
|
||||
0x260| 07 | . | [104]: 7 transition_type 0x264-0x264.7 (1)
|
||||
0x260| 08 | . | [105]: 8 transition_type 0x265-0x265.7 (1)
|
||||
0x260| 07 | . | [106]: 7 transition_type 0x266-0x266.7 (1)
|
||||
0x260| 08 | . | [107]: 8 transition_type 0x267-0x267.7 (1)
|
||||
0x260| 07 | . | [108]: 7 transition_type 0x268-0x268.7 (1)
|
||||
0x260| 08 | . | [109]: 8 transition_type 0x269-0x269.7 (1)
|
||||
0x260| 07 | . | [110]: 7 transition_type 0x26a-0x26a.7 (1)
|
||||
0x260| 08 | . | [111]: 8 transition_type 0x26b-0x26b.7 (1)
|
||||
0x260| 07 | . | [112]: 7 transition_type 0x26c-0x26c.7 (1)
|
||||
0x260| 08 | . | [113]: 8 transition_type 0x26d-0x26d.7 (1)
|
||||
0x260| 07 | . | [114]: 7 transition_type 0x26e-0x26e.7 (1)
|
||||
0x260| 07| .| [115]: 7 transition_type 0x26f-0x26f.7 (1)
|
||||
| | | local_time_type_records[0:9]: 0x270-0x2a5.7 (54)
|
||||
| | | [0]{}: local_time_type 0x270-0x275.7 (6)
|
||||
0x270|00 00 ab e2 |.... | utoff: 44002 (valid) 0x270-0x273.7 (4)
|
||||
0x270| 00 | . | dst: 0 (valid) 0x274-0x274.7 (1)
|
||||
0x270| 00 | . | idx: 0 (valid) 0x275-0x275.7 (1)
|
||||
| | | [1]{}: local_time_type 0x276-0x27b.7 (6)
|
||||
0x270| ff ff 65 50 | ..eP | utoff: -39600 (valid) 0x276-0x279.7 (4)
|
||||
0x270| 00 | . | dst: 0 (valid) 0x27a-0x27a.7 (1)
|
||||
0x270| 04 | . | idx: 4 (valid) 0x27b-0x27b.7 (1)
|
||||
| | | [2]{}: local_time_type 0x27c-0x281.7 (6)
|
||||
0x270| ff ff 73 60| ..s`| utoff: -36000 (valid) 0x27c-0x27f.7 (4)
|
||||
0x280|01 |. | dst: 1 (valid) 0x280-0x280.7 (1)
|
||||
0x280| 08 | . | idx: 8 (valid) 0x281-0x281.7 (1)
|
||||
| | | [3]{}: local_time_type 0x282-0x287.7 (6)
|
||||
0x280| ff ff 73 60 | ..s` | utoff: -36000 (valid) 0x282-0x285.7 (4)
|
||||
0x280| 01 | . | dst: 1 (valid) 0x286-0x286.7 (1)
|
||||
0x280| 0c | . | idx: 12 (valid) 0x287-0x287.7 (1)
|
||||
| | | [4]{}: local_time_type 0x288-0x28d.7 (6)
|
||||
0x280| ff ff 65 50 | ..eP | utoff: -39600 (valid) 0x288-0x28b.7 (4)
|
||||
0x280| 00 | . | dst: 0 (valid) 0x28c-0x28c.7 (1)
|
||||
0x280| 10 | . | idx: 16 (valid) 0x28d-0x28d.7 (1)
|
||||
| | | [5]{}: local_time_type 0x28e-0x293.7 (6)
|
||||
0x280| ff ff| ..| utoff: -36000 (valid) 0x28e-0x291.7 (4)
|
||||
0x290|73 60 |s` |
|
||||
0x290| 01 | . | dst: 1 (valid) 0x292-0x292.7 (1)
|
||||
0x290| 14 | . | idx: 20 (valid) 0x293-0x293.7 (1)
|
||||
| | | [6]{}: local_time_type 0x294-0x299.7 (6)
|
||||
0x290| ff ff 73 60 | ..s` | utoff: -36000 (valid) 0x294-0x297.7 (4)
|
||||
0x290| 00 | . | dst: 0 (valid) 0x298-0x298.7 (1)
|
||||
0x290| 18 | . | idx: 24 (valid) 0x299-0x299.7 (1)
|
||||
| | | [7]{}: local_time_type 0x29a-0x29f.7 (6)
|
||||
0x290| ff ff 81 70 | ...p | utoff: -32400 (valid) 0x29a-0x29d.7 (4)
|
||||
0x290| 01 | . | dst: 1 (valid) 0x29e-0x29e.7 (1)
|
||||
0x290| 1d| .| idx: 29 (valid) 0x29f-0x29f.7 (1)
|
||||
| | | [8]{}: local_time_type 0x2a0-0x2a5.7 (6)
|
||||
0x2a0|ff ff 73 60 |..s` | utoff: -36000 (valid) 0x2a0-0x2a3.7 (4)
|
||||
0x2a0| 00 | . | dst: 0 (valid) 0x2a4-0x2a4.7 (1)
|
||||
0x2a0| 19 | . | idx: 25 (valid) 0x2a5-0x2a5.7 (1)
|
||||
| | | time_zone_designations[0:8]: 0x2a6-0x2c6.7 (33)
|
||||
0x2a0| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x2a6-0x2a9.7 (4)
|
||||
0x2a0| 4e 53 54 00 | NST. | [1]: "NST" time_zone_designation 0x2aa-0x2ad.7 (4)
|
||||
0x2a0| 4e 57| NW| [2]: "NWT" time_zone_designation 0x2ae-0x2b1.7 (4)
|
||||
0x2b0|54 00 |T. |
|
||||
0x2b0| 4e 50 54 00 | NPT. | [3]: "NPT" time_zone_designation 0x2b2-0x2b5.7 (4)
|
||||
0x2b0| 42 53 54 00 | BST. | [4]: "BST" time_zone_designation 0x2b6-0x2b9.7 (4)
|
||||
0x2b0| 42 44 54 00 | BDT. | [5]: "BDT" time_zone_designation 0x2ba-0x2bd.7 (4)
|
||||
0x2b0| 41 48| AH| [6]: "AHST" time_zone_designation 0x2be-0x2c2.7 (5)
|
||||
0x2c0|53 54 00 |ST. |
|
||||
0x2c0| 48 44 54 00 | HDT. | [7]: "HDT" time_zone_designation 0x2c3-0x2c6.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x2c7-0x39e.7 (216)
|
||||
| | | [0]{}: leap_second_record 0x2c7-0x2ce.7 (8)
|
||||
0x2c0| 04 b2 58 00 | ..X. | occur: "1972-07-01T00:00:00Z" (78796800) 0x2c7-0x2ca.7 (4)
|
||||
0x2c0| 00 00 00 01 | .... | corr: 1 0x2cb-0x2ce.7 (4)
|
||||
| | | [1]{}: leap_second_record 0x2cf-0x2d6.7 (8)
|
||||
0x2c0| 05| .| occur: "1973-01-01T00:00:01Z" (94694401) 0x2cf-0x2d2.7 (4)
|
||||
0x2d0|a4 ec 01 |... |
|
||||
0x2d0| 00 00 00 02 | .... | corr: 2 0x2d3-0x2d6.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x2d7-0x2de.7 (8)
|
||||
0x2d0| 07 86 1f 82 | .... | occur: "1974-01-01T00:00:02Z" (126230402) 0x2d7-0x2da.7 (4)
|
||||
0x2d0| 00 00 00 03 | .... | corr: 3 0x2db-0x2de.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x2df-0x2e6.7 (8)
|
||||
0x2d0| 09| .| occur: "1975-01-01T00:00:03Z" (157766403) 0x2df-0x2e2.7 (4)
|
||||
0x2e0|67 53 03 |gS. |
|
||||
0x2e0| 00 00 00 04 | .... | corr: 4 0x2e3-0x2e6.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x2e7-0x2ee.7 (8)
|
||||
0x2e0| 0b 48 86 84 | .H.. | occur: "1976-01-01T00:00:04Z" (189302404) 0x2e7-0x2ea.7 (4)
|
||||
0x2e0| 00 00 00 05 | .... | corr: 5 0x2eb-0x2ee.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x2ef-0x2f6.7 (8)
|
||||
0x2e0| 0d| .| occur: "1977-01-01T00:00:05Z" (220924805) 0x2ef-0x2f2.7 (4)
|
||||
0x2f0|2b 0b 85 |+.. |
|
||||
0x2f0| 00 00 00 06 | .... | corr: 6 0x2f3-0x2f6.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x2f7-0x2fe.7 (8)
|
||||
0x2f0| 0f 0c 3f 06 | ..?. | occur: "1978-01-01T00:00:06Z" (252460806) 0x2f7-0x2fa.7 (4)
|
||||
0x2f0| 00 00 00 07 | .... | corr: 7 0x2fb-0x2fe.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x2ff-0x306.7 (8)
|
||||
0x2f0| 10| .| occur: "1979-01-01T00:00:07Z" (283996807) 0x2ff-0x302.7 (4)
|
||||
0x300|ed 72 87 |.r. |
|
||||
0x300| 00 00 00 08 | .... | corr: 8 0x303-0x306.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x307-0x30e.7 (8)
|
||||
0x300| 12 ce a6 08 | .... | occur: "1980-01-01T00:00:08Z" (315532808) 0x307-0x30a.7 (4)
|
||||
0x300| 00 00 00 09 | .... | corr: 9 0x30b-0x30e.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x30f-0x316.7 (8)
|
||||
0x300| 15| .| occur: "1981-07-01T00:00:09Z" (362793609) 0x30f-0x312.7 (4)
|
||||
0x310|9f ca 89 |... |
|
||||
0x310| 00 00 00 0a | .... | corr: 10 0x313-0x316.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x317-0x31e.7 (8)
|
||||
0x310| 17 80 fe 0a | .... | occur: "1982-07-01T00:00:10Z" (394329610) 0x317-0x31a.7 (4)
|
||||
0x310| 00 00 00 0b | .... | corr: 11 0x31b-0x31e.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x31f-0x326.7 (8)
|
||||
0x310| 19| .| occur: "1983-07-01T00:00:11Z" (425865611) 0x31f-0x322.7 (4)
|
||||
0x320|62 31 8b |b1. |
|
||||
0x320| 00 00 00 0c | .... | corr: 12 0x323-0x326.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x327-0x32e.7 (8)
|
||||
0x320| 1d 25 ea 0c | .%.. | occur: "1985-07-01T00:00:12Z" (489024012) 0x327-0x32a.7 (4)
|
||||
0x320| 00 00 00 0d | .... | corr: 13 0x32b-0x32e.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x32f-0x336.7 (8)
|
||||
0x320| 21| !| occur: "1988-01-01T00:00:13Z" (567993613) 0x32f-0x332.7 (4)
|
||||
0x330|da e5 0d |... |
|
||||
0x330| 00 00 00 0e | .... | corr: 14 0x333-0x336.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x337-0x33e.7 (8)
|
||||
0x330| 25 9e 9d 8e | %... | occur: "1990-01-01T00:00:14Z" (631152014) 0x337-0x33a.7 (4)
|
||||
0x330| 00 00 00 0f | .... | corr: 15 0x33b-0x33e.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x33f-0x346.7 (8)
|
||||
0x330| 27| '| occur: "1991-01-01T00:00:15Z" (662688015) 0x33f-0x342.7 (4)
|
||||
0x340|7f d1 0f |... |
|
||||
0x340| 00 00 00 10 | .... | corr: 16 0x343-0x346.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x347-0x34e.7 (8)
|
||||
0x340| 2a 50 f5 90 | *P.. | occur: "1992-07-01T00:00:16Z" (709948816) 0x347-0x34a.7 (4)
|
||||
0x340| 00 00 00 11 | .... | corr: 17 0x34b-0x34e.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x34f-0x356.7 (8)
|
||||
0x340| 2c| ,| occur: "1993-07-01T00:00:17Z" (741484817) 0x34f-0x352.7 (4)
|
||||
0x350|32 29 11 |2). |
|
||||
0x350| 00 00 00 12 | .... | corr: 18 0x353-0x356.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x357-0x35e.7 (8)
|
||||
0x350| 2e 13 5c 92 | ..\. | occur: "1994-07-01T00:00:18Z" (773020818) 0x357-0x35a.7 (4)
|
||||
0x350| 00 00 00 13 | .... | corr: 19 0x35b-0x35e.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x35f-0x366.7 (8)
|
||||
0x350| 30| 0| occur: "1996-01-01T00:00:19Z" (820454419) 0x35f-0x362.7 (4)
|
||||
0x360|e7 24 13 |.$. |
|
||||
0x360| 00 00 00 14 | .... | corr: 20 0x363-0x366.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x367-0x36e.7 (8)
|
||||
0x360| 33 b8 48 94 | 3.H. | occur: "1997-07-01T00:00:20Z" (867715220) 0x367-0x36a.7 (4)
|
||||
0x360| 00 00 00 15 | .... | corr: 21 0x36b-0x36e.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x36f-0x376.7 (8)
|
||||
0x360| 36| 6| occur: "1999-01-01T00:00:21Z" (915148821) 0x36f-0x372.7 (4)
|
||||
0x370|8c 10 15 |... |
|
||||
0x370| 00 00 00 16 | .... | corr: 22 0x373-0x376.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x377-0x37e.7 (8)
|
||||
0x370| 43 b7 1b 96 | C... | occur: "2006-01-01T00:00:22Z" (1136073622) 0x377-0x37a.7 (4)
|
||||
0x370| 00 00 00 17 | .... | corr: 23 0x37b-0x37e.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x37f-0x386.7 (8)
|
||||
0x370| 49| I| occur: "2009-01-01T00:00:23Z" (1230768023) 0x37f-0x382.7 (4)
|
||||
0x380|5c 07 97 |\.. |
|
||||
0x380| 00 00 00 18 | .... | corr: 24 0x383-0x386.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x387-0x38e.7 (8)
|
||||
0x380| 4f ef 93 18 | O... | occur: "2012-07-01T00:00:24Z" (1341100824) 0x387-0x38a.7 (4)
|
||||
0x380| 00 00 00 19 | .... | corr: 25 0x38b-0x38e.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x38f-0x396.7 (8)
|
||||
0x380| 55| U| occur: "2015-07-01T00:00:25Z" (1435708825) 0x38f-0x392.7 (4)
|
||||
0x390|93 2d 99 |.-. |
|
||||
0x390| 00 00 00 1a | .... | corr: 26 0x393-0x396.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x397-0x39e.7 (8)
|
||||
0x390| 58 68 46 9a | XhF. | occur: "2017-01-01T00:00:26Z" (1483228826) 0x397-0x39a.7 (4)
|
||||
0x390| 00 00 00 1b | .... | corr: 27 0x39b-0x39e.7 (4)
|
||||
| | | standard_wall_indicators[0:9]: 0x39f-0x3a7.7 (9)
|
||||
0x390| 00| .| [0]: 0 standard_wall_indicator (valid) 0x39f-0x39f.7 (1)
|
||||
0x3a0|00 |. | [1]: 0 standard_wall_indicator (valid) 0x3a0-0x3a0.7 (1)
|
||||
0x3a0| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x3a1-0x3a1.7 (1)
|
||||
0x3a0| 01 | . | [3]: 1 standard_wall_indicator (valid) 0x3a2-0x3a2.7 (1)
|
||||
0x3a0| 00 | . | [4]: 0 standard_wall_indicator (valid) 0x3a3-0x3a3.7 (1)
|
||||
0x3a0| 00 | . | [5]: 0 standard_wall_indicator (valid) 0x3a4-0x3a4.7 (1)
|
||||
0x3a0| 00 | . | [6]: 0 standard_wall_indicator (valid) 0x3a5-0x3a5.7 (1)
|
||||
0x3a0| 00 | . | [7]: 0 standard_wall_indicator (valid) 0x3a6-0x3a6.7 (1)
|
||||
0x3a0| 00 | . | [8]: 0 standard_wall_indicator (valid) 0x3a7-0x3a7.7 (1)
|
||||
| | | ut_local_indicators[0:9]: 0x3a8-0x3b0.7 (9)
|
||||
0x3a0| 00 | . | [0]: 0 ut_local_indicator (valid) 0x3a8-0x3a8.7 (1)
|
||||
0x3a0| 00 | . | [1]: 0 ut_local_indicator (valid) 0x3a9-0x3a9.7 (1)
|
||||
0x3a0| 00 | . | [2]: 0 ut_local_indicator (valid) 0x3aa-0x3aa.7 (1)
|
||||
0x3a0| 01 | . | [3]: 1 ut_local_indicator (valid) 0x3ab-0x3ab.7 (1)
|
||||
0x3a0| 00 | . | [4]: 0 ut_local_indicator (valid) 0x3ac-0x3ac.7 (1)
|
||||
0x3a0| 00 | . | [5]: 0 ut_local_indicator (valid) 0x3ad-0x3ad.7 (1)
|
||||
0x3a0| 00 | . | [6]: 0 ut_local_indicator (valid) 0x3ae-0x3ae.7 (1)
|
||||
0x3a0| 00| .| [7]: 0 ut_local_indicator (valid) 0x3af-0x3af.7 (1)
|
||||
0x3b0|00 |. | [8]: 0 ut_local_indicator (valid) 0x3b0-0x3b0.7 (1)
|
||||
| | | v2plusheader{}: 0x3b1-0x3dc.7 (44)
|
||||
0x3b0| 54 5a 69 66 | TZif | magic: 0x545a6966 (valid) 0x3b1-0x3b4.7 (4)
|
||||
0x3b0| 32 | 2 | ver: "2" (0x32) (valid) 0x3b5-0x3b5.7 (1)
|
||||
0x3b0| 00 00 00 00 00 00 00 00 00 00| ..........| reserved: raw bits 0x3b6-0x3c4.7 (15)
|
||||
0x3c0|00 00 00 00 00 |..... |
|
||||
0x3c0| 00 00 00 0a | .... | isutcnt: 10 0x3c5-0x3c8.7 (4)
|
||||
0x3c0| 00 00 00 0a | .... | isstdcnt: 10 0x3c9-0x3cc.7 (4)
|
||||
0x3c0| 00 00 00| ...| leapcnt: 27 0x3cd-0x3d0.7 (4)
|
||||
0x3d0|1b |. |
|
||||
0x3d0| 00 00 00 75 | ...u | timecnt: 117 0x3d1-0x3d4.7 (4)
|
||||
0x3d0| 00 00 00 0a | .... | typecnt: 10 0x3d5-0x3d8.7 (4)
|
||||
0x3d0| 00 00 00 21 | ...! | charcnt: 33 0x3d9-0x3dc.7 (4)
|
||||
| | | v2plusdatablock{}: 0x3dd-0x9ae.7 (1490)
|
||||
| | | transition_times[0:117]: 0x3dd-0x784.7 (936)
|
||||
0x3d0| ff ff ff| ...| [0]: "1867-10-19T00:31:13Z" (-3225223727) transition_time 0x3dd-0x3e4.7 (8)
|
||||
0x3e0|ff 3f c2 fd d1 |.?... |
|
||||
0x3e0| ff ff ff ff 7d 87 5a 5e | ....}.Z^ | [1]: "1900-08-20T23:46:38Z" (-2188944802) transition_time 0x3e5-0x3ec.7 (8)
|
||||
0x3e0| ff ff ff| ...| [2]: "1942-02-09T13:00:00Z" (-880196400) transition_time 0x3ed-0x3f4.7 (8)
|
||||
0x3f0|ff cb 89 44 d0 |...D. |
|
||||
0x3f0| ff ff ff ff d2 23 f4 70 | .....#.p | [3]: "1945-08-14T23:00:00Z" (-769395600) transition_time 0x3f5-0x3fc.7 (8)
|
||||
0x3f0| ff ff ff| ...| [4]: "1945-09-30T12:00:00Z" (-765374400) transition_time 0x3fd-0x404.7 (8)
|
||||
0x400|ff d2 61 50 40 |..aP@ |
|
||||
0x400| ff ff ff ff fa d2 55 b0 | ......U. | [5]: "1967-04-01T11:00:00Z" (-86878800) transition_time 0x405-0x40c.7 (8)
|
||||
0x400| ff ff ff| ...| [6]: "1969-04-27T13:00:00Z" (-21466800) transition_time 0x40d-0x414.7 (8)
|
||||
0x410|ff fe b8 71 50 |...qP |
|
||||
0x410| ff ff ff ff ff a8 54 40 | ......T@ | [7]: "1969-10-26T12:00:00Z" (-5745600) transition_time 0x415-0x41c.7 (8)
|
||||
0x410| 00 00 00| ...| [8]: "1970-04-26T13:00:00Z" (9982800) transition_time 0x41d-0x424.7 (8)
|
||||
0x420|00 00 98 53 50 |...SP |
|
||||
0x420| 00 00 00 00 01 88 36 40 | ......6@ | [9]: "1970-10-25T12:00:00Z" (25704000) transition_time 0x425-0x42c.7 (8)
|
||||
0x420| 00 00 00| ...| [10]: "1971-04-25T13:00:00Z" (41432400) transition_time 0x42d-0x434.7 (8)
|
||||
0x430|00 02 78 35 50 |..x5P |
|
||||
0x430| 00 00 00 00 03 71 52 c0 | .....qR. | [11]: "1971-10-31T12:00:00Z" (57758400) transition_time 0x435-0x43c.7 (8)
|
||||
0x430| 00 00 00| ...| [12]: "1972-04-30T13:00:00Z" (73486800) transition_time 0x43d-0x444.7 (8)
|
||||
0x440|00 04 61 51 d0 |..aQ. |
|
||||
0x440| 00 00 00 00 05 51 34 c1 | .....Q4. | [13]: "1972-10-29T12:00:01Z" (89208001) transition_time 0x445-0x44c.7 (8)
|
||||
0x440| 00 00 00| ...| [14]: "1973-04-29T13:00:02Z" (104936402) transition_time 0x44d-0x454.7 (8)
|
||||
0x450|00 06 41 33 d2 |..A3. |
|
||||
0x450| 00 00 00 00 07 31 16 c2 | .....1.. | [15]: "1973-10-28T12:00:02Z" (120657602) transition_time 0x455-0x45c.7 (8)
|
||||
0x450| 00 00 00| ...| [16]: "1974-01-06T13:00:03Z" (126709203) transition_time 0x45d-0x464.7 (8)
|
||||
0x460|00 07 8d 6d d3 |...m. |
|
||||
0x460| 00 00 00 00 09 10 f8 c3 | ........ | [17]: "1974-10-27T12:00:03Z" (152107203) transition_time 0x465-0x46c.7 (8)
|
||||
0x460| 00 00 00| ...| [18]: "1975-02-23T13:00:04Z" (162392404) transition_time 0x46d-0x474.7 (8)
|
||||
0x470|00 09 ad e9 54 |....T |
|
||||
0x470| 00 00 00 00 0a f0 da c4 | ........ | [19]: "1975-10-26T12:00:04Z" (183556804) transition_time 0x475-0x47c.7 (8)
|
||||
0x470| 00 00 00| ...| [20]: "1976-04-25T13:00:05Z" (199285205) transition_time 0x47d-0x484.7 (8)
|
||||
0x480|00 0b e0 d9 d5 |..... |
|
||||
0x480| 00 00 00 00 0c d9 f7 45 | .......E | [21]: "1976-10-31T12:00:05Z" (215611205) transition_time 0x485-0x48c.7 (8)
|
||||
0x480| 00 00 00| ...| [22]: "1977-04-24T13:00:06Z" (230734806) transition_time 0x48d-0x494.7 (8)
|
||||
0x490|00 0d c0 bb d6 |..... |
|
||||
0x490| 00 00 00 00 0e b9 d9 46 | .......F | [23]: "1977-10-30T12:00:06Z" (247060806) transition_time 0x495-0x49c.7 (8)
|
||||
0x490| 00 00 00| ...| [24]: "1978-04-30T13:00:07Z" (262789207) transition_time 0x49d-0x4a4.7 (8)
|
||||
0x4a0|00 0f a9 d8 57 |....W |
|
||||
0x4a0| 00 00 00 00 10 99 bb 47 | .......G | [25]: "1978-10-29T12:00:07Z" (278510407) transition_time 0x4a5-0x4ac.7 (8)
|
||||
0x4a0| 00 00 00| ...| [26]: "1979-04-29T13:00:08Z" (294238808) transition_time 0x4ad-0x4b4.7 (8)
|
||||
0x4b0|00 11 89 ba 58 |....X |
|
||||
0x4b0| 00 00 00 00 12 79 9d 48 | .....y.H | [27]: "1979-10-28T12:00:08Z" (309960008) transition_time 0x4b5-0x4bc.7 (8)
|
||||
0x4b0| 00 00 00| ...| [28]: "1980-04-27T13:00:09Z" (325688409) transition_time 0x4bd-0x4c4.7 (8)
|
||||
0x4c0|00 13 69 9c 59 |..i.Y |
|
||||
0x4c0| 00 00 00 00 14 59 7f 49 | .....Y.I | [29]: "1980-10-26T12:00:09Z" (341409609) transition_time 0x4c5-0x4cc.7 (8)
|
||||
0x4c0| 00 00 00| ...| [30]: "1981-04-26T13:00:09Z" (357138009) transition_time 0x4cd-0x4d4.7 (8)
|
||||
0x4d0|00 15 49 7e 59 |..I~Y |
|
||||
0x4d0| 00 00 00 00 16 39 61 4a | .....9aJ | [31]: "1981-10-25T12:00:10Z" (372859210) transition_time 0x4d5-0x4dc.7 (8)
|
||||
0x4d0| 00 00 00| ...| [32]: "1982-04-25T13:00:10Z" (388587610) transition_time 0x4dd-0x4e4.7 (8)
|
||||
0x4e0|00 17 29 60 5a |..)`Z |
|
||||
0x4e0| 00 00 00 00 18 22 7d cb | ....."}. | [33]: "1982-10-31T12:00:11Z" (404913611) transition_time 0x4e5-0x4ec.7 (8)
|
||||
0x4e0| 00 00 00| ...| [34]: "1983-04-24T13:00:11Z" (420037211) transition_time 0x4ed-0x4f4.7 (8)
|
||||
0x4f0|00 19 09 42 5b |...B[ |
|
||||
0x4f0| 00 00 00 00 1a 02 5f cc | ......_. | [35]: "1983-10-30T12:00:12Z" (436363212) transition_time 0x4f5-0x4fc.7 (8)
|
||||
0x4f0| 00 00 00| ...| [36]: "1983-11-30T10:00:12Z" (439034412) transition_time 0x4fd-0x504.7 (8)
|
||||
0x500|00 1a 2b 22 2c |..+", |
|
||||
0x500| 00 00 00 00 1a f2 50 cc | ......P. | [37]: "1984-04-29T12:00:12Z" (452088012) transition_time 0x505-0x50c.7 (8)
|
||||
0x500| 00 00 00| ...| [38]: "1984-10-28T11:00:12Z" (467809212) transition_time 0x50d-0x514.7 (8)
|
||||
0x510|00 1b e2 33 bc |...3. |
|
||||
0x510| 00 00 00 00 1c d2 32 cc | ......2. | [39]: "1985-04-28T12:00:12Z" (483537612) transition_time 0x515-0x51c.7 (8)
|
||||
0x510| 00 00 00| ...| [40]: "1985-10-27T11:00:13Z" (499258813) transition_time 0x51d-0x524.7 (8)
|
||||
0x520|00 1d c2 15 bd |..... |
|
||||
0x520| 00 00 00 00 1e b2 14 cd | ........ | [41]: "1986-04-27T12:00:13Z" (514987213) transition_time 0x525-0x52c.7 (8)
|
||||
0x520| 00 00 00| ...| [42]: "1986-10-26T11:00:13Z" (530708413) transition_time 0x52d-0x534.7 (8)
|
||||
0x530|00 1f a1 f7 bd |..... |
|
||||
0x530| 00 00 00 00 20 76 47 4d | .... vGM | [43]: "1987-04-05T12:00:13Z" (544622413) transition_time 0x535-0x53c.7 (8)
|
||||
0x530| 00 00 00| ...| [44]: "1987-10-25T11:00:13Z" (562158013) transition_time 0x53d-0x544.7 (8)
|
||||
0x540|00 21 81 d9 bd |.!... |
|
||||
0x540| 00 00 00 00 22 56 29 4e | ...."V)N | [45]: "1988-04-03T12:00:14Z" (576072014) transition_time 0x545-0x54c.7 (8)
|
||||
0x540| 00 00 00| ...| [46]: "1988-10-30T11:00:14Z" (594212414) transition_time 0x54d-0x554.7 (8)
|
||||
0x550|00 23 6a f6 3e |.#j.> |
|
||||
0x550| 00 00 00 00 24 36 0b 4e | ....$6.N | [47]: "1989-04-02T12:00:14Z" (607521614) transition_time 0x555-0x55c.7 (8)
|
||||
0x550| 00 00 00| ...| [48]: "1989-10-29T11:00:14Z" (625662014) transition_time 0x55d-0x564.7 (8)
|
||||
0x560|00 25 4a d8 3e |.%J.> |
|
||||
0x560| 00 00 00 00 26 15 ed 4f | ....&..O | [49]: "1990-04-01T12:00:15Z" (638971215) transition_time 0x565-0x56c.7 (8)
|
||||
0x560| 00 00 00| ...| [50]: "1990-10-28T11:00:15Z" (657111615) transition_time 0x56d-0x574.7 (8)
|
||||
0x570|00 27 2a ba 3f |.'*.? |
|
||||
0x570| 00 00 00 00 27 ff 09 d0 | ....'... | [51]: "1991-04-07T12:00:16Z" (671025616) transition_time 0x575-0x57c.7 (8)
|
||||
0x570| 00 00 00| ...| [52]: "1991-10-27T11:00:16Z" (688561216) transition_time 0x57d-0x584.7 (8)
|
||||
0x580|00 29 0a 9c 40 |.)..@ |
|
||||
0x580| 00 00 00 00 29 de eb d0 | ....)... | [53]: "1992-04-05T12:00:16Z" (702475216) transition_time 0x585-0x58c.7 (8)
|
||||
0x580| 00 00 00| ...| [54]: "1992-10-25T11:00:17Z" (720010817) transition_time 0x58d-0x594.7 (8)
|
||||
0x590|00 2a ea 7e 41 |.*.~A |
|
||||
0x590| 00 00 00 00 2b be cd d1 | ....+... | [55]: "1993-04-04T12:00:17Z" (733924817) transition_time 0x595-0x59c.7 (8)
|
||||
0x590| 00 00 00| ...| [56]: "1993-10-31T11:00:18Z" (752065218) transition_time 0x59d-0x5a4.7 (8)
|
||||
0x5a0|00 2c d3 9a c2 |.,... |
|
||||
0x5a0| 00 00 00 00 2d 9e af d2 | ....-... | [57]: "1994-04-03T12:00:18Z" (765374418) transition_time 0x5a5-0x5ac.7 (8)
|
||||
0x5a0| 00 00 00| ...| [58]: "1994-10-30T11:00:19Z" (783514819) transition_time 0x5ad-0x5b4.7 (8)
|
||||
0x5b0|00 2e b3 7c c3 |...|. |
|
||||
0x5b0| 00 00 00 00 2f 7e 91 d3 | ..../~.. | [59]: "1995-04-02T12:00:19Z" (796824019) transition_time 0x5b5-0x5bc.7 (8)
|
||||
0x5b0| 00 00 00| ...| [60]: "1995-10-29T11:00:19Z" (814964419) transition_time 0x5bd-0x5c4.7 (8)
|
||||
0x5c0|00 30 93 5e c3 |.0.^. |
|
||||
0x5c0| 00 00 00 00 31 67 ae 54 | ....1g.T | [61]: "1996-04-07T12:00:20Z" (828878420) transition_time 0x5c5-0x5cc.7 (8)
|
||||
0x5c0| 00 00 00| ...| [62]: "1996-10-27T11:00:20Z" (846414020) transition_time 0x5cd-0x5d4.7 (8)
|
||||
0x5d0|00 32 73 40 c4 |.2s@. |
|
||||
0x5d0| 00 00 00 00 33 47 90 54 | ....3G.T | [63]: "1997-04-06T12:00:20Z" (860328020) transition_time 0x5d5-0x5dc.7 (8)
|
||||
0x5d0| 00 00 00| ...| [64]: "1997-10-26T11:00:21Z" (877863621) transition_time 0x5dd-0x5e4.7 (8)
|
||||
0x5e0|00 34 53 22 c5 |.4S". |
|
||||
0x5e0| 00 00 00 00 35 27 72 55 | ....5'rU | [65]: "1998-04-05T12:00:21Z" (891777621) transition_time 0x5e5-0x5ec.7 (8)
|
||||
0x5e0| 00 00 00| ...| [66]: "1998-10-25T11:00:21Z" (909313221) transition_time 0x5ed-0x5f4.7 (8)
|
||||
0x5f0|00 36 33 04 c5 |.63.. |
|
||||
0x5f0| 00 00 00 00 37 07 54 56 | ....7.TV | [67]: "1999-04-04T12:00:22Z" (923227222) transition_time 0x5f5-0x5fc.7 (8)
|
||||
0x5f0| 00 00 00| ...| [68]: "1999-10-31T11:00:22Z" (941367622) transition_time 0x5fd-0x604.7 (8)
|
||||
0x600|00 38 1c 21 46 |.8.!F |
|
||||
0x600| 00 00 00 00 38 e7 36 56 | ....8.6V | [69]: "2000-04-02T12:00:22Z" (954676822) transition_time 0x605-0x60c.7 (8)
|
||||
0x600| 00 00 00| ...| [70]: "2000-10-29T11:00:22Z" (972817222) transition_time 0x60d-0x614.7 (8)
|
||||
0x610|00 39 fc 03 46 |.9..F |
|
||||
0x610| 00 00 00 00 3a c7 18 56 | ....:..V | [71]: "2001-04-01T12:00:22Z" (986126422) transition_time 0x615-0x61c.7 (8)
|
||||
0x610| 00 00 00| ...| [72]: "2001-10-28T11:00:22Z" (1004266822) transition_time 0x61d-0x624.7 (8)
|
||||
0x620|00 3b db e5 46 |.;..F |
|
||||
0x620| 00 00 00 00 3c b0 34 d6 | ....<.4. | [73]: "2002-04-07T12:00:22Z" (1018180822) transition_time 0x625-0x62c.7 (8)
|
||||
0x620| 00 00 00| ...| [74]: "2002-10-27T11:00:22Z" (1035716422) transition_time 0x62d-0x634.7 (8)
|
||||
0x630|00 3d bb c7 46 |.=..F |
|
||||
0x630| 00 00 00 00 3e 90 16 d6 | ....>... | [75]: "2003-04-06T12:00:22Z" (1049630422) transition_time 0x635-0x63c.7 (8)
|
||||
0x630| 00 00 00| ...| [76]: "2003-10-26T11:00:22Z" (1067166022) transition_time 0x63d-0x644.7 (8)
|
||||
0x640|00 3f 9b a9 46 |.?..F |
|
||||
0x640| 00 00 00 00 40 6f f8 d6 | ....@o.. | [77]: "2004-04-04T12:00:22Z" (1081080022) transition_time 0x645-0x64c.7 (8)
|
||||
0x640| 00 00 00| ...| [78]: "2004-10-31T11:00:22Z" (1099220422) transition_time 0x64d-0x654.7 (8)
|
||||
0x650|00 41 84 c5 c6 |.A... |
|
||||
0x650| 00 00 00 00 42 4f da d6 | ....BO.. | [79]: "2005-04-03T12:00:22Z" (1112529622) transition_time 0x655-0x65c.7 (8)
|
||||
0x650| 00 00 00| ...| [80]: "2005-10-30T11:00:22Z" (1130670022) transition_time 0x65d-0x664.7 (8)
|
||||
0x660|00 43 64 a7 c6 |.Cd.. |
|
||||
0x660| 00 00 00 00 44 2f bc d7 | ....D/.. | [81]: "2006-04-02T12:00:23Z" (1143979223) transition_time 0x665-0x66c.7 (8)
|
||||
0x660| 00 00 00| ...| [82]: "2006-10-29T11:00:23Z" (1162119623) transition_time 0x66d-0x674.7 (8)
|
||||
0x670|00 45 44 89 c7 |.ED.. |
|
||||
0x670| 00 00 00 00 45 f3 ef 57 | ....E..W | [83]: "2007-03-11T12:00:23Z" (1173614423) transition_time 0x675-0x67c.7 (8)
|
||||
0x670| 00 00 00| ...| [84]: "2007-11-04T11:00:23Z" (1194174023) transition_time 0x67d-0x684.7 (8)
|
||||
0x680|00 47 2d a6 47 |.G-.G |
|
||||
0x680| 00 00 00 00 47 d3 d1 57 | ....G..W | [85]: "2008-03-09T12:00:23Z" (1205064023) transition_time 0x685-0x68c.7 (8)
|
||||
0x680| 00 00 00| ...| [86]: "2008-11-02T11:00:23Z" (1225623623) transition_time 0x68d-0x694.7 (8)
|
||||
0x690|00 49 0d 88 47 |.I..G |
|
||||
0x690| 00 00 00 00 49 b3 b3 58 | ....I..X | [87]: "2009-03-08T12:00:24Z" (1236513624) transition_time 0x695-0x69c.7 (8)
|
||||
0x690| 00 00 00| ...| [88]: "2009-11-01T11:00:24Z" (1257073224) transition_time 0x69d-0x6a4.7 (8)
|
||||
0x6a0|00 4a ed 6a 48 |.J.jH |
|
||||
0x6a0| 00 00 00 00 4b 9c cf d8 | ....K... | [89]: "2010-03-14T12:00:24Z" (1268568024) transition_time 0x6a5-0x6ac.7 (8)
|
||||
0x6a0| 00 00 00| ...| [90]: "2010-11-07T11:00:24Z" (1289127624) transition_time 0x6ad-0x6b4.7 (8)
|
||||
0x6b0|00 4c d6 86 c8 |.L... |
|
||||
0x6b0| 00 00 00 00 4d 7c b1 d8 | ....M|.. | [91]: "2011-03-13T12:00:24Z" (1300017624) transition_time 0x6b5-0x6bc.7 (8)
|
||||
0x6b0| 00 00 00| ...| [92]: "2011-11-06T11:00:24Z" (1320577224) transition_time 0x6bd-0x6c4.7 (8)
|
||||
0x6c0|00 4e b6 68 c8 |.N.h. |
|
||||
0x6c0| 00 00 00 00 4f 5c 93 d8 | ....O\.. | [93]: "2012-03-11T12:00:24Z" (1331467224) transition_time 0x6c5-0x6cc.7 (8)
|
||||
0x6c0| 00 00 00| ...| [94]: "2012-11-04T11:00:25Z" (1352026825) transition_time 0x6cd-0x6d4.7 (8)
|
||||
0x6d0|00 50 96 4a c9 |.P.J. |
|
||||
0x6d0| 00 00 00 00 51 3c 75 d9 | ....Q<u. | [95]: "2013-03-10T12:00:25Z" (1362916825) transition_time 0x6d5-0x6dc.7 (8)
|
||||
0x6d0| 00 00 00| ...| [96]: "2013-11-03T11:00:25Z" (1383476425) transition_time 0x6dd-0x6e4.7 (8)
|
||||
0x6e0|00 52 76 2c c9 |.Rv,. |
|
||||
0x6e0| 00 00 00 00 53 1c 57 d9 | ....S.W. | [97]: "2014-03-09T12:00:25Z" (1394366425) transition_time 0x6e5-0x6ec.7 (8)
|
||||
0x6e0| 00 00 00| ...| [98]: "2014-11-02T11:00:25Z" (1414926025) transition_time 0x6ed-0x6f4.7 (8)
|
||||
0x6f0|00 54 56 0e c9 |.TV.. |
|
||||
0x6f0| 00 00 00 00 54 fc 39 d9 | ....T.9. | [99]: "2015-03-08T12:00:25Z" (1425816025) transition_time 0x6f5-0x6fc.7 (8)
|
||||
0x6f0| 00 00 00| ...| [100]: "2015-11-01T11:00:26Z" (1446375626) transition_time 0x6fd-0x704.7 (8)
|
||||
0x700|00 56 35 f0 ca |.V5.. |
|
||||
0x700| 00 00 00 00 56 e5 56 5a | ....V.VZ | [101]: "2016-03-13T12:00:26Z" (1457870426) transition_time 0x705-0x70c.7 (8)
|
||||
0x700| 00 00 00| ...| [102]: "2016-11-06T11:00:26Z" (1478430026) transition_time 0x70d-0x714.7 (8)
|
||||
0x710|00 58 1f 0d 4a |.X..J |
|
||||
0x710| 00 00 00 00 58 c5 38 5b | ....X.8[ | [103]: "2017-03-12T12:00:27Z" (1489320027) transition_time 0x715-0x71c.7 (8)
|
||||
0x710| 00 00 00| ...| [104]: "2017-11-05T11:00:27Z" (1509879627) transition_time 0x71d-0x724.7 (8)
|
||||
0x720|00 59 fe ef 4b |.Y..K |
|
||||
0x720| 00 00 00 00 5a a5 1a 5b | ....Z..[ | [105]: "2018-03-11T12:00:27Z" (1520769627) transition_time 0x725-0x72c.7 (8)
|
||||
0x720| 00 00 00| ...| [106]: "2018-11-04T11:00:27Z" (1541329227) transition_time 0x72d-0x734.7 (8)
|
||||
0x730|00 5b de d1 4b |.[..K |
|
||||
0x730| 00 00 00 00 5c 84 fc 5b | ....\..[ | [107]: "2019-03-10T12:00:27Z" (1552219227) transition_time 0x735-0x73c.7 (8)
|
||||
0x730| 00 00 00| ...| [108]: "2019-11-03T11:00:27Z" (1572778827) transition_time 0x73d-0x744.7 (8)
|
||||
0x740|00 5d be b3 4b |.]..K |
|
||||
0x740| 00 00 00 00 5e 64 de 5b | ....^d.[ | [109]: "2020-03-08T12:00:27Z" (1583668827) transition_time 0x745-0x74c.7 (8)
|
||||
0x740| 00 00 00| ...| [110]: "2020-11-01T11:00:27Z" (1604228427) transition_time 0x74d-0x754.7 (8)
|
||||
0x750|00 5f 9e 95 4b |._..K |
|
||||
0x750| 00 00 00 00 60 4d fa db | ....`M.. | [111]: "2021-03-14T12:00:27Z" (1615723227) transition_time 0x755-0x75c.7 (8)
|
||||
0x750| 00 00 00| ...| [112]: "2021-11-07T11:00:27Z" (1636282827) transition_time 0x75d-0x764.7 (8)
|
||||
0x760|00 61 87 b1 cb |.a... |
|
||||
0x760| 00 00 00 00 62 2d dc db | ....b-.. | [113]: "2022-03-13T12:00:27Z" (1647172827) transition_time 0x765-0x76c.7 (8)
|
||||
0x760| 00 00 00| ...| [114]: "2022-11-06T11:00:27Z" (1667732427) transition_time 0x76d-0x774.7 (8)
|
||||
0x770|00 63 67 93 cb |.cg.. |
|
||||
0x770| 00 00 00 00 64 0d be db | ....d... | [115]: "2023-03-12T12:00:27Z" (1678622427) transition_time 0x775-0x77c.7 (8)
|
||||
0x770| 00 00 00| ...| [116]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x77d-0x784.7 (8)
|
||||
0x780|00 64 9b 78 1b |.d.x. |
|
||||
| | | transition_types[0:117]: 0x785-0x7f9.7 (117)
|
||||
0x780| 01 | . | [0]: 1 transition_type 0x785-0x785.7 (1)
|
||||
0x780| 02 | . | [1]: 2 transition_type 0x786-0x786.7 (1)
|
||||
0x780| 03 | . | [2]: 3 transition_type 0x787-0x787.7 (1)
|
||||
0x780| 04 | . | [3]: 4 transition_type 0x788-0x788.7 (1)
|
||||
0x780| 02 | . | [4]: 2 transition_type 0x789-0x789.7 (1)
|
||||
0x780| 05 | . | [5]: 5 transition_type 0x78a-0x78a.7 (1)
|
||||
0x780| 06 | . | [6]: 6 transition_type 0x78b-0x78b.7 (1)
|
||||
0x780| 05 | . | [7]: 5 transition_type 0x78c-0x78c.7 (1)
|
||||
0x780| 06 | . | [8]: 6 transition_type 0x78d-0x78d.7 (1)
|
||||
0x780| 05 | . | [9]: 5 transition_type 0x78e-0x78e.7 (1)
|
||||
0x780| 06| .| [10]: 6 transition_type 0x78f-0x78f.7 (1)
|
||||
0x790|05 |. | [11]: 5 transition_type 0x790-0x790.7 (1)
|
||||
0x790| 06 | . | [12]: 6 transition_type 0x791-0x791.7 (1)
|
||||
0x790| 05 | . | [13]: 5 transition_type 0x792-0x792.7 (1)
|
||||
0x790| 06 | . | [14]: 6 transition_type 0x793-0x793.7 (1)
|
||||
0x790| 05 | . | [15]: 5 transition_type 0x794-0x794.7 (1)
|
||||
0x790| 06 | . | [16]: 6 transition_type 0x795-0x795.7 (1)
|
||||
0x790| 05 | . | [17]: 5 transition_type 0x796-0x796.7 (1)
|
||||
0x790| 06 | . | [18]: 6 transition_type 0x797-0x797.7 (1)
|
||||
0x790| 05 | . | [19]: 5 transition_type 0x798-0x798.7 (1)
|
||||
0x790| 06 | . | [20]: 6 transition_type 0x799-0x799.7 (1)
|
||||
0x790| 05 | . | [21]: 5 transition_type 0x79a-0x79a.7 (1)
|
||||
0x790| 06 | . | [22]: 6 transition_type 0x79b-0x79b.7 (1)
|
||||
0x790| 05 | . | [23]: 5 transition_type 0x79c-0x79c.7 (1)
|
||||
0x790| 06 | . | [24]: 6 transition_type 0x79d-0x79d.7 (1)
|
||||
0x790| 05 | . | [25]: 5 transition_type 0x79e-0x79e.7 (1)
|
||||
0x790| 06| .| [26]: 6 transition_type 0x79f-0x79f.7 (1)
|
||||
0x7a0|05 |. | [27]: 5 transition_type 0x7a0-0x7a0.7 (1)
|
||||
0x7a0| 06 | . | [28]: 6 transition_type 0x7a1-0x7a1.7 (1)
|
||||
0x7a0| 05 | . | [29]: 5 transition_type 0x7a2-0x7a2.7 (1)
|
||||
0x7a0| 06 | . | [30]: 6 transition_type 0x7a3-0x7a3.7 (1)
|
||||
0x7a0| 05 | . | [31]: 5 transition_type 0x7a4-0x7a4.7 (1)
|
||||
0x7a0| 06 | . | [32]: 6 transition_type 0x7a5-0x7a5.7 (1)
|
||||
0x7a0| 05 | . | [33]: 5 transition_type 0x7a6-0x7a6.7 (1)
|
||||
0x7a0| 06 | . | [34]: 6 transition_type 0x7a7-0x7a7.7 (1)
|
||||
0x7a0| 07 | . | [35]: 7 transition_type 0x7a8-0x7a8.7 (1)
|
||||
0x7a0| 09 | . | [36]: 9 transition_type 0x7a9-0x7a9.7 (1)
|
||||
0x7a0| 08 | . | [37]: 8 transition_type 0x7aa-0x7aa.7 (1)
|
||||
0x7a0| 09 | . | [38]: 9 transition_type 0x7ab-0x7ab.7 (1)
|
||||
0x7a0| 08 | . | [39]: 8 transition_type 0x7ac-0x7ac.7 (1)
|
||||
0x7a0| 09 | . | [40]: 9 transition_type 0x7ad-0x7ad.7 (1)
|
||||
0x7a0| 08 | . | [41]: 8 transition_type 0x7ae-0x7ae.7 (1)
|
||||
0x7a0| 09| .| [42]: 9 transition_type 0x7af-0x7af.7 (1)
|
||||
0x7b0|08 |. | [43]: 8 transition_type 0x7b0-0x7b0.7 (1)
|
||||
0x7b0| 09 | . | [44]: 9 transition_type 0x7b1-0x7b1.7 (1)
|
||||
0x7b0| 08 | . | [45]: 8 transition_type 0x7b2-0x7b2.7 (1)
|
||||
0x7b0| 09 | . | [46]: 9 transition_type 0x7b3-0x7b3.7 (1)
|
||||
0x7b0| 08 | . | [47]: 8 transition_type 0x7b4-0x7b4.7 (1)
|
||||
0x7b0| 09 | . | [48]: 9 transition_type 0x7b5-0x7b5.7 (1)
|
||||
0x7b0| 08 | . | [49]: 8 transition_type 0x7b6-0x7b6.7 (1)
|
||||
0x7b0| 09 | . | [50]: 9 transition_type 0x7b7-0x7b7.7 (1)
|
||||
0x7b0| 08 | . | [51]: 8 transition_type 0x7b8-0x7b8.7 (1)
|
||||
0x7b0| 09 | . | [52]: 9 transition_type 0x7b9-0x7b9.7 (1)
|
||||
0x7b0| 08 | . | [53]: 8 transition_type 0x7ba-0x7ba.7 (1)
|
||||
0x7b0| 09 | . | [54]: 9 transition_type 0x7bb-0x7bb.7 (1)
|
||||
0x7b0| 08 | . | [55]: 8 transition_type 0x7bc-0x7bc.7 (1)
|
||||
0x7b0| 09 | . | [56]: 9 transition_type 0x7bd-0x7bd.7 (1)
|
||||
0x7b0| 08 | . | [57]: 8 transition_type 0x7be-0x7be.7 (1)
|
||||
0x7b0| 09| .| [58]: 9 transition_type 0x7bf-0x7bf.7 (1)
|
||||
0x7c0|08 |. | [59]: 8 transition_type 0x7c0-0x7c0.7 (1)
|
||||
0x7c0| 09 | . | [60]: 9 transition_type 0x7c1-0x7c1.7 (1)
|
||||
0x7c0| 08 | . | [61]: 8 transition_type 0x7c2-0x7c2.7 (1)
|
||||
0x7c0| 09 | . | [62]: 9 transition_type 0x7c3-0x7c3.7 (1)
|
||||
0x7c0| 08 | . | [63]: 8 transition_type 0x7c4-0x7c4.7 (1)
|
||||
0x7c0| 09 | . | [64]: 9 transition_type 0x7c5-0x7c5.7 (1)
|
||||
0x7c0| 08 | . | [65]: 8 transition_type 0x7c6-0x7c6.7 (1)
|
||||
0x7c0| 09 | . | [66]: 9 transition_type 0x7c7-0x7c7.7 (1)
|
||||
0x7c0| 08 | . | [67]: 8 transition_type 0x7c8-0x7c8.7 (1)
|
||||
0x7c0| 09 | . | [68]: 9 transition_type 0x7c9-0x7c9.7 (1)
|
||||
0x7c0| 08 | . | [69]: 8 transition_type 0x7ca-0x7ca.7 (1)
|
||||
0x7c0| 09 | . | [70]: 9 transition_type 0x7cb-0x7cb.7 (1)
|
||||
0x7c0| 08 | . | [71]: 8 transition_type 0x7cc-0x7cc.7 (1)
|
||||
0x7c0| 09 | . | [72]: 9 transition_type 0x7cd-0x7cd.7 (1)
|
||||
0x7c0| 08 | . | [73]: 8 transition_type 0x7ce-0x7ce.7 (1)
|
||||
0x7c0| 09| .| [74]: 9 transition_type 0x7cf-0x7cf.7 (1)
|
||||
0x7d0|08 |. | [75]: 8 transition_type 0x7d0-0x7d0.7 (1)
|
||||
0x7d0| 09 | . | [76]: 9 transition_type 0x7d1-0x7d1.7 (1)
|
||||
0x7d0| 08 | . | [77]: 8 transition_type 0x7d2-0x7d2.7 (1)
|
||||
0x7d0| 09 | . | [78]: 9 transition_type 0x7d3-0x7d3.7 (1)
|
||||
0x7d0| 08 | . | [79]: 8 transition_type 0x7d4-0x7d4.7 (1)
|
||||
0x7d0| 09 | . | [80]: 9 transition_type 0x7d5-0x7d5.7 (1)
|
||||
0x7d0| 08 | . | [81]: 8 transition_type 0x7d6-0x7d6.7 (1)
|
||||
0x7d0| 09 | . | [82]: 9 transition_type 0x7d7-0x7d7.7 (1)
|
||||
0x7d0| 08 | . | [83]: 8 transition_type 0x7d8-0x7d8.7 (1)
|
||||
0x7d0| 09 | . | [84]: 9 transition_type 0x7d9-0x7d9.7 (1)
|
||||
0x7d0| 08 | . | [85]: 8 transition_type 0x7da-0x7da.7 (1)
|
||||
0x7d0| 09 | . | [86]: 9 transition_type 0x7db-0x7db.7 (1)
|
||||
0x7d0| 08 | . | [87]: 8 transition_type 0x7dc-0x7dc.7 (1)
|
||||
0x7d0| 09 | . | [88]: 9 transition_type 0x7dd-0x7dd.7 (1)
|
||||
0x7d0| 08 | . | [89]: 8 transition_type 0x7de-0x7de.7 (1)
|
||||
0x7d0| 09| .| [90]: 9 transition_type 0x7df-0x7df.7 (1)
|
||||
0x7e0|08 |. | [91]: 8 transition_type 0x7e0-0x7e0.7 (1)
|
||||
0x7e0| 09 | . | [92]: 9 transition_type 0x7e1-0x7e1.7 (1)
|
||||
0x7e0| 08 | . | [93]: 8 transition_type 0x7e2-0x7e2.7 (1)
|
||||
0x7e0| 09 | . | [94]: 9 transition_type 0x7e3-0x7e3.7 (1)
|
||||
0x7e0| 08 | . | [95]: 8 transition_type 0x7e4-0x7e4.7 (1)
|
||||
0x7e0| 09 | . | [96]: 9 transition_type 0x7e5-0x7e5.7 (1)
|
||||
0x7e0| 08 | . | [97]: 8 transition_type 0x7e6-0x7e6.7 (1)
|
||||
0x7e0| 09 | . | [98]: 9 transition_type 0x7e7-0x7e7.7 (1)
|
||||
0x7e0| 08 | . | [99]: 8 transition_type 0x7e8-0x7e8.7 (1)
|
||||
0x7e0| 09 | . | [100]: 9 transition_type 0x7e9-0x7e9.7 (1)
|
||||
0x7e0| 08 | . | [101]: 8 transition_type 0x7ea-0x7ea.7 (1)
|
||||
0x7e0| 09 | . | [102]: 9 transition_type 0x7eb-0x7eb.7 (1)
|
||||
0x7e0| 08 | . | [103]: 8 transition_type 0x7ec-0x7ec.7 (1)
|
||||
0x7e0| 09 | . | [104]: 9 transition_type 0x7ed-0x7ed.7 (1)
|
||||
0x7e0| 08 | . | [105]: 8 transition_type 0x7ee-0x7ee.7 (1)
|
||||
0x7e0| 09| .| [106]: 9 transition_type 0x7ef-0x7ef.7 (1)
|
||||
0x7f0|08 |. | [107]: 8 transition_type 0x7f0-0x7f0.7 (1)
|
||||
0x7f0| 09 | . | [108]: 9 transition_type 0x7f1-0x7f1.7 (1)
|
||||
0x7f0| 08 | . | [109]: 8 transition_type 0x7f2-0x7f2.7 (1)
|
||||
0x7f0| 09 | . | [110]: 9 transition_type 0x7f3-0x7f3.7 (1)
|
||||
0x7f0| 08 | . | [111]: 8 transition_type 0x7f4-0x7f4.7 (1)
|
||||
0x7f0| 09 | . | [112]: 9 transition_type 0x7f5-0x7f5.7 (1)
|
||||
0x7f0| 08 | . | [113]: 8 transition_type 0x7f6-0x7f6.7 (1)
|
||||
0x7f0| 09 | . | [114]: 9 transition_type 0x7f7-0x7f7.7 (1)
|
||||
0x7f0| 08 | . | [115]: 8 transition_type 0x7f8-0x7f8.7 (1)
|
||||
0x7f0| 08 | . | [116]: 8 transition_type 0x7f9-0x7f9.7 (1)
|
||||
| | | local_time_type_records[0:10]: 0x7fa-0x835.7 (60)
|
||||
| | | [0]{}: local_time_type 0x7fa-0x7ff.7 (6)
|
||||
0x7f0| 00 00 ab e2 | .... | utoff: 44002 (valid) 0x7fa-0x7fd.7 (4)
|
||||
0x7f0| 00 | . | dst: 0 (valid) 0x7fe-0x7fe.7 (1)
|
||||
0x7f0| 00| .| idx: 0 (valid) 0x7ff-0x7ff.7 (1)
|
||||
| | | [1]{}: local_time_type 0x800-0x805.7 (6)
|
||||
0x800|ff ff 5a 62 |..Zb | utoff: -42398 (valid) 0x800-0x803.7 (4)
|
||||
0x800| 00 | . | dst: 0 (valid) 0x804-0x804.7 (1)
|
||||
0x800| 00 | . | idx: 0 (valid) 0x805-0x805.7 (1)
|
||||
| | | [2]{}: local_time_type 0x806-0x80b.7 (6)
|
||||
0x800| ff ff 65 50 | ..eP | utoff: -39600 (valid) 0x806-0x809.7 (4)
|
||||
0x800| 00 | . | dst: 0 (valid) 0x80a-0x80a.7 (1)
|
||||
0x800| 04 | . | idx: 4 (valid) 0x80b-0x80b.7 (1)
|
||||
| | | [3]{}: local_time_type 0x80c-0x811.7 (6)
|
||||
0x800| ff ff 73 60| ..s`| utoff: -36000 (valid) 0x80c-0x80f.7 (4)
|
||||
0x810|01 |. | dst: 1 (valid) 0x810-0x810.7 (1)
|
||||
0x810| 08 | . | idx: 8 (valid) 0x811-0x811.7 (1)
|
||||
| | | [4]{}: local_time_type 0x812-0x817.7 (6)
|
||||
0x810| ff ff 73 60 | ..s` | utoff: -36000 (valid) 0x812-0x815.7 (4)
|
||||
0x810| 01 | . | dst: 1 (valid) 0x816-0x816.7 (1)
|
||||
0x810| 0c | . | idx: 12 (valid) 0x817-0x817.7 (1)
|
||||
| | | [5]{}: local_time_type 0x818-0x81d.7 (6)
|
||||
0x810| ff ff 65 50 | ..eP | utoff: -39600 (valid) 0x818-0x81b.7 (4)
|
||||
0x810| 00 | . | dst: 0 (valid) 0x81c-0x81c.7 (1)
|
||||
0x810| 10 | . | idx: 16 (valid) 0x81d-0x81d.7 (1)
|
||||
| | | [6]{}: local_time_type 0x81e-0x823.7 (6)
|
||||
0x810| ff ff| ..| utoff: -36000 (valid) 0x81e-0x821.7 (4)
|
||||
0x820|73 60 |s` |
|
||||
0x820| 01 | . | dst: 1 (valid) 0x822-0x822.7 (1)
|
||||
0x820| 14 | . | idx: 20 (valid) 0x823-0x823.7 (1)
|
||||
| | | [7]{}: local_time_type 0x824-0x829.7 (6)
|
||||
0x820| ff ff 73 60 | ..s` | utoff: -36000 (valid) 0x824-0x827.7 (4)
|
||||
0x820| 00 | . | dst: 0 (valid) 0x828-0x828.7 (1)
|
||||
0x820| 18 | . | idx: 24 (valid) 0x829-0x829.7 (1)
|
||||
| | | [8]{}: local_time_type 0x82a-0x82f.7 (6)
|
||||
0x820| ff ff 81 70 | ...p | utoff: -32400 (valid) 0x82a-0x82d.7 (4)
|
||||
0x820| 01 | . | dst: 1 (valid) 0x82e-0x82e.7 (1)
|
||||
0x820| 1d| .| idx: 29 (valid) 0x82f-0x82f.7 (1)
|
||||
| | | [9]{}: local_time_type 0x830-0x835.7 (6)
|
||||
0x830|ff ff 73 60 |..s` | utoff: -36000 (valid) 0x830-0x833.7 (4)
|
||||
0x830| 00 | . | dst: 0 (valid) 0x834-0x834.7 (1)
|
||||
0x830| 19 | . | idx: 25 (valid) 0x835-0x835.7 (1)
|
||||
| | | time_zone_designations[0:8]: 0x836-0x856.7 (33)
|
||||
0x830| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x836-0x839.7 (4)
|
||||
0x830| 4e 53 54 00 | NST. | [1]: "NST" time_zone_designation 0x83a-0x83d.7 (4)
|
||||
0x830| 4e 57| NW| [2]: "NWT" time_zone_designation 0x83e-0x841.7 (4)
|
||||
0x840|54 00 |T. |
|
||||
0x840| 4e 50 54 00 | NPT. | [3]: "NPT" time_zone_designation 0x842-0x845.7 (4)
|
||||
0x840| 42 53 54 00 | BST. | [4]: "BST" time_zone_designation 0x846-0x849.7 (4)
|
||||
0x840| 42 44 54 00 | BDT. | [5]: "BDT" time_zone_designation 0x84a-0x84d.7 (4)
|
||||
0x840| 41 48| AH| [6]: "AHST" time_zone_designation 0x84e-0x852.7 (5)
|
||||
0x850|53 54 00 |ST. |
|
||||
0x850| 48 44 54 00 | HDT. | [7]: "HDT" time_zone_designation 0x853-0x856.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x857-0x99a.7 (324)
|
||||
| | | [0]{}: leap_second_record 0x857-0x862.7 (12)
|
||||
0x850| 00 00 00 00 04 b2 58 00 | ......X. | occur: "1972-07-01T00:00:00Z" (78796800) 0x857-0x85e.7 (8)
|
||||
0x850| 00| .| corr: 1 0x85f-0x862.7 (4)
|
||||
0x860|00 00 01 |... |
|
||||
| | | [1]{}: leap_second_record 0x863-0x86e.7 (12)
|
||||
0x860| 00 00 00 00 05 a4 ec 01 | ........ | occur: "1973-01-01T00:00:01Z" (94694401) 0x863-0x86a.7 (8)
|
||||
0x860| 00 00 00 02 | .... | corr: 2 0x86b-0x86e.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x86f-0x87a.7 (12)
|
||||
0x860| 00| .| occur: "1974-01-01T00:00:02Z" (126230402) 0x86f-0x876.7 (8)
|
||||
0x870|00 00 00 07 86 1f 82 |....... |
|
||||
0x870| 00 00 00 03 | .... | corr: 3 0x877-0x87a.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x87b-0x886.7 (12)
|
||||
0x870| 00 00 00 00 09| .....| occur: "1975-01-01T00:00:03Z" (157766403) 0x87b-0x882.7 (8)
|
||||
0x880|67 53 03 |gS. |
|
||||
0x880| 00 00 00 04 | .... | corr: 4 0x883-0x886.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x887-0x892.7 (12)
|
||||
0x880| 00 00 00 00 0b 48 86 84 | .....H.. | occur: "1976-01-01T00:00:04Z" (189302404) 0x887-0x88e.7 (8)
|
||||
0x880| 00| .| corr: 5 0x88f-0x892.7 (4)
|
||||
0x890|00 00 05 |... |
|
||||
| | | [5]{}: leap_second_record 0x893-0x89e.7 (12)
|
||||
0x890| 00 00 00 00 0d 2b 0b 85 | .....+.. | occur: "1977-01-01T00:00:05Z" (220924805) 0x893-0x89a.7 (8)
|
||||
0x890| 00 00 00 06 | .... | corr: 6 0x89b-0x89e.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x89f-0x8aa.7 (12)
|
||||
0x890| 00| .| occur: "1978-01-01T00:00:06Z" (252460806) 0x89f-0x8a6.7 (8)
|
||||
0x8a0|00 00 00 0f 0c 3f 06 |.....?. |
|
||||
0x8a0| 00 00 00 07 | .... | corr: 7 0x8a7-0x8aa.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x8ab-0x8b6.7 (12)
|
||||
0x8a0| 00 00 00 00 10| .....| occur: "1979-01-01T00:00:07Z" (283996807) 0x8ab-0x8b2.7 (8)
|
||||
0x8b0|ed 72 87 |.r. |
|
||||
0x8b0| 00 00 00 08 | .... | corr: 8 0x8b3-0x8b6.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x8b7-0x8c2.7 (12)
|
||||
0x8b0| 00 00 00 00 12 ce a6 08 | ........ | occur: "1980-01-01T00:00:08Z" (315532808) 0x8b7-0x8be.7 (8)
|
||||
0x8b0| 00| .| corr: 9 0x8bf-0x8c2.7 (4)
|
||||
0x8c0|00 00 09 |... |
|
||||
| | | [9]{}: leap_second_record 0x8c3-0x8ce.7 (12)
|
||||
0x8c0| 00 00 00 00 15 9f ca 89 | ........ | occur: "1981-07-01T00:00:09Z" (362793609) 0x8c3-0x8ca.7 (8)
|
||||
0x8c0| 00 00 00 0a | .... | corr: 10 0x8cb-0x8ce.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x8cf-0x8da.7 (12)
|
||||
0x8c0| 00| .| occur: "1982-07-01T00:00:10Z" (394329610) 0x8cf-0x8d6.7 (8)
|
||||
0x8d0|00 00 00 17 80 fe 0a |....... |
|
||||
0x8d0| 00 00 00 0b | .... | corr: 11 0x8d7-0x8da.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x8db-0x8e6.7 (12)
|
||||
0x8d0| 00 00 00 00 19| .....| occur: "1983-07-01T00:00:11Z" (425865611) 0x8db-0x8e2.7 (8)
|
||||
0x8e0|62 31 8b |b1. |
|
||||
0x8e0| 00 00 00 0c | .... | corr: 12 0x8e3-0x8e6.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x8e7-0x8f2.7 (12)
|
||||
0x8e0| 00 00 00 00 1d 25 ea 0c | .....%.. | occur: "1985-07-01T00:00:12Z" (489024012) 0x8e7-0x8ee.7 (8)
|
||||
0x8e0| 00| .| corr: 13 0x8ef-0x8f2.7 (4)
|
||||
0x8f0|00 00 0d |... |
|
||||
| | | [13]{}: leap_second_record 0x8f3-0x8fe.7 (12)
|
||||
0x8f0| 00 00 00 00 21 da e5 0d | ....!... | occur: "1988-01-01T00:00:13Z" (567993613) 0x8f3-0x8fa.7 (8)
|
||||
0x8f0| 00 00 00 0e | .... | corr: 14 0x8fb-0x8fe.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x8ff-0x90a.7 (12)
|
||||
0x8f0| 00| .| occur: "1990-01-01T00:00:14Z" (631152014) 0x8ff-0x906.7 (8)
|
||||
0x900|00 00 00 25 9e 9d 8e |...%... |
|
||||
0x900| 00 00 00 0f | .... | corr: 15 0x907-0x90a.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x90b-0x916.7 (12)
|
||||
0x900| 00 00 00 00 27| ....'| occur: "1991-01-01T00:00:15Z" (662688015) 0x90b-0x912.7 (8)
|
||||
0x910|7f d1 0f |... |
|
||||
0x910| 00 00 00 10 | .... | corr: 16 0x913-0x916.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x917-0x922.7 (12)
|
||||
0x910| 00 00 00 00 2a 50 f5 90 | ....*P.. | occur: "1992-07-01T00:00:16Z" (709948816) 0x917-0x91e.7 (8)
|
||||
0x910| 00| .| corr: 17 0x91f-0x922.7 (4)
|
||||
0x920|00 00 11 |... |
|
||||
| | | [17]{}: leap_second_record 0x923-0x92e.7 (12)
|
||||
0x920| 00 00 00 00 2c 32 29 11 | ....,2). | occur: "1993-07-01T00:00:17Z" (741484817) 0x923-0x92a.7 (8)
|
||||
0x920| 00 00 00 12 | .... | corr: 18 0x92b-0x92e.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x92f-0x93a.7 (12)
|
||||
0x920| 00| .| occur: "1994-07-01T00:00:18Z" (773020818) 0x92f-0x936.7 (8)
|
||||
0x930|00 00 00 2e 13 5c 92 |.....\. |
|
||||
0x930| 00 00 00 13 | .... | corr: 19 0x937-0x93a.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x93b-0x946.7 (12)
|
||||
0x930| 00 00 00 00 30| ....0| occur: "1996-01-01T00:00:19Z" (820454419) 0x93b-0x942.7 (8)
|
||||
0x940|e7 24 13 |.$. |
|
||||
0x940| 00 00 00 14 | .... | corr: 20 0x943-0x946.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x947-0x952.7 (12)
|
||||
0x940| 00 00 00 00 33 b8 48 94 | ....3.H. | occur: "1997-07-01T00:00:20Z" (867715220) 0x947-0x94e.7 (8)
|
||||
0x940| 00| .| corr: 21 0x94f-0x952.7 (4)
|
||||
0x950|00 00 15 |... |
|
||||
| | | [21]{}: leap_second_record 0x953-0x95e.7 (12)
|
||||
0x950| 00 00 00 00 36 8c 10 15 | ....6... | occur: "1999-01-01T00:00:21Z" (915148821) 0x953-0x95a.7 (8)
|
||||
0x950| 00 00 00 16 | .... | corr: 22 0x95b-0x95e.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x95f-0x96a.7 (12)
|
||||
0x950| 00| .| occur: "2006-01-01T00:00:22Z" (1136073622) 0x95f-0x966.7 (8)
|
||||
0x960|00 00 00 43 b7 1b 96 |...C... |
|
||||
0x960| 00 00 00 17 | .... | corr: 23 0x967-0x96a.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x96b-0x976.7 (12)
|
||||
0x960| 00 00 00 00 49| ....I| occur: "2009-01-01T00:00:23Z" (1230768023) 0x96b-0x972.7 (8)
|
||||
0x970|5c 07 97 |\.. |
|
||||
0x970| 00 00 00 18 | .... | corr: 24 0x973-0x976.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x977-0x982.7 (12)
|
||||
0x970| 00 00 00 00 4f ef 93 18 | ....O... | occur: "2012-07-01T00:00:24Z" (1341100824) 0x977-0x97e.7 (8)
|
||||
0x970| 00| .| corr: 25 0x97f-0x982.7 (4)
|
||||
0x980|00 00 19 |... |
|
||||
| | | [25]{}: leap_second_record 0x983-0x98e.7 (12)
|
||||
0x980| 00 00 00 00 55 93 2d 99 | ....U.-. | occur: "2015-07-01T00:00:25Z" (1435708825) 0x983-0x98a.7 (8)
|
||||
0x980| 00 00 00 1a | .... | corr: 26 0x98b-0x98e.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x98f-0x99a.7 (12)
|
||||
0x980| 00| .| occur: "2017-01-01T00:00:26Z" (1483228826) 0x98f-0x996.7 (8)
|
||||
0x990|00 00 00 58 68 46 9a |...XhF. |
|
||||
0x990| 00 00 00 1b | .... | corr: 27 0x997-0x99a.7 (4)
|
||||
| | | standard_wall_indicators[0:10]: 0x99b-0x9a4.7 (10)
|
||||
0x990| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x99b-0x99b.7 (1)
|
||||
0x990| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x99c-0x99c.7 (1)
|
||||
0x990| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x99d-0x99d.7 (1)
|
||||
0x990| 00 | . | [3]: 0 standard_wall_indicator (valid) 0x99e-0x99e.7 (1)
|
||||
0x990| 01| .| [4]: 1 standard_wall_indicator (valid) 0x99f-0x99f.7 (1)
|
||||
0x9a0|00 |. | [5]: 0 standard_wall_indicator (valid) 0x9a0-0x9a0.7 (1)
|
||||
0x9a0| 00 | . | [6]: 0 standard_wall_indicator (valid) 0x9a1-0x9a1.7 (1)
|
||||
0x9a0| 00 | . | [7]: 0 standard_wall_indicator (valid) 0x9a2-0x9a2.7 (1)
|
||||
0x9a0| 00 | . | [8]: 0 standard_wall_indicator (valid) 0x9a3-0x9a3.7 (1)
|
||||
0x9a0| 00 | . | [9]: 0 standard_wall_indicator (valid) 0x9a4-0x9a4.7 (1)
|
||||
| | | ut_local_indicators[0:10]: 0x9a5-0x9ae.7 (10)
|
||||
0x9a0| 00 | . | [0]: 0 ut_local_indicator (valid) 0x9a5-0x9a5.7 (1)
|
||||
0x9a0| 00 | . | [1]: 0 ut_local_indicator (valid) 0x9a6-0x9a6.7 (1)
|
||||
0x9a0| 00 | . | [2]: 0 ut_local_indicator (valid) 0x9a7-0x9a7.7 (1)
|
||||
0x9a0| 00 | . | [3]: 0 ut_local_indicator (valid) 0x9a8-0x9a8.7 (1)
|
||||
0x9a0| 01 | . | [4]: 1 ut_local_indicator (valid) 0x9a9-0x9a9.7 (1)
|
||||
0x9a0| 00 | . | [5]: 0 ut_local_indicator (valid) 0x9aa-0x9aa.7 (1)
|
||||
0x9a0| 00 | . | [6]: 0 ut_local_indicator (valid) 0x9ab-0x9ab.7 (1)
|
||||
0x9a0| 00 | . | [7]: 0 ut_local_indicator (valid) 0x9ac-0x9ac.7 (1)
|
||||
0x9a0| 00 | . | [8]: 0 ut_local_indicator (valid) 0x9ad-0x9ad.7 (1)
|
||||
0x9a0| 00 | . | [9]: 0 ut_local_indicator (valid) 0x9ae-0x9ae.7 (1)
|
||||
| | | footer{}: 0x9af-0x9b0.7 (2)
|
||||
0x9a0| 0a| .| nl1: 10 (valid) 0x9af-0x9af.7 (1)
|
||||
| | | tz_string: "" 0x9b0-NA (0)
|
||||
0x9b0|0a| |.| | nl2: 10 (valid) 0x9b0-0x9b0.7 (1)
|
BIN
format/tzif/testdata/Adelaide
vendored
Normal file
BIN
format/tzif/testdata/Adelaide
vendored
Normal file
Binary file not shown.
669
format/tzif/testdata/Adelaide.fqtest
vendored
Normal file
669
format/tzif/testdata/Adelaide.fqtest
vendored
Normal file
@ -0,0 +1,669 @@
|
||||
$ fq -d tzif dv Adelaide
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: Adelaide (tzif) 0x0-0x89f.7 (2208)
|
||||
| | | v1header{}: 0x0-0x2b.7 (44)
|
||||
0x000|54 5a 69 66 |TZif | magic: 0x545a6966 (valid) 0x0-0x3.7 (4)
|
||||
0x000| 32 | 2 | ver: "2" (0x32) (valid) 0x4-0x4.7 (1)
|
||||
0x000| 00 00 00 00 00 00 00 00 00 00 00| ...........| reserved: raw bits 0x5-0x13.7 (15)
|
||||
0x010|00 00 00 00 |.... |
|
||||
0x010| 00 00 00 00 | .... | isutcnt: 0 0x14-0x17.7 (4)
|
||||
0x010| 00 00 00 04 | .... | isstdcnt: 4 0x18-0x1b.7 (4)
|
||||
0x010| 00 00 00 00| ....| leapcnt: 0 0x1c-0x1f.7 (4)
|
||||
0x020|00 00 00 8e |.... | timecnt: 142 0x20-0x23.7 (4)
|
||||
0x020| 00 00 00 04 | .... | typecnt: 4 0x24-0x27.7 (4)
|
||||
0x020| 00 00 00 0e | .... | charcnt: 14 0x28-0x2b.7 (4)
|
||||
| | | v1datablock{}: 0x2c-0x31b.7 (752)
|
||||
| | | transition_times[0:142]: 0x2c-0x263.7 (568)
|
||||
0x020| 80 00 00 00| ....| [0]: "1901-12-13T20:45:52Z" (-2147483648) transition_time 0x2c-0x2f.7 (4)
|
||||
0x030|9c 4e c9 88 |.N.. | [1]: "1916-12-31T16:30:00Z" (-1672558200) transition_time 0x30-0x33.7 (4)
|
||||
0x030| 9c bc 36 08 | ..6. | [2]: "1917-03-24T16:30:00Z" (-1665387000) transition_time 0x34-0x37.7 (4)
|
||||
0x030| cb 54 ba 08 | .T.. | [3]: "1941-12-31T16:30:00Z" (-883639800) transition_time 0x38-0x3b.7 (4)
|
||||
0x030| cb c7 6c 88| ..l.| [4]: "1942-03-28T16:30:00Z" (-876123000) transition_time 0x3c-0x3f.7 (4)
|
||||
0x040|cc b7 5d 88 |..]. | [5]: "1942-09-26T16:30:00Z" (-860398200) transition_time 0x40-0x43.7 (4)
|
||||
0x040| cd a7 4e 88 | ..N. | [6]: "1943-03-27T16:30:00Z" (-844673400) transition_time 0x44-0x47.7 (4)
|
||||
0x040| ce a0 7a 08 | ..z. | [7]: "1943-10-02T16:30:00Z" (-828343800) transition_time 0x48-0x4b.7 (4)
|
||||
0x040| cf 87 30 88| ..0.| [8]: "1944-03-25T16:30:00Z" (-813223800) transition_time 0x4c-0x4f.7 (4)
|
||||
0x050|03 70 40 88 |.p@. | [9]: "1971-10-30T16:30:00Z" (57688200) transition_time 0x50-0x53.7 (4)
|
||||
0x050| 04 0d 23 08 | ..#. | [10]: "1972-02-26T16:30:00Z" (67969800) transition_time 0x54-0x57.7 (4)
|
||||
0x050| 05 50 22 88 | .P". | [11]: "1972-10-28T16:30:00Z" (89137800) transition_time 0x58-0x5b.7 (4)
|
||||
0x050| 05 f6 3f 88| ..?.| [12]: "1973-03-03T16:30:00Z" (100024200) transition_time 0x5c-0x5f.7 (4)
|
||||
0x060|07 30 04 88 |.0.. | [13]: "1973-10-27T16:30:00Z" (120587400) transition_time 0x60-0x63.7 (4)
|
||||
0x060| 07 d6 21 88 | ..!. | [14]: "1974-03-02T16:30:00Z" (131473800) transition_time 0x64-0x67.7 (4)
|
||||
0x060| 09 0f e6 88 | .... | [15]: "1974-10-26T16:30:00Z" (152037000) transition_time 0x68-0x6b.7 (4)
|
||||
0x060| 09 b6 03 88| ....| [16]: "1975-03-01T16:30:00Z" (162923400) transition_time 0x6c-0x6f.7 (4)
|
||||
0x070|0a ef c8 88 |.... | [17]: "1975-10-25T16:30:00Z" (183486600) transition_time 0x70-0x73.7 (4)
|
||||
0x070| 0b 9f 20 08 | .. . | [18]: "1976-03-06T16:30:00Z" (194977800) transition_time 0x74-0x77.7 (4)
|
||||
0x070| 0c d8 e5 08 | .... | [19]: "1976-10-30T16:30:00Z" (215541000) transition_time 0x78-0x7b.7 (4)
|
||||
0x070| 0d 7f 02 08| ....| [20]: "1977-03-05T16:30:00Z" (226427400) transition_time 0x7c-0x7f.7 (4)
|
||||
0x080|0e b8 c7 08 |.... | [21]: "1977-10-29T16:30:00Z" (246990600) transition_time 0x80-0x83.7 (4)
|
||||
0x080| 0f 5e e4 08 | .^.. | [22]: "1978-03-04T16:30:00Z" (257877000) transition_time 0x84-0x87.7 (4)
|
||||
0x080| 10 98 a9 08 | .... | [23]: "1978-10-28T16:30:00Z" (278440200) transition_time 0x88-0x8b.7 (4)
|
||||
0x080| 11 3e c6 08| .>..| [24]: "1979-03-03T16:30:00Z" (289326600) transition_time 0x8c-0x8f.7 (4)
|
||||
0x090|12 78 8b 08 |.x.. | [25]: "1979-10-27T16:30:00Z" (309889800) transition_time 0x90-0x93.7 (4)
|
||||
0x090| 13 1e a8 08 | .... | [26]: "1980-03-01T16:30:00Z" (320776200) transition_time 0x94-0x97.7 (4)
|
||||
0x090| 14 58 6d 08 | .Xm. | [27]: "1980-10-25T16:30:00Z" (341339400) transition_time 0x98-0x9b.7 (4)
|
||||
0x090| 14 fe 8a 08| ....| [28]: "1981-02-28T16:30:00Z" (352225800) transition_time 0x9c-0x9f.7 (4)
|
||||
0x0a0|16 38 4f 08 |.8O. | [29]: "1981-10-24T16:30:00Z" (372789000) transition_time 0xa0-0xa3.7 (4)
|
||||
0x0a0| 16 e7 a6 88 | .... | [30]: "1982-03-06T16:30:00Z" (384280200) transition_time 0xa4-0xa7.7 (4)
|
||||
0x0a0| 18 21 6b 88 | .!k. | [31]: "1982-10-30T16:30:00Z" (404843400) transition_time 0xa8-0xab.7 (4)
|
||||
0x0a0| 18 c7 88 88| ....| [32]: "1983-03-05T16:30:00Z" (415729800) transition_time 0xac-0xaf.7 (4)
|
||||
0x0b0|1a 01 4d 88 |..M. | [33]: "1983-10-29T16:30:00Z" (436293000) transition_time 0xb0-0xb3.7 (4)
|
||||
0x0b0| 1a a7 6a 88 | ..j. | [34]: "1984-03-03T16:30:00Z" (447179400) transition_time 0xb4-0xb7.7 (4)
|
||||
0x0b0| 1b e1 2f 88 | ../. | [35]: "1984-10-27T16:30:00Z" (467742600) transition_time 0xb8-0xbb.7 (4)
|
||||
0x0b0| 1c 87 4c 88| ..L.| [36]: "1985-03-02T16:30:00Z" (478629000) transition_time 0xbc-0xbf.7 (4)
|
||||
0x0c0|1d c1 11 88 |.... | [37]: "1985-10-26T16:30:00Z" (499192200) transition_time 0xc0-0xc3.7 (4)
|
||||
0x0c0| 1e 79 a3 88 | .y.. | [38]: "1986-03-15T16:30:00Z" (511288200) transition_time 0xc4-0xc7.7 (4)
|
||||
0x0c0| 1f 97 b9 08 | .... | [39]: "1986-10-18T16:30:00Z" (530037000) transition_time 0xc8-0xcb.7 (4)
|
||||
0x0c0| 20 59 85 88| Y..| [40]: "1987-03-14T16:30:00Z" (542737800) transition_time 0xcc-0xcf.7 (4)
|
||||
0x0d0|21 80 d5 88 |!... | [41]: "1987-10-24T16:30:00Z" (562091400) transition_time 0xd0-0xd3.7 (4)
|
||||
0x0d0| 22 42 a2 08 | "B.. | [42]: "1988-03-19T16:30:00Z" (574792200) transition_time 0xd4-0xd7.7 (4)
|
||||
0x0d0| 23 69 f2 08 | #i.. | [43]: "1988-10-29T16:30:00Z" (594145800) transition_time 0xd8-0xdb.7 (4)
|
||||
0x0d0| 24 22 84 08| $"..| [44]: "1989-03-18T16:30:00Z" (606241800) transition_time 0xdc-0xdf.7 (4)
|
||||
0x0e0|25 49 d4 08 |%I.. | [45]: "1989-10-28T16:30:00Z" (625595400) transition_time 0xe0-0xe3.7 (4)
|
||||
0x0e0| 26 02 66 08 | &.f. | [46]: "1990-03-17T16:30:00Z" (637691400) transition_time 0xe4-0xe7.7 (4)
|
||||
0x0e0| 27 29 b6 08 | ').. | [47]: "1990-10-27T16:30:00Z" (657045000) transition_time 0xe8-0xeb.7 (4)
|
||||
0x0e0| 27 cf d3 08| '...| [48]: "1991-03-02T16:30:00Z" (667931400) transition_time 0xec-0xef.7 (4)
|
||||
0x0f0|29 09 98 08 |)... | [49]: "1991-10-26T16:30:00Z" (688494600) transition_time 0xf0-0xf3.7 (4)
|
||||
0x0f0| 29 cb 64 88 | ).d. | [50]: "1992-03-21T16:30:00Z" (701195400) transition_time 0xf4-0xf7.7 (4)
|
||||
0x0f0| 2a e9 7a 08 | *.z. | [51]: "1992-10-24T16:30:00Z" (719944200) transition_time 0xf8-0xfb.7 (4)
|
||||
0x0f0| 2b 98 d1 88| +...| [52]: "1993-03-06T16:30:00Z" (731435400) transition_time 0xfc-0xff.7 (4)
|
||||
0x100|2c d2 96 88 |,... | [53]: "1993-10-30T16:30:00Z" (751998600) transition_time 0x100-0x103.7 (4)
|
||||
0x100| 2d 8b 28 88 | -.(. | [54]: "1994-03-19T16:30:00Z" (764094600) transition_time 0x104-0x107.7 (4)
|
||||
0x100| 2e b2 78 88 | ..x. | [55]: "1994-10-29T16:30:00Z" (783448200) transition_time 0x108-0x10b.7 (4)
|
||||
0x100| 2f 74 45 08| /tE.| [56]: "1995-03-25T16:30:00Z" (796149000) transition_time 0x10c-0x10f.7 (4)
|
||||
0x110|30 92 5a 88 |0.Z. | [57]: "1995-10-28T16:30:00Z" (814897800) transition_time 0x110-0x113.7 (4)
|
||||
0x110| 31 5d 61 88 | 1]a. | [58]: "1996-03-30T16:30:00Z" (828203400) transition_time 0x114-0x117.7 (4)
|
||||
0x110| 32 72 3c 88 | 2r<. | [59]: "1996-10-26T16:30:00Z" (846347400) transition_time 0x118-0x11b.7 (4)
|
||||
0x110| 33 3d 43 88| 3=C.| [60]: "1997-03-29T16:30:00Z" (859653000) transition_time 0x11c-0x11f.7 (4)
|
||||
0x120|34 52 1e 88 |4R.. | [61]: "1997-10-25T16:30:00Z" (877797000) transition_time 0x120-0x123.7 (4)
|
||||
0x120| 35 1d 25 88 | 5.%. | [62]: "1998-03-28T16:30:00Z" (891102600) transition_time 0x124-0x127.7 (4)
|
||||
0x120| 36 32 00 88 | 62.. | [63]: "1998-10-24T16:30:00Z" (909246600) transition_time 0x128-0x12b.7 (4)
|
||||
0x120| 36 fd 07 88| 6...| [64]: "1999-03-27T16:30:00Z" (922552200) transition_time 0x12c-0x12f.7 (4)
|
||||
0x130|38 1b 1d 08 |8... | [65]: "1999-10-30T16:30:00Z" (941301000) transition_time 0x130-0x133.7 (4)
|
||||
0x130| 38 dc e9 88 | 8... | [66]: "2000-03-25T16:30:00Z" (954001800) transition_time 0x134-0x137.7 (4)
|
||||
0x130| 39 fa ff 08 | 9... | [67]: "2000-10-28T16:30:00Z" (972750600) transition_time 0x138-0x13b.7 (4)
|
||||
0x130| 3a bc cb 88| :...| [68]: "2001-03-24T16:30:00Z" (985451400) transition_time 0x13c-0x13f.7 (4)
|
||||
0x140|3b da e1 08 |;... | [69]: "2001-10-27T16:30:00Z" (1004200200) transition_time 0x140-0x143.7 (4)
|
||||
0x140| 3c a5 e8 08 | <... | [70]: "2002-03-30T16:30:00Z" (1017505800) transition_time 0x144-0x147.7 (4)
|
||||
0x140| 3d ba c3 08 | =... | [71]: "2002-10-26T16:30:00Z" (1035649800) transition_time 0x148-0x14b.7 (4)
|
||||
0x140| 3e 85 ca 08| >...| [72]: "2003-03-29T16:30:00Z" (1048955400) transition_time 0x14c-0x14f.7 (4)
|
||||
0x150|3f 9a a5 08 |?... | [73]: "2003-10-25T16:30:00Z" (1067099400) transition_time 0x150-0x153.7 (4)
|
||||
0x150| 40 65 ac 08 | @e.. | [74]: "2004-03-27T16:30:00Z" (1080405000) transition_time 0x154-0x157.7 (4)
|
||||
0x150| 41 83 c1 88 | A... | [75]: "2004-10-30T16:30:00Z" (1099153800) transition_time 0x158-0x15b.7 (4)
|
||||
0x150| 42 45 8e 08| BE..| [76]: "2005-03-26T16:30:00Z" (1111854600) transition_time 0x15c-0x15f.7 (4)
|
||||
0x160|43 63 a3 88 |Cc.. | [77]: "2005-10-29T16:30:00Z" (1130603400) transition_time 0x160-0x163.7 (4)
|
||||
0x160| 44 2e aa 88 | D... | [78]: "2006-04-01T16:30:00Z" (1143909000) transition_time 0x164-0x167.7 (4)
|
||||
0x160| 45 43 85 88 | EC.. | [79]: "2006-10-28T16:30:00Z" (1162053000) transition_time 0x168-0x16b.7 (4)
|
||||
0x160| 46 05 52 08| F.R.| [80]: "2007-03-24T16:30:00Z" (1174753800) transition_time 0x16c-0x16f.7 (4)
|
||||
0x170|47 23 67 88 |G#g. | [81]: "2007-10-27T16:30:00Z" (1193502600) transition_time 0x170-0x173.7 (4)
|
||||
0x170| 47 f7 a9 08 | G... | [82]: "2008-04-05T16:30:00Z" (1207413000) transition_time 0x174-0x177.7 (4)
|
||||
0x170| 48 e7 9a 08 | H... | [83]: "2008-10-04T16:30:00Z" (1223137800) transition_time 0x178-0x17b.7 (4)
|
||||
0x170| 49 d7 8b 08| I...| [84]: "2009-04-04T16:30:00Z" (1238862600) transition_time 0x17c-0x17f.7 (4)
|
||||
0x180|4a c7 7c 08 |J.|. | [85]: "2009-10-03T16:30:00Z" (1254587400) transition_time 0x180-0x183.7 (4)
|
||||
0x180| 4b b7 6d 08 | K.m. | [86]: "2010-04-03T16:30:00Z" (1270312200) transition_time 0x184-0x187.7 (4)
|
||||
0x180| 4c a7 5e 08 | L.^. | [87]: "2010-10-02T16:30:00Z" (1286037000) transition_time 0x188-0x18b.7 (4)
|
||||
0x180| 4d 97 4f 08| M.O.| [88]: "2011-04-02T16:30:00Z" (1301761800) transition_time 0x18c-0x18f.7 (4)
|
||||
0x190|4e 87 40 08 |N.@. | [89]: "2011-10-01T16:30:00Z" (1317486600) transition_time 0x190-0x193.7 (4)
|
||||
0x190| 4f 77 31 08 | Ow1. | [90]: "2012-03-31T16:30:00Z" (1333211400) transition_time 0x194-0x197.7 (4)
|
||||
0x190| 50 70 5c 88 | Pp\. | [91]: "2012-10-06T16:30:00Z" (1349541000) transition_time 0x198-0x19b.7 (4)
|
||||
0x190| 51 60 4d 88| Q`M.| [92]: "2013-04-06T16:30:00Z" (1365265800) transition_time 0x19c-0x19f.7 (4)
|
||||
0x1a0|52 50 3e 88 |RP>. | [93]: "2013-10-05T16:30:00Z" (1380990600) transition_time 0x1a0-0x1a3.7 (4)
|
||||
0x1a0| 53 40 2f 88 | S@/. | [94]: "2014-04-05T16:30:00Z" (1396715400) transition_time 0x1a4-0x1a7.7 (4)
|
||||
0x1a0| 54 30 20 88 | T0 . | [95]: "2014-10-04T16:30:00Z" (1412440200) transition_time 0x1a8-0x1ab.7 (4)
|
||||
0x1a0| 55 20 11 88| U ..| [96]: "2015-04-04T16:30:00Z" (1428165000) transition_time 0x1ac-0x1af.7 (4)
|
||||
0x1b0|56 10 02 88 |V... | [97]: "2015-10-03T16:30:00Z" (1443889800) transition_time 0x1b0-0x1b3.7 (4)
|
||||
0x1b0| 56 ff f3 88 | V... | [98]: "2016-04-02T16:30:00Z" (1459614600) transition_time 0x1b4-0x1b7.7 (4)
|
||||
0x1b0| 57 ef e4 88 | W... | [99]: "2016-10-01T16:30:00Z" (1475339400) transition_time 0x1b8-0x1bb.7 (4)
|
||||
0x1b0| 58 df d5 88| X...| [100]: "2017-04-01T16:30:00Z" (1491064200) transition_time 0x1bc-0x1bf.7 (4)
|
||||
0x1c0|59 cf c6 88 |Y... | [101]: "2017-09-30T16:30:00Z" (1506789000) transition_time 0x1c0-0x1c3.7 (4)
|
||||
0x1c0| 5a bf b7 88 | Z... | [102]: "2018-03-31T16:30:00Z" (1522513800) transition_time 0x1c4-0x1c7.7 (4)
|
||||
0x1c0| 5b b8 e3 08 | [... | [103]: "2018-10-06T16:30:00Z" (1538843400) transition_time 0x1c8-0x1cb.7 (4)
|
||||
0x1c0| 5c a8 d4 08| \...| [104]: "2019-04-06T16:30:00Z" (1554568200) transition_time 0x1cc-0x1cf.7 (4)
|
||||
0x1d0|5d 98 c5 08 |]... | [105]: "2019-10-05T16:30:00Z" (1570293000) transition_time 0x1d0-0x1d3.7 (4)
|
||||
0x1d0| 5e 88 b6 08 | ^... | [106]: "2020-04-04T16:30:00Z" (1586017800) transition_time 0x1d4-0x1d7.7 (4)
|
||||
0x1d0| 5f 78 a7 08 | _x.. | [107]: "2020-10-03T16:30:00Z" (1601742600) transition_time 0x1d8-0x1db.7 (4)
|
||||
0x1d0| 60 68 98 08| `h..| [108]: "2021-04-03T16:30:00Z" (1617467400) transition_time 0x1dc-0x1df.7 (4)
|
||||
0x1e0|61 58 89 08 |aX.. | [109]: "2021-10-02T16:30:00Z" (1633192200) transition_time 0x1e0-0x1e3.7 (4)
|
||||
0x1e0| 62 48 7a 08 | bHz. | [110]: "2022-04-02T16:30:00Z" (1648917000) transition_time 0x1e4-0x1e7.7 (4)
|
||||
0x1e0| 63 38 6b 08 | c8k. | [111]: "2022-10-01T16:30:00Z" (1664641800) transition_time 0x1e8-0x1eb.7 (4)
|
||||
0x1e0| 64 28 5c 08| d(\.| [112]: "2023-04-01T16:30:00Z" (1680366600) transition_time 0x1ec-0x1ef.7 (4)
|
||||
0x1f0|65 18 4d 08 |e.M. | [113]: "2023-09-30T16:30:00Z" (1696091400) transition_time 0x1f0-0x1f3.7 (4)
|
||||
0x1f0| 66 11 78 88 | f.x. | [114]: "2024-04-06T16:30:00Z" (1712421000) transition_time 0x1f4-0x1f7.7 (4)
|
||||
0x1f0| 67 01 69 88 | g.i. | [115]: "2024-10-05T16:30:00Z" (1728145800) transition_time 0x1f8-0x1fb.7 (4)
|
||||
0x1f0| 67 f1 5a 88| g.Z.| [116]: "2025-04-05T16:30:00Z" (1743870600) transition_time 0x1fc-0x1ff.7 (4)
|
||||
0x200|68 e1 4b 88 |h.K. | [117]: "2025-10-04T16:30:00Z" (1759595400) transition_time 0x200-0x203.7 (4)
|
||||
0x200| 69 d1 3c 88 | i.<. | [118]: "2026-04-04T16:30:00Z" (1775320200) transition_time 0x204-0x207.7 (4)
|
||||
0x200| 6a c1 2d 88 | j.-. | [119]: "2026-10-03T16:30:00Z" (1791045000) transition_time 0x208-0x20b.7 (4)
|
||||
0x200| 6b b1 1e 88| k...| [120]: "2027-04-03T16:30:00Z" (1806769800) transition_time 0x20c-0x20f.7 (4)
|
||||
0x210|6c a1 0f 88 |l... | [121]: "2027-10-02T16:30:00Z" (1822494600) transition_time 0x210-0x213.7 (4)
|
||||
0x210| 6d 91 00 88 | m... | [122]: "2028-04-01T16:30:00Z" (1838219400) transition_time 0x214-0x217.7 (4)
|
||||
0x210| 6e 80 f1 88 | n... | [123]: "2028-09-30T16:30:00Z" (1853944200) transition_time 0x218-0x21b.7 (4)
|
||||
0x210| 6f 70 e2 88| op..| [124]: "2029-03-31T16:30:00Z" (1869669000) transition_time 0x21c-0x21f.7 (4)
|
||||
0x220|70 6a 0e 08 |pj.. | [125]: "2029-10-06T16:30:00Z" (1885998600) transition_time 0x220-0x223.7 (4)
|
||||
0x220| 71 59 ff 08 | qY.. | [126]: "2030-04-06T16:30:00Z" (1901723400) transition_time 0x224-0x227.7 (4)
|
||||
0x220| 72 49 f0 08 | rI.. | [127]: "2030-10-05T16:30:00Z" (1917448200) transition_time 0x228-0x22b.7 (4)
|
||||
0x220| 73 39 e1 08| s9..| [128]: "2031-04-05T16:30:00Z" (1933173000) transition_time 0x22c-0x22f.7 (4)
|
||||
0x230|74 29 d2 08 |t).. | [129]: "2031-10-04T16:30:00Z" (1948897800) transition_time 0x230-0x233.7 (4)
|
||||
0x230| 75 19 c3 08 | u... | [130]: "2032-04-03T16:30:00Z" (1964622600) transition_time 0x234-0x237.7 (4)
|
||||
0x230| 76 09 b4 08 | v... | [131]: "2032-10-02T16:30:00Z" (1980347400) transition_time 0x238-0x23b.7 (4)
|
||||
0x230| 76 f9 a5 08| v...| [132]: "2033-04-02T16:30:00Z" (1996072200) transition_time 0x23c-0x23f.7 (4)
|
||||
0x240|77 e9 96 08 |w... | [133]: "2033-10-01T16:30:00Z" (2011797000) transition_time 0x240-0x243.7 (4)
|
||||
0x240| 78 d9 87 08 | x... | [134]: "2034-04-01T16:30:00Z" (2027521800) transition_time 0x244-0x247.7 (4)
|
||||
0x240| 79 c9 78 08 | y.x. | [135]: "2034-09-30T16:30:00Z" (2043246600) transition_time 0x248-0x24b.7 (4)
|
||||
0x240| 7a b9 69 08| z.i.| [136]: "2035-03-31T16:30:00Z" (2058971400) transition_time 0x24c-0x24f.7 (4)
|
||||
0x250|7b b2 94 88 |{... | [137]: "2035-10-06T16:30:00Z" (2075301000) transition_time 0x250-0x253.7 (4)
|
||||
0x250| 7c a2 85 88 | |... | [138]: "2036-04-05T16:30:00Z" (2091025800) transition_time 0x254-0x257.7 (4)
|
||||
0x250| 7d 92 76 88 | }.v. | [139]: "2036-10-04T16:30:00Z" (2106750600) transition_time 0x258-0x25b.7 (4)
|
||||
0x250| 7e 82 67 88| ~.g.| [140]: "2037-04-04T16:30:00Z" (2122475400) transition_time 0x25c-0x25f.7 (4)
|
||||
0x260|7f 72 58 88 |.rX. | [141]: "2037-10-03T16:30:00Z" (2138200200) transition_time 0x260-0x263.7 (4)
|
||||
| | | transition_types[0:142]: 0x264-0x2f1.7 (142)
|
||||
0x260| 03 | . | [0]: 3 transition_type 0x264-0x264.7 (1)
|
||||
0x260| 01 | . | [1]: 1 transition_type 0x265-0x265.7 (1)
|
||||
0x260| 02 | . | [2]: 2 transition_type 0x266-0x266.7 (1)
|
||||
0x260| 01 | . | [3]: 1 transition_type 0x267-0x267.7 (1)
|
||||
0x260| 02 | . | [4]: 2 transition_type 0x268-0x268.7 (1)
|
||||
0x260| 01 | . | [5]: 1 transition_type 0x269-0x269.7 (1)
|
||||
0x260| 02 | . | [6]: 2 transition_type 0x26a-0x26a.7 (1)
|
||||
0x260| 01 | . | [7]: 1 transition_type 0x26b-0x26b.7 (1)
|
||||
0x260| 02 | . | [8]: 2 transition_type 0x26c-0x26c.7 (1)
|
||||
0x260| 01 | . | [9]: 1 transition_type 0x26d-0x26d.7 (1)
|
||||
0x260| 02 | . | [10]: 2 transition_type 0x26e-0x26e.7 (1)
|
||||
0x260| 01| .| [11]: 1 transition_type 0x26f-0x26f.7 (1)
|
||||
0x270|02 |. | [12]: 2 transition_type 0x270-0x270.7 (1)
|
||||
0x270| 01 | . | [13]: 1 transition_type 0x271-0x271.7 (1)
|
||||
0x270| 02 | . | [14]: 2 transition_type 0x272-0x272.7 (1)
|
||||
0x270| 01 | . | [15]: 1 transition_type 0x273-0x273.7 (1)
|
||||
0x270| 02 | . | [16]: 2 transition_type 0x274-0x274.7 (1)
|
||||
0x270| 01 | . | [17]: 1 transition_type 0x275-0x275.7 (1)
|
||||
0x270| 02 | . | [18]: 2 transition_type 0x276-0x276.7 (1)
|
||||
0x270| 01 | . | [19]: 1 transition_type 0x277-0x277.7 (1)
|
||||
0x270| 02 | . | [20]: 2 transition_type 0x278-0x278.7 (1)
|
||||
0x270| 01 | . | [21]: 1 transition_type 0x279-0x279.7 (1)
|
||||
0x270| 02 | . | [22]: 2 transition_type 0x27a-0x27a.7 (1)
|
||||
0x270| 01 | . | [23]: 1 transition_type 0x27b-0x27b.7 (1)
|
||||
0x270| 02 | . | [24]: 2 transition_type 0x27c-0x27c.7 (1)
|
||||
0x270| 01 | . | [25]: 1 transition_type 0x27d-0x27d.7 (1)
|
||||
0x270| 02 | . | [26]: 2 transition_type 0x27e-0x27e.7 (1)
|
||||
0x270| 01| .| [27]: 1 transition_type 0x27f-0x27f.7 (1)
|
||||
0x280|02 |. | [28]: 2 transition_type 0x280-0x280.7 (1)
|
||||
0x280| 01 | . | [29]: 1 transition_type 0x281-0x281.7 (1)
|
||||
0x280| 02 | . | [30]: 2 transition_type 0x282-0x282.7 (1)
|
||||
0x280| 01 | . | [31]: 1 transition_type 0x283-0x283.7 (1)
|
||||
0x280| 02 | . | [32]: 2 transition_type 0x284-0x284.7 (1)
|
||||
0x280| 01 | . | [33]: 1 transition_type 0x285-0x285.7 (1)
|
||||
0x280| 02 | . | [34]: 2 transition_type 0x286-0x286.7 (1)
|
||||
0x280| 01 | . | [35]: 1 transition_type 0x287-0x287.7 (1)
|
||||
0x280| 02 | . | [36]: 2 transition_type 0x288-0x288.7 (1)
|
||||
0x280| 01 | . | [37]: 1 transition_type 0x289-0x289.7 (1)
|
||||
0x280| 02 | . | [38]: 2 transition_type 0x28a-0x28a.7 (1)
|
||||
0x280| 01 | . | [39]: 1 transition_type 0x28b-0x28b.7 (1)
|
||||
0x280| 02 | . | [40]: 2 transition_type 0x28c-0x28c.7 (1)
|
||||
0x280| 01 | . | [41]: 1 transition_type 0x28d-0x28d.7 (1)
|
||||
0x280| 02 | . | [42]: 2 transition_type 0x28e-0x28e.7 (1)
|
||||
0x280| 01| .| [43]: 1 transition_type 0x28f-0x28f.7 (1)
|
||||
0x290|02 |. | [44]: 2 transition_type 0x290-0x290.7 (1)
|
||||
0x290| 01 | . | [45]: 1 transition_type 0x291-0x291.7 (1)
|
||||
0x290| 02 | . | [46]: 2 transition_type 0x292-0x292.7 (1)
|
||||
0x290| 01 | . | [47]: 1 transition_type 0x293-0x293.7 (1)
|
||||
0x290| 02 | . | [48]: 2 transition_type 0x294-0x294.7 (1)
|
||||
0x290| 01 | . | [49]: 1 transition_type 0x295-0x295.7 (1)
|
||||
0x290| 02 | . | [50]: 2 transition_type 0x296-0x296.7 (1)
|
||||
0x290| 01 | . | [51]: 1 transition_type 0x297-0x297.7 (1)
|
||||
0x290| 02 | . | [52]: 2 transition_type 0x298-0x298.7 (1)
|
||||
0x290| 01 | . | [53]: 1 transition_type 0x299-0x299.7 (1)
|
||||
0x290| 02 | . | [54]: 2 transition_type 0x29a-0x29a.7 (1)
|
||||
0x290| 01 | . | [55]: 1 transition_type 0x29b-0x29b.7 (1)
|
||||
0x290| 02 | . | [56]: 2 transition_type 0x29c-0x29c.7 (1)
|
||||
0x290| 01 | . | [57]: 1 transition_type 0x29d-0x29d.7 (1)
|
||||
0x290| 02 | . | [58]: 2 transition_type 0x29e-0x29e.7 (1)
|
||||
0x290| 01| .| [59]: 1 transition_type 0x29f-0x29f.7 (1)
|
||||
0x2a0|02 |. | [60]: 2 transition_type 0x2a0-0x2a0.7 (1)
|
||||
0x2a0| 01 | . | [61]: 1 transition_type 0x2a1-0x2a1.7 (1)
|
||||
0x2a0| 02 | . | [62]: 2 transition_type 0x2a2-0x2a2.7 (1)
|
||||
0x2a0| 01 | . | [63]: 1 transition_type 0x2a3-0x2a3.7 (1)
|
||||
0x2a0| 02 | . | [64]: 2 transition_type 0x2a4-0x2a4.7 (1)
|
||||
0x2a0| 01 | . | [65]: 1 transition_type 0x2a5-0x2a5.7 (1)
|
||||
0x2a0| 02 | . | [66]: 2 transition_type 0x2a6-0x2a6.7 (1)
|
||||
0x2a0| 01 | . | [67]: 1 transition_type 0x2a7-0x2a7.7 (1)
|
||||
0x2a0| 02 | . | [68]: 2 transition_type 0x2a8-0x2a8.7 (1)
|
||||
0x2a0| 01 | . | [69]: 1 transition_type 0x2a9-0x2a9.7 (1)
|
||||
0x2a0| 02 | . | [70]: 2 transition_type 0x2aa-0x2aa.7 (1)
|
||||
0x2a0| 01 | . | [71]: 1 transition_type 0x2ab-0x2ab.7 (1)
|
||||
0x2a0| 02 | . | [72]: 2 transition_type 0x2ac-0x2ac.7 (1)
|
||||
0x2a0| 01 | . | [73]: 1 transition_type 0x2ad-0x2ad.7 (1)
|
||||
0x2a0| 02 | . | [74]: 2 transition_type 0x2ae-0x2ae.7 (1)
|
||||
0x2a0| 01| .| [75]: 1 transition_type 0x2af-0x2af.7 (1)
|
||||
0x2b0|02 |. | [76]: 2 transition_type 0x2b0-0x2b0.7 (1)
|
||||
0x2b0| 01 | . | [77]: 1 transition_type 0x2b1-0x2b1.7 (1)
|
||||
0x2b0| 02 | . | [78]: 2 transition_type 0x2b2-0x2b2.7 (1)
|
||||
0x2b0| 01 | . | [79]: 1 transition_type 0x2b3-0x2b3.7 (1)
|
||||
0x2b0| 02 | . | [80]: 2 transition_type 0x2b4-0x2b4.7 (1)
|
||||
0x2b0| 01 | . | [81]: 1 transition_type 0x2b5-0x2b5.7 (1)
|
||||
0x2b0| 02 | . | [82]: 2 transition_type 0x2b6-0x2b6.7 (1)
|
||||
0x2b0| 01 | . | [83]: 1 transition_type 0x2b7-0x2b7.7 (1)
|
||||
0x2b0| 02 | . | [84]: 2 transition_type 0x2b8-0x2b8.7 (1)
|
||||
0x2b0| 01 | . | [85]: 1 transition_type 0x2b9-0x2b9.7 (1)
|
||||
0x2b0| 02 | . | [86]: 2 transition_type 0x2ba-0x2ba.7 (1)
|
||||
0x2b0| 01 | . | [87]: 1 transition_type 0x2bb-0x2bb.7 (1)
|
||||
0x2b0| 02 | . | [88]: 2 transition_type 0x2bc-0x2bc.7 (1)
|
||||
0x2b0| 01 | . | [89]: 1 transition_type 0x2bd-0x2bd.7 (1)
|
||||
0x2b0| 02 | . | [90]: 2 transition_type 0x2be-0x2be.7 (1)
|
||||
0x2b0| 01| .| [91]: 1 transition_type 0x2bf-0x2bf.7 (1)
|
||||
0x2c0|02 |. | [92]: 2 transition_type 0x2c0-0x2c0.7 (1)
|
||||
0x2c0| 01 | . | [93]: 1 transition_type 0x2c1-0x2c1.7 (1)
|
||||
0x2c0| 02 | . | [94]: 2 transition_type 0x2c2-0x2c2.7 (1)
|
||||
0x2c0| 01 | . | [95]: 1 transition_type 0x2c3-0x2c3.7 (1)
|
||||
0x2c0| 02 | . | [96]: 2 transition_type 0x2c4-0x2c4.7 (1)
|
||||
0x2c0| 01 | . | [97]: 1 transition_type 0x2c5-0x2c5.7 (1)
|
||||
0x2c0| 02 | . | [98]: 2 transition_type 0x2c6-0x2c6.7 (1)
|
||||
0x2c0| 01 | . | [99]: 1 transition_type 0x2c7-0x2c7.7 (1)
|
||||
0x2c0| 02 | . | [100]: 2 transition_type 0x2c8-0x2c8.7 (1)
|
||||
0x2c0| 01 | . | [101]: 1 transition_type 0x2c9-0x2c9.7 (1)
|
||||
0x2c0| 02 | . | [102]: 2 transition_type 0x2ca-0x2ca.7 (1)
|
||||
0x2c0| 01 | . | [103]: 1 transition_type 0x2cb-0x2cb.7 (1)
|
||||
0x2c0| 02 | . | [104]: 2 transition_type 0x2cc-0x2cc.7 (1)
|
||||
0x2c0| 01 | . | [105]: 1 transition_type 0x2cd-0x2cd.7 (1)
|
||||
0x2c0| 02 | . | [106]: 2 transition_type 0x2ce-0x2ce.7 (1)
|
||||
0x2c0| 01| .| [107]: 1 transition_type 0x2cf-0x2cf.7 (1)
|
||||
0x2d0|02 |. | [108]: 2 transition_type 0x2d0-0x2d0.7 (1)
|
||||
0x2d0| 01 | . | [109]: 1 transition_type 0x2d1-0x2d1.7 (1)
|
||||
0x2d0| 02 | . | [110]: 2 transition_type 0x2d2-0x2d2.7 (1)
|
||||
0x2d0| 01 | . | [111]: 1 transition_type 0x2d3-0x2d3.7 (1)
|
||||
0x2d0| 02 | . | [112]: 2 transition_type 0x2d4-0x2d4.7 (1)
|
||||
0x2d0| 01 | . | [113]: 1 transition_type 0x2d5-0x2d5.7 (1)
|
||||
0x2d0| 02 | . | [114]: 2 transition_type 0x2d6-0x2d6.7 (1)
|
||||
0x2d0| 01 | . | [115]: 1 transition_type 0x2d7-0x2d7.7 (1)
|
||||
0x2d0| 02 | . | [116]: 2 transition_type 0x2d8-0x2d8.7 (1)
|
||||
0x2d0| 01 | . | [117]: 1 transition_type 0x2d9-0x2d9.7 (1)
|
||||
0x2d0| 02 | . | [118]: 2 transition_type 0x2da-0x2da.7 (1)
|
||||
0x2d0| 01 | . | [119]: 1 transition_type 0x2db-0x2db.7 (1)
|
||||
0x2d0| 02 | . | [120]: 2 transition_type 0x2dc-0x2dc.7 (1)
|
||||
0x2d0| 01 | . | [121]: 1 transition_type 0x2dd-0x2dd.7 (1)
|
||||
0x2d0| 02 | . | [122]: 2 transition_type 0x2de-0x2de.7 (1)
|
||||
0x2d0| 01| .| [123]: 1 transition_type 0x2df-0x2df.7 (1)
|
||||
0x2e0|02 |. | [124]: 2 transition_type 0x2e0-0x2e0.7 (1)
|
||||
0x2e0| 01 | . | [125]: 1 transition_type 0x2e1-0x2e1.7 (1)
|
||||
0x2e0| 02 | . | [126]: 2 transition_type 0x2e2-0x2e2.7 (1)
|
||||
0x2e0| 01 | . | [127]: 1 transition_type 0x2e3-0x2e3.7 (1)
|
||||
0x2e0| 02 | . | [128]: 2 transition_type 0x2e4-0x2e4.7 (1)
|
||||
0x2e0| 01 | . | [129]: 1 transition_type 0x2e5-0x2e5.7 (1)
|
||||
0x2e0| 02 | . | [130]: 2 transition_type 0x2e6-0x2e6.7 (1)
|
||||
0x2e0| 01 | . | [131]: 1 transition_type 0x2e7-0x2e7.7 (1)
|
||||
0x2e0| 02 | . | [132]: 2 transition_type 0x2e8-0x2e8.7 (1)
|
||||
0x2e0| 01 | . | [133]: 1 transition_type 0x2e9-0x2e9.7 (1)
|
||||
0x2e0| 02 | . | [134]: 2 transition_type 0x2ea-0x2ea.7 (1)
|
||||
0x2e0| 01 | . | [135]: 1 transition_type 0x2eb-0x2eb.7 (1)
|
||||
0x2e0| 02 | . | [136]: 2 transition_type 0x2ec-0x2ec.7 (1)
|
||||
0x2e0| 01 | . | [137]: 1 transition_type 0x2ed-0x2ed.7 (1)
|
||||
0x2e0| 02 | . | [138]: 2 transition_type 0x2ee-0x2ee.7 (1)
|
||||
0x2e0| 01| .| [139]: 1 transition_type 0x2ef-0x2ef.7 (1)
|
||||
0x2f0|02 |. | [140]: 2 transition_type 0x2f0-0x2f0.7 (1)
|
||||
0x2f0| 01 | . | [141]: 1 transition_type 0x2f1-0x2f1.7 (1)
|
||||
| | | local_time_type_records[0:4]: 0x2f2-0x309.7 (24)
|
||||
| | | [0]{}: local_time_type 0x2f2-0x2f7.7 (6)
|
||||
0x2f0| 00 00 81 ec | .... | utoff: 33260 (valid) 0x2f2-0x2f5.7 (4)
|
||||
0x2f0| 00 | . | dst: 0 (valid) 0x2f6-0x2f6.7 (1)
|
||||
0x2f0| 00 | . | idx: 0 (valid) 0x2f7-0x2f7.7 (1)
|
||||
| | | [1]{}: local_time_type 0x2f8-0x2fd.7 (6)
|
||||
0x2f0| 00 00 93 a8 | .... | utoff: 37800 (valid) 0x2f8-0x2fb.7 (4)
|
||||
0x2f0| 01 | . | dst: 1 (valid) 0x2fc-0x2fc.7 (1)
|
||||
0x2f0| 04 | . | idx: 4 (valid) 0x2fd-0x2fd.7 (1)
|
||||
| | | [2]{}: local_time_type 0x2fe-0x303.7 (6)
|
||||
0x2f0| 00 00| ..| utoff: 34200 (valid) 0x2fe-0x301.7 (4)
|
||||
0x300|85 98 |.. |
|
||||
0x300| 00 | . | dst: 0 (valid) 0x302-0x302.7 (1)
|
||||
0x300| 09 | . | idx: 9 (valid) 0x303-0x303.7 (1)
|
||||
| | | [3]{}: local_time_type 0x304-0x309.7 (6)
|
||||
0x300| 00 00 85 98 | .... | utoff: 34200 (valid) 0x304-0x307.7 (4)
|
||||
0x300| 00 | . | dst: 0 (valid) 0x308-0x308.7 (1)
|
||||
0x300| 09 | . | idx: 9 (valid) 0x309-0x309.7 (1)
|
||||
| | | time_zone_designations[0:3]: 0x30a-0x317.7 (14)
|
||||
0x300| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x30a-0x30d.7 (4)
|
||||
0x300| 41 43| AC| [1]: "ACDT" time_zone_designation 0x30e-0x312.7 (5)
|
||||
0x310|44 54 00 |DT. |
|
||||
0x310| 41 43 53 54 00 | ACST. | [2]: "ACST" time_zone_designation 0x313-0x317.7 (5)
|
||||
| | | leap_second_records[0:0]: 0x318-NA (0)
|
||||
| | | standard_wall_indicators[0:4]: 0x318-0x31b.7 (4)
|
||||
0x310| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x318-0x318.7 (1)
|
||||
0x310| 01 | . | [1]: 1 standard_wall_indicator (valid) 0x319-0x319.7 (1)
|
||||
0x310| 01 | . | [2]: 1 standard_wall_indicator (valid) 0x31a-0x31a.7 (1)
|
||||
0x310| 00 | . | [3]: 0 standard_wall_indicator (valid) 0x31b-0x31b.7 (1)
|
||||
| | | ut_local_indicators[0:0]: 0x31c-NA (0)
|
||||
| | | v2plusheader{}: 0x31c-0x347.7 (44)
|
||||
0x310| 54 5a 69 66| TZif| magic: 0x545a6966 (valid) 0x31c-0x31f.7 (4)
|
||||
0x320|32 |2 | ver: "2" (0x32) (valid) 0x320-0x320.7 (1)
|
||||
0x320| 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00| ...............| reserved: raw bits 0x321-0x32f.7 (15)
|
||||
0x330|00 00 00 00 |.... | isutcnt: 0 0x330-0x333.7 (4)
|
||||
0x330| 00 00 00 05 | .... | isstdcnt: 5 0x334-0x337.7 (4)
|
||||
0x330| 00 00 00 00 | .... | leapcnt: 0 0x338-0x33b.7 (4)
|
||||
0x330| 00 00 00 8f| ....| timecnt: 143 0x33c-0x33f.7 (4)
|
||||
0x340|00 00 00 05 |.... | typecnt: 5 0x340-0x343.7 (4)
|
||||
0x340| 00 00 00 0e | .... | charcnt: 14 0x344-0x347.7 (4)
|
||||
| | | v2plusdatablock{}: 0x348-0x87f.7 (1336)
|
||||
| | | transition_times[0:143]: 0x348-0x7bf.7 (1144)
|
||||
0x340| ff ff ff ff 73 16 8b 14| ....s...| [0]: "1895-01-31T14:45:40Z" (-2364110060) transition_time 0x348-0x34f.7 (8)
|
||||
0x350|ff ff ff ff 7b 12 03 70 |....{..p | [1]: "1899-04-30T15:00:00Z" (-2230189200) transition_time 0x350-0x357.7 (8)
|
||||
0x350| ff ff ff ff 9c 4e c9 88| .....N..| [2]: "1916-12-31T16:30:00Z" (-1672558200) transition_time 0x358-0x35f.7 (8)
|
||||
0x360|ff ff ff ff 9c bc 36 08 |......6. | [3]: "1917-03-24T16:30:00Z" (-1665387000) transition_time 0x360-0x367.7 (8)
|
||||
0x360| ff ff ff ff cb 54 ba 08| .....T..| [4]: "1941-12-31T16:30:00Z" (-883639800) transition_time 0x368-0x36f.7 (8)
|
||||
0x370|ff ff ff ff cb c7 6c 88 |......l. | [5]: "1942-03-28T16:30:00Z" (-876123000) transition_time 0x370-0x377.7 (8)
|
||||
0x370| ff ff ff ff cc b7 5d 88| ......].| [6]: "1942-09-26T16:30:00Z" (-860398200) transition_time 0x378-0x37f.7 (8)
|
||||
0x380|ff ff ff ff cd a7 4e 88 |......N. | [7]: "1943-03-27T16:30:00Z" (-844673400) transition_time 0x380-0x387.7 (8)
|
||||
0x380| ff ff ff ff ce a0 7a 08| ......z.| [8]: "1943-10-02T16:30:00Z" (-828343800) transition_time 0x388-0x38f.7 (8)
|
||||
0x390|ff ff ff ff cf 87 30 88 |......0. | [9]: "1944-03-25T16:30:00Z" (-813223800) transition_time 0x390-0x397.7 (8)
|
||||
0x390| 00 00 00 00 03 70 40 88| .....p@.| [10]: "1971-10-30T16:30:00Z" (57688200) transition_time 0x398-0x39f.7 (8)
|
||||
0x3a0|00 00 00 00 04 0d 23 08 |......#. | [11]: "1972-02-26T16:30:00Z" (67969800) transition_time 0x3a0-0x3a7.7 (8)
|
||||
0x3a0| 00 00 00 00 05 50 22 88| .....P".| [12]: "1972-10-28T16:30:00Z" (89137800) transition_time 0x3a8-0x3af.7 (8)
|
||||
0x3b0|00 00 00 00 05 f6 3f 88 |......?. | [13]: "1973-03-03T16:30:00Z" (100024200) transition_time 0x3b0-0x3b7.7 (8)
|
||||
0x3b0| 00 00 00 00 07 30 04 88| .....0..| [14]: "1973-10-27T16:30:00Z" (120587400) transition_time 0x3b8-0x3bf.7 (8)
|
||||
0x3c0|00 00 00 00 07 d6 21 88 |......!. | [15]: "1974-03-02T16:30:00Z" (131473800) transition_time 0x3c0-0x3c7.7 (8)
|
||||
0x3c0| 00 00 00 00 09 0f e6 88| ........| [16]: "1974-10-26T16:30:00Z" (152037000) transition_time 0x3c8-0x3cf.7 (8)
|
||||
0x3d0|00 00 00 00 09 b6 03 88 |........ | [17]: "1975-03-01T16:30:00Z" (162923400) transition_time 0x3d0-0x3d7.7 (8)
|
||||
0x3d0| 00 00 00 00 0a ef c8 88| ........| [18]: "1975-10-25T16:30:00Z" (183486600) transition_time 0x3d8-0x3df.7 (8)
|
||||
0x3e0|00 00 00 00 0b 9f 20 08 |...... . | [19]: "1976-03-06T16:30:00Z" (194977800) transition_time 0x3e0-0x3e7.7 (8)
|
||||
0x3e0| 00 00 00 00 0c d8 e5 08| ........| [20]: "1976-10-30T16:30:00Z" (215541000) transition_time 0x3e8-0x3ef.7 (8)
|
||||
0x3f0|00 00 00 00 0d 7f 02 08 |........ | [21]: "1977-03-05T16:30:00Z" (226427400) transition_time 0x3f0-0x3f7.7 (8)
|
||||
0x3f0| 00 00 00 00 0e b8 c7 08| ........| [22]: "1977-10-29T16:30:00Z" (246990600) transition_time 0x3f8-0x3ff.7 (8)
|
||||
0x400|00 00 00 00 0f 5e e4 08 |.....^.. | [23]: "1978-03-04T16:30:00Z" (257877000) transition_time 0x400-0x407.7 (8)
|
||||
0x400| 00 00 00 00 10 98 a9 08| ........| [24]: "1978-10-28T16:30:00Z" (278440200) transition_time 0x408-0x40f.7 (8)
|
||||
0x410|00 00 00 00 11 3e c6 08 |.....>.. | [25]: "1979-03-03T16:30:00Z" (289326600) transition_time 0x410-0x417.7 (8)
|
||||
0x410| 00 00 00 00 12 78 8b 08| .....x..| [26]: "1979-10-27T16:30:00Z" (309889800) transition_time 0x418-0x41f.7 (8)
|
||||
0x420|00 00 00 00 13 1e a8 08 |........ | [27]: "1980-03-01T16:30:00Z" (320776200) transition_time 0x420-0x427.7 (8)
|
||||
0x420| 00 00 00 00 14 58 6d 08| .....Xm.| [28]: "1980-10-25T16:30:00Z" (341339400) transition_time 0x428-0x42f.7 (8)
|
||||
0x430|00 00 00 00 14 fe 8a 08 |........ | [29]: "1981-02-28T16:30:00Z" (352225800) transition_time 0x430-0x437.7 (8)
|
||||
0x430| 00 00 00 00 16 38 4f 08| .....8O.| [30]: "1981-10-24T16:30:00Z" (372789000) transition_time 0x438-0x43f.7 (8)
|
||||
0x440|00 00 00 00 16 e7 a6 88 |........ | [31]: "1982-03-06T16:30:00Z" (384280200) transition_time 0x440-0x447.7 (8)
|
||||
0x440| 00 00 00 00 18 21 6b 88| .....!k.| [32]: "1982-10-30T16:30:00Z" (404843400) transition_time 0x448-0x44f.7 (8)
|
||||
0x450|00 00 00 00 18 c7 88 88 |........ | [33]: "1983-03-05T16:30:00Z" (415729800) transition_time 0x450-0x457.7 (8)
|
||||
0x450| 00 00 00 00 1a 01 4d 88| ......M.| [34]: "1983-10-29T16:30:00Z" (436293000) transition_time 0x458-0x45f.7 (8)
|
||||
0x460|00 00 00 00 1a a7 6a 88 |......j. | [35]: "1984-03-03T16:30:00Z" (447179400) transition_time 0x460-0x467.7 (8)
|
||||
0x460| 00 00 00 00 1b e1 2f 88| ....../.| [36]: "1984-10-27T16:30:00Z" (467742600) transition_time 0x468-0x46f.7 (8)
|
||||
0x470|00 00 00 00 1c 87 4c 88 |......L. | [37]: "1985-03-02T16:30:00Z" (478629000) transition_time 0x470-0x477.7 (8)
|
||||
0x470| 00 00 00 00 1d c1 11 88| ........| [38]: "1985-10-26T16:30:00Z" (499192200) transition_time 0x478-0x47f.7 (8)
|
||||
0x480|00 00 00 00 1e 79 a3 88 |.....y.. | [39]: "1986-03-15T16:30:00Z" (511288200) transition_time 0x480-0x487.7 (8)
|
||||
0x480| 00 00 00 00 1f 97 b9 08| ........| [40]: "1986-10-18T16:30:00Z" (530037000) transition_time 0x488-0x48f.7 (8)
|
||||
0x490|00 00 00 00 20 59 85 88 |.... Y.. | [41]: "1987-03-14T16:30:00Z" (542737800) transition_time 0x490-0x497.7 (8)
|
||||
0x490| 00 00 00 00 21 80 d5 88| ....!...| [42]: "1987-10-24T16:30:00Z" (562091400) transition_time 0x498-0x49f.7 (8)
|
||||
0x4a0|00 00 00 00 22 42 a2 08 |...."B.. | [43]: "1988-03-19T16:30:00Z" (574792200) transition_time 0x4a0-0x4a7.7 (8)
|
||||
0x4a0| 00 00 00 00 23 69 f2 08| ....#i..| [44]: "1988-10-29T16:30:00Z" (594145800) transition_time 0x4a8-0x4af.7 (8)
|
||||
0x4b0|00 00 00 00 24 22 84 08 |....$".. | [45]: "1989-03-18T16:30:00Z" (606241800) transition_time 0x4b0-0x4b7.7 (8)
|
||||
0x4b0| 00 00 00 00 25 49 d4 08| ....%I..| [46]: "1989-10-28T16:30:00Z" (625595400) transition_time 0x4b8-0x4bf.7 (8)
|
||||
0x4c0|00 00 00 00 26 02 66 08 |....&.f. | [47]: "1990-03-17T16:30:00Z" (637691400) transition_time 0x4c0-0x4c7.7 (8)
|
||||
0x4c0| 00 00 00 00 27 29 b6 08| ....')..| [48]: "1990-10-27T16:30:00Z" (657045000) transition_time 0x4c8-0x4cf.7 (8)
|
||||
0x4d0|00 00 00 00 27 cf d3 08 |....'... | [49]: "1991-03-02T16:30:00Z" (667931400) transition_time 0x4d0-0x4d7.7 (8)
|
||||
0x4d0| 00 00 00 00 29 09 98 08| ....)...| [50]: "1991-10-26T16:30:00Z" (688494600) transition_time 0x4d8-0x4df.7 (8)
|
||||
0x4e0|00 00 00 00 29 cb 64 88 |....).d. | [51]: "1992-03-21T16:30:00Z" (701195400) transition_time 0x4e0-0x4e7.7 (8)
|
||||
0x4e0| 00 00 00 00 2a e9 7a 08| ....*.z.| [52]: "1992-10-24T16:30:00Z" (719944200) transition_time 0x4e8-0x4ef.7 (8)
|
||||
0x4f0|00 00 00 00 2b 98 d1 88 |....+... | [53]: "1993-03-06T16:30:00Z" (731435400) transition_time 0x4f0-0x4f7.7 (8)
|
||||
0x4f0| 00 00 00 00 2c d2 96 88| ....,...| [54]: "1993-10-30T16:30:00Z" (751998600) transition_time 0x4f8-0x4ff.7 (8)
|
||||
0x500|00 00 00 00 2d 8b 28 88 |....-.(. | [55]: "1994-03-19T16:30:00Z" (764094600) transition_time 0x500-0x507.7 (8)
|
||||
0x500| 00 00 00 00 2e b2 78 88| ......x.| [56]: "1994-10-29T16:30:00Z" (783448200) transition_time 0x508-0x50f.7 (8)
|
||||
0x510|00 00 00 00 2f 74 45 08 |..../tE. | [57]: "1995-03-25T16:30:00Z" (796149000) transition_time 0x510-0x517.7 (8)
|
||||
0x510| 00 00 00 00 30 92 5a 88| ....0.Z.| [58]: "1995-10-28T16:30:00Z" (814897800) transition_time 0x518-0x51f.7 (8)
|
||||
0x520|00 00 00 00 31 5d 61 88 |....1]a. | [59]: "1996-03-30T16:30:00Z" (828203400) transition_time 0x520-0x527.7 (8)
|
||||
0x520| 00 00 00 00 32 72 3c 88| ....2r<.| [60]: "1996-10-26T16:30:00Z" (846347400) transition_time 0x528-0x52f.7 (8)
|
||||
0x530|00 00 00 00 33 3d 43 88 |....3=C. | [61]: "1997-03-29T16:30:00Z" (859653000) transition_time 0x530-0x537.7 (8)
|
||||
0x530| 00 00 00 00 34 52 1e 88| ....4R..| [62]: "1997-10-25T16:30:00Z" (877797000) transition_time 0x538-0x53f.7 (8)
|
||||
0x540|00 00 00 00 35 1d 25 88 |....5.%. | [63]: "1998-03-28T16:30:00Z" (891102600) transition_time 0x540-0x547.7 (8)
|
||||
0x540| 00 00 00 00 36 32 00 88| ....62..| [64]: "1998-10-24T16:30:00Z" (909246600) transition_time 0x548-0x54f.7 (8)
|
||||
0x550|00 00 00 00 36 fd 07 88 |....6... | [65]: "1999-03-27T16:30:00Z" (922552200) transition_time 0x550-0x557.7 (8)
|
||||
0x550| 00 00 00 00 38 1b 1d 08| ....8...| [66]: "1999-10-30T16:30:00Z" (941301000) transition_time 0x558-0x55f.7 (8)
|
||||
0x560|00 00 00 00 38 dc e9 88 |....8... | [67]: "2000-03-25T16:30:00Z" (954001800) transition_time 0x560-0x567.7 (8)
|
||||
0x560| 00 00 00 00 39 fa ff 08| ....9...| [68]: "2000-10-28T16:30:00Z" (972750600) transition_time 0x568-0x56f.7 (8)
|
||||
0x570|00 00 00 00 3a bc cb 88 |....:... | [69]: "2001-03-24T16:30:00Z" (985451400) transition_time 0x570-0x577.7 (8)
|
||||
0x570| 00 00 00 00 3b da e1 08| ....;...| [70]: "2001-10-27T16:30:00Z" (1004200200) transition_time 0x578-0x57f.7 (8)
|
||||
0x580|00 00 00 00 3c a5 e8 08 |....<... | [71]: "2002-03-30T16:30:00Z" (1017505800) transition_time 0x580-0x587.7 (8)
|
||||
0x580| 00 00 00 00 3d ba c3 08| ....=...| [72]: "2002-10-26T16:30:00Z" (1035649800) transition_time 0x588-0x58f.7 (8)
|
||||
0x590|00 00 00 00 3e 85 ca 08 |....>... | [73]: "2003-03-29T16:30:00Z" (1048955400) transition_time 0x590-0x597.7 (8)
|
||||
0x590| 00 00 00 00 3f 9a a5 08| ....?...| [74]: "2003-10-25T16:30:00Z" (1067099400) transition_time 0x598-0x59f.7 (8)
|
||||
0x5a0|00 00 00 00 40 65 ac 08 |....@e.. | [75]: "2004-03-27T16:30:00Z" (1080405000) transition_time 0x5a0-0x5a7.7 (8)
|
||||
0x5a0| 00 00 00 00 41 83 c1 88| ....A...| [76]: "2004-10-30T16:30:00Z" (1099153800) transition_time 0x5a8-0x5af.7 (8)
|
||||
0x5b0|00 00 00 00 42 45 8e 08 |....BE.. | [77]: "2005-03-26T16:30:00Z" (1111854600) transition_time 0x5b0-0x5b7.7 (8)
|
||||
0x5b0| 00 00 00 00 43 63 a3 88| ....Cc..| [78]: "2005-10-29T16:30:00Z" (1130603400) transition_time 0x5b8-0x5bf.7 (8)
|
||||
0x5c0|00 00 00 00 44 2e aa 88 |....D... | [79]: "2006-04-01T16:30:00Z" (1143909000) transition_time 0x5c0-0x5c7.7 (8)
|
||||
0x5c0| 00 00 00 00 45 43 85 88| ....EC..| [80]: "2006-10-28T16:30:00Z" (1162053000) transition_time 0x5c8-0x5cf.7 (8)
|
||||
0x5d0|00 00 00 00 46 05 52 08 |....F.R. | [81]: "2007-03-24T16:30:00Z" (1174753800) transition_time 0x5d0-0x5d7.7 (8)
|
||||
0x5d0| 00 00 00 00 47 23 67 88| ....G#g.| [82]: "2007-10-27T16:30:00Z" (1193502600) transition_time 0x5d8-0x5df.7 (8)
|
||||
0x5e0|00 00 00 00 47 f7 a9 08 |....G... | [83]: "2008-04-05T16:30:00Z" (1207413000) transition_time 0x5e0-0x5e7.7 (8)
|
||||
0x5e0| 00 00 00 00 48 e7 9a 08| ....H...| [84]: "2008-10-04T16:30:00Z" (1223137800) transition_time 0x5e8-0x5ef.7 (8)
|
||||
0x5f0|00 00 00 00 49 d7 8b 08 |....I... | [85]: "2009-04-04T16:30:00Z" (1238862600) transition_time 0x5f0-0x5f7.7 (8)
|
||||
0x5f0| 00 00 00 00 4a c7 7c 08| ....J.|.| [86]: "2009-10-03T16:30:00Z" (1254587400) transition_time 0x5f8-0x5ff.7 (8)
|
||||
0x600|00 00 00 00 4b b7 6d 08 |....K.m. | [87]: "2010-04-03T16:30:00Z" (1270312200) transition_time 0x600-0x607.7 (8)
|
||||
0x600| 00 00 00 00 4c a7 5e 08| ....L.^.| [88]: "2010-10-02T16:30:00Z" (1286037000) transition_time 0x608-0x60f.7 (8)
|
||||
0x610|00 00 00 00 4d 97 4f 08 |....M.O. | [89]: "2011-04-02T16:30:00Z" (1301761800) transition_time 0x610-0x617.7 (8)
|
||||
0x610| 00 00 00 00 4e 87 40 08| ....N.@.| [90]: "2011-10-01T16:30:00Z" (1317486600) transition_time 0x618-0x61f.7 (8)
|
||||
0x620|00 00 00 00 4f 77 31 08 |....Ow1. | [91]: "2012-03-31T16:30:00Z" (1333211400) transition_time 0x620-0x627.7 (8)
|
||||
0x620| 00 00 00 00 50 70 5c 88| ....Pp\.| [92]: "2012-10-06T16:30:00Z" (1349541000) transition_time 0x628-0x62f.7 (8)
|
||||
0x630|00 00 00 00 51 60 4d 88 |....Q`M. | [93]: "2013-04-06T16:30:00Z" (1365265800) transition_time 0x630-0x637.7 (8)
|
||||
0x630| 00 00 00 00 52 50 3e 88| ....RP>.| [94]: "2013-10-05T16:30:00Z" (1380990600) transition_time 0x638-0x63f.7 (8)
|
||||
0x640|00 00 00 00 53 40 2f 88 |....S@/. | [95]: "2014-04-05T16:30:00Z" (1396715400) transition_time 0x640-0x647.7 (8)
|
||||
0x640| 00 00 00 00 54 30 20 88| ....T0 .| [96]: "2014-10-04T16:30:00Z" (1412440200) transition_time 0x648-0x64f.7 (8)
|
||||
0x650|00 00 00 00 55 20 11 88 |....U .. | [97]: "2015-04-04T16:30:00Z" (1428165000) transition_time 0x650-0x657.7 (8)
|
||||
0x650| 00 00 00 00 56 10 02 88| ....V...| [98]: "2015-10-03T16:30:00Z" (1443889800) transition_time 0x658-0x65f.7 (8)
|
||||
0x660|00 00 00 00 56 ff f3 88 |....V... | [99]: "2016-04-02T16:30:00Z" (1459614600) transition_time 0x660-0x667.7 (8)
|
||||
0x660| 00 00 00 00 57 ef e4 88| ....W...| [100]: "2016-10-01T16:30:00Z" (1475339400) transition_time 0x668-0x66f.7 (8)
|
||||
0x670|00 00 00 00 58 df d5 88 |....X... | [101]: "2017-04-01T16:30:00Z" (1491064200) transition_time 0x670-0x677.7 (8)
|
||||
0x670| 00 00 00 00 59 cf c6 88| ....Y...| [102]: "2017-09-30T16:30:00Z" (1506789000) transition_time 0x678-0x67f.7 (8)
|
||||
0x680|00 00 00 00 5a bf b7 88 |....Z... | [103]: "2018-03-31T16:30:00Z" (1522513800) transition_time 0x680-0x687.7 (8)
|
||||
0x680| 00 00 00 00 5b b8 e3 08| ....[...| [104]: "2018-10-06T16:30:00Z" (1538843400) transition_time 0x688-0x68f.7 (8)
|
||||
0x690|00 00 00 00 5c a8 d4 08 |....\... | [105]: "2019-04-06T16:30:00Z" (1554568200) transition_time 0x690-0x697.7 (8)
|
||||
0x690| 00 00 00 00 5d 98 c5 08| ....]...| [106]: "2019-10-05T16:30:00Z" (1570293000) transition_time 0x698-0x69f.7 (8)
|
||||
0x6a0|00 00 00 00 5e 88 b6 08 |....^... | [107]: "2020-04-04T16:30:00Z" (1586017800) transition_time 0x6a0-0x6a7.7 (8)
|
||||
0x6a0| 00 00 00 00 5f 78 a7 08| ...._x..| [108]: "2020-10-03T16:30:00Z" (1601742600) transition_time 0x6a8-0x6af.7 (8)
|
||||
0x6b0|00 00 00 00 60 68 98 08 |....`h.. | [109]: "2021-04-03T16:30:00Z" (1617467400) transition_time 0x6b0-0x6b7.7 (8)
|
||||
0x6b0| 00 00 00 00 61 58 89 08| ....aX..| [110]: "2021-10-02T16:30:00Z" (1633192200) transition_time 0x6b8-0x6bf.7 (8)
|
||||
0x6c0|00 00 00 00 62 48 7a 08 |....bHz. | [111]: "2022-04-02T16:30:00Z" (1648917000) transition_time 0x6c0-0x6c7.7 (8)
|
||||
0x6c0| 00 00 00 00 63 38 6b 08| ....c8k.| [112]: "2022-10-01T16:30:00Z" (1664641800) transition_time 0x6c8-0x6cf.7 (8)
|
||||
0x6d0|00 00 00 00 64 28 5c 08 |....d(\. | [113]: "2023-04-01T16:30:00Z" (1680366600) transition_time 0x6d0-0x6d7.7 (8)
|
||||
0x6d0| 00 00 00 00 65 18 4d 08| ....e.M.| [114]: "2023-09-30T16:30:00Z" (1696091400) transition_time 0x6d8-0x6df.7 (8)
|
||||
0x6e0|00 00 00 00 66 11 78 88 |....f.x. | [115]: "2024-04-06T16:30:00Z" (1712421000) transition_time 0x6e0-0x6e7.7 (8)
|
||||
0x6e0| 00 00 00 00 67 01 69 88| ....g.i.| [116]: "2024-10-05T16:30:00Z" (1728145800) transition_time 0x6e8-0x6ef.7 (8)
|
||||
0x6f0|00 00 00 00 67 f1 5a 88 |....g.Z. | [117]: "2025-04-05T16:30:00Z" (1743870600) transition_time 0x6f0-0x6f7.7 (8)
|
||||
0x6f0| 00 00 00 00 68 e1 4b 88| ....h.K.| [118]: "2025-10-04T16:30:00Z" (1759595400) transition_time 0x6f8-0x6ff.7 (8)
|
||||
0x700|00 00 00 00 69 d1 3c 88 |....i.<. | [119]: "2026-04-04T16:30:00Z" (1775320200) transition_time 0x700-0x707.7 (8)
|
||||
0x700| 00 00 00 00 6a c1 2d 88| ....j.-.| [120]: "2026-10-03T16:30:00Z" (1791045000) transition_time 0x708-0x70f.7 (8)
|
||||
0x710|00 00 00 00 6b b1 1e 88 |....k... | [121]: "2027-04-03T16:30:00Z" (1806769800) transition_time 0x710-0x717.7 (8)
|
||||
0x710| 00 00 00 00 6c a1 0f 88| ....l...| [122]: "2027-10-02T16:30:00Z" (1822494600) transition_time 0x718-0x71f.7 (8)
|
||||
0x720|00 00 00 00 6d 91 00 88 |....m... | [123]: "2028-04-01T16:30:00Z" (1838219400) transition_time 0x720-0x727.7 (8)
|
||||
0x720| 00 00 00 00 6e 80 f1 88| ....n...| [124]: "2028-09-30T16:30:00Z" (1853944200) transition_time 0x728-0x72f.7 (8)
|
||||
0x730|00 00 00 00 6f 70 e2 88 |....op.. | [125]: "2029-03-31T16:30:00Z" (1869669000) transition_time 0x730-0x737.7 (8)
|
||||
0x730| 00 00 00 00 70 6a 0e 08| ....pj..| [126]: "2029-10-06T16:30:00Z" (1885998600) transition_time 0x738-0x73f.7 (8)
|
||||
0x740|00 00 00 00 71 59 ff 08 |....qY.. | [127]: "2030-04-06T16:30:00Z" (1901723400) transition_time 0x740-0x747.7 (8)
|
||||
0x740| 00 00 00 00 72 49 f0 08| ....rI..| [128]: "2030-10-05T16:30:00Z" (1917448200) transition_time 0x748-0x74f.7 (8)
|
||||
0x750|00 00 00 00 73 39 e1 08 |....s9.. | [129]: "2031-04-05T16:30:00Z" (1933173000) transition_time 0x750-0x757.7 (8)
|
||||
0x750| 00 00 00 00 74 29 d2 08| ....t)..| [130]: "2031-10-04T16:30:00Z" (1948897800) transition_time 0x758-0x75f.7 (8)
|
||||
0x760|00 00 00 00 75 19 c3 08 |....u... | [131]: "2032-04-03T16:30:00Z" (1964622600) transition_time 0x760-0x767.7 (8)
|
||||
0x760| 00 00 00 00 76 09 b4 08| ....v...| [132]: "2032-10-02T16:30:00Z" (1980347400) transition_time 0x768-0x76f.7 (8)
|
||||
0x770|00 00 00 00 76 f9 a5 08 |....v... | [133]: "2033-04-02T16:30:00Z" (1996072200) transition_time 0x770-0x777.7 (8)
|
||||
0x770| 00 00 00 00 77 e9 96 08| ....w...| [134]: "2033-10-01T16:30:00Z" (2011797000) transition_time 0x778-0x77f.7 (8)
|
||||
0x780|00 00 00 00 78 d9 87 08 |....x... | [135]: "2034-04-01T16:30:00Z" (2027521800) transition_time 0x780-0x787.7 (8)
|
||||
0x780| 00 00 00 00 79 c9 78 08| ....y.x.| [136]: "2034-09-30T16:30:00Z" (2043246600) transition_time 0x788-0x78f.7 (8)
|
||||
0x790|00 00 00 00 7a b9 69 08 |....z.i. | [137]: "2035-03-31T16:30:00Z" (2058971400) transition_time 0x790-0x797.7 (8)
|
||||
0x790| 00 00 00 00 7b b2 94 88| ....{...| [138]: "2035-10-06T16:30:00Z" (2075301000) transition_time 0x798-0x79f.7 (8)
|
||||
0x7a0|00 00 00 00 7c a2 85 88 |....|... | [139]: "2036-04-05T16:30:00Z" (2091025800) transition_time 0x7a0-0x7a7.7 (8)
|
||||
0x7a0| 00 00 00 00 7d 92 76 88| ....}.v.| [140]: "2036-10-04T16:30:00Z" (2106750600) transition_time 0x7a8-0x7af.7 (8)
|
||||
0x7b0|00 00 00 00 7e 82 67 88 |....~.g. | [141]: "2037-04-04T16:30:00Z" (2122475400) transition_time 0x7b0-0x7b7.7 (8)
|
||||
0x7b0| 00 00 00 00 7f 72 58 88| .....rX.| [142]: "2037-10-03T16:30:00Z" (2138200200) transition_time 0x7b8-0x7bf.7 (8)
|
||||
| | | transition_types[0:143]: 0x7c0-0x84e.7 (143)
|
||||
0x7c0|01 |. | [0]: 1 transition_type 0x7c0-0x7c0.7 (1)
|
||||
0x7c0| 04 | . | [1]: 4 transition_type 0x7c1-0x7c1.7 (1)
|
||||
0x7c0| 02 | . | [2]: 2 transition_type 0x7c2-0x7c2.7 (1)
|
||||
0x7c0| 03 | . | [3]: 3 transition_type 0x7c3-0x7c3.7 (1)
|
||||
0x7c0| 02 | . | [4]: 2 transition_type 0x7c4-0x7c4.7 (1)
|
||||
0x7c0| 03 | . | [5]: 3 transition_type 0x7c5-0x7c5.7 (1)
|
||||
0x7c0| 02 | . | [6]: 2 transition_type 0x7c6-0x7c6.7 (1)
|
||||
0x7c0| 03 | . | [7]: 3 transition_type 0x7c7-0x7c7.7 (1)
|
||||
0x7c0| 02 | . | [8]: 2 transition_type 0x7c8-0x7c8.7 (1)
|
||||
0x7c0| 03 | . | [9]: 3 transition_type 0x7c9-0x7c9.7 (1)
|
||||
0x7c0| 02 | . | [10]: 2 transition_type 0x7ca-0x7ca.7 (1)
|
||||
0x7c0| 03 | . | [11]: 3 transition_type 0x7cb-0x7cb.7 (1)
|
||||
0x7c0| 02 | . | [12]: 2 transition_type 0x7cc-0x7cc.7 (1)
|
||||
0x7c0| 03 | . | [13]: 3 transition_type 0x7cd-0x7cd.7 (1)
|
||||
0x7c0| 02 | . | [14]: 2 transition_type 0x7ce-0x7ce.7 (1)
|
||||
0x7c0| 03| .| [15]: 3 transition_type 0x7cf-0x7cf.7 (1)
|
||||
0x7d0|02 |. | [16]: 2 transition_type 0x7d0-0x7d0.7 (1)
|
||||
0x7d0| 03 | . | [17]: 3 transition_type 0x7d1-0x7d1.7 (1)
|
||||
0x7d0| 02 | . | [18]: 2 transition_type 0x7d2-0x7d2.7 (1)
|
||||
0x7d0| 03 | . | [19]: 3 transition_type 0x7d3-0x7d3.7 (1)
|
||||
0x7d0| 02 | . | [20]: 2 transition_type 0x7d4-0x7d4.7 (1)
|
||||
0x7d0| 03 | . | [21]: 3 transition_type 0x7d5-0x7d5.7 (1)
|
||||
0x7d0| 02 | . | [22]: 2 transition_type 0x7d6-0x7d6.7 (1)
|
||||
0x7d0| 03 | . | [23]: 3 transition_type 0x7d7-0x7d7.7 (1)
|
||||
0x7d0| 02 | . | [24]: 2 transition_type 0x7d8-0x7d8.7 (1)
|
||||
0x7d0| 03 | . | [25]: 3 transition_type 0x7d9-0x7d9.7 (1)
|
||||
0x7d0| 02 | . | [26]: 2 transition_type 0x7da-0x7da.7 (1)
|
||||
0x7d0| 03 | . | [27]: 3 transition_type 0x7db-0x7db.7 (1)
|
||||
0x7d0| 02 | . | [28]: 2 transition_type 0x7dc-0x7dc.7 (1)
|
||||
0x7d0| 03 | . | [29]: 3 transition_type 0x7dd-0x7dd.7 (1)
|
||||
0x7d0| 02 | . | [30]: 2 transition_type 0x7de-0x7de.7 (1)
|
||||
0x7d0| 03| .| [31]: 3 transition_type 0x7df-0x7df.7 (1)
|
||||
0x7e0|02 |. | [32]: 2 transition_type 0x7e0-0x7e0.7 (1)
|
||||
0x7e0| 03 | . | [33]: 3 transition_type 0x7e1-0x7e1.7 (1)
|
||||
0x7e0| 02 | . | [34]: 2 transition_type 0x7e2-0x7e2.7 (1)
|
||||
0x7e0| 03 | . | [35]: 3 transition_type 0x7e3-0x7e3.7 (1)
|
||||
0x7e0| 02 | . | [36]: 2 transition_type 0x7e4-0x7e4.7 (1)
|
||||
0x7e0| 03 | . | [37]: 3 transition_type 0x7e5-0x7e5.7 (1)
|
||||
0x7e0| 02 | . | [38]: 2 transition_type 0x7e6-0x7e6.7 (1)
|
||||
0x7e0| 03 | . | [39]: 3 transition_type 0x7e7-0x7e7.7 (1)
|
||||
0x7e0| 02 | . | [40]: 2 transition_type 0x7e8-0x7e8.7 (1)
|
||||
0x7e0| 03 | . | [41]: 3 transition_type 0x7e9-0x7e9.7 (1)
|
||||
0x7e0| 02 | . | [42]: 2 transition_type 0x7ea-0x7ea.7 (1)
|
||||
0x7e0| 03 | . | [43]: 3 transition_type 0x7eb-0x7eb.7 (1)
|
||||
0x7e0| 02 | . | [44]: 2 transition_type 0x7ec-0x7ec.7 (1)
|
||||
0x7e0| 03 | . | [45]: 3 transition_type 0x7ed-0x7ed.7 (1)
|
||||
0x7e0| 02 | . | [46]: 2 transition_type 0x7ee-0x7ee.7 (1)
|
||||
0x7e0| 03| .| [47]: 3 transition_type 0x7ef-0x7ef.7 (1)
|
||||
0x7f0|02 |. | [48]: 2 transition_type 0x7f0-0x7f0.7 (1)
|
||||
0x7f0| 03 | . | [49]: 3 transition_type 0x7f1-0x7f1.7 (1)
|
||||
0x7f0| 02 | . | [50]: 2 transition_type 0x7f2-0x7f2.7 (1)
|
||||
0x7f0| 03 | . | [51]: 3 transition_type 0x7f3-0x7f3.7 (1)
|
||||
0x7f0| 02 | . | [52]: 2 transition_type 0x7f4-0x7f4.7 (1)
|
||||
0x7f0| 03 | . | [53]: 3 transition_type 0x7f5-0x7f5.7 (1)
|
||||
0x7f0| 02 | . | [54]: 2 transition_type 0x7f6-0x7f6.7 (1)
|
||||
0x7f0| 03 | . | [55]: 3 transition_type 0x7f7-0x7f7.7 (1)
|
||||
0x7f0| 02 | . | [56]: 2 transition_type 0x7f8-0x7f8.7 (1)
|
||||
0x7f0| 03 | . | [57]: 3 transition_type 0x7f9-0x7f9.7 (1)
|
||||
0x7f0| 02 | . | [58]: 2 transition_type 0x7fa-0x7fa.7 (1)
|
||||
0x7f0| 03 | . | [59]: 3 transition_type 0x7fb-0x7fb.7 (1)
|
||||
0x7f0| 02 | . | [60]: 2 transition_type 0x7fc-0x7fc.7 (1)
|
||||
0x7f0| 03 | . | [61]: 3 transition_type 0x7fd-0x7fd.7 (1)
|
||||
0x7f0| 02 | . | [62]: 2 transition_type 0x7fe-0x7fe.7 (1)
|
||||
0x7f0| 03| .| [63]: 3 transition_type 0x7ff-0x7ff.7 (1)
|
||||
0x800|02 |. | [64]: 2 transition_type 0x800-0x800.7 (1)
|
||||
0x800| 03 | . | [65]: 3 transition_type 0x801-0x801.7 (1)
|
||||
0x800| 02 | . | [66]: 2 transition_type 0x802-0x802.7 (1)
|
||||
0x800| 03 | . | [67]: 3 transition_type 0x803-0x803.7 (1)
|
||||
0x800| 02 | . | [68]: 2 transition_type 0x804-0x804.7 (1)
|
||||
0x800| 03 | . | [69]: 3 transition_type 0x805-0x805.7 (1)
|
||||
0x800| 02 | . | [70]: 2 transition_type 0x806-0x806.7 (1)
|
||||
0x800| 03 | . | [71]: 3 transition_type 0x807-0x807.7 (1)
|
||||
0x800| 02 | . | [72]: 2 transition_type 0x808-0x808.7 (1)
|
||||
0x800| 03 | . | [73]: 3 transition_type 0x809-0x809.7 (1)
|
||||
0x800| 02 | . | [74]: 2 transition_type 0x80a-0x80a.7 (1)
|
||||
0x800| 03 | . | [75]: 3 transition_type 0x80b-0x80b.7 (1)
|
||||
0x800| 02 | . | [76]: 2 transition_type 0x80c-0x80c.7 (1)
|
||||
0x800| 03 | . | [77]: 3 transition_type 0x80d-0x80d.7 (1)
|
||||
0x800| 02 | . | [78]: 2 transition_type 0x80e-0x80e.7 (1)
|
||||
0x800| 03| .| [79]: 3 transition_type 0x80f-0x80f.7 (1)
|
||||
0x810|02 |. | [80]: 2 transition_type 0x810-0x810.7 (1)
|
||||
0x810| 03 | . | [81]: 3 transition_type 0x811-0x811.7 (1)
|
||||
0x810| 02 | . | [82]: 2 transition_type 0x812-0x812.7 (1)
|
||||
0x810| 03 | . | [83]: 3 transition_type 0x813-0x813.7 (1)
|
||||
0x810| 02 | . | [84]: 2 transition_type 0x814-0x814.7 (1)
|
||||
0x810| 03 | . | [85]: 3 transition_type 0x815-0x815.7 (1)
|
||||
0x810| 02 | . | [86]: 2 transition_type 0x816-0x816.7 (1)
|
||||
0x810| 03 | . | [87]: 3 transition_type 0x817-0x817.7 (1)
|
||||
0x810| 02 | . | [88]: 2 transition_type 0x818-0x818.7 (1)
|
||||
0x810| 03 | . | [89]: 3 transition_type 0x819-0x819.7 (1)
|
||||
0x810| 02 | . | [90]: 2 transition_type 0x81a-0x81a.7 (1)
|
||||
0x810| 03 | . | [91]: 3 transition_type 0x81b-0x81b.7 (1)
|
||||
0x810| 02 | . | [92]: 2 transition_type 0x81c-0x81c.7 (1)
|
||||
0x810| 03 | . | [93]: 3 transition_type 0x81d-0x81d.7 (1)
|
||||
0x810| 02 | . | [94]: 2 transition_type 0x81e-0x81e.7 (1)
|
||||
0x810| 03| .| [95]: 3 transition_type 0x81f-0x81f.7 (1)
|
||||
0x820|02 |. | [96]: 2 transition_type 0x820-0x820.7 (1)
|
||||
0x820| 03 | . | [97]: 3 transition_type 0x821-0x821.7 (1)
|
||||
0x820| 02 | . | [98]: 2 transition_type 0x822-0x822.7 (1)
|
||||
0x820| 03 | . | [99]: 3 transition_type 0x823-0x823.7 (1)
|
||||
0x820| 02 | . | [100]: 2 transition_type 0x824-0x824.7 (1)
|
||||
0x820| 03 | . | [101]: 3 transition_type 0x825-0x825.7 (1)
|
||||
0x820| 02 | . | [102]: 2 transition_type 0x826-0x826.7 (1)
|
||||
0x820| 03 | . | [103]: 3 transition_type 0x827-0x827.7 (1)
|
||||
0x820| 02 | . | [104]: 2 transition_type 0x828-0x828.7 (1)
|
||||
0x820| 03 | . | [105]: 3 transition_type 0x829-0x829.7 (1)
|
||||
0x820| 02 | . | [106]: 2 transition_type 0x82a-0x82a.7 (1)
|
||||
0x820| 03 | . | [107]: 3 transition_type 0x82b-0x82b.7 (1)
|
||||
0x820| 02 | . | [108]: 2 transition_type 0x82c-0x82c.7 (1)
|
||||
0x820| 03 | . | [109]: 3 transition_type 0x82d-0x82d.7 (1)
|
||||
0x820| 02 | . | [110]: 2 transition_type 0x82e-0x82e.7 (1)
|
||||
0x820| 03| .| [111]: 3 transition_type 0x82f-0x82f.7 (1)
|
||||
0x830|02 |. | [112]: 2 transition_type 0x830-0x830.7 (1)
|
||||
0x830| 03 | . | [113]: 3 transition_type 0x831-0x831.7 (1)
|
||||
0x830| 02 | . | [114]: 2 transition_type 0x832-0x832.7 (1)
|
||||
0x830| 03 | . | [115]: 3 transition_type 0x833-0x833.7 (1)
|
||||
0x830| 02 | . | [116]: 2 transition_type 0x834-0x834.7 (1)
|
||||
0x830| 03 | . | [117]: 3 transition_type 0x835-0x835.7 (1)
|
||||
0x830| 02 | . | [118]: 2 transition_type 0x836-0x836.7 (1)
|
||||
0x830| 03 | . | [119]: 3 transition_type 0x837-0x837.7 (1)
|
||||
0x830| 02 | . | [120]: 2 transition_type 0x838-0x838.7 (1)
|
||||
0x830| 03 | . | [121]: 3 transition_type 0x839-0x839.7 (1)
|
||||
0x830| 02 | . | [122]: 2 transition_type 0x83a-0x83a.7 (1)
|
||||
0x830| 03 | . | [123]: 3 transition_type 0x83b-0x83b.7 (1)
|
||||
0x830| 02 | . | [124]: 2 transition_type 0x83c-0x83c.7 (1)
|
||||
0x830| 03 | . | [125]: 3 transition_type 0x83d-0x83d.7 (1)
|
||||
0x830| 02 | . | [126]: 2 transition_type 0x83e-0x83e.7 (1)
|
||||
0x830| 03| .| [127]: 3 transition_type 0x83f-0x83f.7 (1)
|
||||
0x840|02 |. | [128]: 2 transition_type 0x840-0x840.7 (1)
|
||||
0x840| 03 | . | [129]: 3 transition_type 0x841-0x841.7 (1)
|
||||
0x840| 02 | . | [130]: 2 transition_type 0x842-0x842.7 (1)
|
||||
0x840| 03 | . | [131]: 3 transition_type 0x843-0x843.7 (1)
|
||||
0x840| 02 | . | [132]: 2 transition_type 0x844-0x844.7 (1)
|
||||
0x840| 03 | . | [133]: 3 transition_type 0x845-0x845.7 (1)
|
||||
0x840| 02 | . | [134]: 2 transition_type 0x846-0x846.7 (1)
|
||||
0x840| 03 | . | [135]: 3 transition_type 0x847-0x847.7 (1)
|
||||
0x840| 02 | . | [136]: 2 transition_type 0x848-0x848.7 (1)
|
||||
0x840| 03 | . | [137]: 3 transition_type 0x849-0x849.7 (1)
|
||||
0x840| 02 | . | [138]: 2 transition_type 0x84a-0x84a.7 (1)
|
||||
0x840| 03 | . | [139]: 3 transition_type 0x84b-0x84b.7 (1)
|
||||
0x840| 02 | . | [140]: 2 transition_type 0x84c-0x84c.7 (1)
|
||||
0x840| 03 | . | [141]: 3 transition_type 0x84d-0x84d.7 (1)
|
||||
0x840| 02 | . | [142]: 2 transition_type 0x84e-0x84e.7 (1)
|
||||
| | | local_time_type_records[0:5]: 0x84f-0x86c.7 (30)
|
||||
| | | [0]{}: local_time_type 0x84f-0x854.7 (6)
|
||||
0x840| 00| .| utoff: 33260 (valid) 0x84f-0x852.7 (4)
|
||||
0x850|00 81 ec |... |
|
||||
0x850| 00 | . | dst: 0 (valid) 0x853-0x853.7 (1)
|
||||
0x850| 00 | . | idx: 0 (valid) 0x854-0x854.7 (1)
|
||||
| | | [1]{}: local_time_type 0x855-0x85a.7 (6)
|
||||
0x850| 00 00 7e 90 | ..~. | utoff: 32400 (valid) 0x855-0x858.7 (4)
|
||||
0x850| 00 | . | dst: 0 (valid) 0x859-0x859.7 (1)
|
||||
0x850| 04 | . | idx: 4 (valid) 0x85a-0x85a.7 (1)
|
||||
| | | [2]{}: local_time_type 0x85b-0x860.7 (6)
|
||||
0x850| 00 00 93 a8 | .... | utoff: 37800 (valid) 0x85b-0x85e.7 (4)
|
||||
0x850| 01| .| dst: 1 (valid) 0x85f-0x85f.7 (1)
|
||||
0x860|09 |. | idx: 9 (valid) 0x860-0x860.7 (1)
|
||||
| | | [3]{}: local_time_type 0x861-0x866.7 (6)
|
||||
0x860| 00 00 85 98 | .... | utoff: 34200 (valid) 0x861-0x864.7 (4)
|
||||
0x860| 00 | . | dst: 0 (valid) 0x865-0x865.7 (1)
|
||||
0x860| 04 | . | idx: 4 (valid) 0x866-0x866.7 (1)
|
||||
| | | [4]{}: local_time_type 0x867-0x86c.7 (6)
|
||||
0x860| 00 00 85 98 | .... | utoff: 34200 (valid) 0x867-0x86a.7 (4)
|
||||
0x860| 00 | . | dst: 0 (valid) 0x86b-0x86b.7 (1)
|
||||
0x860| 04 | . | idx: 4 (valid) 0x86c-0x86c.7 (1)
|
||||
| | | time_zone_designations[0:3]: 0x86d-0x87a.7 (14)
|
||||
0x860| 4c 4d 54| LMT| [0]: "LMT" time_zone_designation 0x86d-0x870.7 (4)
|
||||
0x870|00 |. |
|
||||
0x870| 41 43 53 54 00 | ACST. | [1]: "ACST" time_zone_designation 0x871-0x875.7 (5)
|
||||
0x870| 41 43 44 54 00 | ACDT. | [2]: "ACDT" time_zone_designation 0x876-0x87a.7 (5)
|
||||
| | | leap_second_records[0:0]: 0x87b-NA (0)
|
||||
| | | standard_wall_indicators[0:5]: 0x87b-0x87f.7 (5)
|
||||
0x870| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x87b-0x87b.7 (1)
|
||||
0x870| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x87c-0x87c.7 (1)
|
||||
0x870| 01 | . | [2]: 1 standard_wall_indicator (valid) 0x87d-0x87d.7 (1)
|
||||
0x870| 01 | . | [3]: 1 standard_wall_indicator (valid) 0x87e-0x87e.7 (1)
|
||||
0x870| 00| .| [4]: 0 standard_wall_indicator (valid) 0x87f-0x87f.7 (1)
|
||||
| | | ut_local_indicators[0:0]: 0x880-NA (0)
|
||||
| | | footer{}: 0x880-0x89f.7 (32)
|
||||
0x880|0a |. | nl1: 10 (valid) 0x880-0x880.7 (1)
|
||||
0x880| 41 43 53 54 2d 39 3a 33 30 41 43 44 54 2c 4d| ACST-9:30ACDT,M| tz_string: "ACST-9:30ACDT,M10.1.0,M4.1.0/3" 0x881-0x89e.7 (30)
|
||||
0x890|31 30 2e 31 2e 30 2c 4d 34 2e 31 2e 30 2f 33 |10.1.0,M4.1.0/3 |
|
||||
0x890| 0a| .| nl2: 10 (valid) 0x89f-0x89f.7 (1)
|
BIN
format/tzif/testdata/Algiers
vendored
Normal file
BIN
format/tzif/testdata/Algiers
vendored
Normal file
Binary file not shown.
293
format/tzif/testdata/Algiers.fqtest
vendored
Normal file
293
format/tzif/testdata/Algiers.fqtest
vendored
Normal file
@ -0,0 +1,293 @@
|
||||
$ fq -d tzif dv Algiers
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: Algiers (tzif) 0x0-0x2de.7 (735)
|
||||
| | | v1header{}: 0x0-0x2b.7 (44)
|
||||
0x000|54 5a 69 66 |TZif | magic: 0x545a6966 (valid) 0x0-0x3.7 (4)
|
||||
0x000| 32 | 2 | ver: "2" (0x32) (valid) 0x4-0x4.7 (1)
|
||||
0x000| 00 00 00 00 00 00 00 00 00 00 00| ...........| reserved: raw bits 0x5-0x13.7 (15)
|
||||
0x010|00 00 00 00 |.... |
|
||||
0x010| 00 00 00 00 | .... | isutcnt: 0 0x14-0x17.7 (4)
|
||||
0x010| 00 00 00 08 | .... | isstdcnt: 8 0x18-0x1b.7 (4)
|
||||
0x010| 00 00 00 00| ....| leapcnt: 0 0x1c-0x1f.7 (4)
|
||||
0x020|00 00 00 22 |..." | timecnt: 34 0x20-0x23.7 (4)
|
||||
0x020| 00 00 00 08 | .... | typecnt: 8 0x24-0x27.7 (4)
|
||||
0x020| 00 00 00 1a | .... | charcnt: 26 0x28-0x2b.7 (4)
|
||||
| | | v1datablock{}: 0x2c-0x127.7 (252)
|
||||
| | | transition_times[0:34]: 0x2c-0xb3.7 (136)
|
||||
0x020| 80 00 00 00| ....| [0]: "1901-12-13T20:45:52Z" (-2147483648) transition_time 0x2c-0x2f.7 (4)
|
||||
0x030|91 60 50 4f |.`PO | [1]: "1911-03-10T23:50:39Z" (-1855958961) transition_time 0x30-0x33.7 (4)
|
||||
0x030| 9b 47 78 f0 | .Gx. | [2]: "1916-06-14T23:00:00Z" (-1689814800) transition_time 0x34-0x37.7 (4)
|
||||
0x030| 9b d7 2c 70 | ..,p | [3]: "1916-10-01T23:00:00Z" (-1680397200) transition_time 0x38-0x3b.7 (4)
|
||||
0x030| 9c bc 91 70| ...p| [4]: "1917-03-24T23:00:00Z" (-1665363600) transition_time 0x3c-0x3f.7 (4)
|
||||
0x040|9d c0 48 f0 |..H. | [5]: "1917-10-07T23:00:00Z" (-1648342800) transition_time 0x40-0x43.7 (4)
|
||||
0x040| 9e 89 fe 70 | ...p | [6]: "1918-03-09T23:00:00Z" (-1635123600) transition_time 0x44-0x47.7 (4)
|
||||
0x040| 9f a0 2a f0 | ..*. | [7]: "1918-10-06T23:00:00Z" (-1616893200) transition_time 0x48-0x4b.7 (4)
|
||||
0x040| a0 60 a5 f0| .`..| [8]: "1919-03-01T23:00:00Z" (-1604278800) transition_time 0x4c-0x4f.7 (4)
|
||||
0x050|a1 80 0c f0 |.... | [9]: "1919-10-05T23:00:00Z" (-1585443600) transition_time 0x50-0x53.7 (4)
|
||||
0x050| a2 2e 12 f0 | .... | [10]: "1920-02-14T23:00:00Z" (-1574038800) transition_time 0x54-0x57.7 (4)
|
||||
0x050| a3 7a 4c f0 | .zL. | [11]: "1920-10-23T23:00:00Z" (-1552266000) transition_time 0x58-0x5b.7 (4)
|
||||
0x050| a4 35 81 f0| .5..| [12]: "1921-03-14T23:00:00Z" (-1539997200) transition_time 0x5c-0x5f.7 (4)
|
||||
0x060|a4 b8 06 70 |...p | [13]: "1921-06-21T23:00:00Z" (-1531443600) transition_time 0x60-0x63.7 (4)
|
||||
0x060| c6 ff 06 70 | ...p | [14]: "1939-09-11T23:00:00Z" (-956365200) transition_time 0x64-0x67.7 (4)
|
||||
0x060| c7 58 ba 80 | .X.. | [15]: "1939-11-19T00:00:00Z" (-950486400) transition_time 0x68-0x6b.7 (4)
|
||||
0x060| c7 da 09 a0| ....| [16]: "1940-02-25T02:00:00Z" (-942012000) transition_time 0x6c-0x6f.7 (4)
|
||||
0x070|cf 92 34 10 |..4. | [17]: "1944-04-03T01:00:00Z" (-812502000) transition_time 0x70-0x73.7 (4)
|
||||
0x070| d0 8a 00 00 | .... | [18]: "1944-10-08T00:00:00Z" (-796262400) transition_time 0x74-0x77.7 (4)
|
||||
0x070| d1 72 16 10 | .r.. | [19]: "1945-04-02T01:00:00Z" (-781052400) transition_time 0x78-0x7b.7 (4)
|
||||
0x070| d2 4e 24 70| .N$p| [20]: "1945-09-15T23:00:00Z" (-766630800) transition_time 0x7c-0x7f.7 (4)
|
||||
0x080|d4 4b 07 70 |.K.p | [21]: "1946-10-06T23:00:00Z" (-733280400) transition_time 0x80-0x83.7 (4)
|
||||
0x080| e5 ce d3 00 | .... | [22]: "1956-01-29T00:00:00Z" (-439430400) transition_time 0x84-0x87.7 (4)
|
||||
0x080| f3 5c b0 f0 | .\.. | [23]: "1963-04-13T23:00:00Z" (-212029200) transition_time 0x88-0x8b.7 (4)
|
||||
0x080| 02 78 c1 f0| .x..| [24]: "1971-04-25T23:00:00Z" (41468400) transition_time 0x8c-0x8f.7 (4)
|
||||
0x090|03 43 c8 f0 |.C.. | [25]: "1971-09-26T23:00:00Z" (54774000) transition_time 0x90-0x93.7 (4)
|
||||
0x090| 0d cf d7 00 | .... | [26]: "1977-05-06T00:00:00Z" (231724800) transition_time 0x94-0x97.7 (4)
|
||||
0x090| 0e ad 44 f0 | ..D. | [27]: "1977-10-20T23:00:00Z" (246236400) transition_time 0x98-0x9b.7 (4)
|
||||
0x090| 0f 78 5a 00| .xZ.| [28]: "1978-03-24T00:00:00Z" (259545600) transition_time 0x9c-0x9f.7 (4)
|
||||
0x0a0|10 68 59 10 |.hY. | [29]: "1978-09-22T01:00:00Z" (275274000) transition_time 0xa0-0xa3.7 (4)
|
||||
0x0a0| 12 76 43 70 | .vCp | [30]: "1979-10-25T23:00:00Z" (309740400) transition_time 0xa4-0xa7.7 (4)
|
||||
0x0a0| 13 66 42 80 | .fB. | [31]: "1980-04-25T00:00:00Z" (325468800) transition_time 0xa8-0xab.7 (4)
|
||||
0x0a0| 14 5f 7c 10| ._|.| [32]: "1980-10-31T01:00:00Z" (341802000) transition_time 0xac-0xaf.7 (4)
|
||||
0x0b0|15 4f 5f 00 |.O_. | [33]: "1981-05-01T00:00:00Z" (357523200) transition_time 0xb0-0xb3.7 (4)
|
||||
| | | transition_types[0:34]: 0xb4-0xd5.7 (34)
|
||||
0x0b0| 01 | . | [0]: 1 transition_type 0xb4-0xb4.7 (1)
|
||||
0x0b0| 04 | . | [1]: 4 transition_type 0xb5-0xb5.7 (1)
|
||||
0x0b0| 02 | . | [2]: 2 transition_type 0xb6-0xb6.7 (1)
|
||||
0x0b0| 03 | . | [3]: 3 transition_type 0xb7-0xb7.7 (1)
|
||||
0x0b0| 02 | . | [4]: 2 transition_type 0xb8-0xb8.7 (1)
|
||||
0x0b0| 03 | . | [5]: 3 transition_type 0xb9-0xb9.7 (1)
|
||||
0x0b0| 02 | . | [6]: 2 transition_type 0xba-0xba.7 (1)
|
||||
0x0b0| 03 | . | [7]: 3 transition_type 0xbb-0xbb.7 (1)
|
||||
0x0b0| 02 | . | [8]: 2 transition_type 0xbc-0xbc.7 (1)
|
||||
0x0b0| 03 | . | [9]: 3 transition_type 0xbd-0xbd.7 (1)
|
||||
0x0b0| 02 | . | [10]: 2 transition_type 0xbe-0xbe.7 (1)
|
||||
0x0b0| 03| .| [11]: 3 transition_type 0xbf-0xbf.7 (1)
|
||||
0x0c0|02 |. | [12]: 2 transition_type 0xc0-0xc0.7 (1)
|
||||
0x0c0| 03 | . | [13]: 3 transition_type 0xc1-0xc1.7 (1)
|
||||
0x0c0| 02 | . | [14]: 2 transition_type 0xc2-0xc2.7 (1)
|
||||
0x0c0| 04 | . | [15]: 4 transition_type 0xc3-0xc3.7 (1)
|
||||
0x0c0| 06 | . | [16]: 6 transition_type 0xc4-0xc4.7 (1)
|
||||
0x0c0| 05 | . | [17]: 5 transition_type 0xc5-0xc5.7 (1)
|
||||
0x0c0| 06 | . | [18]: 6 transition_type 0xc6-0xc6.7 (1)
|
||||
0x0c0| 05 | . | [19]: 5 transition_type 0xc7-0xc7.7 (1)
|
||||
0x0c0| 06 | . | [20]: 6 transition_type 0xc8-0xc8.7 (1)
|
||||
0x0c0| 04 | . | [21]: 4 transition_type 0xc9-0xc9.7 (1)
|
||||
0x0c0| 06 | . | [22]: 6 transition_type 0xca-0xca.7 (1)
|
||||
0x0c0| 04 | . | [23]: 4 transition_type 0xcb-0xcb.7 (1)
|
||||
0x0c0| 02 | . | [24]: 2 transition_type 0xcc-0xcc.7 (1)
|
||||
0x0c0| 03 | . | [25]: 3 transition_type 0xcd-0xcd.7 (1)
|
||||
0x0c0| 07 | . | [26]: 7 transition_type 0xce-0xce.7 (1)
|
||||
0x0c0| 06| .| [27]: 6 transition_type 0xcf-0xcf.7 (1)
|
||||
0x0d0|05 |. | [28]: 5 transition_type 0xd0-0xd0.7 (1)
|
||||
0x0d0| 06 | . | [29]: 6 transition_type 0xd1-0xd1.7 (1)
|
||||
0x0d0| 04 | . | [30]: 4 transition_type 0xd2-0xd2.7 (1)
|
||||
0x0d0| 07 | . | [31]: 7 transition_type 0xd3-0xd3.7 (1)
|
||||
0x0d0| 04 | . | [32]: 4 transition_type 0xd4-0xd4.7 (1)
|
||||
0x0d0| 06 | . | [33]: 6 transition_type 0xd5-0xd5.7 (1)
|
||||
| | | local_time_type_records[0:8]: 0xd6-0x105.7 (48)
|
||||
| | | [0]{}: local_time_type 0xd6-0xdb.7 (6)
|
||||
0x0d0| 00 00 02 dc | .... | utoff: 732 (valid) 0xd6-0xd9.7 (4)
|
||||
0x0d0| 00 | . | dst: 0 (valid) 0xda-0xda.7 (1)
|
||||
0x0d0| 00 | . | idx: 0 (valid) 0xdb-0xdb.7 (1)
|
||||
| | | [1]{}: local_time_type 0xdc-0xe1.7 (6)
|
||||
0x0d0| 00 00 02 31| ...1| utoff: 561 (valid) 0xdc-0xdf.7 (4)
|
||||
0x0e0|00 |. | dst: 0 (valid) 0xe0-0xe0.7 (1)
|
||||
0x0e0| 04 | . | idx: 4 (valid) 0xe1-0xe1.7 (1)
|
||||
| | | [2]{}: local_time_type 0xe2-0xe7.7 (6)
|
||||
0x0e0| 00 00 0e 10 | .... | utoff: 3600 (valid) 0xe2-0xe5.7 (4)
|
||||
0x0e0| 01 | . | dst: 1 (valid) 0xe6-0xe6.7 (1)
|
||||
0x0e0| 08 | . | idx: 8 (valid) 0xe7-0xe7.7 (1)
|
||||
| | | [3]{}: local_time_type 0xe8-0xed.7 (6)
|
||||
0x0e0| 00 00 00 00 | .... | utoff: 0 (valid) 0xe8-0xeb.7 (4)
|
||||
0x0e0| 00 | . | dst: 0 (valid) 0xec-0xec.7 (1)
|
||||
0x0e0| 0d | . | idx: 13 (valid) 0xed-0xed.7 (1)
|
||||
| | | [4]{}: local_time_type 0xee-0xf3.7 (6)
|
||||
0x0e0| 00 00| ..| utoff: 0 (valid) 0xee-0xf1.7 (4)
|
||||
0x0f0|00 00 |.. |
|
||||
0x0f0| 00 | . | dst: 0 (valid) 0xf2-0xf2.7 (1)
|
||||
0x0f0| 0d | . | idx: 13 (valid) 0xf3-0xf3.7 (1)
|
||||
| | | [5]{}: local_time_type 0xf4-0xf9.7 (6)
|
||||
0x0f0| 00 00 1c 20 | ... | utoff: 7200 (valid) 0xf4-0xf7.7 (4)
|
||||
0x0f0| 01 | . | dst: 1 (valid) 0xf8-0xf8.7 (1)
|
||||
0x0f0| 11 | . | idx: 17 (valid) 0xf9-0xf9.7 (1)
|
||||
| | | [6]{}: local_time_type 0xfa-0xff.7 (6)
|
||||
0x0f0| 00 00 0e 10 | .... | utoff: 3600 (valid) 0xfa-0xfd.7 (4)
|
||||
0x0f0| 00 | . | dst: 0 (valid) 0xfe-0xfe.7 (1)
|
||||
0x0f0| 16| .| idx: 22 (valid) 0xff-0xff.7 (1)
|
||||
| | | [7]{}: local_time_type 0x100-0x105.7 (6)
|
||||
0x100|00 00 0e 10 |.... | utoff: 3600 (valid) 0x100-0x103.7 (4)
|
||||
0x100| 01 | . | dst: 1 (valid) 0x104-0x104.7 (1)
|
||||
0x100| 08 | . | idx: 8 (valid) 0x105-0x105.7 (1)
|
||||
| | | time_zone_designations[0:6]: 0x106-0x11f.7 (26)
|
||||
0x100| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x106-0x109.7 (4)
|
||||
0x100| 50 4d 54 00 | PMT. | [1]: "PMT" time_zone_designation 0x10a-0x10d.7 (4)
|
||||
0x100| 57 45| WE| [2]: "WEST" time_zone_designation 0x10e-0x112.7 (5)
|
||||
0x110|53 54 00 |ST. |
|
||||
0x110| 57 45 54 00 | WET. | [3]: "WET" time_zone_designation 0x113-0x116.7 (4)
|
||||
0x110| 43 45 53 54 00 | CEST. | [4]: "CEST" time_zone_designation 0x117-0x11b.7 (5)
|
||||
0x110| 43 45 54 00| CET.| [5]: "CET" time_zone_designation 0x11c-0x11f.7 (4)
|
||||
| | | leap_second_records[0:0]: 0x120-NA (0)
|
||||
| | | standard_wall_indicators[0:8]: 0x120-0x127.7 (8)
|
||||
0x120|00 |. | [0]: 0 standard_wall_indicator (valid) 0x120-0x120.7 (1)
|
||||
0x120| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x121-0x121.7 (1)
|
||||
0x120| 01 | . | [2]: 1 standard_wall_indicator (valid) 0x122-0x122.7 (1)
|
||||
0x120| 01 | . | [3]: 1 standard_wall_indicator (valid) 0x123-0x123.7 (1)
|
||||
0x120| 00 | . | [4]: 0 standard_wall_indicator (valid) 0x124-0x124.7 (1)
|
||||
0x120| 00 | . | [5]: 0 standard_wall_indicator (valid) 0x125-0x125.7 (1)
|
||||
0x120| 00 | . | [6]: 0 standard_wall_indicator (valid) 0x126-0x126.7 (1)
|
||||
0x120| 00 | . | [7]: 0 standard_wall_indicator (valid) 0x127-0x127.7 (1)
|
||||
| | | ut_local_indicators[0:0]: 0x128-NA (0)
|
||||
| | | v2plusheader{}: 0x128-0x153.7 (44)
|
||||
0x120| 54 5a 69 66 | TZif | magic: 0x545a6966 (valid) 0x128-0x12b.7 (4)
|
||||
0x120| 32 | 2 | ver: "2" (0x32) (valid) 0x12c-0x12c.7 (1)
|
||||
0x120| 00 00 00| ...| reserved: raw bits 0x12d-0x13b.7 (15)
|
||||
0x130|00 00 00 00 00 00 00 00 00 00 00 00 |............ |
|
||||
0x130| 00 00 00 00| ....| isutcnt: 0 0x13c-0x13f.7 (4)
|
||||
0x140|00 00 00 08 |.... | isstdcnt: 8 0x140-0x143.7 (4)
|
||||
0x140| 00 00 00 00 | .... | leapcnt: 0 0x144-0x147.7 (4)
|
||||
0x140| 00 00 00 22 | ..." | timecnt: 34 0x148-0x14b.7 (4)
|
||||
0x140| 00 00 00 08| ....| typecnt: 8 0x14c-0x14f.7 (4)
|
||||
0x150|00 00 00 1a |.... | charcnt: 26 0x150-0x153.7 (4)
|
||||
| | | v2plusdatablock{}: 0x154-0x2d7.7 (388)
|
||||
| | | transition_times[0:34]: 0x154-0x263.7 (272)
|
||||
0x150| ff ff ff ff 6b c9 9b 24 | ....k..$ | [0]: "1891-03-15T23:47:48Z" (-2486592732) transition_time 0x154-0x15b.7 (8)
|
||||
0x150| ff ff ff ff| ....| [1]: "1911-03-10T23:50:39Z" (-1855958961) transition_time 0x15c-0x163.7 (8)
|
||||
0x160|91 60 50 4f |.`PO |
|
||||
0x160| ff ff ff ff 9b 47 78 f0 | .....Gx. | [2]: "1916-06-14T23:00:00Z" (-1689814800) transition_time 0x164-0x16b.7 (8)
|
||||
0x160| ff ff ff ff| ....| [3]: "1916-10-01T23:00:00Z" (-1680397200) transition_time 0x16c-0x173.7 (8)
|
||||
0x170|9b d7 2c 70 |..,p |
|
||||
0x170| ff ff ff ff 9c bc 91 70 | .......p | [4]: "1917-03-24T23:00:00Z" (-1665363600) transition_time 0x174-0x17b.7 (8)
|
||||
0x170| ff ff ff ff| ....| [5]: "1917-10-07T23:00:00Z" (-1648342800) transition_time 0x17c-0x183.7 (8)
|
||||
0x180|9d c0 48 f0 |..H. |
|
||||
0x180| ff ff ff ff 9e 89 fe 70 | .......p | [6]: "1918-03-09T23:00:00Z" (-1635123600) transition_time 0x184-0x18b.7 (8)
|
||||
0x180| ff ff ff ff| ....| [7]: "1918-10-06T23:00:00Z" (-1616893200) transition_time 0x18c-0x193.7 (8)
|
||||
0x190|9f a0 2a f0 |..*. |
|
||||
0x190| ff ff ff ff a0 60 a5 f0 | .....`.. | [8]: "1919-03-01T23:00:00Z" (-1604278800) transition_time 0x194-0x19b.7 (8)
|
||||
0x190| ff ff ff ff| ....| [9]: "1919-10-05T23:00:00Z" (-1585443600) transition_time 0x19c-0x1a3.7 (8)
|
||||
0x1a0|a1 80 0c f0 |.... |
|
||||
0x1a0| ff ff ff ff a2 2e 12 f0 | ........ | [10]: "1920-02-14T23:00:00Z" (-1574038800) transition_time 0x1a4-0x1ab.7 (8)
|
||||
0x1a0| ff ff ff ff| ....| [11]: "1920-10-23T23:00:00Z" (-1552266000) transition_time 0x1ac-0x1b3.7 (8)
|
||||
0x1b0|a3 7a 4c f0 |.zL. |
|
||||
0x1b0| ff ff ff ff a4 35 81 f0 | .....5.. | [12]: "1921-03-14T23:00:00Z" (-1539997200) transition_time 0x1b4-0x1bb.7 (8)
|
||||
0x1b0| ff ff ff ff| ....| [13]: "1921-06-21T23:00:00Z" (-1531443600) transition_time 0x1bc-0x1c3.7 (8)
|
||||
0x1c0|a4 b8 06 70 |...p |
|
||||
0x1c0| ff ff ff ff c6 ff 06 70 | .......p | [14]: "1939-09-11T23:00:00Z" (-956365200) transition_time 0x1c4-0x1cb.7 (8)
|
||||
0x1c0| ff ff ff ff| ....| [15]: "1939-11-19T00:00:00Z" (-950486400) transition_time 0x1cc-0x1d3.7 (8)
|
||||
0x1d0|c7 58 ba 80 |.X.. |
|
||||
0x1d0| ff ff ff ff c7 da 09 a0 | ........ | [16]: "1940-02-25T02:00:00Z" (-942012000) transition_time 0x1d4-0x1db.7 (8)
|
||||
0x1d0| ff ff ff ff| ....| [17]: "1944-04-03T01:00:00Z" (-812502000) transition_time 0x1dc-0x1e3.7 (8)
|
||||
0x1e0|cf 92 34 10 |..4. |
|
||||
0x1e0| ff ff ff ff d0 8a 00 00 | ........ | [18]: "1944-10-08T00:00:00Z" (-796262400) transition_time 0x1e4-0x1eb.7 (8)
|
||||
0x1e0| ff ff ff ff| ....| [19]: "1945-04-02T01:00:00Z" (-781052400) transition_time 0x1ec-0x1f3.7 (8)
|
||||
0x1f0|d1 72 16 10 |.r.. |
|
||||
0x1f0| ff ff ff ff d2 4e 24 70 | .....N$p | [20]: "1945-09-15T23:00:00Z" (-766630800) transition_time 0x1f4-0x1fb.7 (8)
|
||||
0x1f0| ff ff ff ff| ....| [21]: "1946-10-06T23:00:00Z" (-733280400) transition_time 0x1fc-0x203.7 (8)
|
||||
0x200|d4 4b 07 70 |.K.p |
|
||||
0x200| ff ff ff ff e5 ce d3 00 | ........ | [22]: "1956-01-29T00:00:00Z" (-439430400) transition_time 0x204-0x20b.7 (8)
|
||||
0x200| ff ff ff ff| ....| [23]: "1963-04-13T23:00:00Z" (-212029200) transition_time 0x20c-0x213.7 (8)
|
||||
0x210|f3 5c b0 f0 |.\.. |
|
||||
0x210| 00 00 00 00 02 78 c1 f0 | .....x.. | [24]: "1971-04-25T23:00:00Z" (41468400) transition_time 0x214-0x21b.7 (8)
|
||||
0x210| 00 00 00 00| ....| [25]: "1971-09-26T23:00:00Z" (54774000) transition_time 0x21c-0x223.7 (8)
|
||||
0x220|03 43 c8 f0 |.C.. |
|
||||
0x220| 00 00 00 00 0d cf d7 00 | ........ | [26]: "1977-05-06T00:00:00Z" (231724800) transition_time 0x224-0x22b.7 (8)
|
||||
0x220| 00 00 00 00| ....| [27]: "1977-10-20T23:00:00Z" (246236400) transition_time 0x22c-0x233.7 (8)
|
||||
0x230|0e ad 44 f0 |..D. |
|
||||
0x230| 00 00 00 00 0f 78 5a 00 | .....xZ. | [28]: "1978-03-24T00:00:00Z" (259545600) transition_time 0x234-0x23b.7 (8)
|
||||
0x230| 00 00 00 00| ....| [29]: "1978-09-22T01:00:00Z" (275274000) transition_time 0x23c-0x243.7 (8)
|
||||
0x240|10 68 59 10 |.hY. |
|
||||
0x240| 00 00 00 00 12 76 43 70 | .....vCp | [30]: "1979-10-25T23:00:00Z" (309740400) transition_time 0x244-0x24b.7 (8)
|
||||
0x240| 00 00 00 00| ....| [31]: "1980-04-25T00:00:00Z" (325468800) transition_time 0x24c-0x253.7 (8)
|
||||
0x250|13 66 42 80 |.fB. |
|
||||
0x250| 00 00 00 00 14 5f 7c 10 | ....._|. | [32]: "1980-10-31T01:00:00Z" (341802000) transition_time 0x254-0x25b.7 (8)
|
||||
0x250| 00 00 00 00| ....| [33]: "1981-05-01T00:00:00Z" (357523200) transition_time 0x25c-0x263.7 (8)
|
||||
0x260|15 4f 5f 00 |.O_. |
|
||||
| | | transition_types[0:34]: 0x264-0x285.7 (34)
|
||||
0x260| 01 | . | [0]: 1 transition_type 0x264-0x264.7 (1)
|
||||
0x260| 04 | . | [1]: 4 transition_type 0x265-0x265.7 (1)
|
||||
0x260| 02 | . | [2]: 2 transition_type 0x266-0x266.7 (1)
|
||||
0x260| 03 | . | [3]: 3 transition_type 0x267-0x267.7 (1)
|
||||
0x260| 02 | . | [4]: 2 transition_type 0x268-0x268.7 (1)
|
||||
0x260| 03 | . | [5]: 3 transition_type 0x269-0x269.7 (1)
|
||||
0x260| 02 | . | [6]: 2 transition_type 0x26a-0x26a.7 (1)
|
||||
0x260| 03 | . | [7]: 3 transition_type 0x26b-0x26b.7 (1)
|
||||
0x260| 02 | . | [8]: 2 transition_type 0x26c-0x26c.7 (1)
|
||||
0x260| 03 | . | [9]: 3 transition_type 0x26d-0x26d.7 (1)
|
||||
0x260| 02 | . | [10]: 2 transition_type 0x26e-0x26e.7 (1)
|
||||
0x260| 03| .| [11]: 3 transition_type 0x26f-0x26f.7 (1)
|
||||
0x270|02 |. | [12]: 2 transition_type 0x270-0x270.7 (1)
|
||||
0x270| 03 | . | [13]: 3 transition_type 0x271-0x271.7 (1)
|
||||
0x270| 02 | . | [14]: 2 transition_type 0x272-0x272.7 (1)
|
||||
0x270| 04 | . | [15]: 4 transition_type 0x273-0x273.7 (1)
|
||||
0x270| 06 | . | [16]: 6 transition_type 0x274-0x274.7 (1)
|
||||
0x270| 05 | . | [17]: 5 transition_type 0x275-0x275.7 (1)
|
||||
0x270| 06 | . | [18]: 6 transition_type 0x276-0x276.7 (1)
|
||||
0x270| 05 | . | [19]: 5 transition_type 0x277-0x277.7 (1)
|
||||
0x270| 06 | . | [20]: 6 transition_type 0x278-0x278.7 (1)
|
||||
0x270| 04 | . | [21]: 4 transition_type 0x279-0x279.7 (1)
|
||||
0x270| 06 | . | [22]: 6 transition_type 0x27a-0x27a.7 (1)
|
||||
0x270| 04 | . | [23]: 4 transition_type 0x27b-0x27b.7 (1)
|
||||
0x270| 02 | . | [24]: 2 transition_type 0x27c-0x27c.7 (1)
|
||||
0x270| 03 | . | [25]: 3 transition_type 0x27d-0x27d.7 (1)
|
||||
0x270| 07 | . | [26]: 7 transition_type 0x27e-0x27e.7 (1)
|
||||
0x270| 06| .| [27]: 6 transition_type 0x27f-0x27f.7 (1)
|
||||
0x280|05 |. | [28]: 5 transition_type 0x280-0x280.7 (1)
|
||||
0x280| 06 | . | [29]: 6 transition_type 0x281-0x281.7 (1)
|
||||
0x280| 04 | . | [30]: 4 transition_type 0x282-0x282.7 (1)
|
||||
0x280| 07 | . | [31]: 7 transition_type 0x283-0x283.7 (1)
|
||||
0x280| 04 | . | [32]: 4 transition_type 0x284-0x284.7 (1)
|
||||
0x280| 06 | . | [33]: 6 transition_type 0x285-0x285.7 (1)
|
||||
| | | local_time_type_records[0:8]: 0x286-0x2b5.7 (48)
|
||||
| | | [0]{}: local_time_type 0x286-0x28b.7 (6)
|
||||
0x280| 00 00 02 dc | .... | utoff: 732 (valid) 0x286-0x289.7 (4)
|
||||
0x280| 00 | . | dst: 0 (valid) 0x28a-0x28a.7 (1)
|
||||
0x280| 00 | . | idx: 0 (valid) 0x28b-0x28b.7 (1)
|
||||
| | | [1]{}: local_time_type 0x28c-0x291.7 (6)
|
||||
0x280| 00 00 02 31| ...1| utoff: 561 (valid) 0x28c-0x28f.7 (4)
|
||||
0x290|00 |. | dst: 0 (valid) 0x290-0x290.7 (1)
|
||||
0x290| 04 | . | idx: 4 (valid) 0x291-0x291.7 (1)
|
||||
| | | [2]{}: local_time_type 0x292-0x297.7 (6)
|
||||
0x290| 00 00 0e 10 | .... | utoff: 3600 (valid) 0x292-0x295.7 (4)
|
||||
0x290| 01 | . | dst: 1 (valid) 0x296-0x296.7 (1)
|
||||
0x290| 08 | . | idx: 8 (valid) 0x297-0x297.7 (1)
|
||||
| | | [3]{}: local_time_type 0x298-0x29d.7 (6)
|
||||
0x290| 00 00 00 00 | .... | utoff: 0 (valid) 0x298-0x29b.7 (4)
|
||||
0x290| 00 | . | dst: 0 (valid) 0x29c-0x29c.7 (1)
|
||||
0x290| 0d | . | idx: 13 (valid) 0x29d-0x29d.7 (1)
|
||||
| | | [4]{}: local_time_type 0x29e-0x2a3.7 (6)
|
||||
0x290| 00 00| ..| utoff: 0 (valid) 0x29e-0x2a1.7 (4)
|
||||
0x2a0|00 00 |.. |
|
||||
0x2a0| 00 | . | dst: 0 (valid) 0x2a2-0x2a2.7 (1)
|
||||
0x2a0| 0d | . | idx: 13 (valid) 0x2a3-0x2a3.7 (1)
|
||||
| | | [5]{}: local_time_type 0x2a4-0x2a9.7 (6)
|
||||
0x2a0| 00 00 1c 20 | ... | utoff: 7200 (valid) 0x2a4-0x2a7.7 (4)
|
||||
0x2a0| 01 | . | dst: 1 (valid) 0x2a8-0x2a8.7 (1)
|
||||
0x2a0| 11 | . | idx: 17 (valid) 0x2a9-0x2a9.7 (1)
|
||||
| | | [6]{}: local_time_type 0x2aa-0x2af.7 (6)
|
||||
0x2a0| 00 00 0e 10 | .... | utoff: 3600 (valid) 0x2aa-0x2ad.7 (4)
|
||||
0x2a0| 00 | . | dst: 0 (valid) 0x2ae-0x2ae.7 (1)
|
||||
0x2a0| 16| .| idx: 22 (valid) 0x2af-0x2af.7 (1)
|
||||
| | | [7]{}: local_time_type 0x2b0-0x2b5.7 (6)
|
||||
0x2b0|00 00 0e 10 |.... | utoff: 3600 (valid) 0x2b0-0x2b3.7 (4)
|
||||
0x2b0| 01 | . | dst: 1 (valid) 0x2b4-0x2b4.7 (1)
|
||||
0x2b0| 08 | . | idx: 8 (valid) 0x2b5-0x2b5.7 (1)
|
||||
| | | time_zone_designations[0:6]: 0x2b6-0x2cf.7 (26)
|
||||
0x2b0| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x2b6-0x2b9.7 (4)
|
||||
0x2b0| 50 4d 54 00 | PMT. | [1]: "PMT" time_zone_designation 0x2ba-0x2bd.7 (4)
|
||||
0x2b0| 57 45| WE| [2]: "WEST" time_zone_designation 0x2be-0x2c2.7 (5)
|
||||
0x2c0|53 54 00 |ST. |
|
||||
0x2c0| 57 45 54 00 | WET. | [3]: "WET" time_zone_designation 0x2c3-0x2c6.7 (4)
|
||||
0x2c0| 43 45 53 54 00 | CEST. | [4]: "CEST" time_zone_designation 0x2c7-0x2cb.7 (5)
|
||||
0x2c0| 43 45 54 00| CET.| [5]: "CET" time_zone_designation 0x2cc-0x2cf.7 (4)
|
||||
| | | leap_second_records[0:0]: 0x2d0-NA (0)
|
||||
| | | standard_wall_indicators[0:8]: 0x2d0-0x2d7.7 (8)
|
||||
0x2d0|00 |. | [0]: 0 standard_wall_indicator (valid) 0x2d0-0x2d0.7 (1)
|
||||
0x2d0| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x2d1-0x2d1.7 (1)
|
||||
0x2d0| 01 | . | [2]: 1 standard_wall_indicator (valid) 0x2d2-0x2d2.7 (1)
|
||||
0x2d0| 01 | . | [3]: 1 standard_wall_indicator (valid) 0x2d3-0x2d3.7 (1)
|
||||
0x2d0| 00 | . | [4]: 0 standard_wall_indicator (valid) 0x2d4-0x2d4.7 (1)
|
||||
0x2d0| 00 | . | [5]: 0 standard_wall_indicator (valid) 0x2d5-0x2d5.7 (1)
|
||||
0x2d0| 00 | . | [6]: 0 standard_wall_indicator (valid) 0x2d6-0x2d6.7 (1)
|
||||
0x2d0| 00 | . | [7]: 0 standard_wall_indicator (valid) 0x2d7-0x2d7.7 (1)
|
||||
| | | ut_local_indicators[0:0]: 0x2d8-NA (0)
|
||||
| | | footer{}: 0x2d8-0x2de.7 (7)
|
||||
0x2d0| 0a | . | nl1: 10 (valid) 0x2d8-0x2d8.7 (1)
|
||||
0x2d0| 43 45 54 2d 31 | CET-1 | tz_string: "CET-1" 0x2d9-0x2dd.7 (5)
|
||||
0x2d0| 0a| | .|| nl2: 10 (valid) 0x2de-0x2de.7 (1)
|
BIN
format/tzif/testdata/Almaty
vendored
Normal file
BIN
format/tzif/testdata/Almaty
vendored
Normal file
Binary file not shown.
574
format/tzif/testdata/Almaty.fqtest
vendored
Normal file
574
format/tzif/testdata/Almaty.fqtest
vendored
Normal file
@ -0,0 +1,574 @@
|
||||
$ fq -d tzif dv Almaty
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: Almaty (tzif) 0x0-0x5f9.7 (1530)
|
||||
| | | v1header{}: 0x0-0x2b.7 (44)
|
||||
0x000|54 5a 69 66 |TZif | magic: 0x545a6966 (valid) 0x0-0x3.7 (4)
|
||||
0x000| 32 | 2 | ver: "2" (0x32) (valid) 0x4-0x4.7 (1)
|
||||
0x000| 00 00 00 00 00 00 00 00 00 00 00| ...........| reserved: raw bits 0x5-0x13.7 (15)
|
||||
0x010|00 00 00 00 |.... |
|
||||
0x010| 00 00 00 00 | .... | isutcnt: 0 0x14-0x17.7 (4)
|
||||
0x010| 00 00 00 0a | .... | isstdcnt: 10 0x18-0x1b.7 (4)
|
||||
0x010| 00 00 00 1b| ....| leapcnt: 27 0x1c-0x1f.7 (4)
|
||||
0x020|00 00 00 34 |...4 | timecnt: 52 0x20-0x23.7 (4)
|
||||
0x020| 00 00 00 0a | .... | typecnt: 10 0x24-0x27.7 (4)
|
||||
0x020| 00 00 00 10 | .... | charcnt: 16 0x28-0x2b.7 (4)
|
||||
| | | v1datablock{}: 0x2c-0x25d.7 (562)
|
||||
| | | transition_times[0:52]: 0x2c-0xfb.7 (208)
|
||||
0x020| aa 19 7b dc| ..{.| [0]: "1924-05-01T18:52:12Z" (-1441170468) transition_time 0x2c-0x2f.7 (4)
|
||||
0x030|b5 a3 ef 30 |...0 | [1]: "1930-06-20T19:00:00Z" (-1247547600) transition_time 0x30-0x33.7 (4)
|
||||
0x030| 15 27 7d a9 | .'}. | [2]: "1981-03-31T18:00:09Z" (354909609) transition_time 0x34-0x37.7 (4)
|
||||
0x030| 16 18 b2 1a | .... | [3]: "1981-09-30T17:00:10Z" (370717210) transition_time 0x38-0x3b.7 (4)
|
||||
0x030| 17 08 b1 2a| ...*| [4]: "1982-03-31T18:00:10Z" (386445610) transition_time 0x3c-0x3f.7 (4)
|
||||
0x040|17 f9 e5 9b |.... | [5]: "1982-09-30T17:00:11Z" (402253211) transition_time 0x40-0x43.7 (4)
|
||||
0x040| 18 e9 e4 ab | .... | [6]: "1983-03-31T18:00:11Z" (417981611) transition_time 0x44-0x47.7 (4)
|
||||
0x040| 19 db 19 1c | .... | [7]: "1983-09-30T17:00:12Z" (433789212) transition_time 0x48-0x4b.7 (4)
|
||||
0x040| 1a cc 69 ac| ..i.| [8]: "1984-03-31T18:00:12Z" (449604012) transition_time 0x4c-0x4f.7 (4)
|
||||
0x050|1b bc 76 cc |..v. | [9]: "1984-09-29T20:00:12Z" (465336012) transition_time 0x50-0x53.7 (4)
|
||||
0x050| 1c ac 67 cc | ..g. | [10]: "1985-03-30T20:00:12Z" (481060812) transition_time 0x54-0x57.7 (4)
|
||||
0x050| 1d 9c 58 cd | ..X. | [11]: "1985-09-28T20:00:13Z" (496785613) transition_time 0x58-0x5b.7 (4)
|
||||
0x050| 1e 8c 49 cd| ..I.| [12]: "1986-03-29T20:00:13Z" (512510413) transition_time 0x5c-0x5f.7 (4)
|
||||
0x060|1f 7c 3a cd |.|:. | [13]: "1986-09-27T20:00:13Z" (528235213) transition_time 0x60-0x63.7 (4)
|
||||
0x060| 20 6c 2b cd | l+. | [14]: "1987-03-28T20:00:13Z" (543960013) transition_time 0x64-0x67.7 (4)
|
||||
0x060| 21 5c 1c cd | !\.. | [15]: "1987-09-26T20:00:13Z" (559684813) transition_time 0x68-0x6b.7 (4)
|
||||
0x060| 22 4c 0d ce| "L..| [16]: "1988-03-26T20:00:14Z" (575409614) transition_time 0x6c-0x6f.7 (4)
|
||||
0x070|23 3b fe ce |#;.. | [17]: "1988-09-24T20:00:14Z" (591134414) transition_time 0x70-0x73.7 (4)
|
||||
0x070| 24 2b ef ce | $+.. | [18]: "1989-03-25T20:00:14Z" (606859214) transition_time 0x74-0x77.7 (4)
|
||||
0x070| 25 1b e0 ce | %... | [19]: "1989-09-23T20:00:14Z" (622584014) transition_time 0x78-0x7b.7 (4)
|
||||
0x070| 26 0b d1 cf| &...| [20]: "1990-03-24T20:00:15Z" (638308815) transition_time 0x7c-0x7f.7 (4)
|
||||
0x080|27 04 fd 4f |'..O | [21]: "1990-09-29T20:00:15Z" (654638415) transition_time 0x80-0x83.7 (4)
|
||||
0x080| 27 f4 ee 50 | '..P | [22]: "1991-03-30T20:00:16Z" (670363216) transition_time 0x84-0x87.7 (4)
|
||||
0x080| 28 e4 ed 60 | (..` | [23]: "1991-09-28T21:00:16Z" (686091616) transition_time 0x88-0x8b.7 (4)
|
||||
0x080| 29 78 95 60| )x.`| [24]: "1992-01-18T21:00:16Z" (695768416) transition_time 0x8c-0x8f.7 (4)
|
||||
0x090|29 d4 d0 50 |)..P | [25]: "1992-03-28T20:00:16Z" (701812816) transition_time 0x90-0x93.7 (4)
|
||||
0x090| 2a c4 c1 51 | *..Q | [26]: "1992-09-26T20:00:17Z" (717537617) transition_time 0x94-0x97.7 (4)
|
||||
0x090| 2b b4 b2 51 | +..Q | [27]: "1993-03-27T20:00:17Z" (733262417) transition_time 0x98-0x9b.7 (4)
|
||||
0x090| 2c a4 a3 52| ,..R| [28]: "1993-09-25T20:00:18Z" (748987218) transition_time 0x9c-0x9f.7 (4)
|
||||
0x0a0|2d 94 94 52 |-..R | [29]: "1994-03-26T20:00:18Z" (764712018) transition_time 0xa0-0xa3.7 (4)
|
||||
0x0a0| 2e 84 85 53 | ...S | [30]: "1994-09-24T20:00:19Z" (780436819) transition_time 0xa4-0xa7.7 (4)
|
||||
0x0a0| 2f 74 76 53 | /tvS | [31]: "1995-03-25T20:00:19Z" (796161619) transition_time 0xa8-0xab.7 (4)
|
||||
0x0a0| 30 64 67 53| 0dgS| [32]: "1995-09-23T20:00:19Z" (811886419) transition_time 0xac-0xaf.7 (4)
|
||||
0x0b0|31 5d 92 d4 |1].. | [33]: "1996-03-30T20:00:20Z" (828216020) transition_time 0xb0-0xb3.7 (4)
|
||||
0x0b0| 32 72 6d d4 | 2rm. | [34]: "1996-10-26T20:00:20Z" (846360020) transition_time 0xb4-0xb7.7 (4)
|
||||
0x0b0| 33 3d 74 d4 | 3=t. | [35]: "1997-03-29T20:00:20Z" (859665620) transition_time 0xb8-0xbb.7 (4)
|
||||
0x0b0| 34 52 4f d5| 4RO.| [36]: "1997-10-25T20:00:21Z" (877809621) transition_time 0xbc-0xbf.7 (4)
|
||||
0x0c0|35 1d 56 d5 |5.V. | [37]: "1998-03-28T20:00:21Z" (891115221) transition_time 0xc0-0xc3.7 (4)
|
||||
0x0c0| 36 32 31 d5 | 621. | [38]: "1998-10-24T20:00:21Z" (909259221) transition_time 0xc4-0xc7.7 (4)
|
||||
0x0c0| 36 fd 38 d6 | 6.8. | [39]: "1999-03-27T20:00:22Z" (922564822) transition_time 0xc8-0xcb.7 (4)
|
||||
0x0c0| 38 1b 4e 56| 8.NV| [40]: "1999-10-30T20:00:22Z" (941313622) transition_time 0xcc-0xcf.7 (4)
|
||||
0x0d0|38 dd 1a d6 |8... | [41]: "2000-03-25T20:00:22Z" (954014422) transition_time 0xd0-0xd3.7 (4)
|
||||
0x0d0| 39 fb 30 56 | 9.0V | [42]: "2000-10-28T20:00:22Z" (972763222) transition_time 0xd4-0xd7.7 (4)
|
||||
0x0d0| 3a bc fc d6 | :... | [43]: "2001-03-24T20:00:22Z" (985464022) transition_time 0xd8-0xdb.7 (4)
|
||||
0x0d0| 3b db 12 56| ;..V| [44]: "2001-10-27T20:00:22Z" (1004212822) transition_time 0xdc-0xdf.7 (4)
|
||||
0x0e0|3c a6 19 56 |<..V | [45]: "2002-03-30T20:00:22Z" (1017518422) transition_time 0xe0-0xe3.7 (4)
|
||||
0x0e0| 3d ba f4 56 | =..V | [46]: "2002-10-26T20:00:22Z" (1035662422) transition_time 0xe4-0xe7.7 (4)
|
||||
0x0e0| 3e 85 fb 56 | >..V | [47]: "2003-03-29T20:00:22Z" (1048968022) transition_time 0xe8-0xeb.7 (4)
|
||||
0x0e0| 3f 9a d6 56| ?..V| [48]: "2003-10-25T20:00:22Z" (1067112022) transition_time 0xec-0xef.7 (4)
|
||||
0x0f0|40 65 dd 56 |@e.V | [49]: "2004-03-27T20:00:22Z" (1080417622) transition_time 0xf0-0xf3.7 (4)
|
||||
0x0f0| 41 83 f2 d6 | A... | [50]: "2004-10-30T20:00:22Z" (1099166422) transition_time 0xf4-0xf7.7 (4)
|
||||
0x0f0| 64 9b 78 1b | d.x. | [51]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0xf8-0xfb.7 (4)
|
||||
| | | transition_types[0:52]: 0xfc-0x12f.7 (52)
|
||||
0x0f0| 01 | . | [0]: 1 transition_type 0xfc-0xfc.7 (1)
|
||||
0x0f0| 03 | . | [1]: 3 transition_type 0xfd-0xfd.7 (1)
|
||||
0x0f0| 02 | . | [2]: 2 transition_type 0xfe-0xfe.7 (1)
|
||||
0x0f0| 03| .| [3]: 3 transition_type 0xff-0xff.7 (1)
|
||||
0x100|02 |. | [4]: 2 transition_type 0x100-0x100.7 (1)
|
||||
0x100| 03 | . | [5]: 3 transition_type 0x101-0x101.7 (1)
|
||||
0x100| 02 | . | [6]: 2 transition_type 0x102-0x102.7 (1)
|
||||
0x100| 03 | . | [7]: 3 transition_type 0x103-0x103.7 (1)
|
||||
0x100| 02 | . | [8]: 2 transition_type 0x104-0x104.7 (1)
|
||||
0x100| 04 | . | [9]: 4 transition_type 0x105-0x105.7 (1)
|
||||
0x100| 05 | . | [10]: 5 transition_type 0x106-0x106.7 (1)
|
||||
0x100| 04 | . | [11]: 4 transition_type 0x107-0x107.7 (1)
|
||||
0x100| 05 | . | [12]: 5 transition_type 0x108-0x108.7 (1)
|
||||
0x100| 04 | . | [13]: 4 transition_type 0x109-0x109.7 (1)
|
||||
0x100| 05 | . | [14]: 5 transition_type 0x10a-0x10a.7 (1)
|
||||
0x100| 04 | . | [15]: 4 transition_type 0x10b-0x10b.7 (1)
|
||||
0x100| 05 | . | [16]: 5 transition_type 0x10c-0x10c.7 (1)
|
||||
0x100| 04 | . | [17]: 4 transition_type 0x10d-0x10d.7 (1)
|
||||
0x100| 05 | . | [18]: 5 transition_type 0x10e-0x10e.7 (1)
|
||||
0x100| 04| .| [19]: 4 transition_type 0x10f-0x10f.7 (1)
|
||||
0x110|05 |. | [20]: 5 transition_type 0x110-0x110.7 (1)
|
||||
0x110| 04 | . | [21]: 4 transition_type 0x111-0x111.7 (1)
|
||||
0x110| 06 | . | [22]: 6 transition_type 0x112-0x112.7 (1)
|
||||
0x110| 07 | . | [23]: 7 transition_type 0x113-0x113.7 (1)
|
||||
0x110| 04 | . | [24]: 4 transition_type 0x114-0x114.7 (1)
|
||||
0x110| 05 | . | [25]: 5 transition_type 0x115-0x115.7 (1)
|
||||
0x110| 04 | . | [26]: 4 transition_type 0x116-0x116.7 (1)
|
||||
0x110| 05 | . | [27]: 5 transition_type 0x117-0x117.7 (1)
|
||||
0x110| 04 | . | [28]: 4 transition_type 0x118-0x118.7 (1)
|
||||
0x110| 05 | . | [29]: 5 transition_type 0x119-0x119.7 (1)
|
||||
0x110| 04 | . | [30]: 4 transition_type 0x11a-0x11a.7 (1)
|
||||
0x110| 05 | . | [31]: 5 transition_type 0x11b-0x11b.7 (1)
|
||||
0x110| 04 | . | [32]: 4 transition_type 0x11c-0x11c.7 (1)
|
||||
0x110| 05 | . | [33]: 5 transition_type 0x11d-0x11d.7 (1)
|
||||
0x110| 04 | . | [34]: 4 transition_type 0x11e-0x11e.7 (1)
|
||||
0x110| 05| .| [35]: 5 transition_type 0x11f-0x11f.7 (1)
|
||||
0x120|04 |. | [36]: 4 transition_type 0x120-0x120.7 (1)
|
||||
0x120| 05 | . | [37]: 5 transition_type 0x121-0x121.7 (1)
|
||||
0x120| 04 | . | [38]: 4 transition_type 0x122-0x122.7 (1)
|
||||
0x120| 05 | . | [39]: 5 transition_type 0x123-0x123.7 (1)
|
||||
0x120| 04 | . | [40]: 4 transition_type 0x124-0x124.7 (1)
|
||||
0x120| 05 | . | [41]: 5 transition_type 0x125-0x125.7 (1)
|
||||
0x120| 04 | . | [42]: 4 transition_type 0x126-0x126.7 (1)
|
||||
0x120| 05 | . | [43]: 5 transition_type 0x127-0x127.7 (1)
|
||||
0x120| 04 | . | [44]: 4 transition_type 0x128-0x128.7 (1)
|
||||
0x120| 05 | . | [45]: 5 transition_type 0x129-0x129.7 (1)
|
||||
0x120| 04 | . | [46]: 4 transition_type 0x12a-0x12a.7 (1)
|
||||
0x120| 05 | . | [47]: 5 transition_type 0x12b-0x12b.7 (1)
|
||||
0x120| 04 | . | [48]: 4 transition_type 0x12c-0x12c.7 (1)
|
||||
0x120| 05 | . | [49]: 5 transition_type 0x12d-0x12d.7 (1)
|
||||
0x120| 04 | . | [50]: 4 transition_type 0x12e-0x12e.7 (1)
|
||||
0x120| 04| .| [51]: 4 transition_type 0x12f-0x12f.7 (1)
|
||||
| | | local_time_type_records[0:10]: 0x130-0x16b.7 (60)
|
||||
| | | [0]{}: local_time_type 0x130-0x135.7 (6)
|
||||
0x130|00 00 48 24 |..H$ | utoff: 18468 (valid) 0x130-0x133.7 (4)
|
||||
0x130| 00 | . | dst: 0 (valid) 0x134-0x134.7 (1)
|
||||
0x130| 00 | . | idx: 0 (valid) 0x135-0x135.7 (1)
|
||||
| | | [1]{}: local_time_type 0x136-0x13b.7 (6)
|
||||
0x130| 00 00 46 50 | ..FP | utoff: 18000 (valid) 0x136-0x139.7 (4)
|
||||
0x130| 00 | . | dst: 0 (valid) 0x13a-0x13a.7 (1)
|
||||
0x130| 04 | . | idx: 4 (valid) 0x13b-0x13b.7 (1)
|
||||
| | | [2]{}: local_time_type 0x13c-0x141.7 (6)
|
||||
0x130| 00 00 62 70| ..bp| utoff: 25200 (valid) 0x13c-0x13f.7 (4)
|
||||
0x140|01 |. | dst: 1 (valid) 0x140-0x140.7 (1)
|
||||
0x140| 08 | . | idx: 8 (valid) 0x141-0x141.7 (1)
|
||||
| | | [3]{}: local_time_type 0x142-0x147.7 (6)
|
||||
0x140| 00 00 54 60 | ..T` | utoff: 21600 (valid) 0x142-0x145.7 (4)
|
||||
0x140| 00 | . | dst: 0 (valid) 0x146-0x146.7 (1)
|
||||
0x140| 0c | . | idx: 12 (valid) 0x147-0x147.7 (1)
|
||||
| | | [4]{}: local_time_type 0x148-0x14d.7 (6)
|
||||
0x140| 00 00 54 60 | ..T` | utoff: 21600 (valid) 0x148-0x14b.7 (4)
|
||||
0x140| 00 | . | dst: 0 (valid) 0x14c-0x14c.7 (1)
|
||||
0x140| 0c | . | idx: 12 (valid) 0x14d-0x14d.7 (1)
|
||||
| | | [5]{}: local_time_type 0x14e-0x153.7 (6)
|
||||
0x140| 00 00| ..| utoff: 25200 (valid) 0x14e-0x151.7 (4)
|
||||
0x150|62 70 |bp |
|
||||
0x150| 01 | . | dst: 1 (valid) 0x152-0x152.7 (1)
|
||||
0x150| 08 | . | idx: 8 (valid) 0x153-0x153.7 (1)
|
||||
| | | [6]{}: local_time_type 0x154-0x159.7 (6)
|
||||
0x150| 00 00 54 60 | ..T` | utoff: 21600 (valid) 0x154-0x157.7 (4)
|
||||
0x150| 01 | . | dst: 1 (valid) 0x158-0x158.7 (1)
|
||||
0x150| 0c | . | idx: 12 (valid) 0x159-0x159.7 (1)
|
||||
| | | [7]{}: local_time_type 0x15a-0x15f.7 (6)
|
||||
0x150| 00 00 46 50 | ..FP | utoff: 18000 (valid) 0x15a-0x15d.7 (4)
|
||||
0x150| 00 | . | dst: 0 (valid) 0x15e-0x15e.7 (1)
|
||||
0x150| 04| .| idx: 4 (valid) 0x15f-0x15f.7 (1)
|
||||
| | | [8]{}: local_time_type 0x160-0x165.7 (6)
|
||||
0x160|00 00 62 70 |..bp | utoff: 25200 (valid) 0x160-0x163.7 (4)
|
||||
0x160| 01 | . | dst: 1 (valid) 0x164-0x164.7 (1)
|
||||
0x160| 08 | . | idx: 8 (valid) 0x165-0x165.7 (1)
|
||||
| | | [9]{}: local_time_type 0x166-0x16b.7 (6)
|
||||
0x160| 00 00 54 60 | ..T` | utoff: 21600 (valid) 0x166-0x169.7 (4)
|
||||
0x160| 00 | . | dst: 0 (valid) 0x16a-0x16a.7 (1)
|
||||
0x160| 0c | . | idx: 12 (valid) 0x16b-0x16b.7 (1)
|
||||
| | | time_zone_designations[0:4]: 0x16c-0x17b.7 (16)
|
||||
0x160| 4c 4d 54 00| LMT.| [0]: "LMT" time_zone_designation 0x16c-0x16f.7 (4)
|
||||
0x170|2b 30 35 00 |+05. | [1]: "+05" time_zone_designation 0x170-0x173.7 (4)
|
||||
0x170| 2b 30 37 00 | +07. | [2]: "+07" time_zone_designation 0x174-0x177.7 (4)
|
||||
0x170| 2b 30 36 00 | +06. | [3]: "+06" time_zone_designation 0x178-0x17b.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x17c-0x253.7 (216)
|
||||
| | | [0]{}: leap_second_record 0x17c-0x183.7 (8)
|
||||
0x170| 04 b2 58 00| ..X.| occur: "1972-07-01T00:00:00Z" (78796800) 0x17c-0x17f.7 (4)
|
||||
0x180|00 00 00 01 |.... | corr: 1 0x180-0x183.7 (4)
|
||||
| | | [1]{}: leap_second_record 0x184-0x18b.7 (8)
|
||||
0x180| 05 a4 ec 01 | .... | occur: "1973-01-01T00:00:01Z" (94694401) 0x184-0x187.7 (4)
|
||||
0x180| 00 00 00 02 | .... | corr: 2 0x188-0x18b.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x18c-0x193.7 (8)
|
||||
0x180| 07 86 1f 82| ....| occur: "1974-01-01T00:00:02Z" (126230402) 0x18c-0x18f.7 (4)
|
||||
0x190|00 00 00 03 |.... | corr: 3 0x190-0x193.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x194-0x19b.7 (8)
|
||||
0x190| 09 67 53 03 | .gS. | occur: "1975-01-01T00:00:03Z" (157766403) 0x194-0x197.7 (4)
|
||||
0x190| 00 00 00 04 | .... | corr: 4 0x198-0x19b.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x19c-0x1a3.7 (8)
|
||||
0x190| 0b 48 86 84| .H..| occur: "1976-01-01T00:00:04Z" (189302404) 0x19c-0x19f.7 (4)
|
||||
0x1a0|00 00 00 05 |.... | corr: 5 0x1a0-0x1a3.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x1a4-0x1ab.7 (8)
|
||||
0x1a0| 0d 2b 0b 85 | .+.. | occur: "1977-01-01T00:00:05Z" (220924805) 0x1a4-0x1a7.7 (4)
|
||||
0x1a0| 00 00 00 06 | .... | corr: 6 0x1a8-0x1ab.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x1ac-0x1b3.7 (8)
|
||||
0x1a0| 0f 0c 3f 06| ..?.| occur: "1978-01-01T00:00:06Z" (252460806) 0x1ac-0x1af.7 (4)
|
||||
0x1b0|00 00 00 07 |.... | corr: 7 0x1b0-0x1b3.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x1b4-0x1bb.7 (8)
|
||||
0x1b0| 10 ed 72 87 | ..r. | occur: "1979-01-01T00:00:07Z" (283996807) 0x1b4-0x1b7.7 (4)
|
||||
0x1b0| 00 00 00 08 | .... | corr: 8 0x1b8-0x1bb.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x1bc-0x1c3.7 (8)
|
||||
0x1b0| 12 ce a6 08| ....| occur: "1980-01-01T00:00:08Z" (315532808) 0x1bc-0x1bf.7 (4)
|
||||
0x1c0|00 00 00 09 |.... | corr: 9 0x1c0-0x1c3.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x1c4-0x1cb.7 (8)
|
||||
0x1c0| 15 9f ca 89 | .... | occur: "1981-07-01T00:00:09Z" (362793609) 0x1c4-0x1c7.7 (4)
|
||||
0x1c0| 00 00 00 0a | .... | corr: 10 0x1c8-0x1cb.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x1cc-0x1d3.7 (8)
|
||||
0x1c0| 17 80 fe 0a| ....| occur: "1982-07-01T00:00:10Z" (394329610) 0x1cc-0x1cf.7 (4)
|
||||
0x1d0|00 00 00 0b |.... | corr: 11 0x1d0-0x1d3.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x1d4-0x1db.7 (8)
|
||||
0x1d0| 19 62 31 8b | .b1. | occur: "1983-07-01T00:00:11Z" (425865611) 0x1d4-0x1d7.7 (4)
|
||||
0x1d0| 00 00 00 0c | .... | corr: 12 0x1d8-0x1db.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x1dc-0x1e3.7 (8)
|
||||
0x1d0| 1d 25 ea 0c| .%..| occur: "1985-07-01T00:00:12Z" (489024012) 0x1dc-0x1df.7 (4)
|
||||
0x1e0|00 00 00 0d |.... | corr: 13 0x1e0-0x1e3.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x1e4-0x1eb.7 (8)
|
||||
0x1e0| 21 da e5 0d | !... | occur: "1988-01-01T00:00:13Z" (567993613) 0x1e4-0x1e7.7 (4)
|
||||
0x1e0| 00 00 00 0e | .... | corr: 14 0x1e8-0x1eb.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x1ec-0x1f3.7 (8)
|
||||
0x1e0| 25 9e 9d 8e| %...| occur: "1990-01-01T00:00:14Z" (631152014) 0x1ec-0x1ef.7 (4)
|
||||
0x1f0|00 00 00 0f |.... | corr: 15 0x1f0-0x1f3.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x1f4-0x1fb.7 (8)
|
||||
0x1f0| 27 7f d1 0f | '... | occur: "1991-01-01T00:00:15Z" (662688015) 0x1f4-0x1f7.7 (4)
|
||||
0x1f0| 00 00 00 10 | .... | corr: 16 0x1f8-0x1fb.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x1fc-0x203.7 (8)
|
||||
0x1f0| 2a 50 f5 90| *P..| occur: "1992-07-01T00:00:16Z" (709948816) 0x1fc-0x1ff.7 (4)
|
||||
0x200|00 00 00 11 |.... | corr: 17 0x200-0x203.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x204-0x20b.7 (8)
|
||||
0x200| 2c 32 29 11 | ,2). | occur: "1993-07-01T00:00:17Z" (741484817) 0x204-0x207.7 (4)
|
||||
0x200| 00 00 00 12 | .... | corr: 18 0x208-0x20b.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x20c-0x213.7 (8)
|
||||
0x200| 2e 13 5c 92| ..\.| occur: "1994-07-01T00:00:18Z" (773020818) 0x20c-0x20f.7 (4)
|
||||
0x210|00 00 00 13 |.... | corr: 19 0x210-0x213.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x214-0x21b.7 (8)
|
||||
0x210| 30 e7 24 13 | 0.$. | occur: "1996-01-01T00:00:19Z" (820454419) 0x214-0x217.7 (4)
|
||||
0x210| 00 00 00 14 | .... | corr: 20 0x218-0x21b.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x21c-0x223.7 (8)
|
||||
0x210| 33 b8 48 94| 3.H.| occur: "1997-07-01T00:00:20Z" (867715220) 0x21c-0x21f.7 (4)
|
||||
0x220|00 00 00 15 |.... | corr: 21 0x220-0x223.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x224-0x22b.7 (8)
|
||||
0x220| 36 8c 10 15 | 6... | occur: "1999-01-01T00:00:21Z" (915148821) 0x224-0x227.7 (4)
|
||||
0x220| 00 00 00 16 | .... | corr: 22 0x228-0x22b.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x22c-0x233.7 (8)
|
||||
0x220| 43 b7 1b 96| C...| occur: "2006-01-01T00:00:22Z" (1136073622) 0x22c-0x22f.7 (4)
|
||||
0x230|00 00 00 17 |.... | corr: 23 0x230-0x233.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x234-0x23b.7 (8)
|
||||
0x230| 49 5c 07 97 | I\.. | occur: "2009-01-01T00:00:23Z" (1230768023) 0x234-0x237.7 (4)
|
||||
0x230| 00 00 00 18 | .... | corr: 24 0x238-0x23b.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x23c-0x243.7 (8)
|
||||
0x230| 4f ef 93 18| O...| occur: "2012-07-01T00:00:24Z" (1341100824) 0x23c-0x23f.7 (4)
|
||||
0x240|00 00 00 19 |.... | corr: 25 0x240-0x243.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x244-0x24b.7 (8)
|
||||
0x240| 55 93 2d 99 | U.-. | occur: "2015-07-01T00:00:25Z" (1435708825) 0x244-0x247.7 (4)
|
||||
0x240| 00 00 00 1a | .... | corr: 26 0x248-0x24b.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x24c-0x253.7 (8)
|
||||
0x240| 58 68 46 9a| XhF.| occur: "2017-01-01T00:00:26Z" (1483228826) 0x24c-0x24f.7 (4)
|
||||
0x250|00 00 00 1b |.... | corr: 27 0x250-0x253.7 (4)
|
||||
| | | standard_wall_indicators[0:10]: 0x254-0x25d.7 (10)
|
||||
0x250| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x254-0x254.7 (1)
|
||||
0x250| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x255-0x255.7 (1)
|
||||
0x250| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x256-0x256.7 (1)
|
||||
0x250| 00 | . | [3]: 0 standard_wall_indicator (valid) 0x257-0x257.7 (1)
|
||||
0x250| 01 | . | [4]: 1 standard_wall_indicator (valid) 0x258-0x258.7 (1)
|
||||
0x250| 01 | . | [5]: 1 standard_wall_indicator (valid) 0x259-0x259.7 (1)
|
||||
0x250| 01 | . | [6]: 1 standard_wall_indicator (valid) 0x25a-0x25a.7 (1)
|
||||
0x250| 01 | . | [7]: 1 standard_wall_indicator (valid) 0x25b-0x25b.7 (1)
|
||||
0x250| 01 | . | [8]: 1 standard_wall_indicator (valid) 0x25c-0x25c.7 (1)
|
||||
0x250| 01 | . | [9]: 1 standard_wall_indicator (valid) 0x25d-0x25d.7 (1)
|
||||
| | | ut_local_indicators[0:0]: 0x25e-NA (0)
|
||||
| | | v2plusheader{}: 0x25e-0x289.7 (44)
|
||||
0x250| 54 5a| TZ| magic: 0x545a6966 (valid) 0x25e-0x261.7 (4)
|
||||
0x260|69 66 |if |
|
||||
0x260| 32 | 2 | ver: "2" (0x32) (valid) 0x262-0x262.7 (1)
|
||||
0x260| 00 00 00 00 00 00 00 00 00 00 00 00 00| .............| reserved: raw bits 0x263-0x271.7 (15)
|
||||
0x270|00 00 |.. |
|
||||
0x270| 00 00 00 00 | .... | isutcnt: 0 0x272-0x275.7 (4)
|
||||
0x270| 00 00 00 0a | .... | isstdcnt: 10 0x276-0x279.7 (4)
|
||||
0x270| 00 00 00 1b | .... | leapcnt: 27 0x27a-0x27d.7 (4)
|
||||
0x270| 00 00| ..| timecnt: 52 0x27e-0x281.7 (4)
|
||||
0x280|00 34 |.4 |
|
||||
0x280| 00 00 00 0a | .... | typecnt: 10 0x282-0x285.7 (4)
|
||||
0x280| 00 00 00 10 | .... | charcnt: 16 0x286-0x289.7 (4)
|
||||
| | | v2plusdatablock{}: 0x28a-0x5f7.7 (878)
|
||||
| | | transition_times[0:52]: 0x28a-0x429.7 (416)
|
||||
0x280| ff ff ff ff aa 19| ......| [0]: "1924-05-01T18:52:12Z" (-1441170468) transition_time 0x28a-0x291.7 (8)
|
||||
0x290|7b dc |{. |
|
||||
0x290| ff ff ff ff b5 a3 ef 30 | .......0 | [1]: "1930-06-20T19:00:00Z" (-1247547600) transition_time 0x292-0x299.7 (8)
|
||||
0x290| 00 00 00 00 15 27| .....'| [2]: "1981-03-31T18:00:09Z" (354909609) transition_time 0x29a-0x2a1.7 (8)
|
||||
0x2a0|7d a9 |}. |
|
||||
0x2a0| 00 00 00 00 16 18 b2 1a | ........ | [3]: "1981-09-30T17:00:10Z" (370717210) transition_time 0x2a2-0x2a9.7 (8)
|
||||
0x2a0| 00 00 00 00 17 08| ......| [4]: "1982-03-31T18:00:10Z" (386445610) transition_time 0x2aa-0x2b1.7 (8)
|
||||
0x2b0|b1 2a |.* |
|
||||
0x2b0| 00 00 00 00 17 f9 e5 9b | ........ | [5]: "1982-09-30T17:00:11Z" (402253211) transition_time 0x2b2-0x2b9.7 (8)
|
||||
0x2b0| 00 00 00 00 18 e9| ......| [6]: "1983-03-31T18:00:11Z" (417981611) transition_time 0x2ba-0x2c1.7 (8)
|
||||
0x2c0|e4 ab |.. |
|
||||
0x2c0| 00 00 00 00 19 db 19 1c | ........ | [7]: "1983-09-30T17:00:12Z" (433789212) transition_time 0x2c2-0x2c9.7 (8)
|
||||
0x2c0| 00 00 00 00 1a cc| ......| [8]: "1984-03-31T18:00:12Z" (449604012) transition_time 0x2ca-0x2d1.7 (8)
|
||||
0x2d0|69 ac |i. |
|
||||
0x2d0| 00 00 00 00 1b bc 76 cc | ......v. | [9]: "1984-09-29T20:00:12Z" (465336012) transition_time 0x2d2-0x2d9.7 (8)
|
||||
0x2d0| 00 00 00 00 1c ac| ......| [10]: "1985-03-30T20:00:12Z" (481060812) transition_time 0x2da-0x2e1.7 (8)
|
||||
0x2e0|67 cc |g. |
|
||||
0x2e0| 00 00 00 00 1d 9c 58 cd | ......X. | [11]: "1985-09-28T20:00:13Z" (496785613) transition_time 0x2e2-0x2e9.7 (8)
|
||||
0x2e0| 00 00 00 00 1e 8c| ......| [12]: "1986-03-29T20:00:13Z" (512510413) transition_time 0x2ea-0x2f1.7 (8)
|
||||
0x2f0|49 cd |I. |
|
||||
0x2f0| 00 00 00 00 1f 7c 3a cd | .....|:. | [13]: "1986-09-27T20:00:13Z" (528235213) transition_time 0x2f2-0x2f9.7 (8)
|
||||
0x2f0| 00 00 00 00 20 6c| .... l| [14]: "1987-03-28T20:00:13Z" (543960013) transition_time 0x2fa-0x301.7 (8)
|
||||
0x300|2b cd |+. |
|
||||
0x300| 00 00 00 00 21 5c 1c cd | ....!\.. | [15]: "1987-09-26T20:00:13Z" (559684813) transition_time 0x302-0x309.7 (8)
|
||||
0x300| 00 00 00 00 22 4c| ...."L| [16]: "1988-03-26T20:00:14Z" (575409614) transition_time 0x30a-0x311.7 (8)
|
||||
0x310|0d ce |.. |
|
||||
0x310| 00 00 00 00 23 3b fe ce | ....#;.. | [17]: "1988-09-24T20:00:14Z" (591134414) transition_time 0x312-0x319.7 (8)
|
||||
0x310| 00 00 00 00 24 2b| ....$+| [18]: "1989-03-25T20:00:14Z" (606859214) transition_time 0x31a-0x321.7 (8)
|
||||
0x320|ef ce |.. |
|
||||
0x320| 00 00 00 00 25 1b e0 ce | ....%... | [19]: "1989-09-23T20:00:14Z" (622584014) transition_time 0x322-0x329.7 (8)
|
||||
0x320| 00 00 00 00 26 0b| ....&.| [20]: "1990-03-24T20:00:15Z" (638308815) transition_time 0x32a-0x331.7 (8)
|
||||
0x330|d1 cf |.. |
|
||||
0x330| 00 00 00 00 27 04 fd 4f | ....'..O | [21]: "1990-09-29T20:00:15Z" (654638415) transition_time 0x332-0x339.7 (8)
|
||||
0x330| 00 00 00 00 27 f4| ....'.| [22]: "1991-03-30T20:00:16Z" (670363216) transition_time 0x33a-0x341.7 (8)
|
||||
0x340|ee 50 |.P |
|
||||
0x340| 00 00 00 00 28 e4 ed 60 | ....(..` | [23]: "1991-09-28T21:00:16Z" (686091616) transition_time 0x342-0x349.7 (8)
|
||||
0x340| 00 00 00 00 29 78| ....)x| [24]: "1992-01-18T21:00:16Z" (695768416) transition_time 0x34a-0x351.7 (8)
|
||||
0x350|95 60 |.` |
|
||||
0x350| 00 00 00 00 29 d4 d0 50 | ....)..P | [25]: "1992-03-28T20:00:16Z" (701812816) transition_time 0x352-0x359.7 (8)
|
||||
0x350| 00 00 00 00 2a c4| ....*.| [26]: "1992-09-26T20:00:17Z" (717537617) transition_time 0x35a-0x361.7 (8)
|
||||
0x360|c1 51 |.Q |
|
||||
0x360| 00 00 00 00 2b b4 b2 51 | ....+..Q | [27]: "1993-03-27T20:00:17Z" (733262417) transition_time 0x362-0x369.7 (8)
|
||||
0x360| 00 00 00 00 2c a4| ....,.| [28]: "1993-09-25T20:00:18Z" (748987218) transition_time 0x36a-0x371.7 (8)
|
||||
0x370|a3 52 |.R |
|
||||
0x370| 00 00 00 00 2d 94 94 52 | ....-..R | [29]: "1994-03-26T20:00:18Z" (764712018) transition_time 0x372-0x379.7 (8)
|
||||
0x370| 00 00 00 00 2e 84| ......| [30]: "1994-09-24T20:00:19Z" (780436819) transition_time 0x37a-0x381.7 (8)
|
||||
0x380|85 53 |.S |
|
||||
0x380| 00 00 00 00 2f 74 76 53 | ..../tvS | [31]: "1995-03-25T20:00:19Z" (796161619) transition_time 0x382-0x389.7 (8)
|
||||
0x380| 00 00 00 00 30 64| ....0d| [32]: "1995-09-23T20:00:19Z" (811886419) transition_time 0x38a-0x391.7 (8)
|
||||
0x390|67 53 |gS |
|
||||
0x390| 00 00 00 00 31 5d 92 d4 | ....1].. | [33]: "1996-03-30T20:00:20Z" (828216020) transition_time 0x392-0x399.7 (8)
|
||||
0x390| 00 00 00 00 32 72| ....2r| [34]: "1996-10-26T20:00:20Z" (846360020) transition_time 0x39a-0x3a1.7 (8)
|
||||
0x3a0|6d d4 |m. |
|
||||
0x3a0| 00 00 00 00 33 3d 74 d4 | ....3=t. | [35]: "1997-03-29T20:00:20Z" (859665620) transition_time 0x3a2-0x3a9.7 (8)
|
||||
0x3a0| 00 00 00 00 34 52| ....4R| [36]: "1997-10-25T20:00:21Z" (877809621) transition_time 0x3aa-0x3b1.7 (8)
|
||||
0x3b0|4f d5 |O. |
|
||||
0x3b0| 00 00 00 00 35 1d 56 d5 | ....5.V. | [37]: "1998-03-28T20:00:21Z" (891115221) transition_time 0x3b2-0x3b9.7 (8)
|
||||
0x3b0| 00 00 00 00 36 32| ....62| [38]: "1998-10-24T20:00:21Z" (909259221) transition_time 0x3ba-0x3c1.7 (8)
|
||||
0x3c0|31 d5 |1. |
|
||||
0x3c0| 00 00 00 00 36 fd 38 d6 | ....6.8. | [39]: "1999-03-27T20:00:22Z" (922564822) transition_time 0x3c2-0x3c9.7 (8)
|
||||
0x3c0| 00 00 00 00 38 1b| ....8.| [40]: "1999-10-30T20:00:22Z" (941313622) transition_time 0x3ca-0x3d1.7 (8)
|
||||
0x3d0|4e 56 |NV |
|
||||
0x3d0| 00 00 00 00 38 dd 1a d6 | ....8... | [41]: "2000-03-25T20:00:22Z" (954014422) transition_time 0x3d2-0x3d9.7 (8)
|
||||
0x3d0| 00 00 00 00 39 fb| ....9.| [42]: "2000-10-28T20:00:22Z" (972763222) transition_time 0x3da-0x3e1.7 (8)
|
||||
0x3e0|30 56 |0V |
|
||||
0x3e0| 00 00 00 00 3a bc fc d6 | ....:... | [43]: "2001-03-24T20:00:22Z" (985464022) transition_time 0x3e2-0x3e9.7 (8)
|
||||
0x3e0| 00 00 00 00 3b db| ....;.| [44]: "2001-10-27T20:00:22Z" (1004212822) transition_time 0x3ea-0x3f1.7 (8)
|
||||
0x3f0|12 56 |.V |
|
||||
0x3f0| 00 00 00 00 3c a6 19 56 | ....<..V | [45]: "2002-03-30T20:00:22Z" (1017518422) transition_time 0x3f2-0x3f9.7 (8)
|
||||
0x3f0| 00 00 00 00 3d ba| ....=.| [46]: "2002-10-26T20:00:22Z" (1035662422) transition_time 0x3fa-0x401.7 (8)
|
||||
0x400|f4 56 |.V |
|
||||
0x400| 00 00 00 00 3e 85 fb 56 | ....>..V | [47]: "2003-03-29T20:00:22Z" (1048968022) transition_time 0x402-0x409.7 (8)
|
||||
0x400| 00 00 00 00 3f 9a| ....?.| [48]: "2003-10-25T20:00:22Z" (1067112022) transition_time 0x40a-0x411.7 (8)
|
||||
0x410|d6 56 |.V |
|
||||
0x410| 00 00 00 00 40 65 dd 56 | ....@e.V | [49]: "2004-03-27T20:00:22Z" (1080417622) transition_time 0x412-0x419.7 (8)
|
||||
0x410| 00 00 00 00 41 83| ....A.| [50]: "2004-10-30T20:00:22Z" (1099166422) transition_time 0x41a-0x421.7 (8)
|
||||
0x420|f2 d6 |.. |
|
||||
0x420| 00 00 00 00 64 9b 78 1b | ....d.x. | [51]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x422-0x429.7 (8)
|
||||
| | | transition_types[0:52]: 0x42a-0x45d.7 (52)
|
||||
0x420| 01 | . | [0]: 1 transition_type 0x42a-0x42a.7 (1)
|
||||
0x420| 03 | . | [1]: 3 transition_type 0x42b-0x42b.7 (1)
|
||||
0x420| 02 | . | [2]: 2 transition_type 0x42c-0x42c.7 (1)
|
||||
0x420| 03 | . | [3]: 3 transition_type 0x42d-0x42d.7 (1)
|
||||
0x420| 02 | . | [4]: 2 transition_type 0x42e-0x42e.7 (1)
|
||||
0x420| 03| .| [5]: 3 transition_type 0x42f-0x42f.7 (1)
|
||||
0x430|02 |. | [6]: 2 transition_type 0x430-0x430.7 (1)
|
||||
0x430| 03 | . | [7]: 3 transition_type 0x431-0x431.7 (1)
|
||||
0x430| 02 | . | [8]: 2 transition_type 0x432-0x432.7 (1)
|
||||
0x430| 04 | . | [9]: 4 transition_type 0x433-0x433.7 (1)
|
||||
0x430| 05 | . | [10]: 5 transition_type 0x434-0x434.7 (1)
|
||||
0x430| 04 | . | [11]: 4 transition_type 0x435-0x435.7 (1)
|
||||
0x430| 05 | . | [12]: 5 transition_type 0x436-0x436.7 (1)
|
||||
0x430| 04 | . | [13]: 4 transition_type 0x437-0x437.7 (1)
|
||||
0x430| 05 | . | [14]: 5 transition_type 0x438-0x438.7 (1)
|
||||
0x430| 04 | . | [15]: 4 transition_type 0x439-0x439.7 (1)
|
||||
0x430| 05 | . | [16]: 5 transition_type 0x43a-0x43a.7 (1)
|
||||
0x430| 04 | . | [17]: 4 transition_type 0x43b-0x43b.7 (1)
|
||||
0x430| 05 | . | [18]: 5 transition_type 0x43c-0x43c.7 (1)
|
||||
0x430| 04 | . | [19]: 4 transition_type 0x43d-0x43d.7 (1)
|
||||
0x430| 05 | . | [20]: 5 transition_type 0x43e-0x43e.7 (1)
|
||||
0x430| 04| .| [21]: 4 transition_type 0x43f-0x43f.7 (1)
|
||||
0x440|06 |. | [22]: 6 transition_type 0x440-0x440.7 (1)
|
||||
0x440| 07 | . | [23]: 7 transition_type 0x441-0x441.7 (1)
|
||||
0x440| 04 | . | [24]: 4 transition_type 0x442-0x442.7 (1)
|
||||
0x440| 05 | . | [25]: 5 transition_type 0x443-0x443.7 (1)
|
||||
0x440| 04 | . | [26]: 4 transition_type 0x444-0x444.7 (1)
|
||||
0x440| 05 | . | [27]: 5 transition_type 0x445-0x445.7 (1)
|
||||
0x440| 04 | . | [28]: 4 transition_type 0x446-0x446.7 (1)
|
||||
0x440| 05 | . | [29]: 5 transition_type 0x447-0x447.7 (1)
|
||||
0x440| 04 | . | [30]: 4 transition_type 0x448-0x448.7 (1)
|
||||
0x440| 05 | . | [31]: 5 transition_type 0x449-0x449.7 (1)
|
||||
0x440| 04 | . | [32]: 4 transition_type 0x44a-0x44a.7 (1)
|
||||
0x440| 05 | . | [33]: 5 transition_type 0x44b-0x44b.7 (1)
|
||||
0x440| 04 | . | [34]: 4 transition_type 0x44c-0x44c.7 (1)
|
||||
0x440| 05 | . | [35]: 5 transition_type 0x44d-0x44d.7 (1)
|
||||
0x440| 04 | . | [36]: 4 transition_type 0x44e-0x44e.7 (1)
|
||||
0x440| 05| .| [37]: 5 transition_type 0x44f-0x44f.7 (1)
|
||||
0x450|04 |. | [38]: 4 transition_type 0x450-0x450.7 (1)
|
||||
0x450| 05 | . | [39]: 5 transition_type 0x451-0x451.7 (1)
|
||||
0x450| 04 | . | [40]: 4 transition_type 0x452-0x452.7 (1)
|
||||
0x450| 05 | . | [41]: 5 transition_type 0x453-0x453.7 (1)
|
||||
0x450| 04 | . | [42]: 4 transition_type 0x454-0x454.7 (1)
|
||||
0x450| 05 | . | [43]: 5 transition_type 0x455-0x455.7 (1)
|
||||
0x450| 04 | . | [44]: 4 transition_type 0x456-0x456.7 (1)
|
||||
0x450| 05 | . | [45]: 5 transition_type 0x457-0x457.7 (1)
|
||||
0x450| 04 | . | [46]: 4 transition_type 0x458-0x458.7 (1)
|
||||
0x450| 05 | . | [47]: 5 transition_type 0x459-0x459.7 (1)
|
||||
0x450| 04 | . | [48]: 4 transition_type 0x45a-0x45a.7 (1)
|
||||
0x450| 05 | . | [49]: 5 transition_type 0x45b-0x45b.7 (1)
|
||||
0x450| 04 | . | [50]: 4 transition_type 0x45c-0x45c.7 (1)
|
||||
0x450| 04 | . | [51]: 4 transition_type 0x45d-0x45d.7 (1)
|
||||
| | | local_time_type_records[0:10]: 0x45e-0x499.7 (60)
|
||||
| | | [0]{}: local_time_type 0x45e-0x463.7 (6)
|
||||
0x450| 00 00| ..| utoff: 18468 (valid) 0x45e-0x461.7 (4)
|
||||
0x460|48 24 |H$ |
|
||||
0x460| 00 | . | dst: 0 (valid) 0x462-0x462.7 (1)
|
||||
0x460| 00 | . | idx: 0 (valid) 0x463-0x463.7 (1)
|
||||
| | | [1]{}: local_time_type 0x464-0x469.7 (6)
|
||||
0x460| 00 00 46 50 | ..FP | utoff: 18000 (valid) 0x464-0x467.7 (4)
|
||||
0x460| 00 | . | dst: 0 (valid) 0x468-0x468.7 (1)
|
||||
0x460| 04 | . | idx: 4 (valid) 0x469-0x469.7 (1)
|
||||
| | | [2]{}: local_time_type 0x46a-0x46f.7 (6)
|
||||
0x460| 00 00 62 70 | ..bp | utoff: 25200 (valid) 0x46a-0x46d.7 (4)
|
||||
0x460| 01 | . | dst: 1 (valid) 0x46e-0x46e.7 (1)
|
||||
0x460| 08| .| idx: 8 (valid) 0x46f-0x46f.7 (1)
|
||||
| | | [3]{}: local_time_type 0x470-0x475.7 (6)
|
||||
0x470|00 00 54 60 |..T` | utoff: 21600 (valid) 0x470-0x473.7 (4)
|
||||
0x470| 00 | . | dst: 0 (valid) 0x474-0x474.7 (1)
|
||||
0x470| 0c | . | idx: 12 (valid) 0x475-0x475.7 (1)
|
||||
| | | [4]{}: local_time_type 0x476-0x47b.7 (6)
|
||||
0x470| 00 00 54 60 | ..T` | utoff: 21600 (valid) 0x476-0x479.7 (4)
|
||||
0x470| 00 | . | dst: 0 (valid) 0x47a-0x47a.7 (1)
|
||||
0x470| 0c | . | idx: 12 (valid) 0x47b-0x47b.7 (1)
|
||||
| | | [5]{}: local_time_type 0x47c-0x481.7 (6)
|
||||
0x470| 00 00 62 70| ..bp| utoff: 25200 (valid) 0x47c-0x47f.7 (4)
|
||||
0x480|01 |. | dst: 1 (valid) 0x480-0x480.7 (1)
|
||||
0x480| 08 | . | idx: 8 (valid) 0x481-0x481.7 (1)
|
||||
| | | [6]{}: local_time_type 0x482-0x487.7 (6)
|
||||
0x480| 00 00 54 60 | ..T` | utoff: 21600 (valid) 0x482-0x485.7 (4)
|
||||
0x480| 01 | . | dst: 1 (valid) 0x486-0x486.7 (1)
|
||||
0x480| 0c | . | idx: 12 (valid) 0x487-0x487.7 (1)
|
||||
| | | [7]{}: local_time_type 0x488-0x48d.7 (6)
|
||||
0x480| 00 00 46 50 | ..FP | utoff: 18000 (valid) 0x488-0x48b.7 (4)
|
||||
0x480| 00 | . | dst: 0 (valid) 0x48c-0x48c.7 (1)
|
||||
0x480| 04 | . | idx: 4 (valid) 0x48d-0x48d.7 (1)
|
||||
| | | [8]{}: local_time_type 0x48e-0x493.7 (6)
|
||||
0x480| 00 00| ..| utoff: 25200 (valid) 0x48e-0x491.7 (4)
|
||||
0x490|62 70 |bp |
|
||||
0x490| 01 | . | dst: 1 (valid) 0x492-0x492.7 (1)
|
||||
0x490| 08 | . | idx: 8 (valid) 0x493-0x493.7 (1)
|
||||
| | | [9]{}: local_time_type 0x494-0x499.7 (6)
|
||||
0x490| 00 00 54 60 | ..T` | utoff: 21600 (valid) 0x494-0x497.7 (4)
|
||||
0x490| 00 | . | dst: 0 (valid) 0x498-0x498.7 (1)
|
||||
0x490| 0c | . | idx: 12 (valid) 0x499-0x499.7 (1)
|
||||
| | | time_zone_designations[0:4]: 0x49a-0x4a9.7 (16)
|
||||
0x490| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x49a-0x49d.7 (4)
|
||||
0x490| 2b 30| +0| [1]: "+05" time_zone_designation 0x49e-0x4a1.7 (4)
|
||||
0x4a0|35 00 |5. |
|
||||
0x4a0| 2b 30 37 00 | +07. | [2]: "+07" time_zone_designation 0x4a2-0x4a5.7 (4)
|
||||
0x4a0| 2b 30 36 00 | +06. | [3]: "+06" time_zone_designation 0x4a6-0x4a9.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x4aa-0x5ed.7 (324)
|
||||
| | | [0]{}: leap_second_record 0x4aa-0x4b5.7 (12)
|
||||
0x4a0| 00 00 00 00 04 b2| ......| occur: "1972-07-01T00:00:00Z" (78796800) 0x4aa-0x4b1.7 (8)
|
||||
0x4b0|58 00 |X. |
|
||||
0x4b0| 00 00 00 01 | .... | corr: 1 0x4b2-0x4b5.7 (4)
|
||||
| | | [1]{}: leap_second_record 0x4b6-0x4c1.7 (12)
|
||||
0x4b0| 00 00 00 00 05 a4 ec 01 | ........ | occur: "1973-01-01T00:00:01Z" (94694401) 0x4b6-0x4bd.7 (8)
|
||||
0x4b0| 00 00| ..| corr: 2 0x4be-0x4c1.7 (4)
|
||||
0x4c0|00 02 |.. |
|
||||
| | | [2]{}: leap_second_record 0x4c2-0x4cd.7 (12)
|
||||
0x4c0| 00 00 00 00 07 86 1f 82 | ........ | occur: "1974-01-01T00:00:02Z" (126230402) 0x4c2-0x4c9.7 (8)
|
||||
0x4c0| 00 00 00 03 | .... | corr: 3 0x4ca-0x4cd.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x4ce-0x4d9.7 (12)
|
||||
0x4c0| 00 00| ..| occur: "1975-01-01T00:00:03Z" (157766403) 0x4ce-0x4d5.7 (8)
|
||||
0x4d0|00 00 09 67 53 03 |...gS. |
|
||||
0x4d0| 00 00 00 04 | .... | corr: 4 0x4d6-0x4d9.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x4da-0x4e5.7 (12)
|
||||
0x4d0| 00 00 00 00 0b 48| .....H| occur: "1976-01-01T00:00:04Z" (189302404) 0x4da-0x4e1.7 (8)
|
||||
0x4e0|86 84 |.. |
|
||||
0x4e0| 00 00 00 05 | .... | corr: 5 0x4e2-0x4e5.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x4e6-0x4f1.7 (12)
|
||||
0x4e0| 00 00 00 00 0d 2b 0b 85 | .....+.. | occur: "1977-01-01T00:00:05Z" (220924805) 0x4e6-0x4ed.7 (8)
|
||||
0x4e0| 00 00| ..| corr: 6 0x4ee-0x4f1.7 (4)
|
||||
0x4f0|00 06 |.. |
|
||||
| | | [6]{}: leap_second_record 0x4f2-0x4fd.7 (12)
|
||||
0x4f0| 00 00 00 00 0f 0c 3f 06 | ......?. | occur: "1978-01-01T00:00:06Z" (252460806) 0x4f2-0x4f9.7 (8)
|
||||
0x4f0| 00 00 00 07 | .... | corr: 7 0x4fa-0x4fd.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x4fe-0x509.7 (12)
|
||||
0x4f0| 00 00| ..| occur: "1979-01-01T00:00:07Z" (283996807) 0x4fe-0x505.7 (8)
|
||||
0x500|00 00 10 ed 72 87 |....r. |
|
||||
0x500| 00 00 00 08 | .... | corr: 8 0x506-0x509.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x50a-0x515.7 (12)
|
||||
0x500| 00 00 00 00 12 ce| ......| occur: "1980-01-01T00:00:08Z" (315532808) 0x50a-0x511.7 (8)
|
||||
0x510|a6 08 |.. |
|
||||
0x510| 00 00 00 09 | .... | corr: 9 0x512-0x515.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x516-0x521.7 (12)
|
||||
0x510| 00 00 00 00 15 9f ca 89 | ........ | occur: "1981-07-01T00:00:09Z" (362793609) 0x516-0x51d.7 (8)
|
||||
0x510| 00 00| ..| corr: 10 0x51e-0x521.7 (4)
|
||||
0x520|00 0a |.. |
|
||||
| | | [10]{}: leap_second_record 0x522-0x52d.7 (12)
|
||||
0x520| 00 00 00 00 17 80 fe 0a | ........ | occur: "1982-07-01T00:00:10Z" (394329610) 0x522-0x529.7 (8)
|
||||
0x520| 00 00 00 0b | .... | corr: 11 0x52a-0x52d.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x52e-0x539.7 (12)
|
||||
0x520| 00 00| ..| occur: "1983-07-01T00:00:11Z" (425865611) 0x52e-0x535.7 (8)
|
||||
0x530|00 00 19 62 31 8b |...b1. |
|
||||
0x530| 00 00 00 0c | .... | corr: 12 0x536-0x539.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x53a-0x545.7 (12)
|
||||
0x530| 00 00 00 00 1d 25| .....%| occur: "1985-07-01T00:00:12Z" (489024012) 0x53a-0x541.7 (8)
|
||||
0x540|ea 0c |.. |
|
||||
0x540| 00 00 00 0d | .... | corr: 13 0x542-0x545.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x546-0x551.7 (12)
|
||||
0x540| 00 00 00 00 21 da e5 0d | ....!... | occur: "1988-01-01T00:00:13Z" (567993613) 0x546-0x54d.7 (8)
|
||||
0x540| 00 00| ..| corr: 14 0x54e-0x551.7 (4)
|
||||
0x550|00 0e |.. |
|
||||
| | | [14]{}: leap_second_record 0x552-0x55d.7 (12)
|
||||
0x550| 00 00 00 00 25 9e 9d 8e | ....%... | occur: "1990-01-01T00:00:14Z" (631152014) 0x552-0x559.7 (8)
|
||||
0x550| 00 00 00 0f | .... | corr: 15 0x55a-0x55d.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x55e-0x569.7 (12)
|
||||
0x550| 00 00| ..| occur: "1991-01-01T00:00:15Z" (662688015) 0x55e-0x565.7 (8)
|
||||
0x560|00 00 27 7f d1 0f |..'... |
|
||||
0x560| 00 00 00 10 | .... | corr: 16 0x566-0x569.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x56a-0x575.7 (12)
|
||||
0x560| 00 00 00 00 2a 50| ....*P| occur: "1992-07-01T00:00:16Z" (709948816) 0x56a-0x571.7 (8)
|
||||
0x570|f5 90 |.. |
|
||||
0x570| 00 00 00 11 | .... | corr: 17 0x572-0x575.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x576-0x581.7 (12)
|
||||
0x570| 00 00 00 00 2c 32 29 11 | ....,2). | occur: "1993-07-01T00:00:17Z" (741484817) 0x576-0x57d.7 (8)
|
||||
0x570| 00 00| ..| corr: 18 0x57e-0x581.7 (4)
|
||||
0x580|00 12 |.. |
|
||||
| | | [18]{}: leap_second_record 0x582-0x58d.7 (12)
|
||||
0x580| 00 00 00 00 2e 13 5c 92 | ......\. | occur: "1994-07-01T00:00:18Z" (773020818) 0x582-0x589.7 (8)
|
||||
0x580| 00 00 00 13 | .... | corr: 19 0x58a-0x58d.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x58e-0x599.7 (12)
|
||||
0x580| 00 00| ..| occur: "1996-01-01T00:00:19Z" (820454419) 0x58e-0x595.7 (8)
|
||||
0x590|00 00 30 e7 24 13 |..0.$. |
|
||||
0x590| 00 00 00 14 | .... | corr: 20 0x596-0x599.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x59a-0x5a5.7 (12)
|
||||
0x590| 00 00 00 00 33 b8| ....3.| occur: "1997-07-01T00:00:20Z" (867715220) 0x59a-0x5a1.7 (8)
|
||||
0x5a0|48 94 |H. |
|
||||
0x5a0| 00 00 00 15 | .... | corr: 21 0x5a2-0x5a5.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x5a6-0x5b1.7 (12)
|
||||
0x5a0| 00 00 00 00 36 8c 10 15 | ....6... | occur: "1999-01-01T00:00:21Z" (915148821) 0x5a6-0x5ad.7 (8)
|
||||
0x5a0| 00 00| ..| corr: 22 0x5ae-0x5b1.7 (4)
|
||||
0x5b0|00 16 |.. |
|
||||
| | | [22]{}: leap_second_record 0x5b2-0x5bd.7 (12)
|
||||
0x5b0| 00 00 00 00 43 b7 1b 96 | ....C... | occur: "2006-01-01T00:00:22Z" (1136073622) 0x5b2-0x5b9.7 (8)
|
||||
0x5b0| 00 00 00 17 | .... | corr: 23 0x5ba-0x5bd.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x5be-0x5c9.7 (12)
|
||||
0x5b0| 00 00| ..| occur: "2009-01-01T00:00:23Z" (1230768023) 0x5be-0x5c5.7 (8)
|
||||
0x5c0|00 00 49 5c 07 97 |..I\.. |
|
||||
0x5c0| 00 00 00 18 | .... | corr: 24 0x5c6-0x5c9.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x5ca-0x5d5.7 (12)
|
||||
0x5c0| 00 00 00 00 4f ef| ....O.| occur: "2012-07-01T00:00:24Z" (1341100824) 0x5ca-0x5d1.7 (8)
|
||||
0x5d0|93 18 |.. |
|
||||
0x5d0| 00 00 00 19 | .... | corr: 25 0x5d2-0x5d5.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x5d6-0x5e1.7 (12)
|
||||
0x5d0| 00 00 00 00 55 93 2d 99 | ....U.-. | occur: "2015-07-01T00:00:25Z" (1435708825) 0x5d6-0x5dd.7 (8)
|
||||
0x5d0| 00 00| ..| corr: 26 0x5de-0x5e1.7 (4)
|
||||
0x5e0|00 1a |.. |
|
||||
| | | [26]{}: leap_second_record 0x5e2-0x5ed.7 (12)
|
||||
0x5e0| 00 00 00 00 58 68 46 9a | ....XhF. | occur: "2017-01-01T00:00:26Z" (1483228826) 0x5e2-0x5e9.7 (8)
|
||||
0x5e0| 00 00 00 1b | .... | corr: 27 0x5ea-0x5ed.7 (4)
|
||||
| | | standard_wall_indicators[0:10]: 0x5ee-0x5f7.7 (10)
|
||||
0x5e0| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x5ee-0x5ee.7 (1)
|
||||
0x5e0| 00| .| [1]: 0 standard_wall_indicator (valid) 0x5ef-0x5ef.7 (1)
|
||||
0x5f0|00 |. | [2]: 0 standard_wall_indicator (valid) 0x5f0-0x5f0.7 (1)
|
||||
0x5f0| 00 | . | [3]: 0 standard_wall_indicator (valid) 0x5f1-0x5f1.7 (1)
|
||||
0x5f0| 01 | . | [4]: 1 standard_wall_indicator (valid) 0x5f2-0x5f2.7 (1)
|
||||
0x5f0| 01 | . | [5]: 1 standard_wall_indicator (valid) 0x5f3-0x5f3.7 (1)
|
||||
0x5f0| 01 | . | [6]: 1 standard_wall_indicator (valid) 0x5f4-0x5f4.7 (1)
|
||||
0x5f0| 01 | . | [7]: 1 standard_wall_indicator (valid) 0x5f5-0x5f5.7 (1)
|
||||
0x5f0| 01 | . | [8]: 1 standard_wall_indicator (valid) 0x5f6-0x5f6.7 (1)
|
||||
0x5f0| 01 | . | [9]: 1 standard_wall_indicator (valid) 0x5f7-0x5f7.7 (1)
|
||||
| | | ut_local_indicators[0:0]: 0x5f8-NA (0)
|
||||
| | | footer{}: 0x5f8-0x5f9.7 (2)
|
||||
0x5f0| 0a | . | nl1: 10 (valid) 0x5f8-0x5f8.7 (1)
|
||||
| | | tz_string: "" 0x5f9-NA (0)
|
||||
0x5f0| 0a| | .| | nl2: 10 (valid) 0x5f9-0x5f9.7 (1)
|
BIN
format/tzif/testdata/Amman
vendored
Normal file
BIN
format/tzif/testdata/Amman
vendored
Normal file
Binary file not shown.
696
format/tzif/testdata/Amman.fqtest
vendored
Normal file
696
format/tzif/testdata/Amman.fqtest
vendored
Normal file
@ -0,0 +1,696 @@
|
||||
$ fq -d tzif dv Amman
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: Amman (tzif) 0x0-0x7bb.7 (1980)
|
||||
| | | v1header{}: 0x0-0x2b.7 (44)
|
||||
0x000|54 5a 69 66 |TZif | magic: 0x545a6966 (valid) 0x0-0x3.7 (4)
|
||||
0x000| 32 | 2 | ver: "2" (0x32) (valid) 0x4-0x4.7 (1)
|
||||
0x000| 00 00 00 00 00 00 00 00 00 00 00| ...........| reserved: raw bits 0x5-0x13.7 (15)
|
||||
0x010|00 00 00 00 |.... |
|
||||
0x010| 00 00 00 00 | .... | isutcnt: 0 0x14-0x17.7 (4)
|
||||
0x010| 00 00 00 06 | .... | isstdcnt: 6 0x18-0x1b.7 (4)
|
||||
0x010| 00 00 00 1b| ....| leapcnt: 27 0x1c-0x1f.7 (4)
|
||||
0x020|00 00 00 58 |...X | timecnt: 88 0x20-0x23.7 (4)
|
||||
0x020| 00 00 00 06 | .... | typecnt: 6 0x24-0x27.7 (4)
|
||||
0x020| 00 00 00 11 | .... | charcnt: 17 0x28-0x2b.7 (4)
|
||||
| | | v1datablock{}: 0x2c-0x2f6.7 (715)
|
||||
| | | transition_times[0:88]: 0x2c-0x18b.7 (352)
|
||||
0x020| b6 a3 d6 d0| ....| [0]: "1930-12-31T21:36:16Z" (-1230776624) transition_time 0x2c-0x2f.7 (4)
|
||||
0x030|06 72 79 e2 |.ry. | [1]: "1973-06-05T22:00:02Z" (108165602) transition_time 0x30-0x33.7 (4)
|
||||
0x030| 07 0c ab 52 | ...R | [2]: "1973-09-30T21:00:02Z" (118270802) transition_time 0x34-0x37.7 (4)
|
||||
0x030| 08 24 37 63 | .$7c | [3]: "1974-04-30T22:00:03Z" (136591203) transition_time 0x38-0x3b.7 (4)
|
||||
0x030| 08 ed de d3| ....| [4]: "1974-09-30T21:00:03Z" (149806803) transition_time 0x3c-0x3f.7 (4)
|
||||
0x040|0a 05 6a e4 |..j. | [5]: "1975-04-30T22:00:04Z" (168127204) transition_time 0x40-0x43.7 (4)
|
||||
0x040| 0a cf 12 54 | ...T | [6]: "1975-09-30T21:00:04Z" (181342804) transition_time 0x44-0x47.7 (4)
|
||||
0x040| 0b e7 ef e5 | .... | [7]: "1976-04-30T22:00:05Z" (199749605) transition_time 0x48-0x4b.7 (4)
|
||||
0x040| 0c da 75 d5| ..u.| [8]: "1976-10-31T21:00:05Z" (215643605) transition_time 0x4c-0x4f.7 (4)
|
||||
0x050|0d c9 23 66 |..#f | [9]: "1977-04-30T22:00:06Z" (231285606) transition_time 0x50-0x53.7 (4)
|
||||
0x050| 0e 92 ca d6 | .... | [10]: "1977-09-30T21:00:06Z" (244501206) transition_time 0x54-0x57.7 (4)
|
||||
0x050| 0f a9 05 67 | ...g | [11]: "1978-04-29T22:00:07Z" (262735207) transition_time 0x58-0x5b.7 (4)
|
||||
0x050| 10 72 ac d7| .r..| [12]: "1978-09-29T21:00:07Z" (275950807) transition_time 0x5c-0x5f.7 (4)
|
||||
0x060|1c ad d5 6c |...l | [13]: "1985-03-31T22:00:12Z" (481154412) transition_time 0x60-0x63.7 (4)
|
||||
0x060| 1d 9f 09 dd | .... | [14]: "1985-09-30T21:00:13Z" (496962013) transition_time 0x64-0x67.7 (4)
|
||||
0x060| 1e 92 fd 6d | ...m | [15]: "1986-04-03T22:00:13Z" (512949613) transition_time 0x68-0x6b.7 (4)
|
||||
0x060| 1f 82 e0 5d| ...]| [16]: "1986-10-02T21:00:13Z" (528670813) transition_time 0x6c-0x6f.7 (4)
|
||||
0x070|20 72 df 6d | r.m | [17]: "1987-04-02T22:00:13Z" (544399213) transition_time 0x70-0x73.7 (4)
|
||||
0x070| 21 62 c2 5d | !b.] | [18]: "1987-10-01T21:00:13Z" (560120413) transition_time 0x74-0x77.7 (4)
|
||||
0x070| 22 52 c1 6e | "R.n | [19]: "1988-03-31T22:00:14Z" (575848814) transition_time 0x78-0x7b.7 (4)
|
||||
0x070| 23 4b de de| #K..| [20]: "1988-10-06T21:00:14Z" (592174814) transition_time 0x7c-0x7f.7 (4)
|
||||
0x080|24 64 bc 6e |$d.n | [21]: "1989-05-07T22:00:14Z" (610581614) transition_time 0x80-0x83.7 (4)
|
||||
0x080| 25 2b c0 de | %+.. | [22]: "1989-10-05T21:00:14Z" (623624414) transition_time 0x84-0x87.7 (4)
|
||||
0x080| 26 37 6f 6f | &7oo | [23]: "1990-04-26T22:00:15Z" (641167215) transition_time 0x88-0x8b.7 (4)
|
||||
0x080| 27 0b a2 df| '...| [24]: "1990-10-04T21:00:15Z" (655074015) transition_time 0x8c-0x8f.7 (4)
|
||||
0x090|28 0b 73 f0 |(.s. | [25]: "1991-04-16T22:00:16Z" (671839216) transition_time 0x90-0x93.7 (4)
|
||||
0x090| 28 e2 4a 60 | (.J` | [26]: "1991-09-26T21:00:16Z" (685918816) transition_time 0x94-0x97.7 (4)
|
||||
0x090| 29 e4 be 70 | )..p | [27]: "1992-04-09T22:00:16Z" (702856816) transition_time 0x98-0x9b.7 (4)
|
||||
0x090| 2a cb 66 e1| *.f.| [28]: "1992-10-01T21:00:17Z" (717973217) transition_time 0x9c-0x9f.7 (4)
|
||||
0x0a0|2b bb 65 f1 |+.e. | [29]: "1993-04-01T22:00:17Z" (733701617) transition_time 0xa0-0xa3.7 (4)
|
||||
0x0a0| 2c ab 48 e2 | ,.H. | [30]: "1993-09-30T21:00:18Z" (749422818) transition_time 0xa4-0xa7.7 (4)
|
||||
0x0a0| 2d 9b 47 f2 | -.G. | [31]: "1994-03-31T22:00:18Z" (765151218) transition_time 0xa8-0xab.7 (4)
|
||||
0x0a0| 2e 78 b5 e3| .x..| [32]: "1994-09-15T21:00:19Z" (779662819) transition_time 0xac-0xaf.7 (4)
|
||||
0x0b0|2f 84 64 73 |/.ds | [33]: "1995-04-06T22:00:19Z" (797205619) transition_time 0xb0-0xb3.7 (4)
|
||||
0x0b0| 30 58 a5 f3 | 0X.. | [34]: "1995-09-14T22:00:19Z" (811116019) transition_time 0xb4-0xb7.7 (4)
|
||||
0x0b0| 31 64 46 74 | 1dFt | [35]: "1996-04-04T22:00:20Z" (828655220) transition_time 0xb8-0xbb.7 (4)
|
||||
0x0b0| 32 41 c2 74| 2A.t| [36]: "1996-09-19T22:00:20Z" (843170420) transition_time 0xbc-0xbf.7 (4)
|
||||
0x0c0|33 44 28 74 |3D(t | [37]: "1997-04-03T22:00:20Z" (860104820) transition_time 0xc0-0xc3.7 (4)
|
||||
0x0c0| 34 21 a4 75 | 4!.u | [38]: "1997-09-18T22:00:21Z" (874620021) transition_time 0xc4-0xc7.7 (4)
|
||||
0x0c0| 35 24 0a 75 | 5$.u | [39]: "1998-04-02T22:00:21Z" (891554421) transition_time 0xc8-0xcb.7 (4)
|
||||
0x0c0| 36 01 86 75| 6..u| [40]: "1998-09-17T22:00:21Z" (906069621) transition_time 0xcc-0xcf.7 (4)
|
||||
0x0d0|37 7a 93 76 |7z.v | [41]: "1999-06-30T22:00:22Z" (930780022) transition_time 0xd0-0xd3.7 (4)
|
||||
0x0d0| 37 ea a2 f6 | 7... | [42]: "1999-09-23T22:00:22Z" (938124022) transition_time 0xd4-0xd7.7 (4)
|
||||
0x0d0| 38 e2 7c f6 | 8.|. | [43]: "2000-03-29T22:00:22Z" (954367222) transition_time 0xd8-0xdb.7 (4)
|
||||
0x0d0| 39 d3 bf 76| 9..v| [44]: "2000-09-28T22:00:22Z" (970178422) transition_time 0xdc-0xdf.7 (4)
|
||||
0x0e0|3a c2 5e f6 |:.^. | [45]: "2001-03-28T22:00:22Z" (985816822) transition_time 0xe0-0xe3.7 (4)
|
||||
0x0e0| 3b b3 a1 76 | ;..v | [46]: "2001-09-27T22:00:22Z" (1001628022) transition_time 0xe4-0xe7.7 (4)
|
||||
0x0e0| 3c a3 92 76 | <..v | [47]: "2002-03-28T22:00:22Z" (1017352822) transition_time 0xe8-0xeb.7 (4)
|
||||
0x0e0| 3d 93 83 76| =..v| [48]: "2002-09-26T22:00:22Z" (1033077622) transition_time 0xec-0xef.7 (4)
|
||||
0x0f0|3e 83 74 76 |>.tv | [49]: "2003-03-27T22:00:22Z" (1048802422) transition_time 0xf0-0xf3.7 (4)
|
||||
0x0f0| 3f 98 4f 76 | ?.Ov | [50]: "2003-10-23T22:00:22Z" (1066946422) transition_time 0xf4-0xf7.7 (4)
|
||||
0x0f0| 40 63 56 76 | @cVv | [51]: "2004-03-25T22:00:22Z" (1080252022) transition_time 0xf8-0xfb.7 (4)
|
||||
0x0f0| 41 6e f6 f6| An..| [52]: "2004-10-14T22:00:22Z" (1097791222) transition_time 0xfc-0xff.7 (4)
|
||||
0x100|42 4c 72 f6 |BLr. | [53]: "2005-03-31T22:00:22Z" (1112306422) transition_time 0x100-0x103.7 (4)
|
||||
0x100| 43 3c 63 f6 | C<c. | [54]: "2005-09-29T22:00:22Z" (1128031222) transition_time 0x104-0x107.7 (4)
|
||||
0x100| 44 2c 54 f7 | D,T. | [55]: "2006-03-30T22:00:23Z" (1143756023) transition_time 0x108-0x10b.7 (4)
|
||||
0x100| 45 41 2f f7| EA/.| [56]: "2006-10-26T22:00:23Z" (1161900023) transition_time 0x10c-0x10f.7 (4)
|
||||
0x110|46 0c 36 f7 |F.6. | [57]: "2007-03-29T22:00:23Z" (1175205623) transition_time 0x110-0x113.7 (4)
|
||||
0x110| 47 21 11 f7 | G!.. | [58]: "2007-10-25T22:00:23Z" (1193349623) transition_time 0x114-0x117.7 (4)
|
||||
0x110| 47 ec 18 f7 | G... | [59]: "2008-03-27T22:00:23Z" (1206655223) transition_time 0x118-0x11b.7 (4)
|
||||
0x110| 49 0a 2e 77| I..w| [60]: "2008-10-30T22:00:23Z" (1225404023) transition_time 0x11c-0x11f.7 (4)
|
||||
0x120|49 cb fa f8 |I... | [61]: "2009-03-26T22:00:24Z" (1238104824) transition_time 0x120-0x123.7 (4)
|
||||
0x120| 4a ea 10 78 | J..x | [62]: "2009-10-29T22:00:24Z" (1256853624) transition_time 0x124-0x127.7 (4)
|
||||
0x120| 4b ab dc f8 | K... | [63]: "2010-03-25T22:00:24Z" (1269554424) transition_time 0x128-0x12b.7 (4)
|
||||
0x120| 4c c9 f2 78| L..x| [64]: "2010-10-28T22:00:24Z" (1288303224) transition_time 0x12c-0x12f.7 (4)
|
||||
0x130|4d 94 f9 78 |M..x | [65]: "2011-03-31T22:00:24Z" (1301608824) transition_time 0x130-0x133.7 (4)
|
||||
0x130| 4e a9 d4 78 | N..x | [66]: "2011-10-27T22:00:24Z" (1319752824) transition_time 0x134-0x137.7 (4)
|
||||
0x130| 4f 74 db 78 | Ot.x | [67]: "2012-03-29T22:00:24Z" (1333058424) transition_time 0x138-0x13b.7 (4)
|
||||
0x130| 52 b3 5e 69| R.^i| [68]: "2013-12-19T21:00:25Z" (1387486825) transition_time 0x13c-0x13f.7 (4)
|
||||
0x140|53 34 9f 79 |S4.y | [69]: "2014-03-27T22:00:25Z" (1395957625) transition_time 0x140-0x143.7 (4)
|
||||
0x140| 54 52 b4 f9 | TR.. | [70]: "2014-10-30T22:00:25Z" (1414706425) transition_time 0x144-0x147.7 (4)
|
||||
0x140| 55 14 81 79 | U..y | [71]: "2015-03-26T22:00:25Z" (1427407225) transition_time 0x148-0x14b.7 (4)
|
||||
0x140| 56 32 96 fa| V2..| [72]: "2015-10-29T22:00:26Z" (1446156026) transition_time 0x14c-0x14f.7 (4)
|
||||
0x150|56 fd 9d fa |V... | [73]: "2016-03-31T22:00:26Z" (1459461626) transition_time 0x150-0x153.7 (4)
|
||||
0x150| 58 12 78 fa | X.x. | [74]: "2016-10-27T22:00:26Z" (1477605626) transition_time 0x154-0x157.7 (4)
|
||||
0x150| 58 dd 7f fb | X... | [75]: "2017-03-30T22:00:27Z" (1490911227) transition_time 0x158-0x15b.7 (4)
|
||||
0x150| 59 f2 5a fb| Y.Z.| [76]: "2017-10-26T22:00:27Z" (1509055227) transition_time 0x15c-0x15f.7 (4)
|
||||
0x160|5a bd 61 fb |Z.a. | [77]: "2018-03-29T22:00:27Z" (1522360827) transition_time 0x160-0x163.7 (4)
|
||||
0x160| 5b d2 3c fb | [.<. | [78]: "2018-10-25T22:00:27Z" (1540504827) transition_time 0x164-0x167.7 (4)
|
||||
0x160| 5c 9d 43 fb | \.C. | [79]: "2019-03-28T22:00:27Z" (1553810427) transition_time 0x168-0x16b.7 (4)
|
||||
0x160| 5d b2 1e fb| ]...| [80]: "2019-10-24T22:00:27Z" (1571954427) transition_time 0x16c-0x16f.7 (4)
|
||||
0x170|5e 7d 25 fb |^}%. | [81]: "2020-03-26T22:00:27Z" (1585260027) transition_time 0x170-0x173.7 (4)
|
||||
0x170| 5f 9b 3b 7b | _.;{ | [82]: "2020-10-29T22:00:27Z" (1604008827) transition_time 0x174-0x177.7 (4)
|
||||
0x170| 60 5d 07 fb | `].. | [83]: "2021-03-25T22:00:27Z" (1616709627) transition_time 0x178-0x17b.7 (4)
|
||||
0x170| 61 7b 1d 7b| a{.{| [84]: "2021-10-28T22:00:27Z" (1635458427) transition_time 0x17c-0x17f.7 (4)
|
||||
0x180|62 17 ff fb |b... | [85]: "2022-02-24T22:00:27Z" (1645740027) transition_time 0x180-0x183.7 (4)
|
||||
0x180| 63 5a ff 7b | cZ.{ | [86]: "2022-10-27T22:00:27Z" (1666908027) transition_time 0x184-0x187.7 (4)
|
||||
0x180| 64 9b 78 1b | d.x. | [87]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x188-0x18b.7 (4)
|
||||
| | | transition_types[0:88]: 0x18c-0x1e3.7 (88)
|
||||
0x180| 02 | . | [0]: 2 transition_type 0x18c-0x18c.7 (1)
|
||||
0x180| 01 | . | [1]: 1 transition_type 0x18d-0x18d.7 (1)
|
||||
0x180| 02 | . | [2]: 2 transition_type 0x18e-0x18e.7 (1)
|
||||
0x180| 01| .| [3]: 1 transition_type 0x18f-0x18f.7 (1)
|
||||
0x190|02 |. | [4]: 2 transition_type 0x190-0x190.7 (1)
|
||||
0x190| 01 | . | [5]: 1 transition_type 0x191-0x191.7 (1)
|
||||
0x190| 02 | . | [6]: 2 transition_type 0x192-0x192.7 (1)
|
||||
0x190| 01 | . | [7]: 1 transition_type 0x193-0x193.7 (1)
|
||||
0x190| 02 | . | [8]: 2 transition_type 0x194-0x194.7 (1)
|
||||
0x190| 01 | . | [9]: 1 transition_type 0x195-0x195.7 (1)
|
||||
0x190| 02 | . | [10]: 2 transition_type 0x196-0x196.7 (1)
|
||||
0x190| 01 | . | [11]: 1 transition_type 0x197-0x197.7 (1)
|
||||
0x190| 02 | . | [12]: 2 transition_type 0x198-0x198.7 (1)
|
||||
0x190| 01 | . | [13]: 1 transition_type 0x199-0x199.7 (1)
|
||||
0x190| 02 | . | [14]: 2 transition_type 0x19a-0x19a.7 (1)
|
||||
0x190| 01 | . | [15]: 1 transition_type 0x19b-0x19b.7 (1)
|
||||
0x190| 02 | . | [16]: 2 transition_type 0x19c-0x19c.7 (1)
|
||||
0x190| 01 | . | [17]: 1 transition_type 0x19d-0x19d.7 (1)
|
||||
0x190| 02 | . | [18]: 2 transition_type 0x19e-0x19e.7 (1)
|
||||
0x190| 01| .| [19]: 1 transition_type 0x19f-0x19f.7 (1)
|
||||
0x1a0|02 |. | [20]: 2 transition_type 0x1a0-0x1a0.7 (1)
|
||||
0x1a0| 01 | . | [21]: 1 transition_type 0x1a1-0x1a1.7 (1)
|
||||
0x1a0| 02 | . | [22]: 2 transition_type 0x1a2-0x1a2.7 (1)
|
||||
0x1a0| 01 | . | [23]: 1 transition_type 0x1a3-0x1a3.7 (1)
|
||||
0x1a0| 02 | . | [24]: 2 transition_type 0x1a4-0x1a4.7 (1)
|
||||
0x1a0| 01 | . | [25]: 1 transition_type 0x1a5-0x1a5.7 (1)
|
||||
0x1a0| 02 | . | [26]: 2 transition_type 0x1a6-0x1a6.7 (1)
|
||||
0x1a0| 01 | . | [27]: 1 transition_type 0x1a7-0x1a7.7 (1)
|
||||
0x1a0| 02 | . | [28]: 2 transition_type 0x1a8-0x1a8.7 (1)
|
||||
0x1a0| 01 | . | [29]: 1 transition_type 0x1a9-0x1a9.7 (1)
|
||||
0x1a0| 02 | . | [30]: 2 transition_type 0x1aa-0x1aa.7 (1)
|
||||
0x1a0| 01 | . | [31]: 1 transition_type 0x1ab-0x1ab.7 (1)
|
||||
0x1a0| 02 | . | [32]: 2 transition_type 0x1ac-0x1ac.7 (1)
|
||||
0x1a0| 01 | . | [33]: 1 transition_type 0x1ad-0x1ad.7 (1)
|
||||
0x1a0| 03 | . | [34]: 3 transition_type 0x1ae-0x1ae.7 (1)
|
||||
0x1a0| 01| .| [35]: 1 transition_type 0x1af-0x1af.7 (1)
|
||||
0x1b0|03 |. | [36]: 3 transition_type 0x1b0-0x1b0.7 (1)
|
||||
0x1b0| 01 | . | [37]: 1 transition_type 0x1b1-0x1b1.7 (1)
|
||||
0x1b0| 03 | . | [38]: 3 transition_type 0x1b2-0x1b2.7 (1)
|
||||
0x1b0| 01 | . | [39]: 1 transition_type 0x1b3-0x1b3.7 (1)
|
||||
0x1b0| 03 | . | [40]: 3 transition_type 0x1b4-0x1b4.7 (1)
|
||||
0x1b0| 04 | . | [41]: 4 transition_type 0x1b5-0x1b5.7 (1)
|
||||
0x1b0| 03 | . | [42]: 3 transition_type 0x1b6-0x1b6.7 (1)
|
||||
0x1b0| 04 | . | [43]: 4 transition_type 0x1b7-0x1b7.7 (1)
|
||||
0x1b0| 03 | . | [44]: 3 transition_type 0x1b8-0x1b8.7 (1)
|
||||
0x1b0| 04 | . | [45]: 4 transition_type 0x1b9-0x1b9.7 (1)
|
||||
0x1b0| 03 | . | [46]: 3 transition_type 0x1ba-0x1ba.7 (1)
|
||||
0x1b0| 01 | . | [47]: 1 transition_type 0x1bb-0x1bb.7 (1)
|
||||
0x1b0| 03 | . | [48]: 3 transition_type 0x1bc-0x1bc.7 (1)
|
||||
0x1b0| 01 | . | [49]: 1 transition_type 0x1bd-0x1bd.7 (1)
|
||||
0x1b0| 03 | . | [50]: 3 transition_type 0x1be-0x1be.7 (1)
|
||||
0x1b0| 01| .| [51]: 1 transition_type 0x1bf-0x1bf.7 (1)
|
||||
0x1c0|03 |. | [52]: 3 transition_type 0x1c0-0x1c0.7 (1)
|
||||
0x1c0| 01 | . | [53]: 1 transition_type 0x1c1-0x1c1.7 (1)
|
||||
0x1c0| 03 | . | [54]: 3 transition_type 0x1c2-0x1c2.7 (1)
|
||||
0x1c0| 01 | . | [55]: 1 transition_type 0x1c3-0x1c3.7 (1)
|
||||
0x1c0| 03 | . | [56]: 3 transition_type 0x1c4-0x1c4.7 (1)
|
||||
0x1c0| 01 | . | [57]: 1 transition_type 0x1c5-0x1c5.7 (1)
|
||||
0x1c0| 03 | . | [58]: 3 transition_type 0x1c6-0x1c6.7 (1)
|
||||
0x1c0| 01 | . | [59]: 1 transition_type 0x1c7-0x1c7.7 (1)
|
||||
0x1c0| 03 | . | [60]: 3 transition_type 0x1c8-0x1c8.7 (1)
|
||||
0x1c0| 01 | . | [61]: 1 transition_type 0x1c9-0x1c9.7 (1)
|
||||
0x1c0| 03 | . | [62]: 3 transition_type 0x1ca-0x1ca.7 (1)
|
||||
0x1c0| 01 | . | [63]: 1 transition_type 0x1cb-0x1cb.7 (1)
|
||||
0x1c0| 03 | . | [64]: 3 transition_type 0x1cc-0x1cc.7 (1)
|
||||
0x1c0| 01 | . | [65]: 1 transition_type 0x1cd-0x1cd.7 (1)
|
||||
0x1c0| 03 | . | [66]: 3 transition_type 0x1ce-0x1ce.7 (1)
|
||||
0x1c0| 01| .| [67]: 1 transition_type 0x1cf-0x1cf.7 (1)
|
||||
0x1d0|02 |. | [68]: 2 transition_type 0x1d0-0x1d0.7 (1)
|
||||
0x1d0| 01 | . | [69]: 1 transition_type 0x1d1-0x1d1.7 (1)
|
||||
0x1d0| 03 | . | [70]: 3 transition_type 0x1d2-0x1d2.7 (1)
|
||||
0x1d0| 01 | . | [71]: 1 transition_type 0x1d3-0x1d3.7 (1)
|
||||
0x1d0| 03 | . | [72]: 3 transition_type 0x1d4-0x1d4.7 (1)
|
||||
0x1d0| 01 | . | [73]: 1 transition_type 0x1d5-0x1d5.7 (1)
|
||||
0x1d0| 03 | . | [74]: 3 transition_type 0x1d6-0x1d6.7 (1)
|
||||
0x1d0| 01 | . | [75]: 1 transition_type 0x1d7-0x1d7.7 (1)
|
||||
0x1d0| 03 | . | [76]: 3 transition_type 0x1d8-0x1d8.7 (1)
|
||||
0x1d0| 01 | . | [77]: 1 transition_type 0x1d9-0x1d9.7 (1)
|
||||
0x1d0| 03 | . | [78]: 3 transition_type 0x1da-0x1da.7 (1)
|
||||
0x1d0| 01 | . | [79]: 1 transition_type 0x1db-0x1db.7 (1)
|
||||
0x1d0| 03 | . | [80]: 3 transition_type 0x1dc-0x1dc.7 (1)
|
||||
0x1d0| 01 | . | [81]: 1 transition_type 0x1dd-0x1dd.7 (1)
|
||||
0x1d0| 03 | . | [82]: 3 transition_type 0x1de-0x1de.7 (1)
|
||||
0x1d0| 01| .| [83]: 1 transition_type 0x1df-0x1df.7 (1)
|
||||
0x1e0|03 |. | [84]: 3 transition_type 0x1e0-0x1e0.7 (1)
|
||||
0x1e0| 01 | . | [85]: 1 transition_type 0x1e1-0x1e1.7 (1)
|
||||
0x1e0| 05 | . | [86]: 5 transition_type 0x1e2-0x1e2.7 (1)
|
||||
0x1e0| 05 | . | [87]: 5 transition_type 0x1e3-0x1e3.7 (1)
|
||||
| | | local_time_type_records[0:6]: 0x1e4-0x207.7 (36)
|
||||
| | | [0]{}: local_time_type 0x1e4-0x1e9.7 (6)
|
||||
0x1e0| 00 00 21 b0 | ..!. | utoff: 8624 (valid) 0x1e4-0x1e7.7 (4)
|
||||
0x1e0| 00 | . | dst: 0 (valid) 0x1e8-0x1e8.7 (1)
|
||||
0x1e0| 00 | . | idx: 0 (valid) 0x1e9-0x1e9.7 (1)
|
||||
| | | [1]{}: local_time_type 0x1ea-0x1ef.7 (6)
|
||||
0x1e0| 00 00 2a 30 | ..*0 | utoff: 10800 (valid) 0x1ea-0x1ed.7 (4)
|
||||
0x1e0| 01 | . | dst: 1 (valid) 0x1ee-0x1ee.7 (1)
|
||||
0x1e0| 04| .| idx: 4 (valid) 0x1ef-0x1ef.7 (1)
|
||||
| | | [2]{}: local_time_type 0x1f0-0x1f5.7 (6)
|
||||
0x1f0|00 00 1c 20 |... | utoff: 7200 (valid) 0x1f0-0x1f3.7 (4)
|
||||
0x1f0| 00 | . | dst: 0 (valid) 0x1f4-0x1f4.7 (1)
|
||||
0x1f0| 09 | . | idx: 9 (valid) 0x1f5-0x1f5.7 (1)
|
||||
| | | [3]{}: local_time_type 0x1f6-0x1fb.7 (6)
|
||||
0x1f0| 00 00 1c 20 | ... | utoff: 7200 (valid) 0x1f6-0x1f9.7 (4)
|
||||
0x1f0| 00 | . | dst: 0 (valid) 0x1fa-0x1fa.7 (1)
|
||||
0x1f0| 09 | . | idx: 9 (valid) 0x1fb-0x1fb.7 (1)
|
||||
| | | [4]{}: local_time_type 0x1fc-0x201.7 (6)
|
||||
0x1f0| 00 00 2a 30| ..*0| utoff: 10800 (valid) 0x1fc-0x1ff.7 (4)
|
||||
0x200|01 |. | dst: 1 (valid) 0x200-0x200.7 (1)
|
||||
0x200| 04 | . | idx: 4 (valid) 0x201-0x201.7 (1)
|
||||
| | | [5]{}: local_time_type 0x202-0x207.7 (6)
|
||||
0x200| 00 00 2a 30 | ..*0 | utoff: 10800 (valid) 0x202-0x205.7 (4)
|
||||
0x200| 00 | . | dst: 0 (valid) 0x206-0x206.7 (1)
|
||||
0x200| 0d | . | idx: 13 (valid) 0x207-0x207.7 (1)
|
||||
| | | time_zone_designations[0:4]: 0x208-0x218.7 (17)
|
||||
0x200| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x208-0x20b.7 (4)
|
||||
0x200| 45 45 53 54| EEST| [1]: "EEST" time_zone_designation 0x20c-0x210.7 (5)
|
||||
0x210|00 |. |
|
||||
0x210| 45 45 54 00 | EET. | [2]: "EET" time_zone_designation 0x211-0x214.7 (4)
|
||||
0x210| 2b 30 33 00 | +03. | [3]: "+03" time_zone_designation 0x215-0x218.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x219-0x2f0.7 (216)
|
||||
| | | [0]{}: leap_second_record 0x219-0x220.7 (8)
|
||||
0x210| 04 b2 58 00 | ..X. | occur: "1972-07-01T00:00:00Z" (78796800) 0x219-0x21c.7 (4)
|
||||
0x210| 00 00 00| ...| corr: 1 0x21d-0x220.7 (4)
|
||||
0x220|01 |. |
|
||||
| | | [1]{}: leap_second_record 0x221-0x228.7 (8)
|
||||
0x220| 05 a4 ec 01 | .... | occur: "1973-01-01T00:00:01Z" (94694401) 0x221-0x224.7 (4)
|
||||
0x220| 00 00 00 02 | .... | corr: 2 0x225-0x228.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x229-0x230.7 (8)
|
||||
0x220| 07 86 1f 82 | .... | occur: "1974-01-01T00:00:02Z" (126230402) 0x229-0x22c.7 (4)
|
||||
0x220| 00 00 00| ...| corr: 3 0x22d-0x230.7 (4)
|
||||
0x230|03 |. |
|
||||
| | | [3]{}: leap_second_record 0x231-0x238.7 (8)
|
||||
0x230| 09 67 53 03 | .gS. | occur: "1975-01-01T00:00:03Z" (157766403) 0x231-0x234.7 (4)
|
||||
0x230| 00 00 00 04 | .... | corr: 4 0x235-0x238.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x239-0x240.7 (8)
|
||||
0x230| 0b 48 86 84 | .H.. | occur: "1976-01-01T00:00:04Z" (189302404) 0x239-0x23c.7 (4)
|
||||
0x230| 00 00 00| ...| corr: 5 0x23d-0x240.7 (4)
|
||||
0x240|05 |. |
|
||||
| | | [5]{}: leap_second_record 0x241-0x248.7 (8)
|
||||
0x240| 0d 2b 0b 85 | .+.. | occur: "1977-01-01T00:00:05Z" (220924805) 0x241-0x244.7 (4)
|
||||
0x240| 00 00 00 06 | .... | corr: 6 0x245-0x248.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x249-0x250.7 (8)
|
||||
0x240| 0f 0c 3f 06 | ..?. | occur: "1978-01-01T00:00:06Z" (252460806) 0x249-0x24c.7 (4)
|
||||
0x240| 00 00 00| ...| corr: 7 0x24d-0x250.7 (4)
|
||||
0x250|07 |. |
|
||||
| | | [7]{}: leap_second_record 0x251-0x258.7 (8)
|
||||
0x250| 10 ed 72 87 | ..r. | occur: "1979-01-01T00:00:07Z" (283996807) 0x251-0x254.7 (4)
|
||||
0x250| 00 00 00 08 | .... | corr: 8 0x255-0x258.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x259-0x260.7 (8)
|
||||
0x250| 12 ce a6 08 | .... | occur: "1980-01-01T00:00:08Z" (315532808) 0x259-0x25c.7 (4)
|
||||
0x250| 00 00 00| ...| corr: 9 0x25d-0x260.7 (4)
|
||||
0x260|09 |. |
|
||||
| | | [9]{}: leap_second_record 0x261-0x268.7 (8)
|
||||
0x260| 15 9f ca 89 | .... | occur: "1981-07-01T00:00:09Z" (362793609) 0x261-0x264.7 (4)
|
||||
0x260| 00 00 00 0a | .... | corr: 10 0x265-0x268.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x269-0x270.7 (8)
|
||||
0x260| 17 80 fe 0a | .... | occur: "1982-07-01T00:00:10Z" (394329610) 0x269-0x26c.7 (4)
|
||||
0x260| 00 00 00| ...| corr: 11 0x26d-0x270.7 (4)
|
||||
0x270|0b |. |
|
||||
| | | [11]{}: leap_second_record 0x271-0x278.7 (8)
|
||||
0x270| 19 62 31 8b | .b1. | occur: "1983-07-01T00:00:11Z" (425865611) 0x271-0x274.7 (4)
|
||||
0x270| 00 00 00 0c | .... | corr: 12 0x275-0x278.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x279-0x280.7 (8)
|
||||
0x270| 1d 25 ea 0c | .%.. | occur: "1985-07-01T00:00:12Z" (489024012) 0x279-0x27c.7 (4)
|
||||
0x270| 00 00 00| ...| corr: 13 0x27d-0x280.7 (4)
|
||||
0x280|0d |. |
|
||||
| | | [13]{}: leap_second_record 0x281-0x288.7 (8)
|
||||
0x280| 21 da e5 0d | !... | occur: "1988-01-01T00:00:13Z" (567993613) 0x281-0x284.7 (4)
|
||||
0x280| 00 00 00 0e | .... | corr: 14 0x285-0x288.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x289-0x290.7 (8)
|
||||
0x280| 25 9e 9d 8e | %... | occur: "1990-01-01T00:00:14Z" (631152014) 0x289-0x28c.7 (4)
|
||||
0x280| 00 00 00| ...| corr: 15 0x28d-0x290.7 (4)
|
||||
0x290|0f |. |
|
||||
| | | [15]{}: leap_second_record 0x291-0x298.7 (8)
|
||||
0x290| 27 7f d1 0f | '... | occur: "1991-01-01T00:00:15Z" (662688015) 0x291-0x294.7 (4)
|
||||
0x290| 00 00 00 10 | .... | corr: 16 0x295-0x298.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x299-0x2a0.7 (8)
|
||||
0x290| 2a 50 f5 90 | *P.. | occur: "1992-07-01T00:00:16Z" (709948816) 0x299-0x29c.7 (4)
|
||||
0x290| 00 00 00| ...| corr: 17 0x29d-0x2a0.7 (4)
|
||||
0x2a0|11 |. |
|
||||
| | | [17]{}: leap_second_record 0x2a1-0x2a8.7 (8)
|
||||
0x2a0| 2c 32 29 11 | ,2). | occur: "1993-07-01T00:00:17Z" (741484817) 0x2a1-0x2a4.7 (4)
|
||||
0x2a0| 00 00 00 12 | .... | corr: 18 0x2a5-0x2a8.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x2a9-0x2b0.7 (8)
|
||||
0x2a0| 2e 13 5c 92 | ..\. | occur: "1994-07-01T00:00:18Z" (773020818) 0x2a9-0x2ac.7 (4)
|
||||
0x2a0| 00 00 00| ...| corr: 19 0x2ad-0x2b0.7 (4)
|
||||
0x2b0|13 |. |
|
||||
| | | [19]{}: leap_second_record 0x2b1-0x2b8.7 (8)
|
||||
0x2b0| 30 e7 24 13 | 0.$. | occur: "1996-01-01T00:00:19Z" (820454419) 0x2b1-0x2b4.7 (4)
|
||||
0x2b0| 00 00 00 14 | .... | corr: 20 0x2b5-0x2b8.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x2b9-0x2c0.7 (8)
|
||||
0x2b0| 33 b8 48 94 | 3.H. | occur: "1997-07-01T00:00:20Z" (867715220) 0x2b9-0x2bc.7 (4)
|
||||
0x2b0| 00 00 00| ...| corr: 21 0x2bd-0x2c0.7 (4)
|
||||
0x2c0|15 |. |
|
||||
| | | [21]{}: leap_second_record 0x2c1-0x2c8.7 (8)
|
||||
0x2c0| 36 8c 10 15 | 6... | occur: "1999-01-01T00:00:21Z" (915148821) 0x2c1-0x2c4.7 (4)
|
||||
0x2c0| 00 00 00 16 | .... | corr: 22 0x2c5-0x2c8.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x2c9-0x2d0.7 (8)
|
||||
0x2c0| 43 b7 1b 96 | C... | occur: "2006-01-01T00:00:22Z" (1136073622) 0x2c9-0x2cc.7 (4)
|
||||
0x2c0| 00 00 00| ...| corr: 23 0x2cd-0x2d0.7 (4)
|
||||
0x2d0|17 |. |
|
||||
| | | [23]{}: leap_second_record 0x2d1-0x2d8.7 (8)
|
||||
0x2d0| 49 5c 07 97 | I\.. | occur: "2009-01-01T00:00:23Z" (1230768023) 0x2d1-0x2d4.7 (4)
|
||||
0x2d0| 00 00 00 18 | .... | corr: 24 0x2d5-0x2d8.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x2d9-0x2e0.7 (8)
|
||||
0x2d0| 4f ef 93 18 | O... | occur: "2012-07-01T00:00:24Z" (1341100824) 0x2d9-0x2dc.7 (4)
|
||||
0x2d0| 00 00 00| ...| corr: 25 0x2dd-0x2e0.7 (4)
|
||||
0x2e0|19 |. |
|
||||
| | | [25]{}: leap_second_record 0x2e1-0x2e8.7 (8)
|
||||
0x2e0| 55 93 2d 99 | U.-. | occur: "2015-07-01T00:00:25Z" (1435708825) 0x2e1-0x2e4.7 (4)
|
||||
0x2e0| 00 00 00 1a | .... | corr: 26 0x2e5-0x2e8.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x2e9-0x2f0.7 (8)
|
||||
0x2e0| 58 68 46 9a | XhF. | occur: "2017-01-01T00:00:26Z" (1483228826) 0x2e9-0x2ec.7 (4)
|
||||
0x2e0| 00 00 00| ...| corr: 27 0x2ed-0x2f0.7 (4)
|
||||
0x2f0|1b |. |
|
||||
| | | standard_wall_indicators[0:6]: 0x2f1-0x2f6.7 (6)
|
||||
0x2f0| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x2f1-0x2f1.7 (1)
|
||||
0x2f0| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x2f2-0x2f2.7 (1)
|
||||
0x2f0| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x2f3-0x2f3.7 (1)
|
||||
0x2f0| 01 | . | [3]: 1 standard_wall_indicator (valid) 0x2f4-0x2f4.7 (1)
|
||||
0x2f0| 01 | . | [4]: 1 standard_wall_indicator (valid) 0x2f5-0x2f5.7 (1)
|
||||
0x2f0| 01 | . | [5]: 1 standard_wall_indicator (valid) 0x2f6-0x2f6.7 (1)
|
||||
| | | ut_local_indicators[0:0]: 0x2f7-NA (0)
|
||||
| | | v2plusheader{}: 0x2f7-0x322.7 (44)
|
||||
0x2f0| 54 5a 69 66 | TZif | magic: 0x545a6966 (valid) 0x2f7-0x2fa.7 (4)
|
||||
0x2f0| 32 | 2 | ver: "2" (0x32) (valid) 0x2fb-0x2fb.7 (1)
|
||||
0x2f0| 00 00 00 00| ....| reserved: raw bits 0x2fc-0x30a.7 (15)
|
||||
0x300|00 00 00 00 00 00 00 00 00 00 00 |........... |
|
||||
0x300| 00 00 00 00 | .... | isutcnt: 0 0x30b-0x30e.7 (4)
|
||||
0x300| 00| .| isstdcnt: 6 0x30f-0x312.7 (4)
|
||||
0x310|00 00 06 |... |
|
||||
0x310| 00 00 00 1b | .... | leapcnt: 27 0x313-0x316.7 (4)
|
||||
0x310| 00 00 00 58 | ...X | timecnt: 88 0x317-0x31a.7 (4)
|
||||
0x310| 00 00 00 06 | .... | typecnt: 6 0x31b-0x31e.7 (4)
|
||||
0x310| 00| .| charcnt: 17 0x31f-0x322.7 (4)
|
||||
0x320|00 00 11 |... |
|
||||
| | | v2plusdatablock{}: 0x323-0x7b9.7 (1175)
|
||||
| | | transition_times[0:88]: 0x323-0x5e2.7 (704)
|
||||
0x320| ff ff ff ff b6 a3 d6 d0 | ........ | [0]: "1930-12-31T21:36:16Z" (-1230776624) transition_time 0x323-0x32a.7 (8)
|
||||
0x320| 00 00 00 00 06| .....| [1]: "1973-06-05T22:00:02Z" (108165602) transition_time 0x32b-0x332.7 (8)
|
||||
0x330|72 79 e2 |ry. |
|
||||
0x330| 00 00 00 00 07 0c ab 52 | .......R | [2]: "1973-09-30T21:00:02Z" (118270802) transition_time 0x333-0x33a.7 (8)
|
||||
0x330| 00 00 00 00 08| .....| [3]: "1974-04-30T22:00:03Z" (136591203) transition_time 0x33b-0x342.7 (8)
|
||||
0x340|24 37 63 |$7c |
|
||||
0x340| 00 00 00 00 08 ed de d3 | ........ | [4]: "1974-09-30T21:00:03Z" (149806803) transition_time 0x343-0x34a.7 (8)
|
||||
0x340| 00 00 00 00 0a| .....| [5]: "1975-04-30T22:00:04Z" (168127204) transition_time 0x34b-0x352.7 (8)
|
||||
0x350|05 6a e4 |.j. |
|
||||
0x350| 00 00 00 00 0a cf 12 54 | .......T | [6]: "1975-09-30T21:00:04Z" (181342804) transition_time 0x353-0x35a.7 (8)
|
||||
0x350| 00 00 00 00 0b| .....| [7]: "1976-04-30T22:00:05Z" (199749605) transition_time 0x35b-0x362.7 (8)
|
||||
0x360|e7 ef e5 |... |
|
||||
0x360| 00 00 00 00 0c da 75 d5 | ......u. | [8]: "1976-10-31T21:00:05Z" (215643605) transition_time 0x363-0x36a.7 (8)
|
||||
0x360| 00 00 00 00 0d| .....| [9]: "1977-04-30T22:00:06Z" (231285606) transition_time 0x36b-0x372.7 (8)
|
||||
0x370|c9 23 66 |.#f |
|
||||
0x370| 00 00 00 00 0e 92 ca d6 | ........ | [10]: "1977-09-30T21:00:06Z" (244501206) transition_time 0x373-0x37a.7 (8)
|
||||
0x370| 00 00 00 00 0f| .....| [11]: "1978-04-29T22:00:07Z" (262735207) transition_time 0x37b-0x382.7 (8)
|
||||
0x380|a9 05 67 |..g |
|
||||
0x380| 00 00 00 00 10 72 ac d7 | .....r.. | [12]: "1978-09-29T21:00:07Z" (275950807) transition_time 0x383-0x38a.7 (8)
|
||||
0x380| 00 00 00 00 1c| .....| [13]: "1985-03-31T22:00:12Z" (481154412) transition_time 0x38b-0x392.7 (8)
|
||||
0x390|ad d5 6c |..l |
|
||||
0x390| 00 00 00 00 1d 9f 09 dd | ........ | [14]: "1985-09-30T21:00:13Z" (496962013) transition_time 0x393-0x39a.7 (8)
|
||||
0x390| 00 00 00 00 1e| .....| [15]: "1986-04-03T22:00:13Z" (512949613) transition_time 0x39b-0x3a2.7 (8)
|
||||
0x3a0|92 fd 6d |..m |
|
||||
0x3a0| 00 00 00 00 1f 82 e0 5d | .......] | [16]: "1986-10-02T21:00:13Z" (528670813) transition_time 0x3a3-0x3aa.7 (8)
|
||||
0x3a0| 00 00 00 00 20| .... | [17]: "1987-04-02T22:00:13Z" (544399213) transition_time 0x3ab-0x3b2.7 (8)
|
||||
0x3b0|72 df 6d |r.m |
|
||||
0x3b0| 00 00 00 00 21 62 c2 5d | ....!b.] | [18]: "1987-10-01T21:00:13Z" (560120413) transition_time 0x3b3-0x3ba.7 (8)
|
||||
0x3b0| 00 00 00 00 22| ...."| [19]: "1988-03-31T22:00:14Z" (575848814) transition_time 0x3bb-0x3c2.7 (8)
|
||||
0x3c0|52 c1 6e |R.n |
|
||||
0x3c0| 00 00 00 00 23 4b de de | ....#K.. | [20]: "1988-10-06T21:00:14Z" (592174814) transition_time 0x3c3-0x3ca.7 (8)
|
||||
0x3c0| 00 00 00 00 24| ....$| [21]: "1989-05-07T22:00:14Z" (610581614) transition_time 0x3cb-0x3d2.7 (8)
|
||||
0x3d0|64 bc 6e |d.n |
|
||||
0x3d0| 00 00 00 00 25 2b c0 de | ....%+.. | [22]: "1989-10-05T21:00:14Z" (623624414) transition_time 0x3d3-0x3da.7 (8)
|
||||
0x3d0| 00 00 00 00 26| ....&| [23]: "1990-04-26T22:00:15Z" (641167215) transition_time 0x3db-0x3e2.7 (8)
|
||||
0x3e0|37 6f 6f |7oo |
|
||||
0x3e0| 00 00 00 00 27 0b a2 df | ....'... | [24]: "1990-10-04T21:00:15Z" (655074015) transition_time 0x3e3-0x3ea.7 (8)
|
||||
0x3e0| 00 00 00 00 28| ....(| [25]: "1991-04-16T22:00:16Z" (671839216) transition_time 0x3eb-0x3f2.7 (8)
|
||||
0x3f0|0b 73 f0 |.s. |
|
||||
0x3f0| 00 00 00 00 28 e2 4a 60 | ....(.J` | [26]: "1991-09-26T21:00:16Z" (685918816) transition_time 0x3f3-0x3fa.7 (8)
|
||||
0x3f0| 00 00 00 00 29| ....)| [27]: "1992-04-09T22:00:16Z" (702856816) transition_time 0x3fb-0x402.7 (8)
|
||||
0x400|e4 be 70 |..p |
|
||||
0x400| 00 00 00 00 2a cb 66 e1 | ....*.f. | [28]: "1992-10-01T21:00:17Z" (717973217) transition_time 0x403-0x40a.7 (8)
|
||||
0x400| 00 00 00 00 2b| ....+| [29]: "1993-04-01T22:00:17Z" (733701617) transition_time 0x40b-0x412.7 (8)
|
||||
0x410|bb 65 f1 |.e. |
|
||||
0x410| 00 00 00 00 2c ab 48 e2 | ....,.H. | [30]: "1993-09-30T21:00:18Z" (749422818) transition_time 0x413-0x41a.7 (8)
|
||||
0x410| 00 00 00 00 2d| ....-| [31]: "1994-03-31T22:00:18Z" (765151218) transition_time 0x41b-0x422.7 (8)
|
||||
0x420|9b 47 f2 |.G. |
|
||||
0x420| 00 00 00 00 2e 78 b5 e3 | .....x.. | [32]: "1994-09-15T21:00:19Z" (779662819) transition_time 0x423-0x42a.7 (8)
|
||||
0x420| 00 00 00 00 2f| ..../| [33]: "1995-04-06T22:00:19Z" (797205619) transition_time 0x42b-0x432.7 (8)
|
||||
0x430|84 64 73 |.ds |
|
||||
0x430| 00 00 00 00 30 58 a5 f3 | ....0X.. | [34]: "1995-09-14T22:00:19Z" (811116019) transition_time 0x433-0x43a.7 (8)
|
||||
0x430| 00 00 00 00 31| ....1| [35]: "1996-04-04T22:00:20Z" (828655220) transition_time 0x43b-0x442.7 (8)
|
||||
0x440|64 46 74 |dFt |
|
||||
0x440| 00 00 00 00 32 41 c2 74 | ....2A.t | [36]: "1996-09-19T22:00:20Z" (843170420) transition_time 0x443-0x44a.7 (8)
|
||||
0x440| 00 00 00 00 33| ....3| [37]: "1997-04-03T22:00:20Z" (860104820) transition_time 0x44b-0x452.7 (8)
|
||||
0x450|44 28 74 |D(t |
|
||||
0x450| 00 00 00 00 34 21 a4 75 | ....4!.u | [38]: "1997-09-18T22:00:21Z" (874620021) transition_time 0x453-0x45a.7 (8)
|
||||
0x450| 00 00 00 00 35| ....5| [39]: "1998-04-02T22:00:21Z" (891554421) transition_time 0x45b-0x462.7 (8)
|
||||
0x460|24 0a 75 |$.u |
|
||||
0x460| 00 00 00 00 36 01 86 75 | ....6..u | [40]: "1998-09-17T22:00:21Z" (906069621) transition_time 0x463-0x46a.7 (8)
|
||||
0x460| 00 00 00 00 37| ....7| [41]: "1999-06-30T22:00:22Z" (930780022) transition_time 0x46b-0x472.7 (8)
|
||||
0x470|7a 93 76 |z.v |
|
||||
0x470| 00 00 00 00 37 ea a2 f6 | ....7... | [42]: "1999-09-23T22:00:22Z" (938124022) transition_time 0x473-0x47a.7 (8)
|
||||
0x470| 00 00 00 00 38| ....8| [43]: "2000-03-29T22:00:22Z" (954367222) transition_time 0x47b-0x482.7 (8)
|
||||
0x480|e2 7c f6 |.|. |
|
||||
0x480| 00 00 00 00 39 d3 bf 76 | ....9..v | [44]: "2000-09-28T22:00:22Z" (970178422) transition_time 0x483-0x48a.7 (8)
|
||||
0x480| 00 00 00 00 3a| ....:| [45]: "2001-03-28T22:00:22Z" (985816822) transition_time 0x48b-0x492.7 (8)
|
||||
0x490|c2 5e f6 |.^. |
|
||||
0x490| 00 00 00 00 3b b3 a1 76 | ....;..v | [46]: "2001-09-27T22:00:22Z" (1001628022) transition_time 0x493-0x49a.7 (8)
|
||||
0x490| 00 00 00 00 3c| ....<| [47]: "2002-03-28T22:00:22Z" (1017352822) transition_time 0x49b-0x4a2.7 (8)
|
||||
0x4a0|a3 92 76 |..v |
|
||||
0x4a0| 00 00 00 00 3d 93 83 76 | ....=..v | [48]: "2002-09-26T22:00:22Z" (1033077622) transition_time 0x4a3-0x4aa.7 (8)
|
||||
0x4a0| 00 00 00 00 3e| ....>| [49]: "2003-03-27T22:00:22Z" (1048802422) transition_time 0x4ab-0x4b2.7 (8)
|
||||
0x4b0|83 74 76 |.tv |
|
||||
0x4b0| 00 00 00 00 3f 98 4f 76 | ....?.Ov | [50]: "2003-10-23T22:00:22Z" (1066946422) transition_time 0x4b3-0x4ba.7 (8)
|
||||
0x4b0| 00 00 00 00 40| ....@| [51]: "2004-03-25T22:00:22Z" (1080252022) transition_time 0x4bb-0x4c2.7 (8)
|
||||
0x4c0|63 56 76 |cVv |
|
||||
0x4c0| 00 00 00 00 41 6e f6 f6 | ....An.. | [52]: "2004-10-14T22:00:22Z" (1097791222) transition_time 0x4c3-0x4ca.7 (8)
|
||||
0x4c0| 00 00 00 00 42| ....B| [53]: "2005-03-31T22:00:22Z" (1112306422) transition_time 0x4cb-0x4d2.7 (8)
|
||||
0x4d0|4c 72 f6 |Lr. |
|
||||
0x4d0| 00 00 00 00 43 3c 63 f6 | ....C<c. | [54]: "2005-09-29T22:00:22Z" (1128031222) transition_time 0x4d3-0x4da.7 (8)
|
||||
0x4d0| 00 00 00 00 44| ....D| [55]: "2006-03-30T22:00:23Z" (1143756023) transition_time 0x4db-0x4e2.7 (8)
|
||||
0x4e0|2c 54 f7 |,T. |
|
||||
0x4e0| 00 00 00 00 45 41 2f f7 | ....EA/. | [56]: "2006-10-26T22:00:23Z" (1161900023) transition_time 0x4e3-0x4ea.7 (8)
|
||||
0x4e0| 00 00 00 00 46| ....F| [57]: "2007-03-29T22:00:23Z" (1175205623) transition_time 0x4eb-0x4f2.7 (8)
|
||||
0x4f0|0c 36 f7 |.6. |
|
||||
0x4f0| 00 00 00 00 47 21 11 f7 | ....G!.. | [58]: "2007-10-25T22:00:23Z" (1193349623) transition_time 0x4f3-0x4fa.7 (8)
|
||||
0x4f0| 00 00 00 00 47| ....G| [59]: "2008-03-27T22:00:23Z" (1206655223) transition_time 0x4fb-0x502.7 (8)
|
||||
0x500|ec 18 f7 |... |
|
||||
0x500| 00 00 00 00 49 0a 2e 77 | ....I..w | [60]: "2008-10-30T22:00:23Z" (1225404023) transition_time 0x503-0x50a.7 (8)
|
||||
0x500| 00 00 00 00 49| ....I| [61]: "2009-03-26T22:00:24Z" (1238104824) transition_time 0x50b-0x512.7 (8)
|
||||
0x510|cb fa f8 |... |
|
||||
0x510| 00 00 00 00 4a ea 10 78 | ....J..x | [62]: "2009-10-29T22:00:24Z" (1256853624) transition_time 0x513-0x51a.7 (8)
|
||||
0x510| 00 00 00 00 4b| ....K| [63]: "2010-03-25T22:00:24Z" (1269554424) transition_time 0x51b-0x522.7 (8)
|
||||
0x520|ab dc f8 |... |
|
||||
0x520| 00 00 00 00 4c c9 f2 78 | ....L..x | [64]: "2010-10-28T22:00:24Z" (1288303224) transition_time 0x523-0x52a.7 (8)
|
||||
0x520| 00 00 00 00 4d| ....M| [65]: "2011-03-31T22:00:24Z" (1301608824) transition_time 0x52b-0x532.7 (8)
|
||||
0x530|94 f9 78 |..x |
|
||||
0x530| 00 00 00 00 4e a9 d4 78 | ....N..x | [66]: "2011-10-27T22:00:24Z" (1319752824) transition_time 0x533-0x53a.7 (8)
|
||||
0x530| 00 00 00 00 4f| ....O| [67]: "2012-03-29T22:00:24Z" (1333058424) transition_time 0x53b-0x542.7 (8)
|
||||
0x540|74 db 78 |t.x |
|
||||
0x540| 00 00 00 00 52 b3 5e 69 | ....R.^i | [68]: "2013-12-19T21:00:25Z" (1387486825) transition_time 0x543-0x54a.7 (8)
|
||||
0x540| 00 00 00 00 53| ....S| [69]: "2014-03-27T22:00:25Z" (1395957625) transition_time 0x54b-0x552.7 (8)
|
||||
0x550|34 9f 79 |4.y |
|
||||
0x550| 00 00 00 00 54 52 b4 f9 | ....TR.. | [70]: "2014-10-30T22:00:25Z" (1414706425) transition_time 0x553-0x55a.7 (8)
|
||||
0x550| 00 00 00 00 55| ....U| [71]: "2015-03-26T22:00:25Z" (1427407225) transition_time 0x55b-0x562.7 (8)
|
||||
0x560|14 81 79 |..y |
|
||||
0x560| 00 00 00 00 56 32 96 fa | ....V2.. | [72]: "2015-10-29T22:00:26Z" (1446156026) transition_time 0x563-0x56a.7 (8)
|
||||
0x560| 00 00 00 00 56| ....V| [73]: "2016-03-31T22:00:26Z" (1459461626) transition_time 0x56b-0x572.7 (8)
|
||||
0x570|fd 9d fa |... |
|
||||
0x570| 00 00 00 00 58 12 78 fa | ....X.x. | [74]: "2016-10-27T22:00:26Z" (1477605626) transition_time 0x573-0x57a.7 (8)
|
||||
0x570| 00 00 00 00 58| ....X| [75]: "2017-03-30T22:00:27Z" (1490911227) transition_time 0x57b-0x582.7 (8)
|
||||
0x580|dd 7f fb |... |
|
||||
0x580| 00 00 00 00 59 f2 5a fb | ....Y.Z. | [76]: "2017-10-26T22:00:27Z" (1509055227) transition_time 0x583-0x58a.7 (8)
|
||||
0x580| 00 00 00 00 5a| ....Z| [77]: "2018-03-29T22:00:27Z" (1522360827) transition_time 0x58b-0x592.7 (8)
|
||||
0x590|bd 61 fb |.a. |
|
||||
0x590| 00 00 00 00 5b d2 3c fb | ....[.<. | [78]: "2018-10-25T22:00:27Z" (1540504827) transition_time 0x593-0x59a.7 (8)
|
||||
0x590| 00 00 00 00 5c| ....\| [79]: "2019-03-28T22:00:27Z" (1553810427) transition_time 0x59b-0x5a2.7 (8)
|
||||
0x5a0|9d 43 fb |.C. |
|
||||
0x5a0| 00 00 00 00 5d b2 1e fb | ....]... | [80]: "2019-10-24T22:00:27Z" (1571954427) transition_time 0x5a3-0x5aa.7 (8)
|
||||
0x5a0| 00 00 00 00 5e| ....^| [81]: "2020-03-26T22:00:27Z" (1585260027) transition_time 0x5ab-0x5b2.7 (8)
|
||||
0x5b0|7d 25 fb |}%. |
|
||||
0x5b0| 00 00 00 00 5f 9b 3b 7b | ...._.;{ | [82]: "2020-10-29T22:00:27Z" (1604008827) transition_time 0x5b3-0x5ba.7 (8)
|
||||
0x5b0| 00 00 00 00 60| ....`| [83]: "2021-03-25T22:00:27Z" (1616709627) transition_time 0x5bb-0x5c2.7 (8)
|
||||
0x5c0|5d 07 fb |].. |
|
||||
0x5c0| 00 00 00 00 61 7b 1d 7b | ....a{.{ | [84]: "2021-10-28T22:00:27Z" (1635458427) transition_time 0x5c3-0x5ca.7 (8)
|
||||
0x5c0| 00 00 00 00 62| ....b| [85]: "2022-02-24T22:00:27Z" (1645740027) transition_time 0x5cb-0x5d2.7 (8)
|
||||
0x5d0|17 ff fb |... |
|
||||
0x5d0| 00 00 00 00 63 5a ff 7b | ....cZ.{ | [86]: "2022-10-27T22:00:27Z" (1666908027) transition_time 0x5d3-0x5da.7 (8)
|
||||
0x5d0| 00 00 00 00 64| ....d| [87]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x5db-0x5e2.7 (8)
|
||||
0x5e0|9b 78 1b |.x. |
|
||||
| | | transition_types[0:88]: 0x5e3-0x63a.7 (88)
|
||||
0x5e0| 02 | . | [0]: 2 transition_type 0x5e3-0x5e3.7 (1)
|
||||
0x5e0| 01 | . | [1]: 1 transition_type 0x5e4-0x5e4.7 (1)
|
||||
0x5e0| 02 | . | [2]: 2 transition_type 0x5e5-0x5e5.7 (1)
|
||||
0x5e0| 01 | . | [3]: 1 transition_type 0x5e6-0x5e6.7 (1)
|
||||
0x5e0| 02 | . | [4]: 2 transition_type 0x5e7-0x5e7.7 (1)
|
||||
0x5e0| 01 | . | [5]: 1 transition_type 0x5e8-0x5e8.7 (1)
|
||||
0x5e0| 02 | . | [6]: 2 transition_type 0x5e9-0x5e9.7 (1)
|
||||
0x5e0| 01 | . | [7]: 1 transition_type 0x5ea-0x5ea.7 (1)
|
||||
0x5e0| 02 | . | [8]: 2 transition_type 0x5eb-0x5eb.7 (1)
|
||||
0x5e0| 01 | . | [9]: 1 transition_type 0x5ec-0x5ec.7 (1)
|
||||
0x5e0| 02 | . | [10]: 2 transition_type 0x5ed-0x5ed.7 (1)
|
||||
0x5e0| 01 | . | [11]: 1 transition_type 0x5ee-0x5ee.7 (1)
|
||||
0x5e0| 02| .| [12]: 2 transition_type 0x5ef-0x5ef.7 (1)
|
||||
0x5f0|01 |. | [13]: 1 transition_type 0x5f0-0x5f0.7 (1)
|
||||
0x5f0| 02 | . | [14]: 2 transition_type 0x5f1-0x5f1.7 (1)
|
||||
0x5f0| 01 | . | [15]: 1 transition_type 0x5f2-0x5f2.7 (1)
|
||||
0x5f0| 02 | . | [16]: 2 transition_type 0x5f3-0x5f3.7 (1)
|
||||
0x5f0| 01 | . | [17]: 1 transition_type 0x5f4-0x5f4.7 (1)
|
||||
0x5f0| 02 | . | [18]: 2 transition_type 0x5f5-0x5f5.7 (1)
|
||||
0x5f0| 01 | . | [19]: 1 transition_type 0x5f6-0x5f6.7 (1)
|
||||
0x5f0| 02 | . | [20]: 2 transition_type 0x5f7-0x5f7.7 (1)
|
||||
0x5f0| 01 | . | [21]: 1 transition_type 0x5f8-0x5f8.7 (1)
|
||||
0x5f0| 02 | . | [22]: 2 transition_type 0x5f9-0x5f9.7 (1)
|
||||
0x5f0| 01 | . | [23]: 1 transition_type 0x5fa-0x5fa.7 (1)
|
||||
0x5f0| 02 | . | [24]: 2 transition_type 0x5fb-0x5fb.7 (1)
|
||||
0x5f0| 01 | . | [25]: 1 transition_type 0x5fc-0x5fc.7 (1)
|
||||
0x5f0| 02 | . | [26]: 2 transition_type 0x5fd-0x5fd.7 (1)
|
||||
0x5f0| 01 | . | [27]: 1 transition_type 0x5fe-0x5fe.7 (1)
|
||||
0x5f0| 02| .| [28]: 2 transition_type 0x5ff-0x5ff.7 (1)
|
||||
0x600|01 |. | [29]: 1 transition_type 0x600-0x600.7 (1)
|
||||
0x600| 02 | . | [30]: 2 transition_type 0x601-0x601.7 (1)
|
||||
0x600| 01 | . | [31]: 1 transition_type 0x602-0x602.7 (1)
|
||||
0x600| 02 | . | [32]: 2 transition_type 0x603-0x603.7 (1)
|
||||
0x600| 01 | . | [33]: 1 transition_type 0x604-0x604.7 (1)
|
||||
0x600| 03 | . | [34]: 3 transition_type 0x605-0x605.7 (1)
|
||||
0x600| 01 | . | [35]: 1 transition_type 0x606-0x606.7 (1)
|
||||
0x600| 03 | . | [36]: 3 transition_type 0x607-0x607.7 (1)
|
||||
0x600| 01 | . | [37]: 1 transition_type 0x608-0x608.7 (1)
|
||||
0x600| 03 | . | [38]: 3 transition_type 0x609-0x609.7 (1)
|
||||
0x600| 01 | . | [39]: 1 transition_type 0x60a-0x60a.7 (1)
|
||||
0x600| 03 | . | [40]: 3 transition_type 0x60b-0x60b.7 (1)
|
||||
0x600| 04 | . | [41]: 4 transition_type 0x60c-0x60c.7 (1)
|
||||
0x600| 03 | . | [42]: 3 transition_type 0x60d-0x60d.7 (1)
|
||||
0x600| 04 | . | [43]: 4 transition_type 0x60e-0x60e.7 (1)
|
||||
0x600| 03| .| [44]: 3 transition_type 0x60f-0x60f.7 (1)
|
||||
0x610|04 |. | [45]: 4 transition_type 0x610-0x610.7 (1)
|
||||
0x610| 03 | . | [46]: 3 transition_type 0x611-0x611.7 (1)
|
||||
0x610| 01 | . | [47]: 1 transition_type 0x612-0x612.7 (1)
|
||||
0x610| 03 | . | [48]: 3 transition_type 0x613-0x613.7 (1)
|
||||
0x610| 01 | . | [49]: 1 transition_type 0x614-0x614.7 (1)
|
||||
0x610| 03 | . | [50]: 3 transition_type 0x615-0x615.7 (1)
|
||||
0x610| 01 | . | [51]: 1 transition_type 0x616-0x616.7 (1)
|
||||
0x610| 03 | . | [52]: 3 transition_type 0x617-0x617.7 (1)
|
||||
0x610| 01 | . | [53]: 1 transition_type 0x618-0x618.7 (1)
|
||||
0x610| 03 | . | [54]: 3 transition_type 0x619-0x619.7 (1)
|
||||
0x610| 01 | . | [55]: 1 transition_type 0x61a-0x61a.7 (1)
|
||||
0x610| 03 | . | [56]: 3 transition_type 0x61b-0x61b.7 (1)
|
||||
0x610| 01 | . | [57]: 1 transition_type 0x61c-0x61c.7 (1)
|
||||
0x610| 03 | . | [58]: 3 transition_type 0x61d-0x61d.7 (1)
|
||||
0x610| 01 | . | [59]: 1 transition_type 0x61e-0x61e.7 (1)
|
||||
0x610| 03| .| [60]: 3 transition_type 0x61f-0x61f.7 (1)
|
||||
0x620|01 |. | [61]: 1 transition_type 0x620-0x620.7 (1)
|
||||
0x620| 03 | . | [62]: 3 transition_type 0x621-0x621.7 (1)
|
||||
0x620| 01 | . | [63]: 1 transition_type 0x622-0x622.7 (1)
|
||||
0x620| 03 | . | [64]: 3 transition_type 0x623-0x623.7 (1)
|
||||
0x620| 01 | . | [65]: 1 transition_type 0x624-0x624.7 (1)
|
||||
0x620| 03 | . | [66]: 3 transition_type 0x625-0x625.7 (1)
|
||||
0x620| 01 | . | [67]: 1 transition_type 0x626-0x626.7 (1)
|
||||
0x620| 02 | . | [68]: 2 transition_type 0x627-0x627.7 (1)
|
||||
0x620| 01 | . | [69]: 1 transition_type 0x628-0x628.7 (1)
|
||||
0x620| 03 | . | [70]: 3 transition_type 0x629-0x629.7 (1)
|
||||
0x620| 01 | . | [71]: 1 transition_type 0x62a-0x62a.7 (1)
|
||||
0x620| 03 | . | [72]: 3 transition_type 0x62b-0x62b.7 (1)
|
||||
0x620| 01 | . | [73]: 1 transition_type 0x62c-0x62c.7 (1)
|
||||
0x620| 03 | . | [74]: 3 transition_type 0x62d-0x62d.7 (1)
|
||||
0x620| 01 | . | [75]: 1 transition_type 0x62e-0x62e.7 (1)
|
||||
0x620| 03| .| [76]: 3 transition_type 0x62f-0x62f.7 (1)
|
||||
0x630|01 |. | [77]: 1 transition_type 0x630-0x630.7 (1)
|
||||
0x630| 03 | . | [78]: 3 transition_type 0x631-0x631.7 (1)
|
||||
0x630| 01 | . | [79]: 1 transition_type 0x632-0x632.7 (1)
|
||||
0x630| 03 | . | [80]: 3 transition_type 0x633-0x633.7 (1)
|
||||
0x630| 01 | . | [81]: 1 transition_type 0x634-0x634.7 (1)
|
||||
0x630| 03 | . | [82]: 3 transition_type 0x635-0x635.7 (1)
|
||||
0x630| 01 | . | [83]: 1 transition_type 0x636-0x636.7 (1)
|
||||
0x630| 03 | . | [84]: 3 transition_type 0x637-0x637.7 (1)
|
||||
0x630| 01 | . | [85]: 1 transition_type 0x638-0x638.7 (1)
|
||||
0x630| 05 | . | [86]: 5 transition_type 0x639-0x639.7 (1)
|
||||
0x630| 05 | . | [87]: 5 transition_type 0x63a-0x63a.7 (1)
|
||||
| | | local_time_type_records[0:6]: 0x63b-0x65e.7 (36)
|
||||
| | | [0]{}: local_time_type 0x63b-0x640.7 (6)
|
||||
0x630| 00 00 21 b0 | ..!. | utoff: 8624 (valid) 0x63b-0x63e.7 (4)
|
||||
0x630| 00| .| dst: 0 (valid) 0x63f-0x63f.7 (1)
|
||||
0x640|00 |. | idx: 0 (valid) 0x640-0x640.7 (1)
|
||||
| | | [1]{}: local_time_type 0x641-0x646.7 (6)
|
||||
0x640| 00 00 2a 30 | ..*0 | utoff: 10800 (valid) 0x641-0x644.7 (4)
|
||||
0x640| 01 | . | dst: 1 (valid) 0x645-0x645.7 (1)
|
||||
0x640| 04 | . | idx: 4 (valid) 0x646-0x646.7 (1)
|
||||
| | | [2]{}: local_time_type 0x647-0x64c.7 (6)
|
||||
0x640| 00 00 1c 20 | ... | utoff: 7200 (valid) 0x647-0x64a.7 (4)
|
||||
0x640| 00 | . | dst: 0 (valid) 0x64b-0x64b.7 (1)
|
||||
0x640| 09 | . | idx: 9 (valid) 0x64c-0x64c.7 (1)
|
||||
| | | [3]{}: local_time_type 0x64d-0x652.7 (6)
|
||||
0x640| 00 00 1c| ...| utoff: 7200 (valid) 0x64d-0x650.7 (4)
|
||||
0x650|20 | |
|
||||
0x650| 00 | . | dst: 0 (valid) 0x651-0x651.7 (1)
|
||||
0x650| 09 | . | idx: 9 (valid) 0x652-0x652.7 (1)
|
||||
| | | [4]{}: local_time_type 0x653-0x658.7 (6)
|
||||
0x650| 00 00 2a 30 | ..*0 | utoff: 10800 (valid) 0x653-0x656.7 (4)
|
||||
0x650| 01 | . | dst: 1 (valid) 0x657-0x657.7 (1)
|
||||
0x650| 04 | . | idx: 4 (valid) 0x658-0x658.7 (1)
|
||||
| | | [5]{}: local_time_type 0x659-0x65e.7 (6)
|
||||
0x650| 00 00 2a 30 | ..*0 | utoff: 10800 (valid) 0x659-0x65c.7 (4)
|
||||
0x650| 00 | . | dst: 0 (valid) 0x65d-0x65d.7 (1)
|
||||
0x650| 0d | . | idx: 13 (valid) 0x65e-0x65e.7 (1)
|
||||
| | | time_zone_designations[0:4]: 0x65f-0x66f.7 (17)
|
||||
0x650| 4c| L| [0]: "LMT" time_zone_designation 0x65f-0x662.7 (4)
|
||||
0x660|4d 54 00 |MT. |
|
||||
0x660| 45 45 53 54 00 | EEST. | [1]: "EEST" time_zone_designation 0x663-0x667.7 (5)
|
||||
0x660| 45 45 54 00 | EET. | [2]: "EET" time_zone_designation 0x668-0x66b.7 (4)
|
||||
0x660| 2b 30 33 00| +03.| [3]: "+03" time_zone_designation 0x66c-0x66f.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x670-0x7b3.7 (324)
|
||||
| | | [0]{}: leap_second_record 0x670-0x67b.7 (12)
|
||||
0x670|00 00 00 00 04 b2 58 00 |......X. | occur: "1972-07-01T00:00:00Z" (78796800) 0x670-0x677.7 (8)
|
||||
0x670| 00 00 00 01 | .... | corr: 1 0x678-0x67b.7 (4)
|
||||
| | | [1]{}: leap_second_record 0x67c-0x687.7 (12)
|
||||
0x670| 00 00 00 00| ....| occur: "1973-01-01T00:00:01Z" (94694401) 0x67c-0x683.7 (8)
|
||||
0x680|05 a4 ec 01 |.... |
|
||||
0x680| 00 00 00 02 | .... | corr: 2 0x684-0x687.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x688-0x693.7 (12)
|
||||
0x680| 00 00 00 00 07 86 1f 82| ........| occur: "1974-01-01T00:00:02Z" (126230402) 0x688-0x68f.7 (8)
|
||||
0x690|00 00 00 03 |.... | corr: 3 0x690-0x693.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x694-0x69f.7 (12)
|
||||
0x690| 00 00 00 00 09 67 53 03 | .....gS. | occur: "1975-01-01T00:00:03Z" (157766403) 0x694-0x69b.7 (8)
|
||||
0x690| 00 00 00 04| ....| corr: 4 0x69c-0x69f.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x6a0-0x6ab.7 (12)
|
||||
0x6a0|00 00 00 00 0b 48 86 84 |.....H.. | occur: "1976-01-01T00:00:04Z" (189302404) 0x6a0-0x6a7.7 (8)
|
||||
0x6a0| 00 00 00 05 | .... | corr: 5 0x6a8-0x6ab.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x6ac-0x6b7.7 (12)
|
||||
0x6a0| 00 00 00 00| ....| occur: "1977-01-01T00:00:05Z" (220924805) 0x6ac-0x6b3.7 (8)
|
||||
0x6b0|0d 2b 0b 85 |.+.. |
|
||||
0x6b0| 00 00 00 06 | .... | corr: 6 0x6b4-0x6b7.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x6b8-0x6c3.7 (12)
|
||||
0x6b0| 00 00 00 00 0f 0c 3f 06| ......?.| occur: "1978-01-01T00:00:06Z" (252460806) 0x6b8-0x6bf.7 (8)
|
||||
0x6c0|00 00 00 07 |.... | corr: 7 0x6c0-0x6c3.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x6c4-0x6cf.7 (12)
|
||||
0x6c0| 00 00 00 00 10 ed 72 87 | ......r. | occur: "1979-01-01T00:00:07Z" (283996807) 0x6c4-0x6cb.7 (8)
|
||||
0x6c0| 00 00 00 08| ....| corr: 8 0x6cc-0x6cf.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x6d0-0x6db.7 (12)
|
||||
0x6d0|00 00 00 00 12 ce a6 08 |........ | occur: "1980-01-01T00:00:08Z" (315532808) 0x6d0-0x6d7.7 (8)
|
||||
0x6d0| 00 00 00 09 | .... | corr: 9 0x6d8-0x6db.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x6dc-0x6e7.7 (12)
|
||||
0x6d0| 00 00 00 00| ....| occur: "1981-07-01T00:00:09Z" (362793609) 0x6dc-0x6e3.7 (8)
|
||||
0x6e0|15 9f ca 89 |.... |
|
||||
0x6e0| 00 00 00 0a | .... | corr: 10 0x6e4-0x6e7.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x6e8-0x6f3.7 (12)
|
||||
0x6e0| 00 00 00 00 17 80 fe 0a| ........| occur: "1982-07-01T00:00:10Z" (394329610) 0x6e8-0x6ef.7 (8)
|
||||
0x6f0|00 00 00 0b |.... | corr: 11 0x6f0-0x6f3.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x6f4-0x6ff.7 (12)
|
||||
0x6f0| 00 00 00 00 19 62 31 8b | .....b1. | occur: "1983-07-01T00:00:11Z" (425865611) 0x6f4-0x6fb.7 (8)
|
||||
0x6f0| 00 00 00 0c| ....| corr: 12 0x6fc-0x6ff.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x700-0x70b.7 (12)
|
||||
0x700|00 00 00 00 1d 25 ea 0c |.....%.. | occur: "1985-07-01T00:00:12Z" (489024012) 0x700-0x707.7 (8)
|
||||
0x700| 00 00 00 0d | .... | corr: 13 0x708-0x70b.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x70c-0x717.7 (12)
|
||||
0x700| 00 00 00 00| ....| occur: "1988-01-01T00:00:13Z" (567993613) 0x70c-0x713.7 (8)
|
||||
0x710|21 da e5 0d |!... |
|
||||
0x710| 00 00 00 0e | .... | corr: 14 0x714-0x717.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x718-0x723.7 (12)
|
||||
0x710| 00 00 00 00 25 9e 9d 8e| ....%...| occur: "1990-01-01T00:00:14Z" (631152014) 0x718-0x71f.7 (8)
|
||||
0x720|00 00 00 0f |.... | corr: 15 0x720-0x723.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x724-0x72f.7 (12)
|
||||
0x720| 00 00 00 00 27 7f d1 0f | ....'... | occur: "1991-01-01T00:00:15Z" (662688015) 0x724-0x72b.7 (8)
|
||||
0x720| 00 00 00 10| ....| corr: 16 0x72c-0x72f.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x730-0x73b.7 (12)
|
||||
0x730|00 00 00 00 2a 50 f5 90 |....*P.. | occur: "1992-07-01T00:00:16Z" (709948816) 0x730-0x737.7 (8)
|
||||
0x730| 00 00 00 11 | .... | corr: 17 0x738-0x73b.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x73c-0x747.7 (12)
|
||||
0x730| 00 00 00 00| ....| occur: "1993-07-01T00:00:17Z" (741484817) 0x73c-0x743.7 (8)
|
||||
0x740|2c 32 29 11 |,2). |
|
||||
0x740| 00 00 00 12 | .... | corr: 18 0x744-0x747.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x748-0x753.7 (12)
|
||||
0x740| 00 00 00 00 2e 13 5c 92| ......\.| occur: "1994-07-01T00:00:18Z" (773020818) 0x748-0x74f.7 (8)
|
||||
0x750|00 00 00 13 |.... | corr: 19 0x750-0x753.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x754-0x75f.7 (12)
|
||||
0x750| 00 00 00 00 30 e7 24 13 | ....0.$. | occur: "1996-01-01T00:00:19Z" (820454419) 0x754-0x75b.7 (8)
|
||||
0x750| 00 00 00 14| ....| corr: 20 0x75c-0x75f.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x760-0x76b.7 (12)
|
||||
0x760|00 00 00 00 33 b8 48 94 |....3.H. | occur: "1997-07-01T00:00:20Z" (867715220) 0x760-0x767.7 (8)
|
||||
0x760| 00 00 00 15 | .... | corr: 21 0x768-0x76b.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x76c-0x777.7 (12)
|
||||
0x760| 00 00 00 00| ....| occur: "1999-01-01T00:00:21Z" (915148821) 0x76c-0x773.7 (8)
|
||||
0x770|36 8c 10 15 |6... |
|
||||
0x770| 00 00 00 16 | .... | corr: 22 0x774-0x777.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x778-0x783.7 (12)
|
||||
0x770| 00 00 00 00 43 b7 1b 96| ....C...| occur: "2006-01-01T00:00:22Z" (1136073622) 0x778-0x77f.7 (8)
|
||||
0x780|00 00 00 17 |.... | corr: 23 0x780-0x783.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x784-0x78f.7 (12)
|
||||
0x780| 00 00 00 00 49 5c 07 97 | ....I\.. | occur: "2009-01-01T00:00:23Z" (1230768023) 0x784-0x78b.7 (8)
|
||||
0x780| 00 00 00 18| ....| corr: 24 0x78c-0x78f.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x790-0x79b.7 (12)
|
||||
0x790|00 00 00 00 4f ef 93 18 |....O... | occur: "2012-07-01T00:00:24Z" (1341100824) 0x790-0x797.7 (8)
|
||||
0x790| 00 00 00 19 | .... | corr: 25 0x798-0x79b.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x79c-0x7a7.7 (12)
|
||||
0x790| 00 00 00 00| ....| occur: "2015-07-01T00:00:25Z" (1435708825) 0x79c-0x7a3.7 (8)
|
||||
0x7a0|55 93 2d 99 |U.-. |
|
||||
0x7a0| 00 00 00 1a | .... | corr: 26 0x7a4-0x7a7.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x7a8-0x7b3.7 (12)
|
||||
0x7a0| 00 00 00 00 58 68 46 9a| ....XhF.| occur: "2017-01-01T00:00:26Z" (1483228826) 0x7a8-0x7af.7 (8)
|
||||
0x7b0|00 00 00 1b |.... | corr: 27 0x7b0-0x7b3.7 (4)
|
||||
| | | standard_wall_indicators[0:6]: 0x7b4-0x7b9.7 (6)
|
||||
0x7b0| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x7b4-0x7b4.7 (1)
|
||||
0x7b0| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x7b5-0x7b5.7 (1)
|
||||
0x7b0| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x7b6-0x7b6.7 (1)
|
||||
0x7b0| 01 | . | [3]: 1 standard_wall_indicator (valid) 0x7b7-0x7b7.7 (1)
|
||||
0x7b0| 01 | . | [4]: 1 standard_wall_indicator (valid) 0x7b8-0x7b8.7 (1)
|
||||
0x7b0| 01 | . | [5]: 1 standard_wall_indicator (valid) 0x7b9-0x7b9.7 (1)
|
||||
| | | ut_local_indicators[0:0]: 0x7ba-NA (0)
|
||||
| | | footer{}: 0x7ba-0x7bb.7 (2)
|
||||
0x7b0| 0a | . | nl1: 10 (valid) 0x7ba-0x7ba.7 (1)
|
||||
| | | tz_string: "" 0x7bb-NA (0)
|
||||
0x7b0| 0a| | .| | nl2: 10 (valid) 0x7bb-0x7bb.7 (1)
|
BIN
format/tzif/testdata/Anadyr
vendored
Normal file
BIN
format/tzif/testdata/Anadyr
vendored
Normal file
Binary file not shown.
635
format/tzif/testdata/Anadyr.fqtest
vendored
Normal file
635
format/tzif/testdata/Anadyr.fqtest
vendored
Normal file
@ -0,0 +1,635 @@
|
||||
$ fq -d tzif dv Anadyr
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: Anadyr (tzif) 0x0-0x6b7.7 (1720)
|
||||
| | | v1header{}: 0x0-0x2b.7 (44)
|
||||
0x000|54 5a 69 66 |TZif | magic: 0x545a6966 (valid) 0x0-0x3.7 (4)
|
||||
0x000| 32 | 2 | ver: "2" (0x32) (valid) 0x4-0x4.7 (1)
|
||||
0x000| 00 00 00 00 00 00 00 00 00 00 00| ...........| reserved: raw bits 0x5-0x13.7 (15)
|
||||
0x010|00 00 00 00 |.... |
|
||||
0x010| 00 00 00 00 | .... | isutcnt: 0 0x14-0x17.7 (4)
|
||||
0x010| 00 00 00 0a | .... | isstdcnt: 10 0x18-0x1b.7 (4)
|
||||
0x010| 00 00 00 1b| ....| leapcnt: 27 0x1c-0x1f.7 (4)
|
||||
0x020|00 00 00 41 |...A | timecnt: 65 0x20-0x23.7 (4)
|
||||
0x020| 00 00 00 0a | .... | typecnt: 10 0x24-0x27.7 (4)
|
||||
0x020| 00 00 00 14 | .... | charcnt: 20 0x28-0x2b.7 (4)
|
||||
| | | v1datablock{}: 0x2c-0x2a2.7 (631)
|
||||
| | | transition_times[0:65]: 0x2c-0x12f.7 (260)
|
||||
0x020| aa 19 1d 9c| ....| [0]: "1924-05-01T12:10:04Z" (-1441194596) transition_time 0x2c-0x2f.7 (4)
|
||||
0x030|b5 a3 8c c0 |.... | [1]: "1930-06-20T12:00:00Z" (-1247572800) transition_time 0x30-0x33.7 (4)
|
||||
0x030| 15 27 1b 39 | .'.9 | [2]: "1981-03-31T11:00:09Z" (354884409) transition_time 0x34-0x37.7 (4)
|
||||
0x030| 16 18 4f aa | ..O. | [3]: "1981-09-30T10:00:10Z" (370692010) transition_time 0x38-0x3b.7 (4)
|
||||
0x030| 17 08 4e ba| ..N.| [4]: "1982-03-31T11:00:10Z" (386420410) transition_time 0x3c-0x3f.7 (4)
|
||||
0x040|17 f9 91 3b |...; | [5]: "1982-09-30T11:00:11Z" (402231611) transition_time 0x40-0x43.7 (4)
|
||||
0x040| 18 e9 90 4b | ...K | [6]: "1983-03-31T12:00:11Z" (417960011) transition_time 0x44-0x47.7 (4)
|
||||
0x040| 19 da c4 bc | .... | [7]: "1983-09-30T11:00:12Z" (433767612) transition_time 0x48-0x4b.7 (4)
|
||||
0x040| 1a cc 15 4c| ...L| [8]: "1984-03-31T12:00:12Z" (449582412) transition_time 0x4c-0x4f.7 (4)
|
||||
0x050|1b bc 22 6c |.."l | [9]: "1984-09-29T14:00:12Z" (465314412) transition_time 0x50-0x53.7 (4)
|
||||
0x050| 1c ac 13 6c | ...l | [10]: "1985-03-30T14:00:12Z" (481039212) transition_time 0x54-0x57.7 (4)
|
||||
0x050| 1d 9c 04 6d | ...m | [11]: "1985-09-28T14:00:13Z" (496764013) transition_time 0x58-0x5b.7 (4)
|
||||
0x050| 1e 8b f5 6d| ...m| [12]: "1986-03-29T14:00:13Z" (512488813) transition_time 0x5c-0x5f.7 (4)
|
||||
0x060|1f 7b e6 6d |.{.m | [13]: "1986-09-27T14:00:13Z" (528213613) transition_time 0x60-0x63.7 (4)
|
||||
0x060| 20 6b d7 6d | k.m | [14]: "1987-03-28T14:00:13Z" (543938413) transition_time 0x64-0x67.7 (4)
|
||||
0x060| 21 5b c8 6d | ![.m | [15]: "1987-09-26T14:00:13Z" (559663213) transition_time 0x68-0x6b.7 (4)
|
||||
0x060| 22 4b b9 6e| "K.n| [16]: "1988-03-26T14:00:14Z" (575388014) transition_time 0x6c-0x6f.7 (4)
|
||||
0x070|23 3b aa 6e |#;.n | [17]: "1988-09-24T14:00:14Z" (591112814) transition_time 0x70-0x73.7 (4)
|
||||
0x070| 24 2b 9b 6e | $+.n | [18]: "1989-03-25T14:00:14Z" (606837614) transition_time 0x74-0x77.7 (4)
|
||||
0x070| 25 1b 8c 6e | %..n | [19]: "1989-09-23T14:00:14Z" (622562414) transition_time 0x78-0x7b.7 (4)
|
||||
0x070| 26 0b 7d 6f| &.}o| [20]: "1990-03-24T14:00:15Z" (638287215) transition_time 0x7c-0x7f.7 (4)
|
||||
0x080|27 04 a8 ef |'... | [21]: "1990-09-29T14:00:15Z" (654616815) transition_time 0x80-0x83.7 (4)
|
||||
0x080| 27 f4 99 f0 | '... | [22]: "1991-03-30T14:00:16Z" (670341616) transition_time 0x84-0x87.7 (4)
|
||||
0x080| 28 e4 99 00 | (... | [23]: "1991-09-28T15:00:16Z" (686070016) transition_time 0x88-0x8b.7 (4)
|
||||
0x080| 29 78 41 00| )xA.| [24]: "1992-01-18T15:00:16Z" (695746816) transition_time 0x8c-0x8f.7 (4)
|
||||
0x090|29 d4 7b f0 |).{. | [25]: "1992-03-28T14:00:16Z" (701791216) transition_time 0x90-0x93.7 (4)
|
||||
0x090| 2a c4 6c f1 | *.l. | [26]: "1992-09-26T14:00:17Z" (717516017) transition_time 0x94-0x97.7 (4)
|
||||
0x090| 2b b4 5d f1 | +.]. | [27]: "1993-03-27T14:00:17Z" (733240817) transition_time 0x98-0x9b.7 (4)
|
||||
0x090| 2c a4 4e f2| ,.N.| [28]: "1993-09-25T14:00:18Z" (748965618) transition_time 0x9c-0x9f.7 (4)
|
||||
0x0a0|2d 94 3f f2 |-.?. | [29]: "1994-03-26T14:00:18Z" (764690418) transition_time 0xa0-0xa3.7 (4)
|
||||
0x0a0| 2e 84 30 f3 | ..0. | [30]: "1994-09-24T14:00:19Z" (780415219) transition_time 0xa4-0xa7.7 (4)
|
||||
0x0a0| 2f 74 21 f3 | /t!. | [31]: "1995-03-25T14:00:19Z" (796140019) transition_time 0xa8-0xab.7 (4)
|
||||
0x0a0| 30 64 12 f3| 0d..| [32]: "1995-09-23T14:00:19Z" (811864819) transition_time 0xac-0xaf.7 (4)
|
||||
0x0b0|31 5d 3e 74 |1]>t | [33]: "1996-03-30T14:00:20Z" (828194420) transition_time 0xb0-0xb3.7 (4)
|
||||
0x0b0| 32 72 19 74 | 2r.t | [34]: "1996-10-26T14:00:20Z" (846338420) transition_time 0xb4-0xb7.7 (4)
|
||||
0x0b0| 33 3d 20 74 | 3= t | [35]: "1997-03-29T14:00:20Z" (859644020) transition_time 0xb8-0xbb.7 (4)
|
||||
0x0b0| 34 51 fb 75| 4Q.u| [36]: "1997-10-25T14:00:21Z" (877788021) transition_time 0xbc-0xbf.7 (4)
|
||||
0x0c0|35 1d 02 75 |5..u | [37]: "1998-03-28T14:00:21Z" (891093621) transition_time 0xc0-0xc3.7 (4)
|
||||
0x0c0| 36 31 dd 75 | 61.u | [38]: "1998-10-24T14:00:21Z" (909237621) transition_time 0xc4-0xc7.7 (4)
|
||||
0x0c0| 36 fc e4 76 | 6..v | [39]: "1999-03-27T14:00:22Z" (922543222) transition_time 0xc8-0xcb.7 (4)
|
||||
0x0c0| 38 1a f9 f6| 8...| [40]: "1999-10-30T14:00:22Z" (941292022) transition_time 0xcc-0xcf.7 (4)
|
||||
0x0d0|38 dc c6 76 |8..v | [41]: "2000-03-25T14:00:22Z" (953992822) transition_time 0xd0-0xd3.7 (4)
|
||||
0x0d0| 39 fa db f6 | 9... | [42]: "2000-10-28T14:00:22Z" (972741622) transition_time 0xd4-0xd7.7 (4)
|
||||
0x0d0| 3a bc a8 76 | :..v | [43]: "2001-03-24T14:00:22Z" (985442422) transition_time 0xd8-0xdb.7 (4)
|
||||
0x0d0| 3b da bd f6| ;...| [44]: "2001-10-27T14:00:22Z" (1004191222) transition_time 0xdc-0xdf.7 (4)
|
||||
0x0e0|3c a5 c4 f6 |<... | [45]: "2002-03-30T14:00:22Z" (1017496822) transition_time 0xe0-0xe3.7 (4)
|
||||
0x0e0| 3d ba 9f f6 | =... | [46]: "2002-10-26T14:00:22Z" (1035640822) transition_time 0xe4-0xe7.7 (4)
|
||||
0x0e0| 3e 85 a6 f6 | >... | [47]: "2003-03-29T14:00:22Z" (1048946422) transition_time 0xe8-0xeb.7 (4)
|
||||
0x0e0| 3f 9a 81 f6| ?...| [48]: "2003-10-25T14:00:22Z" (1067090422) transition_time 0xec-0xef.7 (4)
|
||||
0x0f0|40 65 88 f6 |@e.. | [49]: "2004-03-27T14:00:22Z" (1080396022) transition_time 0xf0-0xf3.7 (4)
|
||||
0x0f0| 41 83 9e 76 | A..v | [50]: "2004-10-30T14:00:22Z" (1099144822) transition_time 0xf4-0xf7.7 (4)
|
||||
0x0f0| 42 45 6a f6 | BEj. | [51]: "2005-03-26T14:00:22Z" (1111845622) transition_time 0xf8-0xfb.7 (4)
|
||||
0x0f0| 43 63 80 76| Cc.v| [52]: "2005-10-29T14:00:22Z" (1130594422) transition_time 0xfc-0xff.7 (4)
|
||||
0x100|44 25 4c f7 |D%L. | [53]: "2006-03-25T14:00:23Z" (1143295223) transition_time 0x100-0x103.7 (4)
|
||||
0x100| 45 43 62 77 | ECbw | [54]: "2006-10-28T14:00:23Z" (1162044023) transition_time 0x104-0x107.7 (4)
|
||||
0x100| 46 05 2e f7 | F... | [55]: "2007-03-24T14:00:23Z" (1174744823) transition_time 0x108-0x10b.7 (4)
|
||||
0x100| 47 23 44 77| G#Dw| [56]: "2007-10-27T14:00:23Z" (1193493623) transition_time 0x10c-0x10f.7 (4)
|
||||
0x110|47 ee 4b 77 |G.Kw | [57]: "2008-03-29T14:00:23Z" (1206799223) transition_time 0x110-0x113.7 (4)
|
||||
0x110| 49 03 26 77 | I.&w | [58]: "2008-10-25T14:00:23Z" (1224943223) transition_time 0x114-0x117.7 (4)
|
||||
0x110| 49 ce 2d 78 | I.-x | [59]: "2009-03-28T14:00:24Z" (1238248824) transition_time 0x118-0x11b.7 (4)
|
||||
0x110| 4a e3 08 78| J..x| [60]: "2009-10-24T14:00:24Z" (1256392824) transition_time 0x11c-0x11f.7 (4)
|
||||
0x120|4b ae 0f 78 |K..x | [61]: "2010-03-27T14:00:24Z" (1269698424) transition_time 0x120-0x123.7 (4)
|
||||
0x120| 4c cc 33 08 | L.3. | [62]: "2010-10-30T15:00:24Z" (1288450824) transition_time 0x124-0x127.7 (4)
|
||||
0x120| 4d 8d ff 88 | M... | [63]: "2011-03-26T15:00:24Z" (1301151624) transition_time 0x128-0x12b.7 (4)
|
||||
0x120| 64 9b 78 1b| d.x.| [64]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x12c-0x12f.7 (4)
|
||||
| | | transition_types[0:65]: 0x130-0x170.7 (65)
|
||||
0x130|01 |. | [0]: 1 transition_type 0x130-0x130.7 (1)
|
||||
0x130| 03 | . | [1]: 3 transition_type 0x131-0x131.7 (1)
|
||||
0x130| 02 | . | [2]: 2 transition_type 0x132-0x132.7 (1)
|
||||
0x130| 03 | . | [3]: 3 transition_type 0x133-0x133.7 (1)
|
||||
0x130| 04 | . | [4]: 4 transition_type 0x134-0x134.7 (1)
|
||||
0x130| 01 | . | [5]: 1 transition_type 0x135-0x135.7 (1)
|
||||
0x130| 04 | . | [6]: 4 transition_type 0x136-0x136.7 (1)
|
||||
0x130| 01 | . | [7]: 1 transition_type 0x137-0x137.7 (1)
|
||||
0x130| 04 | . | [8]: 4 transition_type 0x138-0x138.7 (1)
|
||||
0x130| 05 | . | [9]: 5 transition_type 0x139-0x139.7 (1)
|
||||
0x130| 06 | . | [10]: 6 transition_type 0x13a-0x13a.7 (1)
|
||||
0x130| 05 | . | [11]: 5 transition_type 0x13b-0x13b.7 (1)
|
||||
0x130| 06 | . | [12]: 6 transition_type 0x13c-0x13c.7 (1)
|
||||
0x130| 05 | . | [13]: 5 transition_type 0x13d-0x13d.7 (1)
|
||||
0x130| 06 | . | [14]: 6 transition_type 0x13e-0x13e.7 (1)
|
||||
0x130| 05| .| [15]: 5 transition_type 0x13f-0x13f.7 (1)
|
||||
0x140|06 |. | [16]: 6 transition_type 0x140-0x140.7 (1)
|
||||
0x140| 05 | . | [17]: 5 transition_type 0x141-0x141.7 (1)
|
||||
0x140| 06 | . | [18]: 6 transition_type 0x142-0x142.7 (1)
|
||||
0x140| 05 | . | [19]: 5 transition_type 0x143-0x143.7 (1)
|
||||
0x140| 06 | . | [20]: 6 transition_type 0x144-0x144.7 (1)
|
||||
0x140| 05 | . | [21]: 5 transition_type 0x145-0x145.7 (1)
|
||||
0x140| 07 | . | [22]: 7 transition_type 0x146-0x146.7 (1)
|
||||
0x140| 08 | . | [23]: 8 transition_type 0x147-0x147.7 (1)
|
||||
0x140| 05 | . | [24]: 5 transition_type 0x148-0x148.7 (1)
|
||||
0x140| 06 | . | [25]: 6 transition_type 0x149-0x149.7 (1)
|
||||
0x140| 05 | . | [26]: 5 transition_type 0x14a-0x14a.7 (1)
|
||||
0x140| 06 | . | [27]: 6 transition_type 0x14b-0x14b.7 (1)
|
||||
0x140| 05 | . | [28]: 5 transition_type 0x14c-0x14c.7 (1)
|
||||
0x140| 06 | . | [29]: 6 transition_type 0x14d-0x14d.7 (1)
|
||||
0x140| 05 | . | [30]: 5 transition_type 0x14e-0x14e.7 (1)
|
||||
0x140| 06| .| [31]: 6 transition_type 0x14f-0x14f.7 (1)
|
||||
0x150|05 |. | [32]: 5 transition_type 0x150-0x150.7 (1)
|
||||
0x150| 06 | . | [33]: 6 transition_type 0x151-0x151.7 (1)
|
||||
0x150| 05 | . | [34]: 5 transition_type 0x152-0x152.7 (1)
|
||||
0x150| 06 | . | [35]: 6 transition_type 0x153-0x153.7 (1)
|
||||
0x150| 05 | . | [36]: 5 transition_type 0x154-0x154.7 (1)
|
||||
0x150| 06 | . | [37]: 6 transition_type 0x155-0x155.7 (1)
|
||||
0x150| 05 | . | [38]: 5 transition_type 0x156-0x156.7 (1)
|
||||
0x150| 06 | . | [39]: 6 transition_type 0x157-0x157.7 (1)
|
||||
0x150| 05 | . | [40]: 5 transition_type 0x158-0x158.7 (1)
|
||||
0x150| 06 | . | [41]: 6 transition_type 0x159-0x159.7 (1)
|
||||
0x150| 05 | . | [42]: 5 transition_type 0x15a-0x15a.7 (1)
|
||||
0x150| 06 | . | [43]: 6 transition_type 0x15b-0x15b.7 (1)
|
||||
0x150| 05 | . | [44]: 5 transition_type 0x15c-0x15c.7 (1)
|
||||
0x150| 06 | . | [45]: 6 transition_type 0x15d-0x15d.7 (1)
|
||||
0x150| 05 | . | [46]: 5 transition_type 0x15e-0x15e.7 (1)
|
||||
0x150| 06| .| [47]: 6 transition_type 0x15f-0x15f.7 (1)
|
||||
0x160|05 |. | [48]: 5 transition_type 0x160-0x160.7 (1)
|
||||
0x160| 06 | . | [49]: 6 transition_type 0x161-0x161.7 (1)
|
||||
0x160| 05 | . | [50]: 5 transition_type 0x162-0x162.7 (1)
|
||||
0x160| 06 | . | [51]: 6 transition_type 0x163-0x163.7 (1)
|
||||
0x160| 05 | . | [52]: 5 transition_type 0x164-0x164.7 (1)
|
||||
0x160| 06 | . | [53]: 6 transition_type 0x165-0x165.7 (1)
|
||||
0x160| 05 | . | [54]: 5 transition_type 0x166-0x166.7 (1)
|
||||
0x160| 06 | . | [55]: 6 transition_type 0x167-0x167.7 (1)
|
||||
0x160| 05 | . | [56]: 5 transition_type 0x168-0x168.7 (1)
|
||||
0x160| 06 | . | [57]: 6 transition_type 0x169-0x169.7 (1)
|
||||
0x160| 05 | . | [58]: 5 transition_type 0x16a-0x16a.7 (1)
|
||||
0x160| 06 | . | [59]: 6 transition_type 0x16b-0x16b.7 (1)
|
||||
0x160| 05 | . | [60]: 5 transition_type 0x16c-0x16c.7 (1)
|
||||
0x160| 07 | . | [61]: 7 transition_type 0x16d-0x16d.7 (1)
|
||||
0x160| 08 | . | [62]: 8 transition_type 0x16e-0x16e.7 (1)
|
||||
0x160| 05| .| [63]: 5 transition_type 0x16f-0x16f.7 (1)
|
||||
0x170|05 |. | [64]: 5 transition_type 0x170-0x170.7 (1)
|
||||
| | | local_time_type_records[0:10]: 0x171-0x1ac.7 (60)
|
||||
| | | [0]{}: local_time_type 0x171-0x176.7 (6)
|
||||
0x170| 00 00 a6 64 | ...d | utoff: 42596 (valid) 0x171-0x174.7 (4)
|
||||
0x170| 00 | . | dst: 0 (valid) 0x175-0x175.7 (1)
|
||||
0x170| 00 | . | idx: 0 (valid) 0x176-0x176.7 (1)
|
||||
| | | [1]{}: local_time_type 0x177-0x17c.7 (6)
|
||||
0x170| 00 00 a8 c0 | .... | utoff: 43200 (valid) 0x177-0x17a.7 (4)
|
||||
0x170| 00 | . | dst: 0 (valid) 0x17b-0x17b.7 (1)
|
||||
0x170| 04 | . | idx: 4 (valid) 0x17c-0x17c.7 (1)
|
||||
| | | [2]{}: local_time_type 0x17d-0x182.7 (6)
|
||||
0x170| 00 00 c4| ...| utoff: 50400 (valid) 0x17d-0x180.7 (4)
|
||||
0x180|e0 |. |
|
||||
0x180| 01 | . | dst: 1 (valid) 0x181-0x181.7 (1)
|
||||
0x180| 08 | . | idx: 8 (valid) 0x182-0x182.7 (1)
|
||||
| | | [3]{}: local_time_type 0x183-0x188.7 (6)
|
||||
0x180| 00 00 b6 d0 | .... | utoff: 46800 (valid) 0x183-0x186.7 (4)
|
||||
0x180| 00 | . | dst: 0 (valid) 0x187-0x187.7 (1)
|
||||
0x180| 0c | . | idx: 12 (valid) 0x188-0x188.7 (1)
|
||||
| | | [4]{}: local_time_type 0x189-0x18e.7 (6)
|
||||
0x180| 00 00 b6 d0 | .... | utoff: 46800 (valid) 0x189-0x18c.7 (4)
|
||||
0x180| 01 | . | dst: 1 (valid) 0x18d-0x18d.7 (1)
|
||||
0x180| 0c | . | idx: 12 (valid) 0x18e-0x18e.7 (1)
|
||||
| | | [5]{}: local_time_type 0x18f-0x194.7 (6)
|
||||
0x180| 00| .| utoff: 43200 (valid) 0x18f-0x192.7 (4)
|
||||
0x190|00 a8 c0 |... |
|
||||
0x190| 00 | . | dst: 0 (valid) 0x193-0x193.7 (1)
|
||||
0x190| 04 | . | idx: 4 (valid) 0x194-0x194.7 (1)
|
||||
| | | [6]{}: local_time_type 0x195-0x19a.7 (6)
|
||||
0x190| 00 00 b6 d0 | .... | utoff: 46800 (valid) 0x195-0x198.7 (4)
|
||||
0x190| 01 | . | dst: 1 (valid) 0x199-0x199.7 (1)
|
||||
0x190| 0c | . | idx: 12 (valid) 0x19a-0x19a.7 (1)
|
||||
| | | [7]{}: local_time_type 0x19b-0x1a0.7 (6)
|
||||
0x190| 00 00 a8 c0 | .... | utoff: 43200 (valid) 0x19b-0x19e.7 (4)
|
||||
0x190| 01| .| dst: 1 (valid) 0x19f-0x19f.7 (1)
|
||||
0x1a0|04 |. | idx: 4 (valid) 0x1a0-0x1a0.7 (1)
|
||||
| | | [8]{}: local_time_type 0x1a1-0x1a6.7 (6)
|
||||
0x1a0| 00 00 9a b0 | .... | utoff: 39600 (valid) 0x1a1-0x1a4.7 (4)
|
||||
0x1a0| 00 | . | dst: 0 (valid) 0x1a5-0x1a5.7 (1)
|
||||
0x1a0| 10 | . | idx: 16 (valid) 0x1a6-0x1a6.7 (1)
|
||||
| | | [9]{}: local_time_type 0x1a7-0x1ac.7 (6)
|
||||
0x1a0| 00 00 a8 c0 | .... | utoff: 43200 (valid) 0x1a7-0x1aa.7 (4)
|
||||
0x1a0| 00 | . | dst: 0 (valid) 0x1ab-0x1ab.7 (1)
|
||||
0x1a0| 04 | . | idx: 4 (valid) 0x1ac-0x1ac.7 (1)
|
||||
| | | time_zone_designations[0:5]: 0x1ad-0x1c0.7 (20)
|
||||
0x1a0| 4c 4d 54| LMT| [0]: "LMT" time_zone_designation 0x1ad-0x1b0.7 (4)
|
||||
0x1b0|00 |. |
|
||||
0x1b0| 2b 31 32 00 | +12. | [1]: "+12" time_zone_designation 0x1b1-0x1b4.7 (4)
|
||||
0x1b0| 2b 31 34 00 | +14. | [2]: "+14" time_zone_designation 0x1b5-0x1b8.7 (4)
|
||||
0x1b0| 2b 31 33 00 | +13. | [3]: "+13" time_zone_designation 0x1b9-0x1bc.7 (4)
|
||||
0x1b0| 2b 31 31| +11| [4]: "+11" time_zone_designation 0x1bd-0x1c0.7 (4)
|
||||
0x1c0|00 |. |
|
||||
| | | leap_second_records[0:27]: 0x1c1-0x298.7 (216)
|
||||
| | | [0]{}: leap_second_record 0x1c1-0x1c8.7 (8)
|
||||
0x1c0| 04 b2 58 00 | ..X. | occur: "1972-07-01T00:00:00Z" (78796800) 0x1c1-0x1c4.7 (4)
|
||||
0x1c0| 00 00 00 01 | .... | corr: 1 0x1c5-0x1c8.7 (4)
|
||||
| | | [1]{}: leap_second_record 0x1c9-0x1d0.7 (8)
|
||||
0x1c0| 05 a4 ec 01 | .... | occur: "1973-01-01T00:00:01Z" (94694401) 0x1c9-0x1cc.7 (4)
|
||||
0x1c0| 00 00 00| ...| corr: 2 0x1cd-0x1d0.7 (4)
|
||||
0x1d0|02 |. |
|
||||
| | | [2]{}: leap_second_record 0x1d1-0x1d8.7 (8)
|
||||
0x1d0| 07 86 1f 82 | .... | occur: "1974-01-01T00:00:02Z" (126230402) 0x1d1-0x1d4.7 (4)
|
||||
0x1d0| 00 00 00 03 | .... | corr: 3 0x1d5-0x1d8.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x1d9-0x1e0.7 (8)
|
||||
0x1d0| 09 67 53 03 | .gS. | occur: "1975-01-01T00:00:03Z" (157766403) 0x1d9-0x1dc.7 (4)
|
||||
0x1d0| 00 00 00| ...| corr: 4 0x1dd-0x1e0.7 (4)
|
||||
0x1e0|04 |. |
|
||||
| | | [4]{}: leap_second_record 0x1e1-0x1e8.7 (8)
|
||||
0x1e0| 0b 48 86 84 | .H.. | occur: "1976-01-01T00:00:04Z" (189302404) 0x1e1-0x1e4.7 (4)
|
||||
0x1e0| 00 00 00 05 | .... | corr: 5 0x1e5-0x1e8.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x1e9-0x1f0.7 (8)
|
||||
0x1e0| 0d 2b 0b 85 | .+.. | occur: "1977-01-01T00:00:05Z" (220924805) 0x1e9-0x1ec.7 (4)
|
||||
0x1e0| 00 00 00| ...| corr: 6 0x1ed-0x1f0.7 (4)
|
||||
0x1f0|06 |. |
|
||||
| | | [6]{}: leap_second_record 0x1f1-0x1f8.7 (8)
|
||||
0x1f0| 0f 0c 3f 06 | ..?. | occur: "1978-01-01T00:00:06Z" (252460806) 0x1f1-0x1f4.7 (4)
|
||||
0x1f0| 00 00 00 07 | .... | corr: 7 0x1f5-0x1f8.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x1f9-0x200.7 (8)
|
||||
0x1f0| 10 ed 72 87 | ..r. | occur: "1979-01-01T00:00:07Z" (283996807) 0x1f9-0x1fc.7 (4)
|
||||
0x1f0| 00 00 00| ...| corr: 8 0x1fd-0x200.7 (4)
|
||||
0x200|08 |. |
|
||||
| | | [8]{}: leap_second_record 0x201-0x208.7 (8)
|
||||
0x200| 12 ce a6 08 | .... | occur: "1980-01-01T00:00:08Z" (315532808) 0x201-0x204.7 (4)
|
||||
0x200| 00 00 00 09 | .... | corr: 9 0x205-0x208.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x209-0x210.7 (8)
|
||||
0x200| 15 9f ca 89 | .... | occur: "1981-07-01T00:00:09Z" (362793609) 0x209-0x20c.7 (4)
|
||||
0x200| 00 00 00| ...| corr: 10 0x20d-0x210.7 (4)
|
||||
0x210|0a |. |
|
||||
| | | [10]{}: leap_second_record 0x211-0x218.7 (8)
|
||||
0x210| 17 80 fe 0a | .... | occur: "1982-07-01T00:00:10Z" (394329610) 0x211-0x214.7 (4)
|
||||
0x210| 00 00 00 0b | .... | corr: 11 0x215-0x218.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x219-0x220.7 (8)
|
||||
0x210| 19 62 31 8b | .b1. | occur: "1983-07-01T00:00:11Z" (425865611) 0x219-0x21c.7 (4)
|
||||
0x210| 00 00 00| ...| corr: 12 0x21d-0x220.7 (4)
|
||||
0x220|0c |. |
|
||||
| | | [12]{}: leap_second_record 0x221-0x228.7 (8)
|
||||
0x220| 1d 25 ea 0c | .%.. | occur: "1985-07-01T00:00:12Z" (489024012) 0x221-0x224.7 (4)
|
||||
0x220| 00 00 00 0d | .... | corr: 13 0x225-0x228.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x229-0x230.7 (8)
|
||||
0x220| 21 da e5 0d | !... | occur: "1988-01-01T00:00:13Z" (567993613) 0x229-0x22c.7 (4)
|
||||
0x220| 00 00 00| ...| corr: 14 0x22d-0x230.7 (4)
|
||||
0x230|0e |. |
|
||||
| | | [14]{}: leap_second_record 0x231-0x238.7 (8)
|
||||
0x230| 25 9e 9d 8e | %... | occur: "1990-01-01T00:00:14Z" (631152014) 0x231-0x234.7 (4)
|
||||
0x230| 00 00 00 0f | .... | corr: 15 0x235-0x238.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x239-0x240.7 (8)
|
||||
0x230| 27 7f d1 0f | '... | occur: "1991-01-01T00:00:15Z" (662688015) 0x239-0x23c.7 (4)
|
||||
0x230| 00 00 00| ...| corr: 16 0x23d-0x240.7 (4)
|
||||
0x240|10 |. |
|
||||
| | | [16]{}: leap_second_record 0x241-0x248.7 (8)
|
||||
0x240| 2a 50 f5 90 | *P.. | occur: "1992-07-01T00:00:16Z" (709948816) 0x241-0x244.7 (4)
|
||||
0x240| 00 00 00 11 | .... | corr: 17 0x245-0x248.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x249-0x250.7 (8)
|
||||
0x240| 2c 32 29 11 | ,2). | occur: "1993-07-01T00:00:17Z" (741484817) 0x249-0x24c.7 (4)
|
||||
0x240| 00 00 00| ...| corr: 18 0x24d-0x250.7 (4)
|
||||
0x250|12 |. |
|
||||
| | | [18]{}: leap_second_record 0x251-0x258.7 (8)
|
||||
0x250| 2e 13 5c 92 | ..\. | occur: "1994-07-01T00:00:18Z" (773020818) 0x251-0x254.7 (4)
|
||||
0x250| 00 00 00 13 | .... | corr: 19 0x255-0x258.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x259-0x260.7 (8)
|
||||
0x250| 30 e7 24 13 | 0.$. | occur: "1996-01-01T00:00:19Z" (820454419) 0x259-0x25c.7 (4)
|
||||
0x250| 00 00 00| ...| corr: 20 0x25d-0x260.7 (4)
|
||||
0x260|14 |. |
|
||||
| | | [20]{}: leap_second_record 0x261-0x268.7 (8)
|
||||
0x260| 33 b8 48 94 | 3.H. | occur: "1997-07-01T00:00:20Z" (867715220) 0x261-0x264.7 (4)
|
||||
0x260| 00 00 00 15 | .... | corr: 21 0x265-0x268.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x269-0x270.7 (8)
|
||||
0x260| 36 8c 10 15 | 6... | occur: "1999-01-01T00:00:21Z" (915148821) 0x269-0x26c.7 (4)
|
||||
0x260| 00 00 00| ...| corr: 22 0x26d-0x270.7 (4)
|
||||
0x270|16 |. |
|
||||
| | | [22]{}: leap_second_record 0x271-0x278.7 (8)
|
||||
0x270| 43 b7 1b 96 | C... | occur: "2006-01-01T00:00:22Z" (1136073622) 0x271-0x274.7 (4)
|
||||
0x270| 00 00 00 17 | .... | corr: 23 0x275-0x278.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x279-0x280.7 (8)
|
||||
0x270| 49 5c 07 97 | I\.. | occur: "2009-01-01T00:00:23Z" (1230768023) 0x279-0x27c.7 (4)
|
||||
0x270| 00 00 00| ...| corr: 24 0x27d-0x280.7 (4)
|
||||
0x280|18 |. |
|
||||
| | | [24]{}: leap_second_record 0x281-0x288.7 (8)
|
||||
0x280| 4f ef 93 18 | O... | occur: "2012-07-01T00:00:24Z" (1341100824) 0x281-0x284.7 (4)
|
||||
0x280| 00 00 00 19 | .... | corr: 25 0x285-0x288.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x289-0x290.7 (8)
|
||||
0x280| 55 93 2d 99 | U.-. | occur: "2015-07-01T00:00:25Z" (1435708825) 0x289-0x28c.7 (4)
|
||||
0x280| 00 00 00| ...| corr: 26 0x28d-0x290.7 (4)
|
||||
0x290|1a |. |
|
||||
| | | [26]{}: leap_second_record 0x291-0x298.7 (8)
|
||||
0x290| 58 68 46 9a | XhF. | occur: "2017-01-01T00:00:26Z" (1483228826) 0x291-0x294.7 (4)
|
||||
0x290| 00 00 00 1b | .... | corr: 27 0x295-0x298.7 (4)
|
||||
| | | standard_wall_indicators[0:10]: 0x299-0x2a2.7 (10)
|
||||
0x290| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x299-0x299.7 (1)
|
||||
0x290| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x29a-0x29a.7 (1)
|
||||
0x290| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x29b-0x29b.7 (1)
|
||||
0x290| 00 | . | [3]: 0 standard_wall_indicator (valid) 0x29c-0x29c.7 (1)
|
||||
0x290| 00 | . | [4]: 0 standard_wall_indicator (valid) 0x29d-0x29d.7 (1)
|
||||
0x290| 01 | . | [5]: 1 standard_wall_indicator (valid) 0x29e-0x29e.7 (1)
|
||||
0x290| 01| .| [6]: 1 standard_wall_indicator (valid) 0x29f-0x29f.7 (1)
|
||||
0x2a0|01 |. | [7]: 1 standard_wall_indicator (valid) 0x2a0-0x2a0.7 (1)
|
||||
0x2a0| 01 | . | [8]: 1 standard_wall_indicator (valid) 0x2a1-0x2a1.7 (1)
|
||||
0x2a0| 01 | . | [9]: 1 standard_wall_indicator (valid) 0x2a2-0x2a2.7 (1)
|
||||
| | | ut_local_indicators[0:0]: 0x2a3-NA (0)
|
||||
| | | v2plusheader{}: 0x2a3-0x2ce.7 (44)
|
||||
0x2a0| 54 5a 69 66 | TZif | magic: 0x545a6966 (valid) 0x2a3-0x2a6.7 (4)
|
||||
0x2a0| 32 | 2 | ver: "2" (0x32) (valid) 0x2a7-0x2a7.7 (1)
|
||||
0x2a0| 00 00 00 00 00 00 00 00| ........| reserved: raw bits 0x2a8-0x2b6.7 (15)
|
||||
0x2b0|00 00 00 00 00 00 00 |....... |
|
||||
0x2b0| 00 00 00 00 | .... | isutcnt: 0 0x2b7-0x2ba.7 (4)
|
||||
0x2b0| 00 00 00 0a | .... | isstdcnt: 10 0x2bb-0x2be.7 (4)
|
||||
0x2b0| 00| .| leapcnt: 27 0x2bf-0x2c2.7 (4)
|
||||
0x2c0|00 00 1b |... |
|
||||
0x2c0| 00 00 00 41 | ...A | timecnt: 65 0x2c3-0x2c6.7 (4)
|
||||
0x2c0| 00 00 00 0a | .... | typecnt: 10 0x2c7-0x2ca.7 (4)
|
||||
0x2c0| 00 00 00 14 | .... | charcnt: 20 0x2cb-0x2ce.7 (4)
|
||||
| | | v2plusdatablock{}: 0x2cf-0x6b5.7 (999)
|
||||
| | | transition_times[0:65]: 0x2cf-0x4d6.7 (520)
|
||||
0x2c0| ff| .| [0]: "1924-05-01T12:10:04Z" (-1441194596) transition_time 0x2cf-0x2d6.7 (8)
|
||||
0x2d0|ff ff ff aa 19 1d 9c |....... |
|
||||
0x2d0| ff ff ff ff b5 a3 8c c0 | ........ | [1]: "1930-06-20T12:00:00Z" (-1247572800) transition_time 0x2d7-0x2de.7 (8)
|
||||
0x2d0| 00| .| [2]: "1981-03-31T11:00:09Z" (354884409) transition_time 0x2df-0x2e6.7 (8)
|
||||
0x2e0|00 00 00 15 27 1b 39 |....'.9 |
|
||||
0x2e0| 00 00 00 00 16 18 4f aa | ......O. | [3]: "1981-09-30T10:00:10Z" (370692010) transition_time 0x2e7-0x2ee.7 (8)
|
||||
0x2e0| 00| .| [4]: "1982-03-31T11:00:10Z" (386420410) transition_time 0x2ef-0x2f6.7 (8)
|
||||
0x2f0|00 00 00 17 08 4e ba |.....N. |
|
||||
0x2f0| 00 00 00 00 17 f9 91 3b | .......; | [5]: "1982-09-30T11:00:11Z" (402231611) transition_time 0x2f7-0x2fe.7 (8)
|
||||
0x2f0| 00| .| [6]: "1983-03-31T12:00:11Z" (417960011) transition_time 0x2ff-0x306.7 (8)
|
||||
0x300|00 00 00 18 e9 90 4b |......K |
|
||||
0x300| 00 00 00 00 19 da c4 bc | ........ | [7]: "1983-09-30T11:00:12Z" (433767612) transition_time 0x307-0x30e.7 (8)
|
||||
0x300| 00| .| [8]: "1984-03-31T12:00:12Z" (449582412) transition_time 0x30f-0x316.7 (8)
|
||||
0x310|00 00 00 1a cc 15 4c |......L |
|
||||
0x310| 00 00 00 00 1b bc 22 6c | ......"l | [9]: "1984-09-29T14:00:12Z" (465314412) transition_time 0x317-0x31e.7 (8)
|
||||
0x310| 00| .| [10]: "1985-03-30T14:00:12Z" (481039212) transition_time 0x31f-0x326.7 (8)
|
||||
0x320|00 00 00 1c ac 13 6c |......l |
|
||||
0x320| 00 00 00 00 1d 9c 04 6d | .......m | [11]: "1985-09-28T14:00:13Z" (496764013) transition_time 0x327-0x32e.7 (8)
|
||||
0x320| 00| .| [12]: "1986-03-29T14:00:13Z" (512488813) transition_time 0x32f-0x336.7 (8)
|
||||
0x330|00 00 00 1e 8b f5 6d |......m |
|
||||
0x330| 00 00 00 00 1f 7b e6 6d | .....{.m | [13]: "1986-09-27T14:00:13Z" (528213613) transition_time 0x337-0x33e.7 (8)
|
||||
0x330| 00| .| [14]: "1987-03-28T14:00:13Z" (543938413) transition_time 0x33f-0x346.7 (8)
|
||||
0x340|00 00 00 20 6b d7 6d |... k.m |
|
||||
0x340| 00 00 00 00 21 5b c8 6d | ....![.m | [15]: "1987-09-26T14:00:13Z" (559663213) transition_time 0x347-0x34e.7 (8)
|
||||
0x340| 00| .| [16]: "1988-03-26T14:00:14Z" (575388014) transition_time 0x34f-0x356.7 (8)
|
||||
0x350|00 00 00 22 4b b9 6e |..."K.n |
|
||||
0x350| 00 00 00 00 23 3b aa 6e | ....#;.n | [17]: "1988-09-24T14:00:14Z" (591112814) transition_time 0x357-0x35e.7 (8)
|
||||
0x350| 00| .| [18]: "1989-03-25T14:00:14Z" (606837614) transition_time 0x35f-0x366.7 (8)
|
||||
0x360|00 00 00 24 2b 9b 6e |...$+.n |
|
||||
0x360| 00 00 00 00 25 1b 8c 6e | ....%..n | [19]: "1989-09-23T14:00:14Z" (622562414) transition_time 0x367-0x36e.7 (8)
|
||||
0x360| 00| .| [20]: "1990-03-24T14:00:15Z" (638287215) transition_time 0x36f-0x376.7 (8)
|
||||
0x370|00 00 00 26 0b 7d 6f |...&.}o |
|
||||
0x370| 00 00 00 00 27 04 a8 ef | ....'... | [21]: "1990-09-29T14:00:15Z" (654616815) transition_time 0x377-0x37e.7 (8)
|
||||
0x370| 00| .| [22]: "1991-03-30T14:00:16Z" (670341616) transition_time 0x37f-0x386.7 (8)
|
||||
0x380|00 00 00 27 f4 99 f0 |...'... |
|
||||
0x380| 00 00 00 00 28 e4 99 00 | ....(... | [23]: "1991-09-28T15:00:16Z" (686070016) transition_time 0x387-0x38e.7 (8)
|
||||
0x380| 00| .| [24]: "1992-01-18T15:00:16Z" (695746816) transition_time 0x38f-0x396.7 (8)
|
||||
0x390|00 00 00 29 78 41 00 |...)xA. |
|
||||
0x390| 00 00 00 00 29 d4 7b f0 | ....).{. | [25]: "1992-03-28T14:00:16Z" (701791216) transition_time 0x397-0x39e.7 (8)
|
||||
0x390| 00| .| [26]: "1992-09-26T14:00:17Z" (717516017) transition_time 0x39f-0x3a6.7 (8)
|
||||
0x3a0|00 00 00 2a c4 6c f1 |...*.l. |
|
||||
0x3a0| 00 00 00 00 2b b4 5d f1 | ....+.]. | [27]: "1993-03-27T14:00:17Z" (733240817) transition_time 0x3a7-0x3ae.7 (8)
|
||||
0x3a0| 00| .| [28]: "1993-09-25T14:00:18Z" (748965618) transition_time 0x3af-0x3b6.7 (8)
|
||||
0x3b0|00 00 00 2c a4 4e f2 |...,.N. |
|
||||
0x3b0| 00 00 00 00 2d 94 3f f2 | ....-.?. | [29]: "1994-03-26T14:00:18Z" (764690418) transition_time 0x3b7-0x3be.7 (8)
|
||||
0x3b0| 00| .| [30]: "1994-09-24T14:00:19Z" (780415219) transition_time 0x3bf-0x3c6.7 (8)
|
||||
0x3c0|00 00 00 2e 84 30 f3 |.....0. |
|
||||
0x3c0| 00 00 00 00 2f 74 21 f3 | ..../t!. | [31]: "1995-03-25T14:00:19Z" (796140019) transition_time 0x3c7-0x3ce.7 (8)
|
||||
0x3c0| 00| .| [32]: "1995-09-23T14:00:19Z" (811864819) transition_time 0x3cf-0x3d6.7 (8)
|
||||
0x3d0|00 00 00 30 64 12 f3 |...0d.. |
|
||||
0x3d0| 00 00 00 00 31 5d 3e 74 | ....1]>t | [33]: "1996-03-30T14:00:20Z" (828194420) transition_time 0x3d7-0x3de.7 (8)
|
||||
0x3d0| 00| .| [34]: "1996-10-26T14:00:20Z" (846338420) transition_time 0x3df-0x3e6.7 (8)
|
||||
0x3e0|00 00 00 32 72 19 74 |...2r.t |
|
||||
0x3e0| 00 00 00 00 33 3d 20 74 | ....3= t | [35]: "1997-03-29T14:00:20Z" (859644020) transition_time 0x3e7-0x3ee.7 (8)
|
||||
0x3e0| 00| .| [36]: "1997-10-25T14:00:21Z" (877788021) transition_time 0x3ef-0x3f6.7 (8)
|
||||
0x3f0|00 00 00 34 51 fb 75 |...4Q.u |
|
||||
0x3f0| 00 00 00 00 35 1d 02 75 | ....5..u | [37]: "1998-03-28T14:00:21Z" (891093621) transition_time 0x3f7-0x3fe.7 (8)
|
||||
0x3f0| 00| .| [38]: "1998-10-24T14:00:21Z" (909237621) transition_time 0x3ff-0x406.7 (8)
|
||||
0x400|00 00 00 36 31 dd 75 |...61.u |
|
||||
0x400| 00 00 00 00 36 fc e4 76 | ....6..v | [39]: "1999-03-27T14:00:22Z" (922543222) transition_time 0x407-0x40e.7 (8)
|
||||
0x400| 00| .| [40]: "1999-10-30T14:00:22Z" (941292022) transition_time 0x40f-0x416.7 (8)
|
||||
0x410|00 00 00 38 1a f9 f6 |...8... |
|
||||
0x410| 00 00 00 00 38 dc c6 76 | ....8..v | [41]: "2000-03-25T14:00:22Z" (953992822) transition_time 0x417-0x41e.7 (8)
|
||||
0x410| 00| .| [42]: "2000-10-28T14:00:22Z" (972741622) transition_time 0x41f-0x426.7 (8)
|
||||
0x420|00 00 00 39 fa db f6 |...9... |
|
||||
0x420| 00 00 00 00 3a bc a8 76 | ....:..v | [43]: "2001-03-24T14:00:22Z" (985442422) transition_time 0x427-0x42e.7 (8)
|
||||
0x420| 00| .| [44]: "2001-10-27T14:00:22Z" (1004191222) transition_time 0x42f-0x436.7 (8)
|
||||
0x430|00 00 00 3b da bd f6 |...;... |
|
||||
0x430| 00 00 00 00 3c a5 c4 f6 | ....<... | [45]: "2002-03-30T14:00:22Z" (1017496822) transition_time 0x437-0x43e.7 (8)
|
||||
0x430| 00| .| [46]: "2002-10-26T14:00:22Z" (1035640822) transition_time 0x43f-0x446.7 (8)
|
||||
0x440|00 00 00 3d ba 9f f6 |...=... |
|
||||
0x440| 00 00 00 00 3e 85 a6 f6 | ....>... | [47]: "2003-03-29T14:00:22Z" (1048946422) transition_time 0x447-0x44e.7 (8)
|
||||
0x440| 00| .| [48]: "2003-10-25T14:00:22Z" (1067090422) transition_time 0x44f-0x456.7 (8)
|
||||
0x450|00 00 00 3f 9a 81 f6 |...?... |
|
||||
0x450| 00 00 00 00 40 65 88 f6 | ....@e.. | [49]: "2004-03-27T14:00:22Z" (1080396022) transition_time 0x457-0x45e.7 (8)
|
||||
0x450| 00| .| [50]: "2004-10-30T14:00:22Z" (1099144822) transition_time 0x45f-0x466.7 (8)
|
||||
0x460|00 00 00 41 83 9e 76 |...A..v |
|
||||
0x460| 00 00 00 00 42 45 6a f6 | ....BEj. | [51]: "2005-03-26T14:00:22Z" (1111845622) transition_time 0x467-0x46e.7 (8)
|
||||
0x460| 00| .| [52]: "2005-10-29T14:00:22Z" (1130594422) transition_time 0x46f-0x476.7 (8)
|
||||
0x470|00 00 00 43 63 80 76 |...Cc.v |
|
||||
0x470| 00 00 00 00 44 25 4c f7 | ....D%L. | [53]: "2006-03-25T14:00:23Z" (1143295223) transition_time 0x477-0x47e.7 (8)
|
||||
0x470| 00| .| [54]: "2006-10-28T14:00:23Z" (1162044023) transition_time 0x47f-0x486.7 (8)
|
||||
0x480|00 00 00 45 43 62 77 |...ECbw |
|
||||
0x480| 00 00 00 00 46 05 2e f7 | ....F... | [55]: "2007-03-24T14:00:23Z" (1174744823) transition_time 0x487-0x48e.7 (8)
|
||||
0x480| 00| .| [56]: "2007-10-27T14:00:23Z" (1193493623) transition_time 0x48f-0x496.7 (8)
|
||||
0x490|00 00 00 47 23 44 77 |...G#Dw |
|
||||
0x490| 00 00 00 00 47 ee 4b 77 | ....G.Kw | [57]: "2008-03-29T14:00:23Z" (1206799223) transition_time 0x497-0x49e.7 (8)
|
||||
0x490| 00| .| [58]: "2008-10-25T14:00:23Z" (1224943223) transition_time 0x49f-0x4a6.7 (8)
|
||||
0x4a0|00 00 00 49 03 26 77 |...I.&w |
|
||||
0x4a0| 00 00 00 00 49 ce 2d 78 | ....I.-x | [59]: "2009-03-28T14:00:24Z" (1238248824) transition_time 0x4a7-0x4ae.7 (8)
|
||||
0x4a0| 00| .| [60]: "2009-10-24T14:00:24Z" (1256392824) transition_time 0x4af-0x4b6.7 (8)
|
||||
0x4b0|00 00 00 4a e3 08 78 |...J..x |
|
||||
0x4b0| 00 00 00 00 4b ae 0f 78 | ....K..x | [61]: "2010-03-27T14:00:24Z" (1269698424) transition_time 0x4b7-0x4be.7 (8)
|
||||
0x4b0| 00| .| [62]: "2010-10-30T15:00:24Z" (1288450824) transition_time 0x4bf-0x4c6.7 (8)
|
||||
0x4c0|00 00 00 4c cc 33 08 |...L.3. |
|
||||
0x4c0| 00 00 00 00 4d 8d ff 88 | ....M... | [63]: "2011-03-26T15:00:24Z" (1301151624) transition_time 0x4c7-0x4ce.7 (8)
|
||||
0x4c0| 00| .| [64]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x4cf-0x4d6.7 (8)
|
||||
0x4d0|00 00 00 64 9b 78 1b |...d.x. |
|
||||
| | | transition_types[0:65]: 0x4d7-0x517.7 (65)
|
||||
0x4d0| 01 | . | [0]: 1 transition_type 0x4d7-0x4d7.7 (1)
|
||||
0x4d0| 03 | . | [1]: 3 transition_type 0x4d8-0x4d8.7 (1)
|
||||
0x4d0| 02 | . | [2]: 2 transition_type 0x4d9-0x4d9.7 (1)
|
||||
0x4d0| 03 | . | [3]: 3 transition_type 0x4da-0x4da.7 (1)
|
||||
0x4d0| 04 | . | [4]: 4 transition_type 0x4db-0x4db.7 (1)
|
||||
0x4d0| 01 | . | [5]: 1 transition_type 0x4dc-0x4dc.7 (1)
|
||||
0x4d0| 04 | . | [6]: 4 transition_type 0x4dd-0x4dd.7 (1)
|
||||
0x4d0| 01 | . | [7]: 1 transition_type 0x4de-0x4de.7 (1)
|
||||
0x4d0| 04| .| [8]: 4 transition_type 0x4df-0x4df.7 (1)
|
||||
0x4e0|05 |. | [9]: 5 transition_type 0x4e0-0x4e0.7 (1)
|
||||
0x4e0| 06 | . | [10]: 6 transition_type 0x4e1-0x4e1.7 (1)
|
||||
0x4e0| 05 | . | [11]: 5 transition_type 0x4e2-0x4e2.7 (1)
|
||||
0x4e0| 06 | . | [12]: 6 transition_type 0x4e3-0x4e3.7 (1)
|
||||
0x4e0| 05 | . | [13]: 5 transition_type 0x4e4-0x4e4.7 (1)
|
||||
0x4e0| 06 | . | [14]: 6 transition_type 0x4e5-0x4e5.7 (1)
|
||||
0x4e0| 05 | . | [15]: 5 transition_type 0x4e6-0x4e6.7 (1)
|
||||
0x4e0| 06 | . | [16]: 6 transition_type 0x4e7-0x4e7.7 (1)
|
||||
0x4e0| 05 | . | [17]: 5 transition_type 0x4e8-0x4e8.7 (1)
|
||||
0x4e0| 06 | . | [18]: 6 transition_type 0x4e9-0x4e9.7 (1)
|
||||
0x4e0| 05 | . | [19]: 5 transition_type 0x4ea-0x4ea.7 (1)
|
||||
0x4e0| 06 | . | [20]: 6 transition_type 0x4eb-0x4eb.7 (1)
|
||||
0x4e0| 05 | . | [21]: 5 transition_type 0x4ec-0x4ec.7 (1)
|
||||
0x4e0| 07 | . | [22]: 7 transition_type 0x4ed-0x4ed.7 (1)
|
||||
0x4e0| 08 | . | [23]: 8 transition_type 0x4ee-0x4ee.7 (1)
|
||||
0x4e0| 05| .| [24]: 5 transition_type 0x4ef-0x4ef.7 (1)
|
||||
0x4f0|06 |. | [25]: 6 transition_type 0x4f0-0x4f0.7 (1)
|
||||
0x4f0| 05 | . | [26]: 5 transition_type 0x4f1-0x4f1.7 (1)
|
||||
0x4f0| 06 | . | [27]: 6 transition_type 0x4f2-0x4f2.7 (1)
|
||||
0x4f0| 05 | . | [28]: 5 transition_type 0x4f3-0x4f3.7 (1)
|
||||
0x4f0| 06 | . | [29]: 6 transition_type 0x4f4-0x4f4.7 (1)
|
||||
0x4f0| 05 | . | [30]: 5 transition_type 0x4f5-0x4f5.7 (1)
|
||||
0x4f0| 06 | . | [31]: 6 transition_type 0x4f6-0x4f6.7 (1)
|
||||
0x4f0| 05 | . | [32]: 5 transition_type 0x4f7-0x4f7.7 (1)
|
||||
0x4f0| 06 | . | [33]: 6 transition_type 0x4f8-0x4f8.7 (1)
|
||||
0x4f0| 05 | . | [34]: 5 transition_type 0x4f9-0x4f9.7 (1)
|
||||
0x4f0| 06 | . | [35]: 6 transition_type 0x4fa-0x4fa.7 (1)
|
||||
0x4f0| 05 | . | [36]: 5 transition_type 0x4fb-0x4fb.7 (1)
|
||||
0x4f0| 06 | . | [37]: 6 transition_type 0x4fc-0x4fc.7 (1)
|
||||
0x4f0| 05 | . | [38]: 5 transition_type 0x4fd-0x4fd.7 (1)
|
||||
0x4f0| 06 | . | [39]: 6 transition_type 0x4fe-0x4fe.7 (1)
|
||||
0x4f0| 05| .| [40]: 5 transition_type 0x4ff-0x4ff.7 (1)
|
||||
0x500|06 |. | [41]: 6 transition_type 0x500-0x500.7 (1)
|
||||
0x500| 05 | . | [42]: 5 transition_type 0x501-0x501.7 (1)
|
||||
0x500| 06 | . | [43]: 6 transition_type 0x502-0x502.7 (1)
|
||||
0x500| 05 | . | [44]: 5 transition_type 0x503-0x503.7 (1)
|
||||
0x500| 06 | . | [45]: 6 transition_type 0x504-0x504.7 (1)
|
||||
0x500| 05 | . | [46]: 5 transition_type 0x505-0x505.7 (1)
|
||||
0x500| 06 | . | [47]: 6 transition_type 0x506-0x506.7 (1)
|
||||
0x500| 05 | . | [48]: 5 transition_type 0x507-0x507.7 (1)
|
||||
0x500| 06 | . | [49]: 6 transition_type 0x508-0x508.7 (1)
|
||||
0x500| 05 | . | [50]: 5 transition_type 0x509-0x509.7 (1)
|
||||
0x500| 06 | . | [51]: 6 transition_type 0x50a-0x50a.7 (1)
|
||||
0x500| 05 | . | [52]: 5 transition_type 0x50b-0x50b.7 (1)
|
||||
0x500| 06 | . | [53]: 6 transition_type 0x50c-0x50c.7 (1)
|
||||
0x500| 05 | . | [54]: 5 transition_type 0x50d-0x50d.7 (1)
|
||||
0x500| 06 | . | [55]: 6 transition_type 0x50e-0x50e.7 (1)
|
||||
0x500| 05| .| [56]: 5 transition_type 0x50f-0x50f.7 (1)
|
||||
0x510|06 |. | [57]: 6 transition_type 0x510-0x510.7 (1)
|
||||
0x510| 05 | . | [58]: 5 transition_type 0x511-0x511.7 (1)
|
||||
0x510| 06 | . | [59]: 6 transition_type 0x512-0x512.7 (1)
|
||||
0x510| 05 | . | [60]: 5 transition_type 0x513-0x513.7 (1)
|
||||
0x510| 07 | . | [61]: 7 transition_type 0x514-0x514.7 (1)
|
||||
0x510| 08 | . | [62]: 8 transition_type 0x515-0x515.7 (1)
|
||||
0x510| 05 | . | [63]: 5 transition_type 0x516-0x516.7 (1)
|
||||
0x510| 05 | . | [64]: 5 transition_type 0x517-0x517.7 (1)
|
||||
| | | local_time_type_records[0:10]: 0x518-0x553.7 (60)
|
||||
| | | [0]{}: local_time_type 0x518-0x51d.7 (6)
|
||||
0x510| 00 00 a6 64 | ...d | utoff: 42596 (valid) 0x518-0x51b.7 (4)
|
||||
0x510| 00 | . | dst: 0 (valid) 0x51c-0x51c.7 (1)
|
||||
0x510| 00 | . | idx: 0 (valid) 0x51d-0x51d.7 (1)
|
||||
| | | [1]{}: local_time_type 0x51e-0x523.7 (6)
|
||||
0x510| 00 00| ..| utoff: 43200 (valid) 0x51e-0x521.7 (4)
|
||||
0x520|a8 c0 |.. |
|
||||
0x520| 00 | . | dst: 0 (valid) 0x522-0x522.7 (1)
|
||||
0x520| 04 | . | idx: 4 (valid) 0x523-0x523.7 (1)
|
||||
| | | [2]{}: local_time_type 0x524-0x529.7 (6)
|
||||
0x520| 00 00 c4 e0 | .... | utoff: 50400 (valid) 0x524-0x527.7 (4)
|
||||
0x520| 01 | . | dst: 1 (valid) 0x528-0x528.7 (1)
|
||||
0x520| 08 | . | idx: 8 (valid) 0x529-0x529.7 (1)
|
||||
| | | [3]{}: local_time_type 0x52a-0x52f.7 (6)
|
||||
0x520| 00 00 b6 d0 | .... | utoff: 46800 (valid) 0x52a-0x52d.7 (4)
|
||||
0x520| 00 | . | dst: 0 (valid) 0x52e-0x52e.7 (1)
|
||||
0x520| 0c| .| idx: 12 (valid) 0x52f-0x52f.7 (1)
|
||||
| | | [4]{}: local_time_type 0x530-0x535.7 (6)
|
||||
0x530|00 00 b6 d0 |.... | utoff: 46800 (valid) 0x530-0x533.7 (4)
|
||||
0x530| 01 | . | dst: 1 (valid) 0x534-0x534.7 (1)
|
||||
0x530| 0c | . | idx: 12 (valid) 0x535-0x535.7 (1)
|
||||
| | | [5]{}: local_time_type 0x536-0x53b.7 (6)
|
||||
0x530| 00 00 a8 c0 | .... | utoff: 43200 (valid) 0x536-0x539.7 (4)
|
||||
0x530| 00 | . | dst: 0 (valid) 0x53a-0x53a.7 (1)
|
||||
0x530| 04 | . | idx: 4 (valid) 0x53b-0x53b.7 (1)
|
||||
| | | [6]{}: local_time_type 0x53c-0x541.7 (6)
|
||||
0x530| 00 00 b6 d0| ....| utoff: 46800 (valid) 0x53c-0x53f.7 (4)
|
||||
0x540|01 |. | dst: 1 (valid) 0x540-0x540.7 (1)
|
||||
0x540| 0c | . | idx: 12 (valid) 0x541-0x541.7 (1)
|
||||
| | | [7]{}: local_time_type 0x542-0x547.7 (6)
|
||||
0x540| 00 00 a8 c0 | .... | utoff: 43200 (valid) 0x542-0x545.7 (4)
|
||||
0x540| 01 | . | dst: 1 (valid) 0x546-0x546.7 (1)
|
||||
0x540| 04 | . | idx: 4 (valid) 0x547-0x547.7 (1)
|
||||
| | | [8]{}: local_time_type 0x548-0x54d.7 (6)
|
||||
0x540| 00 00 9a b0 | .... | utoff: 39600 (valid) 0x548-0x54b.7 (4)
|
||||
0x540| 00 | . | dst: 0 (valid) 0x54c-0x54c.7 (1)
|
||||
0x540| 10 | . | idx: 16 (valid) 0x54d-0x54d.7 (1)
|
||||
| | | [9]{}: local_time_type 0x54e-0x553.7 (6)
|
||||
0x540| 00 00| ..| utoff: 43200 (valid) 0x54e-0x551.7 (4)
|
||||
0x550|a8 c0 |.. |
|
||||
0x550| 00 | . | dst: 0 (valid) 0x552-0x552.7 (1)
|
||||
0x550| 04 | . | idx: 4 (valid) 0x553-0x553.7 (1)
|
||||
| | | time_zone_designations[0:5]: 0x554-0x567.7 (20)
|
||||
0x550| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x554-0x557.7 (4)
|
||||
0x550| 2b 31 32 00 | +12. | [1]: "+12" time_zone_designation 0x558-0x55b.7 (4)
|
||||
0x550| 2b 31 34 00| +14.| [2]: "+14" time_zone_designation 0x55c-0x55f.7 (4)
|
||||
0x560|2b 31 33 00 |+13. | [3]: "+13" time_zone_designation 0x560-0x563.7 (4)
|
||||
0x560| 2b 31 31 00 | +11. | [4]: "+11" time_zone_designation 0x564-0x567.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x568-0x6ab.7 (324)
|
||||
| | | [0]{}: leap_second_record 0x568-0x573.7 (12)
|
||||
0x560| 00 00 00 00 04 b2 58 00| ......X.| occur: "1972-07-01T00:00:00Z" (78796800) 0x568-0x56f.7 (8)
|
||||
0x570|00 00 00 01 |.... | corr: 1 0x570-0x573.7 (4)
|
||||
| | | [1]{}: leap_second_record 0x574-0x57f.7 (12)
|
||||
0x570| 00 00 00 00 05 a4 ec 01 | ........ | occur: "1973-01-01T00:00:01Z" (94694401) 0x574-0x57b.7 (8)
|
||||
0x570| 00 00 00 02| ....| corr: 2 0x57c-0x57f.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x580-0x58b.7 (12)
|
||||
0x580|00 00 00 00 07 86 1f 82 |........ | occur: "1974-01-01T00:00:02Z" (126230402) 0x580-0x587.7 (8)
|
||||
0x580| 00 00 00 03 | .... | corr: 3 0x588-0x58b.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x58c-0x597.7 (12)
|
||||
0x580| 00 00 00 00| ....| occur: "1975-01-01T00:00:03Z" (157766403) 0x58c-0x593.7 (8)
|
||||
0x590|09 67 53 03 |.gS. |
|
||||
0x590| 00 00 00 04 | .... | corr: 4 0x594-0x597.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x598-0x5a3.7 (12)
|
||||
0x590| 00 00 00 00 0b 48 86 84| .....H..| occur: "1976-01-01T00:00:04Z" (189302404) 0x598-0x59f.7 (8)
|
||||
0x5a0|00 00 00 05 |.... | corr: 5 0x5a0-0x5a3.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x5a4-0x5af.7 (12)
|
||||
0x5a0| 00 00 00 00 0d 2b 0b 85 | .....+.. | occur: "1977-01-01T00:00:05Z" (220924805) 0x5a4-0x5ab.7 (8)
|
||||
0x5a0| 00 00 00 06| ....| corr: 6 0x5ac-0x5af.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x5b0-0x5bb.7 (12)
|
||||
0x5b0|00 00 00 00 0f 0c 3f 06 |......?. | occur: "1978-01-01T00:00:06Z" (252460806) 0x5b0-0x5b7.7 (8)
|
||||
0x5b0| 00 00 00 07 | .... | corr: 7 0x5b8-0x5bb.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x5bc-0x5c7.7 (12)
|
||||
0x5b0| 00 00 00 00| ....| occur: "1979-01-01T00:00:07Z" (283996807) 0x5bc-0x5c3.7 (8)
|
||||
0x5c0|10 ed 72 87 |..r. |
|
||||
0x5c0| 00 00 00 08 | .... | corr: 8 0x5c4-0x5c7.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x5c8-0x5d3.7 (12)
|
||||
0x5c0| 00 00 00 00 12 ce a6 08| ........| occur: "1980-01-01T00:00:08Z" (315532808) 0x5c8-0x5cf.7 (8)
|
||||
0x5d0|00 00 00 09 |.... | corr: 9 0x5d0-0x5d3.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x5d4-0x5df.7 (12)
|
||||
0x5d0| 00 00 00 00 15 9f ca 89 | ........ | occur: "1981-07-01T00:00:09Z" (362793609) 0x5d4-0x5db.7 (8)
|
||||
0x5d0| 00 00 00 0a| ....| corr: 10 0x5dc-0x5df.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x5e0-0x5eb.7 (12)
|
||||
0x5e0|00 00 00 00 17 80 fe 0a |........ | occur: "1982-07-01T00:00:10Z" (394329610) 0x5e0-0x5e7.7 (8)
|
||||
0x5e0| 00 00 00 0b | .... | corr: 11 0x5e8-0x5eb.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x5ec-0x5f7.7 (12)
|
||||
0x5e0| 00 00 00 00| ....| occur: "1983-07-01T00:00:11Z" (425865611) 0x5ec-0x5f3.7 (8)
|
||||
0x5f0|19 62 31 8b |.b1. |
|
||||
0x5f0| 00 00 00 0c | .... | corr: 12 0x5f4-0x5f7.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x5f8-0x603.7 (12)
|
||||
0x5f0| 00 00 00 00 1d 25 ea 0c| .....%..| occur: "1985-07-01T00:00:12Z" (489024012) 0x5f8-0x5ff.7 (8)
|
||||
0x600|00 00 00 0d |.... | corr: 13 0x600-0x603.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x604-0x60f.7 (12)
|
||||
0x600| 00 00 00 00 21 da e5 0d | ....!... | occur: "1988-01-01T00:00:13Z" (567993613) 0x604-0x60b.7 (8)
|
||||
0x600| 00 00 00 0e| ....| corr: 14 0x60c-0x60f.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x610-0x61b.7 (12)
|
||||
0x610|00 00 00 00 25 9e 9d 8e |....%... | occur: "1990-01-01T00:00:14Z" (631152014) 0x610-0x617.7 (8)
|
||||
0x610| 00 00 00 0f | .... | corr: 15 0x618-0x61b.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x61c-0x627.7 (12)
|
||||
0x610| 00 00 00 00| ....| occur: "1991-01-01T00:00:15Z" (662688015) 0x61c-0x623.7 (8)
|
||||
0x620|27 7f d1 0f |'... |
|
||||
0x620| 00 00 00 10 | .... | corr: 16 0x624-0x627.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x628-0x633.7 (12)
|
||||
0x620| 00 00 00 00 2a 50 f5 90| ....*P..| occur: "1992-07-01T00:00:16Z" (709948816) 0x628-0x62f.7 (8)
|
||||
0x630|00 00 00 11 |.... | corr: 17 0x630-0x633.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x634-0x63f.7 (12)
|
||||
0x630| 00 00 00 00 2c 32 29 11 | ....,2). | occur: "1993-07-01T00:00:17Z" (741484817) 0x634-0x63b.7 (8)
|
||||
0x630| 00 00 00 12| ....| corr: 18 0x63c-0x63f.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x640-0x64b.7 (12)
|
||||
0x640|00 00 00 00 2e 13 5c 92 |......\. | occur: "1994-07-01T00:00:18Z" (773020818) 0x640-0x647.7 (8)
|
||||
0x640| 00 00 00 13 | .... | corr: 19 0x648-0x64b.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x64c-0x657.7 (12)
|
||||
0x640| 00 00 00 00| ....| occur: "1996-01-01T00:00:19Z" (820454419) 0x64c-0x653.7 (8)
|
||||
0x650|30 e7 24 13 |0.$. |
|
||||
0x650| 00 00 00 14 | .... | corr: 20 0x654-0x657.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x658-0x663.7 (12)
|
||||
0x650| 00 00 00 00 33 b8 48 94| ....3.H.| occur: "1997-07-01T00:00:20Z" (867715220) 0x658-0x65f.7 (8)
|
||||
0x660|00 00 00 15 |.... | corr: 21 0x660-0x663.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x664-0x66f.7 (12)
|
||||
0x660| 00 00 00 00 36 8c 10 15 | ....6... | occur: "1999-01-01T00:00:21Z" (915148821) 0x664-0x66b.7 (8)
|
||||
0x660| 00 00 00 16| ....| corr: 22 0x66c-0x66f.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x670-0x67b.7 (12)
|
||||
0x670|00 00 00 00 43 b7 1b 96 |....C... | occur: "2006-01-01T00:00:22Z" (1136073622) 0x670-0x677.7 (8)
|
||||
0x670| 00 00 00 17 | .... | corr: 23 0x678-0x67b.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x67c-0x687.7 (12)
|
||||
0x670| 00 00 00 00| ....| occur: "2009-01-01T00:00:23Z" (1230768023) 0x67c-0x683.7 (8)
|
||||
0x680|49 5c 07 97 |I\.. |
|
||||
0x680| 00 00 00 18 | .... | corr: 24 0x684-0x687.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x688-0x693.7 (12)
|
||||
0x680| 00 00 00 00 4f ef 93 18| ....O...| occur: "2012-07-01T00:00:24Z" (1341100824) 0x688-0x68f.7 (8)
|
||||
0x690|00 00 00 19 |.... | corr: 25 0x690-0x693.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x694-0x69f.7 (12)
|
||||
0x690| 00 00 00 00 55 93 2d 99 | ....U.-. | occur: "2015-07-01T00:00:25Z" (1435708825) 0x694-0x69b.7 (8)
|
||||
0x690| 00 00 00 1a| ....| corr: 26 0x69c-0x69f.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x6a0-0x6ab.7 (12)
|
||||
0x6a0|00 00 00 00 58 68 46 9a |....XhF. | occur: "2017-01-01T00:00:26Z" (1483228826) 0x6a0-0x6a7.7 (8)
|
||||
0x6a0| 00 00 00 1b | .... | corr: 27 0x6a8-0x6ab.7 (4)
|
||||
| | | standard_wall_indicators[0:10]: 0x6ac-0x6b5.7 (10)
|
||||
0x6a0| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x6ac-0x6ac.7 (1)
|
||||
0x6a0| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x6ad-0x6ad.7 (1)
|
||||
0x6a0| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x6ae-0x6ae.7 (1)
|
||||
0x6a0| 00| .| [3]: 0 standard_wall_indicator (valid) 0x6af-0x6af.7 (1)
|
||||
0x6b0|00 |. | [4]: 0 standard_wall_indicator (valid) 0x6b0-0x6b0.7 (1)
|
||||
0x6b0| 01 | . | [5]: 1 standard_wall_indicator (valid) 0x6b1-0x6b1.7 (1)
|
||||
0x6b0| 01 | . | [6]: 1 standard_wall_indicator (valid) 0x6b2-0x6b2.7 (1)
|
||||
0x6b0| 01 | . | [7]: 1 standard_wall_indicator (valid) 0x6b3-0x6b3.7 (1)
|
||||
0x6b0| 01 | . | [8]: 1 standard_wall_indicator (valid) 0x6b4-0x6b4.7 (1)
|
||||
0x6b0| 01 | . | [9]: 1 standard_wall_indicator (valid) 0x6b5-0x6b5.7 (1)
|
||||
| | | ut_local_indicators[0:0]: 0x6b6-NA (0)
|
||||
| | | footer{}: 0x6b6-0x6b7.7 (2)
|
||||
0x6b0| 0a | . | nl1: 10 (valid) 0x6b6-0x6b6.7 (1)
|
||||
| | | tz_string: "" 0x6b7-NA (0)
|
||||
0x6b0| 0a| | .| | nl2: 10 (valid) 0x6b7-0x6b7.7 (1)
|
BIN
format/tzif/testdata/Anchorage
vendored
Normal file
BIN
format/tzif/testdata/Anchorage
vendored
Normal file
Binary file not shown.
902
format/tzif/testdata/Anchorage.fqtest
vendored
Normal file
902
format/tzif/testdata/Anchorage.fqtest
vendored
Normal file
@ -0,0 +1,902 @@
|
||||
$ fq -d tzif dv Anchorage
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: Anchorage (tzif) 0x0-0x9be.7 (2495)
|
||||
| | | v1header{}: 0x0-0x2b.7 (44)
|
||||
0x000|54 5a 69 66 |TZif | magic: 0x545a6966 (valid) 0x0-0x3.7 (4)
|
||||
0x000| 32 | 2 | ver: "2" (0x32) (valid) 0x4-0x4.7 (1)
|
||||
0x000| 00 00 00 00 00 00 00 00 00 00 00| ...........| reserved: raw bits 0x5-0x13.7 (15)
|
||||
0x010|00 00 00 00 |.... |
|
||||
0x010| 00 00 00 09 | .... | isutcnt: 9 0x14-0x17.7 (4)
|
||||
0x010| 00 00 00 09 | .... | isstdcnt: 9 0x18-0x1b.7 (4)
|
||||
0x010| 00 00 00 1b| ....| leapcnt: 27 0x1c-0x1f.7 (4)
|
||||
0x020|00 00 00 74 |...t | timecnt: 116 0x20-0x23.7 (4)
|
||||
0x020| 00 00 00 09 | .... | typecnt: 9 0x24-0x27.7 (4)
|
||||
0x020| 00 00 00 28 | ...( | charcnt: 40 0x28-0x2b.7 (4)
|
||||
| | | v1datablock{}: 0x2c-0x3b7.7 (908)
|
||||
| | | transition_times[0:116]: 0x2c-0x1fb.7 (464)
|
||||
0x020| 80 00 00 00| ....| [0]: "1901-12-13T20:45:52Z" (-2147483648) transition_time 0x2c-0x2f.7 (4)
|
||||
0x030|cb 89 36 c0 |..6. | [1]: "1942-02-09T12:00:00Z" (-880200000) transition_time 0x30-0x33.7 (4)
|
||||
0x030| d2 23 f4 70 | .#.p | [2]: "1945-08-14T23:00:00Z" (-769395600) transition_time 0x34-0x37.7 (4)
|
||||
0x030| d2 61 42 30 | .aB0 | [3]: "1945-09-30T11:00:00Z" (-765378000) transition_time 0x38-0x3b.7 (4)
|
||||
0x030| fa d2 47 a0| ..G.| [4]: "1967-04-01T10:00:00Z" (-86882400) transition_time 0x3c-0x3f.7 (4)
|
||||
0x040|fe b8 63 40 |..c@ | [5]: "1969-04-27T12:00:00Z" (-21470400) transition_time 0x40-0x43.7 (4)
|
||||
0x040| ff a8 46 30 | ..F0 | [6]: "1969-10-26T11:00:00Z" (-5749200) transition_time 0x44-0x47.7 (4)
|
||||
0x040| 00 98 45 40 | ..E@ | [7]: "1970-04-26T12:00:00Z" (9979200) transition_time 0x48-0x4b.7 (4)
|
||||
0x040| 01 88 28 30| ..(0| [8]: "1970-10-25T11:00:00Z" (25700400) transition_time 0x4c-0x4f.7 (4)
|
||||
0x050|02 78 27 40 |.x'@ | [9]: "1971-04-25T12:00:00Z" (41428800) transition_time 0x50-0x53.7 (4)
|
||||
0x050| 03 71 44 b0 | .qD. | [10]: "1971-10-31T11:00:00Z" (57754800) transition_time 0x54-0x57.7 (4)
|
||||
0x050| 04 61 43 c0 | .aC. | [11]: "1972-04-30T12:00:00Z" (73483200) transition_time 0x58-0x5b.7 (4)
|
||||
0x050| 05 51 26 b1| .Q&.| [12]: "1972-10-29T11:00:01Z" (89204401) transition_time 0x5c-0x5f.7 (4)
|
||||
0x060|06 41 25 c2 |.A%. | [13]: "1973-04-29T12:00:02Z" (104932802) transition_time 0x60-0x63.7 (4)
|
||||
0x060| 07 31 08 b2 | .1.. | [14]: "1973-10-28T11:00:02Z" (120654002) transition_time 0x64-0x67.7 (4)
|
||||
0x060| 07 8d 5f c3 | .._. | [15]: "1974-01-06T12:00:03Z" (126705603) transition_time 0x68-0x6b.7 (4)
|
||||
0x060| 09 10 ea b3| ....| [16]: "1974-10-27T11:00:03Z" (152103603) transition_time 0x6c-0x6f.7 (4)
|
||||
0x070|09 ad db 44 |...D | [17]: "1975-02-23T12:00:04Z" (162388804) transition_time 0x70-0x73.7 (4)
|
||||
0x070| 0a f0 cc b4 | .... | [18]: "1975-10-26T11:00:04Z" (183553204) transition_time 0x74-0x77.7 (4)
|
||||
0x070| 0b e0 cb c5 | .... | [19]: "1976-04-25T12:00:05Z" (199281605) transition_time 0x78-0x7b.7 (4)
|
||||
0x070| 0c d9 e9 35| ...5| [20]: "1976-10-31T11:00:05Z" (215607605) transition_time 0x7c-0x7f.7 (4)
|
||||
0x080|0d c0 ad c6 |.... | [21]: "1977-04-24T12:00:06Z" (230731206) transition_time 0x80-0x83.7 (4)
|
||||
0x080| 0e b9 cb 36 | ...6 | [22]: "1977-10-30T11:00:06Z" (247057206) transition_time 0x84-0x87.7 (4)
|
||||
0x080| 0f a9 ca 47 | ...G | [23]: "1978-04-30T12:00:07Z" (262785607) transition_time 0x88-0x8b.7 (4)
|
||||
0x080| 10 99 ad 37| ...7| [24]: "1978-10-29T11:00:07Z" (278506807) transition_time 0x8c-0x8f.7 (4)
|
||||
0x090|11 89 ac 48 |...H | [25]: "1979-04-29T12:00:08Z" (294235208) transition_time 0x90-0x93.7 (4)
|
||||
0x090| 12 79 8f 38 | .y.8 | [26]: "1979-10-28T11:00:08Z" (309956408) transition_time 0x94-0x97.7 (4)
|
||||
0x090| 13 69 8e 49 | .i.I | [27]: "1980-04-27T12:00:09Z" (325684809) transition_time 0x98-0x9b.7 (4)
|
||||
0x090| 14 59 71 39| .Yq9| [28]: "1980-10-26T11:00:09Z" (341406009) transition_time 0x9c-0x9f.7 (4)
|
||||
0x0a0|15 49 70 49 |.IpI | [29]: "1981-04-26T12:00:09Z" (357134409) transition_time 0xa0-0xa3.7 (4)
|
||||
0x0a0| 16 39 53 3a | .9S: | [30]: "1981-10-25T11:00:10Z" (372855610) transition_time 0xa4-0xa7.7 (4)
|
||||
0x0a0| 17 29 52 4a | .)RJ | [31]: "1982-04-25T12:00:10Z" (388584010) transition_time 0xa8-0xab.7 (4)
|
||||
0x0a0| 18 22 6f bb| ."o.| [32]: "1982-10-31T11:00:11Z" (404910011) transition_time 0xac-0xaf.7 (4)
|
||||
0x0b0|19 09 34 4b |..4K | [33]: "1983-04-24T12:00:11Z" (420033611) transition_time 0xb0-0xb3.7 (4)
|
||||
0x0b0| 1a 02 51 bc | ..Q. | [34]: "1983-10-30T11:00:12Z" (436359612) transition_time 0xb4-0xb7.7 (4)
|
||||
0x0b0| 1a 2b 14 1c | .+.. | [35]: "1983-11-30T09:00:12Z" (439030812) transition_time 0xb8-0xbb.7 (4)
|
||||
0x0b0| 1a f2 42 bc| ..B.| [36]: "1984-04-29T11:00:12Z" (452084412) transition_time 0xbc-0xbf.7 (4)
|
||||
0x0c0|1b e2 25 ac |..%. | [37]: "1984-10-28T10:00:12Z" (467805612) transition_time 0xc0-0xc3.7 (4)
|
||||
0x0c0| 1c d2 24 bc | ..$. | [38]: "1985-04-28T11:00:12Z" (483534012) transition_time 0xc4-0xc7.7 (4)
|
||||
0x0c0| 1d c2 07 ad | .... | [39]: "1985-10-27T10:00:13Z" (499255213) transition_time 0xc8-0xcb.7 (4)
|
||||
0x0c0| 1e b2 06 bd| ....| [40]: "1986-04-27T11:00:13Z" (514983613) transition_time 0xcc-0xcf.7 (4)
|
||||
0x0d0|1f a1 e9 ad |.... | [41]: "1986-10-26T10:00:13Z" (530704813) transition_time 0xd0-0xd3.7 (4)
|
||||
0x0d0| 20 76 39 3d | v9= | [42]: "1987-04-05T11:00:13Z" (544618813) transition_time 0xd4-0xd7.7 (4)
|
||||
0x0d0| 21 81 cb ad | !... | [43]: "1987-10-25T10:00:13Z" (562154413) transition_time 0xd8-0xdb.7 (4)
|
||||
0x0d0| 22 56 1b 3e| "V.>| [44]: "1988-04-03T11:00:14Z" (576068414) transition_time 0xdc-0xdf.7 (4)
|
||||
0x0e0|23 6a e8 2e |#j.. | [45]: "1988-10-30T10:00:14Z" (594208814) transition_time 0xe0-0xe3.7 (4)
|
||||
0x0e0| 24 35 fd 3e | $5.> | [46]: "1989-04-02T11:00:14Z" (607518014) transition_time 0xe4-0xe7.7 (4)
|
||||
0x0e0| 25 4a ca 2e | %J.. | [47]: "1989-10-29T10:00:14Z" (625658414) transition_time 0xe8-0xeb.7 (4)
|
||||
0x0e0| 26 15 df 3f| &..?| [48]: "1990-04-01T11:00:15Z" (638967615) transition_time 0xec-0xef.7 (4)
|
||||
0x0f0|27 2a ac 2f |'*./ | [49]: "1990-10-28T10:00:15Z" (657108015) transition_time 0xf0-0xf3.7 (4)
|
||||
0x0f0| 27 fe fb c0 | '... | [50]: "1991-04-07T11:00:16Z" (671022016) transition_time 0xf4-0xf7.7 (4)
|
||||
0x0f0| 29 0a 8e 30 | )..0 | [51]: "1991-10-27T10:00:16Z" (688557616) transition_time 0xf8-0xfb.7 (4)
|
||||
0x0f0| 29 de dd c0| )...| [52]: "1992-04-05T11:00:16Z" (702471616) transition_time 0xfc-0xff.7 (4)
|
||||
0x100|2a ea 70 31 |*.p1 | [53]: "1992-10-25T10:00:17Z" (720007217) transition_time 0x100-0x103.7 (4)
|
||||
0x100| 2b be bf c1 | +... | [54]: "1993-04-04T11:00:17Z" (733921217) transition_time 0x104-0x107.7 (4)
|
||||
0x100| 2c d3 8c b2 | ,... | [55]: "1993-10-31T10:00:18Z" (752061618) transition_time 0x108-0x10b.7 (4)
|
||||
0x100| 2d 9e a1 c2| -...| [56]: "1994-04-03T11:00:18Z" (765370818) transition_time 0x10c-0x10f.7 (4)
|
||||
0x110|2e b3 6e b3 |..n. | [57]: "1994-10-30T10:00:19Z" (783511219) transition_time 0x110-0x113.7 (4)
|
||||
0x110| 2f 7e 83 c3 | /~.. | [58]: "1995-04-02T11:00:19Z" (796820419) transition_time 0x114-0x117.7 (4)
|
||||
0x110| 30 93 50 b3 | 0.P. | [59]: "1995-10-29T10:00:19Z" (814960819) transition_time 0x118-0x11b.7 (4)
|
||||
0x110| 31 67 a0 44| 1g.D| [60]: "1996-04-07T11:00:20Z" (828874820) transition_time 0x11c-0x11f.7 (4)
|
||||
0x120|32 73 32 b4 |2s2. | [61]: "1996-10-27T10:00:20Z" (846410420) transition_time 0x120-0x123.7 (4)
|
||||
0x120| 33 47 82 44 | 3G.D | [62]: "1997-04-06T11:00:20Z" (860324420) transition_time 0x124-0x127.7 (4)
|
||||
0x120| 34 53 14 b5 | 4S.. | [63]: "1997-10-26T10:00:21Z" (877860021) transition_time 0x128-0x12b.7 (4)
|
||||
0x120| 35 27 64 45| 5'dE| [64]: "1998-04-05T11:00:21Z" (891774021) transition_time 0x12c-0x12f.7 (4)
|
||||
0x130|36 32 f6 b5 |62.. | [65]: "1998-10-25T10:00:21Z" (909309621) transition_time 0x130-0x133.7 (4)
|
||||
0x130| 37 07 46 46 | 7.FF | [66]: "1999-04-04T11:00:22Z" (923223622) transition_time 0x134-0x137.7 (4)
|
||||
0x130| 38 1c 13 36 | 8..6 | [67]: "1999-10-31T10:00:22Z" (941364022) transition_time 0x138-0x13b.7 (4)
|
||||
0x130| 38 e7 28 46| 8.(F| [68]: "2000-04-02T11:00:22Z" (954673222) transition_time 0x13c-0x13f.7 (4)
|
||||
0x140|39 fb f5 36 |9..6 | [69]: "2000-10-29T10:00:22Z" (972813622) transition_time 0x140-0x143.7 (4)
|
||||
0x140| 3a c7 0a 46 | :..F | [70]: "2001-04-01T11:00:22Z" (986122822) transition_time 0x144-0x147.7 (4)
|
||||
0x140| 3b db d7 36 | ;..6 | [71]: "2001-10-28T10:00:22Z" (1004263222) transition_time 0x148-0x14b.7 (4)
|
||||
0x140| 3c b0 26 c6| <.&.| [72]: "2002-04-07T11:00:22Z" (1018177222) transition_time 0x14c-0x14f.7 (4)
|
||||
0x150|3d bb b9 36 |=..6 | [73]: "2002-10-27T10:00:22Z" (1035712822) transition_time 0x150-0x153.7 (4)
|
||||
0x150| 3e 90 08 c6 | >... | [74]: "2003-04-06T11:00:22Z" (1049626822) transition_time 0x154-0x157.7 (4)
|
||||
0x150| 3f 9b 9b 36 | ?..6 | [75]: "2003-10-26T10:00:22Z" (1067162422) transition_time 0x158-0x15b.7 (4)
|
||||
0x150| 40 6f ea c6| @o..| [76]: "2004-04-04T11:00:22Z" (1081076422) transition_time 0x15c-0x15f.7 (4)
|
||||
0x160|41 84 b7 b6 |A... | [77]: "2004-10-31T10:00:22Z" (1099216822) transition_time 0x160-0x163.7 (4)
|
||||
0x160| 42 4f cc c6 | BO.. | [78]: "2005-04-03T11:00:22Z" (1112526022) transition_time 0x164-0x167.7 (4)
|
||||
0x160| 43 64 99 b6 | Cd.. | [79]: "2005-10-30T10:00:22Z" (1130666422) transition_time 0x168-0x16b.7 (4)
|
||||
0x160| 44 2f ae c7| D/..| [80]: "2006-04-02T11:00:23Z" (1143975623) transition_time 0x16c-0x16f.7 (4)
|
||||
0x170|45 44 7b b7 |ED{. | [81]: "2006-10-29T10:00:23Z" (1162116023) transition_time 0x170-0x173.7 (4)
|
||||
0x170| 45 f3 e1 47 | E..G | [82]: "2007-03-11T11:00:23Z" (1173610823) transition_time 0x174-0x177.7 (4)
|
||||
0x170| 47 2d 98 37 | G-.7 | [83]: "2007-11-04T10:00:23Z" (1194170423) transition_time 0x178-0x17b.7 (4)
|
||||
0x170| 47 d3 c3 47| G..G| [84]: "2008-03-09T11:00:23Z" (1205060423) transition_time 0x17c-0x17f.7 (4)
|
||||
0x180|49 0d 7a 37 |I.z7 | [85]: "2008-11-02T10:00:23Z" (1225620023) transition_time 0x180-0x183.7 (4)
|
||||
0x180| 49 b3 a5 48 | I..H | [86]: "2009-03-08T11:00:24Z" (1236510024) transition_time 0x184-0x187.7 (4)
|
||||
0x180| 4a ed 5c 38 | J.\8 | [87]: "2009-11-01T10:00:24Z" (1257069624) transition_time 0x188-0x18b.7 (4)
|
||||
0x180| 4b 9c c1 c8| K...| [88]: "2010-03-14T11:00:24Z" (1268564424) transition_time 0x18c-0x18f.7 (4)
|
||||
0x190|4c d6 78 b8 |L.x. | [89]: "2010-11-07T10:00:24Z" (1289124024) transition_time 0x190-0x193.7 (4)
|
||||
0x190| 4d 7c a3 c8 | M|.. | [90]: "2011-03-13T11:00:24Z" (1300014024) transition_time 0x194-0x197.7 (4)
|
||||
0x190| 4e b6 5a b8 | N.Z. | [91]: "2011-11-06T10:00:24Z" (1320573624) transition_time 0x198-0x19b.7 (4)
|
||||
0x190| 4f 5c 85 c8| O\..| [92]: "2012-03-11T11:00:24Z" (1331463624) transition_time 0x19c-0x19f.7 (4)
|
||||
0x1a0|50 96 3c b9 |P.<. | [93]: "2012-11-04T10:00:25Z" (1352023225) transition_time 0x1a0-0x1a3.7 (4)
|
||||
0x1a0| 51 3c 67 c9 | Q<g. | [94]: "2013-03-10T11:00:25Z" (1362913225) transition_time 0x1a4-0x1a7.7 (4)
|
||||
0x1a0| 52 76 1e b9 | Rv.. | [95]: "2013-11-03T10:00:25Z" (1383472825) transition_time 0x1a8-0x1ab.7 (4)
|
||||
0x1a0| 53 1c 49 c9| S.I.| [96]: "2014-03-09T11:00:25Z" (1394362825) transition_time 0x1ac-0x1af.7 (4)
|
||||
0x1b0|54 56 00 b9 |TV.. | [97]: "2014-11-02T10:00:25Z" (1414922425) transition_time 0x1b0-0x1b3.7 (4)
|
||||
0x1b0| 54 fc 2b c9 | T.+. | [98]: "2015-03-08T11:00:25Z" (1425812425) transition_time 0x1b4-0x1b7.7 (4)
|
||||
0x1b0| 56 35 e2 ba | V5.. | [99]: "2015-11-01T10:00:26Z" (1446372026) transition_time 0x1b8-0x1bb.7 (4)
|
||||
0x1b0| 56 e5 48 4a| V.HJ| [100]: "2016-03-13T11:00:26Z" (1457866826) transition_time 0x1bc-0x1bf.7 (4)
|
||||
0x1c0|58 1e ff 3a |X..: | [101]: "2016-11-06T10:00:26Z" (1478426426) transition_time 0x1c0-0x1c3.7 (4)
|
||||
0x1c0| 58 c5 2a 4b | X.*K | [102]: "2017-03-12T11:00:27Z" (1489316427) transition_time 0x1c4-0x1c7.7 (4)
|
||||
0x1c0| 59 fe e1 3b | Y..; | [103]: "2017-11-05T10:00:27Z" (1509876027) transition_time 0x1c8-0x1cb.7 (4)
|
||||
0x1c0| 5a a5 0c 4b| Z..K| [104]: "2018-03-11T11:00:27Z" (1520766027) transition_time 0x1cc-0x1cf.7 (4)
|
||||
0x1d0|5b de c3 3b |[..; | [105]: "2018-11-04T10:00:27Z" (1541325627) transition_time 0x1d0-0x1d3.7 (4)
|
||||
0x1d0| 5c 84 ee 4b | \..K | [106]: "2019-03-10T11:00:27Z" (1552215627) transition_time 0x1d4-0x1d7.7 (4)
|
||||
0x1d0| 5d be a5 3b | ]..; | [107]: "2019-11-03T10:00:27Z" (1572775227) transition_time 0x1d8-0x1db.7 (4)
|
||||
0x1d0| 5e 64 d0 4b| ^d.K| [108]: "2020-03-08T11:00:27Z" (1583665227) transition_time 0x1dc-0x1df.7 (4)
|
||||
0x1e0|5f 9e 87 3b |_..; | [109]: "2020-11-01T10:00:27Z" (1604224827) transition_time 0x1e0-0x1e3.7 (4)
|
||||
0x1e0| 60 4d ec cb | `M.. | [110]: "2021-03-14T11:00:27Z" (1615719627) transition_time 0x1e4-0x1e7.7 (4)
|
||||
0x1e0| 61 87 a3 bb | a... | [111]: "2021-11-07T10:00:27Z" (1636279227) transition_time 0x1e8-0x1eb.7 (4)
|
||||
0x1e0| 62 2d ce cb| b-..| [112]: "2022-03-13T11:00:27Z" (1647169227) transition_time 0x1ec-0x1ef.7 (4)
|
||||
0x1f0|63 67 85 bb |cg.. | [113]: "2022-11-06T10:00:27Z" (1667728827) transition_time 0x1f0-0x1f3.7 (4)
|
||||
0x1f0| 64 0d b0 cb | d... | [114]: "2023-03-12T11:00:27Z" (1678618827) transition_time 0x1f4-0x1f7.7 (4)
|
||||
0x1f0| 64 9b 78 1b | d.x. | [115]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x1f8-0x1fb.7 (4)
|
||||
| | | transition_types[0:116]: 0x1fc-0x26f.7 (116)
|
||||
0x1f0| 01 | . | [0]: 1 transition_type 0x1fc-0x1fc.7 (1)
|
||||
0x1f0| 02 | . | [1]: 2 transition_type 0x1fd-0x1fd.7 (1)
|
||||
0x1f0| 03 | . | [2]: 3 transition_type 0x1fe-0x1fe.7 (1)
|
||||
0x1f0| 01| .| [3]: 1 transition_type 0x1ff-0x1ff.7 (1)
|
||||
0x200|04 |. | [4]: 4 transition_type 0x200-0x200.7 (1)
|
||||
0x200| 05 | . | [5]: 5 transition_type 0x201-0x201.7 (1)
|
||||
0x200| 04 | . | [6]: 4 transition_type 0x202-0x202.7 (1)
|
||||
0x200| 05 | . | [7]: 5 transition_type 0x203-0x203.7 (1)
|
||||
0x200| 04 | . | [8]: 4 transition_type 0x204-0x204.7 (1)
|
||||
0x200| 05 | . | [9]: 5 transition_type 0x205-0x205.7 (1)
|
||||
0x200| 04 | . | [10]: 4 transition_type 0x206-0x206.7 (1)
|
||||
0x200| 05 | . | [11]: 5 transition_type 0x207-0x207.7 (1)
|
||||
0x200| 04 | . | [12]: 4 transition_type 0x208-0x208.7 (1)
|
||||
0x200| 05 | . | [13]: 5 transition_type 0x209-0x209.7 (1)
|
||||
0x200| 04 | . | [14]: 4 transition_type 0x20a-0x20a.7 (1)
|
||||
0x200| 05 | . | [15]: 5 transition_type 0x20b-0x20b.7 (1)
|
||||
0x200| 04 | . | [16]: 4 transition_type 0x20c-0x20c.7 (1)
|
||||
0x200| 05 | . | [17]: 5 transition_type 0x20d-0x20d.7 (1)
|
||||
0x200| 04 | . | [18]: 4 transition_type 0x20e-0x20e.7 (1)
|
||||
0x200| 05| .| [19]: 5 transition_type 0x20f-0x20f.7 (1)
|
||||
0x210|04 |. | [20]: 4 transition_type 0x210-0x210.7 (1)
|
||||
0x210| 05 | . | [21]: 5 transition_type 0x211-0x211.7 (1)
|
||||
0x210| 04 | . | [22]: 4 transition_type 0x212-0x212.7 (1)
|
||||
0x210| 05 | . | [23]: 5 transition_type 0x213-0x213.7 (1)
|
||||
0x210| 04 | . | [24]: 4 transition_type 0x214-0x214.7 (1)
|
||||
0x210| 05 | . | [25]: 5 transition_type 0x215-0x215.7 (1)
|
||||
0x210| 04 | . | [26]: 4 transition_type 0x216-0x216.7 (1)
|
||||
0x210| 05 | . | [27]: 5 transition_type 0x217-0x217.7 (1)
|
||||
0x210| 04 | . | [28]: 4 transition_type 0x218-0x218.7 (1)
|
||||
0x210| 05 | . | [29]: 5 transition_type 0x219-0x219.7 (1)
|
||||
0x210| 04 | . | [30]: 4 transition_type 0x21a-0x21a.7 (1)
|
||||
0x210| 05 | . | [31]: 5 transition_type 0x21b-0x21b.7 (1)
|
||||
0x210| 04 | . | [32]: 4 transition_type 0x21c-0x21c.7 (1)
|
||||
0x210| 05 | . | [33]: 5 transition_type 0x21d-0x21d.7 (1)
|
||||
0x210| 06 | . | [34]: 6 transition_type 0x21e-0x21e.7 (1)
|
||||
0x210| 08| .| [35]: 8 transition_type 0x21f-0x21f.7 (1)
|
||||
0x220|07 |. | [36]: 7 transition_type 0x220-0x220.7 (1)
|
||||
0x220| 08 | . | [37]: 8 transition_type 0x221-0x221.7 (1)
|
||||
0x220| 07 | . | [38]: 7 transition_type 0x222-0x222.7 (1)
|
||||
0x220| 08 | . | [39]: 8 transition_type 0x223-0x223.7 (1)
|
||||
0x220| 07 | . | [40]: 7 transition_type 0x224-0x224.7 (1)
|
||||
0x220| 08 | . | [41]: 8 transition_type 0x225-0x225.7 (1)
|
||||
0x220| 07 | . | [42]: 7 transition_type 0x226-0x226.7 (1)
|
||||
0x220| 08 | . | [43]: 8 transition_type 0x227-0x227.7 (1)
|
||||
0x220| 07 | . | [44]: 7 transition_type 0x228-0x228.7 (1)
|
||||
0x220| 08 | . | [45]: 8 transition_type 0x229-0x229.7 (1)
|
||||
0x220| 07 | . | [46]: 7 transition_type 0x22a-0x22a.7 (1)
|
||||
0x220| 08 | . | [47]: 8 transition_type 0x22b-0x22b.7 (1)
|
||||
0x220| 07 | . | [48]: 7 transition_type 0x22c-0x22c.7 (1)
|
||||
0x220| 08 | . | [49]: 8 transition_type 0x22d-0x22d.7 (1)
|
||||
0x220| 07 | . | [50]: 7 transition_type 0x22e-0x22e.7 (1)
|
||||
0x220| 08| .| [51]: 8 transition_type 0x22f-0x22f.7 (1)
|
||||
0x230|07 |. | [52]: 7 transition_type 0x230-0x230.7 (1)
|
||||
0x230| 08 | . | [53]: 8 transition_type 0x231-0x231.7 (1)
|
||||
0x230| 07 | . | [54]: 7 transition_type 0x232-0x232.7 (1)
|
||||
0x230| 08 | . | [55]: 8 transition_type 0x233-0x233.7 (1)
|
||||
0x230| 07 | . | [56]: 7 transition_type 0x234-0x234.7 (1)
|
||||
0x230| 08 | . | [57]: 8 transition_type 0x235-0x235.7 (1)
|
||||
0x230| 07 | . | [58]: 7 transition_type 0x236-0x236.7 (1)
|
||||
0x230| 08 | . | [59]: 8 transition_type 0x237-0x237.7 (1)
|
||||
0x230| 07 | . | [60]: 7 transition_type 0x238-0x238.7 (1)
|
||||
0x230| 08 | . | [61]: 8 transition_type 0x239-0x239.7 (1)
|
||||
0x230| 07 | . | [62]: 7 transition_type 0x23a-0x23a.7 (1)
|
||||
0x230| 08 | . | [63]: 8 transition_type 0x23b-0x23b.7 (1)
|
||||
0x230| 07 | . | [64]: 7 transition_type 0x23c-0x23c.7 (1)
|
||||
0x230| 08 | . | [65]: 8 transition_type 0x23d-0x23d.7 (1)
|
||||
0x230| 07 | . | [66]: 7 transition_type 0x23e-0x23e.7 (1)
|
||||
0x230| 08| .| [67]: 8 transition_type 0x23f-0x23f.7 (1)
|
||||
0x240|07 |. | [68]: 7 transition_type 0x240-0x240.7 (1)
|
||||
0x240| 08 | . | [69]: 8 transition_type 0x241-0x241.7 (1)
|
||||
0x240| 07 | . | [70]: 7 transition_type 0x242-0x242.7 (1)
|
||||
0x240| 08 | . | [71]: 8 transition_type 0x243-0x243.7 (1)
|
||||
0x240| 07 | . | [72]: 7 transition_type 0x244-0x244.7 (1)
|
||||
0x240| 08 | . | [73]: 8 transition_type 0x245-0x245.7 (1)
|
||||
0x240| 07 | . | [74]: 7 transition_type 0x246-0x246.7 (1)
|
||||
0x240| 08 | . | [75]: 8 transition_type 0x247-0x247.7 (1)
|
||||
0x240| 07 | . | [76]: 7 transition_type 0x248-0x248.7 (1)
|
||||
0x240| 08 | . | [77]: 8 transition_type 0x249-0x249.7 (1)
|
||||
0x240| 07 | . | [78]: 7 transition_type 0x24a-0x24a.7 (1)
|
||||
0x240| 08 | . | [79]: 8 transition_type 0x24b-0x24b.7 (1)
|
||||
0x240| 07 | . | [80]: 7 transition_type 0x24c-0x24c.7 (1)
|
||||
0x240| 08 | . | [81]: 8 transition_type 0x24d-0x24d.7 (1)
|
||||
0x240| 07 | . | [82]: 7 transition_type 0x24e-0x24e.7 (1)
|
||||
0x240| 08| .| [83]: 8 transition_type 0x24f-0x24f.7 (1)
|
||||
0x250|07 |. | [84]: 7 transition_type 0x250-0x250.7 (1)
|
||||
0x250| 08 | . | [85]: 8 transition_type 0x251-0x251.7 (1)
|
||||
0x250| 07 | . | [86]: 7 transition_type 0x252-0x252.7 (1)
|
||||
0x250| 08 | . | [87]: 8 transition_type 0x253-0x253.7 (1)
|
||||
0x250| 07 | . | [88]: 7 transition_type 0x254-0x254.7 (1)
|
||||
0x250| 08 | . | [89]: 8 transition_type 0x255-0x255.7 (1)
|
||||
0x250| 07 | . | [90]: 7 transition_type 0x256-0x256.7 (1)
|
||||
0x250| 08 | . | [91]: 8 transition_type 0x257-0x257.7 (1)
|
||||
0x250| 07 | . | [92]: 7 transition_type 0x258-0x258.7 (1)
|
||||
0x250| 08 | . | [93]: 8 transition_type 0x259-0x259.7 (1)
|
||||
0x250| 07 | . | [94]: 7 transition_type 0x25a-0x25a.7 (1)
|
||||
0x250| 08 | . | [95]: 8 transition_type 0x25b-0x25b.7 (1)
|
||||
0x250| 07 | . | [96]: 7 transition_type 0x25c-0x25c.7 (1)
|
||||
0x250| 08 | . | [97]: 8 transition_type 0x25d-0x25d.7 (1)
|
||||
0x250| 07 | . | [98]: 7 transition_type 0x25e-0x25e.7 (1)
|
||||
0x250| 08| .| [99]: 8 transition_type 0x25f-0x25f.7 (1)
|
||||
0x260|07 |. | [100]: 7 transition_type 0x260-0x260.7 (1)
|
||||
0x260| 08 | . | [101]: 8 transition_type 0x261-0x261.7 (1)
|
||||
0x260| 07 | . | [102]: 7 transition_type 0x262-0x262.7 (1)
|
||||
0x260| 08 | . | [103]: 8 transition_type 0x263-0x263.7 (1)
|
||||
0x260| 07 | . | [104]: 7 transition_type 0x264-0x264.7 (1)
|
||||
0x260| 08 | . | [105]: 8 transition_type 0x265-0x265.7 (1)
|
||||
0x260| 07 | . | [106]: 7 transition_type 0x266-0x266.7 (1)
|
||||
0x260| 08 | . | [107]: 8 transition_type 0x267-0x267.7 (1)
|
||||
0x260| 07 | . | [108]: 7 transition_type 0x268-0x268.7 (1)
|
||||
0x260| 08 | . | [109]: 8 transition_type 0x269-0x269.7 (1)
|
||||
0x260| 07 | . | [110]: 7 transition_type 0x26a-0x26a.7 (1)
|
||||
0x260| 08 | . | [111]: 8 transition_type 0x26b-0x26b.7 (1)
|
||||
0x260| 07 | . | [112]: 7 transition_type 0x26c-0x26c.7 (1)
|
||||
0x260| 08 | . | [113]: 8 transition_type 0x26d-0x26d.7 (1)
|
||||
0x260| 07 | . | [114]: 7 transition_type 0x26e-0x26e.7 (1)
|
||||
0x260| 07| .| [115]: 7 transition_type 0x26f-0x26f.7 (1)
|
||||
| | | local_time_type_records[0:9]: 0x270-0x2a5.7 (54)
|
||||
| | | [0]{}: local_time_type 0x270-0x275.7 (6)
|
||||
0x270|00 00 c4 f8 |.... | utoff: 50424 (valid) 0x270-0x273.7 (4)
|
||||
0x270| 00 | . | dst: 0 (valid) 0x274-0x274.7 (1)
|
||||
0x270| 00 | . | idx: 0 (valid) 0x275-0x275.7 (1)
|
||||
| | | [1]{}: local_time_type 0x276-0x27b.7 (6)
|
||||
0x270| ff ff 73 60 | ..s` | utoff: -36000 (valid) 0x276-0x279.7 (4)
|
||||
0x270| 00 | . | dst: 0 (valid) 0x27a-0x27a.7 (1)
|
||||
0x270| 04 | . | idx: 4 (valid) 0x27b-0x27b.7 (1)
|
||||
| | | [2]{}: local_time_type 0x27c-0x281.7 (6)
|
||||
0x270| ff ff 81 70| ...p| utoff: -32400 (valid) 0x27c-0x27f.7 (4)
|
||||
0x280|01 |. | dst: 1 (valid) 0x280-0x280.7 (1)
|
||||
0x280| 08 | . | idx: 8 (valid) 0x281-0x281.7 (1)
|
||||
| | | [3]{}: local_time_type 0x282-0x287.7 (6)
|
||||
0x280| ff ff 81 70 | ...p | utoff: -32400 (valid) 0x282-0x285.7 (4)
|
||||
0x280| 01 | . | dst: 1 (valid) 0x286-0x286.7 (1)
|
||||
0x280| 0c | . | idx: 12 (valid) 0x287-0x287.7 (1)
|
||||
| | | [4]{}: local_time_type 0x288-0x28d.7 (6)
|
||||
0x280| ff ff 73 60 | ..s` | utoff: -36000 (valid) 0x288-0x28b.7 (4)
|
||||
0x280| 00 | . | dst: 0 (valid) 0x28c-0x28c.7 (1)
|
||||
0x280| 10 | . | idx: 16 (valid) 0x28d-0x28d.7 (1)
|
||||
| | | [5]{}: local_time_type 0x28e-0x293.7 (6)
|
||||
0x280| ff ff| ..| utoff: -32400 (valid) 0x28e-0x291.7 (4)
|
||||
0x290|81 70 |.p |
|
||||
0x290| 01 | . | dst: 1 (valid) 0x292-0x292.7 (1)
|
||||
0x290| 15 | . | idx: 21 (valid) 0x293-0x293.7 (1)
|
||||
| | | [6]{}: local_time_type 0x294-0x299.7 (6)
|
||||
0x290| ff ff 81 70 | ...p | utoff: -32400 (valid) 0x294-0x297.7 (4)
|
||||
0x290| 00 | . | dst: 0 (valid) 0x298-0x298.7 (1)
|
||||
0x290| 1a | . | idx: 26 (valid) 0x299-0x299.7 (1)
|
||||
| | | [7]{}: local_time_type 0x29a-0x29f.7 (6)
|
||||
0x290| ff ff 8f 80 | .... | utoff: -28800 (valid) 0x29a-0x29d.7 (4)
|
||||
0x290| 01 | . | dst: 1 (valid) 0x29e-0x29e.7 (1)
|
||||
0x290| 1e| .| idx: 30 (valid) 0x29f-0x29f.7 (1)
|
||||
| | | [8]{}: local_time_type 0x2a0-0x2a5.7 (6)
|
||||
0x2a0|ff ff 81 70 |...p | utoff: -32400 (valid) 0x2a0-0x2a3.7 (4)
|
||||
0x2a0| 00 | . | dst: 0 (valid) 0x2a4-0x2a4.7 (1)
|
||||
0x2a0| 23 | # | idx: 35 (valid) 0x2a5-0x2a5.7 (1)
|
||||
| | | time_zone_designations[0:9]: 0x2a6-0x2cd.7 (40)
|
||||
0x2a0| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x2a6-0x2a9.7 (4)
|
||||
0x2a0| 41 53 54 00 | AST. | [1]: "AST" time_zone_designation 0x2aa-0x2ad.7 (4)
|
||||
0x2a0| 41 57| AW| [2]: "AWT" time_zone_designation 0x2ae-0x2b1.7 (4)
|
||||
0x2b0|54 00 |T. |
|
||||
0x2b0| 41 50 54 00 | APT. | [3]: "APT" time_zone_designation 0x2b2-0x2b5.7 (4)
|
||||
0x2b0| 41 48 53 54 00 | AHST. | [4]: "AHST" time_zone_designation 0x2b6-0x2ba.7 (5)
|
||||
0x2b0| 41 48 44 54 00| AHDT.| [5]: "AHDT" time_zone_designation 0x2bb-0x2bf.7 (5)
|
||||
0x2c0|59 53 54 00 |YST. | [6]: "YST" time_zone_designation 0x2c0-0x2c3.7 (4)
|
||||
0x2c0| 41 4b 44 54 00 | AKDT. | [7]: "AKDT" time_zone_designation 0x2c4-0x2c8.7 (5)
|
||||
0x2c0| 41 4b 53 54 00 | AKST. | [8]: "AKST" time_zone_designation 0x2c9-0x2cd.7 (5)
|
||||
| | | leap_second_records[0:27]: 0x2ce-0x3a5.7 (216)
|
||||
| | | [0]{}: leap_second_record 0x2ce-0x2d5.7 (8)
|
||||
0x2c0| 04 b2| ..| occur: "1972-07-01T00:00:00Z" (78796800) 0x2ce-0x2d1.7 (4)
|
||||
0x2d0|58 00 |X. |
|
||||
0x2d0| 00 00 00 01 | .... | corr: 1 0x2d2-0x2d5.7 (4)
|
||||
| | | [1]{}: leap_second_record 0x2d6-0x2dd.7 (8)
|
||||
0x2d0| 05 a4 ec 01 | .... | occur: "1973-01-01T00:00:01Z" (94694401) 0x2d6-0x2d9.7 (4)
|
||||
0x2d0| 00 00 00 02 | .... | corr: 2 0x2da-0x2dd.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x2de-0x2e5.7 (8)
|
||||
0x2d0| 07 86| ..| occur: "1974-01-01T00:00:02Z" (126230402) 0x2de-0x2e1.7 (4)
|
||||
0x2e0|1f 82 |.. |
|
||||
0x2e0| 00 00 00 03 | .... | corr: 3 0x2e2-0x2e5.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x2e6-0x2ed.7 (8)
|
||||
0x2e0| 09 67 53 03 | .gS. | occur: "1975-01-01T00:00:03Z" (157766403) 0x2e6-0x2e9.7 (4)
|
||||
0x2e0| 00 00 00 04 | .... | corr: 4 0x2ea-0x2ed.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x2ee-0x2f5.7 (8)
|
||||
0x2e0| 0b 48| .H| occur: "1976-01-01T00:00:04Z" (189302404) 0x2ee-0x2f1.7 (4)
|
||||
0x2f0|86 84 |.. |
|
||||
0x2f0| 00 00 00 05 | .... | corr: 5 0x2f2-0x2f5.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x2f6-0x2fd.7 (8)
|
||||
0x2f0| 0d 2b 0b 85 | .+.. | occur: "1977-01-01T00:00:05Z" (220924805) 0x2f6-0x2f9.7 (4)
|
||||
0x2f0| 00 00 00 06 | .... | corr: 6 0x2fa-0x2fd.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x2fe-0x305.7 (8)
|
||||
0x2f0| 0f 0c| ..| occur: "1978-01-01T00:00:06Z" (252460806) 0x2fe-0x301.7 (4)
|
||||
0x300|3f 06 |?. |
|
||||
0x300| 00 00 00 07 | .... | corr: 7 0x302-0x305.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x306-0x30d.7 (8)
|
||||
0x300| 10 ed 72 87 | ..r. | occur: "1979-01-01T00:00:07Z" (283996807) 0x306-0x309.7 (4)
|
||||
0x300| 00 00 00 08 | .... | corr: 8 0x30a-0x30d.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x30e-0x315.7 (8)
|
||||
0x300| 12 ce| ..| occur: "1980-01-01T00:00:08Z" (315532808) 0x30e-0x311.7 (4)
|
||||
0x310|a6 08 |.. |
|
||||
0x310| 00 00 00 09 | .... | corr: 9 0x312-0x315.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x316-0x31d.7 (8)
|
||||
0x310| 15 9f ca 89 | .... | occur: "1981-07-01T00:00:09Z" (362793609) 0x316-0x319.7 (4)
|
||||
0x310| 00 00 00 0a | .... | corr: 10 0x31a-0x31d.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x31e-0x325.7 (8)
|
||||
0x310| 17 80| ..| occur: "1982-07-01T00:00:10Z" (394329610) 0x31e-0x321.7 (4)
|
||||
0x320|fe 0a |.. |
|
||||
0x320| 00 00 00 0b | .... | corr: 11 0x322-0x325.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x326-0x32d.7 (8)
|
||||
0x320| 19 62 31 8b | .b1. | occur: "1983-07-01T00:00:11Z" (425865611) 0x326-0x329.7 (4)
|
||||
0x320| 00 00 00 0c | .... | corr: 12 0x32a-0x32d.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x32e-0x335.7 (8)
|
||||
0x320| 1d 25| .%| occur: "1985-07-01T00:00:12Z" (489024012) 0x32e-0x331.7 (4)
|
||||
0x330|ea 0c |.. |
|
||||
0x330| 00 00 00 0d | .... | corr: 13 0x332-0x335.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x336-0x33d.7 (8)
|
||||
0x330| 21 da e5 0d | !... | occur: "1988-01-01T00:00:13Z" (567993613) 0x336-0x339.7 (4)
|
||||
0x330| 00 00 00 0e | .... | corr: 14 0x33a-0x33d.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x33e-0x345.7 (8)
|
||||
0x330| 25 9e| %.| occur: "1990-01-01T00:00:14Z" (631152014) 0x33e-0x341.7 (4)
|
||||
0x340|9d 8e |.. |
|
||||
0x340| 00 00 00 0f | .... | corr: 15 0x342-0x345.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x346-0x34d.7 (8)
|
||||
0x340| 27 7f d1 0f | '... | occur: "1991-01-01T00:00:15Z" (662688015) 0x346-0x349.7 (4)
|
||||
0x340| 00 00 00 10 | .... | corr: 16 0x34a-0x34d.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x34e-0x355.7 (8)
|
||||
0x340| 2a 50| *P| occur: "1992-07-01T00:00:16Z" (709948816) 0x34e-0x351.7 (4)
|
||||
0x350|f5 90 |.. |
|
||||
0x350| 00 00 00 11 | .... | corr: 17 0x352-0x355.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x356-0x35d.7 (8)
|
||||
0x350| 2c 32 29 11 | ,2). | occur: "1993-07-01T00:00:17Z" (741484817) 0x356-0x359.7 (4)
|
||||
0x350| 00 00 00 12 | .... | corr: 18 0x35a-0x35d.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x35e-0x365.7 (8)
|
||||
0x350| 2e 13| ..| occur: "1994-07-01T00:00:18Z" (773020818) 0x35e-0x361.7 (4)
|
||||
0x360|5c 92 |\. |
|
||||
0x360| 00 00 00 13 | .... | corr: 19 0x362-0x365.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x366-0x36d.7 (8)
|
||||
0x360| 30 e7 24 13 | 0.$. | occur: "1996-01-01T00:00:19Z" (820454419) 0x366-0x369.7 (4)
|
||||
0x360| 00 00 00 14 | .... | corr: 20 0x36a-0x36d.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x36e-0x375.7 (8)
|
||||
0x360| 33 b8| 3.| occur: "1997-07-01T00:00:20Z" (867715220) 0x36e-0x371.7 (4)
|
||||
0x370|48 94 |H. |
|
||||
0x370| 00 00 00 15 | .... | corr: 21 0x372-0x375.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x376-0x37d.7 (8)
|
||||
0x370| 36 8c 10 15 | 6... | occur: "1999-01-01T00:00:21Z" (915148821) 0x376-0x379.7 (4)
|
||||
0x370| 00 00 00 16 | .... | corr: 22 0x37a-0x37d.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x37e-0x385.7 (8)
|
||||
0x370| 43 b7| C.| occur: "2006-01-01T00:00:22Z" (1136073622) 0x37e-0x381.7 (4)
|
||||
0x380|1b 96 |.. |
|
||||
0x380| 00 00 00 17 | .... | corr: 23 0x382-0x385.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x386-0x38d.7 (8)
|
||||
0x380| 49 5c 07 97 | I\.. | occur: "2009-01-01T00:00:23Z" (1230768023) 0x386-0x389.7 (4)
|
||||
0x380| 00 00 00 18 | .... | corr: 24 0x38a-0x38d.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x38e-0x395.7 (8)
|
||||
0x380| 4f ef| O.| occur: "2012-07-01T00:00:24Z" (1341100824) 0x38e-0x391.7 (4)
|
||||
0x390|93 18 |.. |
|
||||
0x390| 00 00 00 19 | .... | corr: 25 0x392-0x395.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x396-0x39d.7 (8)
|
||||
0x390| 55 93 2d 99 | U.-. | occur: "2015-07-01T00:00:25Z" (1435708825) 0x396-0x399.7 (4)
|
||||
0x390| 00 00 00 1a | .... | corr: 26 0x39a-0x39d.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x39e-0x3a5.7 (8)
|
||||
0x390| 58 68| Xh| occur: "2017-01-01T00:00:26Z" (1483228826) 0x39e-0x3a1.7 (4)
|
||||
0x3a0|46 9a |F. |
|
||||
0x3a0| 00 00 00 1b | .... | corr: 27 0x3a2-0x3a5.7 (4)
|
||||
| | | standard_wall_indicators[0:9]: 0x3a6-0x3ae.7 (9)
|
||||
0x3a0| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x3a6-0x3a6.7 (1)
|
||||
0x3a0| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x3a7-0x3a7.7 (1)
|
||||
0x3a0| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x3a8-0x3a8.7 (1)
|
||||
0x3a0| 01 | . | [3]: 1 standard_wall_indicator (valid) 0x3a9-0x3a9.7 (1)
|
||||
0x3a0| 00 | . | [4]: 0 standard_wall_indicator (valid) 0x3aa-0x3aa.7 (1)
|
||||
0x3a0| 00 | . | [5]: 0 standard_wall_indicator (valid) 0x3ab-0x3ab.7 (1)
|
||||
0x3a0| 00 | . | [6]: 0 standard_wall_indicator (valid) 0x3ac-0x3ac.7 (1)
|
||||
0x3a0| 00 | . | [7]: 0 standard_wall_indicator (valid) 0x3ad-0x3ad.7 (1)
|
||||
0x3a0| 00 | . | [8]: 0 standard_wall_indicator (valid) 0x3ae-0x3ae.7 (1)
|
||||
| | | ut_local_indicators[0:9]: 0x3af-0x3b7.7 (9)
|
||||
0x3a0| 00| .| [0]: 0 ut_local_indicator (valid) 0x3af-0x3af.7 (1)
|
||||
0x3b0|00 |. | [1]: 0 ut_local_indicator (valid) 0x3b0-0x3b0.7 (1)
|
||||
0x3b0| 00 | . | [2]: 0 ut_local_indicator (valid) 0x3b1-0x3b1.7 (1)
|
||||
0x3b0| 01 | . | [3]: 1 ut_local_indicator (valid) 0x3b2-0x3b2.7 (1)
|
||||
0x3b0| 00 | . | [4]: 0 ut_local_indicator (valid) 0x3b3-0x3b3.7 (1)
|
||||
0x3b0| 00 | . | [5]: 0 ut_local_indicator (valid) 0x3b4-0x3b4.7 (1)
|
||||
0x3b0| 00 | . | [6]: 0 ut_local_indicator (valid) 0x3b5-0x3b5.7 (1)
|
||||
0x3b0| 00 | . | [7]: 0 ut_local_indicator (valid) 0x3b6-0x3b6.7 (1)
|
||||
0x3b0| 00 | . | [8]: 0 ut_local_indicator (valid) 0x3b7-0x3b7.7 (1)
|
||||
| | | v2plusheader{}: 0x3b8-0x3e3.7 (44)
|
||||
0x3b0| 54 5a 69 66 | TZif | magic: 0x545a6966 (valid) 0x3b8-0x3bb.7 (4)
|
||||
0x3b0| 32 | 2 | ver: "2" (0x32) (valid) 0x3bc-0x3bc.7 (1)
|
||||
0x3b0| 00 00 00| ...| reserved: raw bits 0x3bd-0x3cb.7 (15)
|
||||
0x3c0|00 00 00 00 00 00 00 00 00 00 00 00 |............ |
|
||||
0x3c0| 00 00 00 0a| ....| isutcnt: 10 0x3cc-0x3cf.7 (4)
|
||||
0x3d0|00 00 00 0a |.... | isstdcnt: 10 0x3d0-0x3d3.7 (4)
|
||||
0x3d0| 00 00 00 1b | .... | leapcnt: 27 0x3d4-0x3d7.7 (4)
|
||||
0x3d0| 00 00 00 75 | ...u | timecnt: 117 0x3d8-0x3db.7 (4)
|
||||
0x3d0| 00 00 00 0a| ....| typecnt: 10 0x3dc-0x3df.7 (4)
|
||||
0x3e0|00 00 00 28 |...( | charcnt: 40 0x3e0-0x3e3.7 (4)
|
||||
| | | v2plusdatablock{}: 0x3e4-0x9bc.7 (1497)
|
||||
| | | transition_times[0:117]: 0x3e4-0x78b.7 (936)
|
||||
0x3e0| ff ff ff ff 3f c2 fd d1 | ....?... | [0]: "1867-10-19T00:31:13Z" (-3225223727) transition_time 0x3e4-0x3eb.7 (8)
|
||||
0x3e0| ff ff ff ff| ....| [1]: "1900-08-20T21:59:36Z" (-2188951224) transition_time 0x3ec-0x3f3.7 (8)
|
||||
0x3f0|7d 87 41 48 |}.AH |
|
||||
0x3f0| ff ff ff ff cb 89 36 c0 | ......6. | [2]: "1942-02-09T12:00:00Z" (-880200000) transition_time 0x3f4-0x3fb.7 (8)
|
||||
0x3f0| ff ff ff ff| ....| [3]: "1945-08-14T23:00:00Z" (-769395600) transition_time 0x3fc-0x403.7 (8)
|
||||
0x400|d2 23 f4 70 |.#.p |
|
||||
0x400| ff ff ff ff d2 61 42 30 | .....aB0 | [4]: "1945-09-30T11:00:00Z" (-765378000) transition_time 0x404-0x40b.7 (8)
|
||||
0x400| ff ff ff ff| ....| [5]: "1967-04-01T10:00:00Z" (-86882400) transition_time 0x40c-0x413.7 (8)
|
||||
0x410|fa d2 47 a0 |..G. |
|
||||
0x410| ff ff ff ff fe b8 63 40 | ......c@ | [6]: "1969-04-27T12:00:00Z" (-21470400) transition_time 0x414-0x41b.7 (8)
|
||||
0x410| ff ff ff ff| ....| [7]: "1969-10-26T11:00:00Z" (-5749200) transition_time 0x41c-0x423.7 (8)
|
||||
0x420|ff a8 46 30 |..F0 |
|
||||
0x420| 00 00 00 00 00 98 45 40 | ......E@ | [8]: "1970-04-26T12:00:00Z" (9979200) transition_time 0x424-0x42b.7 (8)
|
||||
0x420| 00 00 00 00| ....| [9]: "1970-10-25T11:00:00Z" (25700400) transition_time 0x42c-0x433.7 (8)
|
||||
0x430|01 88 28 30 |..(0 |
|
||||
0x430| 00 00 00 00 02 78 27 40 | .....x'@ | [10]: "1971-04-25T12:00:00Z" (41428800) transition_time 0x434-0x43b.7 (8)
|
||||
0x430| 00 00 00 00| ....| [11]: "1971-10-31T11:00:00Z" (57754800) transition_time 0x43c-0x443.7 (8)
|
||||
0x440|03 71 44 b0 |.qD. |
|
||||
0x440| 00 00 00 00 04 61 43 c0 | .....aC. | [12]: "1972-04-30T12:00:00Z" (73483200) transition_time 0x444-0x44b.7 (8)
|
||||
0x440| 00 00 00 00| ....| [13]: "1972-10-29T11:00:01Z" (89204401) transition_time 0x44c-0x453.7 (8)
|
||||
0x450|05 51 26 b1 |.Q&. |
|
||||
0x450| 00 00 00 00 06 41 25 c2 | .....A%. | [14]: "1973-04-29T12:00:02Z" (104932802) transition_time 0x454-0x45b.7 (8)
|
||||
0x450| 00 00 00 00| ....| [15]: "1973-10-28T11:00:02Z" (120654002) transition_time 0x45c-0x463.7 (8)
|
||||
0x460|07 31 08 b2 |.1.. |
|
||||
0x460| 00 00 00 00 07 8d 5f c3 | ......_. | [16]: "1974-01-06T12:00:03Z" (126705603) transition_time 0x464-0x46b.7 (8)
|
||||
0x460| 00 00 00 00| ....| [17]: "1974-10-27T11:00:03Z" (152103603) transition_time 0x46c-0x473.7 (8)
|
||||
0x470|09 10 ea b3 |.... |
|
||||
0x470| 00 00 00 00 09 ad db 44 | .......D | [18]: "1975-02-23T12:00:04Z" (162388804) transition_time 0x474-0x47b.7 (8)
|
||||
0x470| 00 00 00 00| ....| [19]: "1975-10-26T11:00:04Z" (183553204) transition_time 0x47c-0x483.7 (8)
|
||||
0x480|0a f0 cc b4 |.... |
|
||||
0x480| 00 00 00 00 0b e0 cb c5 | ........ | [20]: "1976-04-25T12:00:05Z" (199281605) transition_time 0x484-0x48b.7 (8)
|
||||
0x480| 00 00 00 00| ....| [21]: "1976-10-31T11:00:05Z" (215607605) transition_time 0x48c-0x493.7 (8)
|
||||
0x490|0c d9 e9 35 |...5 |
|
||||
0x490| 00 00 00 00 0d c0 ad c6 | ........ | [22]: "1977-04-24T12:00:06Z" (230731206) transition_time 0x494-0x49b.7 (8)
|
||||
0x490| 00 00 00 00| ....| [23]: "1977-10-30T11:00:06Z" (247057206) transition_time 0x49c-0x4a3.7 (8)
|
||||
0x4a0|0e b9 cb 36 |...6 |
|
||||
0x4a0| 00 00 00 00 0f a9 ca 47 | .......G | [24]: "1978-04-30T12:00:07Z" (262785607) transition_time 0x4a4-0x4ab.7 (8)
|
||||
0x4a0| 00 00 00 00| ....| [25]: "1978-10-29T11:00:07Z" (278506807) transition_time 0x4ac-0x4b3.7 (8)
|
||||
0x4b0|10 99 ad 37 |...7 |
|
||||
0x4b0| 00 00 00 00 11 89 ac 48 | .......H | [26]: "1979-04-29T12:00:08Z" (294235208) transition_time 0x4b4-0x4bb.7 (8)
|
||||
0x4b0| 00 00 00 00| ....| [27]: "1979-10-28T11:00:08Z" (309956408) transition_time 0x4bc-0x4c3.7 (8)
|
||||
0x4c0|12 79 8f 38 |.y.8 |
|
||||
0x4c0| 00 00 00 00 13 69 8e 49 | .....i.I | [28]: "1980-04-27T12:00:09Z" (325684809) transition_time 0x4c4-0x4cb.7 (8)
|
||||
0x4c0| 00 00 00 00| ....| [29]: "1980-10-26T11:00:09Z" (341406009) transition_time 0x4cc-0x4d3.7 (8)
|
||||
0x4d0|14 59 71 39 |.Yq9 |
|
||||
0x4d0| 00 00 00 00 15 49 70 49 | .....IpI | [30]: "1981-04-26T12:00:09Z" (357134409) transition_time 0x4d4-0x4db.7 (8)
|
||||
0x4d0| 00 00 00 00| ....| [31]: "1981-10-25T11:00:10Z" (372855610) transition_time 0x4dc-0x4e3.7 (8)
|
||||
0x4e0|16 39 53 3a |.9S: |
|
||||
0x4e0| 00 00 00 00 17 29 52 4a | .....)RJ | [32]: "1982-04-25T12:00:10Z" (388584010) transition_time 0x4e4-0x4eb.7 (8)
|
||||
0x4e0| 00 00 00 00| ....| [33]: "1982-10-31T11:00:11Z" (404910011) transition_time 0x4ec-0x4f3.7 (8)
|
||||
0x4f0|18 22 6f bb |."o. |
|
||||
0x4f0| 00 00 00 00 19 09 34 4b | ......4K | [34]: "1983-04-24T12:00:11Z" (420033611) transition_time 0x4f4-0x4fb.7 (8)
|
||||
0x4f0| 00 00 00 00| ....| [35]: "1983-10-30T11:00:12Z" (436359612) transition_time 0x4fc-0x503.7 (8)
|
||||
0x500|1a 02 51 bc |..Q. |
|
||||
0x500| 00 00 00 00 1a 2b 14 1c | .....+.. | [36]: "1983-11-30T09:00:12Z" (439030812) transition_time 0x504-0x50b.7 (8)
|
||||
0x500| 00 00 00 00| ....| [37]: "1984-04-29T11:00:12Z" (452084412) transition_time 0x50c-0x513.7 (8)
|
||||
0x510|1a f2 42 bc |..B. |
|
||||
0x510| 00 00 00 00 1b e2 25 ac | ......%. | [38]: "1984-10-28T10:00:12Z" (467805612) transition_time 0x514-0x51b.7 (8)
|
||||
0x510| 00 00 00 00| ....| [39]: "1985-04-28T11:00:12Z" (483534012) transition_time 0x51c-0x523.7 (8)
|
||||
0x520|1c d2 24 bc |..$. |
|
||||
0x520| 00 00 00 00 1d c2 07 ad | ........ | [40]: "1985-10-27T10:00:13Z" (499255213) transition_time 0x524-0x52b.7 (8)
|
||||
0x520| 00 00 00 00| ....| [41]: "1986-04-27T11:00:13Z" (514983613) transition_time 0x52c-0x533.7 (8)
|
||||
0x530|1e b2 06 bd |.... |
|
||||
0x530| 00 00 00 00 1f a1 e9 ad | ........ | [42]: "1986-10-26T10:00:13Z" (530704813) transition_time 0x534-0x53b.7 (8)
|
||||
0x530| 00 00 00 00| ....| [43]: "1987-04-05T11:00:13Z" (544618813) transition_time 0x53c-0x543.7 (8)
|
||||
0x540|20 76 39 3d | v9= |
|
||||
0x540| 00 00 00 00 21 81 cb ad | ....!... | [44]: "1987-10-25T10:00:13Z" (562154413) transition_time 0x544-0x54b.7 (8)
|
||||
0x540| 00 00 00 00| ....| [45]: "1988-04-03T11:00:14Z" (576068414) transition_time 0x54c-0x553.7 (8)
|
||||
0x550|22 56 1b 3e |"V.> |
|
||||
0x550| 00 00 00 00 23 6a e8 2e | ....#j.. | [46]: "1988-10-30T10:00:14Z" (594208814) transition_time 0x554-0x55b.7 (8)
|
||||
0x550| 00 00 00 00| ....| [47]: "1989-04-02T11:00:14Z" (607518014) transition_time 0x55c-0x563.7 (8)
|
||||
0x560|24 35 fd 3e |$5.> |
|
||||
0x560| 00 00 00 00 25 4a ca 2e | ....%J.. | [48]: "1989-10-29T10:00:14Z" (625658414) transition_time 0x564-0x56b.7 (8)
|
||||
0x560| 00 00 00 00| ....| [49]: "1990-04-01T11:00:15Z" (638967615) transition_time 0x56c-0x573.7 (8)
|
||||
0x570|26 15 df 3f |&..? |
|
||||
0x570| 00 00 00 00 27 2a ac 2f | ....'*./ | [50]: "1990-10-28T10:00:15Z" (657108015) transition_time 0x574-0x57b.7 (8)
|
||||
0x570| 00 00 00 00| ....| [51]: "1991-04-07T11:00:16Z" (671022016) transition_time 0x57c-0x583.7 (8)
|
||||
0x580|27 fe fb c0 |'... |
|
||||
0x580| 00 00 00 00 29 0a 8e 30 | ....)..0 | [52]: "1991-10-27T10:00:16Z" (688557616) transition_time 0x584-0x58b.7 (8)
|
||||
0x580| 00 00 00 00| ....| [53]: "1992-04-05T11:00:16Z" (702471616) transition_time 0x58c-0x593.7 (8)
|
||||
0x590|29 de dd c0 |)... |
|
||||
0x590| 00 00 00 00 2a ea 70 31 | ....*.p1 | [54]: "1992-10-25T10:00:17Z" (720007217) transition_time 0x594-0x59b.7 (8)
|
||||
0x590| 00 00 00 00| ....| [55]: "1993-04-04T11:00:17Z" (733921217) transition_time 0x59c-0x5a3.7 (8)
|
||||
0x5a0|2b be bf c1 |+... |
|
||||
0x5a0| 00 00 00 00 2c d3 8c b2 | ....,... | [56]: "1993-10-31T10:00:18Z" (752061618) transition_time 0x5a4-0x5ab.7 (8)
|
||||
0x5a0| 00 00 00 00| ....| [57]: "1994-04-03T11:00:18Z" (765370818) transition_time 0x5ac-0x5b3.7 (8)
|
||||
0x5b0|2d 9e a1 c2 |-... |
|
||||
0x5b0| 00 00 00 00 2e b3 6e b3 | ......n. | [58]: "1994-10-30T10:00:19Z" (783511219) transition_time 0x5b4-0x5bb.7 (8)
|
||||
0x5b0| 00 00 00 00| ....| [59]: "1995-04-02T11:00:19Z" (796820419) transition_time 0x5bc-0x5c3.7 (8)
|
||||
0x5c0|2f 7e 83 c3 |/~.. |
|
||||
0x5c0| 00 00 00 00 30 93 50 b3 | ....0.P. | [60]: "1995-10-29T10:00:19Z" (814960819) transition_time 0x5c4-0x5cb.7 (8)
|
||||
0x5c0| 00 00 00 00| ....| [61]: "1996-04-07T11:00:20Z" (828874820) transition_time 0x5cc-0x5d3.7 (8)
|
||||
0x5d0|31 67 a0 44 |1g.D |
|
||||
0x5d0| 00 00 00 00 32 73 32 b4 | ....2s2. | [62]: "1996-10-27T10:00:20Z" (846410420) transition_time 0x5d4-0x5db.7 (8)
|
||||
0x5d0| 00 00 00 00| ....| [63]: "1997-04-06T11:00:20Z" (860324420) transition_time 0x5dc-0x5e3.7 (8)
|
||||
0x5e0|33 47 82 44 |3G.D |
|
||||
0x5e0| 00 00 00 00 34 53 14 b5 | ....4S.. | [64]: "1997-10-26T10:00:21Z" (877860021) transition_time 0x5e4-0x5eb.7 (8)
|
||||
0x5e0| 00 00 00 00| ....| [65]: "1998-04-05T11:00:21Z" (891774021) transition_time 0x5ec-0x5f3.7 (8)
|
||||
0x5f0|35 27 64 45 |5'dE |
|
||||
0x5f0| 00 00 00 00 36 32 f6 b5 | ....62.. | [66]: "1998-10-25T10:00:21Z" (909309621) transition_time 0x5f4-0x5fb.7 (8)
|
||||
0x5f0| 00 00 00 00| ....| [67]: "1999-04-04T11:00:22Z" (923223622) transition_time 0x5fc-0x603.7 (8)
|
||||
0x600|37 07 46 46 |7.FF |
|
||||
0x600| 00 00 00 00 38 1c 13 36 | ....8..6 | [68]: "1999-10-31T10:00:22Z" (941364022) transition_time 0x604-0x60b.7 (8)
|
||||
0x600| 00 00 00 00| ....| [69]: "2000-04-02T11:00:22Z" (954673222) transition_time 0x60c-0x613.7 (8)
|
||||
0x610|38 e7 28 46 |8.(F |
|
||||
0x610| 00 00 00 00 39 fb f5 36 | ....9..6 | [70]: "2000-10-29T10:00:22Z" (972813622) transition_time 0x614-0x61b.7 (8)
|
||||
0x610| 00 00 00 00| ....| [71]: "2001-04-01T11:00:22Z" (986122822) transition_time 0x61c-0x623.7 (8)
|
||||
0x620|3a c7 0a 46 |:..F |
|
||||
0x620| 00 00 00 00 3b db d7 36 | ....;..6 | [72]: "2001-10-28T10:00:22Z" (1004263222) transition_time 0x624-0x62b.7 (8)
|
||||
0x620| 00 00 00 00| ....| [73]: "2002-04-07T11:00:22Z" (1018177222) transition_time 0x62c-0x633.7 (8)
|
||||
0x630|3c b0 26 c6 |<.&. |
|
||||
0x630| 00 00 00 00 3d bb b9 36 | ....=..6 | [74]: "2002-10-27T10:00:22Z" (1035712822) transition_time 0x634-0x63b.7 (8)
|
||||
0x630| 00 00 00 00| ....| [75]: "2003-04-06T11:00:22Z" (1049626822) transition_time 0x63c-0x643.7 (8)
|
||||
0x640|3e 90 08 c6 |>... |
|
||||
0x640| 00 00 00 00 3f 9b 9b 36 | ....?..6 | [76]: "2003-10-26T10:00:22Z" (1067162422) transition_time 0x644-0x64b.7 (8)
|
||||
0x640| 00 00 00 00| ....| [77]: "2004-04-04T11:00:22Z" (1081076422) transition_time 0x64c-0x653.7 (8)
|
||||
0x650|40 6f ea c6 |@o.. |
|
||||
0x650| 00 00 00 00 41 84 b7 b6 | ....A... | [78]: "2004-10-31T10:00:22Z" (1099216822) transition_time 0x654-0x65b.7 (8)
|
||||
0x650| 00 00 00 00| ....| [79]: "2005-04-03T11:00:22Z" (1112526022) transition_time 0x65c-0x663.7 (8)
|
||||
0x660|42 4f cc c6 |BO.. |
|
||||
0x660| 00 00 00 00 43 64 99 b6 | ....Cd.. | [80]: "2005-10-30T10:00:22Z" (1130666422) transition_time 0x664-0x66b.7 (8)
|
||||
0x660| 00 00 00 00| ....| [81]: "2006-04-02T11:00:23Z" (1143975623) transition_time 0x66c-0x673.7 (8)
|
||||
0x670|44 2f ae c7 |D/.. |
|
||||
0x670| 00 00 00 00 45 44 7b b7 | ....ED{. | [82]: "2006-10-29T10:00:23Z" (1162116023) transition_time 0x674-0x67b.7 (8)
|
||||
0x670| 00 00 00 00| ....| [83]: "2007-03-11T11:00:23Z" (1173610823) transition_time 0x67c-0x683.7 (8)
|
||||
0x680|45 f3 e1 47 |E..G |
|
||||
0x680| 00 00 00 00 47 2d 98 37 | ....G-.7 | [84]: "2007-11-04T10:00:23Z" (1194170423) transition_time 0x684-0x68b.7 (8)
|
||||
0x680| 00 00 00 00| ....| [85]: "2008-03-09T11:00:23Z" (1205060423) transition_time 0x68c-0x693.7 (8)
|
||||
0x690|47 d3 c3 47 |G..G |
|
||||
0x690| 00 00 00 00 49 0d 7a 37 | ....I.z7 | [86]: "2008-11-02T10:00:23Z" (1225620023) transition_time 0x694-0x69b.7 (8)
|
||||
0x690| 00 00 00 00| ....| [87]: "2009-03-08T11:00:24Z" (1236510024) transition_time 0x69c-0x6a3.7 (8)
|
||||
0x6a0|49 b3 a5 48 |I..H |
|
||||
0x6a0| 00 00 00 00 4a ed 5c 38 | ....J.\8 | [88]: "2009-11-01T10:00:24Z" (1257069624) transition_time 0x6a4-0x6ab.7 (8)
|
||||
0x6a0| 00 00 00 00| ....| [89]: "2010-03-14T11:00:24Z" (1268564424) transition_time 0x6ac-0x6b3.7 (8)
|
||||
0x6b0|4b 9c c1 c8 |K... |
|
||||
0x6b0| 00 00 00 00 4c d6 78 b8 | ....L.x. | [90]: "2010-11-07T10:00:24Z" (1289124024) transition_time 0x6b4-0x6bb.7 (8)
|
||||
0x6b0| 00 00 00 00| ....| [91]: "2011-03-13T11:00:24Z" (1300014024) transition_time 0x6bc-0x6c3.7 (8)
|
||||
0x6c0|4d 7c a3 c8 |M|.. |
|
||||
0x6c0| 00 00 00 00 4e b6 5a b8 | ....N.Z. | [92]: "2011-11-06T10:00:24Z" (1320573624) transition_time 0x6c4-0x6cb.7 (8)
|
||||
0x6c0| 00 00 00 00| ....| [93]: "2012-03-11T11:00:24Z" (1331463624) transition_time 0x6cc-0x6d3.7 (8)
|
||||
0x6d0|4f 5c 85 c8 |O\.. |
|
||||
0x6d0| 00 00 00 00 50 96 3c b9 | ....P.<. | [94]: "2012-11-04T10:00:25Z" (1352023225) transition_time 0x6d4-0x6db.7 (8)
|
||||
0x6d0| 00 00 00 00| ....| [95]: "2013-03-10T11:00:25Z" (1362913225) transition_time 0x6dc-0x6e3.7 (8)
|
||||
0x6e0|51 3c 67 c9 |Q<g. |
|
||||
0x6e0| 00 00 00 00 52 76 1e b9 | ....Rv.. | [96]: "2013-11-03T10:00:25Z" (1383472825) transition_time 0x6e4-0x6eb.7 (8)
|
||||
0x6e0| 00 00 00 00| ....| [97]: "2014-03-09T11:00:25Z" (1394362825) transition_time 0x6ec-0x6f3.7 (8)
|
||||
0x6f0|53 1c 49 c9 |S.I. |
|
||||
0x6f0| 00 00 00 00 54 56 00 b9 | ....TV.. | [98]: "2014-11-02T10:00:25Z" (1414922425) transition_time 0x6f4-0x6fb.7 (8)
|
||||
0x6f0| 00 00 00 00| ....| [99]: "2015-03-08T11:00:25Z" (1425812425) transition_time 0x6fc-0x703.7 (8)
|
||||
0x700|54 fc 2b c9 |T.+. |
|
||||
0x700| 00 00 00 00 56 35 e2 ba | ....V5.. | [100]: "2015-11-01T10:00:26Z" (1446372026) transition_time 0x704-0x70b.7 (8)
|
||||
0x700| 00 00 00 00| ....| [101]: "2016-03-13T11:00:26Z" (1457866826) transition_time 0x70c-0x713.7 (8)
|
||||
0x710|56 e5 48 4a |V.HJ |
|
||||
0x710| 00 00 00 00 58 1e ff 3a | ....X..: | [102]: "2016-11-06T10:00:26Z" (1478426426) transition_time 0x714-0x71b.7 (8)
|
||||
0x710| 00 00 00 00| ....| [103]: "2017-03-12T11:00:27Z" (1489316427) transition_time 0x71c-0x723.7 (8)
|
||||
0x720|58 c5 2a 4b |X.*K |
|
||||
0x720| 00 00 00 00 59 fe e1 3b | ....Y..; | [104]: "2017-11-05T10:00:27Z" (1509876027) transition_time 0x724-0x72b.7 (8)
|
||||
0x720| 00 00 00 00| ....| [105]: "2018-03-11T11:00:27Z" (1520766027) transition_time 0x72c-0x733.7 (8)
|
||||
0x730|5a a5 0c 4b |Z..K |
|
||||
0x730| 00 00 00 00 5b de c3 3b | ....[..; | [106]: "2018-11-04T10:00:27Z" (1541325627) transition_time 0x734-0x73b.7 (8)
|
||||
0x730| 00 00 00 00| ....| [107]: "2019-03-10T11:00:27Z" (1552215627) transition_time 0x73c-0x743.7 (8)
|
||||
0x740|5c 84 ee 4b |\..K |
|
||||
0x740| 00 00 00 00 5d be a5 3b | ....]..; | [108]: "2019-11-03T10:00:27Z" (1572775227) transition_time 0x744-0x74b.7 (8)
|
||||
0x740| 00 00 00 00| ....| [109]: "2020-03-08T11:00:27Z" (1583665227) transition_time 0x74c-0x753.7 (8)
|
||||
0x750|5e 64 d0 4b |^d.K |
|
||||
0x750| 00 00 00 00 5f 9e 87 3b | ...._..; | [110]: "2020-11-01T10:00:27Z" (1604224827) transition_time 0x754-0x75b.7 (8)
|
||||
0x750| 00 00 00 00| ....| [111]: "2021-03-14T11:00:27Z" (1615719627) transition_time 0x75c-0x763.7 (8)
|
||||
0x760|60 4d ec cb |`M.. |
|
||||
0x760| 00 00 00 00 61 87 a3 bb | ....a... | [112]: "2021-11-07T10:00:27Z" (1636279227) transition_time 0x764-0x76b.7 (8)
|
||||
0x760| 00 00 00 00| ....| [113]: "2022-03-13T11:00:27Z" (1647169227) transition_time 0x76c-0x773.7 (8)
|
||||
0x770|62 2d ce cb |b-.. |
|
||||
0x770| 00 00 00 00 63 67 85 bb | ....cg.. | [114]: "2022-11-06T10:00:27Z" (1667728827) transition_time 0x774-0x77b.7 (8)
|
||||
0x770| 00 00 00 00| ....| [115]: "2023-03-12T11:00:27Z" (1678618827) transition_time 0x77c-0x783.7 (8)
|
||||
0x780|64 0d b0 cb |d... |
|
||||
0x780| 00 00 00 00 64 9b 78 1b | ....d.x. | [116]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x784-0x78b.7 (8)
|
||||
| | | transition_types[0:117]: 0x78c-0x800.7 (117)
|
||||
0x780| 01 | . | [0]: 1 transition_type 0x78c-0x78c.7 (1)
|
||||
0x780| 02 | . | [1]: 2 transition_type 0x78d-0x78d.7 (1)
|
||||
0x780| 03 | . | [2]: 3 transition_type 0x78e-0x78e.7 (1)
|
||||
0x780| 04| .| [3]: 4 transition_type 0x78f-0x78f.7 (1)
|
||||
0x790|02 |. | [4]: 2 transition_type 0x790-0x790.7 (1)
|
||||
0x790| 05 | . | [5]: 5 transition_type 0x791-0x791.7 (1)
|
||||
0x790| 06 | . | [6]: 6 transition_type 0x792-0x792.7 (1)
|
||||
0x790| 05 | . | [7]: 5 transition_type 0x793-0x793.7 (1)
|
||||
0x790| 06 | . | [8]: 6 transition_type 0x794-0x794.7 (1)
|
||||
0x790| 05 | . | [9]: 5 transition_type 0x795-0x795.7 (1)
|
||||
0x790| 06 | . | [10]: 6 transition_type 0x796-0x796.7 (1)
|
||||
0x790| 05 | . | [11]: 5 transition_type 0x797-0x797.7 (1)
|
||||
0x790| 06 | . | [12]: 6 transition_type 0x798-0x798.7 (1)
|
||||
0x790| 05 | . | [13]: 5 transition_type 0x799-0x799.7 (1)
|
||||
0x790| 06 | . | [14]: 6 transition_type 0x79a-0x79a.7 (1)
|
||||
0x790| 05 | . | [15]: 5 transition_type 0x79b-0x79b.7 (1)
|
||||
0x790| 06 | . | [16]: 6 transition_type 0x79c-0x79c.7 (1)
|
||||
0x790| 05 | . | [17]: 5 transition_type 0x79d-0x79d.7 (1)
|
||||
0x790| 06 | . | [18]: 6 transition_type 0x79e-0x79e.7 (1)
|
||||
0x790| 05| .| [19]: 5 transition_type 0x79f-0x79f.7 (1)
|
||||
0x7a0|06 |. | [20]: 6 transition_type 0x7a0-0x7a0.7 (1)
|
||||
0x7a0| 05 | . | [21]: 5 transition_type 0x7a1-0x7a1.7 (1)
|
||||
0x7a0| 06 | . | [22]: 6 transition_type 0x7a2-0x7a2.7 (1)
|
||||
0x7a0| 05 | . | [23]: 5 transition_type 0x7a3-0x7a3.7 (1)
|
||||
0x7a0| 06 | . | [24]: 6 transition_type 0x7a4-0x7a4.7 (1)
|
||||
0x7a0| 05 | . | [25]: 5 transition_type 0x7a5-0x7a5.7 (1)
|
||||
0x7a0| 06 | . | [26]: 6 transition_type 0x7a6-0x7a6.7 (1)
|
||||
0x7a0| 05 | . | [27]: 5 transition_type 0x7a7-0x7a7.7 (1)
|
||||
0x7a0| 06 | . | [28]: 6 transition_type 0x7a8-0x7a8.7 (1)
|
||||
0x7a0| 05 | . | [29]: 5 transition_type 0x7a9-0x7a9.7 (1)
|
||||
0x7a0| 06 | . | [30]: 6 transition_type 0x7aa-0x7aa.7 (1)
|
||||
0x7a0| 05 | . | [31]: 5 transition_type 0x7ab-0x7ab.7 (1)
|
||||
0x7a0| 06 | . | [32]: 6 transition_type 0x7ac-0x7ac.7 (1)
|
||||
0x7a0| 05 | . | [33]: 5 transition_type 0x7ad-0x7ad.7 (1)
|
||||
0x7a0| 06 | . | [34]: 6 transition_type 0x7ae-0x7ae.7 (1)
|
||||
0x7a0| 07| .| [35]: 7 transition_type 0x7af-0x7af.7 (1)
|
||||
0x7b0|09 |. | [36]: 9 transition_type 0x7b0-0x7b0.7 (1)
|
||||
0x7b0| 08 | . | [37]: 8 transition_type 0x7b1-0x7b1.7 (1)
|
||||
0x7b0| 09 | . | [38]: 9 transition_type 0x7b2-0x7b2.7 (1)
|
||||
0x7b0| 08 | . | [39]: 8 transition_type 0x7b3-0x7b3.7 (1)
|
||||
0x7b0| 09 | . | [40]: 9 transition_type 0x7b4-0x7b4.7 (1)
|
||||
0x7b0| 08 | . | [41]: 8 transition_type 0x7b5-0x7b5.7 (1)
|
||||
0x7b0| 09 | . | [42]: 9 transition_type 0x7b6-0x7b6.7 (1)
|
||||
0x7b0| 08 | . | [43]: 8 transition_type 0x7b7-0x7b7.7 (1)
|
||||
0x7b0| 09 | . | [44]: 9 transition_type 0x7b8-0x7b8.7 (1)
|
||||
0x7b0| 08 | . | [45]: 8 transition_type 0x7b9-0x7b9.7 (1)
|
||||
0x7b0| 09 | . | [46]: 9 transition_type 0x7ba-0x7ba.7 (1)
|
||||
0x7b0| 08 | . | [47]: 8 transition_type 0x7bb-0x7bb.7 (1)
|
||||
0x7b0| 09 | . | [48]: 9 transition_type 0x7bc-0x7bc.7 (1)
|
||||
0x7b0| 08 | . | [49]: 8 transition_type 0x7bd-0x7bd.7 (1)
|
||||
0x7b0| 09 | . | [50]: 9 transition_type 0x7be-0x7be.7 (1)
|
||||
0x7b0| 08| .| [51]: 8 transition_type 0x7bf-0x7bf.7 (1)
|
||||
0x7c0|09 |. | [52]: 9 transition_type 0x7c0-0x7c0.7 (1)
|
||||
0x7c0| 08 | . | [53]: 8 transition_type 0x7c1-0x7c1.7 (1)
|
||||
0x7c0| 09 | . | [54]: 9 transition_type 0x7c2-0x7c2.7 (1)
|
||||
0x7c0| 08 | . | [55]: 8 transition_type 0x7c3-0x7c3.7 (1)
|
||||
0x7c0| 09 | . | [56]: 9 transition_type 0x7c4-0x7c4.7 (1)
|
||||
0x7c0| 08 | . | [57]: 8 transition_type 0x7c5-0x7c5.7 (1)
|
||||
0x7c0| 09 | . | [58]: 9 transition_type 0x7c6-0x7c6.7 (1)
|
||||
0x7c0| 08 | . | [59]: 8 transition_type 0x7c7-0x7c7.7 (1)
|
||||
0x7c0| 09 | . | [60]: 9 transition_type 0x7c8-0x7c8.7 (1)
|
||||
0x7c0| 08 | . | [61]: 8 transition_type 0x7c9-0x7c9.7 (1)
|
||||
0x7c0| 09 | . | [62]: 9 transition_type 0x7ca-0x7ca.7 (1)
|
||||
0x7c0| 08 | . | [63]: 8 transition_type 0x7cb-0x7cb.7 (1)
|
||||
0x7c0| 09 | . | [64]: 9 transition_type 0x7cc-0x7cc.7 (1)
|
||||
0x7c0| 08 | . | [65]: 8 transition_type 0x7cd-0x7cd.7 (1)
|
||||
0x7c0| 09 | . | [66]: 9 transition_type 0x7ce-0x7ce.7 (1)
|
||||
0x7c0| 08| .| [67]: 8 transition_type 0x7cf-0x7cf.7 (1)
|
||||
0x7d0|09 |. | [68]: 9 transition_type 0x7d0-0x7d0.7 (1)
|
||||
0x7d0| 08 | . | [69]: 8 transition_type 0x7d1-0x7d1.7 (1)
|
||||
0x7d0| 09 | . | [70]: 9 transition_type 0x7d2-0x7d2.7 (1)
|
||||
0x7d0| 08 | . | [71]: 8 transition_type 0x7d3-0x7d3.7 (1)
|
||||
0x7d0| 09 | . | [72]: 9 transition_type 0x7d4-0x7d4.7 (1)
|
||||
0x7d0| 08 | . | [73]: 8 transition_type 0x7d5-0x7d5.7 (1)
|
||||
0x7d0| 09 | . | [74]: 9 transition_type 0x7d6-0x7d6.7 (1)
|
||||
0x7d0| 08 | . | [75]: 8 transition_type 0x7d7-0x7d7.7 (1)
|
||||
0x7d0| 09 | . | [76]: 9 transition_type 0x7d8-0x7d8.7 (1)
|
||||
0x7d0| 08 | . | [77]: 8 transition_type 0x7d9-0x7d9.7 (1)
|
||||
0x7d0| 09 | . | [78]: 9 transition_type 0x7da-0x7da.7 (1)
|
||||
0x7d0| 08 | . | [79]: 8 transition_type 0x7db-0x7db.7 (1)
|
||||
0x7d0| 09 | . | [80]: 9 transition_type 0x7dc-0x7dc.7 (1)
|
||||
0x7d0| 08 | . | [81]: 8 transition_type 0x7dd-0x7dd.7 (1)
|
||||
0x7d0| 09 | . | [82]: 9 transition_type 0x7de-0x7de.7 (1)
|
||||
0x7d0| 08| .| [83]: 8 transition_type 0x7df-0x7df.7 (1)
|
||||
0x7e0|09 |. | [84]: 9 transition_type 0x7e0-0x7e0.7 (1)
|
||||
0x7e0| 08 | . | [85]: 8 transition_type 0x7e1-0x7e1.7 (1)
|
||||
0x7e0| 09 | . | [86]: 9 transition_type 0x7e2-0x7e2.7 (1)
|
||||
0x7e0| 08 | . | [87]: 8 transition_type 0x7e3-0x7e3.7 (1)
|
||||
0x7e0| 09 | . | [88]: 9 transition_type 0x7e4-0x7e4.7 (1)
|
||||
0x7e0| 08 | . | [89]: 8 transition_type 0x7e5-0x7e5.7 (1)
|
||||
0x7e0| 09 | . | [90]: 9 transition_type 0x7e6-0x7e6.7 (1)
|
||||
0x7e0| 08 | . | [91]: 8 transition_type 0x7e7-0x7e7.7 (1)
|
||||
0x7e0| 09 | . | [92]: 9 transition_type 0x7e8-0x7e8.7 (1)
|
||||
0x7e0| 08 | . | [93]: 8 transition_type 0x7e9-0x7e9.7 (1)
|
||||
0x7e0| 09 | . | [94]: 9 transition_type 0x7ea-0x7ea.7 (1)
|
||||
0x7e0| 08 | . | [95]: 8 transition_type 0x7eb-0x7eb.7 (1)
|
||||
0x7e0| 09 | . | [96]: 9 transition_type 0x7ec-0x7ec.7 (1)
|
||||
0x7e0| 08 | . | [97]: 8 transition_type 0x7ed-0x7ed.7 (1)
|
||||
0x7e0| 09 | . | [98]: 9 transition_type 0x7ee-0x7ee.7 (1)
|
||||
0x7e0| 08| .| [99]: 8 transition_type 0x7ef-0x7ef.7 (1)
|
||||
0x7f0|09 |. | [100]: 9 transition_type 0x7f0-0x7f0.7 (1)
|
||||
0x7f0| 08 | . | [101]: 8 transition_type 0x7f1-0x7f1.7 (1)
|
||||
0x7f0| 09 | . | [102]: 9 transition_type 0x7f2-0x7f2.7 (1)
|
||||
0x7f0| 08 | . | [103]: 8 transition_type 0x7f3-0x7f3.7 (1)
|
||||
0x7f0| 09 | . | [104]: 9 transition_type 0x7f4-0x7f4.7 (1)
|
||||
0x7f0| 08 | . | [105]: 8 transition_type 0x7f5-0x7f5.7 (1)
|
||||
0x7f0| 09 | . | [106]: 9 transition_type 0x7f6-0x7f6.7 (1)
|
||||
0x7f0| 08 | . | [107]: 8 transition_type 0x7f7-0x7f7.7 (1)
|
||||
0x7f0| 09 | . | [108]: 9 transition_type 0x7f8-0x7f8.7 (1)
|
||||
0x7f0| 08 | . | [109]: 8 transition_type 0x7f9-0x7f9.7 (1)
|
||||
0x7f0| 09 | . | [110]: 9 transition_type 0x7fa-0x7fa.7 (1)
|
||||
0x7f0| 08 | . | [111]: 8 transition_type 0x7fb-0x7fb.7 (1)
|
||||
0x7f0| 09 | . | [112]: 9 transition_type 0x7fc-0x7fc.7 (1)
|
||||
0x7f0| 08 | . | [113]: 8 transition_type 0x7fd-0x7fd.7 (1)
|
||||
0x7f0| 09 | . | [114]: 9 transition_type 0x7fe-0x7fe.7 (1)
|
||||
0x7f0| 08| .| [115]: 8 transition_type 0x7ff-0x7ff.7 (1)
|
||||
0x800|08 |. | [116]: 8 transition_type 0x800-0x800.7 (1)
|
||||
| | | local_time_type_records[0:10]: 0x801-0x83c.7 (60)
|
||||
| | | [0]{}: local_time_type 0x801-0x806.7 (6)
|
||||
0x800| 00 00 c4 f8 | .... | utoff: 50424 (valid) 0x801-0x804.7 (4)
|
||||
0x800| 00 | . | dst: 0 (valid) 0x805-0x805.7 (1)
|
||||
0x800| 00 | . | idx: 0 (valid) 0x806-0x806.7 (1)
|
||||
| | | [1]{}: local_time_type 0x807-0x80c.7 (6)
|
||||
0x800| ff ff 73 78 | ..sx | utoff: -35976 (valid) 0x807-0x80a.7 (4)
|
||||
0x800| 00 | . | dst: 0 (valid) 0x80b-0x80b.7 (1)
|
||||
0x800| 00 | . | idx: 0 (valid) 0x80c-0x80c.7 (1)
|
||||
| | | [2]{}: local_time_type 0x80d-0x812.7 (6)
|
||||
0x800| ff ff 73| ..s| utoff: -36000 (valid) 0x80d-0x810.7 (4)
|
||||
0x810|60 |` |
|
||||
0x810| 00 | . | dst: 0 (valid) 0x811-0x811.7 (1)
|
||||
0x810| 04 | . | idx: 4 (valid) 0x812-0x812.7 (1)
|
||||
| | | [3]{}: local_time_type 0x813-0x818.7 (6)
|
||||
0x810| ff ff 81 70 | ...p | utoff: -32400 (valid) 0x813-0x816.7 (4)
|
||||
0x810| 01 | . | dst: 1 (valid) 0x817-0x817.7 (1)
|
||||
0x810| 08 | . | idx: 8 (valid) 0x818-0x818.7 (1)
|
||||
| | | [4]{}: local_time_type 0x819-0x81e.7 (6)
|
||||
0x810| ff ff 81 70 | ...p | utoff: -32400 (valid) 0x819-0x81c.7 (4)
|
||||
0x810| 01 | . | dst: 1 (valid) 0x81d-0x81d.7 (1)
|
||||
0x810| 0c | . | idx: 12 (valid) 0x81e-0x81e.7 (1)
|
||||
| | | [5]{}: local_time_type 0x81f-0x824.7 (6)
|
||||
0x810| ff| .| utoff: -36000 (valid) 0x81f-0x822.7 (4)
|
||||
0x820|ff 73 60 |.s` |
|
||||
0x820| 00 | . | dst: 0 (valid) 0x823-0x823.7 (1)
|
||||
0x820| 10 | . | idx: 16 (valid) 0x824-0x824.7 (1)
|
||||
| | | [6]{}: local_time_type 0x825-0x82a.7 (6)
|
||||
0x820| ff ff 81 70 | ...p | utoff: -32400 (valid) 0x825-0x828.7 (4)
|
||||
0x820| 01 | . | dst: 1 (valid) 0x829-0x829.7 (1)
|
||||
0x820| 15 | . | idx: 21 (valid) 0x82a-0x82a.7 (1)
|
||||
| | | [7]{}: local_time_type 0x82b-0x830.7 (6)
|
||||
0x820| ff ff 81 70 | ...p | utoff: -32400 (valid) 0x82b-0x82e.7 (4)
|
||||
0x820| 00| .| dst: 0 (valid) 0x82f-0x82f.7 (1)
|
||||
0x830|1a |. | idx: 26 (valid) 0x830-0x830.7 (1)
|
||||
| | | [8]{}: local_time_type 0x831-0x836.7 (6)
|
||||
0x830| ff ff 8f 80 | .... | utoff: -28800 (valid) 0x831-0x834.7 (4)
|
||||
0x830| 01 | . | dst: 1 (valid) 0x835-0x835.7 (1)
|
||||
0x830| 1e | . | idx: 30 (valid) 0x836-0x836.7 (1)
|
||||
| | | [9]{}: local_time_type 0x837-0x83c.7 (6)
|
||||
0x830| ff ff 81 70 | ...p | utoff: -32400 (valid) 0x837-0x83a.7 (4)
|
||||
0x830| 00 | . | dst: 0 (valid) 0x83b-0x83b.7 (1)
|
||||
0x830| 23 | # | idx: 35 (valid) 0x83c-0x83c.7 (1)
|
||||
| | | time_zone_designations[0:9]: 0x83d-0x864.7 (40)
|
||||
0x830| 4c 4d 54| LMT| [0]: "LMT" time_zone_designation 0x83d-0x840.7 (4)
|
||||
0x840|00 |. |
|
||||
0x840| 41 53 54 00 | AST. | [1]: "AST" time_zone_designation 0x841-0x844.7 (4)
|
||||
0x840| 41 57 54 00 | AWT. | [2]: "AWT" time_zone_designation 0x845-0x848.7 (4)
|
||||
0x840| 41 50 54 00 | APT. | [3]: "APT" time_zone_designation 0x849-0x84c.7 (4)
|
||||
0x840| 41 48 53| AHS| [4]: "AHST" time_zone_designation 0x84d-0x851.7 (5)
|
||||
0x850|54 00 |T. |
|
||||
0x850| 41 48 44 54 00 | AHDT. | [5]: "AHDT" time_zone_designation 0x852-0x856.7 (5)
|
||||
0x850| 59 53 54 00 | YST. | [6]: "YST" time_zone_designation 0x857-0x85a.7 (4)
|
||||
0x850| 41 4b 44 54 00| AKDT.| [7]: "AKDT" time_zone_designation 0x85b-0x85f.7 (5)
|
||||
0x860|41 4b 53 54 00 |AKST. | [8]: "AKST" time_zone_designation 0x860-0x864.7 (5)
|
||||
| | | leap_second_records[0:27]: 0x865-0x9a8.7 (324)
|
||||
| | | [0]{}: leap_second_record 0x865-0x870.7 (12)
|
||||
0x860| 00 00 00 00 04 b2 58 00 | ......X. | occur: "1972-07-01T00:00:00Z" (78796800) 0x865-0x86c.7 (8)
|
||||
0x860| 00 00 00| ...| corr: 1 0x86d-0x870.7 (4)
|
||||
0x870|01 |. |
|
||||
| | | [1]{}: leap_second_record 0x871-0x87c.7 (12)
|
||||
0x870| 00 00 00 00 05 a4 ec 01 | ........ | occur: "1973-01-01T00:00:01Z" (94694401) 0x871-0x878.7 (8)
|
||||
0x870| 00 00 00 02 | .... | corr: 2 0x879-0x87c.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x87d-0x888.7 (12)
|
||||
0x870| 00 00 00| ...| occur: "1974-01-01T00:00:02Z" (126230402) 0x87d-0x884.7 (8)
|
||||
0x880|00 07 86 1f 82 |..... |
|
||||
0x880| 00 00 00 03 | .... | corr: 3 0x885-0x888.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x889-0x894.7 (12)
|
||||
0x880| 00 00 00 00 09 67 53| .....gS| occur: "1975-01-01T00:00:03Z" (157766403) 0x889-0x890.7 (8)
|
||||
0x890|03 |. |
|
||||
0x890| 00 00 00 04 | .... | corr: 4 0x891-0x894.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x895-0x8a0.7 (12)
|
||||
0x890| 00 00 00 00 0b 48 86 84 | .....H.. | occur: "1976-01-01T00:00:04Z" (189302404) 0x895-0x89c.7 (8)
|
||||
0x890| 00 00 00| ...| corr: 5 0x89d-0x8a0.7 (4)
|
||||
0x8a0|05 |. |
|
||||
| | | [5]{}: leap_second_record 0x8a1-0x8ac.7 (12)
|
||||
0x8a0| 00 00 00 00 0d 2b 0b 85 | .....+.. | occur: "1977-01-01T00:00:05Z" (220924805) 0x8a1-0x8a8.7 (8)
|
||||
0x8a0| 00 00 00 06 | .... | corr: 6 0x8a9-0x8ac.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x8ad-0x8b8.7 (12)
|
||||
0x8a0| 00 00 00| ...| occur: "1978-01-01T00:00:06Z" (252460806) 0x8ad-0x8b4.7 (8)
|
||||
0x8b0|00 0f 0c 3f 06 |...?. |
|
||||
0x8b0| 00 00 00 07 | .... | corr: 7 0x8b5-0x8b8.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x8b9-0x8c4.7 (12)
|
||||
0x8b0| 00 00 00 00 10 ed 72| ......r| occur: "1979-01-01T00:00:07Z" (283996807) 0x8b9-0x8c0.7 (8)
|
||||
0x8c0|87 |. |
|
||||
0x8c0| 00 00 00 08 | .... | corr: 8 0x8c1-0x8c4.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x8c5-0x8d0.7 (12)
|
||||
0x8c0| 00 00 00 00 12 ce a6 08 | ........ | occur: "1980-01-01T00:00:08Z" (315532808) 0x8c5-0x8cc.7 (8)
|
||||
0x8c0| 00 00 00| ...| corr: 9 0x8cd-0x8d0.7 (4)
|
||||
0x8d0|09 |. |
|
||||
| | | [9]{}: leap_second_record 0x8d1-0x8dc.7 (12)
|
||||
0x8d0| 00 00 00 00 15 9f ca 89 | ........ | occur: "1981-07-01T00:00:09Z" (362793609) 0x8d1-0x8d8.7 (8)
|
||||
0x8d0| 00 00 00 0a | .... | corr: 10 0x8d9-0x8dc.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x8dd-0x8e8.7 (12)
|
||||
0x8d0| 00 00 00| ...| occur: "1982-07-01T00:00:10Z" (394329610) 0x8dd-0x8e4.7 (8)
|
||||
0x8e0|00 17 80 fe 0a |..... |
|
||||
0x8e0| 00 00 00 0b | .... | corr: 11 0x8e5-0x8e8.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x8e9-0x8f4.7 (12)
|
||||
0x8e0| 00 00 00 00 19 62 31| .....b1| occur: "1983-07-01T00:00:11Z" (425865611) 0x8e9-0x8f0.7 (8)
|
||||
0x8f0|8b |. |
|
||||
0x8f0| 00 00 00 0c | .... | corr: 12 0x8f1-0x8f4.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x8f5-0x900.7 (12)
|
||||
0x8f0| 00 00 00 00 1d 25 ea 0c | .....%.. | occur: "1985-07-01T00:00:12Z" (489024012) 0x8f5-0x8fc.7 (8)
|
||||
0x8f0| 00 00 00| ...| corr: 13 0x8fd-0x900.7 (4)
|
||||
0x900|0d |. |
|
||||
| | | [13]{}: leap_second_record 0x901-0x90c.7 (12)
|
||||
0x900| 00 00 00 00 21 da e5 0d | ....!... | occur: "1988-01-01T00:00:13Z" (567993613) 0x901-0x908.7 (8)
|
||||
0x900| 00 00 00 0e | .... | corr: 14 0x909-0x90c.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x90d-0x918.7 (12)
|
||||
0x900| 00 00 00| ...| occur: "1990-01-01T00:00:14Z" (631152014) 0x90d-0x914.7 (8)
|
||||
0x910|00 25 9e 9d 8e |.%... |
|
||||
0x910| 00 00 00 0f | .... | corr: 15 0x915-0x918.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x919-0x924.7 (12)
|
||||
0x910| 00 00 00 00 27 7f d1| ....'..| occur: "1991-01-01T00:00:15Z" (662688015) 0x919-0x920.7 (8)
|
||||
0x920|0f |. |
|
||||
0x920| 00 00 00 10 | .... | corr: 16 0x921-0x924.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x925-0x930.7 (12)
|
||||
0x920| 00 00 00 00 2a 50 f5 90 | ....*P.. | occur: "1992-07-01T00:00:16Z" (709948816) 0x925-0x92c.7 (8)
|
||||
0x920| 00 00 00| ...| corr: 17 0x92d-0x930.7 (4)
|
||||
0x930|11 |. |
|
||||
| | | [17]{}: leap_second_record 0x931-0x93c.7 (12)
|
||||
0x930| 00 00 00 00 2c 32 29 11 | ....,2). | occur: "1993-07-01T00:00:17Z" (741484817) 0x931-0x938.7 (8)
|
||||
0x930| 00 00 00 12 | .... | corr: 18 0x939-0x93c.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x93d-0x948.7 (12)
|
||||
0x930| 00 00 00| ...| occur: "1994-07-01T00:00:18Z" (773020818) 0x93d-0x944.7 (8)
|
||||
0x940|00 2e 13 5c 92 |...\. |
|
||||
0x940| 00 00 00 13 | .... | corr: 19 0x945-0x948.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x949-0x954.7 (12)
|
||||
0x940| 00 00 00 00 30 e7 24| ....0.$| occur: "1996-01-01T00:00:19Z" (820454419) 0x949-0x950.7 (8)
|
||||
0x950|13 |. |
|
||||
0x950| 00 00 00 14 | .... | corr: 20 0x951-0x954.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x955-0x960.7 (12)
|
||||
0x950| 00 00 00 00 33 b8 48 94 | ....3.H. | occur: "1997-07-01T00:00:20Z" (867715220) 0x955-0x95c.7 (8)
|
||||
0x950| 00 00 00| ...| corr: 21 0x95d-0x960.7 (4)
|
||||
0x960|15 |. |
|
||||
| | | [21]{}: leap_second_record 0x961-0x96c.7 (12)
|
||||
0x960| 00 00 00 00 36 8c 10 15 | ....6... | occur: "1999-01-01T00:00:21Z" (915148821) 0x961-0x968.7 (8)
|
||||
0x960| 00 00 00 16 | .... | corr: 22 0x969-0x96c.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x96d-0x978.7 (12)
|
||||
0x960| 00 00 00| ...| occur: "2006-01-01T00:00:22Z" (1136073622) 0x96d-0x974.7 (8)
|
||||
0x970|00 43 b7 1b 96 |.C... |
|
||||
0x970| 00 00 00 17 | .... | corr: 23 0x975-0x978.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x979-0x984.7 (12)
|
||||
0x970| 00 00 00 00 49 5c 07| ....I\.| occur: "2009-01-01T00:00:23Z" (1230768023) 0x979-0x980.7 (8)
|
||||
0x980|97 |. |
|
||||
0x980| 00 00 00 18 | .... | corr: 24 0x981-0x984.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x985-0x990.7 (12)
|
||||
0x980| 00 00 00 00 4f ef 93 18 | ....O... | occur: "2012-07-01T00:00:24Z" (1341100824) 0x985-0x98c.7 (8)
|
||||
0x980| 00 00 00| ...| corr: 25 0x98d-0x990.7 (4)
|
||||
0x990|19 |. |
|
||||
| | | [25]{}: leap_second_record 0x991-0x99c.7 (12)
|
||||
0x990| 00 00 00 00 55 93 2d 99 | ....U.-. | occur: "2015-07-01T00:00:25Z" (1435708825) 0x991-0x998.7 (8)
|
||||
0x990| 00 00 00 1a | .... | corr: 26 0x999-0x99c.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x99d-0x9a8.7 (12)
|
||||
0x990| 00 00 00| ...| occur: "2017-01-01T00:00:26Z" (1483228826) 0x99d-0x9a4.7 (8)
|
||||
0x9a0|00 58 68 46 9a |.XhF. |
|
||||
0x9a0| 00 00 00 1b | .... | corr: 27 0x9a5-0x9a8.7 (4)
|
||||
| | | standard_wall_indicators[0:10]: 0x9a9-0x9b2.7 (10)
|
||||
0x9a0| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x9a9-0x9a9.7 (1)
|
||||
0x9a0| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x9aa-0x9aa.7 (1)
|
||||
0x9a0| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x9ab-0x9ab.7 (1)
|
||||
0x9a0| 00 | . | [3]: 0 standard_wall_indicator (valid) 0x9ac-0x9ac.7 (1)
|
||||
0x9a0| 01 | . | [4]: 1 standard_wall_indicator (valid) 0x9ad-0x9ad.7 (1)
|
||||
0x9a0| 00 | . | [5]: 0 standard_wall_indicator (valid) 0x9ae-0x9ae.7 (1)
|
||||
0x9a0| 00| .| [6]: 0 standard_wall_indicator (valid) 0x9af-0x9af.7 (1)
|
||||
0x9b0|00 |. | [7]: 0 standard_wall_indicator (valid) 0x9b0-0x9b0.7 (1)
|
||||
0x9b0| 00 | . | [8]: 0 standard_wall_indicator (valid) 0x9b1-0x9b1.7 (1)
|
||||
0x9b0| 00 | . | [9]: 0 standard_wall_indicator (valid) 0x9b2-0x9b2.7 (1)
|
||||
| | | ut_local_indicators[0:10]: 0x9b3-0x9bc.7 (10)
|
||||
0x9b0| 00 | . | [0]: 0 ut_local_indicator (valid) 0x9b3-0x9b3.7 (1)
|
||||
0x9b0| 00 | . | [1]: 0 ut_local_indicator (valid) 0x9b4-0x9b4.7 (1)
|
||||
0x9b0| 00 | . | [2]: 0 ut_local_indicator (valid) 0x9b5-0x9b5.7 (1)
|
||||
0x9b0| 00 | . | [3]: 0 ut_local_indicator (valid) 0x9b6-0x9b6.7 (1)
|
||||
0x9b0| 01 | . | [4]: 1 ut_local_indicator (valid) 0x9b7-0x9b7.7 (1)
|
||||
0x9b0| 00 | . | [5]: 0 ut_local_indicator (valid) 0x9b8-0x9b8.7 (1)
|
||||
0x9b0| 00 | . | [6]: 0 ut_local_indicator (valid) 0x9b9-0x9b9.7 (1)
|
||||
0x9b0| 00 | . | [7]: 0 ut_local_indicator (valid) 0x9ba-0x9ba.7 (1)
|
||||
0x9b0| 00 | . | [8]: 0 ut_local_indicator (valid) 0x9bb-0x9bb.7 (1)
|
||||
0x9b0| 00 | . | [9]: 0 ut_local_indicator (valid) 0x9bc-0x9bc.7 (1)
|
||||
| | | footer{}: 0x9bd-0x9be.7 (2)
|
||||
0x9b0| 0a | . | nl1: 10 (valid) 0x9bd-0x9bd.7 (1)
|
||||
| | | tz_string: "" 0x9be-NA (0)
|
||||
0x9b0| 0a| | .|| nl2: 10 (valid) 0x9be-0x9be.7 (1)
|
BIN
format/tzif/testdata/Andorra
vendored
Normal file
BIN
format/tzif/testdata/Andorra
vendored
Normal file
Binary file not shown.
604
format/tzif/testdata/Andorra.fqtest
vendored
Normal file
604
format/tzif/testdata/Andorra.fqtest
vendored
Normal file
@ -0,0 +1,604 @@
|
||||
$ fq -d tzif dv Andorra
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: Andorra (tzif) 0x0-0x6cd.7 (1742)
|
||||
| | | v1header{}: 0x0-0x2b.7 (44)
|
||||
0x000|54 5a 69 66 |TZif | magic: 0x545a6966 (valid) 0x0-0x3.7 (4)
|
||||
0x000| 32 | 2 | ver: "2" (0x32) (valid) 0x4-0x4.7 (1)
|
||||
0x000| 00 00 00 00 00 00 00 00 00 00 00| ...........| reserved: raw bits 0x5-0x13.7 (15)
|
||||
0x010|00 00 00 00 |.... |
|
||||
0x010| 00 00 00 05 | .... | isutcnt: 5 0x14-0x17.7 (4)
|
||||
0x010| 00 00 00 05 | .... | isstdcnt: 5 0x18-0x1b.7 (4)
|
||||
0x010| 00 00 00 00| ....| leapcnt: 0 0x1c-0x1f.7 (4)
|
||||
0x020|00 00 00 6c |...l | timecnt: 108 0x20-0x23.7 (4)
|
||||
0x020| 00 00 00 05 | .... | typecnt: 5 0x24-0x27.7 (4)
|
||||
0x020| 00 00 00 11 | .... | charcnt: 17 0x28-0x2b.7 (4)
|
||||
| | | v1datablock{}: 0x2c-0x280.7 (597)
|
||||
| | | transition_times[0:108]: 0x2c-0x1db.7 (432)
|
||||
0x020| 80 00 00 00| ....| [0]: "1901-12-13T20:45:52Z" (-2147483648) transition_time 0x2c-0x2f.7 (4)
|
||||
0x030|d4 41 db 00 |.A.. | [1]: "1946-09-30T00:00:00Z" (-733881600) transition_time 0x30-0x33.7 (4)
|
||||
0x030| 1c ac ae 10 | .... | [2]: "1985-03-31T01:00:00Z" (481078800) transition_time 0x34-0x37.7 (4)
|
||||
0x030| 1d 9c 9f 10 | .... | [3]: "1985-09-29T01:00:00Z" (496803600) transition_time 0x38-0x3b.7 (4)
|
||||
0x030| 1e 8c 90 10| ....| [4]: "1986-03-30T01:00:00Z" (512528400) transition_time 0x3c-0x3f.7 (4)
|
||||
0x040|1f 7c 81 10 |.|.. | [5]: "1986-09-28T01:00:00Z" (528253200) transition_time 0x40-0x43.7 (4)
|
||||
0x040| 20 6c 72 10 | lr. | [6]: "1987-03-29T01:00:00Z" (543978000) transition_time 0x44-0x47.7 (4)
|
||||
0x040| 21 5c 63 10 | !\c. | [7]: "1987-09-27T01:00:00Z" (559702800) transition_time 0x48-0x4b.7 (4)
|
||||
0x040| 22 4c 54 10| "LT.| [8]: "1988-03-27T01:00:00Z" (575427600) transition_time 0x4c-0x4f.7 (4)
|
||||
0x050|23 3c 45 10 |#<E. | [9]: "1988-09-25T01:00:00Z" (591152400) transition_time 0x50-0x53.7 (4)
|
||||
0x050| 24 2c 36 10 | $,6. | [10]: "1989-03-26T01:00:00Z" (606877200) transition_time 0x54-0x57.7 (4)
|
||||
0x050| 25 1c 27 10 | %.'. | [11]: "1989-09-24T01:00:00Z" (622602000) transition_time 0x58-0x5b.7 (4)
|
||||
0x050| 26 0c 18 10| &...| [12]: "1990-03-25T01:00:00Z" (638326800) transition_time 0x5c-0x5f.7 (4)
|
||||
0x060|27 05 43 90 |'.C. | [13]: "1990-09-30T01:00:00Z" (654656400) transition_time 0x60-0x63.7 (4)
|
||||
0x060| 27 f5 34 90 | '.4. | [14]: "1991-03-31T01:00:00Z" (670381200) transition_time 0x64-0x67.7 (4)
|
||||
0x060| 28 e5 25 90 | (.%. | [15]: "1991-09-29T01:00:00Z" (686106000) transition_time 0x68-0x6b.7 (4)
|
||||
0x060| 29 d5 16 90| )...| [16]: "1992-03-29T01:00:00Z" (701830800) transition_time 0x6c-0x6f.7 (4)
|
||||
0x070|2a c5 07 90 |*... | [17]: "1992-09-27T01:00:00Z" (717555600) transition_time 0x70-0x73.7 (4)
|
||||
0x070| 2b b4 f8 90 | +... | [18]: "1993-03-28T01:00:00Z" (733280400) transition_time 0x74-0x77.7 (4)
|
||||
0x070| 2c a4 e9 90 | ,... | [19]: "1993-09-26T01:00:00Z" (749005200) transition_time 0x78-0x7b.7 (4)
|
||||
0x070| 2d 94 da 90| -...| [20]: "1994-03-27T01:00:00Z" (764730000) transition_time 0x7c-0x7f.7 (4)
|
||||
0x080|2e 84 cb 90 |.... | [21]: "1994-09-25T01:00:00Z" (780454800) transition_time 0x80-0x83.7 (4)
|
||||
0x080| 2f 74 bc 90 | /t.. | [22]: "1995-03-26T01:00:00Z" (796179600) transition_time 0x84-0x87.7 (4)
|
||||
0x080| 30 64 ad 90 | 0d.. | [23]: "1995-09-24T01:00:00Z" (811904400) transition_time 0x88-0x8b.7 (4)
|
||||
0x080| 31 5d d9 10| 1]..| [24]: "1996-03-31T01:00:00Z" (828234000) transition_time 0x8c-0x8f.7 (4)
|
||||
0x090|32 72 b4 10 |2r.. | [25]: "1996-10-27T01:00:00Z" (846378000) transition_time 0x90-0x93.7 (4)
|
||||
0x090| 33 3d bb 10 | 3=.. | [26]: "1997-03-30T01:00:00Z" (859683600) transition_time 0x94-0x97.7 (4)
|
||||
0x090| 34 52 96 10 | 4R.. | [27]: "1997-10-26T01:00:00Z" (877827600) transition_time 0x98-0x9b.7 (4)
|
||||
0x090| 35 1d 9d 10| 5...| [28]: "1998-03-29T01:00:00Z" (891133200) transition_time 0x9c-0x9f.7 (4)
|
||||
0x0a0|36 32 78 10 |62x. | [29]: "1998-10-25T01:00:00Z" (909277200) transition_time 0xa0-0xa3.7 (4)
|
||||
0x0a0| 36 fd 7f 10 | 6... | [30]: "1999-03-28T01:00:00Z" (922582800) transition_time 0xa4-0xa7.7 (4)
|
||||
0x0a0| 38 1b 94 90 | 8... | [31]: "1999-10-31T01:00:00Z" (941331600) transition_time 0xa8-0xab.7 (4)
|
||||
0x0a0| 38 dd 61 10| 8.a.| [32]: "2000-03-26T01:00:00Z" (954032400) transition_time 0xac-0xaf.7 (4)
|
||||
0x0b0|39 fb 76 90 |9.v. | [33]: "2000-10-29T01:00:00Z" (972781200) transition_time 0xb0-0xb3.7 (4)
|
||||
0x0b0| 3a bd 43 10 | :.C. | [34]: "2001-03-25T01:00:00Z" (985482000) transition_time 0xb4-0xb7.7 (4)
|
||||
0x0b0| 3b db 58 90 | ;.X. | [35]: "2001-10-28T01:00:00Z" (1004230800) transition_time 0xb8-0xbb.7 (4)
|
||||
0x0b0| 3c a6 5f 90| <._.| [36]: "2002-03-31T01:00:00Z" (1017536400) transition_time 0xbc-0xbf.7 (4)
|
||||
0x0c0|3d bb 3a 90 |=.:. | [37]: "2002-10-27T01:00:00Z" (1035680400) transition_time 0xc0-0xc3.7 (4)
|
||||
0x0c0| 3e 86 41 90 | >.A. | [38]: "2003-03-30T01:00:00Z" (1048986000) transition_time 0xc4-0xc7.7 (4)
|
||||
0x0c0| 3f 9b 1c 90 | ?... | [39]: "2003-10-26T01:00:00Z" (1067130000) transition_time 0xc8-0xcb.7 (4)
|
||||
0x0c0| 40 66 23 90| @f#.| [40]: "2004-03-28T01:00:00Z" (1080435600) transition_time 0xcc-0xcf.7 (4)
|
||||
0x0d0|41 84 39 10 |A.9. | [41]: "2004-10-31T01:00:00Z" (1099184400) transition_time 0xd0-0xd3.7 (4)
|
||||
0x0d0| 42 46 05 90 | BF.. | [42]: "2005-03-27T01:00:00Z" (1111885200) transition_time 0xd4-0xd7.7 (4)
|
||||
0x0d0| 43 64 1b 10 | Cd.. | [43]: "2005-10-30T01:00:00Z" (1130634000) transition_time 0xd8-0xdb.7 (4)
|
||||
0x0d0| 44 25 e7 90| D%..| [44]: "2006-03-26T01:00:00Z" (1143334800) transition_time 0xdc-0xdf.7 (4)
|
||||
0x0e0|45 43 fd 10 |EC.. | [45]: "2006-10-29T01:00:00Z" (1162083600) transition_time 0xe0-0xe3.7 (4)
|
||||
0x0e0| 46 05 c9 90 | F... | [46]: "2007-03-25T01:00:00Z" (1174784400) transition_time 0xe4-0xe7.7 (4)
|
||||
0x0e0| 47 23 df 10 | G#.. | [47]: "2007-10-28T01:00:00Z" (1193533200) transition_time 0xe8-0xeb.7 (4)
|
||||
0x0e0| 47 ee e6 10| G...| [48]: "2008-03-30T01:00:00Z" (1206838800) transition_time 0xec-0xef.7 (4)
|
||||
0x0f0|49 03 c1 10 |I... | [49]: "2008-10-26T01:00:00Z" (1224982800) transition_time 0xf0-0xf3.7 (4)
|
||||
0x0f0| 49 ce c8 10 | I... | [50]: "2009-03-29T01:00:00Z" (1238288400) transition_time 0xf4-0xf7.7 (4)
|
||||
0x0f0| 4a e3 a3 10 | J... | [51]: "2009-10-25T01:00:00Z" (1256432400) transition_time 0xf8-0xfb.7 (4)
|
||||
0x0f0| 4b ae aa 10| K...| [52]: "2010-03-28T01:00:00Z" (1269738000) transition_time 0xfc-0xff.7 (4)
|
||||
0x100|4c cc bf 90 |L... | [53]: "2010-10-31T01:00:00Z" (1288486800) transition_time 0x100-0x103.7 (4)
|
||||
0x100| 4d 8e 8c 10 | M... | [54]: "2011-03-27T01:00:00Z" (1301187600) transition_time 0x104-0x107.7 (4)
|
||||
0x100| 4e ac a1 90 | N... | [55]: "2011-10-30T01:00:00Z" (1319936400) transition_time 0x108-0x10b.7 (4)
|
||||
0x100| 4f 6e 6e 10| Onn.| [56]: "2012-03-25T01:00:00Z" (1332637200) transition_time 0x10c-0x10f.7 (4)
|
||||
0x110|50 8c 83 90 |P... | [57]: "2012-10-28T01:00:00Z" (1351386000) transition_time 0x110-0x113.7 (4)
|
||||
0x110| 51 57 8a 90 | QW.. | [58]: "2013-03-31T01:00:00Z" (1364691600) transition_time 0x114-0x117.7 (4)
|
||||
0x110| 52 6c 65 90 | Rle. | [59]: "2013-10-27T01:00:00Z" (1382835600) transition_time 0x118-0x11b.7 (4)
|
||||
0x110| 53 37 6c 90| S7l.| [60]: "2014-03-30T01:00:00Z" (1396141200) transition_time 0x11c-0x11f.7 (4)
|
||||
0x120|54 4c 47 90 |TLG. | [61]: "2014-10-26T01:00:00Z" (1414285200) transition_time 0x120-0x123.7 (4)
|
||||
0x120| 55 17 4e 90 | U.N. | [62]: "2015-03-29T01:00:00Z" (1427590800) transition_time 0x124-0x127.7 (4)
|
||||
0x120| 56 2c 29 90 | V,). | [63]: "2015-10-25T01:00:00Z" (1445734800) transition_time 0x128-0x12b.7 (4)
|
||||
0x120| 56 f7 30 90| V.0.| [64]: "2016-03-27T01:00:00Z" (1459040400) transition_time 0x12c-0x12f.7 (4)
|
||||
0x130|58 15 46 10 |X.F. | [65]: "2016-10-30T01:00:00Z" (1477789200) transition_time 0x130-0x133.7 (4)
|
||||
0x130| 58 d7 12 90 | X... | [66]: "2017-03-26T01:00:00Z" (1490490000) transition_time 0x134-0x137.7 (4)
|
||||
0x130| 59 f5 28 10 | Y.(. | [67]: "2017-10-29T01:00:00Z" (1509238800) transition_time 0x138-0x13b.7 (4)
|
||||
0x130| 5a b6 f4 90| Z...| [68]: "2018-03-25T01:00:00Z" (1521939600) transition_time 0x13c-0x13f.7 (4)
|
||||
0x140|5b d5 0a 10 |[... | [69]: "2018-10-28T01:00:00Z" (1540688400) transition_time 0x140-0x143.7 (4)
|
||||
0x140| 5c a0 11 10 | \... | [70]: "2019-03-31T01:00:00Z" (1553994000) transition_time 0x144-0x147.7 (4)
|
||||
0x140| 5d b4 ec 10 | ]... | [71]: "2019-10-27T01:00:00Z" (1572138000) transition_time 0x148-0x14b.7 (4)
|
||||
0x140| 5e 7f f3 10| ^...| [72]: "2020-03-29T01:00:00Z" (1585443600) transition_time 0x14c-0x14f.7 (4)
|
||||
0x150|5f 94 ce 10 |_... | [73]: "2020-10-25T01:00:00Z" (1603587600) transition_time 0x150-0x153.7 (4)
|
||||
0x150| 60 5f d5 10 | `_.. | [74]: "2021-03-28T01:00:00Z" (1616893200) transition_time 0x154-0x157.7 (4)
|
||||
0x150| 61 7d ea 90 | a}.. | [75]: "2021-10-31T01:00:00Z" (1635642000) transition_time 0x158-0x15b.7 (4)
|
||||
0x150| 62 3f b7 10| b?..| [76]: "2022-03-27T01:00:00Z" (1648342800) transition_time 0x15c-0x15f.7 (4)
|
||||
0x160|63 5d cc 90 |c].. | [77]: "2022-10-30T01:00:00Z" (1667091600) transition_time 0x160-0x163.7 (4)
|
||||
0x160| 64 1f 99 10 | d... | [78]: "2023-03-26T01:00:00Z" (1679792400) transition_time 0x164-0x167.7 (4)
|
||||
0x160| 65 3d ae 90 | e=.. | [79]: "2023-10-29T01:00:00Z" (1698541200) transition_time 0x168-0x16b.7 (4)
|
||||
0x160| 66 08 b5 90| f...| [80]: "2024-03-31T01:00:00Z" (1711846800) transition_time 0x16c-0x16f.7 (4)
|
||||
0x170|67 1d 90 90 |g... | [81]: "2024-10-27T01:00:00Z" (1729990800) transition_time 0x170-0x173.7 (4)
|
||||
0x170| 67 e8 97 90 | g... | [82]: "2025-03-30T01:00:00Z" (1743296400) transition_time 0x174-0x177.7 (4)
|
||||
0x170| 68 fd 72 90 | h.r. | [83]: "2025-10-26T01:00:00Z" (1761440400) transition_time 0x178-0x17b.7 (4)
|
||||
0x170| 69 c8 79 90| i.y.| [84]: "2026-03-29T01:00:00Z" (1774746000) transition_time 0x17c-0x17f.7 (4)
|
||||
0x180|6a dd 54 90 |j.T. | [85]: "2026-10-25T01:00:00Z" (1792890000) transition_time 0x180-0x183.7 (4)
|
||||
0x180| 6b a8 5b 90 | k.[. | [86]: "2027-03-28T01:00:00Z" (1806195600) transition_time 0x184-0x187.7 (4)
|
||||
0x180| 6c c6 71 10 | l.q. | [87]: "2027-10-31T01:00:00Z" (1824944400) transition_time 0x188-0x18b.7 (4)
|
||||
0x180| 6d 88 3d 90| m.=.| [88]: "2028-03-26T01:00:00Z" (1837645200) transition_time 0x18c-0x18f.7 (4)
|
||||
0x190|6e a6 53 10 |n.S. | [89]: "2028-10-29T01:00:00Z" (1856394000) transition_time 0x190-0x193.7 (4)
|
||||
0x190| 6f 68 1f 90 | oh.. | [90]: "2029-03-25T01:00:00Z" (1869094800) transition_time 0x194-0x197.7 (4)
|
||||
0x190| 70 86 35 10 | p.5. | [91]: "2029-10-28T01:00:00Z" (1887843600) transition_time 0x198-0x19b.7 (4)
|
||||
0x190| 71 51 3c 10| qQ<.| [92]: "2030-03-31T01:00:00Z" (1901149200) transition_time 0x19c-0x19f.7 (4)
|
||||
0x1a0|72 66 17 10 |rf.. | [93]: "2030-10-27T01:00:00Z" (1919293200) transition_time 0x1a0-0x1a3.7 (4)
|
||||
0x1a0| 73 31 1e 10 | s1.. | [94]: "2031-03-30T01:00:00Z" (1932598800) transition_time 0x1a4-0x1a7.7 (4)
|
||||
0x1a0| 74 45 f9 10 | tE.. | [95]: "2031-10-26T01:00:00Z" (1950742800) transition_time 0x1a8-0x1ab.7 (4)
|
||||
0x1a0| 75 11 00 10| u...| [96]: "2032-03-28T01:00:00Z" (1964048400) transition_time 0x1ac-0x1af.7 (4)
|
||||
0x1b0|76 2f 15 90 |v/.. | [97]: "2032-10-31T01:00:00Z" (1982797200) transition_time 0x1b0-0x1b3.7 (4)
|
||||
0x1b0| 76 f0 e2 10 | v... | [98]: "2033-03-27T01:00:00Z" (1995498000) transition_time 0x1b4-0x1b7.7 (4)
|
||||
0x1b0| 78 0e f7 90 | x... | [99]: "2033-10-30T01:00:00Z" (2014246800) transition_time 0x1b8-0x1bb.7 (4)
|
||||
0x1b0| 78 d0 c4 10| x...| [100]: "2034-03-26T01:00:00Z" (2026947600) transition_time 0x1bc-0x1bf.7 (4)
|
||||
0x1c0|79 ee d9 90 |y... | [101]: "2034-10-29T01:00:00Z" (2045696400) transition_time 0x1c0-0x1c3.7 (4)
|
||||
0x1c0| 7a b0 a6 10 | z... | [102]: "2035-03-25T01:00:00Z" (2058397200) transition_time 0x1c4-0x1c7.7 (4)
|
||||
0x1c0| 7b ce bb 90 | {... | [103]: "2035-10-28T01:00:00Z" (2077146000) transition_time 0x1c8-0x1cb.7 (4)
|
||||
0x1c0| 7c 99 c2 90| |...| [104]: "2036-03-30T01:00:00Z" (2090451600) transition_time 0x1cc-0x1cf.7 (4)
|
||||
0x1d0|7d ae 9d 90 |}... | [105]: "2036-10-26T01:00:00Z" (2108595600) transition_time 0x1d0-0x1d3.7 (4)
|
||||
0x1d0| 7e 79 a4 90 | ~y.. | [106]: "2037-03-29T01:00:00Z" (2121901200) transition_time 0x1d4-0x1d7.7 (4)
|
||||
0x1d0| 7f 8e 7f 90 | .... | [107]: "2037-10-25T01:00:00Z" (2140045200) transition_time 0x1d8-0x1db.7 (4)
|
||||
| | | transition_types[0:108]: 0x1dc-0x247.7 (108)
|
||||
0x1d0| 01 | . | [0]: 1 transition_type 0x1dc-0x1dc.7 (1)
|
||||
0x1d0| 02 | . | [1]: 2 transition_type 0x1dd-0x1dd.7 (1)
|
||||
0x1d0| 03 | . | [2]: 3 transition_type 0x1de-0x1de.7 (1)
|
||||
0x1d0| 04| .| [3]: 4 transition_type 0x1df-0x1df.7 (1)
|
||||
0x1e0|03 |. | [4]: 3 transition_type 0x1e0-0x1e0.7 (1)
|
||||
0x1e0| 04 | . | [5]: 4 transition_type 0x1e1-0x1e1.7 (1)
|
||||
0x1e0| 03 | . | [6]: 3 transition_type 0x1e2-0x1e2.7 (1)
|
||||
0x1e0| 04 | . | [7]: 4 transition_type 0x1e3-0x1e3.7 (1)
|
||||
0x1e0| 03 | . | [8]: 3 transition_type 0x1e4-0x1e4.7 (1)
|
||||
0x1e0| 04 | . | [9]: 4 transition_type 0x1e5-0x1e5.7 (1)
|
||||
0x1e0| 03 | . | [10]: 3 transition_type 0x1e6-0x1e6.7 (1)
|
||||
0x1e0| 04 | . | [11]: 4 transition_type 0x1e7-0x1e7.7 (1)
|
||||
0x1e0| 03 | . | [12]: 3 transition_type 0x1e8-0x1e8.7 (1)
|
||||
0x1e0| 04 | . | [13]: 4 transition_type 0x1e9-0x1e9.7 (1)
|
||||
0x1e0| 03 | . | [14]: 3 transition_type 0x1ea-0x1ea.7 (1)
|
||||
0x1e0| 04 | . | [15]: 4 transition_type 0x1eb-0x1eb.7 (1)
|
||||
0x1e0| 03 | . | [16]: 3 transition_type 0x1ec-0x1ec.7 (1)
|
||||
0x1e0| 04 | . | [17]: 4 transition_type 0x1ed-0x1ed.7 (1)
|
||||
0x1e0| 03 | . | [18]: 3 transition_type 0x1ee-0x1ee.7 (1)
|
||||
0x1e0| 04| .| [19]: 4 transition_type 0x1ef-0x1ef.7 (1)
|
||||
0x1f0|03 |. | [20]: 3 transition_type 0x1f0-0x1f0.7 (1)
|
||||
0x1f0| 04 | . | [21]: 4 transition_type 0x1f1-0x1f1.7 (1)
|
||||
0x1f0| 03 | . | [22]: 3 transition_type 0x1f2-0x1f2.7 (1)
|
||||
0x1f0| 04 | . | [23]: 4 transition_type 0x1f3-0x1f3.7 (1)
|
||||
0x1f0| 03 | . | [24]: 3 transition_type 0x1f4-0x1f4.7 (1)
|
||||
0x1f0| 04 | . | [25]: 4 transition_type 0x1f5-0x1f5.7 (1)
|
||||
0x1f0| 03 | . | [26]: 3 transition_type 0x1f6-0x1f6.7 (1)
|
||||
0x1f0| 04 | . | [27]: 4 transition_type 0x1f7-0x1f7.7 (1)
|
||||
0x1f0| 03 | . | [28]: 3 transition_type 0x1f8-0x1f8.7 (1)
|
||||
0x1f0| 04 | . | [29]: 4 transition_type 0x1f9-0x1f9.7 (1)
|
||||
0x1f0| 03 | . | [30]: 3 transition_type 0x1fa-0x1fa.7 (1)
|
||||
0x1f0| 04 | . | [31]: 4 transition_type 0x1fb-0x1fb.7 (1)
|
||||
0x1f0| 03 | . | [32]: 3 transition_type 0x1fc-0x1fc.7 (1)
|
||||
0x1f0| 04 | . | [33]: 4 transition_type 0x1fd-0x1fd.7 (1)
|
||||
0x1f0| 03 | . | [34]: 3 transition_type 0x1fe-0x1fe.7 (1)
|
||||
0x1f0| 04| .| [35]: 4 transition_type 0x1ff-0x1ff.7 (1)
|
||||
0x200|03 |. | [36]: 3 transition_type 0x200-0x200.7 (1)
|
||||
0x200| 04 | . | [37]: 4 transition_type 0x201-0x201.7 (1)
|
||||
0x200| 03 | . | [38]: 3 transition_type 0x202-0x202.7 (1)
|
||||
0x200| 04 | . | [39]: 4 transition_type 0x203-0x203.7 (1)
|
||||
0x200| 03 | . | [40]: 3 transition_type 0x204-0x204.7 (1)
|
||||
0x200| 04 | . | [41]: 4 transition_type 0x205-0x205.7 (1)
|
||||
0x200| 03 | . | [42]: 3 transition_type 0x206-0x206.7 (1)
|
||||
0x200| 04 | . | [43]: 4 transition_type 0x207-0x207.7 (1)
|
||||
0x200| 03 | . | [44]: 3 transition_type 0x208-0x208.7 (1)
|
||||
0x200| 04 | . | [45]: 4 transition_type 0x209-0x209.7 (1)
|
||||
0x200| 03 | . | [46]: 3 transition_type 0x20a-0x20a.7 (1)
|
||||
0x200| 04 | . | [47]: 4 transition_type 0x20b-0x20b.7 (1)
|
||||
0x200| 03 | . | [48]: 3 transition_type 0x20c-0x20c.7 (1)
|
||||
0x200| 04 | . | [49]: 4 transition_type 0x20d-0x20d.7 (1)
|
||||
0x200| 03 | . | [50]: 3 transition_type 0x20e-0x20e.7 (1)
|
||||
0x200| 04| .| [51]: 4 transition_type 0x20f-0x20f.7 (1)
|
||||
0x210|03 |. | [52]: 3 transition_type 0x210-0x210.7 (1)
|
||||
0x210| 04 | . | [53]: 4 transition_type 0x211-0x211.7 (1)
|
||||
0x210| 03 | . | [54]: 3 transition_type 0x212-0x212.7 (1)
|
||||
0x210| 04 | . | [55]: 4 transition_type 0x213-0x213.7 (1)
|
||||
0x210| 03 | . | [56]: 3 transition_type 0x214-0x214.7 (1)
|
||||
0x210| 04 | . | [57]: 4 transition_type 0x215-0x215.7 (1)
|
||||
0x210| 03 | . | [58]: 3 transition_type 0x216-0x216.7 (1)
|
||||
0x210| 04 | . | [59]: 4 transition_type 0x217-0x217.7 (1)
|
||||
0x210| 03 | . | [60]: 3 transition_type 0x218-0x218.7 (1)
|
||||
0x210| 04 | . | [61]: 4 transition_type 0x219-0x219.7 (1)
|
||||
0x210| 03 | . | [62]: 3 transition_type 0x21a-0x21a.7 (1)
|
||||
0x210| 04 | . | [63]: 4 transition_type 0x21b-0x21b.7 (1)
|
||||
0x210| 03 | . | [64]: 3 transition_type 0x21c-0x21c.7 (1)
|
||||
0x210| 04 | . | [65]: 4 transition_type 0x21d-0x21d.7 (1)
|
||||
0x210| 03 | . | [66]: 3 transition_type 0x21e-0x21e.7 (1)
|
||||
0x210| 04| .| [67]: 4 transition_type 0x21f-0x21f.7 (1)
|
||||
0x220|03 |. | [68]: 3 transition_type 0x220-0x220.7 (1)
|
||||
0x220| 04 | . | [69]: 4 transition_type 0x221-0x221.7 (1)
|
||||
0x220| 03 | . | [70]: 3 transition_type 0x222-0x222.7 (1)
|
||||
0x220| 04 | . | [71]: 4 transition_type 0x223-0x223.7 (1)
|
||||
0x220| 03 | . | [72]: 3 transition_type 0x224-0x224.7 (1)
|
||||
0x220| 04 | . | [73]: 4 transition_type 0x225-0x225.7 (1)
|
||||
0x220| 03 | . | [74]: 3 transition_type 0x226-0x226.7 (1)
|
||||
0x220| 04 | . | [75]: 4 transition_type 0x227-0x227.7 (1)
|
||||
0x220| 03 | . | [76]: 3 transition_type 0x228-0x228.7 (1)
|
||||
0x220| 04 | . | [77]: 4 transition_type 0x229-0x229.7 (1)
|
||||
0x220| 03 | . | [78]: 3 transition_type 0x22a-0x22a.7 (1)
|
||||
0x220| 04 | . | [79]: 4 transition_type 0x22b-0x22b.7 (1)
|
||||
0x220| 03 | . | [80]: 3 transition_type 0x22c-0x22c.7 (1)
|
||||
0x220| 04 | . | [81]: 4 transition_type 0x22d-0x22d.7 (1)
|
||||
0x220| 03 | . | [82]: 3 transition_type 0x22e-0x22e.7 (1)
|
||||
0x220| 04| .| [83]: 4 transition_type 0x22f-0x22f.7 (1)
|
||||
0x230|03 |. | [84]: 3 transition_type 0x230-0x230.7 (1)
|
||||
0x230| 04 | . | [85]: 4 transition_type 0x231-0x231.7 (1)
|
||||
0x230| 03 | . | [86]: 3 transition_type 0x232-0x232.7 (1)
|
||||
0x230| 04 | . | [87]: 4 transition_type 0x233-0x233.7 (1)
|
||||
0x230| 03 | . | [88]: 3 transition_type 0x234-0x234.7 (1)
|
||||
0x230| 04 | . | [89]: 4 transition_type 0x235-0x235.7 (1)
|
||||
0x230| 03 | . | [90]: 3 transition_type 0x236-0x236.7 (1)
|
||||
0x230| 04 | . | [91]: 4 transition_type 0x237-0x237.7 (1)
|
||||
0x230| 03 | . | [92]: 3 transition_type 0x238-0x238.7 (1)
|
||||
0x230| 04 | . | [93]: 4 transition_type 0x239-0x239.7 (1)
|
||||
0x230| 03 | . | [94]: 3 transition_type 0x23a-0x23a.7 (1)
|
||||
0x230| 04 | . | [95]: 4 transition_type 0x23b-0x23b.7 (1)
|
||||
0x230| 03 | . | [96]: 3 transition_type 0x23c-0x23c.7 (1)
|
||||
0x230| 04 | . | [97]: 4 transition_type 0x23d-0x23d.7 (1)
|
||||
0x230| 03 | . | [98]: 3 transition_type 0x23e-0x23e.7 (1)
|
||||
0x230| 04| .| [99]: 4 transition_type 0x23f-0x23f.7 (1)
|
||||
0x240|03 |. | [100]: 3 transition_type 0x240-0x240.7 (1)
|
||||
0x240| 04 | . | [101]: 4 transition_type 0x241-0x241.7 (1)
|
||||
0x240| 03 | . | [102]: 3 transition_type 0x242-0x242.7 (1)
|
||||
0x240| 04 | . | [103]: 4 transition_type 0x243-0x243.7 (1)
|
||||
0x240| 03 | . | [104]: 3 transition_type 0x244-0x244.7 (1)
|
||||
0x240| 04 | . | [105]: 4 transition_type 0x245-0x245.7 (1)
|
||||
0x240| 03 | . | [106]: 3 transition_type 0x246-0x246.7 (1)
|
||||
0x240| 04 | . | [107]: 4 transition_type 0x247-0x247.7 (1)
|
||||
| | | local_time_type_records[0:5]: 0x248-0x265.7 (30)
|
||||
| | | [0]{}: local_time_type 0x248-0x24d.7 (6)
|
||||
0x240| 00 00 01 6c | ...l | utoff: 364 (valid) 0x248-0x24b.7 (4)
|
||||
0x240| 00 | . | dst: 0 (valid) 0x24c-0x24c.7 (1)
|
||||
0x240| 00 | . | idx: 0 (valid) 0x24d-0x24d.7 (1)
|
||||
| | | [1]{}: local_time_type 0x24e-0x253.7 (6)
|
||||
0x240| 00 00| ..| utoff: 0 (valid) 0x24e-0x251.7 (4)
|
||||
0x250|00 00 |.. |
|
||||
0x250| 00 | . | dst: 0 (valid) 0x252-0x252.7 (1)
|
||||
0x250| 04 | . | idx: 4 (valid) 0x253-0x253.7 (1)
|
||||
| | | [2]{}: local_time_type 0x254-0x259.7 (6)
|
||||
0x250| 00 00 0e 10 | .... | utoff: 3600 (valid) 0x254-0x257.7 (4)
|
||||
0x250| 00 | . | dst: 0 (valid) 0x258-0x258.7 (1)
|
||||
0x250| 08 | . | idx: 8 (valid) 0x259-0x259.7 (1)
|
||||
| | | [3]{}: local_time_type 0x25a-0x25f.7 (6)
|
||||
0x250| 00 00 1c 20 | ... | utoff: 7200 (valid) 0x25a-0x25d.7 (4)
|
||||
0x250| 01 | . | dst: 1 (valid) 0x25e-0x25e.7 (1)
|
||||
0x250| 0c| .| idx: 12 (valid) 0x25f-0x25f.7 (1)
|
||||
| | | [4]{}: local_time_type 0x260-0x265.7 (6)
|
||||
0x260|00 00 0e 10 |.... | utoff: 3600 (valid) 0x260-0x263.7 (4)
|
||||
0x260| 00 | . | dst: 0 (valid) 0x264-0x264.7 (1)
|
||||
0x260| 08 | . | idx: 8 (valid) 0x265-0x265.7 (1)
|
||||
| | | time_zone_designations[0:4]: 0x266-0x276.7 (17)
|
||||
0x260| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x266-0x269.7 (4)
|
||||
0x260| 57 45 54 00 | WET. | [1]: "WET" time_zone_designation 0x26a-0x26d.7 (4)
|
||||
0x260| 43 45| CE| [2]: "CET" time_zone_designation 0x26e-0x271.7 (4)
|
||||
0x270|54 00 |T. |
|
||||
0x270| 43 45 53 54 00 | CEST. | [3]: "CEST" time_zone_designation 0x272-0x276.7 (5)
|
||||
| | | leap_second_records[0:0]: 0x277-NA (0)
|
||||
| | | standard_wall_indicators[0:5]: 0x277-0x27b.7 (5)
|
||||
0x270| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x277-0x277.7 (1)
|
||||
0x270| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x278-0x278.7 (1)
|
||||
0x270| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x279-0x279.7 (1)
|
||||
0x270| 01 | . | [3]: 1 standard_wall_indicator (valid) 0x27a-0x27a.7 (1)
|
||||
0x270| 01 | . | [4]: 1 standard_wall_indicator (valid) 0x27b-0x27b.7 (1)
|
||||
| | | ut_local_indicators[0:5]: 0x27c-0x280.7 (5)
|
||||
0x270| 00 | . | [0]: 0 ut_local_indicator (valid) 0x27c-0x27c.7 (1)
|
||||
0x270| 00 | . | [1]: 0 ut_local_indicator (valid) 0x27d-0x27d.7 (1)
|
||||
0x270| 00 | . | [2]: 0 ut_local_indicator (valid) 0x27e-0x27e.7 (1)
|
||||
0x270| 01| .| [3]: 1 ut_local_indicator (valid) 0x27f-0x27f.7 (1)
|
||||
0x280|01 |. | [4]: 1 ut_local_indicator (valid) 0x280-0x280.7 (1)
|
||||
| | | v2plusheader{}: 0x281-0x2ac.7 (44)
|
||||
0x280| 54 5a 69 66 | TZif | magic: 0x545a6966 (valid) 0x281-0x284.7 (4)
|
||||
0x280| 32 | 2 | ver: "2" (0x32) (valid) 0x285-0x285.7 (1)
|
||||
0x280| 00 00 00 00 00 00 00 00 00 00| ..........| reserved: raw bits 0x286-0x294.7 (15)
|
||||
0x290|00 00 00 00 00 |..... |
|
||||
0x290| 00 00 00 05 | .... | isutcnt: 5 0x295-0x298.7 (4)
|
||||
0x290| 00 00 00 05 | .... | isstdcnt: 5 0x299-0x29c.7 (4)
|
||||
0x290| 00 00 00| ...| leapcnt: 0 0x29d-0x2a0.7 (4)
|
||||
0x2a0|00 |. |
|
||||
0x2a0| 00 00 00 6c | ...l | timecnt: 108 0x2a1-0x2a4.7 (4)
|
||||
0x2a0| 00 00 00 05 | .... | typecnt: 5 0x2a5-0x2a8.7 (4)
|
||||
0x2a0| 00 00 00 11 | .... | charcnt: 17 0x2a9-0x2ac.7 (4)
|
||||
| | | v2plusdatablock{}: 0x2ad-0x6b1.7 (1029)
|
||||
| | | transition_times[0:108]: 0x2ad-0x60c.7 (864)
|
||||
0x2a0| ff ff ff| ...| [0]: "1900-12-31T23:53:56Z" (-2177453164) transition_time 0x2ad-0x2b4.7 (8)
|
||||
0x2b0|ff 7e 36 b3 94 |.~6.. |
|
||||
0x2b0| ff ff ff ff d4 41 db 00 | .....A.. | [1]: "1946-09-30T00:00:00Z" (-733881600) transition_time 0x2b5-0x2bc.7 (8)
|
||||
0x2b0| 00 00 00| ...| [2]: "1985-03-31T01:00:00Z" (481078800) transition_time 0x2bd-0x2c4.7 (8)
|
||||
0x2c0|00 1c ac ae 10 |..... |
|
||||
0x2c0| 00 00 00 00 1d 9c 9f 10 | ........ | [3]: "1985-09-29T01:00:00Z" (496803600) transition_time 0x2c5-0x2cc.7 (8)
|
||||
0x2c0| 00 00 00| ...| [4]: "1986-03-30T01:00:00Z" (512528400) transition_time 0x2cd-0x2d4.7 (8)
|
||||
0x2d0|00 1e 8c 90 10 |..... |
|
||||
0x2d0| 00 00 00 00 1f 7c 81 10 | .....|.. | [5]: "1986-09-28T01:00:00Z" (528253200) transition_time 0x2d5-0x2dc.7 (8)
|
||||
0x2d0| 00 00 00| ...| [6]: "1987-03-29T01:00:00Z" (543978000) transition_time 0x2dd-0x2e4.7 (8)
|
||||
0x2e0|00 20 6c 72 10 |. lr. |
|
||||
0x2e0| 00 00 00 00 21 5c 63 10 | ....!\c. | [7]: "1987-09-27T01:00:00Z" (559702800) transition_time 0x2e5-0x2ec.7 (8)
|
||||
0x2e0| 00 00 00| ...| [8]: "1988-03-27T01:00:00Z" (575427600) transition_time 0x2ed-0x2f4.7 (8)
|
||||
0x2f0|00 22 4c 54 10 |."LT. |
|
||||
0x2f0| 00 00 00 00 23 3c 45 10 | ....#<E. | [9]: "1988-09-25T01:00:00Z" (591152400) transition_time 0x2f5-0x2fc.7 (8)
|
||||
0x2f0| 00 00 00| ...| [10]: "1989-03-26T01:00:00Z" (606877200) transition_time 0x2fd-0x304.7 (8)
|
||||
0x300|00 24 2c 36 10 |.$,6. |
|
||||
0x300| 00 00 00 00 25 1c 27 10 | ....%.'. | [11]: "1989-09-24T01:00:00Z" (622602000) transition_time 0x305-0x30c.7 (8)
|
||||
0x300| 00 00 00| ...| [12]: "1990-03-25T01:00:00Z" (638326800) transition_time 0x30d-0x314.7 (8)
|
||||
0x310|00 26 0c 18 10 |.&... |
|
||||
0x310| 00 00 00 00 27 05 43 90 | ....'.C. | [13]: "1990-09-30T01:00:00Z" (654656400) transition_time 0x315-0x31c.7 (8)
|
||||
0x310| 00 00 00| ...| [14]: "1991-03-31T01:00:00Z" (670381200) transition_time 0x31d-0x324.7 (8)
|
||||
0x320|00 27 f5 34 90 |.'.4. |
|
||||
0x320| 00 00 00 00 28 e5 25 90 | ....(.%. | [15]: "1991-09-29T01:00:00Z" (686106000) transition_time 0x325-0x32c.7 (8)
|
||||
0x320| 00 00 00| ...| [16]: "1992-03-29T01:00:00Z" (701830800) transition_time 0x32d-0x334.7 (8)
|
||||
0x330|00 29 d5 16 90 |.)... |
|
||||
0x330| 00 00 00 00 2a c5 07 90 | ....*... | [17]: "1992-09-27T01:00:00Z" (717555600) transition_time 0x335-0x33c.7 (8)
|
||||
0x330| 00 00 00| ...| [18]: "1993-03-28T01:00:00Z" (733280400) transition_time 0x33d-0x344.7 (8)
|
||||
0x340|00 2b b4 f8 90 |.+... |
|
||||
0x340| 00 00 00 00 2c a4 e9 90 | ....,... | [19]: "1993-09-26T01:00:00Z" (749005200) transition_time 0x345-0x34c.7 (8)
|
||||
0x340| 00 00 00| ...| [20]: "1994-03-27T01:00:00Z" (764730000) transition_time 0x34d-0x354.7 (8)
|
||||
0x350|00 2d 94 da 90 |.-... |
|
||||
0x350| 00 00 00 00 2e 84 cb 90 | ........ | [21]: "1994-09-25T01:00:00Z" (780454800) transition_time 0x355-0x35c.7 (8)
|
||||
0x350| 00 00 00| ...| [22]: "1995-03-26T01:00:00Z" (796179600) transition_time 0x35d-0x364.7 (8)
|
||||
0x360|00 2f 74 bc 90 |./t.. |
|
||||
0x360| 00 00 00 00 30 64 ad 90 | ....0d.. | [23]: "1995-09-24T01:00:00Z" (811904400) transition_time 0x365-0x36c.7 (8)
|
||||
0x360| 00 00 00| ...| [24]: "1996-03-31T01:00:00Z" (828234000) transition_time 0x36d-0x374.7 (8)
|
||||
0x370|00 31 5d d9 10 |.1].. |
|
||||
0x370| 00 00 00 00 32 72 b4 10 | ....2r.. | [25]: "1996-10-27T01:00:00Z" (846378000) transition_time 0x375-0x37c.7 (8)
|
||||
0x370| 00 00 00| ...| [26]: "1997-03-30T01:00:00Z" (859683600) transition_time 0x37d-0x384.7 (8)
|
||||
0x380|00 33 3d bb 10 |.3=.. |
|
||||
0x380| 00 00 00 00 34 52 96 10 | ....4R.. | [27]: "1997-10-26T01:00:00Z" (877827600) transition_time 0x385-0x38c.7 (8)
|
||||
0x380| 00 00 00| ...| [28]: "1998-03-29T01:00:00Z" (891133200) transition_time 0x38d-0x394.7 (8)
|
||||
0x390|00 35 1d 9d 10 |.5... |
|
||||
0x390| 00 00 00 00 36 32 78 10 | ....62x. | [29]: "1998-10-25T01:00:00Z" (909277200) transition_time 0x395-0x39c.7 (8)
|
||||
0x390| 00 00 00| ...| [30]: "1999-03-28T01:00:00Z" (922582800) transition_time 0x39d-0x3a4.7 (8)
|
||||
0x3a0|00 36 fd 7f 10 |.6... |
|
||||
0x3a0| 00 00 00 00 38 1b 94 90 | ....8... | [31]: "1999-10-31T01:00:00Z" (941331600) transition_time 0x3a5-0x3ac.7 (8)
|
||||
0x3a0| 00 00 00| ...| [32]: "2000-03-26T01:00:00Z" (954032400) transition_time 0x3ad-0x3b4.7 (8)
|
||||
0x3b0|00 38 dd 61 10 |.8.a. |
|
||||
0x3b0| 00 00 00 00 39 fb 76 90 | ....9.v. | [33]: "2000-10-29T01:00:00Z" (972781200) transition_time 0x3b5-0x3bc.7 (8)
|
||||
0x3b0| 00 00 00| ...| [34]: "2001-03-25T01:00:00Z" (985482000) transition_time 0x3bd-0x3c4.7 (8)
|
||||
0x3c0|00 3a bd 43 10 |.:.C. |
|
||||
0x3c0| 00 00 00 00 3b db 58 90 | ....;.X. | [35]: "2001-10-28T01:00:00Z" (1004230800) transition_time 0x3c5-0x3cc.7 (8)
|
||||
0x3c0| 00 00 00| ...| [36]: "2002-03-31T01:00:00Z" (1017536400) transition_time 0x3cd-0x3d4.7 (8)
|
||||
0x3d0|00 3c a6 5f 90 |.<._. |
|
||||
0x3d0| 00 00 00 00 3d bb 3a 90 | ....=.:. | [37]: "2002-10-27T01:00:00Z" (1035680400) transition_time 0x3d5-0x3dc.7 (8)
|
||||
0x3d0| 00 00 00| ...| [38]: "2003-03-30T01:00:00Z" (1048986000) transition_time 0x3dd-0x3e4.7 (8)
|
||||
0x3e0|00 3e 86 41 90 |.>.A. |
|
||||
0x3e0| 00 00 00 00 3f 9b 1c 90 | ....?... | [39]: "2003-10-26T01:00:00Z" (1067130000) transition_time 0x3e5-0x3ec.7 (8)
|
||||
0x3e0| 00 00 00| ...| [40]: "2004-03-28T01:00:00Z" (1080435600) transition_time 0x3ed-0x3f4.7 (8)
|
||||
0x3f0|00 40 66 23 90 |.@f#. |
|
||||
0x3f0| 00 00 00 00 41 84 39 10 | ....A.9. | [41]: "2004-10-31T01:00:00Z" (1099184400) transition_time 0x3f5-0x3fc.7 (8)
|
||||
0x3f0| 00 00 00| ...| [42]: "2005-03-27T01:00:00Z" (1111885200) transition_time 0x3fd-0x404.7 (8)
|
||||
0x400|00 42 46 05 90 |.BF.. |
|
||||
0x400| 00 00 00 00 43 64 1b 10 | ....Cd.. | [43]: "2005-10-30T01:00:00Z" (1130634000) transition_time 0x405-0x40c.7 (8)
|
||||
0x400| 00 00 00| ...| [44]: "2006-03-26T01:00:00Z" (1143334800) transition_time 0x40d-0x414.7 (8)
|
||||
0x410|00 44 25 e7 90 |.D%.. |
|
||||
0x410| 00 00 00 00 45 43 fd 10 | ....EC.. | [45]: "2006-10-29T01:00:00Z" (1162083600) transition_time 0x415-0x41c.7 (8)
|
||||
0x410| 00 00 00| ...| [46]: "2007-03-25T01:00:00Z" (1174784400) transition_time 0x41d-0x424.7 (8)
|
||||
0x420|00 46 05 c9 90 |.F... |
|
||||
0x420| 00 00 00 00 47 23 df 10 | ....G#.. | [47]: "2007-10-28T01:00:00Z" (1193533200) transition_time 0x425-0x42c.7 (8)
|
||||
0x420| 00 00 00| ...| [48]: "2008-03-30T01:00:00Z" (1206838800) transition_time 0x42d-0x434.7 (8)
|
||||
0x430|00 47 ee e6 10 |.G... |
|
||||
0x430| 00 00 00 00 49 03 c1 10 | ....I... | [49]: "2008-10-26T01:00:00Z" (1224982800) transition_time 0x435-0x43c.7 (8)
|
||||
0x430| 00 00 00| ...| [50]: "2009-03-29T01:00:00Z" (1238288400) transition_time 0x43d-0x444.7 (8)
|
||||
0x440|00 49 ce c8 10 |.I... |
|
||||
0x440| 00 00 00 00 4a e3 a3 10 | ....J... | [51]: "2009-10-25T01:00:00Z" (1256432400) transition_time 0x445-0x44c.7 (8)
|
||||
0x440| 00 00 00| ...| [52]: "2010-03-28T01:00:00Z" (1269738000) transition_time 0x44d-0x454.7 (8)
|
||||
0x450|00 4b ae aa 10 |.K... |
|
||||
0x450| 00 00 00 00 4c cc bf 90 | ....L... | [53]: "2010-10-31T01:00:00Z" (1288486800) transition_time 0x455-0x45c.7 (8)
|
||||
0x450| 00 00 00| ...| [54]: "2011-03-27T01:00:00Z" (1301187600) transition_time 0x45d-0x464.7 (8)
|
||||
0x460|00 4d 8e 8c 10 |.M... |
|
||||
0x460| 00 00 00 00 4e ac a1 90 | ....N... | [55]: "2011-10-30T01:00:00Z" (1319936400) transition_time 0x465-0x46c.7 (8)
|
||||
0x460| 00 00 00| ...| [56]: "2012-03-25T01:00:00Z" (1332637200) transition_time 0x46d-0x474.7 (8)
|
||||
0x470|00 4f 6e 6e 10 |.Onn. |
|
||||
0x470| 00 00 00 00 50 8c 83 90 | ....P... | [57]: "2012-10-28T01:00:00Z" (1351386000) transition_time 0x475-0x47c.7 (8)
|
||||
0x470| 00 00 00| ...| [58]: "2013-03-31T01:00:00Z" (1364691600) transition_time 0x47d-0x484.7 (8)
|
||||
0x480|00 51 57 8a 90 |.QW.. |
|
||||
0x480| 00 00 00 00 52 6c 65 90 | ....Rle. | [59]: "2013-10-27T01:00:00Z" (1382835600) transition_time 0x485-0x48c.7 (8)
|
||||
0x480| 00 00 00| ...| [60]: "2014-03-30T01:00:00Z" (1396141200) transition_time 0x48d-0x494.7 (8)
|
||||
0x490|00 53 37 6c 90 |.S7l. |
|
||||
0x490| 00 00 00 00 54 4c 47 90 | ....TLG. | [61]: "2014-10-26T01:00:00Z" (1414285200) transition_time 0x495-0x49c.7 (8)
|
||||
0x490| 00 00 00| ...| [62]: "2015-03-29T01:00:00Z" (1427590800) transition_time 0x49d-0x4a4.7 (8)
|
||||
0x4a0|00 55 17 4e 90 |.U.N. |
|
||||
0x4a0| 00 00 00 00 56 2c 29 90 | ....V,). | [63]: "2015-10-25T01:00:00Z" (1445734800) transition_time 0x4a5-0x4ac.7 (8)
|
||||
0x4a0| 00 00 00| ...| [64]: "2016-03-27T01:00:00Z" (1459040400) transition_time 0x4ad-0x4b4.7 (8)
|
||||
0x4b0|00 56 f7 30 90 |.V.0. |
|
||||
0x4b0| 00 00 00 00 58 15 46 10 | ....X.F. | [65]: "2016-10-30T01:00:00Z" (1477789200) transition_time 0x4b5-0x4bc.7 (8)
|
||||
0x4b0| 00 00 00| ...| [66]: "2017-03-26T01:00:00Z" (1490490000) transition_time 0x4bd-0x4c4.7 (8)
|
||||
0x4c0|00 58 d7 12 90 |.X... |
|
||||
0x4c0| 00 00 00 00 59 f5 28 10 | ....Y.(. | [67]: "2017-10-29T01:00:00Z" (1509238800) transition_time 0x4c5-0x4cc.7 (8)
|
||||
0x4c0| 00 00 00| ...| [68]: "2018-03-25T01:00:00Z" (1521939600) transition_time 0x4cd-0x4d4.7 (8)
|
||||
0x4d0|00 5a b6 f4 90 |.Z... |
|
||||
0x4d0| 00 00 00 00 5b d5 0a 10 | ....[... | [69]: "2018-10-28T01:00:00Z" (1540688400) transition_time 0x4d5-0x4dc.7 (8)
|
||||
0x4d0| 00 00 00| ...| [70]: "2019-03-31T01:00:00Z" (1553994000) transition_time 0x4dd-0x4e4.7 (8)
|
||||
0x4e0|00 5c a0 11 10 |.\... |
|
||||
0x4e0| 00 00 00 00 5d b4 ec 10 | ....]... | [71]: "2019-10-27T01:00:00Z" (1572138000) transition_time 0x4e5-0x4ec.7 (8)
|
||||
0x4e0| 00 00 00| ...| [72]: "2020-03-29T01:00:00Z" (1585443600) transition_time 0x4ed-0x4f4.7 (8)
|
||||
0x4f0|00 5e 7f f3 10 |.^... |
|
||||
0x4f0| 00 00 00 00 5f 94 ce 10 | ...._... | [73]: "2020-10-25T01:00:00Z" (1603587600) transition_time 0x4f5-0x4fc.7 (8)
|
||||
0x4f0| 00 00 00| ...| [74]: "2021-03-28T01:00:00Z" (1616893200) transition_time 0x4fd-0x504.7 (8)
|
||||
0x500|00 60 5f d5 10 |.`_.. |
|
||||
0x500| 00 00 00 00 61 7d ea 90 | ....a}.. | [75]: "2021-10-31T01:00:00Z" (1635642000) transition_time 0x505-0x50c.7 (8)
|
||||
0x500| 00 00 00| ...| [76]: "2022-03-27T01:00:00Z" (1648342800) transition_time 0x50d-0x514.7 (8)
|
||||
0x510|00 62 3f b7 10 |.b?.. |
|
||||
0x510| 00 00 00 00 63 5d cc 90 | ....c].. | [77]: "2022-10-30T01:00:00Z" (1667091600) transition_time 0x515-0x51c.7 (8)
|
||||
0x510| 00 00 00| ...| [78]: "2023-03-26T01:00:00Z" (1679792400) transition_time 0x51d-0x524.7 (8)
|
||||
0x520|00 64 1f 99 10 |.d... |
|
||||
0x520| 00 00 00 00 65 3d ae 90 | ....e=.. | [79]: "2023-10-29T01:00:00Z" (1698541200) transition_time 0x525-0x52c.7 (8)
|
||||
0x520| 00 00 00| ...| [80]: "2024-03-31T01:00:00Z" (1711846800) transition_time 0x52d-0x534.7 (8)
|
||||
0x530|00 66 08 b5 90 |.f... |
|
||||
0x530| 00 00 00 00 67 1d 90 90 | ....g... | [81]: "2024-10-27T01:00:00Z" (1729990800) transition_time 0x535-0x53c.7 (8)
|
||||
0x530| 00 00 00| ...| [82]: "2025-03-30T01:00:00Z" (1743296400) transition_time 0x53d-0x544.7 (8)
|
||||
0x540|00 67 e8 97 90 |.g... |
|
||||
0x540| 00 00 00 00 68 fd 72 90 | ....h.r. | [83]: "2025-10-26T01:00:00Z" (1761440400) transition_time 0x545-0x54c.7 (8)
|
||||
0x540| 00 00 00| ...| [84]: "2026-03-29T01:00:00Z" (1774746000) transition_time 0x54d-0x554.7 (8)
|
||||
0x550|00 69 c8 79 90 |.i.y. |
|
||||
0x550| 00 00 00 00 6a dd 54 90 | ....j.T. | [85]: "2026-10-25T01:00:00Z" (1792890000) transition_time 0x555-0x55c.7 (8)
|
||||
0x550| 00 00 00| ...| [86]: "2027-03-28T01:00:00Z" (1806195600) transition_time 0x55d-0x564.7 (8)
|
||||
0x560|00 6b a8 5b 90 |.k.[. |
|
||||
0x560| 00 00 00 00 6c c6 71 10 | ....l.q. | [87]: "2027-10-31T01:00:00Z" (1824944400) transition_time 0x565-0x56c.7 (8)
|
||||
0x560| 00 00 00| ...| [88]: "2028-03-26T01:00:00Z" (1837645200) transition_time 0x56d-0x574.7 (8)
|
||||
0x570|00 6d 88 3d 90 |.m.=. |
|
||||
0x570| 00 00 00 00 6e a6 53 10 | ....n.S. | [89]: "2028-10-29T01:00:00Z" (1856394000) transition_time 0x575-0x57c.7 (8)
|
||||
0x570| 00 00 00| ...| [90]: "2029-03-25T01:00:00Z" (1869094800) transition_time 0x57d-0x584.7 (8)
|
||||
0x580|00 6f 68 1f 90 |.oh.. |
|
||||
0x580| 00 00 00 00 70 86 35 10 | ....p.5. | [91]: "2029-10-28T01:00:00Z" (1887843600) transition_time 0x585-0x58c.7 (8)
|
||||
0x580| 00 00 00| ...| [92]: "2030-03-31T01:00:00Z" (1901149200) transition_time 0x58d-0x594.7 (8)
|
||||
0x590|00 71 51 3c 10 |.qQ<. |
|
||||
0x590| 00 00 00 00 72 66 17 10 | ....rf.. | [93]: "2030-10-27T01:00:00Z" (1919293200) transition_time 0x595-0x59c.7 (8)
|
||||
0x590| 00 00 00| ...| [94]: "2031-03-30T01:00:00Z" (1932598800) transition_time 0x59d-0x5a4.7 (8)
|
||||
0x5a0|00 73 31 1e 10 |.s1.. |
|
||||
0x5a0| 00 00 00 00 74 45 f9 10 | ....tE.. | [95]: "2031-10-26T01:00:00Z" (1950742800) transition_time 0x5a5-0x5ac.7 (8)
|
||||
0x5a0| 00 00 00| ...| [96]: "2032-03-28T01:00:00Z" (1964048400) transition_time 0x5ad-0x5b4.7 (8)
|
||||
0x5b0|00 75 11 00 10 |.u... |
|
||||
0x5b0| 00 00 00 00 76 2f 15 90 | ....v/.. | [97]: "2032-10-31T01:00:00Z" (1982797200) transition_time 0x5b5-0x5bc.7 (8)
|
||||
0x5b0| 00 00 00| ...| [98]: "2033-03-27T01:00:00Z" (1995498000) transition_time 0x5bd-0x5c4.7 (8)
|
||||
0x5c0|00 76 f0 e2 10 |.v... |
|
||||
0x5c0| 00 00 00 00 78 0e f7 90 | ....x... | [99]: "2033-10-30T01:00:00Z" (2014246800) transition_time 0x5c5-0x5cc.7 (8)
|
||||
0x5c0| 00 00 00| ...| [100]: "2034-03-26T01:00:00Z" (2026947600) transition_time 0x5cd-0x5d4.7 (8)
|
||||
0x5d0|00 78 d0 c4 10 |.x... |
|
||||
0x5d0| 00 00 00 00 79 ee d9 90 | ....y... | [101]: "2034-10-29T01:00:00Z" (2045696400) transition_time 0x5d5-0x5dc.7 (8)
|
||||
0x5d0| 00 00 00| ...| [102]: "2035-03-25T01:00:00Z" (2058397200) transition_time 0x5dd-0x5e4.7 (8)
|
||||
0x5e0|00 7a b0 a6 10 |.z... |
|
||||
0x5e0| 00 00 00 00 7b ce bb 90 | ....{... | [103]: "2035-10-28T01:00:00Z" (2077146000) transition_time 0x5e5-0x5ec.7 (8)
|
||||
0x5e0| 00 00 00| ...| [104]: "2036-03-30T01:00:00Z" (2090451600) transition_time 0x5ed-0x5f4.7 (8)
|
||||
0x5f0|00 7c 99 c2 90 |.|... |
|
||||
0x5f0| 00 00 00 00 7d ae 9d 90 | ....}... | [105]: "2036-10-26T01:00:00Z" (2108595600) transition_time 0x5f5-0x5fc.7 (8)
|
||||
0x5f0| 00 00 00| ...| [106]: "2037-03-29T01:00:00Z" (2121901200) transition_time 0x5fd-0x604.7 (8)
|
||||
0x600|00 7e 79 a4 90 |.~y.. |
|
||||
0x600| 00 00 00 00 7f 8e 7f 90 | ........ | [107]: "2037-10-25T01:00:00Z" (2140045200) transition_time 0x605-0x60c.7 (8)
|
||||
| | | transition_types[0:108]: 0x60d-0x678.7 (108)
|
||||
0x600| 01 | . | [0]: 1 transition_type 0x60d-0x60d.7 (1)
|
||||
0x600| 02 | . | [1]: 2 transition_type 0x60e-0x60e.7 (1)
|
||||
0x600| 03| .| [2]: 3 transition_type 0x60f-0x60f.7 (1)
|
||||
0x610|04 |. | [3]: 4 transition_type 0x610-0x610.7 (1)
|
||||
0x610| 03 | . | [4]: 3 transition_type 0x611-0x611.7 (1)
|
||||
0x610| 04 | . | [5]: 4 transition_type 0x612-0x612.7 (1)
|
||||
0x610| 03 | . | [6]: 3 transition_type 0x613-0x613.7 (1)
|
||||
0x610| 04 | . | [7]: 4 transition_type 0x614-0x614.7 (1)
|
||||
0x610| 03 | . | [8]: 3 transition_type 0x615-0x615.7 (1)
|
||||
0x610| 04 | . | [9]: 4 transition_type 0x616-0x616.7 (1)
|
||||
0x610| 03 | . | [10]: 3 transition_type 0x617-0x617.7 (1)
|
||||
0x610| 04 | . | [11]: 4 transition_type 0x618-0x618.7 (1)
|
||||
0x610| 03 | . | [12]: 3 transition_type 0x619-0x619.7 (1)
|
||||
0x610| 04 | . | [13]: 4 transition_type 0x61a-0x61a.7 (1)
|
||||
0x610| 03 | . | [14]: 3 transition_type 0x61b-0x61b.7 (1)
|
||||
0x610| 04 | . | [15]: 4 transition_type 0x61c-0x61c.7 (1)
|
||||
0x610| 03 | . | [16]: 3 transition_type 0x61d-0x61d.7 (1)
|
||||
0x610| 04 | . | [17]: 4 transition_type 0x61e-0x61e.7 (1)
|
||||
0x610| 03| .| [18]: 3 transition_type 0x61f-0x61f.7 (1)
|
||||
0x620|04 |. | [19]: 4 transition_type 0x620-0x620.7 (1)
|
||||
0x620| 03 | . | [20]: 3 transition_type 0x621-0x621.7 (1)
|
||||
0x620| 04 | . | [21]: 4 transition_type 0x622-0x622.7 (1)
|
||||
0x620| 03 | . | [22]: 3 transition_type 0x623-0x623.7 (1)
|
||||
0x620| 04 | . | [23]: 4 transition_type 0x624-0x624.7 (1)
|
||||
0x620| 03 | . | [24]: 3 transition_type 0x625-0x625.7 (1)
|
||||
0x620| 04 | . | [25]: 4 transition_type 0x626-0x626.7 (1)
|
||||
0x620| 03 | . | [26]: 3 transition_type 0x627-0x627.7 (1)
|
||||
0x620| 04 | . | [27]: 4 transition_type 0x628-0x628.7 (1)
|
||||
0x620| 03 | . | [28]: 3 transition_type 0x629-0x629.7 (1)
|
||||
0x620| 04 | . | [29]: 4 transition_type 0x62a-0x62a.7 (1)
|
||||
0x620| 03 | . | [30]: 3 transition_type 0x62b-0x62b.7 (1)
|
||||
0x620| 04 | . | [31]: 4 transition_type 0x62c-0x62c.7 (1)
|
||||
0x620| 03 | . | [32]: 3 transition_type 0x62d-0x62d.7 (1)
|
||||
0x620| 04 | . | [33]: 4 transition_type 0x62e-0x62e.7 (1)
|
||||
0x620| 03| .| [34]: 3 transition_type 0x62f-0x62f.7 (1)
|
||||
0x630|04 |. | [35]: 4 transition_type 0x630-0x630.7 (1)
|
||||
0x630| 03 | . | [36]: 3 transition_type 0x631-0x631.7 (1)
|
||||
0x630| 04 | . | [37]: 4 transition_type 0x632-0x632.7 (1)
|
||||
0x630| 03 | . | [38]: 3 transition_type 0x633-0x633.7 (1)
|
||||
0x630| 04 | . | [39]: 4 transition_type 0x634-0x634.7 (1)
|
||||
0x630| 03 | . | [40]: 3 transition_type 0x635-0x635.7 (1)
|
||||
0x630| 04 | . | [41]: 4 transition_type 0x636-0x636.7 (1)
|
||||
0x630| 03 | . | [42]: 3 transition_type 0x637-0x637.7 (1)
|
||||
0x630| 04 | . | [43]: 4 transition_type 0x638-0x638.7 (1)
|
||||
0x630| 03 | . | [44]: 3 transition_type 0x639-0x639.7 (1)
|
||||
0x630| 04 | . | [45]: 4 transition_type 0x63a-0x63a.7 (1)
|
||||
0x630| 03 | . | [46]: 3 transition_type 0x63b-0x63b.7 (1)
|
||||
0x630| 04 | . | [47]: 4 transition_type 0x63c-0x63c.7 (1)
|
||||
0x630| 03 | . | [48]: 3 transition_type 0x63d-0x63d.7 (1)
|
||||
0x630| 04 | . | [49]: 4 transition_type 0x63e-0x63e.7 (1)
|
||||
0x630| 03| .| [50]: 3 transition_type 0x63f-0x63f.7 (1)
|
||||
0x640|04 |. | [51]: 4 transition_type 0x640-0x640.7 (1)
|
||||
0x640| 03 | . | [52]: 3 transition_type 0x641-0x641.7 (1)
|
||||
0x640| 04 | . | [53]: 4 transition_type 0x642-0x642.7 (1)
|
||||
0x640| 03 | . | [54]: 3 transition_type 0x643-0x643.7 (1)
|
||||
0x640| 04 | . | [55]: 4 transition_type 0x644-0x644.7 (1)
|
||||
0x640| 03 | . | [56]: 3 transition_type 0x645-0x645.7 (1)
|
||||
0x640| 04 | . | [57]: 4 transition_type 0x646-0x646.7 (1)
|
||||
0x640| 03 | . | [58]: 3 transition_type 0x647-0x647.7 (1)
|
||||
0x640| 04 | . | [59]: 4 transition_type 0x648-0x648.7 (1)
|
||||
0x640| 03 | . | [60]: 3 transition_type 0x649-0x649.7 (1)
|
||||
0x640| 04 | . | [61]: 4 transition_type 0x64a-0x64a.7 (1)
|
||||
0x640| 03 | . | [62]: 3 transition_type 0x64b-0x64b.7 (1)
|
||||
0x640| 04 | . | [63]: 4 transition_type 0x64c-0x64c.7 (1)
|
||||
0x640| 03 | . | [64]: 3 transition_type 0x64d-0x64d.7 (1)
|
||||
0x640| 04 | . | [65]: 4 transition_type 0x64e-0x64e.7 (1)
|
||||
0x640| 03| .| [66]: 3 transition_type 0x64f-0x64f.7 (1)
|
||||
0x650|04 |. | [67]: 4 transition_type 0x650-0x650.7 (1)
|
||||
0x650| 03 | . | [68]: 3 transition_type 0x651-0x651.7 (1)
|
||||
0x650| 04 | . | [69]: 4 transition_type 0x652-0x652.7 (1)
|
||||
0x650| 03 | . | [70]: 3 transition_type 0x653-0x653.7 (1)
|
||||
0x650| 04 | . | [71]: 4 transition_type 0x654-0x654.7 (1)
|
||||
0x650| 03 | . | [72]: 3 transition_type 0x655-0x655.7 (1)
|
||||
0x650| 04 | . | [73]: 4 transition_type 0x656-0x656.7 (1)
|
||||
0x650| 03 | . | [74]: 3 transition_type 0x657-0x657.7 (1)
|
||||
0x650| 04 | . | [75]: 4 transition_type 0x658-0x658.7 (1)
|
||||
0x650| 03 | . | [76]: 3 transition_type 0x659-0x659.7 (1)
|
||||
0x650| 04 | . | [77]: 4 transition_type 0x65a-0x65a.7 (1)
|
||||
0x650| 03 | . | [78]: 3 transition_type 0x65b-0x65b.7 (1)
|
||||
0x650| 04 | . | [79]: 4 transition_type 0x65c-0x65c.7 (1)
|
||||
0x650| 03 | . | [80]: 3 transition_type 0x65d-0x65d.7 (1)
|
||||
0x650| 04 | . | [81]: 4 transition_type 0x65e-0x65e.7 (1)
|
||||
0x650| 03| .| [82]: 3 transition_type 0x65f-0x65f.7 (1)
|
||||
0x660|04 |. | [83]: 4 transition_type 0x660-0x660.7 (1)
|
||||
0x660| 03 | . | [84]: 3 transition_type 0x661-0x661.7 (1)
|
||||
0x660| 04 | . | [85]: 4 transition_type 0x662-0x662.7 (1)
|
||||
0x660| 03 | . | [86]: 3 transition_type 0x663-0x663.7 (1)
|
||||
0x660| 04 | . | [87]: 4 transition_type 0x664-0x664.7 (1)
|
||||
0x660| 03 | . | [88]: 3 transition_type 0x665-0x665.7 (1)
|
||||
0x660| 04 | . | [89]: 4 transition_type 0x666-0x666.7 (1)
|
||||
0x660| 03 | . | [90]: 3 transition_type 0x667-0x667.7 (1)
|
||||
0x660| 04 | . | [91]: 4 transition_type 0x668-0x668.7 (1)
|
||||
0x660| 03 | . | [92]: 3 transition_type 0x669-0x669.7 (1)
|
||||
0x660| 04 | . | [93]: 4 transition_type 0x66a-0x66a.7 (1)
|
||||
0x660| 03 | . | [94]: 3 transition_type 0x66b-0x66b.7 (1)
|
||||
0x660| 04 | . | [95]: 4 transition_type 0x66c-0x66c.7 (1)
|
||||
0x660| 03 | . | [96]: 3 transition_type 0x66d-0x66d.7 (1)
|
||||
0x660| 04 | . | [97]: 4 transition_type 0x66e-0x66e.7 (1)
|
||||
0x660| 03| .| [98]: 3 transition_type 0x66f-0x66f.7 (1)
|
||||
0x670|04 |. | [99]: 4 transition_type 0x670-0x670.7 (1)
|
||||
0x670| 03 | . | [100]: 3 transition_type 0x671-0x671.7 (1)
|
||||
0x670| 04 | . | [101]: 4 transition_type 0x672-0x672.7 (1)
|
||||
0x670| 03 | . | [102]: 3 transition_type 0x673-0x673.7 (1)
|
||||
0x670| 04 | . | [103]: 4 transition_type 0x674-0x674.7 (1)
|
||||
0x670| 03 | . | [104]: 3 transition_type 0x675-0x675.7 (1)
|
||||
0x670| 04 | . | [105]: 4 transition_type 0x676-0x676.7 (1)
|
||||
0x670| 03 | . | [106]: 3 transition_type 0x677-0x677.7 (1)
|
||||
0x670| 04 | . | [107]: 4 transition_type 0x678-0x678.7 (1)
|
||||
| | | local_time_type_records[0:5]: 0x679-0x696.7 (30)
|
||||
| | | [0]{}: local_time_type 0x679-0x67e.7 (6)
|
||||
0x670| 00 00 01 6c | ...l | utoff: 364 (valid) 0x679-0x67c.7 (4)
|
||||
0x670| 00 | . | dst: 0 (valid) 0x67d-0x67d.7 (1)
|
||||
0x670| 00 | . | idx: 0 (valid) 0x67e-0x67e.7 (1)
|
||||
| | | [1]{}: local_time_type 0x67f-0x684.7 (6)
|
||||
0x670| 00| .| utoff: 0 (valid) 0x67f-0x682.7 (4)
|
||||
0x680|00 00 00 |... |
|
||||
0x680| 00 | . | dst: 0 (valid) 0x683-0x683.7 (1)
|
||||
0x680| 04 | . | idx: 4 (valid) 0x684-0x684.7 (1)
|
||||
| | | [2]{}: local_time_type 0x685-0x68a.7 (6)
|
||||
0x680| 00 00 0e 10 | .... | utoff: 3600 (valid) 0x685-0x688.7 (4)
|
||||
0x680| 00 | . | dst: 0 (valid) 0x689-0x689.7 (1)
|
||||
0x680| 08 | . | idx: 8 (valid) 0x68a-0x68a.7 (1)
|
||||
| | | [3]{}: local_time_type 0x68b-0x690.7 (6)
|
||||
0x680| 00 00 1c 20 | ... | utoff: 7200 (valid) 0x68b-0x68e.7 (4)
|
||||
0x680| 01| .| dst: 1 (valid) 0x68f-0x68f.7 (1)
|
||||
0x690|0c |. | idx: 12 (valid) 0x690-0x690.7 (1)
|
||||
| | | [4]{}: local_time_type 0x691-0x696.7 (6)
|
||||
0x690| 00 00 0e 10 | .... | utoff: 3600 (valid) 0x691-0x694.7 (4)
|
||||
0x690| 00 | . | dst: 0 (valid) 0x695-0x695.7 (1)
|
||||
0x690| 08 | . | idx: 8 (valid) 0x696-0x696.7 (1)
|
||||
| | | time_zone_designations[0:4]: 0x697-0x6a7.7 (17)
|
||||
0x690| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x697-0x69a.7 (4)
|
||||
0x690| 57 45 54 00 | WET. | [1]: "WET" time_zone_designation 0x69b-0x69e.7 (4)
|
||||
0x690| 43| C| [2]: "CET" time_zone_designation 0x69f-0x6a2.7 (4)
|
||||
0x6a0|45 54 00 |ET. |
|
||||
0x6a0| 43 45 53 54 00 | CEST. | [3]: "CEST" time_zone_designation 0x6a3-0x6a7.7 (5)
|
||||
| | | leap_second_records[0:0]: 0x6a8-NA (0)
|
||||
| | | standard_wall_indicators[0:5]: 0x6a8-0x6ac.7 (5)
|
||||
0x6a0| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x6a8-0x6a8.7 (1)
|
||||
0x6a0| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x6a9-0x6a9.7 (1)
|
||||
0x6a0| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x6aa-0x6aa.7 (1)
|
||||
0x6a0| 01 | . | [3]: 1 standard_wall_indicator (valid) 0x6ab-0x6ab.7 (1)
|
||||
0x6a0| 01 | . | [4]: 1 standard_wall_indicator (valid) 0x6ac-0x6ac.7 (1)
|
||||
| | | ut_local_indicators[0:5]: 0x6ad-0x6b1.7 (5)
|
||||
0x6a0| 00 | . | [0]: 0 ut_local_indicator (valid) 0x6ad-0x6ad.7 (1)
|
||||
0x6a0| 00 | . | [1]: 0 ut_local_indicator (valid) 0x6ae-0x6ae.7 (1)
|
||||
0x6a0| 00| .| [2]: 0 ut_local_indicator (valid) 0x6af-0x6af.7 (1)
|
||||
0x6b0|01 |. | [3]: 1 ut_local_indicator (valid) 0x6b0-0x6b0.7 (1)
|
||||
0x6b0| 01 | . | [4]: 1 ut_local_indicator (valid) 0x6b1-0x6b1.7 (1)
|
||||
| | | footer{}: 0x6b2-0x6cd.7 (28)
|
||||
0x6b0| 0a | . | nl1: 10 (valid) 0x6b2-0x6b2.7 (1)
|
||||
0x6b0| 43 45 54 2d 31 43 45 53 54 2c 4d 33 2e| CET-1CEST,M3.| tz_string: "CET-1CEST,M3.5.0,M10.5.0/3" 0x6b3-0x6cc.7 (26)
|
||||
0x6c0|35 2e 30 2c 4d 31 30 2e 35 2e 30 2f 33 |5.0,M10.5.0/3 |
|
||||
0x6c0| 0a| | .| | nl2: 10 (valid) 0x6cd-0x6cd.7 (1)
|
BIN
format/tzif/testdata/Apia
vendored
Normal file
BIN
format/tzif/testdata/Apia
vendored
Normal file
Binary file not shown.
241
format/tzif/testdata/Apia.fqtest
vendored
Normal file
241
format/tzif/testdata/Apia.fqtest
vendored
Normal file
@ -0,0 +1,241 @@
|
||||
$ fq -d tzif dv Apia
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: Apia (tzif) 0x0-0x263.7 (612)
|
||||
| | | v1header{}: 0x0-0x2b.7 (44)
|
||||
0x000|54 5a 69 66 |TZif | magic: 0x545a6966 (valid) 0x0-0x3.7 (4)
|
||||
0x000| 32 | 2 | ver: "2" (0x32) (valid) 0x4-0x4.7 (1)
|
||||
0x000| 00 00 00 00 00 00 00 00 00 00 00| ...........| reserved: raw bits 0x5-0x13.7 (15)
|
||||
0x010|00 00 00 00 |.... |
|
||||
0x010| 00 00 00 00 | .... | isutcnt: 0 0x14-0x17.7 (4)
|
||||
0x010| 00 00 00 00 | .... | isstdcnt: 0 0x18-0x1b.7 (4)
|
||||
0x010| 00 00 00 00| ....| leapcnt: 0 0x1c-0x1f.7 (4)
|
||||
0x020|00 00 00 1b |.... | timecnt: 27 0x20-0x23.7 (4)
|
||||
0x020| 00 00 00 07 | .... | typecnt: 7 0x24-0x27.7 (4)
|
||||
0x020| 00 00 00 1a | .... | charcnt: 26 0x28-0x2b.7 (4)
|
||||
| | | v1datablock{}: 0x2c-0xf6.7 (203)
|
||||
| | | transition_times[0:27]: 0x2c-0x97.7 (108)
|
||||
0x020| 80 00 00 00| ....| [0]: "1901-12-13T20:45:52Z" (-2147483648) transition_time 0x2c-0x2f.7 (4)
|
||||
0x030|91 05 fc 00 |.... | [1]: "1911-01-01T11:26:56Z" (-1861878784) transition_time 0x30-0x33.7 (4)
|
||||
0x030| da 62 04 38 | .b.8 | [2]: "1950-01-01T11:30:00Z" (-631110600) transition_time 0x34-0x37.7 (4)
|
||||
0x030| 4c 9f 27 b0 | L.'. | [3]: "2010-09-26T11:00:00Z" (1285498800) transition_time 0x38-0x3b.7 (4)
|
||||
0x030| 4d 97 2b e0| M.+.| [4]: "2011-04-02T14:00:00Z" (1301752800) transition_time 0x3c-0x3f.7 (4)
|
||||
0x040|4e 7d e2 60 |N}.` | [5]: "2011-09-24T14:00:00Z" (1316872800) transition_time 0x40-0x43.7 (4)
|
||||
0x040| 4e fd 8b a0 | N... | [6]: "2011-12-30T10:00:00Z" (1325239200) transition_time 0x44-0x47.7 (4)
|
||||
0x040| 4f 77 0d e0 | Ow.. | [7]: "2012-03-31T14:00:00Z" (1333202400) transition_time 0x48-0x4b.7 (4)
|
||||
0x040| 50 66 fe e0| Pf..| [8]: "2012-09-29T14:00:00Z" (1348927200) transition_time 0x4c-0x4f.7 (4)
|
||||
0x050|51 60 2a 60 |Q`*` | [9]: "2013-04-06T14:00:00Z" (1365256800) transition_time 0x50-0x53.7 (4)
|
||||
0x050| 52 46 e0 e0 | RF.. | [10]: "2013-09-28T14:00:00Z" (1380376800) transition_time 0x54-0x57.7 (4)
|
||||
0x050| 53 40 0c 60 | S@.` | [11]: "2014-04-05T14:00:00Z" (1396706400) transition_time 0x58-0x5b.7 (4)
|
||||
0x050| 54 26 c2 e0| T&..| [12]: "2014-09-27T14:00:00Z" (1411826400) transition_time 0x5c-0x5f.7 (4)
|
||||
0x060|55 1f ee 60 |U..` | [13]: "2015-04-04T14:00:00Z" (1428156000) transition_time 0x60-0x63.7 (4)
|
||||
0x060| 56 06 a4 e0 | V... | [14]: "2015-09-26T14:00:00Z" (1443276000) transition_time 0x64-0x67.7 (4)
|
||||
0x060| 56 ff d0 60 | V..` | [15]: "2016-04-02T14:00:00Z" (1459605600) transition_time 0x68-0x6b.7 (4)
|
||||
0x060| 57 e6 86 e0| W...| [16]: "2016-09-24T14:00:00Z" (1474725600) transition_time 0x6c-0x6f.7 (4)
|
||||
0x070|58 df b2 60 |X..` | [17]: "2017-04-01T14:00:00Z" (1491055200) transition_time 0x70-0x73.7 (4)
|
||||
0x070| 59 c6 68 e0 | Y.h. | [18]: "2017-09-23T14:00:00Z" (1506175200) transition_time 0x74-0x77.7 (4)
|
||||
0x070| 5a bf 94 60 | Z..` | [19]: "2018-03-31T14:00:00Z" (1522504800) transition_time 0x78-0x7b.7 (4)
|
||||
0x070| 5b af 85 60| [..`| [20]: "2018-09-29T14:00:00Z" (1538229600) transition_time 0x7c-0x7f.7 (4)
|
||||
0x080|5c a8 b0 e0 |\... | [21]: "2019-04-06T14:00:00Z" (1554559200) transition_time 0x80-0x83.7 (4)
|
||||
0x080| 5d 8f 67 60 | ].g` | [22]: "2019-09-28T14:00:00Z" (1569679200) transition_time 0x84-0x87.7 (4)
|
||||
0x080| 5e 88 92 e0 | ^... | [23]: "2020-04-04T14:00:00Z" (1586008800) transition_time 0x88-0x8b.7 (4)
|
||||
0x080| 5f 6f 49 60| _oI`| [24]: "2020-09-26T14:00:00Z" (1601128800) transition_time 0x8c-0x8f.7 (4)
|
||||
0x090|60 68 74 e0 |`ht. | [25]: "2021-04-03T14:00:00Z" (1617458400) transition_time 0x90-0x93.7 (4)
|
||||
0x090| 7f ff ff ff | .... | [26]: "2038-01-19T03:14:07Z" (2147483647) transition_time 0x94-0x97.7 (4)
|
||||
| | | transition_types[0:27]: 0x98-0xb2.7 (27)
|
||||
0x090| 01 | . | [0]: 1 transition_type 0x98-0x98.7 (1)
|
||||
0x090| 02 | . | [1]: 2 transition_type 0x99-0x99.7 (1)
|
||||
0x090| 04 | . | [2]: 4 transition_type 0x9a-0x9a.7 (1)
|
||||
0x090| 03 | . | [3]: 3 transition_type 0x9b-0x9b.7 (1)
|
||||
0x090| 04 | . | [4]: 4 transition_type 0x9c-0x9c.7 (1)
|
||||
0x090| 03 | . | [5]: 3 transition_type 0x9d-0x9d.7 (1)
|
||||
0x090| 06 | . | [6]: 6 transition_type 0x9e-0x9e.7 (1)
|
||||
0x090| 05| .| [7]: 5 transition_type 0x9f-0x9f.7 (1)
|
||||
0x0a0|06 |. | [8]: 6 transition_type 0xa0-0xa0.7 (1)
|
||||
0x0a0| 05 | . | [9]: 5 transition_type 0xa1-0xa1.7 (1)
|
||||
0x0a0| 06 | . | [10]: 6 transition_type 0xa2-0xa2.7 (1)
|
||||
0x0a0| 05 | . | [11]: 5 transition_type 0xa3-0xa3.7 (1)
|
||||
0x0a0| 06 | . | [12]: 6 transition_type 0xa4-0xa4.7 (1)
|
||||
0x0a0| 05 | . | [13]: 5 transition_type 0xa5-0xa5.7 (1)
|
||||
0x0a0| 06 | . | [14]: 6 transition_type 0xa6-0xa6.7 (1)
|
||||
0x0a0| 05 | . | [15]: 5 transition_type 0xa7-0xa7.7 (1)
|
||||
0x0a0| 06 | . | [16]: 6 transition_type 0xa8-0xa8.7 (1)
|
||||
0x0a0| 05 | . | [17]: 5 transition_type 0xa9-0xa9.7 (1)
|
||||
0x0a0| 06 | . | [18]: 6 transition_type 0xaa-0xaa.7 (1)
|
||||
0x0a0| 05 | . | [19]: 5 transition_type 0xab-0xab.7 (1)
|
||||
0x0a0| 06 | . | [20]: 6 transition_type 0xac-0xac.7 (1)
|
||||
0x0a0| 05 | . | [21]: 5 transition_type 0xad-0xad.7 (1)
|
||||
0x0a0| 06 | . | [22]: 6 transition_type 0xae-0xae.7 (1)
|
||||
0x0a0| 05| .| [23]: 5 transition_type 0xaf-0xaf.7 (1)
|
||||
0x0b0|06 |. | [24]: 6 transition_type 0xb0-0xb0.7 (1)
|
||||
0x0b0| 05 | . | [25]: 5 transition_type 0xb1-0xb1.7 (1)
|
||||
0x0b0| 05 | . | [26]: 5 transition_type 0xb2-0xb2.7 (1)
|
||||
| | | local_time_type_records[0:7]: 0xb3-0xdc.7 (42)
|
||||
| | | [0]{}: local_time_type 0xb3-0xb8.7 (6)
|
||||
0x0b0| 00 00 b0 80 | .... | utoff: 45184 (valid) 0xb3-0xb6.7 (4)
|
||||
0x0b0| 00 | . | dst: 0 (valid) 0xb7-0xb7.7 (1)
|
||||
0x0b0| 00 | . | idx: 0 (valid) 0xb8-0xb8.7 (1)
|
||||
| | | [1]{}: local_time_type 0xb9-0xbe.7 (6)
|
||||
0x0b0| ff ff 5f 00 | .._. | utoff: -41216 (valid) 0xb9-0xbc.7 (4)
|
||||
0x0b0| 00 | . | dst: 0 (valid) 0xbd-0xbd.7 (1)
|
||||
0x0b0| 00 | . | idx: 0 (valid) 0xbe-0xbe.7 (1)
|
||||
| | | [2]{}: local_time_type 0xbf-0xc4.7 (6)
|
||||
0x0b0| ff| .| utoff: -41400 (valid) 0xbf-0xc2.7 (4)
|
||||
0x0c0|ff 5e 48 |.^H |
|
||||
0x0c0| 00 | . | dst: 0 (valid) 0xc3-0xc3.7 (1)
|
||||
0x0c0| 04 | . | idx: 4 (valid) 0xc4-0xc4.7 (1)
|
||||
| | | [3]{}: local_time_type 0xc5-0xca.7 (6)
|
||||
0x0c0| ff ff 73 60 | ..s` | utoff: -36000 (valid) 0xc5-0xc8.7 (4)
|
||||
0x0c0| 01 | . | dst: 1 (valid) 0xc9-0xc9.7 (1)
|
||||
0x0c0| 0a | . | idx: 10 (valid) 0xca-0xca.7 (1)
|
||||
| | | [4]{}: local_time_type 0xcb-0xd0.7 (6)
|
||||
0x0c0| ff ff 65 50 | ..eP | utoff: -39600 (valid) 0xcb-0xce.7 (4)
|
||||
0x0c0| 00| .| dst: 0 (valid) 0xcf-0xcf.7 (1)
|
||||
0x0d0|0e |. | idx: 14 (valid) 0xd0-0xd0.7 (1)
|
||||
| | | [5]{}: local_time_type 0xd1-0xd6.7 (6)
|
||||
0x0d0| 00 00 b6 d0 | .... | utoff: 46800 (valid) 0xd1-0xd4.7 (4)
|
||||
0x0d0| 00 | . | dst: 0 (valid) 0xd5-0xd5.7 (1)
|
||||
0x0d0| 12 | . | idx: 18 (valid) 0xd6-0xd6.7 (1)
|
||||
| | | [6]{}: local_time_type 0xd7-0xdc.7 (6)
|
||||
0x0d0| 00 00 c4 e0 | .... | utoff: 50400 (valid) 0xd7-0xda.7 (4)
|
||||
0x0d0| 01 | . | dst: 1 (valid) 0xdb-0xdb.7 (1)
|
||||
0x0d0| 16 | . | idx: 22 (valid) 0xdc-0xdc.7 (1)
|
||||
| | | time_zone_designations[0:6]: 0xdd-0xf6.7 (26)
|
||||
0x0d0| 4c 4d 54| LMT| [0]: "LMT" time_zone_designation 0xdd-0xe0.7 (4)
|
||||
0x0e0|00 |. |
|
||||
0x0e0| 2d 31 31 33 30 00 | -1130. | [1]: "-1130" time_zone_designation 0xe1-0xe6.7 (6)
|
||||
0x0e0| 2d 31 30 00 | -10. | [2]: "-10" time_zone_designation 0xe7-0xea.7 (4)
|
||||
0x0e0| 2d 31 31 00 | -11. | [3]: "-11" time_zone_designation 0xeb-0xee.7 (4)
|
||||
0x0e0| 2b| +| [4]: "+13" time_zone_designation 0xef-0xf2.7 (4)
|
||||
0x0f0|31 33 00 |13. |
|
||||
0x0f0| 2b 31 34 00 | +14. | [5]: "+14" time_zone_designation 0xf3-0xf6.7 (4)
|
||||
| | | leap_second_records[0:0]: 0xf7-NA (0)
|
||||
| | | standard_wall_indicators[0:0]: 0xf7-NA (0)
|
||||
| | | ut_local_indicators[0:0]: 0xf7-NA (0)
|
||||
| | | v2plusheader{}: 0xf7-0x122.7 (44)
|
||||
0x0f0| 54 5a 69 66 | TZif | magic: 0x545a6966 (valid) 0xf7-0xfa.7 (4)
|
||||
0x0f0| 32 | 2 | ver: "2" (0x32) (valid) 0xfb-0xfb.7 (1)
|
||||
0x0f0| 00 00 00 00| ....| reserved: raw bits 0xfc-0x10a.7 (15)
|
||||
0x100|00 00 00 00 00 00 00 00 00 00 00 |........... |
|
||||
0x100| 00 00 00 00 | .... | isutcnt: 0 0x10b-0x10e.7 (4)
|
||||
0x100| 00| .| isstdcnt: 0 0x10f-0x112.7 (4)
|
||||
0x110|00 00 00 |... |
|
||||
0x110| 00 00 00 00 | .... | leapcnt: 0 0x113-0x116.7 (4)
|
||||
0x110| 00 00 00 1b | .... | timecnt: 27 0x117-0x11a.7 (4)
|
||||
0x110| 00 00 00 07 | .... | typecnt: 7 0x11b-0x11e.7 (4)
|
||||
0x110| 00| .| charcnt: 26 0x11f-0x122.7 (4)
|
||||
0x120|00 00 1a |... |
|
||||
| | | v2plusdatablock{}: 0x123-0x259.7 (311)
|
||||
| | | transition_times[0:27]: 0x123-0x1fa.7 (216)
|
||||
0x120| ff ff ff ff 6e 3d c9 00 | ....n=.. | [0]: "1892-07-04T11:26:56Z" (-2445424384) transition_time 0x123-0x12a.7 (8)
|
||||
0x120| ff ff ff ff 91| .....| [1]: "1911-01-01T11:26:56Z" (-1861878784) transition_time 0x12b-0x132.7 (8)
|
||||
0x130|05 fc 00 |... |
|
||||
0x130| ff ff ff ff da 62 04 38 | .....b.8 | [2]: "1950-01-01T11:30:00Z" (-631110600) transition_time 0x133-0x13a.7 (8)
|
||||
0x130| 00 00 00 00 4c| ....L| [3]: "2010-09-26T11:00:00Z" (1285498800) transition_time 0x13b-0x142.7 (8)
|
||||
0x140|9f 27 b0 |.'. |
|
||||
0x140| 00 00 00 00 4d 97 2b e0 | ....M.+. | [4]: "2011-04-02T14:00:00Z" (1301752800) transition_time 0x143-0x14a.7 (8)
|
||||
0x140| 00 00 00 00 4e| ....N| [5]: "2011-09-24T14:00:00Z" (1316872800) transition_time 0x14b-0x152.7 (8)
|
||||
0x150|7d e2 60 |}.` |
|
||||
0x150| 00 00 00 00 4e fd 8b a0 | ....N... | [6]: "2011-12-30T10:00:00Z" (1325239200) transition_time 0x153-0x15a.7 (8)
|
||||
0x150| 00 00 00 00 4f| ....O| [7]: "2012-03-31T14:00:00Z" (1333202400) transition_time 0x15b-0x162.7 (8)
|
||||
0x160|77 0d e0 |w.. |
|
||||
0x160| 00 00 00 00 50 66 fe e0 | ....Pf.. | [8]: "2012-09-29T14:00:00Z" (1348927200) transition_time 0x163-0x16a.7 (8)
|
||||
0x160| 00 00 00 00 51| ....Q| [9]: "2013-04-06T14:00:00Z" (1365256800) transition_time 0x16b-0x172.7 (8)
|
||||
0x170|60 2a 60 |`*` |
|
||||
0x170| 00 00 00 00 52 46 e0 e0 | ....RF.. | [10]: "2013-09-28T14:00:00Z" (1380376800) transition_time 0x173-0x17a.7 (8)
|
||||
0x170| 00 00 00 00 53| ....S| [11]: "2014-04-05T14:00:00Z" (1396706400) transition_time 0x17b-0x182.7 (8)
|
||||
0x180|40 0c 60 |@.` |
|
||||
0x180| 00 00 00 00 54 26 c2 e0 | ....T&.. | [12]: "2014-09-27T14:00:00Z" (1411826400) transition_time 0x183-0x18a.7 (8)
|
||||
0x180| 00 00 00 00 55| ....U| [13]: "2015-04-04T14:00:00Z" (1428156000) transition_time 0x18b-0x192.7 (8)
|
||||
0x190|1f ee 60 |..` |
|
||||
0x190| 00 00 00 00 56 06 a4 e0 | ....V... | [14]: "2015-09-26T14:00:00Z" (1443276000) transition_time 0x193-0x19a.7 (8)
|
||||
0x190| 00 00 00 00 56| ....V| [15]: "2016-04-02T14:00:00Z" (1459605600) transition_time 0x19b-0x1a2.7 (8)
|
||||
0x1a0|ff d0 60 |..` |
|
||||
0x1a0| 00 00 00 00 57 e6 86 e0 | ....W... | [16]: "2016-09-24T14:00:00Z" (1474725600) transition_time 0x1a3-0x1aa.7 (8)
|
||||
0x1a0| 00 00 00 00 58| ....X| [17]: "2017-04-01T14:00:00Z" (1491055200) transition_time 0x1ab-0x1b2.7 (8)
|
||||
0x1b0|df b2 60 |..` |
|
||||
0x1b0| 00 00 00 00 59 c6 68 e0 | ....Y.h. | [18]: "2017-09-23T14:00:00Z" (1506175200) transition_time 0x1b3-0x1ba.7 (8)
|
||||
0x1b0| 00 00 00 00 5a| ....Z| [19]: "2018-03-31T14:00:00Z" (1522504800) transition_time 0x1bb-0x1c2.7 (8)
|
||||
0x1c0|bf 94 60 |..` |
|
||||
0x1c0| 00 00 00 00 5b af 85 60 | ....[..` | [20]: "2018-09-29T14:00:00Z" (1538229600) transition_time 0x1c3-0x1ca.7 (8)
|
||||
0x1c0| 00 00 00 00 5c| ....\| [21]: "2019-04-06T14:00:00Z" (1554559200) transition_time 0x1cb-0x1d2.7 (8)
|
||||
0x1d0|a8 b0 e0 |... |
|
||||
0x1d0| 00 00 00 00 5d 8f 67 60 | ....].g` | [22]: "2019-09-28T14:00:00Z" (1569679200) transition_time 0x1d3-0x1da.7 (8)
|
||||
0x1d0| 00 00 00 00 5e| ....^| [23]: "2020-04-04T14:00:00Z" (1586008800) transition_time 0x1db-0x1e2.7 (8)
|
||||
0x1e0|88 92 e0 |... |
|
||||
0x1e0| 00 00 00 00 5f 6f 49 60 | ...._oI` | [24]: "2020-09-26T14:00:00Z" (1601128800) transition_time 0x1e3-0x1ea.7 (8)
|
||||
0x1e0| 00 00 00 00 60| ....`| [25]: "2021-04-03T14:00:00Z" (1617458400) transition_time 0x1eb-0x1f2.7 (8)
|
||||
0x1f0|68 74 e0 |ht. |
|
||||
0x1f0| 00 00 00 00 7f ff ff ff | ........ | [26]: "2038-01-19T03:14:07Z" (2147483647) transition_time 0x1f3-0x1fa.7 (8)
|
||||
| | | transition_types[0:27]: 0x1fb-0x215.7 (27)
|
||||
0x1f0| 01 | . | [0]: 1 transition_type 0x1fb-0x1fb.7 (1)
|
||||
0x1f0| 02 | . | [1]: 2 transition_type 0x1fc-0x1fc.7 (1)
|
||||
0x1f0| 04 | . | [2]: 4 transition_type 0x1fd-0x1fd.7 (1)
|
||||
0x1f0| 03 | . | [3]: 3 transition_type 0x1fe-0x1fe.7 (1)
|
||||
0x1f0| 04| .| [4]: 4 transition_type 0x1ff-0x1ff.7 (1)
|
||||
0x200|03 |. | [5]: 3 transition_type 0x200-0x200.7 (1)
|
||||
0x200| 06 | . | [6]: 6 transition_type 0x201-0x201.7 (1)
|
||||
0x200| 05 | . | [7]: 5 transition_type 0x202-0x202.7 (1)
|
||||
0x200| 06 | . | [8]: 6 transition_type 0x203-0x203.7 (1)
|
||||
0x200| 05 | . | [9]: 5 transition_type 0x204-0x204.7 (1)
|
||||
0x200| 06 | . | [10]: 6 transition_type 0x205-0x205.7 (1)
|
||||
0x200| 05 | . | [11]: 5 transition_type 0x206-0x206.7 (1)
|
||||
0x200| 06 | . | [12]: 6 transition_type 0x207-0x207.7 (1)
|
||||
0x200| 05 | . | [13]: 5 transition_type 0x208-0x208.7 (1)
|
||||
0x200| 06 | . | [14]: 6 transition_type 0x209-0x209.7 (1)
|
||||
0x200| 05 | . | [15]: 5 transition_type 0x20a-0x20a.7 (1)
|
||||
0x200| 06 | . | [16]: 6 transition_type 0x20b-0x20b.7 (1)
|
||||
0x200| 05 | . | [17]: 5 transition_type 0x20c-0x20c.7 (1)
|
||||
0x200| 06 | . | [18]: 6 transition_type 0x20d-0x20d.7 (1)
|
||||
0x200| 05 | . | [19]: 5 transition_type 0x20e-0x20e.7 (1)
|
||||
0x200| 06| .| [20]: 6 transition_type 0x20f-0x20f.7 (1)
|
||||
0x210|05 |. | [21]: 5 transition_type 0x210-0x210.7 (1)
|
||||
0x210| 06 | . | [22]: 6 transition_type 0x211-0x211.7 (1)
|
||||
0x210| 05 | . | [23]: 5 transition_type 0x212-0x212.7 (1)
|
||||
0x210| 06 | . | [24]: 6 transition_type 0x213-0x213.7 (1)
|
||||
0x210| 05 | . | [25]: 5 transition_type 0x214-0x214.7 (1)
|
||||
0x210| 05 | . | [26]: 5 transition_type 0x215-0x215.7 (1)
|
||||
| | | local_time_type_records[0:7]: 0x216-0x23f.7 (42)
|
||||
| | | [0]{}: local_time_type 0x216-0x21b.7 (6)
|
||||
0x210| 00 00 b0 80 | .... | utoff: 45184 (valid) 0x216-0x219.7 (4)
|
||||
0x210| 00 | . | dst: 0 (valid) 0x21a-0x21a.7 (1)
|
||||
0x210| 00 | . | idx: 0 (valid) 0x21b-0x21b.7 (1)
|
||||
| | | [1]{}: local_time_type 0x21c-0x221.7 (6)
|
||||
0x210| ff ff 5f 00| .._.| utoff: -41216 (valid) 0x21c-0x21f.7 (4)
|
||||
0x220|00 |. | dst: 0 (valid) 0x220-0x220.7 (1)
|
||||
0x220| 00 | . | idx: 0 (valid) 0x221-0x221.7 (1)
|
||||
| | | [2]{}: local_time_type 0x222-0x227.7 (6)
|
||||
0x220| ff ff 5e 48 | ..^H | utoff: -41400 (valid) 0x222-0x225.7 (4)
|
||||
0x220| 00 | . | dst: 0 (valid) 0x226-0x226.7 (1)
|
||||
0x220| 04 | . | idx: 4 (valid) 0x227-0x227.7 (1)
|
||||
| | | [3]{}: local_time_type 0x228-0x22d.7 (6)
|
||||
0x220| ff ff 73 60 | ..s` | utoff: -36000 (valid) 0x228-0x22b.7 (4)
|
||||
0x220| 01 | . | dst: 1 (valid) 0x22c-0x22c.7 (1)
|
||||
0x220| 0a | . | idx: 10 (valid) 0x22d-0x22d.7 (1)
|
||||
| | | [4]{}: local_time_type 0x22e-0x233.7 (6)
|
||||
0x220| ff ff| ..| utoff: -39600 (valid) 0x22e-0x231.7 (4)
|
||||
0x230|65 50 |eP |
|
||||
0x230| 00 | . | dst: 0 (valid) 0x232-0x232.7 (1)
|
||||
0x230| 0e | . | idx: 14 (valid) 0x233-0x233.7 (1)
|
||||
| | | [5]{}: local_time_type 0x234-0x239.7 (6)
|
||||
0x230| 00 00 b6 d0 | .... | utoff: 46800 (valid) 0x234-0x237.7 (4)
|
||||
0x230| 00 | . | dst: 0 (valid) 0x238-0x238.7 (1)
|
||||
0x230| 12 | . | idx: 18 (valid) 0x239-0x239.7 (1)
|
||||
| | | [6]{}: local_time_type 0x23a-0x23f.7 (6)
|
||||
0x230| 00 00 c4 e0 | .... | utoff: 50400 (valid) 0x23a-0x23d.7 (4)
|
||||
0x230| 01 | . | dst: 1 (valid) 0x23e-0x23e.7 (1)
|
||||
0x230| 16| .| idx: 22 (valid) 0x23f-0x23f.7 (1)
|
||||
| | | time_zone_designations[0:6]: 0x240-0x259.7 (26)
|
||||
0x240|4c 4d 54 00 |LMT. | [0]: "LMT" time_zone_designation 0x240-0x243.7 (4)
|
||||
0x240| 2d 31 31 33 30 00 | -1130. | [1]: "-1130" time_zone_designation 0x244-0x249.7 (6)
|
||||
0x240| 2d 31 30 00 | -10. | [2]: "-10" time_zone_designation 0x24a-0x24d.7 (4)
|
||||
0x240| 2d 31| -1| [3]: "-11" time_zone_designation 0x24e-0x251.7 (4)
|
||||
0x250|31 00 |1. |
|
||||
0x250| 2b 31 33 00 | +13. | [4]: "+13" time_zone_designation 0x252-0x255.7 (4)
|
||||
0x250| 2b 31 34 00 | +14. | [5]: "+14" time_zone_designation 0x256-0x259.7 (4)
|
||||
| | | leap_second_records[0:0]: 0x25a-NA (0)
|
||||
| | | standard_wall_indicators[0:0]: 0x25a-NA (0)
|
||||
| | | ut_local_indicators[0:0]: 0x25a-NA (0)
|
||||
| | | footer{}: 0x25a-0x263.7 (10)
|
||||
0x250| 0a | . | nl1: 10 (valid) 0x25a-0x25a.7 (1)
|
||||
0x250| 3c 2b 31 33 3e| <+13>| tz_string: "<+13>-13" 0x25b-0x262.7 (8)
|
||||
0x260|2d 31 33 |-13 |
|
||||
0x260| 0a| | .| | nl2: 10 (valid) 0x263-0x263.7 (1)
|
BIN
format/tzif/testdata/Aqtau
vendored
Normal file
BIN
format/tzif/testdata/Aqtau
vendored
Normal file
Binary file not shown.
569
format/tzif/testdata/Aqtau.fqtest
vendored
Normal file
569
format/tzif/testdata/Aqtau.fqtest
vendored
Normal file
@ -0,0 +1,569 @@
|
||||
$ fq -d tzif dv Aqtau
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: Aqtau (tzif) 0x0-0x5eb.7 (1516)
|
||||
| | | v1header{}: 0x0-0x2b.7 (44)
|
||||
0x000|54 5a 69 66 |TZif | magic: 0x545a6966 (valid) 0x0-0x3.7 (4)
|
||||
0x000| 32 | 2 | ver: "2" (0x32) (valid) 0x4-0x4.7 (1)
|
||||
0x000| 00 00 00 00 00 00 00 00 00 00 00| ...........| reserved: raw bits 0x5-0x13.7 (15)
|
||||
0x010|00 00 00 00 |.... |
|
||||
0x010| 00 00 00 00 | .... | isutcnt: 0 0x14-0x17.7 (4)
|
||||
0x010| 00 00 00 0a | .... | isstdcnt: 10 0x18-0x1b.7 (4)
|
||||
0x010| 00 00 00 1b| ....| leapcnt: 27 0x1c-0x1f.7 (4)
|
||||
0x020|00 00 00 33 |...3 | timecnt: 51 0x20-0x23.7 (4)
|
||||
0x020| 00 00 00 0a | .... | typecnt: 10 0x24-0x27.7 (4)
|
||||
0x020| 00 00 00 10 | .... | charcnt: 16 0x28-0x2b.7 (4)
|
||||
| | | v1datablock{}: 0x2c-0x258.7 (557)
|
||||
| | | transition_times[0:51]: 0x2c-0xf7.7 (204)
|
||||
0x020| aa 19 94 e0| ....| [0]: "1924-05-01T20:38:56Z" (-1441164064) transition_time 0x2c-0x2f.7 (4)
|
||||
0x030|b5 a3 fd 40 |...@ | [1]: "1930-06-20T20:00:00Z" (-1247544000) transition_time 0x30-0x33.7 (4)
|
||||
0x030| 16 18 ce 3a | ...: | [2]: "1981-09-30T19:00:10Z" (370724410) transition_time 0x34-0x37.7 (4)
|
||||
0x030| 17 08 b1 2a | ...* | [3]: "1982-03-31T18:00:10Z" (386445610) transition_time 0x38-0x3b.7 (4)
|
||||
0x030| 17 f9 f3 ab| ....| [4]: "1982-09-30T18:00:11Z" (402256811) transition_time 0x3c-0x3f.7 (4)
|
||||
0x040|18 e9 f2 bb |.... | [5]: "1983-03-31T19:00:11Z" (417985211) transition_time 0x40-0x43.7 (4)
|
||||
0x040| 19 db 27 2c | ..', | [6]: "1983-09-30T18:00:12Z" (433792812) transition_time 0x44-0x47.7 (4)
|
||||
0x040| 1a cc 77 bc | ..w. | [7]: "1984-03-31T19:00:12Z" (449607612) transition_time 0x48-0x4b.7 (4)
|
||||
0x040| 1b bc 84 dc| ....| [8]: "1984-09-29T21:00:12Z" (465339612) transition_time 0x4c-0x4f.7 (4)
|
||||
0x050|1c ac 75 dc |..u. | [9]: "1985-03-30T21:00:12Z" (481064412) transition_time 0x50-0x53.7 (4)
|
||||
0x050| 1d 9c 66 dd | ..f. | [10]: "1985-09-28T21:00:13Z" (496789213) transition_time 0x54-0x57.7 (4)
|
||||
0x050| 1e 8c 57 dd | ..W. | [11]: "1986-03-29T21:00:13Z" (512514013) transition_time 0x58-0x5b.7 (4)
|
||||
0x050| 1f 7c 48 dd| .|H.| [12]: "1986-09-27T21:00:13Z" (528238813) transition_time 0x5c-0x5f.7 (4)
|
||||
0x060|20 6c 39 dd | l9. | [13]: "1987-03-28T21:00:13Z" (543963613) transition_time 0x60-0x63.7 (4)
|
||||
0x060| 21 5c 2a dd | !\*. | [14]: "1987-09-26T21:00:13Z" (559688413) transition_time 0x64-0x67.7 (4)
|
||||
0x060| 22 4c 1b de | "L.. | [15]: "1988-03-26T21:00:14Z" (575413214) transition_time 0x68-0x6b.7 (4)
|
||||
0x060| 23 3c 0c de| #<..| [16]: "1988-09-24T21:00:14Z" (591138014) transition_time 0x6c-0x6f.7 (4)
|
||||
0x070|24 2b fd de |$+.. | [17]: "1989-03-25T21:00:14Z" (606862814) transition_time 0x70-0x73.7 (4)
|
||||
0x070| 25 1b ee de | %... | [18]: "1989-09-23T21:00:14Z" (622587614) transition_time 0x74-0x77.7 (4)
|
||||
0x070| 26 0b df df | &... | [19]: "1990-03-24T21:00:15Z" (638312415) transition_time 0x78-0x7b.7 (4)
|
||||
0x070| 27 05 0b 5f| '.._| [20]: "1990-09-29T21:00:15Z" (654642015) transition_time 0x7c-0x7f.7 (4)
|
||||
0x080|27 f4 fc 60 |'..` | [21]: "1991-03-30T21:00:16Z" (670366816) transition_time 0x80-0x83.7 (4)
|
||||
0x080| 28 e4 fb 70 | (..p | [22]: "1991-09-28T22:00:16Z" (686095216) transition_time 0x84-0x87.7 (4)
|
||||
0x080| 29 78 a3 70 | )x.p | [23]: "1992-01-18T22:00:16Z" (695772016) transition_time 0x88-0x8b.7 (4)
|
||||
0x080| 29 d4 de 60| )..`| [24]: "1992-03-28T21:00:16Z" (701816416) transition_time 0x8c-0x8f.7 (4)
|
||||
0x090|2a c4 cf 61 |*..a | [25]: "1992-09-26T21:00:17Z" (717541217) transition_time 0x90-0x93.7 (4)
|
||||
0x090| 2b b4 c0 61 | +..a | [26]: "1993-03-27T21:00:17Z" (733266017) transition_time 0x94-0x97.7 (4)
|
||||
0x090| 2c a4 b1 62 | ,..b | [27]: "1993-09-25T21:00:18Z" (748990818) transition_time 0x98-0x9b.7 (4)
|
||||
0x090| 2d 94 a2 62| -..b| [28]: "1994-03-26T21:00:18Z" (764715618) transition_time 0x9c-0x9f.7 (4)
|
||||
0x0a0|2e 84 93 63 |...c | [29]: "1994-09-24T21:00:19Z" (780440419) transition_time 0xa0-0xa3.7 (4)
|
||||
0x0a0| 2f 74 92 73 | /t.s | [30]: "1995-03-25T22:00:19Z" (796168819) transition_time 0xa4-0xa7.7 (4)
|
||||
0x0a0| 30 64 83 73 | 0d.s | [31]: "1995-09-23T22:00:19Z" (811893619) transition_time 0xa8-0xab.7 (4)
|
||||
0x0a0| 31 5d ae f4| 1]..| [32]: "1996-03-30T22:00:20Z" (828223220) transition_time 0xac-0xaf.7 (4)
|
||||
0x0b0|32 72 89 f4 |2r.. | [33]: "1996-10-26T22:00:20Z" (846367220) transition_time 0xb0-0xb3.7 (4)
|
||||
0x0b0| 33 3d 90 f4 | 3=.. | [34]: "1997-03-29T22:00:20Z" (859672820) transition_time 0xb4-0xb7.7 (4)
|
||||
0x0b0| 34 52 6b f5 | 4Rk. | [35]: "1997-10-25T22:00:21Z" (877816821) transition_time 0xb8-0xbb.7 (4)
|
||||
0x0b0| 35 1d 72 f5| 5.r.| [36]: "1998-03-28T22:00:21Z" (891122421) transition_time 0xbc-0xbf.7 (4)
|
||||
0x0c0|36 32 4d f5 |62M. | [37]: "1998-10-24T22:00:21Z" (909266421) transition_time 0xc0-0xc3.7 (4)
|
||||
0x0c0| 36 fd 54 f6 | 6.T. | [38]: "1999-03-27T22:00:22Z" (922572022) transition_time 0xc4-0xc7.7 (4)
|
||||
0x0c0| 38 1b 6a 76 | 8.jv | [39]: "1999-10-30T22:00:22Z" (941320822) transition_time 0xc8-0xcb.7 (4)
|
||||
0x0c0| 38 dd 36 f6| 8.6.| [40]: "2000-03-25T22:00:22Z" (954021622) transition_time 0xcc-0xcf.7 (4)
|
||||
0x0d0|39 fb 4c 76 |9.Lv | [41]: "2000-10-28T22:00:22Z" (972770422) transition_time 0xd0-0xd3.7 (4)
|
||||
0x0d0| 3a bd 18 f6 | :... | [42]: "2001-03-24T22:00:22Z" (985471222) transition_time 0xd4-0xd7.7 (4)
|
||||
0x0d0| 3b db 2e 76 | ;..v | [43]: "2001-10-27T22:00:22Z" (1004220022) transition_time 0xd8-0xdb.7 (4)
|
||||
0x0d0| 3c a6 35 76| <.5v| [44]: "2002-03-30T22:00:22Z" (1017525622) transition_time 0xdc-0xdf.7 (4)
|
||||
0x0e0|3d bb 10 76 |=..v | [45]: "2002-10-26T22:00:22Z" (1035669622) transition_time 0xe0-0xe3.7 (4)
|
||||
0x0e0| 3e 86 17 76 | >..v | [46]: "2003-03-29T22:00:22Z" (1048975222) transition_time 0xe4-0xe7.7 (4)
|
||||
0x0e0| 3f 9a f2 76 | ?..v | [47]: "2003-10-25T22:00:22Z" (1067119222) transition_time 0xe8-0xeb.7 (4)
|
||||
0x0e0| 40 65 f9 76| @e.v| [48]: "2004-03-27T22:00:22Z" (1080424822) transition_time 0xec-0xef.7 (4)
|
||||
0x0f0|41 84 0e f6 |A... | [49]: "2004-10-30T22:00:22Z" (1099173622) transition_time 0xf0-0xf3.7 (4)
|
||||
0x0f0| 64 9b 78 1b | d.x. | [50]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0xf4-0xf7.7 (4)
|
||||
| | | transition_types[0:51]: 0xf8-0x12a.7 (51)
|
||||
0x0f0| 01 | . | [0]: 1 transition_type 0xf8-0xf8.7 (1)
|
||||
0x0f0| 02 | . | [1]: 2 transition_type 0xf9-0xf9.7 (1)
|
||||
0x0f0| 03 | . | [2]: 3 transition_type 0xfa-0xfa.7 (1)
|
||||
0x0f0| 04 | . | [3]: 4 transition_type 0xfb-0xfb.7 (1)
|
||||
0x0f0| 02 | . | [4]: 2 transition_type 0xfc-0xfc.7 (1)
|
||||
0x0f0| 04 | . | [5]: 4 transition_type 0xfd-0xfd.7 (1)
|
||||
0x0f0| 02 | . | [6]: 2 transition_type 0xfe-0xfe.7 (1)
|
||||
0x0f0| 04| .| [7]: 4 transition_type 0xff-0xff.7 (1)
|
||||
0x100|05 |. | [8]: 5 transition_type 0x100-0x100.7 (1)
|
||||
0x100| 06 | . | [9]: 6 transition_type 0x101-0x101.7 (1)
|
||||
0x100| 05 | . | [10]: 5 transition_type 0x102-0x102.7 (1)
|
||||
0x100| 06 | . | [11]: 6 transition_type 0x103-0x103.7 (1)
|
||||
0x100| 05 | . | [12]: 5 transition_type 0x104-0x104.7 (1)
|
||||
0x100| 06 | . | [13]: 6 transition_type 0x105-0x105.7 (1)
|
||||
0x100| 05 | . | [14]: 5 transition_type 0x106-0x106.7 (1)
|
||||
0x100| 06 | . | [15]: 6 transition_type 0x107-0x107.7 (1)
|
||||
0x100| 05 | . | [16]: 5 transition_type 0x108-0x108.7 (1)
|
||||
0x100| 06 | . | [17]: 6 transition_type 0x109-0x109.7 (1)
|
||||
0x100| 05 | . | [18]: 5 transition_type 0x10a-0x10a.7 (1)
|
||||
0x100| 06 | . | [19]: 6 transition_type 0x10b-0x10b.7 (1)
|
||||
0x100| 05 | . | [20]: 5 transition_type 0x10c-0x10c.7 (1)
|
||||
0x100| 07 | . | [21]: 7 transition_type 0x10d-0x10d.7 (1)
|
||||
0x100| 08 | . | [22]: 8 transition_type 0x10e-0x10e.7 (1)
|
||||
0x100| 05| .| [23]: 5 transition_type 0x10f-0x10f.7 (1)
|
||||
0x110|06 |. | [24]: 6 transition_type 0x110-0x110.7 (1)
|
||||
0x110| 05 | . | [25]: 5 transition_type 0x111-0x111.7 (1)
|
||||
0x110| 06 | . | [26]: 6 transition_type 0x112-0x112.7 (1)
|
||||
0x110| 05 | . | [27]: 5 transition_type 0x113-0x113.7 (1)
|
||||
0x110| 06 | . | [28]: 6 transition_type 0x114-0x114.7 (1)
|
||||
0x110| 08 | . | [29]: 8 transition_type 0x115-0x115.7 (1)
|
||||
0x110| 07 | . | [30]: 7 transition_type 0x116-0x116.7 (1)
|
||||
0x110| 08 | . | [31]: 8 transition_type 0x117-0x117.7 (1)
|
||||
0x110| 07 | . | [32]: 7 transition_type 0x118-0x118.7 (1)
|
||||
0x110| 08 | . | [33]: 8 transition_type 0x119-0x119.7 (1)
|
||||
0x110| 07 | . | [34]: 7 transition_type 0x11a-0x11a.7 (1)
|
||||
0x110| 08 | . | [35]: 8 transition_type 0x11b-0x11b.7 (1)
|
||||
0x110| 07 | . | [36]: 7 transition_type 0x11c-0x11c.7 (1)
|
||||
0x110| 08 | . | [37]: 8 transition_type 0x11d-0x11d.7 (1)
|
||||
0x110| 07 | . | [38]: 7 transition_type 0x11e-0x11e.7 (1)
|
||||
0x110| 08| .| [39]: 8 transition_type 0x11f-0x11f.7 (1)
|
||||
0x120|07 |. | [40]: 7 transition_type 0x120-0x120.7 (1)
|
||||
0x120| 08 | . | [41]: 8 transition_type 0x121-0x121.7 (1)
|
||||
0x120| 07 | . | [42]: 7 transition_type 0x122-0x122.7 (1)
|
||||
0x120| 08 | . | [43]: 8 transition_type 0x123-0x123.7 (1)
|
||||
0x120| 07 | . | [44]: 7 transition_type 0x124-0x124.7 (1)
|
||||
0x120| 08 | . | [45]: 8 transition_type 0x125-0x125.7 (1)
|
||||
0x120| 07 | . | [46]: 7 transition_type 0x126-0x126.7 (1)
|
||||
0x120| 08 | . | [47]: 8 transition_type 0x127-0x127.7 (1)
|
||||
0x120| 07 | . | [48]: 7 transition_type 0x128-0x128.7 (1)
|
||||
0x120| 05 | . | [49]: 5 transition_type 0x129-0x129.7 (1)
|
||||
0x120| 05 | . | [50]: 5 transition_type 0x12a-0x12a.7 (1)
|
||||
| | | local_time_type_records[0:10]: 0x12b-0x166.7 (60)
|
||||
| | | [0]{}: local_time_type 0x12b-0x130.7 (6)
|
||||
0x120| 00 00 2f 20 | ../ | utoff: 12064 (valid) 0x12b-0x12e.7 (4)
|
||||
0x120| 00| .| dst: 0 (valid) 0x12f-0x12f.7 (1)
|
||||
0x130|00 |. | idx: 0 (valid) 0x130-0x130.7 (1)
|
||||
| | | [1]{}: local_time_type 0x131-0x136.7 (6)
|
||||
0x130| 00 00 38 40 | ..8@ | utoff: 14400 (valid) 0x131-0x134.7 (4)
|
||||
0x130| 00 | . | dst: 0 (valid) 0x135-0x135.7 (1)
|
||||
0x130| 04 | . | idx: 4 (valid) 0x136-0x136.7 (1)
|
||||
| | | [2]{}: local_time_type 0x137-0x13c.7 (6)
|
||||
0x130| 00 00 46 50 | ..FP | utoff: 18000 (valid) 0x137-0x13a.7 (4)
|
||||
0x130| 00 | . | dst: 0 (valid) 0x13b-0x13b.7 (1)
|
||||
0x130| 08 | . | idx: 8 (valid) 0x13c-0x13c.7 (1)
|
||||
| | | [3]{}: local_time_type 0x13d-0x142.7 (6)
|
||||
0x130| 00 00 54| ..T| utoff: 21600 (valid) 0x13d-0x140.7 (4)
|
||||
0x140|60 |` |
|
||||
0x140| 00 | . | dst: 0 (valid) 0x141-0x141.7 (1)
|
||||
0x140| 0c | . | idx: 12 (valid) 0x142-0x142.7 (1)
|
||||
| | | [4]{}: local_time_type 0x143-0x148.7 (6)
|
||||
0x140| 00 00 54 60 | ..T` | utoff: 21600 (valid) 0x143-0x146.7 (4)
|
||||
0x140| 01 | . | dst: 1 (valid) 0x147-0x147.7 (1)
|
||||
0x140| 0c | . | idx: 12 (valid) 0x148-0x148.7 (1)
|
||||
| | | [5]{}: local_time_type 0x149-0x14e.7 (6)
|
||||
0x140| 00 00 46 50 | ..FP | utoff: 18000 (valid) 0x149-0x14c.7 (4)
|
||||
0x140| 00 | . | dst: 0 (valid) 0x14d-0x14d.7 (1)
|
||||
0x140| 08 | . | idx: 8 (valid) 0x14e-0x14e.7 (1)
|
||||
| | | [6]{}: local_time_type 0x14f-0x154.7 (6)
|
||||
0x140| 00| .| utoff: 21600 (valid) 0x14f-0x152.7 (4)
|
||||
0x150|00 54 60 |.T` |
|
||||
0x150| 01 | . | dst: 1 (valid) 0x153-0x153.7 (1)
|
||||
0x150| 0c | . | idx: 12 (valid) 0x154-0x154.7 (1)
|
||||
| | | [7]{}: local_time_type 0x155-0x15a.7 (6)
|
||||
0x150| 00 00 46 50 | ..FP | utoff: 18000 (valid) 0x155-0x158.7 (4)
|
||||
0x150| 01 | . | dst: 1 (valid) 0x159-0x159.7 (1)
|
||||
0x150| 08 | . | idx: 8 (valid) 0x15a-0x15a.7 (1)
|
||||
| | | [8]{}: local_time_type 0x15b-0x160.7 (6)
|
||||
0x150| 00 00 38 40 | ..8@ | utoff: 14400 (valid) 0x15b-0x15e.7 (4)
|
||||
0x150| 00| .| dst: 0 (valid) 0x15f-0x15f.7 (1)
|
||||
0x160|04 |. | idx: 4 (valid) 0x160-0x160.7 (1)
|
||||
| | | [9]{}: local_time_type 0x161-0x166.7 (6)
|
||||
0x160| 00 00 46 50 | ..FP | utoff: 18000 (valid) 0x161-0x164.7 (4)
|
||||
0x160| 00 | . | dst: 0 (valid) 0x165-0x165.7 (1)
|
||||
0x160| 08 | . | idx: 8 (valid) 0x166-0x166.7 (1)
|
||||
| | | time_zone_designations[0:4]: 0x167-0x176.7 (16)
|
||||
0x160| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x167-0x16a.7 (4)
|
||||
0x160| 2b 30 34 00 | +04. | [1]: "+04" time_zone_designation 0x16b-0x16e.7 (4)
|
||||
0x160| 2b| +| [2]: "+05" time_zone_designation 0x16f-0x172.7 (4)
|
||||
0x170|30 35 00 |05. |
|
||||
0x170| 2b 30 36 00 | +06. | [3]: "+06" time_zone_designation 0x173-0x176.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x177-0x24e.7 (216)
|
||||
| | | [0]{}: leap_second_record 0x177-0x17e.7 (8)
|
||||
0x170| 04 b2 58 00 | ..X. | occur: "1972-07-01T00:00:00Z" (78796800) 0x177-0x17a.7 (4)
|
||||
0x170| 00 00 00 01 | .... | corr: 1 0x17b-0x17e.7 (4)
|
||||
| | | [1]{}: leap_second_record 0x17f-0x186.7 (8)
|
||||
0x170| 05| .| occur: "1973-01-01T00:00:01Z" (94694401) 0x17f-0x182.7 (4)
|
||||
0x180|a4 ec 01 |... |
|
||||
0x180| 00 00 00 02 | .... | corr: 2 0x183-0x186.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x187-0x18e.7 (8)
|
||||
0x180| 07 86 1f 82 | .... | occur: "1974-01-01T00:00:02Z" (126230402) 0x187-0x18a.7 (4)
|
||||
0x180| 00 00 00 03 | .... | corr: 3 0x18b-0x18e.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x18f-0x196.7 (8)
|
||||
0x180| 09| .| occur: "1975-01-01T00:00:03Z" (157766403) 0x18f-0x192.7 (4)
|
||||
0x190|67 53 03 |gS. |
|
||||
0x190| 00 00 00 04 | .... | corr: 4 0x193-0x196.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x197-0x19e.7 (8)
|
||||
0x190| 0b 48 86 84 | .H.. | occur: "1976-01-01T00:00:04Z" (189302404) 0x197-0x19a.7 (4)
|
||||
0x190| 00 00 00 05 | .... | corr: 5 0x19b-0x19e.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x19f-0x1a6.7 (8)
|
||||
0x190| 0d| .| occur: "1977-01-01T00:00:05Z" (220924805) 0x19f-0x1a2.7 (4)
|
||||
0x1a0|2b 0b 85 |+.. |
|
||||
0x1a0| 00 00 00 06 | .... | corr: 6 0x1a3-0x1a6.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x1a7-0x1ae.7 (8)
|
||||
0x1a0| 0f 0c 3f 06 | ..?. | occur: "1978-01-01T00:00:06Z" (252460806) 0x1a7-0x1aa.7 (4)
|
||||
0x1a0| 00 00 00 07 | .... | corr: 7 0x1ab-0x1ae.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x1af-0x1b6.7 (8)
|
||||
0x1a0| 10| .| occur: "1979-01-01T00:00:07Z" (283996807) 0x1af-0x1b2.7 (4)
|
||||
0x1b0|ed 72 87 |.r. |
|
||||
0x1b0| 00 00 00 08 | .... | corr: 8 0x1b3-0x1b6.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x1b7-0x1be.7 (8)
|
||||
0x1b0| 12 ce a6 08 | .... | occur: "1980-01-01T00:00:08Z" (315532808) 0x1b7-0x1ba.7 (4)
|
||||
0x1b0| 00 00 00 09 | .... | corr: 9 0x1bb-0x1be.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x1bf-0x1c6.7 (8)
|
||||
0x1b0| 15| .| occur: "1981-07-01T00:00:09Z" (362793609) 0x1bf-0x1c2.7 (4)
|
||||
0x1c0|9f ca 89 |... |
|
||||
0x1c0| 00 00 00 0a | .... | corr: 10 0x1c3-0x1c6.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x1c7-0x1ce.7 (8)
|
||||
0x1c0| 17 80 fe 0a | .... | occur: "1982-07-01T00:00:10Z" (394329610) 0x1c7-0x1ca.7 (4)
|
||||
0x1c0| 00 00 00 0b | .... | corr: 11 0x1cb-0x1ce.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x1cf-0x1d6.7 (8)
|
||||
0x1c0| 19| .| occur: "1983-07-01T00:00:11Z" (425865611) 0x1cf-0x1d2.7 (4)
|
||||
0x1d0|62 31 8b |b1. |
|
||||
0x1d0| 00 00 00 0c | .... | corr: 12 0x1d3-0x1d6.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x1d7-0x1de.7 (8)
|
||||
0x1d0| 1d 25 ea 0c | .%.. | occur: "1985-07-01T00:00:12Z" (489024012) 0x1d7-0x1da.7 (4)
|
||||
0x1d0| 00 00 00 0d | .... | corr: 13 0x1db-0x1de.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x1df-0x1e6.7 (8)
|
||||
0x1d0| 21| !| occur: "1988-01-01T00:00:13Z" (567993613) 0x1df-0x1e2.7 (4)
|
||||
0x1e0|da e5 0d |... |
|
||||
0x1e0| 00 00 00 0e | .... | corr: 14 0x1e3-0x1e6.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x1e7-0x1ee.7 (8)
|
||||
0x1e0| 25 9e 9d 8e | %... | occur: "1990-01-01T00:00:14Z" (631152014) 0x1e7-0x1ea.7 (4)
|
||||
0x1e0| 00 00 00 0f | .... | corr: 15 0x1eb-0x1ee.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x1ef-0x1f6.7 (8)
|
||||
0x1e0| 27| '| occur: "1991-01-01T00:00:15Z" (662688015) 0x1ef-0x1f2.7 (4)
|
||||
0x1f0|7f d1 0f |... |
|
||||
0x1f0| 00 00 00 10 | .... | corr: 16 0x1f3-0x1f6.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x1f7-0x1fe.7 (8)
|
||||
0x1f0| 2a 50 f5 90 | *P.. | occur: "1992-07-01T00:00:16Z" (709948816) 0x1f7-0x1fa.7 (4)
|
||||
0x1f0| 00 00 00 11 | .... | corr: 17 0x1fb-0x1fe.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x1ff-0x206.7 (8)
|
||||
0x1f0| 2c| ,| occur: "1993-07-01T00:00:17Z" (741484817) 0x1ff-0x202.7 (4)
|
||||
0x200|32 29 11 |2). |
|
||||
0x200| 00 00 00 12 | .... | corr: 18 0x203-0x206.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x207-0x20e.7 (8)
|
||||
0x200| 2e 13 5c 92 | ..\. | occur: "1994-07-01T00:00:18Z" (773020818) 0x207-0x20a.7 (4)
|
||||
0x200| 00 00 00 13 | .... | corr: 19 0x20b-0x20e.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x20f-0x216.7 (8)
|
||||
0x200| 30| 0| occur: "1996-01-01T00:00:19Z" (820454419) 0x20f-0x212.7 (4)
|
||||
0x210|e7 24 13 |.$. |
|
||||
0x210| 00 00 00 14 | .... | corr: 20 0x213-0x216.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x217-0x21e.7 (8)
|
||||
0x210| 33 b8 48 94 | 3.H. | occur: "1997-07-01T00:00:20Z" (867715220) 0x217-0x21a.7 (4)
|
||||
0x210| 00 00 00 15 | .... | corr: 21 0x21b-0x21e.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x21f-0x226.7 (8)
|
||||
0x210| 36| 6| occur: "1999-01-01T00:00:21Z" (915148821) 0x21f-0x222.7 (4)
|
||||
0x220|8c 10 15 |... |
|
||||
0x220| 00 00 00 16 | .... | corr: 22 0x223-0x226.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x227-0x22e.7 (8)
|
||||
0x220| 43 b7 1b 96 | C... | occur: "2006-01-01T00:00:22Z" (1136073622) 0x227-0x22a.7 (4)
|
||||
0x220| 00 00 00 17 | .... | corr: 23 0x22b-0x22e.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x22f-0x236.7 (8)
|
||||
0x220| 49| I| occur: "2009-01-01T00:00:23Z" (1230768023) 0x22f-0x232.7 (4)
|
||||
0x230|5c 07 97 |\.. |
|
||||
0x230| 00 00 00 18 | .... | corr: 24 0x233-0x236.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x237-0x23e.7 (8)
|
||||
0x230| 4f ef 93 18 | O... | occur: "2012-07-01T00:00:24Z" (1341100824) 0x237-0x23a.7 (4)
|
||||
0x230| 00 00 00 19 | .... | corr: 25 0x23b-0x23e.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x23f-0x246.7 (8)
|
||||
0x230| 55| U| occur: "2015-07-01T00:00:25Z" (1435708825) 0x23f-0x242.7 (4)
|
||||
0x240|93 2d 99 |.-. |
|
||||
0x240| 00 00 00 1a | .... | corr: 26 0x243-0x246.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x247-0x24e.7 (8)
|
||||
0x240| 58 68 46 9a | XhF. | occur: "2017-01-01T00:00:26Z" (1483228826) 0x247-0x24a.7 (4)
|
||||
0x240| 00 00 00 1b | .... | corr: 27 0x24b-0x24e.7 (4)
|
||||
| | | standard_wall_indicators[0:10]: 0x24f-0x258.7 (10)
|
||||
0x240| 00| .| [0]: 0 standard_wall_indicator (valid) 0x24f-0x24f.7 (1)
|
||||
0x250|00 |. | [1]: 0 standard_wall_indicator (valid) 0x250-0x250.7 (1)
|
||||
0x250| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x251-0x251.7 (1)
|
||||
0x250| 00 | . | [3]: 0 standard_wall_indicator (valid) 0x252-0x252.7 (1)
|
||||
0x250| 00 | . | [4]: 0 standard_wall_indicator (valid) 0x253-0x253.7 (1)
|
||||
0x250| 01 | . | [5]: 1 standard_wall_indicator (valid) 0x254-0x254.7 (1)
|
||||
0x250| 01 | . | [6]: 1 standard_wall_indicator (valid) 0x255-0x255.7 (1)
|
||||
0x250| 01 | . | [7]: 1 standard_wall_indicator (valid) 0x256-0x256.7 (1)
|
||||
0x250| 01 | . | [8]: 1 standard_wall_indicator (valid) 0x257-0x257.7 (1)
|
||||
0x250| 01 | . | [9]: 1 standard_wall_indicator (valid) 0x258-0x258.7 (1)
|
||||
| | | ut_local_indicators[0:0]: 0x259-NA (0)
|
||||
| | | v2plusheader{}: 0x259-0x284.7 (44)
|
||||
0x250| 54 5a 69 66 | TZif | magic: 0x545a6966 (valid) 0x259-0x25c.7 (4)
|
||||
0x250| 32 | 2 | ver: "2" (0x32) (valid) 0x25d-0x25d.7 (1)
|
||||
0x250| 00 00| ..| reserved: raw bits 0x25e-0x26c.7 (15)
|
||||
0x260|00 00 00 00 00 00 00 00 00 00 00 00 00 |............. |
|
||||
0x260| 00 00 00| ...| isutcnt: 0 0x26d-0x270.7 (4)
|
||||
0x270|00 |. |
|
||||
0x270| 00 00 00 0a | .... | isstdcnt: 10 0x271-0x274.7 (4)
|
||||
0x270| 00 00 00 1b | .... | leapcnt: 27 0x275-0x278.7 (4)
|
||||
0x270| 00 00 00 33 | ...3 | timecnt: 51 0x279-0x27c.7 (4)
|
||||
0x270| 00 00 00| ...| typecnt: 10 0x27d-0x280.7 (4)
|
||||
0x280|0a |. |
|
||||
0x280| 00 00 00 10 | .... | charcnt: 16 0x281-0x284.7 (4)
|
||||
| | | v2plusdatablock{}: 0x285-0x5e9.7 (869)
|
||||
| | | transition_times[0:51]: 0x285-0x41c.7 (408)
|
||||
0x280| ff ff ff ff aa 19 94 e0 | ........ | [0]: "1924-05-01T20:38:56Z" (-1441164064) transition_time 0x285-0x28c.7 (8)
|
||||
0x280| ff ff ff| ...| [1]: "1930-06-20T20:00:00Z" (-1247544000) transition_time 0x28d-0x294.7 (8)
|
||||
0x290|ff b5 a3 fd 40 |....@ |
|
||||
0x290| 00 00 00 00 16 18 ce 3a | .......: | [2]: "1981-09-30T19:00:10Z" (370724410) transition_time 0x295-0x29c.7 (8)
|
||||
0x290| 00 00 00| ...| [3]: "1982-03-31T18:00:10Z" (386445610) transition_time 0x29d-0x2a4.7 (8)
|
||||
0x2a0|00 17 08 b1 2a |....* |
|
||||
0x2a0| 00 00 00 00 17 f9 f3 ab | ........ | [4]: "1982-09-30T18:00:11Z" (402256811) transition_time 0x2a5-0x2ac.7 (8)
|
||||
0x2a0| 00 00 00| ...| [5]: "1983-03-31T19:00:11Z" (417985211) transition_time 0x2ad-0x2b4.7 (8)
|
||||
0x2b0|00 18 e9 f2 bb |..... |
|
||||
0x2b0| 00 00 00 00 19 db 27 2c | ......', | [6]: "1983-09-30T18:00:12Z" (433792812) transition_time 0x2b5-0x2bc.7 (8)
|
||||
0x2b0| 00 00 00| ...| [7]: "1984-03-31T19:00:12Z" (449607612) transition_time 0x2bd-0x2c4.7 (8)
|
||||
0x2c0|00 1a cc 77 bc |...w. |
|
||||
0x2c0| 00 00 00 00 1b bc 84 dc | ........ | [8]: "1984-09-29T21:00:12Z" (465339612) transition_time 0x2c5-0x2cc.7 (8)
|
||||
0x2c0| 00 00 00| ...| [9]: "1985-03-30T21:00:12Z" (481064412) transition_time 0x2cd-0x2d4.7 (8)
|
||||
0x2d0|00 1c ac 75 dc |...u. |
|
||||
0x2d0| 00 00 00 00 1d 9c 66 dd | ......f. | [10]: "1985-09-28T21:00:13Z" (496789213) transition_time 0x2d5-0x2dc.7 (8)
|
||||
0x2d0| 00 00 00| ...| [11]: "1986-03-29T21:00:13Z" (512514013) transition_time 0x2dd-0x2e4.7 (8)
|
||||
0x2e0|00 1e 8c 57 dd |...W. |
|
||||
0x2e0| 00 00 00 00 1f 7c 48 dd | .....|H. | [12]: "1986-09-27T21:00:13Z" (528238813) transition_time 0x2e5-0x2ec.7 (8)
|
||||
0x2e0| 00 00 00| ...| [13]: "1987-03-28T21:00:13Z" (543963613) transition_time 0x2ed-0x2f4.7 (8)
|
||||
0x2f0|00 20 6c 39 dd |. l9. |
|
||||
0x2f0| 00 00 00 00 21 5c 2a dd | ....!\*. | [14]: "1987-09-26T21:00:13Z" (559688413) transition_time 0x2f5-0x2fc.7 (8)
|
||||
0x2f0| 00 00 00| ...| [15]: "1988-03-26T21:00:14Z" (575413214) transition_time 0x2fd-0x304.7 (8)
|
||||
0x300|00 22 4c 1b de |."L.. |
|
||||
0x300| 00 00 00 00 23 3c 0c de | ....#<.. | [16]: "1988-09-24T21:00:14Z" (591138014) transition_time 0x305-0x30c.7 (8)
|
||||
0x300| 00 00 00| ...| [17]: "1989-03-25T21:00:14Z" (606862814) transition_time 0x30d-0x314.7 (8)
|
||||
0x310|00 24 2b fd de |.$+.. |
|
||||
0x310| 00 00 00 00 25 1b ee de | ....%... | [18]: "1989-09-23T21:00:14Z" (622587614) transition_time 0x315-0x31c.7 (8)
|
||||
0x310| 00 00 00| ...| [19]: "1990-03-24T21:00:15Z" (638312415) transition_time 0x31d-0x324.7 (8)
|
||||
0x320|00 26 0b df df |.&... |
|
||||
0x320| 00 00 00 00 27 05 0b 5f | ....'.._ | [20]: "1990-09-29T21:00:15Z" (654642015) transition_time 0x325-0x32c.7 (8)
|
||||
0x320| 00 00 00| ...| [21]: "1991-03-30T21:00:16Z" (670366816) transition_time 0x32d-0x334.7 (8)
|
||||
0x330|00 27 f4 fc 60 |.'..` |
|
||||
0x330| 00 00 00 00 28 e4 fb 70 | ....(..p | [22]: "1991-09-28T22:00:16Z" (686095216) transition_time 0x335-0x33c.7 (8)
|
||||
0x330| 00 00 00| ...| [23]: "1992-01-18T22:00:16Z" (695772016) transition_time 0x33d-0x344.7 (8)
|
||||
0x340|00 29 78 a3 70 |.)x.p |
|
||||
0x340| 00 00 00 00 29 d4 de 60 | ....)..` | [24]: "1992-03-28T21:00:16Z" (701816416) transition_time 0x345-0x34c.7 (8)
|
||||
0x340| 00 00 00| ...| [25]: "1992-09-26T21:00:17Z" (717541217) transition_time 0x34d-0x354.7 (8)
|
||||
0x350|00 2a c4 cf 61 |.*..a |
|
||||
0x350| 00 00 00 00 2b b4 c0 61 | ....+..a | [26]: "1993-03-27T21:00:17Z" (733266017) transition_time 0x355-0x35c.7 (8)
|
||||
0x350| 00 00 00| ...| [27]: "1993-09-25T21:00:18Z" (748990818) transition_time 0x35d-0x364.7 (8)
|
||||
0x360|00 2c a4 b1 62 |.,..b |
|
||||
0x360| 00 00 00 00 2d 94 a2 62 | ....-..b | [28]: "1994-03-26T21:00:18Z" (764715618) transition_time 0x365-0x36c.7 (8)
|
||||
0x360| 00 00 00| ...| [29]: "1994-09-24T21:00:19Z" (780440419) transition_time 0x36d-0x374.7 (8)
|
||||
0x370|00 2e 84 93 63 |....c |
|
||||
0x370| 00 00 00 00 2f 74 92 73 | ..../t.s | [30]: "1995-03-25T22:00:19Z" (796168819) transition_time 0x375-0x37c.7 (8)
|
||||
0x370| 00 00 00| ...| [31]: "1995-09-23T22:00:19Z" (811893619) transition_time 0x37d-0x384.7 (8)
|
||||
0x380|00 30 64 83 73 |.0d.s |
|
||||
0x380| 00 00 00 00 31 5d ae f4 | ....1].. | [32]: "1996-03-30T22:00:20Z" (828223220) transition_time 0x385-0x38c.7 (8)
|
||||
0x380| 00 00 00| ...| [33]: "1996-10-26T22:00:20Z" (846367220) transition_time 0x38d-0x394.7 (8)
|
||||
0x390|00 32 72 89 f4 |.2r.. |
|
||||
0x390| 00 00 00 00 33 3d 90 f4 | ....3=.. | [34]: "1997-03-29T22:00:20Z" (859672820) transition_time 0x395-0x39c.7 (8)
|
||||
0x390| 00 00 00| ...| [35]: "1997-10-25T22:00:21Z" (877816821) transition_time 0x39d-0x3a4.7 (8)
|
||||
0x3a0|00 34 52 6b f5 |.4Rk. |
|
||||
0x3a0| 00 00 00 00 35 1d 72 f5 | ....5.r. | [36]: "1998-03-28T22:00:21Z" (891122421) transition_time 0x3a5-0x3ac.7 (8)
|
||||
0x3a0| 00 00 00| ...| [37]: "1998-10-24T22:00:21Z" (909266421) transition_time 0x3ad-0x3b4.7 (8)
|
||||
0x3b0|00 36 32 4d f5 |.62M. |
|
||||
0x3b0| 00 00 00 00 36 fd 54 f6 | ....6.T. | [38]: "1999-03-27T22:00:22Z" (922572022) transition_time 0x3b5-0x3bc.7 (8)
|
||||
0x3b0| 00 00 00| ...| [39]: "1999-10-30T22:00:22Z" (941320822) transition_time 0x3bd-0x3c4.7 (8)
|
||||
0x3c0|00 38 1b 6a 76 |.8.jv |
|
||||
0x3c0| 00 00 00 00 38 dd 36 f6 | ....8.6. | [40]: "2000-03-25T22:00:22Z" (954021622) transition_time 0x3c5-0x3cc.7 (8)
|
||||
0x3c0| 00 00 00| ...| [41]: "2000-10-28T22:00:22Z" (972770422) transition_time 0x3cd-0x3d4.7 (8)
|
||||
0x3d0|00 39 fb 4c 76 |.9.Lv |
|
||||
0x3d0| 00 00 00 00 3a bd 18 f6 | ....:... | [42]: "2001-03-24T22:00:22Z" (985471222) transition_time 0x3d5-0x3dc.7 (8)
|
||||
0x3d0| 00 00 00| ...| [43]: "2001-10-27T22:00:22Z" (1004220022) transition_time 0x3dd-0x3e4.7 (8)
|
||||
0x3e0|00 3b db 2e 76 |.;..v |
|
||||
0x3e0| 00 00 00 00 3c a6 35 76 | ....<.5v | [44]: "2002-03-30T22:00:22Z" (1017525622) transition_time 0x3e5-0x3ec.7 (8)
|
||||
0x3e0| 00 00 00| ...| [45]: "2002-10-26T22:00:22Z" (1035669622) transition_time 0x3ed-0x3f4.7 (8)
|
||||
0x3f0|00 3d bb 10 76 |.=..v |
|
||||
0x3f0| 00 00 00 00 3e 86 17 76 | ....>..v | [46]: "2003-03-29T22:00:22Z" (1048975222) transition_time 0x3f5-0x3fc.7 (8)
|
||||
0x3f0| 00 00 00| ...| [47]: "2003-10-25T22:00:22Z" (1067119222) transition_time 0x3fd-0x404.7 (8)
|
||||
0x400|00 3f 9a f2 76 |.?..v |
|
||||
0x400| 00 00 00 00 40 65 f9 76 | ....@e.v | [48]: "2004-03-27T22:00:22Z" (1080424822) transition_time 0x405-0x40c.7 (8)
|
||||
0x400| 00 00 00| ...| [49]: "2004-10-30T22:00:22Z" (1099173622) transition_time 0x40d-0x414.7 (8)
|
||||
0x410|00 41 84 0e f6 |.A... |
|
||||
0x410| 00 00 00 00 64 9b 78 1b | ....d.x. | [50]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x415-0x41c.7 (8)
|
||||
| | | transition_types[0:51]: 0x41d-0x44f.7 (51)
|
||||
0x410| 01 | . | [0]: 1 transition_type 0x41d-0x41d.7 (1)
|
||||
0x410| 02 | . | [1]: 2 transition_type 0x41e-0x41e.7 (1)
|
||||
0x410| 03| .| [2]: 3 transition_type 0x41f-0x41f.7 (1)
|
||||
0x420|04 |. | [3]: 4 transition_type 0x420-0x420.7 (1)
|
||||
0x420| 02 | . | [4]: 2 transition_type 0x421-0x421.7 (1)
|
||||
0x420| 04 | . | [5]: 4 transition_type 0x422-0x422.7 (1)
|
||||
0x420| 02 | . | [6]: 2 transition_type 0x423-0x423.7 (1)
|
||||
0x420| 04 | . | [7]: 4 transition_type 0x424-0x424.7 (1)
|
||||
0x420| 05 | . | [8]: 5 transition_type 0x425-0x425.7 (1)
|
||||
0x420| 06 | . | [9]: 6 transition_type 0x426-0x426.7 (1)
|
||||
0x420| 05 | . | [10]: 5 transition_type 0x427-0x427.7 (1)
|
||||
0x420| 06 | . | [11]: 6 transition_type 0x428-0x428.7 (1)
|
||||
0x420| 05 | . | [12]: 5 transition_type 0x429-0x429.7 (1)
|
||||
0x420| 06 | . | [13]: 6 transition_type 0x42a-0x42a.7 (1)
|
||||
0x420| 05 | . | [14]: 5 transition_type 0x42b-0x42b.7 (1)
|
||||
0x420| 06 | . | [15]: 6 transition_type 0x42c-0x42c.7 (1)
|
||||
0x420| 05 | . | [16]: 5 transition_type 0x42d-0x42d.7 (1)
|
||||
0x420| 06 | . | [17]: 6 transition_type 0x42e-0x42e.7 (1)
|
||||
0x420| 05| .| [18]: 5 transition_type 0x42f-0x42f.7 (1)
|
||||
0x430|06 |. | [19]: 6 transition_type 0x430-0x430.7 (1)
|
||||
0x430| 05 | . | [20]: 5 transition_type 0x431-0x431.7 (1)
|
||||
0x430| 07 | . | [21]: 7 transition_type 0x432-0x432.7 (1)
|
||||
0x430| 08 | . | [22]: 8 transition_type 0x433-0x433.7 (1)
|
||||
0x430| 05 | . | [23]: 5 transition_type 0x434-0x434.7 (1)
|
||||
0x430| 06 | . | [24]: 6 transition_type 0x435-0x435.7 (1)
|
||||
0x430| 05 | . | [25]: 5 transition_type 0x436-0x436.7 (1)
|
||||
0x430| 06 | . | [26]: 6 transition_type 0x437-0x437.7 (1)
|
||||
0x430| 05 | . | [27]: 5 transition_type 0x438-0x438.7 (1)
|
||||
0x430| 06 | . | [28]: 6 transition_type 0x439-0x439.7 (1)
|
||||
0x430| 08 | . | [29]: 8 transition_type 0x43a-0x43a.7 (1)
|
||||
0x430| 07 | . | [30]: 7 transition_type 0x43b-0x43b.7 (1)
|
||||
0x430| 08 | . | [31]: 8 transition_type 0x43c-0x43c.7 (1)
|
||||
0x430| 07 | . | [32]: 7 transition_type 0x43d-0x43d.7 (1)
|
||||
0x430| 08 | . | [33]: 8 transition_type 0x43e-0x43e.7 (1)
|
||||
0x430| 07| .| [34]: 7 transition_type 0x43f-0x43f.7 (1)
|
||||
0x440|08 |. | [35]: 8 transition_type 0x440-0x440.7 (1)
|
||||
0x440| 07 | . | [36]: 7 transition_type 0x441-0x441.7 (1)
|
||||
0x440| 08 | . | [37]: 8 transition_type 0x442-0x442.7 (1)
|
||||
0x440| 07 | . | [38]: 7 transition_type 0x443-0x443.7 (1)
|
||||
0x440| 08 | . | [39]: 8 transition_type 0x444-0x444.7 (1)
|
||||
0x440| 07 | . | [40]: 7 transition_type 0x445-0x445.7 (1)
|
||||
0x440| 08 | . | [41]: 8 transition_type 0x446-0x446.7 (1)
|
||||
0x440| 07 | . | [42]: 7 transition_type 0x447-0x447.7 (1)
|
||||
0x440| 08 | . | [43]: 8 transition_type 0x448-0x448.7 (1)
|
||||
0x440| 07 | . | [44]: 7 transition_type 0x449-0x449.7 (1)
|
||||
0x440| 08 | . | [45]: 8 transition_type 0x44a-0x44a.7 (1)
|
||||
0x440| 07 | . | [46]: 7 transition_type 0x44b-0x44b.7 (1)
|
||||
0x440| 08 | . | [47]: 8 transition_type 0x44c-0x44c.7 (1)
|
||||
0x440| 07 | . | [48]: 7 transition_type 0x44d-0x44d.7 (1)
|
||||
0x440| 05 | . | [49]: 5 transition_type 0x44e-0x44e.7 (1)
|
||||
0x440| 05| .| [50]: 5 transition_type 0x44f-0x44f.7 (1)
|
||||
| | | local_time_type_records[0:10]: 0x450-0x48b.7 (60)
|
||||
| | | [0]{}: local_time_type 0x450-0x455.7 (6)
|
||||
0x450|00 00 2f 20 |../ | utoff: 12064 (valid) 0x450-0x453.7 (4)
|
||||
0x450| 00 | . | dst: 0 (valid) 0x454-0x454.7 (1)
|
||||
0x450| 00 | . | idx: 0 (valid) 0x455-0x455.7 (1)
|
||||
| | | [1]{}: local_time_type 0x456-0x45b.7 (6)
|
||||
0x450| 00 00 38 40 | ..8@ | utoff: 14400 (valid) 0x456-0x459.7 (4)
|
||||
0x450| 00 | . | dst: 0 (valid) 0x45a-0x45a.7 (1)
|
||||
0x450| 04 | . | idx: 4 (valid) 0x45b-0x45b.7 (1)
|
||||
| | | [2]{}: local_time_type 0x45c-0x461.7 (6)
|
||||
0x450| 00 00 46 50| ..FP| utoff: 18000 (valid) 0x45c-0x45f.7 (4)
|
||||
0x460|00 |. | dst: 0 (valid) 0x460-0x460.7 (1)
|
||||
0x460| 08 | . | idx: 8 (valid) 0x461-0x461.7 (1)
|
||||
| | | [3]{}: local_time_type 0x462-0x467.7 (6)
|
||||
0x460| 00 00 54 60 | ..T` | utoff: 21600 (valid) 0x462-0x465.7 (4)
|
||||
0x460| 00 | . | dst: 0 (valid) 0x466-0x466.7 (1)
|
||||
0x460| 0c | . | idx: 12 (valid) 0x467-0x467.7 (1)
|
||||
| | | [4]{}: local_time_type 0x468-0x46d.7 (6)
|
||||
0x460| 00 00 54 60 | ..T` | utoff: 21600 (valid) 0x468-0x46b.7 (4)
|
||||
0x460| 01 | . | dst: 1 (valid) 0x46c-0x46c.7 (1)
|
||||
0x460| 0c | . | idx: 12 (valid) 0x46d-0x46d.7 (1)
|
||||
| | | [5]{}: local_time_type 0x46e-0x473.7 (6)
|
||||
0x460| 00 00| ..| utoff: 18000 (valid) 0x46e-0x471.7 (4)
|
||||
0x470|46 50 |FP |
|
||||
0x470| 00 | . | dst: 0 (valid) 0x472-0x472.7 (1)
|
||||
0x470| 08 | . | idx: 8 (valid) 0x473-0x473.7 (1)
|
||||
| | | [6]{}: local_time_type 0x474-0x479.7 (6)
|
||||
0x470| 00 00 54 60 | ..T` | utoff: 21600 (valid) 0x474-0x477.7 (4)
|
||||
0x470| 01 | . | dst: 1 (valid) 0x478-0x478.7 (1)
|
||||
0x470| 0c | . | idx: 12 (valid) 0x479-0x479.7 (1)
|
||||
| | | [7]{}: local_time_type 0x47a-0x47f.7 (6)
|
||||
0x470| 00 00 46 50 | ..FP | utoff: 18000 (valid) 0x47a-0x47d.7 (4)
|
||||
0x470| 01 | . | dst: 1 (valid) 0x47e-0x47e.7 (1)
|
||||
0x470| 08| .| idx: 8 (valid) 0x47f-0x47f.7 (1)
|
||||
| | | [8]{}: local_time_type 0x480-0x485.7 (6)
|
||||
0x480|00 00 38 40 |..8@ | utoff: 14400 (valid) 0x480-0x483.7 (4)
|
||||
0x480| 00 | . | dst: 0 (valid) 0x484-0x484.7 (1)
|
||||
0x480| 04 | . | idx: 4 (valid) 0x485-0x485.7 (1)
|
||||
| | | [9]{}: local_time_type 0x486-0x48b.7 (6)
|
||||
0x480| 00 00 46 50 | ..FP | utoff: 18000 (valid) 0x486-0x489.7 (4)
|
||||
0x480| 00 | . | dst: 0 (valid) 0x48a-0x48a.7 (1)
|
||||
0x480| 08 | . | idx: 8 (valid) 0x48b-0x48b.7 (1)
|
||||
| | | time_zone_designations[0:4]: 0x48c-0x49b.7 (16)
|
||||
0x480| 4c 4d 54 00| LMT.| [0]: "LMT" time_zone_designation 0x48c-0x48f.7 (4)
|
||||
0x490|2b 30 34 00 |+04. | [1]: "+04" time_zone_designation 0x490-0x493.7 (4)
|
||||
0x490| 2b 30 35 00 | +05. | [2]: "+05" time_zone_designation 0x494-0x497.7 (4)
|
||||
0x490| 2b 30 36 00 | +06. | [3]: "+06" time_zone_designation 0x498-0x49b.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x49c-0x5df.7 (324)
|
||||
| | | [0]{}: leap_second_record 0x49c-0x4a7.7 (12)
|
||||
0x490| 00 00 00 00| ....| occur: "1972-07-01T00:00:00Z" (78796800) 0x49c-0x4a3.7 (8)
|
||||
0x4a0|04 b2 58 00 |..X. |
|
||||
0x4a0| 00 00 00 01 | .... | corr: 1 0x4a4-0x4a7.7 (4)
|
||||
| | | [1]{}: leap_second_record 0x4a8-0x4b3.7 (12)
|
||||
0x4a0| 00 00 00 00 05 a4 ec 01| ........| occur: "1973-01-01T00:00:01Z" (94694401) 0x4a8-0x4af.7 (8)
|
||||
0x4b0|00 00 00 02 |.... | corr: 2 0x4b0-0x4b3.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x4b4-0x4bf.7 (12)
|
||||
0x4b0| 00 00 00 00 07 86 1f 82 | ........ | occur: "1974-01-01T00:00:02Z" (126230402) 0x4b4-0x4bb.7 (8)
|
||||
0x4b0| 00 00 00 03| ....| corr: 3 0x4bc-0x4bf.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x4c0-0x4cb.7 (12)
|
||||
0x4c0|00 00 00 00 09 67 53 03 |.....gS. | occur: "1975-01-01T00:00:03Z" (157766403) 0x4c0-0x4c7.7 (8)
|
||||
0x4c0| 00 00 00 04 | .... | corr: 4 0x4c8-0x4cb.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x4cc-0x4d7.7 (12)
|
||||
0x4c0| 00 00 00 00| ....| occur: "1976-01-01T00:00:04Z" (189302404) 0x4cc-0x4d3.7 (8)
|
||||
0x4d0|0b 48 86 84 |.H.. |
|
||||
0x4d0| 00 00 00 05 | .... | corr: 5 0x4d4-0x4d7.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x4d8-0x4e3.7 (12)
|
||||
0x4d0| 00 00 00 00 0d 2b 0b 85| .....+..| occur: "1977-01-01T00:00:05Z" (220924805) 0x4d8-0x4df.7 (8)
|
||||
0x4e0|00 00 00 06 |.... | corr: 6 0x4e0-0x4e3.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x4e4-0x4ef.7 (12)
|
||||
0x4e0| 00 00 00 00 0f 0c 3f 06 | ......?. | occur: "1978-01-01T00:00:06Z" (252460806) 0x4e4-0x4eb.7 (8)
|
||||
0x4e0| 00 00 00 07| ....| corr: 7 0x4ec-0x4ef.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x4f0-0x4fb.7 (12)
|
||||
0x4f0|00 00 00 00 10 ed 72 87 |......r. | occur: "1979-01-01T00:00:07Z" (283996807) 0x4f0-0x4f7.7 (8)
|
||||
0x4f0| 00 00 00 08 | .... | corr: 8 0x4f8-0x4fb.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x4fc-0x507.7 (12)
|
||||
0x4f0| 00 00 00 00| ....| occur: "1980-01-01T00:00:08Z" (315532808) 0x4fc-0x503.7 (8)
|
||||
0x500|12 ce a6 08 |.... |
|
||||
0x500| 00 00 00 09 | .... | corr: 9 0x504-0x507.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x508-0x513.7 (12)
|
||||
0x500| 00 00 00 00 15 9f ca 89| ........| occur: "1981-07-01T00:00:09Z" (362793609) 0x508-0x50f.7 (8)
|
||||
0x510|00 00 00 0a |.... | corr: 10 0x510-0x513.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x514-0x51f.7 (12)
|
||||
0x510| 00 00 00 00 17 80 fe 0a | ........ | occur: "1982-07-01T00:00:10Z" (394329610) 0x514-0x51b.7 (8)
|
||||
0x510| 00 00 00 0b| ....| corr: 11 0x51c-0x51f.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x520-0x52b.7 (12)
|
||||
0x520|00 00 00 00 19 62 31 8b |.....b1. | occur: "1983-07-01T00:00:11Z" (425865611) 0x520-0x527.7 (8)
|
||||
0x520| 00 00 00 0c | .... | corr: 12 0x528-0x52b.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x52c-0x537.7 (12)
|
||||
0x520| 00 00 00 00| ....| occur: "1985-07-01T00:00:12Z" (489024012) 0x52c-0x533.7 (8)
|
||||
0x530|1d 25 ea 0c |.%.. |
|
||||
0x530| 00 00 00 0d | .... | corr: 13 0x534-0x537.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x538-0x543.7 (12)
|
||||
0x530| 00 00 00 00 21 da e5 0d| ....!...| occur: "1988-01-01T00:00:13Z" (567993613) 0x538-0x53f.7 (8)
|
||||
0x540|00 00 00 0e |.... | corr: 14 0x540-0x543.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x544-0x54f.7 (12)
|
||||
0x540| 00 00 00 00 25 9e 9d 8e | ....%... | occur: "1990-01-01T00:00:14Z" (631152014) 0x544-0x54b.7 (8)
|
||||
0x540| 00 00 00 0f| ....| corr: 15 0x54c-0x54f.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x550-0x55b.7 (12)
|
||||
0x550|00 00 00 00 27 7f d1 0f |....'... | occur: "1991-01-01T00:00:15Z" (662688015) 0x550-0x557.7 (8)
|
||||
0x550| 00 00 00 10 | .... | corr: 16 0x558-0x55b.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x55c-0x567.7 (12)
|
||||
0x550| 00 00 00 00| ....| occur: "1992-07-01T00:00:16Z" (709948816) 0x55c-0x563.7 (8)
|
||||
0x560|2a 50 f5 90 |*P.. |
|
||||
0x560| 00 00 00 11 | .... | corr: 17 0x564-0x567.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x568-0x573.7 (12)
|
||||
0x560| 00 00 00 00 2c 32 29 11| ....,2).| occur: "1993-07-01T00:00:17Z" (741484817) 0x568-0x56f.7 (8)
|
||||
0x570|00 00 00 12 |.... | corr: 18 0x570-0x573.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x574-0x57f.7 (12)
|
||||
0x570| 00 00 00 00 2e 13 5c 92 | ......\. | occur: "1994-07-01T00:00:18Z" (773020818) 0x574-0x57b.7 (8)
|
||||
0x570| 00 00 00 13| ....| corr: 19 0x57c-0x57f.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x580-0x58b.7 (12)
|
||||
0x580|00 00 00 00 30 e7 24 13 |....0.$. | occur: "1996-01-01T00:00:19Z" (820454419) 0x580-0x587.7 (8)
|
||||
0x580| 00 00 00 14 | .... | corr: 20 0x588-0x58b.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x58c-0x597.7 (12)
|
||||
0x580| 00 00 00 00| ....| occur: "1997-07-01T00:00:20Z" (867715220) 0x58c-0x593.7 (8)
|
||||
0x590|33 b8 48 94 |3.H. |
|
||||
0x590| 00 00 00 15 | .... | corr: 21 0x594-0x597.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x598-0x5a3.7 (12)
|
||||
0x590| 00 00 00 00 36 8c 10 15| ....6...| occur: "1999-01-01T00:00:21Z" (915148821) 0x598-0x59f.7 (8)
|
||||
0x5a0|00 00 00 16 |.... | corr: 22 0x5a0-0x5a3.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x5a4-0x5af.7 (12)
|
||||
0x5a0| 00 00 00 00 43 b7 1b 96 | ....C... | occur: "2006-01-01T00:00:22Z" (1136073622) 0x5a4-0x5ab.7 (8)
|
||||
0x5a0| 00 00 00 17| ....| corr: 23 0x5ac-0x5af.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x5b0-0x5bb.7 (12)
|
||||
0x5b0|00 00 00 00 49 5c 07 97 |....I\.. | occur: "2009-01-01T00:00:23Z" (1230768023) 0x5b0-0x5b7.7 (8)
|
||||
0x5b0| 00 00 00 18 | .... | corr: 24 0x5b8-0x5bb.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x5bc-0x5c7.7 (12)
|
||||
0x5b0| 00 00 00 00| ....| occur: "2012-07-01T00:00:24Z" (1341100824) 0x5bc-0x5c3.7 (8)
|
||||
0x5c0|4f ef 93 18 |O... |
|
||||
0x5c0| 00 00 00 19 | .... | corr: 25 0x5c4-0x5c7.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x5c8-0x5d3.7 (12)
|
||||
0x5c0| 00 00 00 00 55 93 2d 99| ....U.-.| occur: "2015-07-01T00:00:25Z" (1435708825) 0x5c8-0x5cf.7 (8)
|
||||
0x5d0|00 00 00 1a |.... | corr: 26 0x5d0-0x5d3.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x5d4-0x5df.7 (12)
|
||||
0x5d0| 00 00 00 00 58 68 46 9a | ....XhF. | occur: "2017-01-01T00:00:26Z" (1483228826) 0x5d4-0x5db.7 (8)
|
||||
0x5d0| 00 00 00 1b| ....| corr: 27 0x5dc-0x5df.7 (4)
|
||||
| | | standard_wall_indicators[0:10]: 0x5e0-0x5e9.7 (10)
|
||||
0x5e0|00 |. | [0]: 0 standard_wall_indicator (valid) 0x5e0-0x5e0.7 (1)
|
||||
0x5e0| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x5e1-0x5e1.7 (1)
|
||||
0x5e0| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x5e2-0x5e2.7 (1)
|
||||
0x5e0| 00 | . | [3]: 0 standard_wall_indicator (valid) 0x5e3-0x5e3.7 (1)
|
||||
0x5e0| 00 | . | [4]: 0 standard_wall_indicator (valid) 0x5e4-0x5e4.7 (1)
|
||||
0x5e0| 01 | . | [5]: 1 standard_wall_indicator (valid) 0x5e5-0x5e5.7 (1)
|
||||
0x5e0| 01 | . | [6]: 1 standard_wall_indicator (valid) 0x5e6-0x5e6.7 (1)
|
||||
0x5e0| 01 | . | [7]: 1 standard_wall_indicator (valid) 0x5e7-0x5e7.7 (1)
|
||||
0x5e0| 01 | . | [8]: 1 standard_wall_indicator (valid) 0x5e8-0x5e8.7 (1)
|
||||
0x5e0| 01 | . | [9]: 1 standard_wall_indicator (valid) 0x5e9-0x5e9.7 (1)
|
||||
| | | ut_local_indicators[0:0]: 0x5ea-NA (0)
|
||||
| | | footer{}: 0x5ea-0x5eb.7 (2)
|
||||
0x5e0| 0a | . | nl1: 10 (valid) 0x5ea-0x5ea.7 (1)
|
||||
| | | tz_string: "" 0x5eb-NA (0)
|
||||
0x5e0| 0a| | .| | nl2: 10 (valid) 0x5eb-0x5eb.7 (1)
|
BIN
format/tzif/testdata/Aqtobe
vendored
Normal file
BIN
format/tzif/testdata/Aqtobe
vendored
Normal file
Binary file not shown.
598
format/tzif/testdata/Aqtobe.fqtest
vendored
Normal file
598
format/tzif/testdata/Aqtobe.fqtest
vendored
Normal file
@ -0,0 +1,598 @@
|
||||
$ fq -d tzif dv Aqtobe
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: Aqtobe (tzif) 0x0-0x607.7 (1544)
|
||||
| | | v1header{}: 0x0-0x2b.7 (44)
|
||||
0x000|54 5a 69 66 |TZif | magic: 0x545a6966 (valid) 0x0-0x3.7 (4)
|
||||
0x000| 32 | 2 | ver: "2" (0x32) (valid) 0x4-0x4.7 (1)
|
||||
0x000| 00 00 00 00 00 00 00 00 00 00 00| ...........| reserved: raw bits 0x5-0x13.7 (15)
|
||||
0x010|00 00 00 00 |.... |
|
||||
0x010| 00 00 00 00 | .... | isutcnt: 0 0x14-0x17.7 (4)
|
||||
0x010| 00 00 00 0b | .... | isstdcnt: 11 0x18-0x1b.7 (4)
|
||||
0x010| 00 00 00 1b| ....| leapcnt: 27 0x1c-0x1f.7 (4)
|
||||
0x020|00 00 00 34 |...4 | timecnt: 52 0x20-0x23.7 (4)
|
||||
0x020| 00 00 00 0b | .... | typecnt: 11 0x24-0x27.7 (4)
|
||||
0x020| 00 00 00 10 | .... | charcnt: 16 0x28-0x2b.7 (4)
|
||||
| | | v1datablock{}: 0x2c-0x264.7 (569)
|
||||
| | | transition_times[0:52]: 0x2c-0xfb.7 (208)
|
||||
0x020| aa 19 8e 68| ...h| [0]: "1924-05-01T20:11:20Z" (-1441165720) transition_time 0x2c-0x2f.7 (4)
|
||||
0x030|b5 a3 fd 40 |...@ | [1]: "1930-06-20T20:00:00Z" (-1247544000) transition_time 0x30-0x33.7 (4)
|
||||
0x030| 15 27 8b b9 | .'.. | [2]: "1981-03-31T19:00:09Z" (354913209) transition_time 0x34-0x37.7 (4)
|
||||
0x030| 16 18 c0 2a | ...* | [3]: "1981-09-30T18:00:10Z" (370720810) transition_time 0x38-0x3b.7 (4)
|
||||
0x030| 17 08 b1 2a| ...*| [4]: "1982-03-31T18:00:10Z" (386445610) transition_time 0x3c-0x3f.7 (4)
|
||||
0x040|17 f9 f3 ab |.... | [5]: "1982-09-30T18:00:11Z" (402256811) transition_time 0x40-0x43.7 (4)
|
||||
0x040| 18 e9 f2 bb | .... | [6]: "1983-03-31T19:00:11Z" (417985211) transition_time 0x44-0x47.7 (4)
|
||||
0x040| 19 db 27 2c | ..', | [7]: "1983-09-30T18:00:12Z" (433792812) transition_time 0x48-0x4b.7 (4)
|
||||
0x040| 1a cc 77 bc| ..w.| [8]: "1984-03-31T19:00:12Z" (449607612) transition_time 0x4c-0x4f.7 (4)
|
||||
0x050|1b bc 84 dc |.... | [9]: "1984-09-29T21:00:12Z" (465339612) transition_time 0x50-0x53.7 (4)
|
||||
0x050| 1c ac 75 dc | ..u. | [10]: "1985-03-30T21:00:12Z" (481064412) transition_time 0x54-0x57.7 (4)
|
||||
0x050| 1d 9c 66 dd | ..f. | [11]: "1985-09-28T21:00:13Z" (496789213) transition_time 0x58-0x5b.7 (4)
|
||||
0x050| 1e 8c 57 dd| ..W.| [12]: "1986-03-29T21:00:13Z" (512514013) transition_time 0x5c-0x5f.7 (4)
|
||||
0x060|1f 7c 48 dd |.|H. | [13]: "1986-09-27T21:00:13Z" (528238813) transition_time 0x60-0x63.7 (4)
|
||||
0x060| 20 6c 39 dd | l9. | [14]: "1987-03-28T21:00:13Z" (543963613) transition_time 0x64-0x67.7 (4)
|
||||
0x060| 21 5c 2a dd | !\*. | [15]: "1987-09-26T21:00:13Z" (559688413) transition_time 0x68-0x6b.7 (4)
|
||||
0x060| 22 4c 1b de| "L..| [16]: "1988-03-26T21:00:14Z" (575413214) transition_time 0x6c-0x6f.7 (4)
|
||||
0x070|23 3c 0c de |#<.. | [17]: "1988-09-24T21:00:14Z" (591138014) transition_time 0x70-0x73.7 (4)
|
||||
0x070| 24 2b fd de | $+.. | [18]: "1989-03-25T21:00:14Z" (606862814) transition_time 0x74-0x77.7 (4)
|
||||
0x070| 25 1b ee de | %... | [19]: "1989-09-23T21:00:14Z" (622587614) transition_time 0x78-0x7b.7 (4)
|
||||
0x070| 26 0b df df| &...| [20]: "1990-03-24T21:00:15Z" (638312415) transition_time 0x7c-0x7f.7 (4)
|
||||
0x080|27 05 0b 5f |'.._ | [21]: "1990-09-29T21:00:15Z" (654642015) transition_time 0x80-0x83.7 (4)
|
||||
0x080| 27 f4 fc 60 | '..` | [22]: "1991-03-30T21:00:16Z" (670366816) transition_time 0x84-0x87.7 (4)
|
||||
0x080| 28 e4 fb 70 | (..p | [23]: "1991-09-28T22:00:16Z" (686095216) transition_time 0x88-0x8b.7 (4)
|
||||
0x080| 29 78 a3 70| )x.p| [24]: "1992-01-18T22:00:16Z" (695772016) transition_time 0x8c-0x8f.7 (4)
|
||||
0x090|29 d4 de 60 |)..` | [25]: "1992-03-28T21:00:16Z" (701816416) transition_time 0x90-0x93.7 (4)
|
||||
0x090| 2a c4 cf 61 | *..a | [26]: "1992-09-26T21:00:17Z" (717541217) transition_time 0x94-0x97.7 (4)
|
||||
0x090| 2b b4 c0 61 | +..a | [27]: "1993-03-27T21:00:17Z" (733266017) transition_time 0x98-0x9b.7 (4)
|
||||
0x090| 2c a4 b1 62| ,..b| [28]: "1993-09-25T21:00:18Z" (748990818) transition_time 0x9c-0x9f.7 (4)
|
||||
0x0a0|2d 94 a2 62 |-..b | [29]: "1994-03-26T21:00:18Z" (764715618) transition_time 0xa0-0xa3.7 (4)
|
||||
0x0a0| 2e 84 93 63 | ...c | [30]: "1994-09-24T21:00:19Z" (780440419) transition_time 0xa4-0xa7.7 (4)
|
||||
0x0a0| 2f 74 84 63 | /t.c | [31]: "1995-03-25T21:00:19Z" (796165219) transition_time 0xa8-0xab.7 (4)
|
||||
0x0a0| 30 64 75 63| 0duc| [32]: "1995-09-23T21:00:19Z" (811890019) transition_time 0xac-0xaf.7 (4)
|
||||
0x0b0|31 5d a0 e4 |1].. | [33]: "1996-03-30T21:00:20Z" (828219620) transition_time 0xb0-0xb3.7 (4)
|
||||
0x0b0| 32 72 7b e4 | 2r{. | [34]: "1996-10-26T21:00:20Z" (846363620) transition_time 0xb4-0xb7.7 (4)
|
||||
0x0b0| 33 3d 82 e4 | 3=.. | [35]: "1997-03-29T21:00:20Z" (859669220) transition_time 0xb8-0xbb.7 (4)
|
||||
0x0b0| 34 52 5d e5| 4R].| [36]: "1997-10-25T21:00:21Z" (877813221) transition_time 0xbc-0xbf.7 (4)
|
||||
0x0c0|35 1d 64 e5 |5.d. | [37]: "1998-03-28T21:00:21Z" (891118821) transition_time 0xc0-0xc3.7 (4)
|
||||
0x0c0| 36 32 3f e5 | 62?. | [38]: "1998-10-24T21:00:21Z" (909262821) transition_time 0xc4-0xc7.7 (4)
|
||||
0x0c0| 36 fd 46 e6 | 6.F. | [39]: "1999-03-27T21:00:22Z" (922568422) transition_time 0xc8-0xcb.7 (4)
|
||||
0x0c0| 38 1b 5c 66| 8.\f| [40]: "1999-10-30T21:00:22Z" (941317222) transition_time 0xcc-0xcf.7 (4)
|
||||
0x0d0|38 dd 28 e6 |8.(. | [41]: "2000-03-25T21:00:22Z" (954018022) transition_time 0xd0-0xd3.7 (4)
|
||||
0x0d0| 39 fb 3e 66 | 9.>f | [42]: "2000-10-28T21:00:22Z" (972766822) transition_time 0xd4-0xd7.7 (4)
|
||||
0x0d0| 3a bd 0a e6 | :... | [43]: "2001-03-24T21:00:22Z" (985467622) transition_time 0xd8-0xdb.7 (4)
|
||||
0x0d0| 3b db 20 66| ;. f| [44]: "2001-10-27T21:00:22Z" (1004216422) transition_time 0xdc-0xdf.7 (4)
|
||||
0x0e0|3c a6 27 66 |<.'f | [45]: "2002-03-30T21:00:22Z" (1017522022) transition_time 0xe0-0xe3.7 (4)
|
||||
0x0e0| 3d bb 02 66 | =..f | [46]: "2002-10-26T21:00:22Z" (1035666022) transition_time 0xe4-0xe7.7 (4)
|
||||
0x0e0| 3e 86 09 66 | >..f | [47]: "2003-03-29T21:00:22Z" (1048971622) transition_time 0xe8-0xeb.7 (4)
|
||||
0x0e0| 3f 9a e4 66| ?..f| [48]: "2003-10-25T21:00:22Z" (1067115622) transition_time 0xec-0xef.7 (4)
|
||||
0x0f0|40 65 eb 66 |@e.f | [49]: "2004-03-27T21:00:22Z" (1080421222) transition_time 0xf0-0xf3.7 (4)
|
||||
0x0f0| 41 84 00 e6 | A... | [50]: "2004-10-30T21:00:22Z" (1099170022) transition_time 0xf4-0xf7.7 (4)
|
||||
0x0f0| 64 9b 78 1b | d.x. | [51]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0xf8-0xfb.7 (4)
|
||||
| | | transition_types[0:52]: 0xfc-0x12f.7 (52)
|
||||
0x0f0| 01 | . | [0]: 1 transition_type 0xfc-0xfc.7 (1)
|
||||
0x0f0| 02 | . | [1]: 2 transition_type 0xfd-0xfd.7 (1)
|
||||
0x0f0| 03 | . | [2]: 3 transition_type 0xfe-0xfe.7 (1)
|
||||
0x0f0| 04| .| [3]: 4 transition_type 0xff-0xff.7 (1)
|
||||
0x100|03 |. | [4]: 3 transition_type 0x100-0x100.7 (1)
|
||||
0x100| 02 | . | [5]: 2 transition_type 0x101-0x101.7 (1)
|
||||
0x100| 03 | . | [6]: 3 transition_type 0x102-0x102.7 (1)
|
||||
0x100| 02 | . | [7]: 2 transition_type 0x103-0x103.7 (1)
|
||||
0x100| 03 | . | [8]: 3 transition_type 0x104-0x104.7 (1)
|
||||
0x100| 05 | . | [9]: 5 transition_type 0x105-0x105.7 (1)
|
||||
0x100| 06 | . | [10]: 6 transition_type 0x106-0x106.7 (1)
|
||||
0x100| 05 | . | [11]: 5 transition_type 0x107-0x107.7 (1)
|
||||
0x100| 06 | . | [12]: 6 transition_type 0x108-0x108.7 (1)
|
||||
0x100| 05 | . | [13]: 5 transition_type 0x109-0x109.7 (1)
|
||||
0x100| 06 | . | [14]: 6 transition_type 0x10a-0x10a.7 (1)
|
||||
0x100| 05 | . | [15]: 5 transition_type 0x10b-0x10b.7 (1)
|
||||
0x100| 06 | . | [16]: 6 transition_type 0x10c-0x10c.7 (1)
|
||||
0x100| 05 | . | [17]: 5 transition_type 0x10d-0x10d.7 (1)
|
||||
0x100| 06 | . | [18]: 6 transition_type 0x10e-0x10e.7 (1)
|
||||
0x100| 05| .| [19]: 5 transition_type 0x10f-0x10f.7 (1)
|
||||
0x110|06 |. | [20]: 6 transition_type 0x110-0x110.7 (1)
|
||||
0x110| 05 | . | [21]: 5 transition_type 0x111-0x111.7 (1)
|
||||
0x110| 07 | . | [22]: 7 transition_type 0x112-0x112.7 (1)
|
||||
0x110| 08 | . | [23]: 8 transition_type 0x113-0x113.7 (1)
|
||||
0x110| 05 | . | [24]: 5 transition_type 0x114-0x114.7 (1)
|
||||
0x110| 06 | . | [25]: 6 transition_type 0x115-0x115.7 (1)
|
||||
0x110| 05 | . | [26]: 5 transition_type 0x116-0x116.7 (1)
|
||||
0x110| 06 | . | [27]: 6 transition_type 0x117-0x117.7 (1)
|
||||
0x110| 05 | . | [28]: 5 transition_type 0x118-0x118.7 (1)
|
||||
0x110| 06 | . | [29]: 6 transition_type 0x119-0x119.7 (1)
|
||||
0x110| 05 | . | [30]: 5 transition_type 0x11a-0x11a.7 (1)
|
||||
0x110| 06 | . | [31]: 6 transition_type 0x11b-0x11b.7 (1)
|
||||
0x110| 05 | . | [32]: 5 transition_type 0x11c-0x11c.7 (1)
|
||||
0x110| 06 | . | [33]: 6 transition_type 0x11d-0x11d.7 (1)
|
||||
0x110| 05 | . | [34]: 5 transition_type 0x11e-0x11e.7 (1)
|
||||
0x110| 06| .| [35]: 6 transition_type 0x11f-0x11f.7 (1)
|
||||
0x120|05 |. | [36]: 5 transition_type 0x120-0x120.7 (1)
|
||||
0x120| 06 | . | [37]: 6 transition_type 0x121-0x121.7 (1)
|
||||
0x120| 05 | . | [38]: 5 transition_type 0x122-0x122.7 (1)
|
||||
0x120| 06 | . | [39]: 6 transition_type 0x123-0x123.7 (1)
|
||||
0x120| 05 | . | [40]: 5 transition_type 0x124-0x124.7 (1)
|
||||
0x120| 06 | . | [41]: 6 transition_type 0x125-0x125.7 (1)
|
||||
0x120| 05 | . | [42]: 5 transition_type 0x126-0x126.7 (1)
|
||||
0x120| 06 | . | [43]: 6 transition_type 0x127-0x127.7 (1)
|
||||
0x120| 05 | . | [44]: 5 transition_type 0x128-0x128.7 (1)
|
||||
0x120| 06 | . | [45]: 6 transition_type 0x129-0x129.7 (1)
|
||||
0x120| 05 | . | [46]: 5 transition_type 0x12a-0x12a.7 (1)
|
||||
0x120| 06 | . | [47]: 6 transition_type 0x12b-0x12b.7 (1)
|
||||
0x120| 05 | . | [48]: 5 transition_type 0x12c-0x12c.7 (1)
|
||||
0x120| 06 | . | [49]: 6 transition_type 0x12d-0x12d.7 (1)
|
||||
0x120| 05 | . | [50]: 5 transition_type 0x12e-0x12e.7 (1)
|
||||
0x120| 05| .| [51]: 5 transition_type 0x12f-0x12f.7 (1)
|
||||
| | | local_time_type_records[0:11]: 0x130-0x171.7 (66)
|
||||
| | | [0]{}: local_time_type 0x130-0x135.7 (6)
|
||||
0x130|00 00 35 98 |..5. | utoff: 13720 (valid) 0x130-0x133.7 (4)
|
||||
0x130| 00 | . | dst: 0 (valid) 0x134-0x134.7 (1)
|
||||
0x130| 00 | . | idx: 0 (valid) 0x135-0x135.7 (1)
|
||||
| | | [1]{}: local_time_type 0x136-0x13b.7 (6)
|
||||
0x130| 00 00 38 40 | ..8@ | utoff: 14400 (valid) 0x136-0x139.7 (4)
|
||||
0x130| 00 | . | dst: 0 (valid) 0x13a-0x13a.7 (1)
|
||||
0x130| 04 | . | idx: 4 (valid) 0x13b-0x13b.7 (1)
|
||||
| | | [2]{}: local_time_type 0x13c-0x141.7 (6)
|
||||
0x130| 00 00 46 50| ..FP| utoff: 18000 (valid) 0x13c-0x13f.7 (4)
|
||||
0x140|00 |. | dst: 0 (valid) 0x140-0x140.7 (1)
|
||||
0x140| 08 | . | idx: 8 (valid) 0x141-0x141.7 (1)
|
||||
| | | [3]{}: local_time_type 0x142-0x147.7 (6)
|
||||
0x140| 00 00 54 60 | ..T` | utoff: 21600 (valid) 0x142-0x145.7 (4)
|
||||
0x140| 01 | . | dst: 1 (valid) 0x146-0x146.7 (1)
|
||||
0x140| 0c | . | idx: 12 (valid) 0x147-0x147.7 (1)
|
||||
| | | [4]{}: local_time_type 0x148-0x14d.7 (6)
|
||||
0x140| 00 00 54 60 | ..T` | utoff: 21600 (valid) 0x148-0x14b.7 (4)
|
||||
0x140| 00 | . | dst: 0 (valid) 0x14c-0x14c.7 (1)
|
||||
0x140| 0c | . | idx: 12 (valid) 0x14d-0x14d.7 (1)
|
||||
| | | [5]{}: local_time_type 0x14e-0x153.7 (6)
|
||||
0x140| 00 00| ..| utoff: 18000 (valid) 0x14e-0x151.7 (4)
|
||||
0x150|46 50 |FP |
|
||||
0x150| 00 | . | dst: 0 (valid) 0x152-0x152.7 (1)
|
||||
0x150| 08 | . | idx: 8 (valid) 0x153-0x153.7 (1)
|
||||
| | | [6]{}: local_time_type 0x154-0x159.7 (6)
|
||||
0x150| 00 00 54 60 | ..T` | utoff: 21600 (valid) 0x154-0x157.7 (4)
|
||||
0x150| 01 | . | dst: 1 (valid) 0x158-0x158.7 (1)
|
||||
0x150| 0c | . | idx: 12 (valid) 0x159-0x159.7 (1)
|
||||
| | | [7]{}: local_time_type 0x15a-0x15f.7 (6)
|
||||
0x150| 00 00 46 50 | ..FP | utoff: 18000 (valid) 0x15a-0x15d.7 (4)
|
||||
0x150| 01 | . | dst: 1 (valid) 0x15e-0x15e.7 (1)
|
||||
0x150| 08| .| idx: 8 (valid) 0x15f-0x15f.7 (1)
|
||||
| | | [8]{}: local_time_type 0x160-0x165.7 (6)
|
||||
0x160|00 00 38 40 |..8@ | utoff: 14400 (valid) 0x160-0x163.7 (4)
|
||||
0x160| 00 | . | dst: 0 (valid) 0x164-0x164.7 (1)
|
||||
0x160| 04 | . | idx: 4 (valid) 0x165-0x165.7 (1)
|
||||
| | | [9]{}: local_time_type 0x166-0x16b.7 (6)
|
||||
0x160| 00 00 54 60 | ..T` | utoff: 21600 (valid) 0x166-0x169.7 (4)
|
||||
0x160| 01 | . | dst: 1 (valid) 0x16a-0x16a.7 (1)
|
||||
0x160| 0c | . | idx: 12 (valid) 0x16b-0x16b.7 (1)
|
||||
| | | [10]{}: local_time_type 0x16c-0x171.7 (6)
|
||||
0x160| 00 00 46 50| ..FP| utoff: 18000 (valid) 0x16c-0x16f.7 (4)
|
||||
0x170|00 |. | dst: 0 (valid) 0x170-0x170.7 (1)
|
||||
0x170| 08 | . | idx: 8 (valid) 0x171-0x171.7 (1)
|
||||
| | | time_zone_designations[0:4]: 0x172-0x181.7 (16)
|
||||
0x170| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x172-0x175.7 (4)
|
||||
0x170| 2b 30 34 00 | +04. | [1]: "+04" time_zone_designation 0x176-0x179.7 (4)
|
||||
0x170| 2b 30 35 00 | +05. | [2]: "+05" time_zone_designation 0x17a-0x17d.7 (4)
|
||||
0x170| 2b 30| +0| [3]: "+06" time_zone_designation 0x17e-0x181.7 (4)
|
||||
0x180|36 00 |6. |
|
||||
| | | leap_second_records[0:27]: 0x182-0x259.7 (216)
|
||||
| | | [0]{}: leap_second_record 0x182-0x189.7 (8)
|
||||
0x180| 04 b2 58 00 | ..X. | occur: "1972-07-01T00:00:00Z" (78796800) 0x182-0x185.7 (4)
|
||||
0x180| 00 00 00 01 | .... | corr: 1 0x186-0x189.7 (4)
|
||||
| | | [1]{}: leap_second_record 0x18a-0x191.7 (8)
|
||||
0x180| 05 a4 ec 01 | .... | occur: "1973-01-01T00:00:01Z" (94694401) 0x18a-0x18d.7 (4)
|
||||
0x180| 00 00| ..| corr: 2 0x18e-0x191.7 (4)
|
||||
0x190|00 02 |.. |
|
||||
| | | [2]{}: leap_second_record 0x192-0x199.7 (8)
|
||||
0x190| 07 86 1f 82 | .... | occur: "1974-01-01T00:00:02Z" (126230402) 0x192-0x195.7 (4)
|
||||
0x190| 00 00 00 03 | .... | corr: 3 0x196-0x199.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x19a-0x1a1.7 (8)
|
||||
0x190| 09 67 53 03 | .gS. | occur: "1975-01-01T00:00:03Z" (157766403) 0x19a-0x19d.7 (4)
|
||||
0x190| 00 00| ..| corr: 4 0x19e-0x1a1.7 (4)
|
||||
0x1a0|00 04 |.. |
|
||||
| | | [4]{}: leap_second_record 0x1a2-0x1a9.7 (8)
|
||||
0x1a0| 0b 48 86 84 | .H.. | occur: "1976-01-01T00:00:04Z" (189302404) 0x1a2-0x1a5.7 (4)
|
||||
0x1a0| 00 00 00 05 | .... | corr: 5 0x1a6-0x1a9.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x1aa-0x1b1.7 (8)
|
||||
0x1a0| 0d 2b 0b 85 | .+.. | occur: "1977-01-01T00:00:05Z" (220924805) 0x1aa-0x1ad.7 (4)
|
||||
0x1a0| 00 00| ..| corr: 6 0x1ae-0x1b1.7 (4)
|
||||
0x1b0|00 06 |.. |
|
||||
| | | [6]{}: leap_second_record 0x1b2-0x1b9.7 (8)
|
||||
0x1b0| 0f 0c 3f 06 | ..?. | occur: "1978-01-01T00:00:06Z" (252460806) 0x1b2-0x1b5.7 (4)
|
||||
0x1b0| 00 00 00 07 | .... | corr: 7 0x1b6-0x1b9.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x1ba-0x1c1.7 (8)
|
||||
0x1b0| 10 ed 72 87 | ..r. | occur: "1979-01-01T00:00:07Z" (283996807) 0x1ba-0x1bd.7 (4)
|
||||
0x1b0| 00 00| ..| corr: 8 0x1be-0x1c1.7 (4)
|
||||
0x1c0|00 08 |.. |
|
||||
| | | [8]{}: leap_second_record 0x1c2-0x1c9.7 (8)
|
||||
0x1c0| 12 ce a6 08 | .... | occur: "1980-01-01T00:00:08Z" (315532808) 0x1c2-0x1c5.7 (4)
|
||||
0x1c0| 00 00 00 09 | .... | corr: 9 0x1c6-0x1c9.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x1ca-0x1d1.7 (8)
|
||||
0x1c0| 15 9f ca 89 | .... | occur: "1981-07-01T00:00:09Z" (362793609) 0x1ca-0x1cd.7 (4)
|
||||
0x1c0| 00 00| ..| corr: 10 0x1ce-0x1d1.7 (4)
|
||||
0x1d0|00 0a |.. |
|
||||
| | | [10]{}: leap_second_record 0x1d2-0x1d9.7 (8)
|
||||
0x1d0| 17 80 fe 0a | .... | occur: "1982-07-01T00:00:10Z" (394329610) 0x1d2-0x1d5.7 (4)
|
||||
0x1d0| 00 00 00 0b | .... | corr: 11 0x1d6-0x1d9.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x1da-0x1e1.7 (8)
|
||||
0x1d0| 19 62 31 8b | .b1. | occur: "1983-07-01T00:00:11Z" (425865611) 0x1da-0x1dd.7 (4)
|
||||
0x1d0| 00 00| ..| corr: 12 0x1de-0x1e1.7 (4)
|
||||
0x1e0|00 0c |.. |
|
||||
| | | [12]{}: leap_second_record 0x1e2-0x1e9.7 (8)
|
||||
0x1e0| 1d 25 ea 0c | .%.. | occur: "1985-07-01T00:00:12Z" (489024012) 0x1e2-0x1e5.7 (4)
|
||||
0x1e0| 00 00 00 0d | .... | corr: 13 0x1e6-0x1e9.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x1ea-0x1f1.7 (8)
|
||||
0x1e0| 21 da e5 0d | !... | occur: "1988-01-01T00:00:13Z" (567993613) 0x1ea-0x1ed.7 (4)
|
||||
0x1e0| 00 00| ..| corr: 14 0x1ee-0x1f1.7 (4)
|
||||
0x1f0|00 0e |.. |
|
||||
| | | [14]{}: leap_second_record 0x1f2-0x1f9.7 (8)
|
||||
0x1f0| 25 9e 9d 8e | %... | occur: "1990-01-01T00:00:14Z" (631152014) 0x1f2-0x1f5.7 (4)
|
||||
0x1f0| 00 00 00 0f | .... | corr: 15 0x1f6-0x1f9.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x1fa-0x201.7 (8)
|
||||
0x1f0| 27 7f d1 0f | '... | occur: "1991-01-01T00:00:15Z" (662688015) 0x1fa-0x1fd.7 (4)
|
||||
0x1f0| 00 00| ..| corr: 16 0x1fe-0x201.7 (4)
|
||||
0x200|00 10 |.. |
|
||||
| | | [16]{}: leap_second_record 0x202-0x209.7 (8)
|
||||
0x200| 2a 50 f5 90 | *P.. | occur: "1992-07-01T00:00:16Z" (709948816) 0x202-0x205.7 (4)
|
||||
0x200| 00 00 00 11 | .... | corr: 17 0x206-0x209.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x20a-0x211.7 (8)
|
||||
0x200| 2c 32 29 11 | ,2). | occur: "1993-07-01T00:00:17Z" (741484817) 0x20a-0x20d.7 (4)
|
||||
0x200| 00 00| ..| corr: 18 0x20e-0x211.7 (4)
|
||||
0x210|00 12 |.. |
|
||||
| | | [18]{}: leap_second_record 0x212-0x219.7 (8)
|
||||
0x210| 2e 13 5c 92 | ..\. | occur: "1994-07-01T00:00:18Z" (773020818) 0x212-0x215.7 (4)
|
||||
0x210| 00 00 00 13 | .... | corr: 19 0x216-0x219.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x21a-0x221.7 (8)
|
||||
0x210| 30 e7 24 13 | 0.$. | occur: "1996-01-01T00:00:19Z" (820454419) 0x21a-0x21d.7 (4)
|
||||
0x210| 00 00| ..| corr: 20 0x21e-0x221.7 (4)
|
||||
0x220|00 14 |.. |
|
||||
| | | [20]{}: leap_second_record 0x222-0x229.7 (8)
|
||||
0x220| 33 b8 48 94 | 3.H. | occur: "1997-07-01T00:00:20Z" (867715220) 0x222-0x225.7 (4)
|
||||
0x220| 00 00 00 15 | .... | corr: 21 0x226-0x229.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x22a-0x231.7 (8)
|
||||
0x220| 36 8c 10 15 | 6... | occur: "1999-01-01T00:00:21Z" (915148821) 0x22a-0x22d.7 (4)
|
||||
0x220| 00 00| ..| corr: 22 0x22e-0x231.7 (4)
|
||||
0x230|00 16 |.. |
|
||||
| | | [22]{}: leap_second_record 0x232-0x239.7 (8)
|
||||
0x230| 43 b7 1b 96 | C... | occur: "2006-01-01T00:00:22Z" (1136073622) 0x232-0x235.7 (4)
|
||||
0x230| 00 00 00 17 | .... | corr: 23 0x236-0x239.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x23a-0x241.7 (8)
|
||||
0x230| 49 5c 07 97 | I\.. | occur: "2009-01-01T00:00:23Z" (1230768023) 0x23a-0x23d.7 (4)
|
||||
0x230| 00 00| ..| corr: 24 0x23e-0x241.7 (4)
|
||||
0x240|00 18 |.. |
|
||||
| | | [24]{}: leap_second_record 0x242-0x249.7 (8)
|
||||
0x240| 4f ef 93 18 | O... | occur: "2012-07-01T00:00:24Z" (1341100824) 0x242-0x245.7 (4)
|
||||
0x240| 00 00 00 19 | .... | corr: 25 0x246-0x249.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x24a-0x251.7 (8)
|
||||
0x240| 55 93 2d 99 | U.-. | occur: "2015-07-01T00:00:25Z" (1435708825) 0x24a-0x24d.7 (4)
|
||||
0x240| 00 00| ..| corr: 26 0x24e-0x251.7 (4)
|
||||
0x250|00 1a |.. |
|
||||
| | | [26]{}: leap_second_record 0x252-0x259.7 (8)
|
||||
0x250| 58 68 46 9a | XhF. | occur: "2017-01-01T00:00:26Z" (1483228826) 0x252-0x255.7 (4)
|
||||
0x250| 00 00 00 1b | .... | corr: 27 0x256-0x259.7 (4)
|
||||
| | | standard_wall_indicators[0:11]: 0x25a-0x264.7 (11)
|
||||
0x250| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x25a-0x25a.7 (1)
|
||||
0x250| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x25b-0x25b.7 (1)
|
||||
0x250| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x25c-0x25c.7 (1)
|
||||
0x250| 00 | . | [3]: 0 standard_wall_indicator (valid) 0x25d-0x25d.7 (1)
|
||||
0x250| 00 | . | [4]: 0 standard_wall_indicator (valid) 0x25e-0x25e.7 (1)
|
||||
0x250| 01| .| [5]: 1 standard_wall_indicator (valid) 0x25f-0x25f.7 (1)
|
||||
0x260|01 |. | [6]: 1 standard_wall_indicator (valid) 0x260-0x260.7 (1)
|
||||
0x260| 01 | . | [7]: 1 standard_wall_indicator (valid) 0x261-0x261.7 (1)
|
||||
0x260| 01 | . | [8]: 1 standard_wall_indicator (valid) 0x262-0x262.7 (1)
|
||||
0x260| 01 | . | [9]: 1 standard_wall_indicator (valid) 0x263-0x263.7 (1)
|
||||
0x260| 01 | . | [10]: 1 standard_wall_indicator (valid) 0x264-0x264.7 (1)
|
||||
| | | ut_local_indicators[0:0]: 0x265-NA (0)
|
||||
| | | v2plusheader{}: 0x265-0x290.7 (44)
|
||||
0x260| 54 5a 69 66 | TZif | magic: 0x545a6966 (valid) 0x265-0x268.7 (4)
|
||||
0x260| 32 | 2 | ver: "2" (0x32) (valid) 0x269-0x269.7 (1)
|
||||
0x260| 00 00 00 00 00 00| ......| reserved: raw bits 0x26a-0x278.7 (15)
|
||||
0x270|00 00 00 00 00 00 00 00 00 |......... |
|
||||
0x270| 00 00 00 00 | .... | isutcnt: 0 0x279-0x27c.7 (4)
|
||||
0x270| 00 00 00| ...| isstdcnt: 11 0x27d-0x280.7 (4)
|
||||
0x280|0b |. |
|
||||
0x280| 00 00 00 1b | .... | leapcnt: 27 0x281-0x284.7 (4)
|
||||
0x280| 00 00 00 34 | ...4 | timecnt: 52 0x285-0x288.7 (4)
|
||||
0x280| 00 00 00 0b | .... | typecnt: 11 0x289-0x28c.7 (4)
|
||||
0x280| 00 00 00| ...| charcnt: 16 0x28d-0x290.7 (4)
|
||||
0x290|10 |. |
|
||||
| | | v2plusdatablock{}: 0x291-0x605.7 (885)
|
||||
| | | transition_times[0:52]: 0x291-0x430.7 (416)
|
||||
0x290| ff ff ff ff aa 19 8e 68 | .......h | [0]: "1924-05-01T20:11:20Z" (-1441165720) transition_time 0x291-0x298.7 (8)
|
||||
0x290| ff ff ff ff b5 a3 fd| .......| [1]: "1930-06-20T20:00:00Z" (-1247544000) transition_time 0x299-0x2a0.7 (8)
|
||||
0x2a0|40 |@ |
|
||||
0x2a0| 00 00 00 00 15 27 8b b9 | .....'.. | [2]: "1981-03-31T19:00:09Z" (354913209) transition_time 0x2a1-0x2a8.7 (8)
|
||||
0x2a0| 00 00 00 00 16 18 c0| .......| [3]: "1981-09-30T18:00:10Z" (370720810) transition_time 0x2a9-0x2b0.7 (8)
|
||||
0x2b0|2a |* |
|
||||
0x2b0| 00 00 00 00 17 08 b1 2a | .......* | [4]: "1982-03-31T18:00:10Z" (386445610) transition_time 0x2b1-0x2b8.7 (8)
|
||||
0x2b0| 00 00 00 00 17 f9 f3| .......| [5]: "1982-09-30T18:00:11Z" (402256811) transition_time 0x2b9-0x2c0.7 (8)
|
||||
0x2c0|ab |. |
|
||||
0x2c0| 00 00 00 00 18 e9 f2 bb | ........ | [6]: "1983-03-31T19:00:11Z" (417985211) transition_time 0x2c1-0x2c8.7 (8)
|
||||
0x2c0| 00 00 00 00 19 db 27| ......'| [7]: "1983-09-30T18:00:12Z" (433792812) transition_time 0x2c9-0x2d0.7 (8)
|
||||
0x2d0|2c |, |
|
||||
0x2d0| 00 00 00 00 1a cc 77 bc | ......w. | [8]: "1984-03-31T19:00:12Z" (449607612) transition_time 0x2d1-0x2d8.7 (8)
|
||||
0x2d0| 00 00 00 00 1b bc 84| .......| [9]: "1984-09-29T21:00:12Z" (465339612) transition_time 0x2d9-0x2e0.7 (8)
|
||||
0x2e0|dc |. |
|
||||
0x2e0| 00 00 00 00 1c ac 75 dc | ......u. | [10]: "1985-03-30T21:00:12Z" (481064412) transition_time 0x2e1-0x2e8.7 (8)
|
||||
0x2e0| 00 00 00 00 1d 9c 66| ......f| [11]: "1985-09-28T21:00:13Z" (496789213) transition_time 0x2e9-0x2f0.7 (8)
|
||||
0x2f0|dd |. |
|
||||
0x2f0| 00 00 00 00 1e 8c 57 dd | ......W. | [12]: "1986-03-29T21:00:13Z" (512514013) transition_time 0x2f1-0x2f8.7 (8)
|
||||
0x2f0| 00 00 00 00 1f 7c 48| .....|H| [13]: "1986-09-27T21:00:13Z" (528238813) transition_time 0x2f9-0x300.7 (8)
|
||||
0x300|dd |. |
|
||||
0x300| 00 00 00 00 20 6c 39 dd | .... l9. | [14]: "1987-03-28T21:00:13Z" (543963613) transition_time 0x301-0x308.7 (8)
|
||||
0x300| 00 00 00 00 21 5c 2a| ....!\*| [15]: "1987-09-26T21:00:13Z" (559688413) transition_time 0x309-0x310.7 (8)
|
||||
0x310|dd |. |
|
||||
0x310| 00 00 00 00 22 4c 1b de | ...."L.. | [16]: "1988-03-26T21:00:14Z" (575413214) transition_time 0x311-0x318.7 (8)
|
||||
0x310| 00 00 00 00 23 3c 0c| ....#<.| [17]: "1988-09-24T21:00:14Z" (591138014) transition_time 0x319-0x320.7 (8)
|
||||
0x320|de |. |
|
||||
0x320| 00 00 00 00 24 2b fd de | ....$+.. | [18]: "1989-03-25T21:00:14Z" (606862814) transition_time 0x321-0x328.7 (8)
|
||||
0x320| 00 00 00 00 25 1b ee| ....%..| [19]: "1989-09-23T21:00:14Z" (622587614) transition_time 0x329-0x330.7 (8)
|
||||
0x330|de |. |
|
||||
0x330| 00 00 00 00 26 0b df df | ....&... | [20]: "1990-03-24T21:00:15Z" (638312415) transition_time 0x331-0x338.7 (8)
|
||||
0x330| 00 00 00 00 27 05 0b| ....'..| [21]: "1990-09-29T21:00:15Z" (654642015) transition_time 0x339-0x340.7 (8)
|
||||
0x340|5f |_ |
|
||||
0x340| 00 00 00 00 27 f4 fc 60 | ....'..` | [22]: "1991-03-30T21:00:16Z" (670366816) transition_time 0x341-0x348.7 (8)
|
||||
0x340| 00 00 00 00 28 e4 fb| ....(..| [23]: "1991-09-28T22:00:16Z" (686095216) transition_time 0x349-0x350.7 (8)
|
||||
0x350|70 |p |
|
||||
0x350| 00 00 00 00 29 78 a3 70 | ....)x.p | [24]: "1992-01-18T22:00:16Z" (695772016) transition_time 0x351-0x358.7 (8)
|
||||
0x350| 00 00 00 00 29 d4 de| ....)..| [25]: "1992-03-28T21:00:16Z" (701816416) transition_time 0x359-0x360.7 (8)
|
||||
0x360|60 |` |
|
||||
0x360| 00 00 00 00 2a c4 cf 61 | ....*..a | [26]: "1992-09-26T21:00:17Z" (717541217) transition_time 0x361-0x368.7 (8)
|
||||
0x360| 00 00 00 00 2b b4 c0| ....+..| [27]: "1993-03-27T21:00:17Z" (733266017) transition_time 0x369-0x370.7 (8)
|
||||
0x370|61 |a |
|
||||
0x370| 00 00 00 00 2c a4 b1 62 | ....,..b | [28]: "1993-09-25T21:00:18Z" (748990818) transition_time 0x371-0x378.7 (8)
|
||||
0x370| 00 00 00 00 2d 94 a2| ....-..| [29]: "1994-03-26T21:00:18Z" (764715618) transition_time 0x379-0x380.7 (8)
|
||||
0x380|62 |b |
|
||||
0x380| 00 00 00 00 2e 84 93 63 | .......c | [30]: "1994-09-24T21:00:19Z" (780440419) transition_time 0x381-0x388.7 (8)
|
||||
0x380| 00 00 00 00 2f 74 84| ..../t.| [31]: "1995-03-25T21:00:19Z" (796165219) transition_time 0x389-0x390.7 (8)
|
||||
0x390|63 |c |
|
||||
0x390| 00 00 00 00 30 64 75 63 | ....0duc | [32]: "1995-09-23T21:00:19Z" (811890019) transition_time 0x391-0x398.7 (8)
|
||||
0x390| 00 00 00 00 31 5d a0| ....1].| [33]: "1996-03-30T21:00:20Z" (828219620) transition_time 0x399-0x3a0.7 (8)
|
||||
0x3a0|e4 |. |
|
||||
0x3a0| 00 00 00 00 32 72 7b e4 | ....2r{. | [34]: "1996-10-26T21:00:20Z" (846363620) transition_time 0x3a1-0x3a8.7 (8)
|
||||
0x3a0| 00 00 00 00 33 3d 82| ....3=.| [35]: "1997-03-29T21:00:20Z" (859669220) transition_time 0x3a9-0x3b0.7 (8)
|
||||
0x3b0|e4 |. |
|
||||
0x3b0| 00 00 00 00 34 52 5d e5 | ....4R]. | [36]: "1997-10-25T21:00:21Z" (877813221) transition_time 0x3b1-0x3b8.7 (8)
|
||||
0x3b0| 00 00 00 00 35 1d 64| ....5.d| [37]: "1998-03-28T21:00:21Z" (891118821) transition_time 0x3b9-0x3c0.7 (8)
|
||||
0x3c0|e5 |. |
|
||||
0x3c0| 00 00 00 00 36 32 3f e5 | ....62?. | [38]: "1998-10-24T21:00:21Z" (909262821) transition_time 0x3c1-0x3c8.7 (8)
|
||||
0x3c0| 00 00 00 00 36 fd 46| ....6.F| [39]: "1999-03-27T21:00:22Z" (922568422) transition_time 0x3c9-0x3d0.7 (8)
|
||||
0x3d0|e6 |. |
|
||||
0x3d0| 00 00 00 00 38 1b 5c 66 | ....8.\f | [40]: "1999-10-30T21:00:22Z" (941317222) transition_time 0x3d1-0x3d8.7 (8)
|
||||
0x3d0| 00 00 00 00 38 dd 28| ....8.(| [41]: "2000-03-25T21:00:22Z" (954018022) transition_time 0x3d9-0x3e0.7 (8)
|
||||
0x3e0|e6 |. |
|
||||
0x3e0| 00 00 00 00 39 fb 3e 66 | ....9.>f | [42]: "2000-10-28T21:00:22Z" (972766822) transition_time 0x3e1-0x3e8.7 (8)
|
||||
0x3e0| 00 00 00 00 3a bd 0a| ....:..| [43]: "2001-03-24T21:00:22Z" (985467622) transition_time 0x3e9-0x3f0.7 (8)
|
||||
0x3f0|e6 |. |
|
||||
0x3f0| 00 00 00 00 3b db 20 66 | ....;. f | [44]: "2001-10-27T21:00:22Z" (1004216422) transition_time 0x3f1-0x3f8.7 (8)
|
||||
0x3f0| 00 00 00 00 3c a6 27| ....<.'| [45]: "2002-03-30T21:00:22Z" (1017522022) transition_time 0x3f9-0x400.7 (8)
|
||||
0x400|66 |f |
|
||||
0x400| 00 00 00 00 3d bb 02 66 | ....=..f | [46]: "2002-10-26T21:00:22Z" (1035666022) transition_time 0x401-0x408.7 (8)
|
||||
0x400| 00 00 00 00 3e 86 09| ....>..| [47]: "2003-03-29T21:00:22Z" (1048971622) transition_time 0x409-0x410.7 (8)
|
||||
0x410|66 |f |
|
||||
0x410| 00 00 00 00 3f 9a e4 66 | ....?..f | [48]: "2003-10-25T21:00:22Z" (1067115622) transition_time 0x411-0x418.7 (8)
|
||||
0x410| 00 00 00 00 40 65 eb| ....@e.| [49]: "2004-03-27T21:00:22Z" (1080421222) transition_time 0x419-0x420.7 (8)
|
||||
0x420|66 |f |
|
||||
0x420| 00 00 00 00 41 84 00 e6 | ....A... | [50]: "2004-10-30T21:00:22Z" (1099170022) transition_time 0x421-0x428.7 (8)
|
||||
0x420| 00 00 00 00 64 9b 78| ....d.x| [51]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x429-0x430.7 (8)
|
||||
0x430|1b |. |
|
||||
| | | transition_types[0:52]: 0x431-0x464.7 (52)
|
||||
0x430| 01 | . | [0]: 1 transition_type 0x431-0x431.7 (1)
|
||||
0x430| 02 | . | [1]: 2 transition_type 0x432-0x432.7 (1)
|
||||
0x430| 03 | . | [2]: 3 transition_type 0x433-0x433.7 (1)
|
||||
0x430| 04 | . | [3]: 4 transition_type 0x434-0x434.7 (1)
|
||||
0x430| 03 | . | [4]: 3 transition_type 0x435-0x435.7 (1)
|
||||
0x430| 02 | . | [5]: 2 transition_type 0x436-0x436.7 (1)
|
||||
0x430| 03 | . | [6]: 3 transition_type 0x437-0x437.7 (1)
|
||||
0x430| 02 | . | [7]: 2 transition_type 0x438-0x438.7 (1)
|
||||
0x430| 03 | . | [8]: 3 transition_type 0x439-0x439.7 (1)
|
||||
0x430| 05 | . | [9]: 5 transition_type 0x43a-0x43a.7 (1)
|
||||
0x430| 06 | . | [10]: 6 transition_type 0x43b-0x43b.7 (1)
|
||||
0x430| 05 | . | [11]: 5 transition_type 0x43c-0x43c.7 (1)
|
||||
0x430| 06 | . | [12]: 6 transition_type 0x43d-0x43d.7 (1)
|
||||
0x430| 05 | . | [13]: 5 transition_type 0x43e-0x43e.7 (1)
|
||||
0x430| 06| .| [14]: 6 transition_type 0x43f-0x43f.7 (1)
|
||||
0x440|05 |. | [15]: 5 transition_type 0x440-0x440.7 (1)
|
||||
0x440| 06 | . | [16]: 6 transition_type 0x441-0x441.7 (1)
|
||||
0x440| 05 | . | [17]: 5 transition_type 0x442-0x442.7 (1)
|
||||
0x440| 06 | . | [18]: 6 transition_type 0x443-0x443.7 (1)
|
||||
0x440| 05 | . | [19]: 5 transition_type 0x444-0x444.7 (1)
|
||||
0x440| 06 | . | [20]: 6 transition_type 0x445-0x445.7 (1)
|
||||
0x440| 05 | . | [21]: 5 transition_type 0x446-0x446.7 (1)
|
||||
0x440| 07 | . | [22]: 7 transition_type 0x447-0x447.7 (1)
|
||||
0x440| 08 | . | [23]: 8 transition_type 0x448-0x448.7 (1)
|
||||
0x440| 05 | . | [24]: 5 transition_type 0x449-0x449.7 (1)
|
||||
0x440| 06 | . | [25]: 6 transition_type 0x44a-0x44a.7 (1)
|
||||
0x440| 05 | . | [26]: 5 transition_type 0x44b-0x44b.7 (1)
|
||||
0x440| 06 | . | [27]: 6 transition_type 0x44c-0x44c.7 (1)
|
||||
0x440| 05 | . | [28]: 5 transition_type 0x44d-0x44d.7 (1)
|
||||
0x440| 06 | . | [29]: 6 transition_type 0x44e-0x44e.7 (1)
|
||||
0x440| 05| .| [30]: 5 transition_type 0x44f-0x44f.7 (1)
|
||||
0x450|06 |. | [31]: 6 transition_type 0x450-0x450.7 (1)
|
||||
0x450| 05 | . | [32]: 5 transition_type 0x451-0x451.7 (1)
|
||||
0x450| 06 | . | [33]: 6 transition_type 0x452-0x452.7 (1)
|
||||
0x450| 05 | . | [34]: 5 transition_type 0x453-0x453.7 (1)
|
||||
0x450| 06 | . | [35]: 6 transition_type 0x454-0x454.7 (1)
|
||||
0x450| 05 | . | [36]: 5 transition_type 0x455-0x455.7 (1)
|
||||
0x450| 06 | . | [37]: 6 transition_type 0x456-0x456.7 (1)
|
||||
0x450| 05 | . | [38]: 5 transition_type 0x457-0x457.7 (1)
|
||||
0x450| 06 | . | [39]: 6 transition_type 0x458-0x458.7 (1)
|
||||
0x450| 05 | . | [40]: 5 transition_type 0x459-0x459.7 (1)
|
||||
0x450| 06 | . | [41]: 6 transition_type 0x45a-0x45a.7 (1)
|
||||
0x450| 05 | . | [42]: 5 transition_type 0x45b-0x45b.7 (1)
|
||||
0x450| 06 | . | [43]: 6 transition_type 0x45c-0x45c.7 (1)
|
||||
0x450| 05 | . | [44]: 5 transition_type 0x45d-0x45d.7 (1)
|
||||
0x450| 06 | . | [45]: 6 transition_type 0x45e-0x45e.7 (1)
|
||||
0x450| 05| .| [46]: 5 transition_type 0x45f-0x45f.7 (1)
|
||||
0x460|06 |. | [47]: 6 transition_type 0x460-0x460.7 (1)
|
||||
0x460| 05 | . | [48]: 5 transition_type 0x461-0x461.7 (1)
|
||||
0x460| 06 | . | [49]: 6 transition_type 0x462-0x462.7 (1)
|
||||
0x460| 05 | . | [50]: 5 transition_type 0x463-0x463.7 (1)
|
||||
0x460| 05 | . | [51]: 5 transition_type 0x464-0x464.7 (1)
|
||||
| | | local_time_type_records[0:11]: 0x465-0x4a6.7 (66)
|
||||
| | | [0]{}: local_time_type 0x465-0x46a.7 (6)
|
||||
0x460| 00 00 35 98 | ..5. | utoff: 13720 (valid) 0x465-0x468.7 (4)
|
||||
0x460| 00 | . | dst: 0 (valid) 0x469-0x469.7 (1)
|
||||
0x460| 00 | . | idx: 0 (valid) 0x46a-0x46a.7 (1)
|
||||
| | | [1]{}: local_time_type 0x46b-0x470.7 (6)
|
||||
0x460| 00 00 38 40 | ..8@ | utoff: 14400 (valid) 0x46b-0x46e.7 (4)
|
||||
0x460| 00| .| dst: 0 (valid) 0x46f-0x46f.7 (1)
|
||||
0x470|04 |. | idx: 4 (valid) 0x470-0x470.7 (1)
|
||||
| | | [2]{}: local_time_type 0x471-0x476.7 (6)
|
||||
0x470| 00 00 46 50 | ..FP | utoff: 18000 (valid) 0x471-0x474.7 (4)
|
||||
0x470| 00 | . | dst: 0 (valid) 0x475-0x475.7 (1)
|
||||
0x470| 08 | . | idx: 8 (valid) 0x476-0x476.7 (1)
|
||||
| | | [3]{}: local_time_type 0x477-0x47c.7 (6)
|
||||
0x470| 00 00 54 60 | ..T` | utoff: 21600 (valid) 0x477-0x47a.7 (4)
|
||||
0x470| 01 | . | dst: 1 (valid) 0x47b-0x47b.7 (1)
|
||||
0x470| 0c | . | idx: 12 (valid) 0x47c-0x47c.7 (1)
|
||||
| | | [4]{}: local_time_type 0x47d-0x482.7 (6)
|
||||
0x470| 00 00 54| ..T| utoff: 21600 (valid) 0x47d-0x480.7 (4)
|
||||
0x480|60 |` |
|
||||
0x480| 00 | . | dst: 0 (valid) 0x481-0x481.7 (1)
|
||||
0x480| 0c | . | idx: 12 (valid) 0x482-0x482.7 (1)
|
||||
| | | [5]{}: local_time_type 0x483-0x488.7 (6)
|
||||
0x480| 00 00 46 50 | ..FP | utoff: 18000 (valid) 0x483-0x486.7 (4)
|
||||
0x480| 00 | . | dst: 0 (valid) 0x487-0x487.7 (1)
|
||||
0x480| 08 | . | idx: 8 (valid) 0x488-0x488.7 (1)
|
||||
| | | [6]{}: local_time_type 0x489-0x48e.7 (6)
|
||||
0x480| 00 00 54 60 | ..T` | utoff: 21600 (valid) 0x489-0x48c.7 (4)
|
||||
0x480| 01 | . | dst: 1 (valid) 0x48d-0x48d.7 (1)
|
||||
0x480| 0c | . | idx: 12 (valid) 0x48e-0x48e.7 (1)
|
||||
| | | [7]{}: local_time_type 0x48f-0x494.7 (6)
|
||||
0x480| 00| .| utoff: 18000 (valid) 0x48f-0x492.7 (4)
|
||||
0x490|00 46 50 |.FP |
|
||||
0x490| 01 | . | dst: 1 (valid) 0x493-0x493.7 (1)
|
||||
0x490| 08 | . | idx: 8 (valid) 0x494-0x494.7 (1)
|
||||
| | | [8]{}: local_time_type 0x495-0x49a.7 (6)
|
||||
0x490| 00 00 38 40 | ..8@ | utoff: 14400 (valid) 0x495-0x498.7 (4)
|
||||
0x490| 00 | . | dst: 0 (valid) 0x499-0x499.7 (1)
|
||||
0x490| 04 | . | idx: 4 (valid) 0x49a-0x49a.7 (1)
|
||||
| | | [9]{}: local_time_type 0x49b-0x4a0.7 (6)
|
||||
0x490| 00 00 54 60 | ..T` | utoff: 21600 (valid) 0x49b-0x49e.7 (4)
|
||||
0x490| 01| .| dst: 1 (valid) 0x49f-0x49f.7 (1)
|
||||
0x4a0|0c |. | idx: 12 (valid) 0x4a0-0x4a0.7 (1)
|
||||
| | | [10]{}: local_time_type 0x4a1-0x4a6.7 (6)
|
||||
0x4a0| 00 00 46 50 | ..FP | utoff: 18000 (valid) 0x4a1-0x4a4.7 (4)
|
||||
0x4a0| 00 | . | dst: 0 (valid) 0x4a5-0x4a5.7 (1)
|
||||
0x4a0| 08 | . | idx: 8 (valid) 0x4a6-0x4a6.7 (1)
|
||||
| | | time_zone_designations[0:4]: 0x4a7-0x4b6.7 (16)
|
||||
0x4a0| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x4a7-0x4aa.7 (4)
|
||||
0x4a0| 2b 30 34 00 | +04. | [1]: "+04" time_zone_designation 0x4ab-0x4ae.7 (4)
|
||||
0x4a0| 2b| +| [2]: "+05" time_zone_designation 0x4af-0x4b2.7 (4)
|
||||
0x4b0|30 35 00 |05. |
|
||||
0x4b0| 2b 30 36 00 | +06. | [3]: "+06" time_zone_designation 0x4b3-0x4b6.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x4b7-0x5fa.7 (324)
|
||||
| | | [0]{}: leap_second_record 0x4b7-0x4c2.7 (12)
|
||||
0x4b0| 00 00 00 00 04 b2 58 00 | ......X. | occur: "1972-07-01T00:00:00Z" (78796800) 0x4b7-0x4be.7 (8)
|
||||
0x4b0| 00| .| corr: 1 0x4bf-0x4c2.7 (4)
|
||||
0x4c0|00 00 01 |... |
|
||||
| | | [1]{}: leap_second_record 0x4c3-0x4ce.7 (12)
|
||||
0x4c0| 00 00 00 00 05 a4 ec 01 | ........ | occur: "1973-01-01T00:00:01Z" (94694401) 0x4c3-0x4ca.7 (8)
|
||||
0x4c0| 00 00 00 02 | .... | corr: 2 0x4cb-0x4ce.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x4cf-0x4da.7 (12)
|
||||
0x4c0| 00| .| occur: "1974-01-01T00:00:02Z" (126230402) 0x4cf-0x4d6.7 (8)
|
||||
0x4d0|00 00 00 07 86 1f 82 |....... |
|
||||
0x4d0| 00 00 00 03 | .... | corr: 3 0x4d7-0x4da.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x4db-0x4e6.7 (12)
|
||||
0x4d0| 00 00 00 00 09| .....| occur: "1975-01-01T00:00:03Z" (157766403) 0x4db-0x4e2.7 (8)
|
||||
0x4e0|67 53 03 |gS. |
|
||||
0x4e0| 00 00 00 04 | .... | corr: 4 0x4e3-0x4e6.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x4e7-0x4f2.7 (12)
|
||||
0x4e0| 00 00 00 00 0b 48 86 84 | .....H.. | occur: "1976-01-01T00:00:04Z" (189302404) 0x4e7-0x4ee.7 (8)
|
||||
0x4e0| 00| .| corr: 5 0x4ef-0x4f2.7 (4)
|
||||
0x4f0|00 00 05 |... |
|
||||
| | | [5]{}: leap_second_record 0x4f3-0x4fe.7 (12)
|
||||
0x4f0| 00 00 00 00 0d 2b 0b 85 | .....+.. | occur: "1977-01-01T00:00:05Z" (220924805) 0x4f3-0x4fa.7 (8)
|
||||
0x4f0| 00 00 00 06 | .... | corr: 6 0x4fb-0x4fe.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x4ff-0x50a.7 (12)
|
||||
0x4f0| 00| .| occur: "1978-01-01T00:00:06Z" (252460806) 0x4ff-0x506.7 (8)
|
||||
0x500|00 00 00 0f 0c 3f 06 |.....?. |
|
||||
0x500| 00 00 00 07 | .... | corr: 7 0x507-0x50a.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x50b-0x516.7 (12)
|
||||
0x500| 00 00 00 00 10| .....| occur: "1979-01-01T00:00:07Z" (283996807) 0x50b-0x512.7 (8)
|
||||
0x510|ed 72 87 |.r. |
|
||||
0x510| 00 00 00 08 | .... | corr: 8 0x513-0x516.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x517-0x522.7 (12)
|
||||
0x510| 00 00 00 00 12 ce a6 08 | ........ | occur: "1980-01-01T00:00:08Z" (315532808) 0x517-0x51e.7 (8)
|
||||
0x510| 00| .| corr: 9 0x51f-0x522.7 (4)
|
||||
0x520|00 00 09 |... |
|
||||
| | | [9]{}: leap_second_record 0x523-0x52e.7 (12)
|
||||
0x520| 00 00 00 00 15 9f ca 89 | ........ | occur: "1981-07-01T00:00:09Z" (362793609) 0x523-0x52a.7 (8)
|
||||
0x520| 00 00 00 0a | .... | corr: 10 0x52b-0x52e.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x52f-0x53a.7 (12)
|
||||
0x520| 00| .| occur: "1982-07-01T00:00:10Z" (394329610) 0x52f-0x536.7 (8)
|
||||
0x530|00 00 00 17 80 fe 0a |....... |
|
||||
0x530| 00 00 00 0b | .... | corr: 11 0x537-0x53a.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x53b-0x546.7 (12)
|
||||
0x530| 00 00 00 00 19| .....| occur: "1983-07-01T00:00:11Z" (425865611) 0x53b-0x542.7 (8)
|
||||
0x540|62 31 8b |b1. |
|
||||
0x540| 00 00 00 0c | .... | corr: 12 0x543-0x546.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x547-0x552.7 (12)
|
||||
0x540| 00 00 00 00 1d 25 ea 0c | .....%.. | occur: "1985-07-01T00:00:12Z" (489024012) 0x547-0x54e.7 (8)
|
||||
0x540| 00| .| corr: 13 0x54f-0x552.7 (4)
|
||||
0x550|00 00 0d |... |
|
||||
| | | [13]{}: leap_second_record 0x553-0x55e.7 (12)
|
||||
0x550| 00 00 00 00 21 da e5 0d | ....!... | occur: "1988-01-01T00:00:13Z" (567993613) 0x553-0x55a.7 (8)
|
||||
0x550| 00 00 00 0e | .... | corr: 14 0x55b-0x55e.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x55f-0x56a.7 (12)
|
||||
0x550| 00| .| occur: "1990-01-01T00:00:14Z" (631152014) 0x55f-0x566.7 (8)
|
||||
0x560|00 00 00 25 9e 9d 8e |...%... |
|
||||
0x560| 00 00 00 0f | .... | corr: 15 0x567-0x56a.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x56b-0x576.7 (12)
|
||||
0x560| 00 00 00 00 27| ....'| occur: "1991-01-01T00:00:15Z" (662688015) 0x56b-0x572.7 (8)
|
||||
0x570|7f d1 0f |... |
|
||||
0x570| 00 00 00 10 | .... | corr: 16 0x573-0x576.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x577-0x582.7 (12)
|
||||
0x570| 00 00 00 00 2a 50 f5 90 | ....*P.. | occur: "1992-07-01T00:00:16Z" (709948816) 0x577-0x57e.7 (8)
|
||||
0x570| 00| .| corr: 17 0x57f-0x582.7 (4)
|
||||
0x580|00 00 11 |... |
|
||||
| | | [17]{}: leap_second_record 0x583-0x58e.7 (12)
|
||||
0x580| 00 00 00 00 2c 32 29 11 | ....,2). | occur: "1993-07-01T00:00:17Z" (741484817) 0x583-0x58a.7 (8)
|
||||
0x580| 00 00 00 12 | .... | corr: 18 0x58b-0x58e.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x58f-0x59a.7 (12)
|
||||
0x580| 00| .| occur: "1994-07-01T00:00:18Z" (773020818) 0x58f-0x596.7 (8)
|
||||
0x590|00 00 00 2e 13 5c 92 |.....\. |
|
||||
0x590| 00 00 00 13 | .... | corr: 19 0x597-0x59a.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x59b-0x5a6.7 (12)
|
||||
0x590| 00 00 00 00 30| ....0| occur: "1996-01-01T00:00:19Z" (820454419) 0x59b-0x5a2.7 (8)
|
||||
0x5a0|e7 24 13 |.$. |
|
||||
0x5a0| 00 00 00 14 | .... | corr: 20 0x5a3-0x5a6.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x5a7-0x5b2.7 (12)
|
||||
0x5a0| 00 00 00 00 33 b8 48 94 | ....3.H. | occur: "1997-07-01T00:00:20Z" (867715220) 0x5a7-0x5ae.7 (8)
|
||||
0x5a0| 00| .| corr: 21 0x5af-0x5b2.7 (4)
|
||||
0x5b0|00 00 15 |... |
|
||||
| | | [21]{}: leap_second_record 0x5b3-0x5be.7 (12)
|
||||
0x5b0| 00 00 00 00 36 8c 10 15 | ....6... | occur: "1999-01-01T00:00:21Z" (915148821) 0x5b3-0x5ba.7 (8)
|
||||
0x5b0| 00 00 00 16 | .... | corr: 22 0x5bb-0x5be.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x5bf-0x5ca.7 (12)
|
||||
0x5b0| 00| .| occur: "2006-01-01T00:00:22Z" (1136073622) 0x5bf-0x5c6.7 (8)
|
||||
0x5c0|00 00 00 43 b7 1b 96 |...C... |
|
||||
0x5c0| 00 00 00 17 | .... | corr: 23 0x5c7-0x5ca.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x5cb-0x5d6.7 (12)
|
||||
0x5c0| 00 00 00 00 49| ....I| occur: "2009-01-01T00:00:23Z" (1230768023) 0x5cb-0x5d2.7 (8)
|
||||
0x5d0|5c 07 97 |\.. |
|
||||
0x5d0| 00 00 00 18 | .... | corr: 24 0x5d3-0x5d6.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x5d7-0x5e2.7 (12)
|
||||
0x5d0| 00 00 00 00 4f ef 93 18 | ....O... | occur: "2012-07-01T00:00:24Z" (1341100824) 0x5d7-0x5de.7 (8)
|
||||
0x5d0| 00| .| corr: 25 0x5df-0x5e2.7 (4)
|
||||
0x5e0|00 00 19 |... |
|
||||
| | | [25]{}: leap_second_record 0x5e3-0x5ee.7 (12)
|
||||
0x5e0| 00 00 00 00 55 93 2d 99 | ....U.-. | occur: "2015-07-01T00:00:25Z" (1435708825) 0x5e3-0x5ea.7 (8)
|
||||
0x5e0| 00 00 00 1a | .... | corr: 26 0x5eb-0x5ee.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x5ef-0x5fa.7 (12)
|
||||
0x5e0| 00| .| occur: "2017-01-01T00:00:26Z" (1483228826) 0x5ef-0x5f6.7 (8)
|
||||
0x5f0|00 00 00 58 68 46 9a |...XhF. |
|
||||
0x5f0| 00 00 00 1b | .... | corr: 27 0x5f7-0x5fa.7 (4)
|
||||
| | | standard_wall_indicators[0:11]: 0x5fb-0x605.7 (11)
|
||||
0x5f0| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x5fb-0x5fb.7 (1)
|
||||
0x5f0| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x5fc-0x5fc.7 (1)
|
||||
0x5f0| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x5fd-0x5fd.7 (1)
|
||||
0x5f0| 00 | . | [3]: 0 standard_wall_indicator (valid) 0x5fe-0x5fe.7 (1)
|
||||
0x5f0| 00| .| [4]: 0 standard_wall_indicator (valid) 0x5ff-0x5ff.7 (1)
|
||||
0x600|01 |. | [5]: 1 standard_wall_indicator (valid) 0x600-0x600.7 (1)
|
||||
0x600| 01 | . | [6]: 1 standard_wall_indicator (valid) 0x601-0x601.7 (1)
|
||||
0x600| 01 | . | [7]: 1 standard_wall_indicator (valid) 0x602-0x602.7 (1)
|
||||
0x600| 01 | . | [8]: 1 standard_wall_indicator (valid) 0x603-0x603.7 (1)
|
||||
0x600| 01 | . | [9]: 1 standard_wall_indicator (valid) 0x604-0x604.7 (1)
|
||||
0x600| 01 | . | [10]: 1 standard_wall_indicator (valid) 0x605-0x605.7 (1)
|
||||
| | | ut_local_indicators[0:0]: 0x606-NA (0)
|
||||
| | | footer{}: 0x606-0x607.7 (2)
|
||||
0x600| 0a | . | nl1: 10 (valid) 0x606-0x606.7 (1)
|
||||
| | | tz_string: "" 0x607-NA (0)
|
||||
0x600| 0a| | .| | nl2: 10 (valid) 0x607-0x607.7 (1)
|
BIN
format/tzif/testdata/Araguaina
vendored
Normal file
BIN
format/tzif/testdata/Araguaina
vendored
Normal file
Binary file not shown.
493
format/tzif/testdata/Araguaina.fqtest
vendored
Normal file
493
format/tzif/testdata/Araguaina.fqtest
vendored
Normal file
@ -0,0 +1,493 @@
|
||||
$ fq -d tzif dv Araguaina
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: Araguaina (tzif) 0x0-0x589.7 (1418)
|
||||
| | | v1header{}: 0x0-0x2b.7 (44)
|
||||
0x000|54 5a 69 66 |TZif | magic: 0x545a6966 (valid) 0x0-0x3.7 (4)
|
||||
0x000| 32 | 2 | ver: "2" (0x32) (valid) 0x4-0x4.7 (1)
|
||||
0x000| 00 00 00 00 00 00 00 00 00 00 00| ...........| reserved: raw bits 0x5-0x13.7 (15)
|
||||
0x010|00 00 00 00 |.... |
|
||||
0x010| 00 00 00 00 | .... | isutcnt: 0 0x14-0x17.7 (4)
|
||||
0x010| 00 00 00 00 | .... | isstdcnt: 0 0x18-0x1b.7 (4)
|
||||
0x010| 00 00 00 1b| ....| leapcnt: 27 0x1c-0x1f.7 (4)
|
||||
0x020|00 00 00 34 |...4 | timecnt: 52 0x20-0x23.7 (4)
|
||||
0x020| 00 00 00 03 | .... | typecnt: 3 0x24-0x27.7 (4)
|
||||
0x020| 00 00 00 0c | .... | charcnt: 12 0x28-0x2b.7 (4)
|
||||
| | | v1datablock{}: 0x2c-0x225.7 (506)
|
||||
| | | transition_times[0:52]: 0x2c-0xfb.7 (208)
|
||||
0x020| 96 aa 74 30| ..t0| [0]: "1914-01-01T03:12:48Z" (-1767214032) transition_time 0x2c-0x2f.7 (4)
|
||||
0x030|b8 0f 49 e0 |..I. | [1]: "1931-10-03T14:00:00Z" (-1206957600) transition_time 0x30-0x33.7 (4)
|
||||
0x030| b8 fd 40 a0 | ..@. | [2]: "1932-04-01T02:00:00Z" (-1191362400) transition_time 0x34-0x37.7 (4)
|
||||
0x030| b9 f1 34 30 | ..40 | [3]: "1932-10-03T03:00:00Z" (-1175374800) transition_time 0x38-0x3b.7 (4)
|
||||
0x030| ba de 74 20| ..t | [4]: "1933-04-01T02:00:00Z" (-1159826400) transition_time 0x3c-0x3f.7 (4)
|
||||
0x040|da 38 ae 30 |.8.0 | [5]: "1949-12-01T03:00:00Z" (-633819600) transition_time 0x40-0x43.7 (4)
|
||||
0x040| da eb fa 30 | ...0 | [6]: "1950-04-16T03:00:00Z" (-622069200) transition_time 0x44-0x47.7 (4)
|
||||
0x040| dc 19 e1 b0 | .... | [7]: "1950-12-01T03:00:00Z" (-602283600) transition_time 0x48-0x4b.7 (4)
|
||||
0x040| dc b9 59 20| ..Y | [8]: "1951-04-01T02:00:00Z" (-591832800) transition_time 0x4c-0x4f.7 (4)
|
||||
0x050|dd fb 15 30 |...0 | [9]: "1951-12-01T03:00:00Z" (-570747600) transition_time 0x50-0x53.7 (4)
|
||||
0x050| de 9b de 20 | ... | [10]: "1952-04-01T02:00:00Z" (-560210400) transition_time 0x54-0x57.7 (4)
|
||||
0x050| df dd 9a 30 | ...0 | [11]: "1952-12-01T03:00:00Z" (-539125200) transition_time 0x58-0x5b.7 (4)
|
||||
0x050| e0 54 33 20| .T3 | [12]: "1953-03-01T02:00:00Z" (-531352800) transition_time 0x5c-0x5f.7 (4)
|
||||
0x060|f4 97 ff b0 |.... | [13]: "1963-12-09T03:00:00Z" (-191365200) transition_time 0x60-0x63.7 (4)
|
||||
0x060| f5 05 5e 20 | ..^ | [14]: "1964-03-01T02:00:00Z" (-184197600) transition_time 0x64-0x67.7 (4)
|
||||
0x060| f6 c0 64 30 | ..d0 | [15]: "1965-01-31T03:00:00Z" (-155163600) transition_time 0x68-0x6b.7 (4)
|
||||
0x060| f7 0e 1e a0| ....| [16]: "1965-03-31T02:00:00Z" (-150069600) transition_time 0x6c-0x6f.7 (4)
|
||||
0x070|f8 51 2c 30 |.Q,0 | [17]: "1965-12-01T03:00:00Z" (-128898000) transition_time 0x70-0x73.7 (4)
|
||||
0x070| f8 c7 c5 20 | ... | [18]: "1966-03-01T02:00:00Z" (-121125600) transition_time 0x74-0x77.7 (4)
|
||||
0x070| fa 0a d2 b0 | .... | [19]: "1966-11-01T03:00:00Z" (-99954000) transition_time 0x78-0x7b.7 (4)
|
||||
0x070| fa a8 f8 a0| ....| [20]: "1967-03-01T02:00:00Z" (-89589600) transition_time 0x7c-0x7f.7 (4)
|
||||
0x080|fb ec 06 30 |...0 | [21]: "1967-11-01T03:00:00Z" (-68418000) transition_time 0x80-0x83.7 (4)
|
||||
0x080| fc 8b 7d a0 | ..}. | [22]: "1968-03-01T02:00:00Z" (-57967200) transition_time 0x84-0x87.7 (4)
|
||||
0x080| 1d c9 8e 3d | ...= | [23]: "1985-11-02T03:00:13Z" (499748413) transition_time 0x88-0x8b.7 (4)
|
||||
0x080| 1e 78 d7 ad| .x..| [24]: "1986-03-15T02:00:13Z" (511236013) transition_time 0x8c-0x8f.7 (4)
|
||||
0x090|1f a0 35 bd |..5. | [25]: "1986-10-25T03:00:13Z" (530593213) transition_time 0x90-0x93.7 (4)
|
||||
0x090| 20 33 cf ad | 3.. | [26]: "1987-02-14T02:00:13Z" (540266413) transition_time 0x94-0x97.7 (4)
|
||||
0x090| 21 81 69 3d | !.i= | [27]: "1987-10-25T03:00:13Z" (562129213) transition_time 0x98-0x9b.7 (4)
|
||||
0x090| 22 0b c8 ae| "...| [28]: "1988-02-07T02:00:14Z" (571197614) transition_time 0x9c-0x9f.7 (4)
|
||||
0x0a0|23 58 10 be |#X.. | [29]: "1988-10-16T03:00:14Z" (592974014) transition_time 0xa0-0xa3.7 (4)
|
||||
0x0a0| 23 e2 70 2e | #.p. | [30]: "1989-01-29T02:00:14Z" (602042414) transition_time 0xa4-0xa7.7 (4)
|
||||
0x0a0| 25 37 f2 be | %7.. | [31]: "1989-10-15T03:00:14Z" (624423614) transition_time 0xa8-0xab.7 (4)
|
||||
0x0a0| 25 d4 c7 2f| %../| [32]: "1990-02-11T02:00:15Z" (634701615) transition_time 0xac-0xaf.7 (4)
|
||||
0x0b0|30 80 79 43 |0.yC | [33]: "1995-10-15T03:00:19Z" (813726019) transition_time 0xb0-0xb3.7 (4)
|
||||
0x0b0| 31 1d 4d b4 | 1.M. | [34]: "1996-02-11T02:00:20Z" (824004020) transition_time 0xb4-0xb7.7 (4)
|
||||
0x0b0| 32 57 20 c4 | 2W . | [35]: "1996-10-06T03:00:20Z" (844570820) transition_time 0xb8-0xbb.7 (4)
|
||||
0x0b0| 33 06 6a 34| 3.j4| [36]: "1997-02-16T02:00:20Z" (856058420) transition_time 0xbc-0xbf.7 (4)
|
||||
0x0c0|34 38 54 45 |48TE | [37]: "1997-10-06T03:00:21Z" (876106821) transition_time 0xc0-0xc3.7 (4)
|
||||
0x0c0| 34 f8 c1 35 | 4..5 | [38]: "1998-03-01T02:00:21Z" (888717621) transition_time 0xc4-0xc7.7 (4)
|
||||
0x0c0| 36 20 1f 45 | 6 .E | [39]: "1998-10-11T03:00:21Z" (908074821) transition_time 0xc8-0xcb.7 (4)
|
||||
0x0c0| 36 cf 68 b6| 6.h.| [40]: "1999-02-21T02:00:22Z" (919562422) transition_time 0xcc-0xcf.7 (4)
|
||||
0x0d0|37 f6 c6 c6 |7... | [41]: "1999-10-03T03:00:22Z" (938919622) transition_time 0xd0-0xd3.7 (4)
|
||||
0x0d0| 38 b8 85 36 | 8..6 | [42]: "2000-02-27T02:00:22Z" (951616822) transition_time 0xd4-0xd7.7 (4)
|
||||
0x0d0| 39 df e3 46 | 9..F | [43]: "2000-10-08T03:00:22Z" (970974022) transition_time 0xd8-0xdb.7 (4)
|
||||
0x0d0| 3a 8f 2c b6| :.,.| [44]: "2001-02-18T02:00:22Z" (982461622) transition_time 0xdc-0xdf.7 (4)
|
||||
0x0e0|3b c8 ff c6 |;... | [45]: "2001-10-14T03:00:22Z" (1003028422) transition_time 0xe0-0xe3.7 (4)
|
||||
0x0e0| 3c 6f 0e b6 | <o.. | [46]: "2002-02-17T02:00:22Z" (1013911222) transition_time 0xe4-0xe7.7 (4)
|
||||
0x0e0| 3d c4 91 46 | =..F | [47]: "2002-11-03T03:00:22Z" (1036292422) transition_time 0xe8-0xeb.7 (4)
|
||||
0x0e0| 3e 4e f0 b6| >N..| [48]: "2003-02-16T02:00:22Z" (1045360822) transition_time 0xec-0xef.7 (4)
|
||||
0x0f0|50 83 65 49 |P.eI | [49]: "2012-10-21T03:00:25Z" (1350788425) transition_time 0xf0-0xf3.7 (4)
|
||||
0x0f0| 51 20 39 b9 | Q 9. | [50]: "2013-02-17T02:00:25Z" (1361066425) transition_time 0xf4-0xf7.7 (4)
|
||||
0x0f0| 64 9b 78 1b | d.x. | [51]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0xf8-0xfb.7 (4)
|
||||
| | | transition_types[0:52]: 0xfc-0x12f.7 (52)
|
||||
0x0f0| 02 | . | [0]: 2 transition_type 0xfc-0xfc.7 (1)
|
||||
0x0f0| 01 | . | [1]: 1 transition_type 0xfd-0xfd.7 (1)
|
||||
0x0f0| 02 | . | [2]: 2 transition_type 0xfe-0xfe.7 (1)
|
||||
0x0f0| 01| .| [3]: 1 transition_type 0xff-0xff.7 (1)
|
||||
0x100|02 |. | [4]: 2 transition_type 0x100-0x100.7 (1)
|
||||
0x100| 01 | . | [5]: 1 transition_type 0x101-0x101.7 (1)
|
||||
0x100| 02 | . | [6]: 2 transition_type 0x102-0x102.7 (1)
|
||||
0x100| 01 | . | [7]: 1 transition_type 0x103-0x103.7 (1)
|
||||
0x100| 02 | . | [8]: 2 transition_type 0x104-0x104.7 (1)
|
||||
0x100| 01 | . | [9]: 1 transition_type 0x105-0x105.7 (1)
|
||||
0x100| 02 | . | [10]: 2 transition_type 0x106-0x106.7 (1)
|
||||
0x100| 01 | . | [11]: 1 transition_type 0x107-0x107.7 (1)
|
||||
0x100| 02 | . | [12]: 2 transition_type 0x108-0x108.7 (1)
|
||||
0x100| 01 | . | [13]: 1 transition_type 0x109-0x109.7 (1)
|
||||
0x100| 02 | . | [14]: 2 transition_type 0x10a-0x10a.7 (1)
|
||||
0x100| 01 | . | [15]: 1 transition_type 0x10b-0x10b.7 (1)
|
||||
0x100| 02 | . | [16]: 2 transition_type 0x10c-0x10c.7 (1)
|
||||
0x100| 01 | . | [17]: 1 transition_type 0x10d-0x10d.7 (1)
|
||||
0x100| 02 | . | [18]: 2 transition_type 0x10e-0x10e.7 (1)
|
||||
0x100| 01| .| [19]: 1 transition_type 0x10f-0x10f.7 (1)
|
||||
0x110|02 |. | [20]: 2 transition_type 0x110-0x110.7 (1)
|
||||
0x110| 01 | . | [21]: 1 transition_type 0x111-0x111.7 (1)
|
||||
0x110| 02 | . | [22]: 2 transition_type 0x112-0x112.7 (1)
|
||||
0x110| 01 | . | [23]: 1 transition_type 0x113-0x113.7 (1)
|
||||
0x110| 02 | . | [24]: 2 transition_type 0x114-0x114.7 (1)
|
||||
0x110| 01 | . | [25]: 1 transition_type 0x115-0x115.7 (1)
|
||||
0x110| 02 | . | [26]: 2 transition_type 0x116-0x116.7 (1)
|
||||
0x110| 01 | . | [27]: 1 transition_type 0x117-0x117.7 (1)
|
||||
0x110| 02 | . | [28]: 2 transition_type 0x118-0x118.7 (1)
|
||||
0x110| 01 | . | [29]: 1 transition_type 0x119-0x119.7 (1)
|
||||
0x110| 02 | . | [30]: 2 transition_type 0x11a-0x11a.7 (1)
|
||||
0x110| 01 | . | [31]: 1 transition_type 0x11b-0x11b.7 (1)
|
||||
0x110| 02 | . | [32]: 2 transition_type 0x11c-0x11c.7 (1)
|
||||
0x110| 01 | . | [33]: 1 transition_type 0x11d-0x11d.7 (1)
|
||||
0x110| 02 | . | [34]: 2 transition_type 0x11e-0x11e.7 (1)
|
||||
0x110| 01| .| [35]: 1 transition_type 0x11f-0x11f.7 (1)
|
||||
0x120|02 |. | [36]: 2 transition_type 0x120-0x120.7 (1)
|
||||
0x120| 01 | . | [37]: 1 transition_type 0x121-0x121.7 (1)
|
||||
0x120| 02 | . | [38]: 2 transition_type 0x122-0x122.7 (1)
|
||||
0x120| 01 | . | [39]: 1 transition_type 0x123-0x123.7 (1)
|
||||
0x120| 02 | . | [40]: 2 transition_type 0x124-0x124.7 (1)
|
||||
0x120| 01 | . | [41]: 1 transition_type 0x125-0x125.7 (1)
|
||||
0x120| 02 | . | [42]: 2 transition_type 0x126-0x126.7 (1)
|
||||
0x120| 01 | . | [43]: 1 transition_type 0x127-0x127.7 (1)
|
||||
0x120| 02 | . | [44]: 2 transition_type 0x128-0x128.7 (1)
|
||||
0x120| 01 | . | [45]: 1 transition_type 0x129-0x129.7 (1)
|
||||
0x120| 02 | . | [46]: 2 transition_type 0x12a-0x12a.7 (1)
|
||||
0x120| 01 | . | [47]: 1 transition_type 0x12b-0x12b.7 (1)
|
||||
0x120| 02 | . | [48]: 2 transition_type 0x12c-0x12c.7 (1)
|
||||
0x120| 01 | . | [49]: 1 transition_type 0x12d-0x12d.7 (1)
|
||||
0x120| 02 | . | [50]: 2 transition_type 0x12e-0x12e.7 (1)
|
||||
0x120| 02| .| [51]: 2 transition_type 0x12f-0x12f.7 (1)
|
||||
| | | local_time_type_records[0:3]: 0x130-0x141.7 (18)
|
||||
| | | [0]{}: local_time_type 0x130-0x135.7 (6)
|
||||
0x130|ff ff d2 d0 |.... | utoff: -11568 (valid) 0x130-0x133.7 (4)
|
||||
0x130| 00 | . | dst: 0 (valid) 0x134-0x134.7 (1)
|
||||
0x130| 00 | . | idx: 0 (valid) 0x135-0x135.7 (1)
|
||||
| | | [1]{}: local_time_type 0x136-0x13b.7 (6)
|
||||
0x130| ff ff e3 e0 | .... | utoff: -7200 (valid) 0x136-0x139.7 (4)
|
||||
0x130| 01 | . | dst: 1 (valid) 0x13a-0x13a.7 (1)
|
||||
0x130| 04 | . | idx: 4 (valid) 0x13b-0x13b.7 (1)
|
||||
| | | [2]{}: local_time_type 0x13c-0x141.7 (6)
|
||||
0x130| ff ff d5 d0| ....| utoff: -10800 (valid) 0x13c-0x13f.7 (4)
|
||||
0x140|00 |. | dst: 0 (valid) 0x140-0x140.7 (1)
|
||||
0x140| 08 | . | idx: 8 (valid) 0x141-0x141.7 (1)
|
||||
| | | time_zone_designations[0:3]: 0x142-0x14d.7 (12)
|
||||
0x140| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x142-0x145.7 (4)
|
||||
0x140| 2d 30 32 00 | -02. | [1]: "-02" time_zone_designation 0x146-0x149.7 (4)
|
||||
0x140| 2d 30 33 00 | -03. | [2]: "-03" time_zone_designation 0x14a-0x14d.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x14e-0x225.7 (216)
|
||||
| | | [0]{}: leap_second_record 0x14e-0x155.7 (8)
|
||||
0x140| 04 b2| ..| occur: "1972-07-01T00:00:00Z" (78796800) 0x14e-0x151.7 (4)
|
||||
0x150|58 00 |X. |
|
||||
0x150| 00 00 00 01 | .... | corr: 1 0x152-0x155.7 (4)
|
||||
| | | [1]{}: leap_second_record 0x156-0x15d.7 (8)
|
||||
0x150| 05 a4 ec 01 | .... | occur: "1973-01-01T00:00:01Z" (94694401) 0x156-0x159.7 (4)
|
||||
0x150| 00 00 00 02 | .... | corr: 2 0x15a-0x15d.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x15e-0x165.7 (8)
|
||||
0x150| 07 86| ..| occur: "1974-01-01T00:00:02Z" (126230402) 0x15e-0x161.7 (4)
|
||||
0x160|1f 82 |.. |
|
||||
0x160| 00 00 00 03 | .... | corr: 3 0x162-0x165.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x166-0x16d.7 (8)
|
||||
0x160| 09 67 53 03 | .gS. | occur: "1975-01-01T00:00:03Z" (157766403) 0x166-0x169.7 (4)
|
||||
0x160| 00 00 00 04 | .... | corr: 4 0x16a-0x16d.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x16e-0x175.7 (8)
|
||||
0x160| 0b 48| .H| occur: "1976-01-01T00:00:04Z" (189302404) 0x16e-0x171.7 (4)
|
||||
0x170|86 84 |.. |
|
||||
0x170| 00 00 00 05 | .... | corr: 5 0x172-0x175.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x176-0x17d.7 (8)
|
||||
0x170| 0d 2b 0b 85 | .+.. | occur: "1977-01-01T00:00:05Z" (220924805) 0x176-0x179.7 (4)
|
||||
0x170| 00 00 00 06 | .... | corr: 6 0x17a-0x17d.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x17e-0x185.7 (8)
|
||||
0x170| 0f 0c| ..| occur: "1978-01-01T00:00:06Z" (252460806) 0x17e-0x181.7 (4)
|
||||
0x180|3f 06 |?. |
|
||||
0x180| 00 00 00 07 | .... | corr: 7 0x182-0x185.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x186-0x18d.7 (8)
|
||||
0x180| 10 ed 72 87 | ..r. | occur: "1979-01-01T00:00:07Z" (283996807) 0x186-0x189.7 (4)
|
||||
0x180| 00 00 00 08 | .... | corr: 8 0x18a-0x18d.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x18e-0x195.7 (8)
|
||||
0x180| 12 ce| ..| occur: "1980-01-01T00:00:08Z" (315532808) 0x18e-0x191.7 (4)
|
||||
0x190|a6 08 |.. |
|
||||
0x190| 00 00 00 09 | .... | corr: 9 0x192-0x195.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x196-0x19d.7 (8)
|
||||
0x190| 15 9f ca 89 | .... | occur: "1981-07-01T00:00:09Z" (362793609) 0x196-0x199.7 (4)
|
||||
0x190| 00 00 00 0a | .... | corr: 10 0x19a-0x19d.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x19e-0x1a5.7 (8)
|
||||
0x190| 17 80| ..| occur: "1982-07-01T00:00:10Z" (394329610) 0x19e-0x1a1.7 (4)
|
||||
0x1a0|fe 0a |.. |
|
||||
0x1a0| 00 00 00 0b | .... | corr: 11 0x1a2-0x1a5.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x1a6-0x1ad.7 (8)
|
||||
0x1a0| 19 62 31 8b | .b1. | occur: "1983-07-01T00:00:11Z" (425865611) 0x1a6-0x1a9.7 (4)
|
||||
0x1a0| 00 00 00 0c | .... | corr: 12 0x1aa-0x1ad.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x1ae-0x1b5.7 (8)
|
||||
0x1a0| 1d 25| .%| occur: "1985-07-01T00:00:12Z" (489024012) 0x1ae-0x1b1.7 (4)
|
||||
0x1b0|ea 0c |.. |
|
||||
0x1b0| 00 00 00 0d | .... | corr: 13 0x1b2-0x1b5.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x1b6-0x1bd.7 (8)
|
||||
0x1b0| 21 da e5 0d | !... | occur: "1988-01-01T00:00:13Z" (567993613) 0x1b6-0x1b9.7 (4)
|
||||
0x1b0| 00 00 00 0e | .... | corr: 14 0x1ba-0x1bd.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x1be-0x1c5.7 (8)
|
||||
0x1b0| 25 9e| %.| occur: "1990-01-01T00:00:14Z" (631152014) 0x1be-0x1c1.7 (4)
|
||||
0x1c0|9d 8e |.. |
|
||||
0x1c0| 00 00 00 0f | .... | corr: 15 0x1c2-0x1c5.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x1c6-0x1cd.7 (8)
|
||||
0x1c0| 27 7f d1 0f | '... | occur: "1991-01-01T00:00:15Z" (662688015) 0x1c6-0x1c9.7 (4)
|
||||
0x1c0| 00 00 00 10 | .... | corr: 16 0x1ca-0x1cd.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x1ce-0x1d5.7 (8)
|
||||
0x1c0| 2a 50| *P| occur: "1992-07-01T00:00:16Z" (709948816) 0x1ce-0x1d1.7 (4)
|
||||
0x1d0|f5 90 |.. |
|
||||
0x1d0| 00 00 00 11 | .... | corr: 17 0x1d2-0x1d5.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x1d6-0x1dd.7 (8)
|
||||
0x1d0| 2c 32 29 11 | ,2). | occur: "1993-07-01T00:00:17Z" (741484817) 0x1d6-0x1d9.7 (4)
|
||||
0x1d0| 00 00 00 12 | .... | corr: 18 0x1da-0x1dd.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x1de-0x1e5.7 (8)
|
||||
0x1d0| 2e 13| ..| occur: "1994-07-01T00:00:18Z" (773020818) 0x1de-0x1e1.7 (4)
|
||||
0x1e0|5c 92 |\. |
|
||||
0x1e0| 00 00 00 13 | .... | corr: 19 0x1e2-0x1e5.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x1e6-0x1ed.7 (8)
|
||||
0x1e0| 30 e7 24 13 | 0.$. | occur: "1996-01-01T00:00:19Z" (820454419) 0x1e6-0x1e9.7 (4)
|
||||
0x1e0| 00 00 00 14 | .... | corr: 20 0x1ea-0x1ed.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x1ee-0x1f5.7 (8)
|
||||
0x1e0| 33 b8| 3.| occur: "1997-07-01T00:00:20Z" (867715220) 0x1ee-0x1f1.7 (4)
|
||||
0x1f0|48 94 |H. |
|
||||
0x1f0| 00 00 00 15 | .... | corr: 21 0x1f2-0x1f5.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x1f6-0x1fd.7 (8)
|
||||
0x1f0| 36 8c 10 15 | 6... | occur: "1999-01-01T00:00:21Z" (915148821) 0x1f6-0x1f9.7 (4)
|
||||
0x1f0| 00 00 00 16 | .... | corr: 22 0x1fa-0x1fd.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x1fe-0x205.7 (8)
|
||||
0x1f0| 43 b7| C.| occur: "2006-01-01T00:00:22Z" (1136073622) 0x1fe-0x201.7 (4)
|
||||
0x200|1b 96 |.. |
|
||||
0x200| 00 00 00 17 | .... | corr: 23 0x202-0x205.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x206-0x20d.7 (8)
|
||||
0x200| 49 5c 07 97 | I\.. | occur: "2009-01-01T00:00:23Z" (1230768023) 0x206-0x209.7 (4)
|
||||
0x200| 00 00 00 18 | .... | corr: 24 0x20a-0x20d.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x20e-0x215.7 (8)
|
||||
0x200| 4f ef| O.| occur: "2012-07-01T00:00:24Z" (1341100824) 0x20e-0x211.7 (4)
|
||||
0x210|93 18 |.. |
|
||||
0x210| 00 00 00 19 | .... | corr: 25 0x212-0x215.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x216-0x21d.7 (8)
|
||||
0x210| 55 93 2d 99 | U.-. | occur: "2015-07-01T00:00:25Z" (1435708825) 0x216-0x219.7 (4)
|
||||
0x210| 00 00 00 1a | .... | corr: 26 0x21a-0x21d.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x21e-0x225.7 (8)
|
||||
0x210| 58 68| Xh| occur: "2017-01-01T00:00:26Z" (1483228826) 0x21e-0x221.7 (4)
|
||||
0x220|46 9a |F. |
|
||||
0x220| 00 00 00 1b | .... | corr: 27 0x222-0x225.7 (4)
|
||||
| | | standard_wall_indicators[0:0]: 0x226-NA (0)
|
||||
| | | ut_local_indicators[0:0]: 0x226-NA (0)
|
||||
| | | v2plusheader{}: 0x226-0x251.7 (44)
|
||||
0x220| 54 5a 69 66 | TZif | magic: 0x545a6966 (valid) 0x226-0x229.7 (4)
|
||||
0x220| 32 | 2 | ver: "2" (0x32) (valid) 0x22a-0x22a.7 (1)
|
||||
0x220| 00 00 00 00 00| .....| reserved: raw bits 0x22b-0x239.7 (15)
|
||||
0x230|00 00 00 00 00 00 00 00 00 00 |.......... |
|
||||
0x230| 00 00 00 00 | .... | isutcnt: 0 0x23a-0x23d.7 (4)
|
||||
0x230| 00 00| ..| isstdcnt: 0 0x23e-0x241.7 (4)
|
||||
0x240|00 00 |.. |
|
||||
0x240| 00 00 00 1b | .... | leapcnt: 27 0x242-0x245.7 (4)
|
||||
0x240| 00 00 00 34 | ...4 | timecnt: 52 0x246-0x249.7 (4)
|
||||
0x240| 00 00 00 03 | .... | typecnt: 3 0x24a-0x24d.7 (4)
|
||||
0x240| 00 00| ..| charcnt: 12 0x24e-0x251.7 (4)
|
||||
0x250|00 0c |.. |
|
||||
| | | v2plusdatablock{}: 0x252-0x587.7 (822)
|
||||
| | | transition_times[0:52]: 0x252-0x3f1.7 (416)
|
||||
0x250| ff ff ff ff 96 aa 74 30 | ......t0 | [0]: "1914-01-01T03:12:48Z" (-1767214032) transition_time 0x252-0x259.7 (8)
|
||||
0x250| ff ff ff ff b8 0f| ......| [1]: "1931-10-03T14:00:00Z" (-1206957600) transition_time 0x25a-0x261.7 (8)
|
||||
0x260|49 e0 |I. |
|
||||
0x260| ff ff ff ff b8 fd 40 a0 | ......@. | [2]: "1932-04-01T02:00:00Z" (-1191362400) transition_time 0x262-0x269.7 (8)
|
||||
0x260| ff ff ff ff b9 f1| ......| [3]: "1932-10-03T03:00:00Z" (-1175374800) transition_time 0x26a-0x271.7 (8)
|
||||
0x270|34 30 |40 |
|
||||
0x270| ff ff ff ff ba de 74 20 | ......t | [4]: "1933-04-01T02:00:00Z" (-1159826400) transition_time 0x272-0x279.7 (8)
|
||||
0x270| ff ff ff ff da 38| .....8| [5]: "1949-12-01T03:00:00Z" (-633819600) transition_time 0x27a-0x281.7 (8)
|
||||
0x280|ae 30 |.0 |
|
||||
0x280| ff ff ff ff da eb fa 30 | .......0 | [6]: "1950-04-16T03:00:00Z" (-622069200) transition_time 0x282-0x289.7 (8)
|
||||
0x280| ff ff ff ff dc 19| ......| [7]: "1950-12-01T03:00:00Z" (-602283600) transition_time 0x28a-0x291.7 (8)
|
||||
0x290|e1 b0 |.. |
|
||||
0x290| ff ff ff ff dc b9 59 20 | ......Y | [8]: "1951-04-01T02:00:00Z" (-591832800) transition_time 0x292-0x299.7 (8)
|
||||
0x290| ff ff ff ff dd fb| ......| [9]: "1951-12-01T03:00:00Z" (-570747600) transition_time 0x29a-0x2a1.7 (8)
|
||||
0x2a0|15 30 |.0 |
|
||||
0x2a0| ff ff ff ff de 9b de 20 | ....... | [10]: "1952-04-01T02:00:00Z" (-560210400) transition_time 0x2a2-0x2a9.7 (8)
|
||||
0x2a0| ff ff ff ff df dd| ......| [11]: "1952-12-01T03:00:00Z" (-539125200) transition_time 0x2aa-0x2b1.7 (8)
|
||||
0x2b0|9a 30 |.0 |
|
||||
0x2b0| ff ff ff ff e0 54 33 20 | .....T3 | [12]: "1953-03-01T02:00:00Z" (-531352800) transition_time 0x2b2-0x2b9.7 (8)
|
||||
0x2b0| ff ff ff ff f4 97| ......| [13]: "1963-12-09T03:00:00Z" (-191365200) transition_time 0x2ba-0x2c1.7 (8)
|
||||
0x2c0|ff b0 |.. |
|
||||
0x2c0| ff ff ff ff f5 05 5e 20 | ......^ | [14]: "1964-03-01T02:00:00Z" (-184197600) transition_time 0x2c2-0x2c9.7 (8)
|
||||
0x2c0| ff ff ff ff f6 c0| ......| [15]: "1965-01-31T03:00:00Z" (-155163600) transition_time 0x2ca-0x2d1.7 (8)
|
||||
0x2d0|64 30 |d0 |
|
||||
0x2d0| ff ff ff ff f7 0e 1e a0 | ........ | [16]: "1965-03-31T02:00:00Z" (-150069600) transition_time 0x2d2-0x2d9.7 (8)
|
||||
0x2d0| ff ff ff ff f8 51| .....Q| [17]: "1965-12-01T03:00:00Z" (-128898000) transition_time 0x2da-0x2e1.7 (8)
|
||||
0x2e0|2c 30 |,0 |
|
||||
0x2e0| ff ff ff ff f8 c7 c5 20 | ....... | [18]: "1966-03-01T02:00:00Z" (-121125600) transition_time 0x2e2-0x2e9.7 (8)
|
||||
0x2e0| ff ff ff ff fa 0a| ......| [19]: "1966-11-01T03:00:00Z" (-99954000) transition_time 0x2ea-0x2f1.7 (8)
|
||||
0x2f0|d2 b0 |.. |
|
||||
0x2f0| ff ff ff ff fa a8 f8 a0 | ........ | [20]: "1967-03-01T02:00:00Z" (-89589600) transition_time 0x2f2-0x2f9.7 (8)
|
||||
0x2f0| ff ff ff ff fb ec| ......| [21]: "1967-11-01T03:00:00Z" (-68418000) transition_time 0x2fa-0x301.7 (8)
|
||||
0x300|06 30 |.0 |
|
||||
0x300| ff ff ff ff fc 8b 7d a0 | ......}. | [22]: "1968-03-01T02:00:00Z" (-57967200) transition_time 0x302-0x309.7 (8)
|
||||
0x300| 00 00 00 00 1d c9| ......| [23]: "1985-11-02T03:00:13Z" (499748413) transition_time 0x30a-0x311.7 (8)
|
||||
0x310|8e 3d |.= |
|
||||
0x310| 00 00 00 00 1e 78 d7 ad | .....x.. | [24]: "1986-03-15T02:00:13Z" (511236013) transition_time 0x312-0x319.7 (8)
|
||||
0x310| 00 00 00 00 1f a0| ......| [25]: "1986-10-25T03:00:13Z" (530593213) transition_time 0x31a-0x321.7 (8)
|
||||
0x320|35 bd |5. |
|
||||
0x320| 00 00 00 00 20 33 cf ad | .... 3.. | [26]: "1987-02-14T02:00:13Z" (540266413) transition_time 0x322-0x329.7 (8)
|
||||
0x320| 00 00 00 00 21 81| ....!.| [27]: "1987-10-25T03:00:13Z" (562129213) transition_time 0x32a-0x331.7 (8)
|
||||
0x330|69 3d |i= |
|
||||
0x330| 00 00 00 00 22 0b c8 ae | ...."... | [28]: "1988-02-07T02:00:14Z" (571197614) transition_time 0x332-0x339.7 (8)
|
||||
0x330| 00 00 00 00 23 58| ....#X| [29]: "1988-10-16T03:00:14Z" (592974014) transition_time 0x33a-0x341.7 (8)
|
||||
0x340|10 be |.. |
|
||||
0x340| 00 00 00 00 23 e2 70 2e | ....#.p. | [30]: "1989-01-29T02:00:14Z" (602042414) transition_time 0x342-0x349.7 (8)
|
||||
0x340| 00 00 00 00 25 37| ....%7| [31]: "1989-10-15T03:00:14Z" (624423614) transition_time 0x34a-0x351.7 (8)
|
||||
0x350|f2 be |.. |
|
||||
0x350| 00 00 00 00 25 d4 c7 2f | ....%../ | [32]: "1990-02-11T02:00:15Z" (634701615) transition_time 0x352-0x359.7 (8)
|
||||
0x350| 00 00 00 00 30 80| ....0.| [33]: "1995-10-15T03:00:19Z" (813726019) transition_time 0x35a-0x361.7 (8)
|
||||
0x360|79 43 |yC |
|
||||
0x360| 00 00 00 00 31 1d 4d b4 | ....1.M. | [34]: "1996-02-11T02:00:20Z" (824004020) transition_time 0x362-0x369.7 (8)
|
||||
0x360| 00 00 00 00 32 57| ....2W| [35]: "1996-10-06T03:00:20Z" (844570820) transition_time 0x36a-0x371.7 (8)
|
||||
0x370|20 c4 | . |
|
||||
0x370| 00 00 00 00 33 06 6a 34 | ....3.j4 | [36]: "1997-02-16T02:00:20Z" (856058420) transition_time 0x372-0x379.7 (8)
|
||||
0x370| 00 00 00 00 34 38| ....48| [37]: "1997-10-06T03:00:21Z" (876106821) transition_time 0x37a-0x381.7 (8)
|
||||
0x380|54 45 |TE |
|
||||
0x380| 00 00 00 00 34 f8 c1 35 | ....4..5 | [38]: "1998-03-01T02:00:21Z" (888717621) transition_time 0x382-0x389.7 (8)
|
||||
0x380| 00 00 00 00 36 20| ....6 | [39]: "1998-10-11T03:00:21Z" (908074821) transition_time 0x38a-0x391.7 (8)
|
||||
0x390|1f 45 |.E |
|
||||
0x390| 00 00 00 00 36 cf 68 b6 | ....6.h. | [40]: "1999-02-21T02:00:22Z" (919562422) transition_time 0x392-0x399.7 (8)
|
||||
0x390| 00 00 00 00 37 f6| ....7.| [41]: "1999-10-03T03:00:22Z" (938919622) transition_time 0x39a-0x3a1.7 (8)
|
||||
0x3a0|c6 c6 |.. |
|
||||
0x3a0| 00 00 00 00 38 b8 85 36 | ....8..6 | [42]: "2000-02-27T02:00:22Z" (951616822) transition_time 0x3a2-0x3a9.7 (8)
|
||||
0x3a0| 00 00 00 00 39 df| ....9.| [43]: "2000-10-08T03:00:22Z" (970974022) transition_time 0x3aa-0x3b1.7 (8)
|
||||
0x3b0|e3 46 |.F |
|
||||
0x3b0| 00 00 00 00 3a 8f 2c b6 | ....:.,. | [44]: "2001-02-18T02:00:22Z" (982461622) transition_time 0x3b2-0x3b9.7 (8)
|
||||
0x3b0| 00 00 00 00 3b c8| ....;.| [45]: "2001-10-14T03:00:22Z" (1003028422) transition_time 0x3ba-0x3c1.7 (8)
|
||||
0x3c0|ff c6 |.. |
|
||||
0x3c0| 00 00 00 00 3c 6f 0e b6 | ....<o.. | [46]: "2002-02-17T02:00:22Z" (1013911222) transition_time 0x3c2-0x3c9.7 (8)
|
||||
0x3c0| 00 00 00 00 3d c4| ....=.| [47]: "2002-11-03T03:00:22Z" (1036292422) transition_time 0x3ca-0x3d1.7 (8)
|
||||
0x3d0|91 46 |.F |
|
||||
0x3d0| 00 00 00 00 3e 4e f0 b6 | ....>N.. | [48]: "2003-02-16T02:00:22Z" (1045360822) transition_time 0x3d2-0x3d9.7 (8)
|
||||
0x3d0| 00 00 00 00 50 83| ....P.| [49]: "2012-10-21T03:00:25Z" (1350788425) transition_time 0x3da-0x3e1.7 (8)
|
||||
0x3e0|65 49 |eI |
|
||||
0x3e0| 00 00 00 00 51 20 39 b9 | ....Q 9. | [50]: "2013-02-17T02:00:25Z" (1361066425) transition_time 0x3e2-0x3e9.7 (8)
|
||||
0x3e0| 00 00 00 00 64 9b| ....d.| [51]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x3ea-0x3f1.7 (8)
|
||||
0x3f0|78 1b |x. |
|
||||
| | | transition_types[0:52]: 0x3f2-0x425.7 (52)
|
||||
0x3f0| 02 | . | [0]: 2 transition_type 0x3f2-0x3f2.7 (1)
|
||||
0x3f0| 01 | . | [1]: 1 transition_type 0x3f3-0x3f3.7 (1)
|
||||
0x3f0| 02 | . | [2]: 2 transition_type 0x3f4-0x3f4.7 (1)
|
||||
0x3f0| 01 | . | [3]: 1 transition_type 0x3f5-0x3f5.7 (1)
|
||||
0x3f0| 02 | . | [4]: 2 transition_type 0x3f6-0x3f6.7 (1)
|
||||
0x3f0| 01 | . | [5]: 1 transition_type 0x3f7-0x3f7.7 (1)
|
||||
0x3f0| 02 | . | [6]: 2 transition_type 0x3f8-0x3f8.7 (1)
|
||||
0x3f0| 01 | . | [7]: 1 transition_type 0x3f9-0x3f9.7 (1)
|
||||
0x3f0| 02 | . | [8]: 2 transition_type 0x3fa-0x3fa.7 (1)
|
||||
0x3f0| 01 | . | [9]: 1 transition_type 0x3fb-0x3fb.7 (1)
|
||||
0x3f0| 02 | . | [10]: 2 transition_type 0x3fc-0x3fc.7 (1)
|
||||
0x3f0| 01 | . | [11]: 1 transition_type 0x3fd-0x3fd.7 (1)
|
||||
0x3f0| 02 | . | [12]: 2 transition_type 0x3fe-0x3fe.7 (1)
|
||||
0x3f0| 01| .| [13]: 1 transition_type 0x3ff-0x3ff.7 (1)
|
||||
0x400|02 |. | [14]: 2 transition_type 0x400-0x400.7 (1)
|
||||
0x400| 01 | . | [15]: 1 transition_type 0x401-0x401.7 (1)
|
||||
0x400| 02 | . | [16]: 2 transition_type 0x402-0x402.7 (1)
|
||||
0x400| 01 | . | [17]: 1 transition_type 0x403-0x403.7 (1)
|
||||
0x400| 02 | . | [18]: 2 transition_type 0x404-0x404.7 (1)
|
||||
0x400| 01 | . | [19]: 1 transition_type 0x405-0x405.7 (1)
|
||||
0x400| 02 | . | [20]: 2 transition_type 0x406-0x406.7 (1)
|
||||
0x400| 01 | . | [21]: 1 transition_type 0x407-0x407.7 (1)
|
||||
0x400| 02 | . | [22]: 2 transition_type 0x408-0x408.7 (1)
|
||||
0x400| 01 | . | [23]: 1 transition_type 0x409-0x409.7 (1)
|
||||
0x400| 02 | . | [24]: 2 transition_type 0x40a-0x40a.7 (1)
|
||||
0x400| 01 | . | [25]: 1 transition_type 0x40b-0x40b.7 (1)
|
||||
0x400| 02 | . | [26]: 2 transition_type 0x40c-0x40c.7 (1)
|
||||
0x400| 01 | . | [27]: 1 transition_type 0x40d-0x40d.7 (1)
|
||||
0x400| 02 | . | [28]: 2 transition_type 0x40e-0x40e.7 (1)
|
||||
0x400| 01| .| [29]: 1 transition_type 0x40f-0x40f.7 (1)
|
||||
0x410|02 |. | [30]: 2 transition_type 0x410-0x410.7 (1)
|
||||
0x410| 01 | . | [31]: 1 transition_type 0x411-0x411.7 (1)
|
||||
0x410| 02 | . | [32]: 2 transition_type 0x412-0x412.7 (1)
|
||||
0x410| 01 | . | [33]: 1 transition_type 0x413-0x413.7 (1)
|
||||
0x410| 02 | . | [34]: 2 transition_type 0x414-0x414.7 (1)
|
||||
0x410| 01 | . | [35]: 1 transition_type 0x415-0x415.7 (1)
|
||||
0x410| 02 | . | [36]: 2 transition_type 0x416-0x416.7 (1)
|
||||
0x410| 01 | . | [37]: 1 transition_type 0x417-0x417.7 (1)
|
||||
0x410| 02 | . | [38]: 2 transition_type 0x418-0x418.7 (1)
|
||||
0x410| 01 | . | [39]: 1 transition_type 0x419-0x419.7 (1)
|
||||
0x410| 02 | . | [40]: 2 transition_type 0x41a-0x41a.7 (1)
|
||||
0x410| 01 | . | [41]: 1 transition_type 0x41b-0x41b.7 (1)
|
||||
0x410| 02 | . | [42]: 2 transition_type 0x41c-0x41c.7 (1)
|
||||
0x410| 01 | . | [43]: 1 transition_type 0x41d-0x41d.7 (1)
|
||||
0x410| 02 | . | [44]: 2 transition_type 0x41e-0x41e.7 (1)
|
||||
0x410| 01| .| [45]: 1 transition_type 0x41f-0x41f.7 (1)
|
||||
0x420|02 |. | [46]: 2 transition_type 0x420-0x420.7 (1)
|
||||
0x420| 01 | . | [47]: 1 transition_type 0x421-0x421.7 (1)
|
||||
0x420| 02 | . | [48]: 2 transition_type 0x422-0x422.7 (1)
|
||||
0x420| 01 | . | [49]: 1 transition_type 0x423-0x423.7 (1)
|
||||
0x420| 02 | . | [50]: 2 transition_type 0x424-0x424.7 (1)
|
||||
0x420| 02 | . | [51]: 2 transition_type 0x425-0x425.7 (1)
|
||||
| | | local_time_type_records[0:3]: 0x426-0x437.7 (18)
|
||||
| | | [0]{}: local_time_type 0x426-0x42b.7 (6)
|
||||
0x420| ff ff d2 d0 | .... | utoff: -11568 (valid) 0x426-0x429.7 (4)
|
||||
0x420| 00 | . | dst: 0 (valid) 0x42a-0x42a.7 (1)
|
||||
0x420| 00 | . | idx: 0 (valid) 0x42b-0x42b.7 (1)
|
||||
| | | [1]{}: local_time_type 0x42c-0x431.7 (6)
|
||||
0x420| ff ff e3 e0| ....| utoff: -7200 (valid) 0x42c-0x42f.7 (4)
|
||||
0x430|01 |. | dst: 1 (valid) 0x430-0x430.7 (1)
|
||||
0x430| 04 | . | idx: 4 (valid) 0x431-0x431.7 (1)
|
||||
| | | [2]{}: local_time_type 0x432-0x437.7 (6)
|
||||
0x430| ff ff d5 d0 | .... | utoff: -10800 (valid) 0x432-0x435.7 (4)
|
||||
0x430| 00 | . | dst: 0 (valid) 0x436-0x436.7 (1)
|
||||
0x430| 08 | . | idx: 8 (valid) 0x437-0x437.7 (1)
|
||||
| | | time_zone_designations[0:3]: 0x438-0x443.7 (12)
|
||||
0x430| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x438-0x43b.7 (4)
|
||||
0x430| 2d 30 32 00| -02.| [1]: "-02" time_zone_designation 0x43c-0x43f.7 (4)
|
||||
0x440|2d 30 33 00 |-03. | [2]: "-03" time_zone_designation 0x440-0x443.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x444-0x587.7 (324)
|
||||
| | | [0]{}: leap_second_record 0x444-0x44f.7 (12)
|
||||
0x440| 00 00 00 00 04 b2 58 00 | ......X. | occur: "1972-07-01T00:00:00Z" (78796800) 0x444-0x44b.7 (8)
|
||||
0x440| 00 00 00 01| ....| corr: 1 0x44c-0x44f.7 (4)
|
||||
| | | [1]{}: leap_second_record 0x450-0x45b.7 (12)
|
||||
0x450|00 00 00 00 05 a4 ec 01 |........ | occur: "1973-01-01T00:00:01Z" (94694401) 0x450-0x457.7 (8)
|
||||
0x450| 00 00 00 02 | .... | corr: 2 0x458-0x45b.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x45c-0x467.7 (12)
|
||||
0x450| 00 00 00 00| ....| occur: "1974-01-01T00:00:02Z" (126230402) 0x45c-0x463.7 (8)
|
||||
0x460|07 86 1f 82 |.... |
|
||||
0x460| 00 00 00 03 | .... | corr: 3 0x464-0x467.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x468-0x473.7 (12)
|
||||
0x460| 00 00 00 00 09 67 53 03| .....gS.| occur: "1975-01-01T00:00:03Z" (157766403) 0x468-0x46f.7 (8)
|
||||
0x470|00 00 00 04 |.... | corr: 4 0x470-0x473.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x474-0x47f.7 (12)
|
||||
0x470| 00 00 00 00 0b 48 86 84 | .....H.. | occur: "1976-01-01T00:00:04Z" (189302404) 0x474-0x47b.7 (8)
|
||||
0x470| 00 00 00 05| ....| corr: 5 0x47c-0x47f.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x480-0x48b.7 (12)
|
||||
0x480|00 00 00 00 0d 2b 0b 85 |.....+.. | occur: "1977-01-01T00:00:05Z" (220924805) 0x480-0x487.7 (8)
|
||||
0x480| 00 00 00 06 | .... | corr: 6 0x488-0x48b.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x48c-0x497.7 (12)
|
||||
0x480| 00 00 00 00| ....| occur: "1978-01-01T00:00:06Z" (252460806) 0x48c-0x493.7 (8)
|
||||
0x490|0f 0c 3f 06 |..?. |
|
||||
0x490| 00 00 00 07 | .... | corr: 7 0x494-0x497.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x498-0x4a3.7 (12)
|
||||
0x490| 00 00 00 00 10 ed 72 87| ......r.| occur: "1979-01-01T00:00:07Z" (283996807) 0x498-0x49f.7 (8)
|
||||
0x4a0|00 00 00 08 |.... | corr: 8 0x4a0-0x4a3.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x4a4-0x4af.7 (12)
|
||||
0x4a0| 00 00 00 00 12 ce a6 08 | ........ | occur: "1980-01-01T00:00:08Z" (315532808) 0x4a4-0x4ab.7 (8)
|
||||
0x4a0| 00 00 00 09| ....| corr: 9 0x4ac-0x4af.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x4b0-0x4bb.7 (12)
|
||||
0x4b0|00 00 00 00 15 9f ca 89 |........ | occur: "1981-07-01T00:00:09Z" (362793609) 0x4b0-0x4b7.7 (8)
|
||||
0x4b0| 00 00 00 0a | .... | corr: 10 0x4b8-0x4bb.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x4bc-0x4c7.7 (12)
|
||||
0x4b0| 00 00 00 00| ....| occur: "1982-07-01T00:00:10Z" (394329610) 0x4bc-0x4c3.7 (8)
|
||||
0x4c0|17 80 fe 0a |.... |
|
||||
0x4c0| 00 00 00 0b | .... | corr: 11 0x4c4-0x4c7.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x4c8-0x4d3.7 (12)
|
||||
0x4c0| 00 00 00 00 19 62 31 8b| .....b1.| occur: "1983-07-01T00:00:11Z" (425865611) 0x4c8-0x4cf.7 (8)
|
||||
0x4d0|00 00 00 0c |.... | corr: 12 0x4d0-0x4d3.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x4d4-0x4df.7 (12)
|
||||
0x4d0| 00 00 00 00 1d 25 ea 0c | .....%.. | occur: "1985-07-01T00:00:12Z" (489024012) 0x4d4-0x4db.7 (8)
|
||||
0x4d0| 00 00 00 0d| ....| corr: 13 0x4dc-0x4df.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x4e0-0x4eb.7 (12)
|
||||
0x4e0|00 00 00 00 21 da e5 0d |....!... | occur: "1988-01-01T00:00:13Z" (567993613) 0x4e0-0x4e7.7 (8)
|
||||
0x4e0| 00 00 00 0e | .... | corr: 14 0x4e8-0x4eb.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x4ec-0x4f7.7 (12)
|
||||
0x4e0| 00 00 00 00| ....| occur: "1990-01-01T00:00:14Z" (631152014) 0x4ec-0x4f3.7 (8)
|
||||
0x4f0|25 9e 9d 8e |%... |
|
||||
0x4f0| 00 00 00 0f | .... | corr: 15 0x4f4-0x4f7.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x4f8-0x503.7 (12)
|
||||
0x4f0| 00 00 00 00 27 7f d1 0f| ....'...| occur: "1991-01-01T00:00:15Z" (662688015) 0x4f8-0x4ff.7 (8)
|
||||
0x500|00 00 00 10 |.... | corr: 16 0x500-0x503.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x504-0x50f.7 (12)
|
||||
0x500| 00 00 00 00 2a 50 f5 90 | ....*P.. | occur: "1992-07-01T00:00:16Z" (709948816) 0x504-0x50b.7 (8)
|
||||
0x500| 00 00 00 11| ....| corr: 17 0x50c-0x50f.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x510-0x51b.7 (12)
|
||||
0x510|00 00 00 00 2c 32 29 11 |....,2). | occur: "1993-07-01T00:00:17Z" (741484817) 0x510-0x517.7 (8)
|
||||
0x510| 00 00 00 12 | .... | corr: 18 0x518-0x51b.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x51c-0x527.7 (12)
|
||||
0x510| 00 00 00 00| ....| occur: "1994-07-01T00:00:18Z" (773020818) 0x51c-0x523.7 (8)
|
||||
0x520|2e 13 5c 92 |..\. |
|
||||
0x520| 00 00 00 13 | .... | corr: 19 0x524-0x527.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x528-0x533.7 (12)
|
||||
0x520| 00 00 00 00 30 e7 24 13| ....0.$.| occur: "1996-01-01T00:00:19Z" (820454419) 0x528-0x52f.7 (8)
|
||||
0x530|00 00 00 14 |.... | corr: 20 0x530-0x533.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x534-0x53f.7 (12)
|
||||
0x530| 00 00 00 00 33 b8 48 94 | ....3.H. | occur: "1997-07-01T00:00:20Z" (867715220) 0x534-0x53b.7 (8)
|
||||
0x530| 00 00 00 15| ....| corr: 21 0x53c-0x53f.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x540-0x54b.7 (12)
|
||||
0x540|00 00 00 00 36 8c 10 15 |....6... | occur: "1999-01-01T00:00:21Z" (915148821) 0x540-0x547.7 (8)
|
||||
0x540| 00 00 00 16 | .... | corr: 22 0x548-0x54b.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x54c-0x557.7 (12)
|
||||
0x540| 00 00 00 00| ....| occur: "2006-01-01T00:00:22Z" (1136073622) 0x54c-0x553.7 (8)
|
||||
0x550|43 b7 1b 96 |C... |
|
||||
0x550| 00 00 00 17 | .... | corr: 23 0x554-0x557.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x558-0x563.7 (12)
|
||||
0x550| 00 00 00 00 49 5c 07 97| ....I\..| occur: "2009-01-01T00:00:23Z" (1230768023) 0x558-0x55f.7 (8)
|
||||
0x560|00 00 00 18 |.... | corr: 24 0x560-0x563.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x564-0x56f.7 (12)
|
||||
0x560| 00 00 00 00 4f ef 93 18 | ....O... | occur: "2012-07-01T00:00:24Z" (1341100824) 0x564-0x56b.7 (8)
|
||||
0x560| 00 00 00 19| ....| corr: 25 0x56c-0x56f.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x570-0x57b.7 (12)
|
||||
0x570|00 00 00 00 55 93 2d 99 |....U.-. | occur: "2015-07-01T00:00:25Z" (1435708825) 0x570-0x577.7 (8)
|
||||
0x570| 00 00 00 1a | .... | corr: 26 0x578-0x57b.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x57c-0x587.7 (12)
|
||||
0x570| 00 00 00 00| ....| occur: "2017-01-01T00:00:26Z" (1483228826) 0x57c-0x583.7 (8)
|
||||
0x580|58 68 46 9a |XhF. |
|
||||
0x580| 00 00 00 1b | .... | corr: 27 0x584-0x587.7 (4)
|
||||
| | | standard_wall_indicators[0:0]: 0x588-NA (0)
|
||||
| | | ut_local_indicators[0:0]: 0x588-NA (0)
|
||||
| | | footer{}: 0x588-0x589.7 (2)
|
||||
0x580| 0a | . | nl1: 10 (valid) 0x588-0x588.7 (1)
|
||||
| | | tz_string: "" 0x589-NA (0)
|
||||
0x580| 0a| | .| | nl2: 10 (valid) 0x589-0x589.7 (1)
|
BIN
format/tzif/testdata/Ashgabat
vendored
Normal file
BIN
format/tzif/testdata/Ashgabat
vendored
Normal file
Binary file not shown.
448
format/tzif/testdata/Ashgabat.fqtest
vendored
Normal file
448
format/tzif/testdata/Ashgabat.fqtest
vendored
Normal file
@ -0,0 +1,448 @@
|
||||
$ fq -d tzif dv Ashgabat
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: Ashgabat (tzif) 0x0-0x47f.7 (1152)
|
||||
| | | v1header{}: 0x0-0x2b.7 (44)
|
||||
0x000|54 5a 69 66 |TZif | magic: 0x545a6966 (valid) 0x0-0x3.7 (4)
|
||||
0x000| 32 | 2 | ver: "2" (0x32) (valid) 0x4-0x4.7 (1)
|
||||
0x000| 00 00 00 00 00 00 00 00 00 00 00| ...........| reserved: raw bits 0x5-0x13.7 (15)
|
||||
0x010|00 00 00 00 |.... |
|
||||
0x010| 00 00 00 00 | .... | isutcnt: 0 0x14-0x17.7 (4)
|
||||
0x010| 00 00 00 09 | .... | isstdcnt: 9 0x18-0x1b.7 (4)
|
||||
0x010| 00 00 00 1b| ....| leapcnt: 27 0x1c-0x1f.7 (4)
|
||||
0x020|00 00 00 1a |.... | timecnt: 26 0x20-0x23.7 (4)
|
||||
0x020| 00 00 00 09 | .... | typecnt: 9 0x24-0x27.7 (4)
|
||||
0x020| 00 00 00 10 | .... | charcnt: 16 0x28-0x2b.7 (4)
|
||||
| | | v1datablock{}: 0x2c-0x1d4.7 (425)
|
||||
| | | transition_times[0:26]: 0x2c-0x93.7 (104)
|
||||
0x020| aa 19 8d 44| ...D| [0]: "1924-05-01T20:06:28Z" (-1441166012) transition_time 0x2c-0x2f.7 (4)
|
||||
0x030|b5 a3 fd 40 |...@ | [1]: "1930-06-20T20:00:00Z" (-1247544000) transition_time 0x30-0x33.7 (4)
|
||||
0x030| 15 27 8b b9 | .'.. | [2]: "1981-03-31T19:00:09Z" (354913209) transition_time 0x34-0x37.7 (4)
|
||||
0x030| 16 18 c0 2a | ...* | [3]: "1981-09-30T18:00:10Z" (370720810) transition_time 0x38-0x3b.7 (4)
|
||||
0x030| 17 08 bf 3a| ...:| [4]: "1982-03-31T19:00:10Z" (386449210) transition_time 0x3c-0x3f.7 (4)
|
||||
0x040|17 f9 f3 ab |.... | [5]: "1982-09-30T18:00:11Z" (402256811) transition_time 0x40-0x43.7 (4)
|
||||
0x040| 18 e9 f2 bb | .... | [6]: "1983-03-31T19:00:11Z" (417985211) transition_time 0x44-0x47.7 (4)
|
||||
0x040| 19 db 27 2c | ..', | [7]: "1983-09-30T18:00:12Z" (433792812) transition_time 0x48-0x4b.7 (4)
|
||||
0x040| 1a cc 77 bc| ..w.| [8]: "1984-03-31T19:00:12Z" (449607612) transition_time 0x4c-0x4f.7 (4)
|
||||
0x050|1b bc 84 dc |.... | [9]: "1984-09-29T21:00:12Z" (465339612) transition_time 0x50-0x53.7 (4)
|
||||
0x050| 1c ac 75 dc | ..u. | [10]: "1985-03-30T21:00:12Z" (481064412) transition_time 0x54-0x57.7 (4)
|
||||
0x050| 1d 9c 66 dd | ..f. | [11]: "1985-09-28T21:00:13Z" (496789213) transition_time 0x58-0x5b.7 (4)
|
||||
0x050| 1e 8c 57 dd| ..W.| [12]: "1986-03-29T21:00:13Z" (512514013) transition_time 0x5c-0x5f.7 (4)
|
||||
0x060|1f 7c 48 dd |.|H. | [13]: "1986-09-27T21:00:13Z" (528238813) transition_time 0x60-0x63.7 (4)
|
||||
0x060| 20 6c 39 dd | l9. | [14]: "1987-03-28T21:00:13Z" (543963613) transition_time 0x64-0x67.7 (4)
|
||||
0x060| 21 5c 2a dd | !\*. | [15]: "1987-09-26T21:00:13Z" (559688413) transition_time 0x68-0x6b.7 (4)
|
||||
0x060| 22 4c 1b de| "L..| [16]: "1988-03-26T21:00:14Z" (575413214) transition_time 0x6c-0x6f.7 (4)
|
||||
0x070|23 3c 0c de |#<.. | [17]: "1988-09-24T21:00:14Z" (591138014) transition_time 0x70-0x73.7 (4)
|
||||
0x070| 24 2b fd de | $+.. | [18]: "1989-03-25T21:00:14Z" (606862814) transition_time 0x74-0x77.7 (4)
|
||||
0x070| 25 1b ee de | %... | [19]: "1989-09-23T21:00:14Z" (622587614) transition_time 0x78-0x7b.7 (4)
|
||||
0x070| 26 0b df df| &...| [20]: "1990-03-24T21:00:15Z" (638312415) transition_time 0x7c-0x7f.7 (4)
|
||||
0x080|27 05 0b 5f |'.._ | [21]: "1990-09-29T21:00:15Z" (654642015) transition_time 0x80-0x83.7 (4)
|
||||
0x080| 27 f4 fc 60 | '..` | [22]: "1991-03-30T21:00:16Z" (670366816) transition_time 0x84-0x87.7 (4)
|
||||
0x080| 28 e4 fb 70 | (..p | [23]: "1991-09-28T22:00:16Z" (686095216) transition_time 0x88-0x8b.7 (4)
|
||||
0x080| 29 78 a3 70| )x.p| [24]: "1992-01-18T22:00:16Z" (695772016) transition_time 0x8c-0x8f.7 (4)
|
||||
0x090|64 9b 78 1b |d.x. | [25]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x90-0x93.7 (4)
|
||||
| | | transition_types[0:26]: 0x94-0xad.7 (26)
|
||||
0x090| 01 | . | [0]: 1 transition_type 0x94-0x94.7 (1)
|
||||
0x090| 03 | . | [1]: 3 transition_type 0x95-0x95.7 (1)
|
||||
0x090| 02 | . | [2]: 2 transition_type 0x96-0x96.7 (1)
|
||||
0x090| 03 | . | [3]: 3 transition_type 0x97-0x97.7 (1)
|
||||
0x090| 02 | . | [4]: 2 transition_type 0x98-0x98.7 (1)
|
||||
0x090| 03 | . | [5]: 3 transition_type 0x99-0x99.7 (1)
|
||||
0x090| 02 | . | [6]: 2 transition_type 0x9a-0x9a.7 (1)
|
||||
0x090| 03 | . | [7]: 3 transition_type 0x9b-0x9b.7 (1)
|
||||
0x090| 02 | . | [8]: 2 transition_type 0x9c-0x9c.7 (1)
|
||||
0x090| 04 | . | [9]: 4 transition_type 0x9d-0x9d.7 (1)
|
||||
0x090| 05 | . | [10]: 5 transition_type 0x9e-0x9e.7 (1)
|
||||
0x090| 04| .| [11]: 4 transition_type 0x9f-0x9f.7 (1)
|
||||
0x0a0|05 |. | [12]: 5 transition_type 0xa0-0xa0.7 (1)
|
||||
0x0a0| 04 | . | [13]: 4 transition_type 0xa1-0xa1.7 (1)
|
||||
0x0a0| 05 | . | [14]: 5 transition_type 0xa2-0xa2.7 (1)
|
||||
0x0a0| 04 | . | [15]: 4 transition_type 0xa3-0xa3.7 (1)
|
||||
0x0a0| 05 | . | [16]: 5 transition_type 0xa4-0xa4.7 (1)
|
||||
0x0a0| 04 | . | [17]: 4 transition_type 0xa5-0xa5.7 (1)
|
||||
0x0a0| 05 | . | [18]: 5 transition_type 0xa6-0xa6.7 (1)
|
||||
0x0a0| 04 | . | [19]: 4 transition_type 0xa7-0xa7.7 (1)
|
||||
0x0a0| 05 | . | [20]: 5 transition_type 0xa8-0xa8.7 (1)
|
||||
0x0a0| 04 | . | [21]: 4 transition_type 0xa9-0xa9.7 (1)
|
||||
0x0a0| 06 | . | [22]: 6 transition_type 0xaa-0xaa.7 (1)
|
||||
0x0a0| 07 | . | [23]: 7 transition_type 0xab-0xab.7 (1)
|
||||
0x0a0| 03 | . | [24]: 3 transition_type 0xac-0xac.7 (1)
|
||||
0x0a0| 03 | . | [25]: 3 transition_type 0xad-0xad.7 (1)
|
||||
| | | local_time_type_records[0:9]: 0xae-0xe3.7 (54)
|
||||
| | | [0]{}: local_time_type 0xae-0xb3.7 (6)
|
||||
0x0a0| 00 00| ..| utoff: 14012 (valid) 0xae-0xb1.7 (4)
|
||||
0x0b0|36 bc |6. |
|
||||
0x0b0| 00 | . | dst: 0 (valid) 0xb2-0xb2.7 (1)
|
||||
0x0b0| 00 | . | idx: 0 (valid) 0xb3-0xb3.7 (1)
|
||||
| | | [1]{}: local_time_type 0xb4-0xb9.7 (6)
|
||||
0x0b0| 00 00 38 40 | ..8@ | utoff: 14400 (valid) 0xb4-0xb7.7 (4)
|
||||
0x0b0| 00 | . | dst: 0 (valid) 0xb8-0xb8.7 (1)
|
||||
0x0b0| 04 | . | idx: 4 (valid) 0xb9-0xb9.7 (1)
|
||||
| | | [2]{}: local_time_type 0xba-0xbf.7 (6)
|
||||
0x0b0| 00 00 54 60 | ..T` | utoff: 21600 (valid) 0xba-0xbd.7 (4)
|
||||
0x0b0| 01 | . | dst: 1 (valid) 0xbe-0xbe.7 (1)
|
||||
0x0b0| 08| .| idx: 8 (valid) 0xbf-0xbf.7 (1)
|
||||
| | | [3]{}: local_time_type 0xc0-0xc5.7 (6)
|
||||
0x0c0|00 00 46 50 |..FP | utoff: 18000 (valid) 0xc0-0xc3.7 (4)
|
||||
0x0c0| 00 | . | dst: 0 (valid) 0xc4-0xc4.7 (1)
|
||||
0x0c0| 0c | . | idx: 12 (valid) 0xc5-0xc5.7 (1)
|
||||
| | | [4]{}: local_time_type 0xc6-0xcb.7 (6)
|
||||
0x0c0| 00 00 46 50 | ..FP | utoff: 18000 (valid) 0xc6-0xc9.7 (4)
|
||||
0x0c0| 00 | . | dst: 0 (valid) 0xca-0xca.7 (1)
|
||||
0x0c0| 0c | . | idx: 12 (valid) 0xcb-0xcb.7 (1)
|
||||
| | | [5]{}: local_time_type 0xcc-0xd1.7 (6)
|
||||
0x0c0| 00 00 54 60| ..T`| utoff: 21600 (valid) 0xcc-0xcf.7 (4)
|
||||
0x0d0|01 |. | dst: 1 (valid) 0xd0-0xd0.7 (1)
|
||||
0x0d0| 08 | . | idx: 8 (valid) 0xd1-0xd1.7 (1)
|
||||
| | | [6]{}: local_time_type 0xd2-0xd7.7 (6)
|
||||
0x0d0| 00 00 46 50 | ..FP | utoff: 18000 (valid) 0xd2-0xd5.7 (4)
|
||||
0x0d0| 01 | . | dst: 1 (valid) 0xd6-0xd6.7 (1)
|
||||
0x0d0| 0c | . | idx: 12 (valid) 0xd7-0xd7.7 (1)
|
||||
| | | [7]{}: local_time_type 0xd8-0xdd.7 (6)
|
||||
0x0d0| 00 00 38 40 | ..8@ | utoff: 14400 (valid) 0xd8-0xdb.7 (4)
|
||||
0x0d0| 00 | . | dst: 0 (valid) 0xdc-0xdc.7 (1)
|
||||
0x0d0| 04 | . | idx: 4 (valid) 0xdd-0xdd.7 (1)
|
||||
| | | [8]{}: local_time_type 0xde-0xe3.7 (6)
|
||||
0x0d0| 00 00| ..| utoff: 18000 (valid) 0xde-0xe1.7 (4)
|
||||
0x0e0|46 50 |FP |
|
||||
0x0e0| 00 | . | dst: 0 (valid) 0xe2-0xe2.7 (1)
|
||||
0x0e0| 0c | . | idx: 12 (valid) 0xe3-0xe3.7 (1)
|
||||
| | | time_zone_designations[0:4]: 0xe4-0xf3.7 (16)
|
||||
0x0e0| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0xe4-0xe7.7 (4)
|
||||
0x0e0| 2b 30 34 00 | +04. | [1]: "+04" time_zone_designation 0xe8-0xeb.7 (4)
|
||||
0x0e0| 2b 30 36 00| +06.| [2]: "+06" time_zone_designation 0xec-0xef.7 (4)
|
||||
0x0f0|2b 30 35 00 |+05. | [3]: "+05" time_zone_designation 0xf0-0xf3.7 (4)
|
||||
| | | leap_second_records[0:27]: 0xf4-0x1cb.7 (216)
|
||||
| | | [0]{}: leap_second_record 0xf4-0xfb.7 (8)
|
||||
0x0f0| 04 b2 58 00 | ..X. | occur: "1972-07-01T00:00:00Z" (78796800) 0xf4-0xf7.7 (4)
|
||||
0x0f0| 00 00 00 01 | .... | corr: 1 0xf8-0xfb.7 (4)
|
||||
| | | [1]{}: leap_second_record 0xfc-0x103.7 (8)
|
||||
0x0f0| 05 a4 ec 01| ....| occur: "1973-01-01T00:00:01Z" (94694401) 0xfc-0xff.7 (4)
|
||||
0x100|00 00 00 02 |.... | corr: 2 0x100-0x103.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x104-0x10b.7 (8)
|
||||
0x100| 07 86 1f 82 | .... | occur: "1974-01-01T00:00:02Z" (126230402) 0x104-0x107.7 (4)
|
||||
0x100| 00 00 00 03 | .... | corr: 3 0x108-0x10b.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x10c-0x113.7 (8)
|
||||
0x100| 09 67 53 03| .gS.| occur: "1975-01-01T00:00:03Z" (157766403) 0x10c-0x10f.7 (4)
|
||||
0x110|00 00 00 04 |.... | corr: 4 0x110-0x113.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x114-0x11b.7 (8)
|
||||
0x110| 0b 48 86 84 | .H.. | occur: "1976-01-01T00:00:04Z" (189302404) 0x114-0x117.7 (4)
|
||||
0x110| 00 00 00 05 | .... | corr: 5 0x118-0x11b.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x11c-0x123.7 (8)
|
||||
0x110| 0d 2b 0b 85| .+..| occur: "1977-01-01T00:00:05Z" (220924805) 0x11c-0x11f.7 (4)
|
||||
0x120|00 00 00 06 |.... | corr: 6 0x120-0x123.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x124-0x12b.7 (8)
|
||||
0x120| 0f 0c 3f 06 | ..?. | occur: "1978-01-01T00:00:06Z" (252460806) 0x124-0x127.7 (4)
|
||||
0x120| 00 00 00 07 | .... | corr: 7 0x128-0x12b.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x12c-0x133.7 (8)
|
||||
0x120| 10 ed 72 87| ..r.| occur: "1979-01-01T00:00:07Z" (283996807) 0x12c-0x12f.7 (4)
|
||||
0x130|00 00 00 08 |.... | corr: 8 0x130-0x133.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x134-0x13b.7 (8)
|
||||
0x130| 12 ce a6 08 | .... | occur: "1980-01-01T00:00:08Z" (315532808) 0x134-0x137.7 (4)
|
||||
0x130| 00 00 00 09 | .... | corr: 9 0x138-0x13b.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x13c-0x143.7 (8)
|
||||
0x130| 15 9f ca 89| ....| occur: "1981-07-01T00:00:09Z" (362793609) 0x13c-0x13f.7 (4)
|
||||
0x140|00 00 00 0a |.... | corr: 10 0x140-0x143.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x144-0x14b.7 (8)
|
||||
0x140| 17 80 fe 0a | .... | occur: "1982-07-01T00:00:10Z" (394329610) 0x144-0x147.7 (4)
|
||||
0x140| 00 00 00 0b | .... | corr: 11 0x148-0x14b.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x14c-0x153.7 (8)
|
||||
0x140| 19 62 31 8b| .b1.| occur: "1983-07-01T00:00:11Z" (425865611) 0x14c-0x14f.7 (4)
|
||||
0x150|00 00 00 0c |.... | corr: 12 0x150-0x153.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x154-0x15b.7 (8)
|
||||
0x150| 1d 25 ea 0c | .%.. | occur: "1985-07-01T00:00:12Z" (489024012) 0x154-0x157.7 (4)
|
||||
0x150| 00 00 00 0d | .... | corr: 13 0x158-0x15b.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x15c-0x163.7 (8)
|
||||
0x150| 21 da e5 0d| !...| occur: "1988-01-01T00:00:13Z" (567993613) 0x15c-0x15f.7 (4)
|
||||
0x160|00 00 00 0e |.... | corr: 14 0x160-0x163.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x164-0x16b.7 (8)
|
||||
0x160| 25 9e 9d 8e | %... | occur: "1990-01-01T00:00:14Z" (631152014) 0x164-0x167.7 (4)
|
||||
0x160| 00 00 00 0f | .... | corr: 15 0x168-0x16b.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x16c-0x173.7 (8)
|
||||
0x160| 27 7f d1 0f| '...| occur: "1991-01-01T00:00:15Z" (662688015) 0x16c-0x16f.7 (4)
|
||||
0x170|00 00 00 10 |.... | corr: 16 0x170-0x173.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x174-0x17b.7 (8)
|
||||
0x170| 2a 50 f5 90 | *P.. | occur: "1992-07-01T00:00:16Z" (709948816) 0x174-0x177.7 (4)
|
||||
0x170| 00 00 00 11 | .... | corr: 17 0x178-0x17b.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x17c-0x183.7 (8)
|
||||
0x170| 2c 32 29 11| ,2).| occur: "1993-07-01T00:00:17Z" (741484817) 0x17c-0x17f.7 (4)
|
||||
0x180|00 00 00 12 |.... | corr: 18 0x180-0x183.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x184-0x18b.7 (8)
|
||||
0x180| 2e 13 5c 92 | ..\. | occur: "1994-07-01T00:00:18Z" (773020818) 0x184-0x187.7 (4)
|
||||
0x180| 00 00 00 13 | .... | corr: 19 0x188-0x18b.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x18c-0x193.7 (8)
|
||||
0x180| 30 e7 24 13| 0.$.| occur: "1996-01-01T00:00:19Z" (820454419) 0x18c-0x18f.7 (4)
|
||||
0x190|00 00 00 14 |.... | corr: 20 0x190-0x193.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x194-0x19b.7 (8)
|
||||
0x190| 33 b8 48 94 | 3.H. | occur: "1997-07-01T00:00:20Z" (867715220) 0x194-0x197.7 (4)
|
||||
0x190| 00 00 00 15 | .... | corr: 21 0x198-0x19b.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x19c-0x1a3.7 (8)
|
||||
0x190| 36 8c 10 15| 6...| occur: "1999-01-01T00:00:21Z" (915148821) 0x19c-0x19f.7 (4)
|
||||
0x1a0|00 00 00 16 |.... | corr: 22 0x1a0-0x1a3.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x1a4-0x1ab.7 (8)
|
||||
0x1a0| 43 b7 1b 96 | C... | occur: "2006-01-01T00:00:22Z" (1136073622) 0x1a4-0x1a7.7 (4)
|
||||
0x1a0| 00 00 00 17 | .... | corr: 23 0x1a8-0x1ab.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x1ac-0x1b3.7 (8)
|
||||
0x1a0| 49 5c 07 97| I\..| occur: "2009-01-01T00:00:23Z" (1230768023) 0x1ac-0x1af.7 (4)
|
||||
0x1b0|00 00 00 18 |.... | corr: 24 0x1b0-0x1b3.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x1b4-0x1bb.7 (8)
|
||||
0x1b0| 4f ef 93 18 | O... | occur: "2012-07-01T00:00:24Z" (1341100824) 0x1b4-0x1b7.7 (4)
|
||||
0x1b0| 00 00 00 19 | .... | corr: 25 0x1b8-0x1bb.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x1bc-0x1c3.7 (8)
|
||||
0x1b0| 55 93 2d 99| U.-.| occur: "2015-07-01T00:00:25Z" (1435708825) 0x1bc-0x1bf.7 (4)
|
||||
0x1c0|00 00 00 1a |.... | corr: 26 0x1c0-0x1c3.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x1c4-0x1cb.7 (8)
|
||||
0x1c0| 58 68 46 9a | XhF. | occur: "2017-01-01T00:00:26Z" (1483228826) 0x1c4-0x1c7.7 (4)
|
||||
0x1c0| 00 00 00 1b | .... | corr: 27 0x1c8-0x1cb.7 (4)
|
||||
| | | standard_wall_indicators[0:9]: 0x1cc-0x1d4.7 (9)
|
||||
0x1c0| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x1cc-0x1cc.7 (1)
|
||||
0x1c0| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x1cd-0x1cd.7 (1)
|
||||
0x1c0| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x1ce-0x1ce.7 (1)
|
||||
0x1c0| 00| .| [3]: 0 standard_wall_indicator (valid) 0x1cf-0x1cf.7 (1)
|
||||
0x1d0|01 |. | [4]: 1 standard_wall_indicator (valid) 0x1d0-0x1d0.7 (1)
|
||||
0x1d0| 01 | . | [5]: 1 standard_wall_indicator (valid) 0x1d1-0x1d1.7 (1)
|
||||
0x1d0| 01 | . | [6]: 1 standard_wall_indicator (valid) 0x1d2-0x1d2.7 (1)
|
||||
0x1d0| 01 | . | [7]: 1 standard_wall_indicator (valid) 0x1d3-0x1d3.7 (1)
|
||||
0x1d0| 00 | . | [8]: 0 standard_wall_indicator (valid) 0x1d4-0x1d4.7 (1)
|
||||
| | | ut_local_indicators[0:0]: 0x1d5-NA (0)
|
||||
| | | v2plusheader{}: 0x1d5-0x200.7 (44)
|
||||
0x1d0| 54 5a 69 66 | TZif | magic: 0x545a6966 (valid) 0x1d5-0x1d8.7 (4)
|
||||
0x1d0| 32 | 2 | ver: "2" (0x32) (valid) 0x1d9-0x1d9.7 (1)
|
||||
0x1d0| 00 00 00 00 00 00| ......| reserved: raw bits 0x1da-0x1e8.7 (15)
|
||||
0x1e0|00 00 00 00 00 00 00 00 00 |......... |
|
||||
0x1e0| 00 00 00 00 | .... | isutcnt: 0 0x1e9-0x1ec.7 (4)
|
||||
0x1e0| 00 00 00| ...| isstdcnt: 9 0x1ed-0x1f0.7 (4)
|
||||
0x1f0|09 |. |
|
||||
0x1f0| 00 00 00 1b | .... | leapcnt: 27 0x1f1-0x1f4.7 (4)
|
||||
0x1f0| 00 00 00 1a | .... | timecnt: 26 0x1f5-0x1f8.7 (4)
|
||||
0x1f0| 00 00 00 09 | .... | typecnt: 9 0x1f9-0x1fc.7 (4)
|
||||
0x1f0| 00 00 00| ...| charcnt: 16 0x1fd-0x200.7 (4)
|
||||
0x200|10 |. |
|
||||
| | | v2plusdatablock{}: 0x201-0x47d.7 (637)
|
||||
| | | transition_times[0:26]: 0x201-0x2d0.7 (208)
|
||||
0x200| ff ff ff ff aa 19 8d 44 | .......D | [0]: "1924-05-01T20:06:28Z" (-1441166012) transition_time 0x201-0x208.7 (8)
|
||||
0x200| ff ff ff ff b5 a3 fd| .......| [1]: "1930-06-20T20:00:00Z" (-1247544000) transition_time 0x209-0x210.7 (8)
|
||||
0x210|40 |@ |
|
||||
0x210| 00 00 00 00 15 27 8b b9 | .....'.. | [2]: "1981-03-31T19:00:09Z" (354913209) transition_time 0x211-0x218.7 (8)
|
||||
0x210| 00 00 00 00 16 18 c0| .......| [3]: "1981-09-30T18:00:10Z" (370720810) transition_time 0x219-0x220.7 (8)
|
||||
0x220|2a |* |
|
||||
0x220| 00 00 00 00 17 08 bf 3a | .......: | [4]: "1982-03-31T19:00:10Z" (386449210) transition_time 0x221-0x228.7 (8)
|
||||
0x220| 00 00 00 00 17 f9 f3| .......| [5]: "1982-09-30T18:00:11Z" (402256811) transition_time 0x229-0x230.7 (8)
|
||||
0x230|ab |. |
|
||||
0x230| 00 00 00 00 18 e9 f2 bb | ........ | [6]: "1983-03-31T19:00:11Z" (417985211) transition_time 0x231-0x238.7 (8)
|
||||
0x230| 00 00 00 00 19 db 27| ......'| [7]: "1983-09-30T18:00:12Z" (433792812) transition_time 0x239-0x240.7 (8)
|
||||
0x240|2c |, |
|
||||
0x240| 00 00 00 00 1a cc 77 bc | ......w. | [8]: "1984-03-31T19:00:12Z" (449607612) transition_time 0x241-0x248.7 (8)
|
||||
0x240| 00 00 00 00 1b bc 84| .......| [9]: "1984-09-29T21:00:12Z" (465339612) transition_time 0x249-0x250.7 (8)
|
||||
0x250|dc |. |
|
||||
0x250| 00 00 00 00 1c ac 75 dc | ......u. | [10]: "1985-03-30T21:00:12Z" (481064412) transition_time 0x251-0x258.7 (8)
|
||||
0x250| 00 00 00 00 1d 9c 66| ......f| [11]: "1985-09-28T21:00:13Z" (496789213) transition_time 0x259-0x260.7 (8)
|
||||
0x260|dd |. |
|
||||
0x260| 00 00 00 00 1e 8c 57 dd | ......W. | [12]: "1986-03-29T21:00:13Z" (512514013) transition_time 0x261-0x268.7 (8)
|
||||
0x260| 00 00 00 00 1f 7c 48| .....|H| [13]: "1986-09-27T21:00:13Z" (528238813) transition_time 0x269-0x270.7 (8)
|
||||
0x270|dd |. |
|
||||
0x270| 00 00 00 00 20 6c 39 dd | .... l9. | [14]: "1987-03-28T21:00:13Z" (543963613) transition_time 0x271-0x278.7 (8)
|
||||
0x270| 00 00 00 00 21 5c 2a| ....!\*| [15]: "1987-09-26T21:00:13Z" (559688413) transition_time 0x279-0x280.7 (8)
|
||||
0x280|dd |. |
|
||||
0x280| 00 00 00 00 22 4c 1b de | ...."L.. | [16]: "1988-03-26T21:00:14Z" (575413214) transition_time 0x281-0x288.7 (8)
|
||||
0x280| 00 00 00 00 23 3c 0c| ....#<.| [17]: "1988-09-24T21:00:14Z" (591138014) transition_time 0x289-0x290.7 (8)
|
||||
0x290|de |. |
|
||||
0x290| 00 00 00 00 24 2b fd de | ....$+.. | [18]: "1989-03-25T21:00:14Z" (606862814) transition_time 0x291-0x298.7 (8)
|
||||
0x290| 00 00 00 00 25 1b ee| ....%..| [19]: "1989-09-23T21:00:14Z" (622587614) transition_time 0x299-0x2a0.7 (8)
|
||||
0x2a0|de |. |
|
||||
0x2a0| 00 00 00 00 26 0b df df | ....&... | [20]: "1990-03-24T21:00:15Z" (638312415) transition_time 0x2a1-0x2a8.7 (8)
|
||||
0x2a0| 00 00 00 00 27 05 0b| ....'..| [21]: "1990-09-29T21:00:15Z" (654642015) transition_time 0x2a9-0x2b0.7 (8)
|
||||
0x2b0|5f |_ |
|
||||
0x2b0| 00 00 00 00 27 f4 fc 60 | ....'..` | [22]: "1991-03-30T21:00:16Z" (670366816) transition_time 0x2b1-0x2b8.7 (8)
|
||||
0x2b0| 00 00 00 00 28 e4 fb| ....(..| [23]: "1991-09-28T22:00:16Z" (686095216) transition_time 0x2b9-0x2c0.7 (8)
|
||||
0x2c0|70 |p |
|
||||
0x2c0| 00 00 00 00 29 78 a3 70 | ....)x.p | [24]: "1992-01-18T22:00:16Z" (695772016) transition_time 0x2c1-0x2c8.7 (8)
|
||||
0x2c0| 00 00 00 00 64 9b 78| ....d.x| [25]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x2c9-0x2d0.7 (8)
|
||||
0x2d0|1b |. |
|
||||
| | | transition_types[0:26]: 0x2d1-0x2ea.7 (26)
|
||||
0x2d0| 01 | . | [0]: 1 transition_type 0x2d1-0x2d1.7 (1)
|
||||
0x2d0| 03 | . | [1]: 3 transition_type 0x2d2-0x2d2.7 (1)
|
||||
0x2d0| 02 | . | [2]: 2 transition_type 0x2d3-0x2d3.7 (1)
|
||||
0x2d0| 03 | . | [3]: 3 transition_type 0x2d4-0x2d4.7 (1)
|
||||
0x2d0| 02 | . | [4]: 2 transition_type 0x2d5-0x2d5.7 (1)
|
||||
0x2d0| 03 | . | [5]: 3 transition_type 0x2d6-0x2d6.7 (1)
|
||||
0x2d0| 02 | . | [6]: 2 transition_type 0x2d7-0x2d7.7 (1)
|
||||
0x2d0| 03 | . | [7]: 3 transition_type 0x2d8-0x2d8.7 (1)
|
||||
0x2d0| 02 | . | [8]: 2 transition_type 0x2d9-0x2d9.7 (1)
|
||||
0x2d0| 04 | . | [9]: 4 transition_type 0x2da-0x2da.7 (1)
|
||||
0x2d0| 05 | . | [10]: 5 transition_type 0x2db-0x2db.7 (1)
|
||||
0x2d0| 04 | . | [11]: 4 transition_type 0x2dc-0x2dc.7 (1)
|
||||
0x2d0| 05 | . | [12]: 5 transition_type 0x2dd-0x2dd.7 (1)
|
||||
0x2d0| 04 | . | [13]: 4 transition_type 0x2de-0x2de.7 (1)
|
||||
0x2d0| 05| .| [14]: 5 transition_type 0x2df-0x2df.7 (1)
|
||||
0x2e0|04 |. | [15]: 4 transition_type 0x2e0-0x2e0.7 (1)
|
||||
0x2e0| 05 | . | [16]: 5 transition_type 0x2e1-0x2e1.7 (1)
|
||||
0x2e0| 04 | . | [17]: 4 transition_type 0x2e2-0x2e2.7 (1)
|
||||
0x2e0| 05 | . | [18]: 5 transition_type 0x2e3-0x2e3.7 (1)
|
||||
0x2e0| 04 | . | [19]: 4 transition_type 0x2e4-0x2e4.7 (1)
|
||||
0x2e0| 05 | . | [20]: 5 transition_type 0x2e5-0x2e5.7 (1)
|
||||
0x2e0| 04 | . | [21]: 4 transition_type 0x2e6-0x2e6.7 (1)
|
||||
0x2e0| 06 | . | [22]: 6 transition_type 0x2e7-0x2e7.7 (1)
|
||||
0x2e0| 07 | . | [23]: 7 transition_type 0x2e8-0x2e8.7 (1)
|
||||
0x2e0| 03 | . | [24]: 3 transition_type 0x2e9-0x2e9.7 (1)
|
||||
0x2e0| 03 | . | [25]: 3 transition_type 0x2ea-0x2ea.7 (1)
|
||||
| | | local_time_type_records[0:9]: 0x2eb-0x320.7 (54)
|
||||
| | | [0]{}: local_time_type 0x2eb-0x2f0.7 (6)
|
||||
0x2e0| 00 00 36 bc | ..6. | utoff: 14012 (valid) 0x2eb-0x2ee.7 (4)
|
||||
0x2e0| 00| .| dst: 0 (valid) 0x2ef-0x2ef.7 (1)
|
||||
0x2f0|00 |. | idx: 0 (valid) 0x2f0-0x2f0.7 (1)
|
||||
| | | [1]{}: local_time_type 0x2f1-0x2f6.7 (6)
|
||||
0x2f0| 00 00 38 40 | ..8@ | utoff: 14400 (valid) 0x2f1-0x2f4.7 (4)
|
||||
0x2f0| 00 | . | dst: 0 (valid) 0x2f5-0x2f5.7 (1)
|
||||
0x2f0| 04 | . | idx: 4 (valid) 0x2f6-0x2f6.7 (1)
|
||||
| | | [2]{}: local_time_type 0x2f7-0x2fc.7 (6)
|
||||
0x2f0| 00 00 54 60 | ..T` | utoff: 21600 (valid) 0x2f7-0x2fa.7 (4)
|
||||
0x2f0| 01 | . | dst: 1 (valid) 0x2fb-0x2fb.7 (1)
|
||||
0x2f0| 08 | . | idx: 8 (valid) 0x2fc-0x2fc.7 (1)
|
||||
| | | [3]{}: local_time_type 0x2fd-0x302.7 (6)
|
||||
0x2f0| 00 00 46| ..F| utoff: 18000 (valid) 0x2fd-0x300.7 (4)
|
||||
0x300|50 |P |
|
||||
0x300| 00 | . | dst: 0 (valid) 0x301-0x301.7 (1)
|
||||
0x300| 0c | . | idx: 12 (valid) 0x302-0x302.7 (1)
|
||||
| | | [4]{}: local_time_type 0x303-0x308.7 (6)
|
||||
0x300| 00 00 46 50 | ..FP | utoff: 18000 (valid) 0x303-0x306.7 (4)
|
||||
0x300| 00 | . | dst: 0 (valid) 0x307-0x307.7 (1)
|
||||
0x300| 0c | . | idx: 12 (valid) 0x308-0x308.7 (1)
|
||||
| | | [5]{}: local_time_type 0x309-0x30e.7 (6)
|
||||
0x300| 00 00 54 60 | ..T` | utoff: 21600 (valid) 0x309-0x30c.7 (4)
|
||||
0x300| 01 | . | dst: 1 (valid) 0x30d-0x30d.7 (1)
|
||||
0x300| 08 | . | idx: 8 (valid) 0x30e-0x30e.7 (1)
|
||||
| | | [6]{}: local_time_type 0x30f-0x314.7 (6)
|
||||
0x300| 00| .| utoff: 18000 (valid) 0x30f-0x312.7 (4)
|
||||
0x310|00 46 50 |.FP |
|
||||
0x310| 01 | . | dst: 1 (valid) 0x313-0x313.7 (1)
|
||||
0x310| 0c | . | idx: 12 (valid) 0x314-0x314.7 (1)
|
||||
| | | [7]{}: local_time_type 0x315-0x31a.7 (6)
|
||||
0x310| 00 00 38 40 | ..8@ | utoff: 14400 (valid) 0x315-0x318.7 (4)
|
||||
0x310| 00 | . | dst: 0 (valid) 0x319-0x319.7 (1)
|
||||
0x310| 04 | . | idx: 4 (valid) 0x31a-0x31a.7 (1)
|
||||
| | | [8]{}: local_time_type 0x31b-0x320.7 (6)
|
||||
0x310| 00 00 46 50 | ..FP | utoff: 18000 (valid) 0x31b-0x31e.7 (4)
|
||||
0x310| 00| .| dst: 0 (valid) 0x31f-0x31f.7 (1)
|
||||
0x320|0c |. | idx: 12 (valid) 0x320-0x320.7 (1)
|
||||
| | | time_zone_designations[0:4]: 0x321-0x330.7 (16)
|
||||
0x320| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x321-0x324.7 (4)
|
||||
0x320| 2b 30 34 00 | +04. | [1]: "+04" time_zone_designation 0x325-0x328.7 (4)
|
||||
0x320| 2b 30 36 00 | +06. | [2]: "+06" time_zone_designation 0x329-0x32c.7 (4)
|
||||
0x320| 2b 30 35| +05| [3]: "+05" time_zone_designation 0x32d-0x330.7 (4)
|
||||
0x330|00 |. |
|
||||
| | | leap_second_records[0:27]: 0x331-0x474.7 (324)
|
||||
| | | [0]{}: leap_second_record 0x331-0x33c.7 (12)
|
||||
0x330| 00 00 00 00 04 b2 58 00 | ......X. | occur: "1972-07-01T00:00:00Z" (78796800) 0x331-0x338.7 (8)
|
||||
0x330| 00 00 00 01 | .... | corr: 1 0x339-0x33c.7 (4)
|
||||
| | | [1]{}: leap_second_record 0x33d-0x348.7 (12)
|
||||
0x330| 00 00 00| ...| occur: "1973-01-01T00:00:01Z" (94694401) 0x33d-0x344.7 (8)
|
||||
0x340|00 05 a4 ec 01 |..... |
|
||||
0x340| 00 00 00 02 | .... | corr: 2 0x345-0x348.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x349-0x354.7 (12)
|
||||
0x340| 00 00 00 00 07 86 1f| .......| occur: "1974-01-01T00:00:02Z" (126230402) 0x349-0x350.7 (8)
|
||||
0x350|82 |. |
|
||||
0x350| 00 00 00 03 | .... | corr: 3 0x351-0x354.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x355-0x360.7 (12)
|
||||
0x350| 00 00 00 00 09 67 53 03 | .....gS. | occur: "1975-01-01T00:00:03Z" (157766403) 0x355-0x35c.7 (8)
|
||||
0x350| 00 00 00| ...| corr: 4 0x35d-0x360.7 (4)
|
||||
0x360|04 |. |
|
||||
| | | [4]{}: leap_second_record 0x361-0x36c.7 (12)
|
||||
0x360| 00 00 00 00 0b 48 86 84 | .....H.. | occur: "1976-01-01T00:00:04Z" (189302404) 0x361-0x368.7 (8)
|
||||
0x360| 00 00 00 05 | .... | corr: 5 0x369-0x36c.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x36d-0x378.7 (12)
|
||||
0x360| 00 00 00| ...| occur: "1977-01-01T00:00:05Z" (220924805) 0x36d-0x374.7 (8)
|
||||
0x370|00 0d 2b 0b 85 |..+.. |
|
||||
0x370| 00 00 00 06 | .... | corr: 6 0x375-0x378.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x379-0x384.7 (12)
|
||||
0x370| 00 00 00 00 0f 0c 3f| ......?| occur: "1978-01-01T00:00:06Z" (252460806) 0x379-0x380.7 (8)
|
||||
0x380|06 |. |
|
||||
0x380| 00 00 00 07 | .... | corr: 7 0x381-0x384.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x385-0x390.7 (12)
|
||||
0x380| 00 00 00 00 10 ed 72 87 | ......r. | occur: "1979-01-01T00:00:07Z" (283996807) 0x385-0x38c.7 (8)
|
||||
0x380| 00 00 00| ...| corr: 8 0x38d-0x390.7 (4)
|
||||
0x390|08 |. |
|
||||
| | | [8]{}: leap_second_record 0x391-0x39c.7 (12)
|
||||
0x390| 00 00 00 00 12 ce a6 08 | ........ | occur: "1980-01-01T00:00:08Z" (315532808) 0x391-0x398.7 (8)
|
||||
0x390| 00 00 00 09 | .... | corr: 9 0x399-0x39c.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x39d-0x3a8.7 (12)
|
||||
0x390| 00 00 00| ...| occur: "1981-07-01T00:00:09Z" (362793609) 0x39d-0x3a4.7 (8)
|
||||
0x3a0|00 15 9f ca 89 |..... |
|
||||
0x3a0| 00 00 00 0a | .... | corr: 10 0x3a5-0x3a8.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x3a9-0x3b4.7 (12)
|
||||
0x3a0| 00 00 00 00 17 80 fe| .......| occur: "1982-07-01T00:00:10Z" (394329610) 0x3a9-0x3b0.7 (8)
|
||||
0x3b0|0a |. |
|
||||
0x3b0| 00 00 00 0b | .... | corr: 11 0x3b1-0x3b4.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x3b5-0x3c0.7 (12)
|
||||
0x3b0| 00 00 00 00 19 62 31 8b | .....b1. | occur: "1983-07-01T00:00:11Z" (425865611) 0x3b5-0x3bc.7 (8)
|
||||
0x3b0| 00 00 00| ...| corr: 12 0x3bd-0x3c0.7 (4)
|
||||
0x3c0|0c |. |
|
||||
| | | [12]{}: leap_second_record 0x3c1-0x3cc.7 (12)
|
||||
0x3c0| 00 00 00 00 1d 25 ea 0c | .....%.. | occur: "1985-07-01T00:00:12Z" (489024012) 0x3c1-0x3c8.7 (8)
|
||||
0x3c0| 00 00 00 0d | .... | corr: 13 0x3c9-0x3cc.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x3cd-0x3d8.7 (12)
|
||||
0x3c0| 00 00 00| ...| occur: "1988-01-01T00:00:13Z" (567993613) 0x3cd-0x3d4.7 (8)
|
||||
0x3d0|00 21 da e5 0d |.!... |
|
||||
0x3d0| 00 00 00 0e | .... | corr: 14 0x3d5-0x3d8.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x3d9-0x3e4.7 (12)
|
||||
0x3d0| 00 00 00 00 25 9e 9d| ....%..| occur: "1990-01-01T00:00:14Z" (631152014) 0x3d9-0x3e0.7 (8)
|
||||
0x3e0|8e |. |
|
||||
0x3e0| 00 00 00 0f | .... | corr: 15 0x3e1-0x3e4.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x3e5-0x3f0.7 (12)
|
||||
0x3e0| 00 00 00 00 27 7f d1 0f | ....'... | occur: "1991-01-01T00:00:15Z" (662688015) 0x3e5-0x3ec.7 (8)
|
||||
0x3e0| 00 00 00| ...| corr: 16 0x3ed-0x3f0.7 (4)
|
||||
0x3f0|10 |. |
|
||||
| | | [16]{}: leap_second_record 0x3f1-0x3fc.7 (12)
|
||||
0x3f0| 00 00 00 00 2a 50 f5 90 | ....*P.. | occur: "1992-07-01T00:00:16Z" (709948816) 0x3f1-0x3f8.7 (8)
|
||||
0x3f0| 00 00 00 11 | .... | corr: 17 0x3f9-0x3fc.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x3fd-0x408.7 (12)
|
||||
0x3f0| 00 00 00| ...| occur: "1993-07-01T00:00:17Z" (741484817) 0x3fd-0x404.7 (8)
|
||||
0x400|00 2c 32 29 11 |.,2). |
|
||||
0x400| 00 00 00 12 | .... | corr: 18 0x405-0x408.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x409-0x414.7 (12)
|
||||
0x400| 00 00 00 00 2e 13 5c| ......\| occur: "1994-07-01T00:00:18Z" (773020818) 0x409-0x410.7 (8)
|
||||
0x410|92 |. |
|
||||
0x410| 00 00 00 13 | .... | corr: 19 0x411-0x414.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x415-0x420.7 (12)
|
||||
0x410| 00 00 00 00 30 e7 24 13 | ....0.$. | occur: "1996-01-01T00:00:19Z" (820454419) 0x415-0x41c.7 (8)
|
||||
0x410| 00 00 00| ...| corr: 20 0x41d-0x420.7 (4)
|
||||
0x420|14 |. |
|
||||
| | | [20]{}: leap_second_record 0x421-0x42c.7 (12)
|
||||
0x420| 00 00 00 00 33 b8 48 94 | ....3.H. | occur: "1997-07-01T00:00:20Z" (867715220) 0x421-0x428.7 (8)
|
||||
0x420| 00 00 00 15 | .... | corr: 21 0x429-0x42c.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x42d-0x438.7 (12)
|
||||
0x420| 00 00 00| ...| occur: "1999-01-01T00:00:21Z" (915148821) 0x42d-0x434.7 (8)
|
||||
0x430|00 36 8c 10 15 |.6... |
|
||||
0x430| 00 00 00 16 | .... | corr: 22 0x435-0x438.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x439-0x444.7 (12)
|
||||
0x430| 00 00 00 00 43 b7 1b| ....C..| occur: "2006-01-01T00:00:22Z" (1136073622) 0x439-0x440.7 (8)
|
||||
0x440|96 |. |
|
||||
0x440| 00 00 00 17 | .... | corr: 23 0x441-0x444.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x445-0x450.7 (12)
|
||||
0x440| 00 00 00 00 49 5c 07 97 | ....I\.. | occur: "2009-01-01T00:00:23Z" (1230768023) 0x445-0x44c.7 (8)
|
||||
0x440| 00 00 00| ...| corr: 24 0x44d-0x450.7 (4)
|
||||
0x450|18 |. |
|
||||
| | | [24]{}: leap_second_record 0x451-0x45c.7 (12)
|
||||
0x450| 00 00 00 00 4f ef 93 18 | ....O... | occur: "2012-07-01T00:00:24Z" (1341100824) 0x451-0x458.7 (8)
|
||||
0x450| 00 00 00 19 | .... | corr: 25 0x459-0x45c.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x45d-0x468.7 (12)
|
||||
0x450| 00 00 00| ...| occur: "2015-07-01T00:00:25Z" (1435708825) 0x45d-0x464.7 (8)
|
||||
0x460|00 55 93 2d 99 |.U.-. |
|
||||
0x460| 00 00 00 1a | .... | corr: 26 0x465-0x468.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x469-0x474.7 (12)
|
||||
0x460| 00 00 00 00 58 68 46| ....XhF| occur: "2017-01-01T00:00:26Z" (1483228826) 0x469-0x470.7 (8)
|
||||
0x470|9a |. |
|
||||
0x470| 00 00 00 1b | .... | corr: 27 0x471-0x474.7 (4)
|
||||
| | | standard_wall_indicators[0:9]: 0x475-0x47d.7 (9)
|
||||
0x470| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x475-0x475.7 (1)
|
||||
0x470| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x476-0x476.7 (1)
|
||||
0x470| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x477-0x477.7 (1)
|
||||
0x470| 00 | . | [3]: 0 standard_wall_indicator (valid) 0x478-0x478.7 (1)
|
||||
0x470| 01 | . | [4]: 1 standard_wall_indicator (valid) 0x479-0x479.7 (1)
|
||||
0x470| 01 | . | [5]: 1 standard_wall_indicator (valid) 0x47a-0x47a.7 (1)
|
||||
0x470| 01 | . | [6]: 1 standard_wall_indicator (valid) 0x47b-0x47b.7 (1)
|
||||
0x470| 01 | . | [7]: 1 standard_wall_indicator (valid) 0x47c-0x47c.7 (1)
|
||||
0x470| 00 | . | [8]: 0 standard_wall_indicator (valid) 0x47d-0x47d.7 (1)
|
||||
| | | ut_local_indicators[0:0]: 0x47e-NA (0)
|
||||
| | | footer{}: 0x47e-0x47f.7 (2)
|
||||
0x470| 0a | . | nl1: 10 (valid) 0x47e-0x47e.7 (1)
|
||||
| | | tz_string: "" 0x47f-NA (0)
|
||||
0x470| 0a| .| nl2: 10 (valid) 0x47f-0x47f.7 (1)
|
BIN
format/tzif/testdata/Astrakhan
vendored
Normal file
BIN
format/tzif/testdata/Astrakhan
vendored
Normal file
Binary file not shown.
441
format/tzif/testdata/Astrakhan.fqtest
vendored
Normal file
441
format/tzif/testdata/Astrakhan.fqtest
vendored
Normal file
@ -0,0 +1,441 @@
|
||||
$ fq -d tzif dv Astrakhan
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: Astrakhan (tzif) 0x0-0x48c.7 (1165)
|
||||
| | | v1header{}: 0x0-0x2b.7 (44)
|
||||
0x000|54 5a 69 66 |TZif | magic: 0x545a6966 (valid) 0x0-0x3.7 (4)
|
||||
0x000| 32 | 2 | ver: "2" (0x32) (valid) 0x4-0x4.7 (1)
|
||||
0x000| 00 00 00 00 00 00 00 00 00 00 00| ...........| reserved: raw bits 0x5-0x13.7 (15)
|
||||
0x010|00 00 00 00 |.... |
|
||||
0x010| 00 00 00 00 | .... | isutcnt: 0 0x14-0x17.7 (4)
|
||||
0x010| 00 00 00 09 | .... | isstdcnt: 9 0x18-0x1b.7 (4)
|
||||
0x010| 00 00 00 00| ....| leapcnt: 0 0x1c-0x1f.7 (4)
|
||||
0x020|00 00 00 41 |...A | timecnt: 65 0x20-0x23.7 (4)
|
||||
0x020| 00 00 00 09 | .... | typecnt: 9 0x24-0x27.7 (4)
|
||||
0x020| 00 00 00 10 | .... | charcnt: 16 0x28-0x2b.7 (4)
|
||||
| | | v1datablock{}: 0x2c-0x1bf.7 (404)
|
||||
| | | transition_times[0:65]: 0x2c-0x12f.7 (260)
|
||||
0x020| aa 18 45 74| ..Et| [0]: "1924-04-30T20:47:48Z" (-1441249932) transition_time 0x2c-0x2f.7 (4)
|
||||
0x030|b5 a4 0b 50 |...P | [1]: "1930-06-20T21:00:00Z" (-1247540400) transition_time 0x30-0x33.7 (4)
|
||||
0x030| 15 27 99 c0 | .'.. | [2]: "1981-03-31T20:00:00Z" (354916800) transition_time 0x34-0x37.7 (4)
|
||||
0x030| 16 18 ce 30 | ...0 | [3]: "1981-09-30T19:00:00Z" (370724400) transition_time 0x38-0x3b.7 (4)
|
||||
0x030| 17 08 cd 40| ...@| [4]: "1982-03-31T20:00:00Z" (386452800) transition_time 0x3c-0x3f.7 (4)
|
||||
0x040|17 fa 01 b0 |.... | [5]: "1982-09-30T19:00:00Z" (402260400) transition_time 0x40-0x43.7 (4)
|
||||
0x040| 18 ea 00 c0 | .... | [6]: "1983-03-31T20:00:00Z" (417988800) transition_time 0x44-0x47.7 (4)
|
||||
0x040| 19 db 35 30 | ..50 | [7]: "1983-09-30T19:00:00Z" (433796400) transition_time 0x48-0x4b.7 (4)
|
||||
0x040| 1a cc 85 c0| ....| [8]: "1984-03-31T20:00:00Z" (449611200) transition_time 0x4c-0x4f.7 (4)
|
||||
0x050|1b bc 92 e0 |.... | [9]: "1984-09-29T22:00:00Z" (465343200) transition_time 0x50-0x53.7 (4)
|
||||
0x050| 1c ac 83 e0 | .... | [10]: "1985-03-30T22:00:00Z" (481068000) transition_time 0x54-0x57.7 (4)
|
||||
0x050| 1d 9c 74 e0 | ..t. | [11]: "1985-09-28T22:00:00Z" (496792800) transition_time 0x58-0x5b.7 (4)
|
||||
0x050| 1e 8c 65 e0| ..e.| [12]: "1986-03-29T22:00:00Z" (512517600) transition_time 0x5c-0x5f.7 (4)
|
||||
0x060|1f 7c 56 e0 |.|V. | [13]: "1986-09-27T22:00:00Z" (528242400) transition_time 0x60-0x63.7 (4)
|
||||
0x060| 20 6c 47 e0 | lG. | [14]: "1987-03-28T22:00:00Z" (543967200) transition_time 0x64-0x67.7 (4)
|
||||
0x060| 21 5c 38 e0 | !\8. | [15]: "1987-09-26T22:00:00Z" (559692000) transition_time 0x68-0x6b.7 (4)
|
||||
0x060| 22 4c 29 e0| "L).| [16]: "1988-03-26T22:00:00Z" (575416800) transition_time 0x6c-0x6f.7 (4)
|
||||
0x070|23 3c 1a e0 |#<.. | [17]: "1988-09-24T22:00:00Z" (591141600) transition_time 0x70-0x73.7 (4)
|
||||
0x070| 24 2c 0b e0 | $,.. | [18]: "1989-03-25T22:00:00Z" (606866400) transition_time 0x74-0x77.7 (4)
|
||||
0x070| 25 1c 0a f0 | %... | [19]: "1989-09-23T23:00:00Z" (622594800) transition_time 0x78-0x7b.7 (4)
|
||||
0x070| 26 0b fb f0| &...| [20]: "1990-03-24T23:00:00Z" (638319600) transition_time 0x7c-0x7f.7 (4)
|
||||
0x080|27 05 27 70 |'.'p | [21]: "1990-09-29T23:00:00Z" (654649200) transition_time 0x80-0x83.7 (4)
|
||||
0x080| 27 f5 18 70 | '..p | [22]: "1991-03-30T23:00:00Z" (670374000) transition_time 0x84-0x87.7 (4)
|
||||
0x080| 29 d4 ec 60 | )..` | [23]: "1992-03-28T22:00:00Z" (701820000) transition_time 0x88-0x8b.7 (4)
|
||||
0x080| 2a c4 eb 70| *..p| [24]: "1992-09-26T23:00:00Z" (717548400) transition_time 0x8c-0x8f.7 (4)
|
||||
0x090|2b b4 dc 70 |+..p | [25]: "1993-03-27T23:00:00Z" (733273200) transition_time 0x90-0x93.7 (4)
|
||||
0x090| 2c a4 cd 70 | ,..p | [26]: "1993-09-25T23:00:00Z" (748998000) transition_time 0x94-0x97.7 (4)
|
||||
0x090| 2d 94 be 70 | -..p | [27]: "1994-03-26T23:00:00Z" (764722800) transition_time 0x98-0x9b.7 (4)
|
||||
0x090| 2e 84 af 70| ...p| [28]: "1994-09-24T23:00:00Z" (780447600) transition_time 0x9c-0x9f.7 (4)
|
||||
0x0a0|2f 74 a0 70 |/t.p | [29]: "1995-03-25T23:00:00Z" (796172400) transition_time 0xa0-0xa3.7 (4)
|
||||
0x0a0| 30 64 91 70 | 0d.p | [30]: "1995-09-23T23:00:00Z" (811897200) transition_time 0xa4-0xa7.7 (4)
|
||||
0x0a0| 31 5d bc f0 | 1].. | [31]: "1996-03-30T23:00:00Z" (828226800) transition_time 0xa8-0xab.7 (4)
|
||||
0x0a0| 32 72 97 f0| 2r..| [32]: "1996-10-26T23:00:00Z" (846370800) transition_time 0xac-0xaf.7 (4)
|
||||
0x0b0|33 3d 9e f0 |3=.. | [33]: "1997-03-29T23:00:00Z" (859676400) transition_time 0xb0-0xb3.7 (4)
|
||||
0x0b0| 34 52 79 f0 | 4Ry. | [34]: "1997-10-25T23:00:00Z" (877820400) transition_time 0xb4-0xb7.7 (4)
|
||||
0x0b0| 35 1d 80 f0 | 5... | [35]: "1998-03-28T23:00:00Z" (891126000) transition_time 0xb8-0xbb.7 (4)
|
||||
0x0b0| 36 32 5b f0| 62[.| [36]: "1998-10-24T23:00:00Z" (909270000) transition_time 0xbc-0xbf.7 (4)
|
||||
0x0c0|36 fd 62 f0 |6.b. | [37]: "1999-03-27T23:00:00Z" (922575600) transition_time 0xc0-0xc3.7 (4)
|
||||
0x0c0| 38 1b 78 70 | 8.xp | [38]: "1999-10-30T23:00:00Z" (941324400) transition_time 0xc4-0xc7.7 (4)
|
||||
0x0c0| 38 dd 44 f0 | 8.D. | [39]: "2000-03-25T23:00:00Z" (954025200) transition_time 0xc8-0xcb.7 (4)
|
||||
0x0c0| 39 fb 5a 70| 9.Zp| [40]: "2000-10-28T23:00:00Z" (972774000) transition_time 0xcc-0xcf.7 (4)
|
||||
0x0d0|3a bd 26 f0 |:.&. | [41]: "2001-03-24T23:00:00Z" (985474800) transition_time 0xd0-0xd3.7 (4)
|
||||
0x0d0| 3b db 3c 70 | ;.<p | [42]: "2001-10-27T23:00:00Z" (1004223600) transition_time 0xd4-0xd7.7 (4)
|
||||
0x0d0| 3c a6 43 70 | <.Cp | [43]: "2002-03-30T23:00:00Z" (1017529200) transition_time 0xd8-0xdb.7 (4)
|
||||
0x0d0| 3d bb 1e 70| =..p| [44]: "2002-10-26T23:00:00Z" (1035673200) transition_time 0xdc-0xdf.7 (4)
|
||||
0x0e0|3e 86 25 70 |>.%p | [45]: "2003-03-29T23:00:00Z" (1048978800) transition_time 0xe0-0xe3.7 (4)
|
||||
0x0e0| 3f 9b 00 70 | ?..p | [46]: "2003-10-25T23:00:00Z" (1067122800) transition_time 0xe4-0xe7.7 (4)
|
||||
0x0e0| 40 66 07 70 | @f.p | [47]: "2004-03-27T23:00:00Z" (1080428400) transition_time 0xe8-0xeb.7 (4)
|
||||
0x0e0| 41 84 1c f0| A...| [48]: "2004-10-30T23:00:00Z" (1099177200) transition_time 0xec-0xef.7 (4)
|
||||
0x0f0|42 45 e9 70 |BE.p | [49]: "2005-03-26T23:00:00Z" (1111878000) transition_time 0xf0-0xf3.7 (4)
|
||||
0x0f0| 43 63 fe f0 | Cc.. | [50]: "2005-10-29T23:00:00Z" (1130626800) transition_time 0xf4-0xf7.7 (4)
|
||||
0x0f0| 44 25 cb 70 | D%.p | [51]: "2006-03-25T23:00:00Z" (1143327600) transition_time 0xf8-0xfb.7 (4)
|
||||
0x0f0| 45 43 e0 f0| EC..| [52]: "2006-10-28T23:00:00Z" (1162076400) transition_time 0xfc-0xff.7 (4)
|
||||
0x100|46 05 ad 70 |F..p | [53]: "2007-03-24T23:00:00Z" (1174777200) transition_time 0x100-0x103.7 (4)
|
||||
0x100| 47 23 c2 f0 | G#.. | [54]: "2007-10-27T23:00:00Z" (1193526000) transition_time 0x104-0x107.7 (4)
|
||||
0x100| 47 ee c9 f0 | G... | [55]: "2008-03-29T23:00:00Z" (1206831600) transition_time 0x108-0x10b.7 (4)
|
||||
0x100| 49 03 a4 f0| I...| [56]: "2008-10-25T23:00:00Z" (1224975600) transition_time 0x10c-0x10f.7 (4)
|
||||
0x110|49 ce ab f0 |I... | [57]: "2009-03-28T23:00:00Z" (1238281200) transition_time 0x110-0x113.7 (4)
|
||||
0x110| 4a e3 86 f0 | J... | [58]: "2009-10-24T23:00:00Z" (1256425200) transition_time 0x114-0x117.7 (4)
|
||||
0x110| 4b ae 8d f0 | K... | [59]: "2010-03-27T23:00:00Z" (1269730800) transition_time 0x118-0x11b.7 (4)
|
||||
0x110| 4c cc a3 70| L..p| [60]: "2010-10-30T23:00:00Z" (1288479600) transition_time 0x11c-0x11f.7 (4)
|
||||
0x120|4d 8e 6f f0 |M.o. | [61]: "2011-03-26T23:00:00Z" (1301180400) transition_time 0x120-0x123.7 (4)
|
||||
0x120| 54 4c 1d 60 | TL.` | [62]: "2014-10-25T22:00:00Z" (1414274400) transition_time 0x124-0x127.7 (4)
|
||||
0x120| 56 f7 14 70 | V..p | [63]: "2016-03-26T23:00:00Z" (1459033200) transition_time 0x128-0x12b.7 (4)
|
||||
0x120| 7f ff ff ff| ....| [64]: "2038-01-19T03:14:07Z" (2147483647) transition_time 0x12c-0x12f.7 (4)
|
||||
| | | transition_types[0:65]: 0x130-0x170.7 (65)
|
||||
0x130|01 |. | [0]: 1 transition_type 0x130-0x130.7 (1)
|
||||
0x130| 03 | . | [1]: 3 transition_type 0x131-0x131.7 (1)
|
||||
0x130| 02 | . | [2]: 2 transition_type 0x132-0x132.7 (1)
|
||||
0x130| 03 | . | [3]: 3 transition_type 0x133-0x133.7 (1)
|
||||
0x130| 02 | . | [4]: 2 transition_type 0x134-0x134.7 (1)
|
||||
0x130| 03 | . | [5]: 3 transition_type 0x135-0x135.7 (1)
|
||||
0x130| 02 | . | [6]: 2 transition_type 0x136-0x136.7 (1)
|
||||
0x130| 03 | . | [7]: 3 transition_type 0x137-0x137.7 (1)
|
||||
0x130| 02 | . | [8]: 2 transition_type 0x138-0x138.7 (1)
|
||||
0x130| 04 | . | [9]: 4 transition_type 0x139-0x139.7 (1)
|
||||
0x130| 05 | . | [10]: 5 transition_type 0x13a-0x13a.7 (1)
|
||||
0x130| 04 | . | [11]: 4 transition_type 0x13b-0x13b.7 (1)
|
||||
0x130| 05 | . | [12]: 5 transition_type 0x13c-0x13c.7 (1)
|
||||
0x130| 04 | . | [13]: 4 transition_type 0x13d-0x13d.7 (1)
|
||||
0x130| 05 | . | [14]: 5 transition_type 0x13e-0x13e.7 (1)
|
||||
0x130| 04| .| [15]: 4 transition_type 0x13f-0x13f.7 (1)
|
||||
0x140|05 |. | [16]: 5 transition_type 0x140-0x140.7 (1)
|
||||
0x140| 04 | . | [17]: 4 transition_type 0x141-0x141.7 (1)
|
||||
0x140| 06 | . | [18]: 6 transition_type 0x142-0x142.7 (1)
|
||||
0x140| 07 | . | [19]: 7 transition_type 0x143-0x143.7 (1)
|
||||
0x140| 06 | . | [20]: 6 transition_type 0x144-0x144.7 (1)
|
||||
0x140| 07 | . | [21]: 7 transition_type 0x145-0x145.7 (1)
|
||||
0x140| 04 | . | [22]: 4 transition_type 0x146-0x146.7 (1)
|
||||
0x140| 06 | . | [23]: 6 transition_type 0x147-0x147.7 (1)
|
||||
0x140| 07 | . | [24]: 7 transition_type 0x148-0x148.7 (1)
|
||||
0x140| 06 | . | [25]: 6 transition_type 0x149-0x149.7 (1)
|
||||
0x140| 07 | . | [26]: 7 transition_type 0x14a-0x14a.7 (1)
|
||||
0x140| 06 | . | [27]: 6 transition_type 0x14b-0x14b.7 (1)
|
||||
0x140| 07 | . | [28]: 7 transition_type 0x14c-0x14c.7 (1)
|
||||
0x140| 06 | . | [29]: 6 transition_type 0x14d-0x14d.7 (1)
|
||||
0x140| 07 | . | [30]: 7 transition_type 0x14e-0x14e.7 (1)
|
||||
0x140| 06| .| [31]: 6 transition_type 0x14f-0x14f.7 (1)
|
||||
0x150|07 |. | [32]: 7 transition_type 0x150-0x150.7 (1)
|
||||
0x150| 06 | . | [33]: 6 transition_type 0x151-0x151.7 (1)
|
||||
0x150| 07 | . | [34]: 7 transition_type 0x152-0x152.7 (1)
|
||||
0x150| 06 | . | [35]: 6 transition_type 0x153-0x153.7 (1)
|
||||
0x150| 07 | . | [36]: 7 transition_type 0x154-0x154.7 (1)
|
||||
0x150| 06 | . | [37]: 6 transition_type 0x155-0x155.7 (1)
|
||||
0x150| 07 | . | [38]: 7 transition_type 0x156-0x156.7 (1)
|
||||
0x150| 06 | . | [39]: 6 transition_type 0x157-0x157.7 (1)
|
||||
0x150| 07 | . | [40]: 7 transition_type 0x158-0x158.7 (1)
|
||||
0x150| 06 | . | [41]: 6 transition_type 0x159-0x159.7 (1)
|
||||
0x150| 07 | . | [42]: 7 transition_type 0x15a-0x15a.7 (1)
|
||||
0x150| 06 | . | [43]: 6 transition_type 0x15b-0x15b.7 (1)
|
||||
0x150| 07 | . | [44]: 7 transition_type 0x15c-0x15c.7 (1)
|
||||
0x150| 06 | . | [45]: 6 transition_type 0x15d-0x15d.7 (1)
|
||||
0x150| 07 | . | [46]: 7 transition_type 0x15e-0x15e.7 (1)
|
||||
0x150| 06| .| [47]: 6 transition_type 0x15f-0x15f.7 (1)
|
||||
0x160|07 |. | [48]: 7 transition_type 0x160-0x160.7 (1)
|
||||
0x160| 06 | . | [49]: 6 transition_type 0x161-0x161.7 (1)
|
||||
0x160| 07 | . | [50]: 7 transition_type 0x162-0x162.7 (1)
|
||||
0x160| 06 | . | [51]: 6 transition_type 0x163-0x163.7 (1)
|
||||
0x160| 07 | . | [52]: 7 transition_type 0x164-0x164.7 (1)
|
||||
0x160| 06 | . | [53]: 6 transition_type 0x165-0x165.7 (1)
|
||||
0x160| 07 | . | [54]: 7 transition_type 0x166-0x166.7 (1)
|
||||
0x160| 06 | . | [55]: 6 transition_type 0x167-0x167.7 (1)
|
||||
0x160| 07 | . | [56]: 7 transition_type 0x168-0x168.7 (1)
|
||||
0x160| 06 | . | [57]: 6 transition_type 0x169-0x169.7 (1)
|
||||
0x160| 07 | . | [58]: 7 transition_type 0x16a-0x16a.7 (1)
|
||||
0x160| 06 | . | [59]: 6 transition_type 0x16b-0x16b.7 (1)
|
||||
0x160| 07 | . | [60]: 7 transition_type 0x16c-0x16c.7 (1)
|
||||
0x160| 04 | . | [61]: 4 transition_type 0x16d-0x16d.7 (1)
|
||||
0x160| 07 | . | [62]: 7 transition_type 0x16e-0x16e.7 (1)
|
||||
0x160| 04| .| [63]: 4 transition_type 0x16f-0x16f.7 (1)
|
||||
0x170|04 |. | [64]: 4 transition_type 0x170-0x170.7 (1)
|
||||
| | | local_time_type_records[0:9]: 0x171-0x1a6.7 (54)
|
||||
| | | [0]{}: local_time_type 0x171-0x176.7 (6)
|
||||
0x170| 00 00 2d 0c | ..-. | utoff: 11532 (valid) 0x171-0x174.7 (4)
|
||||
0x170| 00 | . | dst: 0 (valid) 0x175-0x175.7 (1)
|
||||
0x170| 00 | . | idx: 0 (valid) 0x176-0x176.7 (1)
|
||||
| | | [1]{}: local_time_type 0x177-0x17c.7 (6)
|
||||
0x170| 00 00 2a 30 | ..*0 | utoff: 10800 (valid) 0x177-0x17a.7 (4)
|
||||
0x170| 00 | . | dst: 0 (valid) 0x17b-0x17b.7 (1)
|
||||
0x170| 04 | . | idx: 4 (valid) 0x17c-0x17c.7 (1)
|
||||
| | | [2]{}: local_time_type 0x17d-0x182.7 (6)
|
||||
0x170| 00 00 46| ..F| utoff: 18000 (valid) 0x17d-0x180.7 (4)
|
||||
0x180|50 |P |
|
||||
0x180| 01 | . | dst: 1 (valid) 0x181-0x181.7 (1)
|
||||
0x180| 08 | . | idx: 8 (valid) 0x182-0x182.7 (1)
|
||||
| | | [3]{}: local_time_type 0x183-0x188.7 (6)
|
||||
0x180| 00 00 38 40 | ..8@ | utoff: 14400 (valid) 0x183-0x186.7 (4)
|
||||
0x180| 00 | . | dst: 0 (valid) 0x187-0x187.7 (1)
|
||||
0x180| 0c | . | idx: 12 (valid) 0x188-0x188.7 (1)
|
||||
| | | [4]{}: local_time_type 0x189-0x18e.7 (6)
|
||||
0x180| 00 00 38 40 | ..8@ | utoff: 14400 (valid) 0x189-0x18c.7 (4)
|
||||
0x180| 00 | . | dst: 0 (valid) 0x18d-0x18d.7 (1)
|
||||
0x180| 0c | . | idx: 12 (valid) 0x18e-0x18e.7 (1)
|
||||
| | | [5]{}: local_time_type 0x18f-0x194.7 (6)
|
||||
0x180| 00| .| utoff: 18000 (valid) 0x18f-0x192.7 (4)
|
||||
0x190|00 46 50 |.FP |
|
||||
0x190| 01 | . | dst: 1 (valid) 0x193-0x193.7 (1)
|
||||
0x190| 08 | . | idx: 8 (valid) 0x194-0x194.7 (1)
|
||||
| | | [6]{}: local_time_type 0x195-0x19a.7 (6)
|
||||
0x190| 00 00 38 40 | ..8@ | utoff: 14400 (valid) 0x195-0x198.7 (4)
|
||||
0x190| 01 | . | dst: 1 (valid) 0x199-0x199.7 (1)
|
||||
0x190| 0c | . | idx: 12 (valid) 0x19a-0x19a.7 (1)
|
||||
| | | [7]{}: local_time_type 0x19b-0x1a0.7 (6)
|
||||
0x190| 00 00 2a 30 | ..*0 | utoff: 10800 (valid) 0x19b-0x19e.7 (4)
|
||||
0x190| 00| .| dst: 0 (valid) 0x19f-0x19f.7 (1)
|
||||
0x1a0|04 |. | idx: 4 (valid) 0x1a0-0x1a0.7 (1)
|
||||
| | | [8]{}: local_time_type 0x1a1-0x1a6.7 (6)
|
||||
0x1a0| 00 00 38 40 | ..8@ | utoff: 14400 (valid) 0x1a1-0x1a4.7 (4)
|
||||
0x1a0| 00 | . | dst: 0 (valid) 0x1a5-0x1a5.7 (1)
|
||||
0x1a0| 0c | . | idx: 12 (valid) 0x1a6-0x1a6.7 (1)
|
||||
| | | time_zone_designations[0:4]: 0x1a7-0x1b6.7 (16)
|
||||
0x1a0| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x1a7-0x1aa.7 (4)
|
||||
0x1a0| 2b 30 33 00 | +03. | [1]: "+03" time_zone_designation 0x1ab-0x1ae.7 (4)
|
||||
0x1a0| 2b| +| [2]: "+05" time_zone_designation 0x1af-0x1b2.7 (4)
|
||||
0x1b0|30 35 00 |05. |
|
||||
0x1b0| 2b 30 34 00 | +04. | [3]: "+04" time_zone_designation 0x1b3-0x1b6.7 (4)
|
||||
| | | leap_second_records[0:0]: 0x1b7-NA (0)
|
||||
| | | standard_wall_indicators[0:9]: 0x1b7-0x1bf.7 (9)
|
||||
0x1b0| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x1b7-0x1b7.7 (1)
|
||||
0x1b0| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x1b8-0x1b8.7 (1)
|
||||
0x1b0| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x1b9-0x1b9.7 (1)
|
||||
0x1b0| 00 | . | [3]: 0 standard_wall_indicator (valid) 0x1ba-0x1ba.7 (1)
|
||||
0x1b0| 01 | . | [4]: 1 standard_wall_indicator (valid) 0x1bb-0x1bb.7 (1)
|
||||
0x1b0| 01 | . | [5]: 1 standard_wall_indicator (valid) 0x1bc-0x1bc.7 (1)
|
||||
0x1b0| 01 | . | [6]: 1 standard_wall_indicator (valid) 0x1bd-0x1bd.7 (1)
|
||||
0x1b0| 01 | . | [7]: 1 standard_wall_indicator (valid) 0x1be-0x1be.7 (1)
|
||||
0x1b0| 01| .| [8]: 1 standard_wall_indicator (valid) 0x1bf-0x1bf.7 (1)
|
||||
| | | ut_local_indicators[0:0]: 0x1c0-NA (0)
|
||||
| | | v2plusheader{}: 0x1c0-0x1eb.7 (44)
|
||||
0x1c0|54 5a 69 66 |TZif | magic: 0x545a6966 (valid) 0x1c0-0x1c3.7 (4)
|
||||
0x1c0| 32 | 2 | ver: "2" (0x32) (valid) 0x1c4-0x1c4.7 (1)
|
||||
0x1c0| 00 00 00 00 00 00 00 00 00 00 00| ...........| reserved: raw bits 0x1c5-0x1d3.7 (15)
|
||||
0x1d0|00 00 00 00 |.... |
|
||||
0x1d0| 00 00 00 00 | .... | isutcnt: 0 0x1d4-0x1d7.7 (4)
|
||||
0x1d0| 00 00 00 09 | .... | isstdcnt: 9 0x1d8-0x1db.7 (4)
|
||||
0x1d0| 00 00 00 00| ....| leapcnt: 0 0x1dc-0x1df.7 (4)
|
||||
0x1e0|00 00 00 41 |...A | timecnt: 65 0x1e0-0x1e3.7 (4)
|
||||
0x1e0| 00 00 00 09 | .... | typecnt: 9 0x1e4-0x1e7.7 (4)
|
||||
0x1e0| 00 00 00 10 | .... | charcnt: 16 0x1e8-0x1eb.7 (4)
|
||||
| | | v2plusdatablock{}: 0x1ec-0x483.7 (664)
|
||||
| | | transition_times[0:65]: 0x1ec-0x3f3.7 (520)
|
||||
0x1e0| ff ff ff ff| ....| [0]: "1924-04-30T20:47:48Z" (-1441249932) transition_time 0x1ec-0x1f3.7 (8)
|
||||
0x1f0|aa 18 45 74 |..Et |
|
||||
0x1f0| ff ff ff ff b5 a4 0b 50 | .......P | [1]: "1930-06-20T21:00:00Z" (-1247540400) transition_time 0x1f4-0x1fb.7 (8)
|
||||
0x1f0| 00 00 00 00| ....| [2]: "1981-03-31T20:00:00Z" (354916800) transition_time 0x1fc-0x203.7 (8)
|
||||
0x200|15 27 99 c0 |.'.. |
|
||||
0x200| 00 00 00 00 16 18 ce 30 | .......0 | [3]: "1981-09-30T19:00:00Z" (370724400) transition_time 0x204-0x20b.7 (8)
|
||||
0x200| 00 00 00 00| ....| [4]: "1982-03-31T20:00:00Z" (386452800) transition_time 0x20c-0x213.7 (8)
|
||||
0x210|17 08 cd 40 |...@ |
|
||||
0x210| 00 00 00 00 17 fa 01 b0 | ........ | [5]: "1982-09-30T19:00:00Z" (402260400) transition_time 0x214-0x21b.7 (8)
|
||||
0x210| 00 00 00 00| ....| [6]: "1983-03-31T20:00:00Z" (417988800) transition_time 0x21c-0x223.7 (8)
|
||||
0x220|18 ea 00 c0 |.... |
|
||||
0x220| 00 00 00 00 19 db 35 30 | ......50 | [7]: "1983-09-30T19:00:00Z" (433796400) transition_time 0x224-0x22b.7 (8)
|
||||
0x220| 00 00 00 00| ....| [8]: "1984-03-31T20:00:00Z" (449611200) transition_time 0x22c-0x233.7 (8)
|
||||
0x230|1a cc 85 c0 |.... |
|
||||
0x230| 00 00 00 00 1b bc 92 e0 | ........ | [9]: "1984-09-29T22:00:00Z" (465343200) transition_time 0x234-0x23b.7 (8)
|
||||
0x230| 00 00 00 00| ....| [10]: "1985-03-30T22:00:00Z" (481068000) transition_time 0x23c-0x243.7 (8)
|
||||
0x240|1c ac 83 e0 |.... |
|
||||
0x240| 00 00 00 00 1d 9c 74 e0 | ......t. | [11]: "1985-09-28T22:00:00Z" (496792800) transition_time 0x244-0x24b.7 (8)
|
||||
0x240| 00 00 00 00| ....| [12]: "1986-03-29T22:00:00Z" (512517600) transition_time 0x24c-0x253.7 (8)
|
||||
0x250|1e 8c 65 e0 |..e. |
|
||||
0x250| 00 00 00 00 1f 7c 56 e0 | .....|V. | [13]: "1986-09-27T22:00:00Z" (528242400) transition_time 0x254-0x25b.7 (8)
|
||||
0x250| 00 00 00 00| ....| [14]: "1987-03-28T22:00:00Z" (543967200) transition_time 0x25c-0x263.7 (8)
|
||||
0x260|20 6c 47 e0 | lG. |
|
||||
0x260| 00 00 00 00 21 5c 38 e0 | ....!\8. | [15]: "1987-09-26T22:00:00Z" (559692000) transition_time 0x264-0x26b.7 (8)
|
||||
0x260| 00 00 00 00| ....| [16]: "1988-03-26T22:00:00Z" (575416800) transition_time 0x26c-0x273.7 (8)
|
||||
0x270|22 4c 29 e0 |"L). |
|
||||
0x270| 00 00 00 00 23 3c 1a e0 | ....#<.. | [17]: "1988-09-24T22:00:00Z" (591141600) transition_time 0x274-0x27b.7 (8)
|
||||
0x270| 00 00 00 00| ....| [18]: "1989-03-25T22:00:00Z" (606866400) transition_time 0x27c-0x283.7 (8)
|
||||
0x280|24 2c 0b e0 |$,.. |
|
||||
0x280| 00 00 00 00 25 1c 0a f0 | ....%... | [19]: "1989-09-23T23:00:00Z" (622594800) transition_time 0x284-0x28b.7 (8)
|
||||
0x280| 00 00 00 00| ....| [20]: "1990-03-24T23:00:00Z" (638319600) transition_time 0x28c-0x293.7 (8)
|
||||
0x290|26 0b fb f0 |&... |
|
||||
0x290| 00 00 00 00 27 05 27 70 | ....'.'p | [21]: "1990-09-29T23:00:00Z" (654649200) transition_time 0x294-0x29b.7 (8)
|
||||
0x290| 00 00 00 00| ....| [22]: "1991-03-30T23:00:00Z" (670374000) transition_time 0x29c-0x2a3.7 (8)
|
||||
0x2a0|27 f5 18 70 |'..p |
|
||||
0x2a0| 00 00 00 00 29 d4 ec 60 | ....)..` | [23]: "1992-03-28T22:00:00Z" (701820000) transition_time 0x2a4-0x2ab.7 (8)
|
||||
0x2a0| 00 00 00 00| ....| [24]: "1992-09-26T23:00:00Z" (717548400) transition_time 0x2ac-0x2b3.7 (8)
|
||||
0x2b0|2a c4 eb 70 |*..p |
|
||||
0x2b0| 00 00 00 00 2b b4 dc 70 | ....+..p | [25]: "1993-03-27T23:00:00Z" (733273200) transition_time 0x2b4-0x2bb.7 (8)
|
||||
0x2b0| 00 00 00 00| ....| [26]: "1993-09-25T23:00:00Z" (748998000) transition_time 0x2bc-0x2c3.7 (8)
|
||||
0x2c0|2c a4 cd 70 |,..p |
|
||||
0x2c0| 00 00 00 00 2d 94 be 70 | ....-..p | [27]: "1994-03-26T23:00:00Z" (764722800) transition_time 0x2c4-0x2cb.7 (8)
|
||||
0x2c0| 00 00 00 00| ....| [28]: "1994-09-24T23:00:00Z" (780447600) transition_time 0x2cc-0x2d3.7 (8)
|
||||
0x2d0|2e 84 af 70 |...p |
|
||||
0x2d0| 00 00 00 00 2f 74 a0 70 | ..../t.p | [29]: "1995-03-25T23:00:00Z" (796172400) transition_time 0x2d4-0x2db.7 (8)
|
||||
0x2d0| 00 00 00 00| ....| [30]: "1995-09-23T23:00:00Z" (811897200) transition_time 0x2dc-0x2e3.7 (8)
|
||||
0x2e0|30 64 91 70 |0d.p |
|
||||
0x2e0| 00 00 00 00 31 5d bc f0 | ....1].. | [31]: "1996-03-30T23:00:00Z" (828226800) transition_time 0x2e4-0x2eb.7 (8)
|
||||
0x2e0| 00 00 00 00| ....| [32]: "1996-10-26T23:00:00Z" (846370800) transition_time 0x2ec-0x2f3.7 (8)
|
||||
0x2f0|32 72 97 f0 |2r.. |
|
||||
0x2f0| 00 00 00 00 33 3d 9e f0 | ....3=.. | [33]: "1997-03-29T23:00:00Z" (859676400) transition_time 0x2f4-0x2fb.7 (8)
|
||||
0x2f0| 00 00 00 00| ....| [34]: "1997-10-25T23:00:00Z" (877820400) transition_time 0x2fc-0x303.7 (8)
|
||||
0x300|34 52 79 f0 |4Ry. |
|
||||
0x300| 00 00 00 00 35 1d 80 f0 | ....5... | [35]: "1998-03-28T23:00:00Z" (891126000) transition_time 0x304-0x30b.7 (8)
|
||||
0x300| 00 00 00 00| ....| [36]: "1998-10-24T23:00:00Z" (909270000) transition_time 0x30c-0x313.7 (8)
|
||||
0x310|36 32 5b f0 |62[. |
|
||||
0x310| 00 00 00 00 36 fd 62 f0 | ....6.b. | [37]: "1999-03-27T23:00:00Z" (922575600) transition_time 0x314-0x31b.7 (8)
|
||||
0x310| 00 00 00 00| ....| [38]: "1999-10-30T23:00:00Z" (941324400) transition_time 0x31c-0x323.7 (8)
|
||||
0x320|38 1b 78 70 |8.xp |
|
||||
0x320| 00 00 00 00 38 dd 44 f0 | ....8.D. | [39]: "2000-03-25T23:00:00Z" (954025200) transition_time 0x324-0x32b.7 (8)
|
||||
0x320| 00 00 00 00| ....| [40]: "2000-10-28T23:00:00Z" (972774000) transition_time 0x32c-0x333.7 (8)
|
||||
0x330|39 fb 5a 70 |9.Zp |
|
||||
0x330| 00 00 00 00 3a bd 26 f0 | ....:.&. | [41]: "2001-03-24T23:00:00Z" (985474800) transition_time 0x334-0x33b.7 (8)
|
||||
0x330| 00 00 00 00| ....| [42]: "2001-10-27T23:00:00Z" (1004223600) transition_time 0x33c-0x343.7 (8)
|
||||
0x340|3b db 3c 70 |;.<p |
|
||||
0x340| 00 00 00 00 3c a6 43 70 | ....<.Cp | [43]: "2002-03-30T23:00:00Z" (1017529200) transition_time 0x344-0x34b.7 (8)
|
||||
0x340| 00 00 00 00| ....| [44]: "2002-10-26T23:00:00Z" (1035673200) transition_time 0x34c-0x353.7 (8)
|
||||
0x350|3d bb 1e 70 |=..p |
|
||||
0x350| 00 00 00 00 3e 86 25 70 | ....>.%p | [45]: "2003-03-29T23:00:00Z" (1048978800) transition_time 0x354-0x35b.7 (8)
|
||||
0x350| 00 00 00 00| ....| [46]: "2003-10-25T23:00:00Z" (1067122800) transition_time 0x35c-0x363.7 (8)
|
||||
0x360|3f 9b 00 70 |?..p |
|
||||
0x360| 00 00 00 00 40 66 07 70 | ....@f.p | [47]: "2004-03-27T23:00:00Z" (1080428400) transition_time 0x364-0x36b.7 (8)
|
||||
0x360| 00 00 00 00| ....| [48]: "2004-10-30T23:00:00Z" (1099177200) transition_time 0x36c-0x373.7 (8)
|
||||
0x370|41 84 1c f0 |A... |
|
||||
0x370| 00 00 00 00 42 45 e9 70 | ....BE.p | [49]: "2005-03-26T23:00:00Z" (1111878000) transition_time 0x374-0x37b.7 (8)
|
||||
0x370| 00 00 00 00| ....| [50]: "2005-10-29T23:00:00Z" (1130626800) transition_time 0x37c-0x383.7 (8)
|
||||
0x380|43 63 fe f0 |Cc.. |
|
||||
0x380| 00 00 00 00 44 25 cb 70 | ....D%.p | [51]: "2006-03-25T23:00:00Z" (1143327600) transition_time 0x384-0x38b.7 (8)
|
||||
0x380| 00 00 00 00| ....| [52]: "2006-10-28T23:00:00Z" (1162076400) transition_time 0x38c-0x393.7 (8)
|
||||
0x390|45 43 e0 f0 |EC.. |
|
||||
0x390| 00 00 00 00 46 05 ad 70 | ....F..p | [53]: "2007-03-24T23:00:00Z" (1174777200) transition_time 0x394-0x39b.7 (8)
|
||||
0x390| 00 00 00 00| ....| [54]: "2007-10-27T23:00:00Z" (1193526000) transition_time 0x39c-0x3a3.7 (8)
|
||||
0x3a0|47 23 c2 f0 |G#.. |
|
||||
0x3a0| 00 00 00 00 47 ee c9 f0 | ....G... | [55]: "2008-03-29T23:00:00Z" (1206831600) transition_time 0x3a4-0x3ab.7 (8)
|
||||
0x3a0| 00 00 00 00| ....| [56]: "2008-10-25T23:00:00Z" (1224975600) transition_time 0x3ac-0x3b3.7 (8)
|
||||
0x3b0|49 03 a4 f0 |I... |
|
||||
0x3b0| 00 00 00 00 49 ce ab f0 | ....I... | [57]: "2009-03-28T23:00:00Z" (1238281200) transition_time 0x3b4-0x3bb.7 (8)
|
||||
0x3b0| 00 00 00 00| ....| [58]: "2009-10-24T23:00:00Z" (1256425200) transition_time 0x3bc-0x3c3.7 (8)
|
||||
0x3c0|4a e3 86 f0 |J... |
|
||||
0x3c0| 00 00 00 00 4b ae 8d f0 | ....K... | [59]: "2010-03-27T23:00:00Z" (1269730800) transition_time 0x3c4-0x3cb.7 (8)
|
||||
0x3c0| 00 00 00 00| ....| [60]: "2010-10-30T23:00:00Z" (1288479600) transition_time 0x3cc-0x3d3.7 (8)
|
||||
0x3d0|4c cc a3 70 |L..p |
|
||||
0x3d0| 00 00 00 00 4d 8e 6f f0 | ....M.o. | [61]: "2011-03-26T23:00:00Z" (1301180400) transition_time 0x3d4-0x3db.7 (8)
|
||||
0x3d0| 00 00 00 00| ....| [62]: "2014-10-25T22:00:00Z" (1414274400) transition_time 0x3dc-0x3e3.7 (8)
|
||||
0x3e0|54 4c 1d 60 |TL.` |
|
||||
0x3e0| 00 00 00 00 56 f7 14 70 | ....V..p | [63]: "2016-03-26T23:00:00Z" (1459033200) transition_time 0x3e4-0x3eb.7 (8)
|
||||
0x3e0| 00 00 00 00| ....| [64]: "2038-01-19T03:14:07Z" (2147483647) transition_time 0x3ec-0x3f3.7 (8)
|
||||
0x3f0|7f ff ff ff |.... |
|
||||
| | | transition_types[0:65]: 0x3f4-0x434.7 (65)
|
||||
0x3f0| 01 | . | [0]: 1 transition_type 0x3f4-0x3f4.7 (1)
|
||||
0x3f0| 03 | . | [1]: 3 transition_type 0x3f5-0x3f5.7 (1)
|
||||
0x3f0| 02 | . | [2]: 2 transition_type 0x3f6-0x3f6.7 (1)
|
||||
0x3f0| 03 | . | [3]: 3 transition_type 0x3f7-0x3f7.7 (1)
|
||||
0x3f0| 02 | . | [4]: 2 transition_type 0x3f8-0x3f8.7 (1)
|
||||
0x3f0| 03 | . | [5]: 3 transition_type 0x3f9-0x3f9.7 (1)
|
||||
0x3f0| 02 | . | [6]: 2 transition_type 0x3fa-0x3fa.7 (1)
|
||||
0x3f0| 03 | . | [7]: 3 transition_type 0x3fb-0x3fb.7 (1)
|
||||
0x3f0| 02 | . | [8]: 2 transition_type 0x3fc-0x3fc.7 (1)
|
||||
0x3f0| 04 | . | [9]: 4 transition_type 0x3fd-0x3fd.7 (1)
|
||||
0x3f0| 05 | . | [10]: 5 transition_type 0x3fe-0x3fe.7 (1)
|
||||
0x3f0| 04| .| [11]: 4 transition_type 0x3ff-0x3ff.7 (1)
|
||||
0x400|05 |. | [12]: 5 transition_type 0x400-0x400.7 (1)
|
||||
0x400| 04 | . | [13]: 4 transition_type 0x401-0x401.7 (1)
|
||||
0x400| 05 | . | [14]: 5 transition_type 0x402-0x402.7 (1)
|
||||
0x400| 04 | . | [15]: 4 transition_type 0x403-0x403.7 (1)
|
||||
0x400| 05 | . | [16]: 5 transition_type 0x404-0x404.7 (1)
|
||||
0x400| 04 | . | [17]: 4 transition_type 0x405-0x405.7 (1)
|
||||
0x400| 06 | . | [18]: 6 transition_type 0x406-0x406.7 (1)
|
||||
0x400| 07 | . | [19]: 7 transition_type 0x407-0x407.7 (1)
|
||||
0x400| 06 | . | [20]: 6 transition_type 0x408-0x408.7 (1)
|
||||
0x400| 07 | . | [21]: 7 transition_type 0x409-0x409.7 (1)
|
||||
0x400| 04 | . | [22]: 4 transition_type 0x40a-0x40a.7 (1)
|
||||
0x400| 06 | . | [23]: 6 transition_type 0x40b-0x40b.7 (1)
|
||||
0x400| 07 | . | [24]: 7 transition_type 0x40c-0x40c.7 (1)
|
||||
0x400| 06 | . | [25]: 6 transition_type 0x40d-0x40d.7 (1)
|
||||
0x400| 07 | . | [26]: 7 transition_type 0x40e-0x40e.7 (1)
|
||||
0x400| 06| .| [27]: 6 transition_type 0x40f-0x40f.7 (1)
|
||||
0x410|07 |. | [28]: 7 transition_type 0x410-0x410.7 (1)
|
||||
0x410| 06 | . | [29]: 6 transition_type 0x411-0x411.7 (1)
|
||||
0x410| 07 | . | [30]: 7 transition_type 0x412-0x412.7 (1)
|
||||
0x410| 06 | . | [31]: 6 transition_type 0x413-0x413.7 (1)
|
||||
0x410| 07 | . | [32]: 7 transition_type 0x414-0x414.7 (1)
|
||||
0x410| 06 | . | [33]: 6 transition_type 0x415-0x415.7 (1)
|
||||
0x410| 07 | . | [34]: 7 transition_type 0x416-0x416.7 (1)
|
||||
0x410| 06 | . | [35]: 6 transition_type 0x417-0x417.7 (1)
|
||||
0x410| 07 | . | [36]: 7 transition_type 0x418-0x418.7 (1)
|
||||
0x410| 06 | . | [37]: 6 transition_type 0x419-0x419.7 (1)
|
||||
0x410| 07 | . | [38]: 7 transition_type 0x41a-0x41a.7 (1)
|
||||
0x410| 06 | . | [39]: 6 transition_type 0x41b-0x41b.7 (1)
|
||||
0x410| 07 | . | [40]: 7 transition_type 0x41c-0x41c.7 (1)
|
||||
0x410| 06 | . | [41]: 6 transition_type 0x41d-0x41d.7 (1)
|
||||
0x410| 07 | . | [42]: 7 transition_type 0x41e-0x41e.7 (1)
|
||||
0x410| 06| .| [43]: 6 transition_type 0x41f-0x41f.7 (1)
|
||||
0x420|07 |. | [44]: 7 transition_type 0x420-0x420.7 (1)
|
||||
0x420| 06 | . | [45]: 6 transition_type 0x421-0x421.7 (1)
|
||||
0x420| 07 | . | [46]: 7 transition_type 0x422-0x422.7 (1)
|
||||
0x420| 06 | . | [47]: 6 transition_type 0x423-0x423.7 (1)
|
||||
0x420| 07 | . | [48]: 7 transition_type 0x424-0x424.7 (1)
|
||||
0x420| 06 | . | [49]: 6 transition_type 0x425-0x425.7 (1)
|
||||
0x420| 07 | . | [50]: 7 transition_type 0x426-0x426.7 (1)
|
||||
0x420| 06 | . | [51]: 6 transition_type 0x427-0x427.7 (1)
|
||||
0x420| 07 | . | [52]: 7 transition_type 0x428-0x428.7 (1)
|
||||
0x420| 06 | . | [53]: 6 transition_type 0x429-0x429.7 (1)
|
||||
0x420| 07 | . | [54]: 7 transition_type 0x42a-0x42a.7 (1)
|
||||
0x420| 06 | . | [55]: 6 transition_type 0x42b-0x42b.7 (1)
|
||||
0x420| 07 | . | [56]: 7 transition_type 0x42c-0x42c.7 (1)
|
||||
0x420| 06 | . | [57]: 6 transition_type 0x42d-0x42d.7 (1)
|
||||
0x420| 07 | . | [58]: 7 transition_type 0x42e-0x42e.7 (1)
|
||||
0x420| 06| .| [59]: 6 transition_type 0x42f-0x42f.7 (1)
|
||||
0x430|07 |. | [60]: 7 transition_type 0x430-0x430.7 (1)
|
||||
0x430| 04 | . | [61]: 4 transition_type 0x431-0x431.7 (1)
|
||||
0x430| 07 | . | [62]: 7 transition_type 0x432-0x432.7 (1)
|
||||
0x430| 04 | . | [63]: 4 transition_type 0x433-0x433.7 (1)
|
||||
0x430| 04 | . | [64]: 4 transition_type 0x434-0x434.7 (1)
|
||||
| | | local_time_type_records[0:9]: 0x435-0x46a.7 (54)
|
||||
| | | [0]{}: local_time_type 0x435-0x43a.7 (6)
|
||||
0x430| 00 00 2d 0c | ..-. | utoff: 11532 (valid) 0x435-0x438.7 (4)
|
||||
0x430| 00 | . | dst: 0 (valid) 0x439-0x439.7 (1)
|
||||
0x430| 00 | . | idx: 0 (valid) 0x43a-0x43a.7 (1)
|
||||
| | | [1]{}: local_time_type 0x43b-0x440.7 (6)
|
||||
0x430| 00 00 2a 30 | ..*0 | utoff: 10800 (valid) 0x43b-0x43e.7 (4)
|
||||
0x430| 00| .| dst: 0 (valid) 0x43f-0x43f.7 (1)
|
||||
0x440|04 |. | idx: 4 (valid) 0x440-0x440.7 (1)
|
||||
| | | [2]{}: local_time_type 0x441-0x446.7 (6)
|
||||
0x440| 00 00 46 50 | ..FP | utoff: 18000 (valid) 0x441-0x444.7 (4)
|
||||
0x440| 01 | . | dst: 1 (valid) 0x445-0x445.7 (1)
|
||||
0x440| 08 | . | idx: 8 (valid) 0x446-0x446.7 (1)
|
||||
| | | [3]{}: local_time_type 0x447-0x44c.7 (6)
|
||||
0x440| 00 00 38 40 | ..8@ | utoff: 14400 (valid) 0x447-0x44a.7 (4)
|
||||
0x440| 00 | . | dst: 0 (valid) 0x44b-0x44b.7 (1)
|
||||
0x440| 0c | . | idx: 12 (valid) 0x44c-0x44c.7 (1)
|
||||
| | | [4]{}: local_time_type 0x44d-0x452.7 (6)
|
||||
0x440| 00 00 38| ..8| utoff: 14400 (valid) 0x44d-0x450.7 (4)
|
||||
0x450|40 |@ |
|
||||
0x450| 00 | . | dst: 0 (valid) 0x451-0x451.7 (1)
|
||||
0x450| 0c | . | idx: 12 (valid) 0x452-0x452.7 (1)
|
||||
| | | [5]{}: local_time_type 0x453-0x458.7 (6)
|
||||
0x450| 00 00 46 50 | ..FP | utoff: 18000 (valid) 0x453-0x456.7 (4)
|
||||
0x450| 01 | . | dst: 1 (valid) 0x457-0x457.7 (1)
|
||||
0x450| 08 | . | idx: 8 (valid) 0x458-0x458.7 (1)
|
||||
| | | [6]{}: local_time_type 0x459-0x45e.7 (6)
|
||||
0x450| 00 00 38 40 | ..8@ | utoff: 14400 (valid) 0x459-0x45c.7 (4)
|
||||
0x450| 01 | . | dst: 1 (valid) 0x45d-0x45d.7 (1)
|
||||
0x450| 0c | . | idx: 12 (valid) 0x45e-0x45e.7 (1)
|
||||
| | | [7]{}: local_time_type 0x45f-0x464.7 (6)
|
||||
0x450| 00| .| utoff: 10800 (valid) 0x45f-0x462.7 (4)
|
||||
0x460|00 2a 30 |.*0 |
|
||||
0x460| 00 | . | dst: 0 (valid) 0x463-0x463.7 (1)
|
||||
0x460| 04 | . | idx: 4 (valid) 0x464-0x464.7 (1)
|
||||
| | | [8]{}: local_time_type 0x465-0x46a.7 (6)
|
||||
0x460| 00 00 38 40 | ..8@ | utoff: 14400 (valid) 0x465-0x468.7 (4)
|
||||
0x460| 00 | . | dst: 0 (valid) 0x469-0x469.7 (1)
|
||||
0x460| 0c | . | idx: 12 (valid) 0x46a-0x46a.7 (1)
|
||||
| | | time_zone_designations[0:4]: 0x46b-0x47a.7 (16)
|
||||
0x460| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x46b-0x46e.7 (4)
|
||||
0x460| 2b| +| [1]: "+03" time_zone_designation 0x46f-0x472.7 (4)
|
||||
0x470|30 33 00 |03. |
|
||||
0x470| 2b 30 35 00 | +05. | [2]: "+05" time_zone_designation 0x473-0x476.7 (4)
|
||||
0x470| 2b 30 34 00 | +04. | [3]: "+04" time_zone_designation 0x477-0x47a.7 (4)
|
||||
| | | leap_second_records[0:0]: 0x47b-NA (0)
|
||||
| | | standard_wall_indicators[0:9]: 0x47b-0x483.7 (9)
|
||||
0x470| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x47b-0x47b.7 (1)
|
||||
0x470| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x47c-0x47c.7 (1)
|
||||
0x470| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x47d-0x47d.7 (1)
|
||||
0x470| 00 | . | [3]: 0 standard_wall_indicator (valid) 0x47e-0x47e.7 (1)
|
||||
0x470| 01| .| [4]: 1 standard_wall_indicator (valid) 0x47f-0x47f.7 (1)
|
||||
0x480|01 |. | [5]: 1 standard_wall_indicator (valid) 0x480-0x480.7 (1)
|
||||
0x480| 01 | . | [6]: 1 standard_wall_indicator (valid) 0x481-0x481.7 (1)
|
||||
0x480| 01 | . | [7]: 1 standard_wall_indicator (valid) 0x482-0x482.7 (1)
|
||||
0x480| 01 | . | [8]: 1 standard_wall_indicator (valid) 0x483-0x483.7 (1)
|
||||
| | | ut_local_indicators[0:0]: 0x484-NA (0)
|
||||
| | | footer{}: 0x484-0x48c.7 (9)
|
||||
0x480| 0a | . | nl1: 10 (valid) 0x484-0x484.7 (1)
|
||||
0x480| 3c 2b 30 34 3e 2d 34 | <+04>-4 | tz_string: "<+04>-4" 0x485-0x48b.7 (7)
|
||||
0x480| 0a| | .| | nl2: 10 (valid) 0x48c-0x48c.7 (1)
|
BIN
format/tzif/testdata/Asuncion
vendored
Normal file
BIN
format/tzif/testdata/Asuncion
vendored
Normal file
Binary file not shown.
756
format/tzif/testdata/Asuncion.fqtest
vendored
Normal file
756
format/tzif/testdata/Asuncion.fqtest
vendored
Normal file
@ -0,0 +1,756 @@
|
||||
$ fq -d tzif dv Asuncion
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: Asuncion (tzif) 0x0-0x863.7 (2148)
|
||||
| | | v1header{}: 0x0-0x2b.7 (44)
|
||||
0x000|54 5a 69 66 |TZif | magic: 0x545a6966 (valid) 0x0-0x3.7 (4)
|
||||
0x000| 32 | 2 | ver: "2" (0x32) (valid) 0x4-0x4.7 (1)
|
||||
0x000| 00 00 00 00 00 00 00 00 00 00 00| ...........| reserved: raw bits 0x5-0x13.7 (15)
|
||||
0x010|00 00 00 00 |.... |
|
||||
0x010| 00 00 00 00 | .... | isutcnt: 0 0x14-0x17.7 (4)
|
||||
0x010| 00 00 00 00 | .... | isstdcnt: 0 0x18-0x1b.7 (4)
|
||||
0x010| 00 00 00 1b| ....| leapcnt: 27 0x1c-0x1f.7 (4)
|
||||
0x020|00 00 00 65 |...e | timecnt: 101 0x20-0x23.7 (4)
|
||||
0x020| 00 00 00 06 | .... | typecnt: 6 0x24-0x27.7 (4)
|
||||
0x020| 00 00 00 10 | .... | charcnt: 16 0x28-0x2b.7 (4)
|
||||
| | | v1datablock{}: 0x2c-0x330.7 (773)
|
||||
| | | transition_times[0:101]: 0x2c-0x1bf.7 (404)
|
||||
0x020| 80 00 00 00| ....| [0]: "1901-12-13T20:45:52Z" (-2147483648) transition_time 0x2c-0x2f.7 (4)
|
||||
0x030|b8 17 f5 90 |.... | [1]: "1931-10-10T03:50:40Z" (-1206389360) transition_time 0x30-0x33.7 (4)
|
||||
0x030| 05 2b da 41 | .+.A | [2]: "1972-10-01T04:00:01Z" (86760001) transition_time 0x34-0x37.7 (4)
|
||||
0x030| 07 fc f0 b3 | .... | [3]: "1974-04-01T03:00:03Z" (134017203) transition_time 0x38-0x3b.7 (4)
|
||||
0x030| 0a cf 74 c4| ..t.| [4]: "1975-10-01T04:00:04Z" (181368004) transition_time 0x3c-0x3f.7 (4)
|
||||
0x040|0b 97 ca b5 |.... | [5]: "1976-03-01T03:00:05Z" (194497205) transition_time 0x40-0x43.7 (4)
|
||||
0x040| 0c b1 f9 c5 | .... | [6]: "1976-10-01T04:00:05Z" (212990405) transition_time 0x44-0x47.7 (4)
|
||||
0x040| 0d 78 fe 36 | .x.6 | [7]: "1977-03-01T03:00:06Z" (226033206) transition_time 0x48-0x4b.7 (4)
|
||||
0x040| 0e 93 2d 46| ..-F| [8]: "1977-10-01T04:00:06Z" (244526406) transition_time 0x4c-0x4f.7 (4)
|
||||
0x050|0f 5a 31 b7 |.Z1. | [9]: "1978-03-01T03:00:07Z" (257569207) transition_time 0x50-0x53.7 (4)
|
||||
0x050| 10 74 60 c7 | .t`. | [10]: "1978-10-01T04:00:07Z" (276062407) transition_time 0x54-0x57.7 (4)
|
||||
0x050| 11 64 43 b8 | .dC. | [11]: "1979-04-01T03:00:08Z" (291783608) transition_time 0x58-0x5b.7 (4)
|
||||
0x050| 12 55 94 48| .U.H| [12]: "1979-10-01T04:00:08Z" (307598408) transition_time 0x5c-0x5f.7 (4)
|
||||
0x060|13 46 c8 b9 |.F.. | [13]: "1980-04-01T03:00:09Z" (323406009) transition_time 0x60-0x63.7 (4)
|
||||
0x060| 14 38 19 49 | .8.I | [14]: "1980-10-01T04:00:09Z" (339220809) transition_time 0x64-0x67.7 (4)
|
||||
0x060| 15 27 fc 39 | .'.9 | [15]: "1981-04-01T03:00:09Z" (354942009) transition_time 0x68-0x6b.7 (4)
|
||||
0x060| 16 19 4c ca| ..L.| [16]: "1981-10-01T04:00:10Z" (370756810) transition_time 0x6c-0x6f.7 (4)
|
||||
0x070|17 09 2f ba |../. | [17]: "1982-04-01T03:00:10Z" (386478010) transition_time 0x70-0x73.7 (4)
|
||||
0x070| 17 fa 80 4b | ...K | [18]: "1982-10-01T04:00:11Z" (402292811) transition_time 0x74-0x77.7 (4)
|
||||
0x070| 18 ea 63 3b | ..c; | [19]: "1983-04-01T03:00:11Z" (418014011) transition_time 0x78-0x7b.7 (4)
|
||||
0x070| 19 db b3 cc| ....| [20]: "1983-10-01T04:00:12Z" (433828812) transition_time 0x7c-0x7f.7 (4)
|
||||
0x080|1a cc e8 3c |...< | [21]: "1984-04-01T03:00:12Z" (449636412) transition_time 0x80-0x83.7 (4)
|
||||
0x080| 1b be 38 cc | ..8. | [22]: "1984-10-01T04:00:12Z" (465451212) transition_time 0x84-0x87.7 (4)
|
||||
0x080| 1c ae 1b bc | .... | [23]: "1985-04-01T03:00:12Z" (481172412) transition_time 0x88-0x8b.7 (4)
|
||||
0x080| 1d 9f 6c 4d| ..lM| [24]: "1985-10-01T04:00:13Z" (496987213) transition_time 0x8c-0x8f.7 (4)
|
||||
0x090|1e 8f 4f 3d |..O= | [25]: "1986-04-01T03:00:13Z" (512708413) transition_time 0x90-0x93.7 (4)
|
||||
0x090| 1f 80 9f cd | .... | [26]: "1986-10-01T04:00:13Z" (528523213) transition_time 0x94-0x97.7 (4)
|
||||
0x090| 20 70 82 bd | p.. | [27]: "1987-04-01T03:00:13Z" (544244413) transition_time 0x98-0x9b.7 (4)
|
||||
0x090| 21 61 d3 4d| !a.M| [28]: "1987-10-01T04:00:13Z" (560059213) transition_time 0x9c-0x9f.7 (4)
|
||||
0x0a0|22 53 07 be |"S.. | [29]: "1988-04-01T03:00:14Z" (575866814) transition_time 0xa0-0xa3.7 (4)
|
||||
0x0a0| 23 44 58 4e | #DXN | [30]: "1988-10-01T04:00:14Z" (591681614) transition_time 0xa4-0xa7.7 (4)
|
||||
0x0a0| 24 34 3b 3e | $4;> | [31]: "1989-04-01T03:00:14Z" (607402814) transition_time 0xa8-0xab.7 (4)
|
||||
0x0a0| 25 41 3b 4e| %A;N| [32]: "1989-10-22T04:00:14Z" (625032014) transition_time 0xac-0xaf.7 (4)
|
||||
0x0b0|26 15 6e bf |&.n. | [33]: "1990-04-01T03:00:15Z" (638938815) transition_time 0xb0-0xb3.7 (4)
|
||||
0x0b0| 27 06 bf 4f | '..O | [34]: "1990-10-01T04:00:15Z" (654753615) transition_time 0xb4-0xb7.7 (4)
|
||||
0x0b0| 27 f6 a2 40 | '..@ | [35]: "1991-04-01T03:00:16Z" (670474816) transition_time 0xb8-0xbb.7 (4)
|
||||
0x0b0| 28 ee 8a 50| (..P| [36]: "1991-10-06T04:00:16Z" (686721616) transition_time 0xbc-0xbf.7 (4)
|
||||
0x0c0|29 b0 48 c0 |).H. | [37]: "1992-03-01T03:00:16Z" (699418816) transition_time 0xc0-0xc3.7 (4)
|
||||
0x0c0| 2a cf bd d1 | *... | [38]: "1992-10-05T04:00:17Z" (718257617) transition_time 0xc4-0xc7.7 (4)
|
||||
0x0c0| 2b b9 09 41 | +..A | [39]: "1993-03-31T03:00:17Z" (733546817) transition_time 0xc8-0xcb.7 (4)
|
||||
0x0c0| 2c ab ab 52| ,..R| [40]: "1993-10-01T04:00:18Z" (749448018) transition_time 0xcc-0xcf.7 (4)
|
||||
0x0d0|2d 70 0c c2 |-p.. | [41]: "1994-02-27T03:00:18Z" (762318018) transition_time 0xd0-0xd3.7 (4)
|
||||
0x0d0| 2e 8c de d3 | .... | [42]: "1994-10-01T04:00:19Z" (780984019) transition_time 0xd4-0xd7.7 (4)
|
||||
0x0d0| 2f 4f ee c3 | /O.. | [43]: "1995-02-26T03:00:19Z" (793767619) transition_time 0xd8-0xdb.7 (4)
|
||||
0x0d0| 30 6e 12 53| 0n.S| [44]: "1995-10-01T04:00:19Z" (812520019) transition_time 0xdc-0xdf.7 (4)
|
||||
0x0e0|31 36 68 44 |16hD | [45]: "1996-03-01T03:00:20Z" (825649220) transition_time 0xe0-0xe3.7 (4)
|
||||
0x0e0| 32 57 2e d4 | 2W.. | [46]: "1996-10-06T04:00:20Z" (844574420) transition_time 0xe4-0xe7.7 (4)
|
||||
0x0e0| 33 0f b2 c4 | 3... | [47]: "1997-02-23T03:00:20Z" (856666820) transition_time 0xe8-0xeb.7 (4)
|
||||
0x0e0| 34 37 10 d5| 47..| [48]: "1997-10-05T04:00:21Z" (876024021) transition_time 0xec-0xef.7 (4)
|
||||
0x0f0|34 f8 cf 45 |4..E | [49]: "1998-03-01T03:00:21Z" (888721221) transition_time 0xf0-0xf3.7 (4)
|
||||
0x0f0| 36 16 f2 d5 | 6... | [50]: "1998-10-04T04:00:21Z" (907473621) transition_time 0xf4-0xf7.7 (4)
|
||||
0x0f0| 36 e1 eb c6 | 6... | [51]: "1999-03-07T03:00:22Z" (920775622) transition_time 0xf8-0xfb.7 (4)
|
||||
0x0f0| 37 f6 d4 d6| 7...| [52]: "1999-10-03T04:00:22Z" (938923222) transition_time 0xfc-0xff.7 (4)
|
||||
0x100|38 c1 cd c6 |8... | [53]: "2000-03-05T03:00:22Z" (952225222) transition_time 0x100-0x103.7 (4)
|
||||
0x100| 39 d6 b6 d6 | 9... | [54]: "2000-10-01T04:00:22Z" (970372822) transition_time 0x104-0x107.7 (4)
|
||||
0x100| 3a a1 af c6 | :... | [55]: "2001-03-04T03:00:22Z" (983674822) transition_time 0x108-0x10b.7 (4)
|
||||
0x100| 3b bf d3 56| ;..V| [56]: "2001-10-07T04:00:22Z" (1002427222) transition_time 0x10c-0x10f.7 (4)
|
||||
0x110|3c af b6 46 |<..F | [57]: "2002-04-07T03:00:22Z" (1018148422) transition_time 0x110-0x113.7 (4)
|
||||
0x110| 3d 71 90 d6 | =q.. | [58]: "2002-09-01T04:00:22Z" (1030852822) transition_time 0x114-0x117.7 (4)
|
||||
0x110| 3e 8f 98 46 | >..F | [59]: "2003-04-06T03:00:22Z" (1049598022) transition_time 0x118-0x11b.7 (4)
|
||||
0x110| 3f 5a ad 56| ?Z.V| [60]: "2003-09-07T04:00:22Z" (1062907222) transition_time 0x11c-0x11f.7 (4)
|
||||
0x120|40 6f 7a 46 |@ozF | [61]: "2004-04-04T03:00:22Z" (1081047622) transition_time 0x120-0x123.7 (4)
|
||||
0x120| 41 71 ee 56 | Aq.V | [62]: "2004-10-17T04:00:22Z" (1097985622) transition_time 0x124-0x127.7 (4)
|
||||
0x120| 42 33 ac c6 | B3.. | [63]: "2005-03-13T03:00:22Z" (1110682822) transition_time 0x128-0x12b.7 (4)
|
||||
0x120| 43 51 d0 56| CQ.V| [64]: "2005-10-16T04:00:22Z" (1129435222) transition_time 0x12c-0x12f.7 (4)
|
||||
0x130|44 13 8e c7 |D... | [65]: "2006-03-12T03:00:23Z" (1142132423) transition_time 0x130-0x133.7 (4)
|
||||
0x130| 45 31 b2 57 | E1.W | [66]: "2006-10-15T04:00:23Z" (1160884823) transition_time 0x134-0x137.7 (4)
|
||||
0x130| 45 f3 70 c7 | E.p. | [67]: "2007-03-11T03:00:23Z" (1173582023) transition_time 0x138-0x13b.7 (4)
|
||||
0x130| 47 1a ce d7| G...| [68]: "2007-10-21T04:00:23Z" (1192939223) transition_time 0x13c-0x13f.7 (4)
|
||||
0x140|47 d3 52 c7 |G.R. | [69]: "2008-03-09T03:00:23Z" (1205031623) transition_time 0x140-0x143.7 (4)
|
||||
0x140| 48 fa b0 d7 | H... | [70]: "2008-10-19T04:00:23Z" (1224388823) transition_time 0x144-0x147.7 (4)
|
||||
0x140| 49 b3 34 c8 | I.4. | [71]: "2009-03-08T03:00:24Z" (1236481224) transition_time 0x148-0x14b.7 (4)
|
||||
0x140| 4a da 92 d8| J...| [72]: "2009-10-18T04:00:24Z" (1255838424) transition_time 0x14c-0x14f.7 (4)
|
||||
0x150|4b c1 3b 48 |K.;H | [73]: "2010-04-11T03:00:24Z" (1270954824) transition_time 0x150-0x153.7 (4)
|
||||
0x150| 4c a7 ff d8 | L... | [74]: "2010-10-03T04:00:24Z" (1286078424) transition_time 0x154-0x157.7 (4)
|
||||
0x150| 4d a1 1d 48 | M..H | [75]: "2011-04-10T03:00:24Z" (1302404424) transition_time 0x158-0x15b.7 (4)
|
||||
0x150| 4e 87 e1 d8| N...| [76]: "2011-10-02T04:00:24Z" (1317528024) transition_time 0x15c-0x15f.7 (4)
|
||||
0x160|4f 80 ff 48 |O..H | [77]: "2012-04-08T03:00:24Z" (1333854024) transition_time 0x160-0x163.7 (4)
|
||||
0x160| 50 70 fe 59 | Pp.Y | [78]: "2012-10-07T04:00:25Z" (1349582425) transition_time 0x164-0x167.7 (4)
|
||||
0x160| 51 4e 6c 49 | QNlI | [79]: "2013-03-24T03:00:25Z" (1364094025) transition_time 0x168-0x16b.7 (4)
|
||||
0x160| 52 50 e0 59| RP.Y| [80]: "2013-10-06T04:00:25Z" (1381032025) transition_time 0x16c-0x16f.7 (4)
|
||||
0x170|53 2e 4e 49 |S.NI | [81]: "2014-03-23T03:00:25Z" (1395543625) transition_time 0x170-0x173.7 (4)
|
||||
0x170| 54 30 c2 59 | T0.Y | [82]: "2014-10-05T04:00:25Z" (1412481625) transition_time 0x174-0x177.7 (4)
|
||||
0x170| 55 0e 30 49 | U.0I | [83]: "2015-03-22T03:00:25Z" (1426993225) transition_time 0x178-0x17b.7 (4)
|
||||
0x170| 56 10 a4 5a| V..Z| [84]: "2015-10-04T04:00:26Z" (1443931226) transition_time 0x17c-0x17f.7 (4)
|
||||
0x180|56 f7 4c ca |V.L. | [85]: "2016-03-27T03:00:26Z" (1459047626) transition_time 0x180-0x183.7 (4)
|
||||
0x180| 57 f0 86 5a | W..Z | [86]: "2016-10-02T04:00:26Z" (1475380826) transition_time 0x184-0x187.7 (4)
|
||||
0x180| 58 d7 2e cb | X... | [87]: "2017-03-26T03:00:27Z" (1490497227) transition_time 0x188-0x18b.7 (4)
|
||||
0x180| 59 d0 68 5b| Y.h[| [88]: "2017-10-01T04:00:27Z" (1506830427) transition_time 0x18c-0x18f.7 (4)
|
||||
0x190|5a b7 10 cb |Z... | [89]: "2018-03-25T03:00:27Z" (1521946827) transition_time 0x190-0x193.7 (4)
|
||||
0x190| 5b b9 84 db | [... | [90]: "2018-10-07T04:00:27Z" (1538884827) transition_time 0x194-0x197.7 (4)
|
||||
0x190| 5c 96 f2 cb | \... | [91]: "2019-03-24T03:00:27Z" (1553396427) transition_time 0x198-0x19b.7 (4)
|
||||
0x190| 5d 99 66 db| ].f.| [92]: "2019-10-06T04:00:27Z" (1570334427) transition_time 0x19c-0x19f.7 (4)
|
||||
0x1a0|5e 76 d4 cb |^v.. | [93]: "2020-03-22T03:00:27Z" (1584846027) transition_time 0x1a0-0x1a3.7 (4)
|
||||
0x1a0| 5f 79 48 db | _yH. | [94]: "2020-10-04T04:00:27Z" (1601784027) transition_time 0x1a4-0x1a7.7 (4)
|
||||
0x1a0| 60 5f f1 4b | `_.K | [95]: "2021-03-28T03:00:27Z" (1616900427) transition_time 0x1a8-0x1ab.7 (4)
|
||||
0x1a0| 61 59 2a db| aY*.| [96]: "2021-10-03T04:00:27Z" (1633233627) transition_time 0x1ac-0x1af.7 (4)
|
||||
0x1b0|62 3f d3 4b |b?.K | [97]: "2022-03-27T03:00:27Z" (1648350027) transition_time 0x1b0-0x1b3.7 (4)
|
||||
0x1b0| 63 39 0c db | c9.. | [98]: "2022-10-02T04:00:27Z" (1664683227) transition_time 0x1b4-0x1b7.7 (4)
|
||||
0x1b0| 64 1f b5 4b | d..K | [99]: "2023-03-26T03:00:27Z" (1679799627) transition_time 0x1b8-0x1bb.7 (4)
|
||||
0x1b0| 64 9b 78 1b| d.x.| [100]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x1bc-0x1bf.7 (4)
|
||||
| | | transition_types[0:101]: 0x1c0-0x224.7 (101)
|
||||
0x1c0|01 |. | [0]: 1 transition_type 0x1c0-0x1c0.7 (1)
|
||||
0x1c0| 02 | . | [1]: 2 transition_type 0x1c1-0x1c1.7 (1)
|
||||
0x1c0| 03 | . | [2]: 3 transition_type 0x1c2-0x1c2.7 (1)
|
||||
0x1c0| 02 | . | [3]: 2 transition_type 0x1c3-0x1c3.7 (1)
|
||||
0x1c0| 04 | . | [4]: 4 transition_type 0x1c4-0x1c4.7 (1)
|
||||
0x1c0| 02 | . | [5]: 2 transition_type 0x1c5-0x1c5.7 (1)
|
||||
0x1c0| 04 | . | [6]: 4 transition_type 0x1c6-0x1c6.7 (1)
|
||||
0x1c0| 02 | . | [7]: 2 transition_type 0x1c7-0x1c7.7 (1)
|
||||
0x1c0| 04 | . | [8]: 4 transition_type 0x1c8-0x1c8.7 (1)
|
||||
0x1c0| 02 | . | [9]: 2 transition_type 0x1c9-0x1c9.7 (1)
|
||||
0x1c0| 04 | . | [10]: 4 transition_type 0x1ca-0x1ca.7 (1)
|
||||
0x1c0| 02 | . | [11]: 2 transition_type 0x1cb-0x1cb.7 (1)
|
||||
0x1c0| 04 | . | [12]: 4 transition_type 0x1cc-0x1cc.7 (1)
|
||||
0x1c0| 02 | . | [13]: 2 transition_type 0x1cd-0x1cd.7 (1)
|
||||
0x1c0| 04 | . | [14]: 4 transition_type 0x1ce-0x1ce.7 (1)
|
||||
0x1c0| 02| .| [15]: 2 transition_type 0x1cf-0x1cf.7 (1)
|
||||
0x1d0|04 |. | [16]: 4 transition_type 0x1d0-0x1d0.7 (1)
|
||||
0x1d0| 02 | . | [17]: 2 transition_type 0x1d1-0x1d1.7 (1)
|
||||
0x1d0| 04 | . | [18]: 4 transition_type 0x1d2-0x1d2.7 (1)
|
||||
0x1d0| 02 | . | [19]: 2 transition_type 0x1d3-0x1d3.7 (1)
|
||||
0x1d0| 04 | . | [20]: 4 transition_type 0x1d4-0x1d4.7 (1)
|
||||
0x1d0| 02 | . | [21]: 2 transition_type 0x1d5-0x1d5.7 (1)
|
||||
0x1d0| 04 | . | [22]: 4 transition_type 0x1d6-0x1d6.7 (1)
|
||||
0x1d0| 02 | . | [23]: 2 transition_type 0x1d7-0x1d7.7 (1)
|
||||
0x1d0| 04 | . | [24]: 4 transition_type 0x1d8-0x1d8.7 (1)
|
||||
0x1d0| 02 | . | [25]: 2 transition_type 0x1d9-0x1d9.7 (1)
|
||||
0x1d0| 04 | . | [26]: 4 transition_type 0x1da-0x1da.7 (1)
|
||||
0x1d0| 02 | . | [27]: 2 transition_type 0x1db-0x1db.7 (1)
|
||||
0x1d0| 04 | . | [28]: 4 transition_type 0x1dc-0x1dc.7 (1)
|
||||
0x1d0| 02 | . | [29]: 2 transition_type 0x1dd-0x1dd.7 (1)
|
||||
0x1d0| 04 | . | [30]: 4 transition_type 0x1de-0x1de.7 (1)
|
||||
0x1d0| 02| .| [31]: 2 transition_type 0x1df-0x1df.7 (1)
|
||||
0x1e0|04 |. | [32]: 4 transition_type 0x1e0-0x1e0.7 (1)
|
||||
0x1e0| 02 | . | [33]: 2 transition_type 0x1e1-0x1e1.7 (1)
|
||||
0x1e0| 04 | . | [34]: 4 transition_type 0x1e2-0x1e2.7 (1)
|
||||
0x1e0| 02 | . | [35]: 2 transition_type 0x1e3-0x1e3.7 (1)
|
||||
0x1e0| 04 | . | [36]: 4 transition_type 0x1e4-0x1e4.7 (1)
|
||||
0x1e0| 02 | . | [37]: 2 transition_type 0x1e5-0x1e5.7 (1)
|
||||
0x1e0| 04 | . | [38]: 4 transition_type 0x1e6-0x1e6.7 (1)
|
||||
0x1e0| 02 | . | [39]: 2 transition_type 0x1e7-0x1e7.7 (1)
|
||||
0x1e0| 04 | . | [40]: 4 transition_type 0x1e8-0x1e8.7 (1)
|
||||
0x1e0| 02 | . | [41]: 2 transition_type 0x1e9-0x1e9.7 (1)
|
||||
0x1e0| 04 | . | [42]: 4 transition_type 0x1ea-0x1ea.7 (1)
|
||||
0x1e0| 02 | . | [43]: 2 transition_type 0x1eb-0x1eb.7 (1)
|
||||
0x1e0| 04 | . | [44]: 4 transition_type 0x1ec-0x1ec.7 (1)
|
||||
0x1e0| 02 | . | [45]: 2 transition_type 0x1ed-0x1ed.7 (1)
|
||||
0x1e0| 04 | . | [46]: 4 transition_type 0x1ee-0x1ee.7 (1)
|
||||
0x1e0| 02| .| [47]: 2 transition_type 0x1ef-0x1ef.7 (1)
|
||||
0x1f0|04 |. | [48]: 4 transition_type 0x1f0-0x1f0.7 (1)
|
||||
0x1f0| 02 | . | [49]: 2 transition_type 0x1f1-0x1f1.7 (1)
|
||||
0x1f0| 04 | . | [50]: 4 transition_type 0x1f2-0x1f2.7 (1)
|
||||
0x1f0| 02 | . | [51]: 2 transition_type 0x1f3-0x1f3.7 (1)
|
||||
0x1f0| 04 | . | [52]: 4 transition_type 0x1f4-0x1f4.7 (1)
|
||||
0x1f0| 02 | . | [53]: 2 transition_type 0x1f5-0x1f5.7 (1)
|
||||
0x1f0| 04 | . | [54]: 4 transition_type 0x1f6-0x1f6.7 (1)
|
||||
0x1f0| 02 | . | [55]: 2 transition_type 0x1f7-0x1f7.7 (1)
|
||||
0x1f0| 04 | . | [56]: 4 transition_type 0x1f8-0x1f8.7 (1)
|
||||
0x1f0| 02 | . | [57]: 2 transition_type 0x1f9-0x1f9.7 (1)
|
||||
0x1f0| 04 | . | [58]: 4 transition_type 0x1fa-0x1fa.7 (1)
|
||||
0x1f0| 02 | . | [59]: 2 transition_type 0x1fb-0x1fb.7 (1)
|
||||
0x1f0| 04 | . | [60]: 4 transition_type 0x1fc-0x1fc.7 (1)
|
||||
0x1f0| 02 | . | [61]: 2 transition_type 0x1fd-0x1fd.7 (1)
|
||||
0x1f0| 04 | . | [62]: 4 transition_type 0x1fe-0x1fe.7 (1)
|
||||
0x1f0| 02| .| [63]: 2 transition_type 0x1ff-0x1ff.7 (1)
|
||||
0x200|04 |. | [64]: 4 transition_type 0x200-0x200.7 (1)
|
||||
0x200| 02 | . | [65]: 2 transition_type 0x201-0x201.7 (1)
|
||||
0x200| 04 | . | [66]: 4 transition_type 0x202-0x202.7 (1)
|
||||
0x200| 02 | . | [67]: 2 transition_type 0x203-0x203.7 (1)
|
||||
0x200| 04 | . | [68]: 4 transition_type 0x204-0x204.7 (1)
|
||||
0x200| 02 | . | [69]: 2 transition_type 0x205-0x205.7 (1)
|
||||
0x200| 04 | . | [70]: 4 transition_type 0x206-0x206.7 (1)
|
||||
0x200| 02 | . | [71]: 2 transition_type 0x207-0x207.7 (1)
|
||||
0x200| 04 | . | [72]: 4 transition_type 0x208-0x208.7 (1)
|
||||
0x200| 02 | . | [73]: 2 transition_type 0x209-0x209.7 (1)
|
||||
0x200| 04 | . | [74]: 4 transition_type 0x20a-0x20a.7 (1)
|
||||
0x200| 02 | . | [75]: 2 transition_type 0x20b-0x20b.7 (1)
|
||||
0x200| 04 | . | [76]: 4 transition_type 0x20c-0x20c.7 (1)
|
||||
0x200| 02 | . | [77]: 2 transition_type 0x20d-0x20d.7 (1)
|
||||
0x200| 04 | . | [78]: 4 transition_type 0x20e-0x20e.7 (1)
|
||||
0x200| 02| .| [79]: 2 transition_type 0x20f-0x20f.7 (1)
|
||||
0x210|04 |. | [80]: 4 transition_type 0x210-0x210.7 (1)
|
||||
0x210| 02 | . | [81]: 2 transition_type 0x211-0x211.7 (1)
|
||||
0x210| 04 | . | [82]: 4 transition_type 0x212-0x212.7 (1)
|
||||
0x210| 02 | . | [83]: 2 transition_type 0x213-0x213.7 (1)
|
||||
0x210| 04 | . | [84]: 4 transition_type 0x214-0x214.7 (1)
|
||||
0x210| 02 | . | [85]: 2 transition_type 0x215-0x215.7 (1)
|
||||
0x210| 04 | . | [86]: 4 transition_type 0x216-0x216.7 (1)
|
||||
0x210| 02 | . | [87]: 2 transition_type 0x217-0x217.7 (1)
|
||||
0x210| 04 | . | [88]: 4 transition_type 0x218-0x218.7 (1)
|
||||
0x210| 02 | . | [89]: 2 transition_type 0x219-0x219.7 (1)
|
||||
0x210| 04 | . | [90]: 4 transition_type 0x21a-0x21a.7 (1)
|
||||
0x210| 02 | . | [91]: 2 transition_type 0x21b-0x21b.7 (1)
|
||||
0x210| 04 | . | [92]: 4 transition_type 0x21c-0x21c.7 (1)
|
||||
0x210| 02 | . | [93]: 2 transition_type 0x21d-0x21d.7 (1)
|
||||
0x210| 04 | . | [94]: 4 transition_type 0x21e-0x21e.7 (1)
|
||||
0x210| 02| .| [95]: 2 transition_type 0x21f-0x21f.7 (1)
|
||||
0x220|04 |. | [96]: 4 transition_type 0x220-0x220.7 (1)
|
||||
0x220| 02 | . | [97]: 2 transition_type 0x221-0x221.7 (1)
|
||||
0x220| 04 | . | [98]: 4 transition_type 0x222-0x222.7 (1)
|
||||
0x220| 02 | . | [99]: 2 transition_type 0x223-0x223.7 (1)
|
||||
0x220| 02 | . | [100]: 2 transition_type 0x224-0x224.7 (1)
|
||||
| | | local_time_type_records[0:6]: 0x225-0x248.7 (36)
|
||||
| | | [0]{}: local_time_type 0x225-0x22a.7 (6)
|
||||
0x220| ff ff c9 f0 | .... | utoff: -13840 (valid) 0x225-0x228.7 (4)
|
||||
0x220| 00 | . | dst: 0 (valid) 0x229-0x229.7 (1)
|
||||
0x220| 00 | . | idx: 0 (valid) 0x22a-0x22a.7 (1)
|
||||
| | | [1]{}: local_time_type 0x22b-0x230.7 (6)
|
||||
0x220| ff ff c9 f0 | .... | utoff: -13840 (valid) 0x22b-0x22e.7 (4)
|
||||
0x220| 00| .| dst: 0 (valid) 0x22f-0x22f.7 (1)
|
||||
0x230|04 |. | idx: 4 (valid) 0x230-0x230.7 (1)
|
||||
| | | [2]{}: local_time_type 0x231-0x236.7 (6)
|
||||
0x230| ff ff c7 c0 | .... | utoff: -14400 (valid) 0x231-0x234.7 (4)
|
||||
0x230| 00 | . | dst: 0 (valid) 0x235-0x235.7 (1)
|
||||
0x230| 08 | . | idx: 8 (valid) 0x236-0x236.7 (1)
|
||||
| | | [3]{}: local_time_type 0x237-0x23c.7 (6)
|
||||
0x230| ff ff d5 d0 | .... | utoff: -10800 (valid) 0x237-0x23a.7 (4)
|
||||
0x230| 00 | . | dst: 0 (valid) 0x23b-0x23b.7 (1)
|
||||
0x230| 0c | . | idx: 12 (valid) 0x23c-0x23c.7 (1)
|
||||
| | | [4]{}: local_time_type 0x23d-0x242.7 (6)
|
||||
0x230| ff ff d5| ...| utoff: -10800 (valid) 0x23d-0x240.7 (4)
|
||||
0x240|d0 |. |
|
||||
0x240| 01 | . | dst: 1 (valid) 0x241-0x241.7 (1)
|
||||
0x240| 0c | . | idx: 12 (valid) 0x242-0x242.7 (1)
|
||||
| | | [5]{}: local_time_type 0x243-0x248.7 (6)
|
||||
0x240| ff ff c7 c0 | .... | utoff: -14400 (valid) 0x243-0x246.7 (4)
|
||||
0x240| 00 | . | dst: 0 (valid) 0x247-0x247.7 (1)
|
||||
0x240| 08 | . | idx: 8 (valid) 0x248-0x248.7 (1)
|
||||
| | | time_zone_designations[0:4]: 0x249-0x258.7 (16)
|
||||
0x240| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x249-0x24c.7 (4)
|
||||
0x240| 41 4d 54| AMT| [1]: "AMT" time_zone_designation 0x24d-0x250.7 (4)
|
||||
0x250|00 |. |
|
||||
0x250| 2d 30 34 00 | -04. | [2]: "-04" time_zone_designation 0x251-0x254.7 (4)
|
||||
0x250| 2d 30 33 00 | -03. | [3]: "-03" time_zone_designation 0x255-0x258.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x259-0x330.7 (216)
|
||||
| | | [0]{}: leap_second_record 0x259-0x260.7 (8)
|
||||
0x250| 04 b2 58 00 | ..X. | occur: "1972-07-01T00:00:00Z" (78796800) 0x259-0x25c.7 (4)
|
||||
0x250| 00 00 00| ...| corr: 1 0x25d-0x260.7 (4)
|
||||
0x260|01 |. |
|
||||
| | | [1]{}: leap_second_record 0x261-0x268.7 (8)
|
||||
0x260| 05 a4 ec 01 | .... | occur: "1973-01-01T00:00:01Z" (94694401) 0x261-0x264.7 (4)
|
||||
0x260| 00 00 00 02 | .... | corr: 2 0x265-0x268.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x269-0x270.7 (8)
|
||||
0x260| 07 86 1f 82 | .... | occur: "1974-01-01T00:00:02Z" (126230402) 0x269-0x26c.7 (4)
|
||||
0x260| 00 00 00| ...| corr: 3 0x26d-0x270.7 (4)
|
||||
0x270|03 |. |
|
||||
| | | [3]{}: leap_second_record 0x271-0x278.7 (8)
|
||||
0x270| 09 67 53 03 | .gS. | occur: "1975-01-01T00:00:03Z" (157766403) 0x271-0x274.7 (4)
|
||||
0x270| 00 00 00 04 | .... | corr: 4 0x275-0x278.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x279-0x280.7 (8)
|
||||
0x270| 0b 48 86 84 | .H.. | occur: "1976-01-01T00:00:04Z" (189302404) 0x279-0x27c.7 (4)
|
||||
0x270| 00 00 00| ...| corr: 5 0x27d-0x280.7 (4)
|
||||
0x280|05 |. |
|
||||
| | | [5]{}: leap_second_record 0x281-0x288.7 (8)
|
||||
0x280| 0d 2b 0b 85 | .+.. | occur: "1977-01-01T00:00:05Z" (220924805) 0x281-0x284.7 (4)
|
||||
0x280| 00 00 00 06 | .... | corr: 6 0x285-0x288.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x289-0x290.7 (8)
|
||||
0x280| 0f 0c 3f 06 | ..?. | occur: "1978-01-01T00:00:06Z" (252460806) 0x289-0x28c.7 (4)
|
||||
0x280| 00 00 00| ...| corr: 7 0x28d-0x290.7 (4)
|
||||
0x290|07 |. |
|
||||
| | | [7]{}: leap_second_record 0x291-0x298.7 (8)
|
||||
0x290| 10 ed 72 87 | ..r. | occur: "1979-01-01T00:00:07Z" (283996807) 0x291-0x294.7 (4)
|
||||
0x290| 00 00 00 08 | .... | corr: 8 0x295-0x298.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x299-0x2a0.7 (8)
|
||||
0x290| 12 ce a6 08 | .... | occur: "1980-01-01T00:00:08Z" (315532808) 0x299-0x29c.7 (4)
|
||||
0x290| 00 00 00| ...| corr: 9 0x29d-0x2a0.7 (4)
|
||||
0x2a0|09 |. |
|
||||
| | | [9]{}: leap_second_record 0x2a1-0x2a8.7 (8)
|
||||
0x2a0| 15 9f ca 89 | .... | occur: "1981-07-01T00:00:09Z" (362793609) 0x2a1-0x2a4.7 (4)
|
||||
0x2a0| 00 00 00 0a | .... | corr: 10 0x2a5-0x2a8.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x2a9-0x2b0.7 (8)
|
||||
0x2a0| 17 80 fe 0a | .... | occur: "1982-07-01T00:00:10Z" (394329610) 0x2a9-0x2ac.7 (4)
|
||||
0x2a0| 00 00 00| ...| corr: 11 0x2ad-0x2b0.7 (4)
|
||||
0x2b0|0b |. |
|
||||
| | | [11]{}: leap_second_record 0x2b1-0x2b8.7 (8)
|
||||
0x2b0| 19 62 31 8b | .b1. | occur: "1983-07-01T00:00:11Z" (425865611) 0x2b1-0x2b4.7 (4)
|
||||
0x2b0| 00 00 00 0c | .... | corr: 12 0x2b5-0x2b8.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x2b9-0x2c0.7 (8)
|
||||
0x2b0| 1d 25 ea 0c | .%.. | occur: "1985-07-01T00:00:12Z" (489024012) 0x2b9-0x2bc.7 (4)
|
||||
0x2b0| 00 00 00| ...| corr: 13 0x2bd-0x2c0.7 (4)
|
||||
0x2c0|0d |. |
|
||||
| | | [13]{}: leap_second_record 0x2c1-0x2c8.7 (8)
|
||||
0x2c0| 21 da e5 0d | !... | occur: "1988-01-01T00:00:13Z" (567993613) 0x2c1-0x2c4.7 (4)
|
||||
0x2c0| 00 00 00 0e | .... | corr: 14 0x2c5-0x2c8.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x2c9-0x2d0.7 (8)
|
||||
0x2c0| 25 9e 9d 8e | %... | occur: "1990-01-01T00:00:14Z" (631152014) 0x2c9-0x2cc.7 (4)
|
||||
0x2c0| 00 00 00| ...| corr: 15 0x2cd-0x2d0.7 (4)
|
||||
0x2d0|0f |. |
|
||||
| | | [15]{}: leap_second_record 0x2d1-0x2d8.7 (8)
|
||||
0x2d0| 27 7f d1 0f | '... | occur: "1991-01-01T00:00:15Z" (662688015) 0x2d1-0x2d4.7 (4)
|
||||
0x2d0| 00 00 00 10 | .... | corr: 16 0x2d5-0x2d8.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x2d9-0x2e0.7 (8)
|
||||
0x2d0| 2a 50 f5 90 | *P.. | occur: "1992-07-01T00:00:16Z" (709948816) 0x2d9-0x2dc.7 (4)
|
||||
0x2d0| 00 00 00| ...| corr: 17 0x2dd-0x2e0.7 (4)
|
||||
0x2e0|11 |. |
|
||||
| | | [17]{}: leap_second_record 0x2e1-0x2e8.7 (8)
|
||||
0x2e0| 2c 32 29 11 | ,2). | occur: "1993-07-01T00:00:17Z" (741484817) 0x2e1-0x2e4.7 (4)
|
||||
0x2e0| 00 00 00 12 | .... | corr: 18 0x2e5-0x2e8.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x2e9-0x2f0.7 (8)
|
||||
0x2e0| 2e 13 5c 92 | ..\. | occur: "1994-07-01T00:00:18Z" (773020818) 0x2e9-0x2ec.7 (4)
|
||||
0x2e0| 00 00 00| ...| corr: 19 0x2ed-0x2f0.7 (4)
|
||||
0x2f0|13 |. |
|
||||
| | | [19]{}: leap_second_record 0x2f1-0x2f8.7 (8)
|
||||
0x2f0| 30 e7 24 13 | 0.$. | occur: "1996-01-01T00:00:19Z" (820454419) 0x2f1-0x2f4.7 (4)
|
||||
0x2f0| 00 00 00 14 | .... | corr: 20 0x2f5-0x2f8.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x2f9-0x300.7 (8)
|
||||
0x2f0| 33 b8 48 94 | 3.H. | occur: "1997-07-01T00:00:20Z" (867715220) 0x2f9-0x2fc.7 (4)
|
||||
0x2f0| 00 00 00| ...| corr: 21 0x2fd-0x300.7 (4)
|
||||
0x300|15 |. |
|
||||
| | | [21]{}: leap_second_record 0x301-0x308.7 (8)
|
||||
0x300| 36 8c 10 15 | 6... | occur: "1999-01-01T00:00:21Z" (915148821) 0x301-0x304.7 (4)
|
||||
0x300| 00 00 00 16 | .... | corr: 22 0x305-0x308.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x309-0x310.7 (8)
|
||||
0x300| 43 b7 1b 96 | C... | occur: "2006-01-01T00:00:22Z" (1136073622) 0x309-0x30c.7 (4)
|
||||
0x300| 00 00 00| ...| corr: 23 0x30d-0x310.7 (4)
|
||||
0x310|17 |. |
|
||||
| | | [23]{}: leap_second_record 0x311-0x318.7 (8)
|
||||
0x310| 49 5c 07 97 | I\.. | occur: "2009-01-01T00:00:23Z" (1230768023) 0x311-0x314.7 (4)
|
||||
0x310| 00 00 00 18 | .... | corr: 24 0x315-0x318.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x319-0x320.7 (8)
|
||||
0x310| 4f ef 93 18 | O... | occur: "2012-07-01T00:00:24Z" (1341100824) 0x319-0x31c.7 (4)
|
||||
0x310| 00 00 00| ...| corr: 25 0x31d-0x320.7 (4)
|
||||
0x320|19 |. |
|
||||
| | | [25]{}: leap_second_record 0x321-0x328.7 (8)
|
||||
0x320| 55 93 2d 99 | U.-. | occur: "2015-07-01T00:00:25Z" (1435708825) 0x321-0x324.7 (4)
|
||||
0x320| 00 00 00 1a | .... | corr: 26 0x325-0x328.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x329-0x330.7 (8)
|
||||
0x320| 58 68 46 9a | XhF. | occur: "2017-01-01T00:00:26Z" (1483228826) 0x329-0x32c.7 (4)
|
||||
0x320| 00 00 00| ...| corr: 27 0x32d-0x330.7 (4)
|
||||
0x330|1b |. |
|
||||
| | | standard_wall_indicators[0:0]: 0x331-NA (0)
|
||||
| | | ut_local_indicators[0:0]: 0x331-NA (0)
|
||||
| | | v2plusheader{}: 0x331-0x35c.7 (44)
|
||||
0x330| 54 5a 69 66 | TZif | magic: 0x545a6966 (valid) 0x331-0x334.7 (4)
|
||||
0x330| 32 | 2 | ver: "2" (0x32) (valid) 0x335-0x335.7 (1)
|
||||
0x330| 00 00 00 00 00 00 00 00 00 00| ..........| reserved: raw bits 0x336-0x344.7 (15)
|
||||
0x340|00 00 00 00 00 |..... |
|
||||
0x340| 00 00 00 00 | .... | isutcnt: 0 0x345-0x348.7 (4)
|
||||
0x340| 00 00 00 00 | .... | isstdcnt: 0 0x349-0x34c.7 (4)
|
||||
0x340| 00 00 00| ...| leapcnt: 27 0x34d-0x350.7 (4)
|
||||
0x350|1b |. |
|
||||
0x350| 00 00 00 65 | ...e | timecnt: 101 0x351-0x354.7 (4)
|
||||
0x350| 00 00 00 06 | .... | typecnt: 6 0x355-0x358.7 (4)
|
||||
0x350| 00 00 00 10 | .... | charcnt: 16 0x359-0x35c.7 (4)
|
||||
| | | v2plusdatablock{}: 0x35d-0x861.7 (1285)
|
||||
| | | transition_times[0:101]: 0x35d-0x684.7 (808)
|
||||
0x350| ff ff ff| ...| [0]: "1890-01-01T03:50:40Z" (-2524507760) transition_time 0x35d-0x364.7 (8)
|
||||
0x360|ff 69 87 11 90 |.i... |
|
||||
0x360| ff ff ff ff b8 17 f5 90 | ........ | [1]: "1931-10-10T03:50:40Z" (-1206389360) transition_time 0x365-0x36c.7 (8)
|
||||
0x360| 00 00 00| ...| [2]: "1972-10-01T04:00:01Z" (86760001) transition_time 0x36d-0x374.7 (8)
|
||||
0x370|00 05 2b da 41 |..+.A |
|
||||
0x370| 00 00 00 00 07 fc f0 b3 | ........ | [3]: "1974-04-01T03:00:03Z" (134017203) transition_time 0x375-0x37c.7 (8)
|
||||
0x370| 00 00 00| ...| [4]: "1975-10-01T04:00:04Z" (181368004) transition_time 0x37d-0x384.7 (8)
|
||||
0x380|00 0a cf 74 c4 |...t. |
|
||||
0x380| 00 00 00 00 0b 97 ca b5 | ........ | [5]: "1976-03-01T03:00:05Z" (194497205) transition_time 0x385-0x38c.7 (8)
|
||||
0x380| 00 00 00| ...| [6]: "1976-10-01T04:00:05Z" (212990405) transition_time 0x38d-0x394.7 (8)
|
||||
0x390|00 0c b1 f9 c5 |..... |
|
||||
0x390| 00 00 00 00 0d 78 fe 36 | .....x.6 | [7]: "1977-03-01T03:00:06Z" (226033206) transition_time 0x395-0x39c.7 (8)
|
||||
0x390| 00 00 00| ...| [8]: "1977-10-01T04:00:06Z" (244526406) transition_time 0x39d-0x3a4.7 (8)
|
||||
0x3a0|00 0e 93 2d 46 |...-F |
|
||||
0x3a0| 00 00 00 00 0f 5a 31 b7 | .....Z1. | [9]: "1978-03-01T03:00:07Z" (257569207) transition_time 0x3a5-0x3ac.7 (8)
|
||||
0x3a0| 00 00 00| ...| [10]: "1978-10-01T04:00:07Z" (276062407) transition_time 0x3ad-0x3b4.7 (8)
|
||||
0x3b0|00 10 74 60 c7 |..t`. |
|
||||
0x3b0| 00 00 00 00 11 64 43 b8 | .....dC. | [11]: "1979-04-01T03:00:08Z" (291783608) transition_time 0x3b5-0x3bc.7 (8)
|
||||
0x3b0| 00 00 00| ...| [12]: "1979-10-01T04:00:08Z" (307598408) transition_time 0x3bd-0x3c4.7 (8)
|
||||
0x3c0|00 12 55 94 48 |..U.H |
|
||||
0x3c0| 00 00 00 00 13 46 c8 b9 | .....F.. | [13]: "1980-04-01T03:00:09Z" (323406009) transition_time 0x3c5-0x3cc.7 (8)
|
||||
0x3c0| 00 00 00| ...| [14]: "1980-10-01T04:00:09Z" (339220809) transition_time 0x3cd-0x3d4.7 (8)
|
||||
0x3d0|00 14 38 19 49 |..8.I |
|
||||
0x3d0| 00 00 00 00 15 27 fc 39 | .....'.9 | [15]: "1981-04-01T03:00:09Z" (354942009) transition_time 0x3d5-0x3dc.7 (8)
|
||||
0x3d0| 00 00 00| ...| [16]: "1981-10-01T04:00:10Z" (370756810) transition_time 0x3dd-0x3e4.7 (8)
|
||||
0x3e0|00 16 19 4c ca |...L. |
|
||||
0x3e0| 00 00 00 00 17 09 2f ba | ....../. | [17]: "1982-04-01T03:00:10Z" (386478010) transition_time 0x3e5-0x3ec.7 (8)
|
||||
0x3e0| 00 00 00| ...| [18]: "1982-10-01T04:00:11Z" (402292811) transition_time 0x3ed-0x3f4.7 (8)
|
||||
0x3f0|00 17 fa 80 4b |....K |
|
||||
0x3f0| 00 00 00 00 18 ea 63 3b | ......c; | [19]: "1983-04-01T03:00:11Z" (418014011) transition_time 0x3f5-0x3fc.7 (8)
|
||||
0x3f0| 00 00 00| ...| [20]: "1983-10-01T04:00:12Z" (433828812) transition_time 0x3fd-0x404.7 (8)
|
||||
0x400|00 19 db b3 cc |..... |
|
||||
0x400| 00 00 00 00 1a cc e8 3c | .......< | [21]: "1984-04-01T03:00:12Z" (449636412) transition_time 0x405-0x40c.7 (8)
|
||||
0x400| 00 00 00| ...| [22]: "1984-10-01T04:00:12Z" (465451212) transition_time 0x40d-0x414.7 (8)
|
||||
0x410|00 1b be 38 cc |...8. |
|
||||
0x410| 00 00 00 00 1c ae 1b bc | ........ | [23]: "1985-04-01T03:00:12Z" (481172412) transition_time 0x415-0x41c.7 (8)
|
||||
0x410| 00 00 00| ...| [24]: "1985-10-01T04:00:13Z" (496987213) transition_time 0x41d-0x424.7 (8)
|
||||
0x420|00 1d 9f 6c 4d |...lM |
|
||||
0x420| 00 00 00 00 1e 8f 4f 3d | ......O= | [25]: "1986-04-01T03:00:13Z" (512708413) transition_time 0x425-0x42c.7 (8)
|
||||
0x420| 00 00 00| ...| [26]: "1986-10-01T04:00:13Z" (528523213) transition_time 0x42d-0x434.7 (8)
|
||||
0x430|00 1f 80 9f cd |..... |
|
||||
0x430| 00 00 00 00 20 70 82 bd | .... p.. | [27]: "1987-04-01T03:00:13Z" (544244413) transition_time 0x435-0x43c.7 (8)
|
||||
0x430| 00 00 00| ...| [28]: "1987-10-01T04:00:13Z" (560059213) transition_time 0x43d-0x444.7 (8)
|
||||
0x440|00 21 61 d3 4d |.!a.M |
|
||||
0x440| 00 00 00 00 22 53 07 be | ...."S.. | [29]: "1988-04-01T03:00:14Z" (575866814) transition_time 0x445-0x44c.7 (8)
|
||||
0x440| 00 00 00| ...| [30]: "1988-10-01T04:00:14Z" (591681614) transition_time 0x44d-0x454.7 (8)
|
||||
0x450|00 23 44 58 4e |.#DXN |
|
||||
0x450| 00 00 00 00 24 34 3b 3e | ....$4;> | [31]: "1989-04-01T03:00:14Z" (607402814) transition_time 0x455-0x45c.7 (8)
|
||||
0x450| 00 00 00| ...| [32]: "1989-10-22T04:00:14Z" (625032014) transition_time 0x45d-0x464.7 (8)
|
||||
0x460|00 25 41 3b 4e |.%A;N |
|
||||
0x460| 00 00 00 00 26 15 6e bf | ....&.n. | [33]: "1990-04-01T03:00:15Z" (638938815) transition_time 0x465-0x46c.7 (8)
|
||||
0x460| 00 00 00| ...| [34]: "1990-10-01T04:00:15Z" (654753615) transition_time 0x46d-0x474.7 (8)
|
||||
0x470|00 27 06 bf 4f |.'..O |
|
||||
0x470| 00 00 00 00 27 f6 a2 40 | ....'..@ | [35]: "1991-04-01T03:00:16Z" (670474816) transition_time 0x475-0x47c.7 (8)
|
||||
0x470| 00 00 00| ...| [36]: "1991-10-06T04:00:16Z" (686721616) transition_time 0x47d-0x484.7 (8)
|
||||
0x480|00 28 ee 8a 50 |.(..P |
|
||||
0x480| 00 00 00 00 29 b0 48 c0 | ....).H. | [37]: "1992-03-01T03:00:16Z" (699418816) transition_time 0x485-0x48c.7 (8)
|
||||
0x480| 00 00 00| ...| [38]: "1992-10-05T04:00:17Z" (718257617) transition_time 0x48d-0x494.7 (8)
|
||||
0x490|00 2a cf bd d1 |.*... |
|
||||
0x490| 00 00 00 00 2b b9 09 41 | ....+..A | [39]: "1993-03-31T03:00:17Z" (733546817) transition_time 0x495-0x49c.7 (8)
|
||||
0x490| 00 00 00| ...| [40]: "1993-10-01T04:00:18Z" (749448018) transition_time 0x49d-0x4a4.7 (8)
|
||||
0x4a0|00 2c ab ab 52 |.,..R |
|
||||
0x4a0| 00 00 00 00 2d 70 0c c2 | ....-p.. | [41]: "1994-02-27T03:00:18Z" (762318018) transition_time 0x4a5-0x4ac.7 (8)
|
||||
0x4a0| 00 00 00| ...| [42]: "1994-10-01T04:00:19Z" (780984019) transition_time 0x4ad-0x4b4.7 (8)
|
||||
0x4b0|00 2e 8c de d3 |..... |
|
||||
0x4b0| 00 00 00 00 2f 4f ee c3 | ..../O.. | [43]: "1995-02-26T03:00:19Z" (793767619) transition_time 0x4b5-0x4bc.7 (8)
|
||||
0x4b0| 00 00 00| ...| [44]: "1995-10-01T04:00:19Z" (812520019) transition_time 0x4bd-0x4c4.7 (8)
|
||||
0x4c0|00 30 6e 12 53 |.0n.S |
|
||||
0x4c0| 00 00 00 00 31 36 68 44 | ....16hD | [45]: "1996-03-01T03:00:20Z" (825649220) transition_time 0x4c5-0x4cc.7 (8)
|
||||
0x4c0| 00 00 00| ...| [46]: "1996-10-06T04:00:20Z" (844574420) transition_time 0x4cd-0x4d4.7 (8)
|
||||
0x4d0|00 32 57 2e d4 |.2W.. |
|
||||
0x4d0| 00 00 00 00 33 0f b2 c4 | ....3... | [47]: "1997-02-23T03:00:20Z" (856666820) transition_time 0x4d5-0x4dc.7 (8)
|
||||
0x4d0| 00 00 00| ...| [48]: "1997-10-05T04:00:21Z" (876024021) transition_time 0x4dd-0x4e4.7 (8)
|
||||
0x4e0|00 34 37 10 d5 |.47.. |
|
||||
0x4e0| 00 00 00 00 34 f8 cf 45 | ....4..E | [49]: "1998-03-01T03:00:21Z" (888721221) transition_time 0x4e5-0x4ec.7 (8)
|
||||
0x4e0| 00 00 00| ...| [50]: "1998-10-04T04:00:21Z" (907473621) transition_time 0x4ed-0x4f4.7 (8)
|
||||
0x4f0|00 36 16 f2 d5 |.6... |
|
||||
0x4f0| 00 00 00 00 36 e1 eb c6 | ....6... | [51]: "1999-03-07T03:00:22Z" (920775622) transition_time 0x4f5-0x4fc.7 (8)
|
||||
0x4f0| 00 00 00| ...| [52]: "1999-10-03T04:00:22Z" (938923222) transition_time 0x4fd-0x504.7 (8)
|
||||
0x500|00 37 f6 d4 d6 |.7... |
|
||||
0x500| 00 00 00 00 38 c1 cd c6 | ....8... | [53]: "2000-03-05T03:00:22Z" (952225222) transition_time 0x505-0x50c.7 (8)
|
||||
0x500| 00 00 00| ...| [54]: "2000-10-01T04:00:22Z" (970372822) transition_time 0x50d-0x514.7 (8)
|
||||
0x510|00 39 d6 b6 d6 |.9... |
|
||||
0x510| 00 00 00 00 3a a1 af c6 | ....:... | [55]: "2001-03-04T03:00:22Z" (983674822) transition_time 0x515-0x51c.7 (8)
|
||||
0x510| 00 00 00| ...| [56]: "2001-10-07T04:00:22Z" (1002427222) transition_time 0x51d-0x524.7 (8)
|
||||
0x520|00 3b bf d3 56 |.;..V |
|
||||
0x520| 00 00 00 00 3c af b6 46 | ....<..F | [57]: "2002-04-07T03:00:22Z" (1018148422) transition_time 0x525-0x52c.7 (8)
|
||||
0x520| 00 00 00| ...| [58]: "2002-09-01T04:00:22Z" (1030852822) transition_time 0x52d-0x534.7 (8)
|
||||
0x530|00 3d 71 90 d6 |.=q.. |
|
||||
0x530| 00 00 00 00 3e 8f 98 46 | ....>..F | [59]: "2003-04-06T03:00:22Z" (1049598022) transition_time 0x535-0x53c.7 (8)
|
||||
0x530| 00 00 00| ...| [60]: "2003-09-07T04:00:22Z" (1062907222) transition_time 0x53d-0x544.7 (8)
|
||||
0x540|00 3f 5a ad 56 |.?Z.V |
|
||||
0x540| 00 00 00 00 40 6f 7a 46 | ....@ozF | [61]: "2004-04-04T03:00:22Z" (1081047622) transition_time 0x545-0x54c.7 (8)
|
||||
0x540| 00 00 00| ...| [62]: "2004-10-17T04:00:22Z" (1097985622) transition_time 0x54d-0x554.7 (8)
|
||||
0x550|00 41 71 ee 56 |.Aq.V |
|
||||
0x550| 00 00 00 00 42 33 ac c6 | ....B3.. | [63]: "2005-03-13T03:00:22Z" (1110682822) transition_time 0x555-0x55c.7 (8)
|
||||
0x550| 00 00 00| ...| [64]: "2005-10-16T04:00:22Z" (1129435222) transition_time 0x55d-0x564.7 (8)
|
||||
0x560|00 43 51 d0 56 |.CQ.V |
|
||||
0x560| 00 00 00 00 44 13 8e c7 | ....D... | [65]: "2006-03-12T03:00:23Z" (1142132423) transition_time 0x565-0x56c.7 (8)
|
||||
0x560| 00 00 00| ...| [66]: "2006-10-15T04:00:23Z" (1160884823) transition_time 0x56d-0x574.7 (8)
|
||||
0x570|00 45 31 b2 57 |.E1.W |
|
||||
0x570| 00 00 00 00 45 f3 70 c7 | ....E.p. | [67]: "2007-03-11T03:00:23Z" (1173582023) transition_time 0x575-0x57c.7 (8)
|
||||
0x570| 00 00 00| ...| [68]: "2007-10-21T04:00:23Z" (1192939223) transition_time 0x57d-0x584.7 (8)
|
||||
0x580|00 47 1a ce d7 |.G... |
|
||||
0x580| 00 00 00 00 47 d3 52 c7 | ....G.R. | [69]: "2008-03-09T03:00:23Z" (1205031623) transition_time 0x585-0x58c.7 (8)
|
||||
0x580| 00 00 00| ...| [70]: "2008-10-19T04:00:23Z" (1224388823) transition_time 0x58d-0x594.7 (8)
|
||||
0x590|00 48 fa b0 d7 |.H... |
|
||||
0x590| 00 00 00 00 49 b3 34 c8 | ....I.4. | [71]: "2009-03-08T03:00:24Z" (1236481224) transition_time 0x595-0x59c.7 (8)
|
||||
0x590| 00 00 00| ...| [72]: "2009-10-18T04:00:24Z" (1255838424) transition_time 0x59d-0x5a4.7 (8)
|
||||
0x5a0|00 4a da 92 d8 |.J... |
|
||||
0x5a0| 00 00 00 00 4b c1 3b 48 | ....K.;H | [73]: "2010-04-11T03:00:24Z" (1270954824) transition_time 0x5a5-0x5ac.7 (8)
|
||||
0x5a0| 00 00 00| ...| [74]: "2010-10-03T04:00:24Z" (1286078424) transition_time 0x5ad-0x5b4.7 (8)
|
||||
0x5b0|00 4c a7 ff d8 |.L... |
|
||||
0x5b0| 00 00 00 00 4d a1 1d 48 | ....M..H | [75]: "2011-04-10T03:00:24Z" (1302404424) transition_time 0x5b5-0x5bc.7 (8)
|
||||
0x5b0| 00 00 00| ...| [76]: "2011-10-02T04:00:24Z" (1317528024) transition_time 0x5bd-0x5c4.7 (8)
|
||||
0x5c0|00 4e 87 e1 d8 |.N... |
|
||||
0x5c0| 00 00 00 00 4f 80 ff 48 | ....O..H | [77]: "2012-04-08T03:00:24Z" (1333854024) transition_time 0x5c5-0x5cc.7 (8)
|
||||
0x5c0| 00 00 00| ...| [78]: "2012-10-07T04:00:25Z" (1349582425) transition_time 0x5cd-0x5d4.7 (8)
|
||||
0x5d0|00 50 70 fe 59 |.Pp.Y |
|
||||
0x5d0| 00 00 00 00 51 4e 6c 49 | ....QNlI | [79]: "2013-03-24T03:00:25Z" (1364094025) transition_time 0x5d5-0x5dc.7 (8)
|
||||
0x5d0| 00 00 00| ...| [80]: "2013-10-06T04:00:25Z" (1381032025) transition_time 0x5dd-0x5e4.7 (8)
|
||||
0x5e0|00 52 50 e0 59 |.RP.Y |
|
||||
0x5e0| 00 00 00 00 53 2e 4e 49 | ....S.NI | [81]: "2014-03-23T03:00:25Z" (1395543625) transition_time 0x5e5-0x5ec.7 (8)
|
||||
0x5e0| 00 00 00| ...| [82]: "2014-10-05T04:00:25Z" (1412481625) transition_time 0x5ed-0x5f4.7 (8)
|
||||
0x5f0|00 54 30 c2 59 |.T0.Y |
|
||||
0x5f0| 00 00 00 00 55 0e 30 49 | ....U.0I | [83]: "2015-03-22T03:00:25Z" (1426993225) transition_time 0x5f5-0x5fc.7 (8)
|
||||
0x5f0| 00 00 00| ...| [84]: "2015-10-04T04:00:26Z" (1443931226) transition_time 0x5fd-0x604.7 (8)
|
||||
0x600|00 56 10 a4 5a |.V..Z |
|
||||
0x600| 00 00 00 00 56 f7 4c ca | ....V.L. | [85]: "2016-03-27T03:00:26Z" (1459047626) transition_time 0x605-0x60c.7 (8)
|
||||
0x600| 00 00 00| ...| [86]: "2016-10-02T04:00:26Z" (1475380826) transition_time 0x60d-0x614.7 (8)
|
||||
0x610|00 57 f0 86 5a |.W..Z |
|
||||
0x610| 00 00 00 00 58 d7 2e cb | ....X... | [87]: "2017-03-26T03:00:27Z" (1490497227) transition_time 0x615-0x61c.7 (8)
|
||||
0x610| 00 00 00| ...| [88]: "2017-10-01T04:00:27Z" (1506830427) transition_time 0x61d-0x624.7 (8)
|
||||
0x620|00 59 d0 68 5b |.Y.h[ |
|
||||
0x620| 00 00 00 00 5a b7 10 cb | ....Z... | [89]: "2018-03-25T03:00:27Z" (1521946827) transition_time 0x625-0x62c.7 (8)
|
||||
0x620| 00 00 00| ...| [90]: "2018-10-07T04:00:27Z" (1538884827) transition_time 0x62d-0x634.7 (8)
|
||||
0x630|00 5b b9 84 db |.[... |
|
||||
0x630| 00 00 00 00 5c 96 f2 cb | ....\... | [91]: "2019-03-24T03:00:27Z" (1553396427) transition_time 0x635-0x63c.7 (8)
|
||||
0x630| 00 00 00| ...| [92]: "2019-10-06T04:00:27Z" (1570334427) transition_time 0x63d-0x644.7 (8)
|
||||
0x640|00 5d 99 66 db |.].f. |
|
||||
0x640| 00 00 00 00 5e 76 d4 cb | ....^v.. | [93]: "2020-03-22T03:00:27Z" (1584846027) transition_time 0x645-0x64c.7 (8)
|
||||
0x640| 00 00 00| ...| [94]: "2020-10-04T04:00:27Z" (1601784027) transition_time 0x64d-0x654.7 (8)
|
||||
0x650|00 5f 79 48 db |._yH. |
|
||||
0x650| 00 00 00 00 60 5f f1 4b | ....`_.K | [95]: "2021-03-28T03:00:27Z" (1616900427) transition_time 0x655-0x65c.7 (8)
|
||||
0x650| 00 00 00| ...| [96]: "2021-10-03T04:00:27Z" (1633233627) transition_time 0x65d-0x664.7 (8)
|
||||
0x660|00 61 59 2a db |.aY*. |
|
||||
0x660| 00 00 00 00 62 3f d3 4b | ....b?.K | [97]: "2022-03-27T03:00:27Z" (1648350027) transition_time 0x665-0x66c.7 (8)
|
||||
0x660| 00 00 00| ...| [98]: "2022-10-02T04:00:27Z" (1664683227) transition_time 0x66d-0x674.7 (8)
|
||||
0x670|00 63 39 0c db |.c9.. |
|
||||
0x670| 00 00 00 00 64 1f b5 4b | ....d..K | [99]: "2023-03-26T03:00:27Z" (1679799627) transition_time 0x675-0x67c.7 (8)
|
||||
0x670| 00 00 00| ...| [100]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x67d-0x684.7 (8)
|
||||
0x680|00 64 9b 78 1b |.d.x. |
|
||||
| | | transition_types[0:101]: 0x685-0x6e9.7 (101)
|
||||
0x680| 01 | . | [0]: 1 transition_type 0x685-0x685.7 (1)
|
||||
0x680| 02 | . | [1]: 2 transition_type 0x686-0x686.7 (1)
|
||||
0x680| 03 | . | [2]: 3 transition_type 0x687-0x687.7 (1)
|
||||
0x680| 02 | . | [3]: 2 transition_type 0x688-0x688.7 (1)
|
||||
0x680| 04 | . | [4]: 4 transition_type 0x689-0x689.7 (1)
|
||||
0x680| 02 | . | [5]: 2 transition_type 0x68a-0x68a.7 (1)
|
||||
0x680| 04 | . | [6]: 4 transition_type 0x68b-0x68b.7 (1)
|
||||
0x680| 02 | . | [7]: 2 transition_type 0x68c-0x68c.7 (1)
|
||||
0x680| 04 | . | [8]: 4 transition_type 0x68d-0x68d.7 (1)
|
||||
0x680| 02 | . | [9]: 2 transition_type 0x68e-0x68e.7 (1)
|
||||
0x680| 04| .| [10]: 4 transition_type 0x68f-0x68f.7 (1)
|
||||
0x690|02 |. | [11]: 2 transition_type 0x690-0x690.7 (1)
|
||||
0x690| 04 | . | [12]: 4 transition_type 0x691-0x691.7 (1)
|
||||
0x690| 02 | . | [13]: 2 transition_type 0x692-0x692.7 (1)
|
||||
0x690| 04 | . | [14]: 4 transition_type 0x693-0x693.7 (1)
|
||||
0x690| 02 | . | [15]: 2 transition_type 0x694-0x694.7 (1)
|
||||
0x690| 04 | . | [16]: 4 transition_type 0x695-0x695.7 (1)
|
||||
0x690| 02 | . | [17]: 2 transition_type 0x696-0x696.7 (1)
|
||||
0x690| 04 | . | [18]: 4 transition_type 0x697-0x697.7 (1)
|
||||
0x690| 02 | . | [19]: 2 transition_type 0x698-0x698.7 (1)
|
||||
0x690| 04 | . | [20]: 4 transition_type 0x699-0x699.7 (1)
|
||||
0x690| 02 | . | [21]: 2 transition_type 0x69a-0x69a.7 (1)
|
||||
0x690| 04 | . | [22]: 4 transition_type 0x69b-0x69b.7 (1)
|
||||
0x690| 02 | . | [23]: 2 transition_type 0x69c-0x69c.7 (1)
|
||||
0x690| 04 | . | [24]: 4 transition_type 0x69d-0x69d.7 (1)
|
||||
0x690| 02 | . | [25]: 2 transition_type 0x69e-0x69e.7 (1)
|
||||
0x690| 04| .| [26]: 4 transition_type 0x69f-0x69f.7 (1)
|
||||
0x6a0|02 |. | [27]: 2 transition_type 0x6a0-0x6a0.7 (1)
|
||||
0x6a0| 04 | . | [28]: 4 transition_type 0x6a1-0x6a1.7 (1)
|
||||
0x6a0| 02 | . | [29]: 2 transition_type 0x6a2-0x6a2.7 (1)
|
||||
0x6a0| 04 | . | [30]: 4 transition_type 0x6a3-0x6a3.7 (1)
|
||||
0x6a0| 02 | . | [31]: 2 transition_type 0x6a4-0x6a4.7 (1)
|
||||
0x6a0| 04 | . | [32]: 4 transition_type 0x6a5-0x6a5.7 (1)
|
||||
0x6a0| 02 | . | [33]: 2 transition_type 0x6a6-0x6a6.7 (1)
|
||||
0x6a0| 04 | . | [34]: 4 transition_type 0x6a7-0x6a7.7 (1)
|
||||
0x6a0| 02 | . | [35]: 2 transition_type 0x6a8-0x6a8.7 (1)
|
||||
0x6a0| 04 | . | [36]: 4 transition_type 0x6a9-0x6a9.7 (1)
|
||||
0x6a0| 02 | . | [37]: 2 transition_type 0x6aa-0x6aa.7 (1)
|
||||
0x6a0| 04 | . | [38]: 4 transition_type 0x6ab-0x6ab.7 (1)
|
||||
0x6a0| 02 | . | [39]: 2 transition_type 0x6ac-0x6ac.7 (1)
|
||||
0x6a0| 04 | . | [40]: 4 transition_type 0x6ad-0x6ad.7 (1)
|
||||
0x6a0| 02 | . | [41]: 2 transition_type 0x6ae-0x6ae.7 (1)
|
||||
0x6a0| 04| .| [42]: 4 transition_type 0x6af-0x6af.7 (1)
|
||||
0x6b0|02 |. | [43]: 2 transition_type 0x6b0-0x6b0.7 (1)
|
||||
0x6b0| 04 | . | [44]: 4 transition_type 0x6b1-0x6b1.7 (1)
|
||||
0x6b0| 02 | . | [45]: 2 transition_type 0x6b2-0x6b2.7 (1)
|
||||
0x6b0| 04 | . | [46]: 4 transition_type 0x6b3-0x6b3.7 (1)
|
||||
0x6b0| 02 | . | [47]: 2 transition_type 0x6b4-0x6b4.7 (1)
|
||||
0x6b0| 04 | . | [48]: 4 transition_type 0x6b5-0x6b5.7 (1)
|
||||
0x6b0| 02 | . | [49]: 2 transition_type 0x6b6-0x6b6.7 (1)
|
||||
0x6b0| 04 | . | [50]: 4 transition_type 0x6b7-0x6b7.7 (1)
|
||||
0x6b0| 02 | . | [51]: 2 transition_type 0x6b8-0x6b8.7 (1)
|
||||
0x6b0| 04 | . | [52]: 4 transition_type 0x6b9-0x6b9.7 (1)
|
||||
0x6b0| 02 | . | [53]: 2 transition_type 0x6ba-0x6ba.7 (1)
|
||||
0x6b0| 04 | . | [54]: 4 transition_type 0x6bb-0x6bb.7 (1)
|
||||
0x6b0| 02 | . | [55]: 2 transition_type 0x6bc-0x6bc.7 (1)
|
||||
0x6b0| 04 | . | [56]: 4 transition_type 0x6bd-0x6bd.7 (1)
|
||||
0x6b0| 02 | . | [57]: 2 transition_type 0x6be-0x6be.7 (1)
|
||||
0x6b0| 04| .| [58]: 4 transition_type 0x6bf-0x6bf.7 (1)
|
||||
0x6c0|02 |. | [59]: 2 transition_type 0x6c0-0x6c0.7 (1)
|
||||
0x6c0| 04 | . | [60]: 4 transition_type 0x6c1-0x6c1.7 (1)
|
||||
0x6c0| 02 | . | [61]: 2 transition_type 0x6c2-0x6c2.7 (1)
|
||||
0x6c0| 04 | . | [62]: 4 transition_type 0x6c3-0x6c3.7 (1)
|
||||
0x6c0| 02 | . | [63]: 2 transition_type 0x6c4-0x6c4.7 (1)
|
||||
0x6c0| 04 | . | [64]: 4 transition_type 0x6c5-0x6c5.7 (1)
|
||||
0x6c0| 02 | . | [65]: 2 transition_type 0x6c6-0x6c6.7 (1)
|
||||
0x6c0| 04 | . | [66]: 4 transition_type 0x6c7-0x6c7.7 (1)
|
||||
0x6c0| 02 | . | [67]: 2 transition_type 0x6c8-0x6c8.7 (1)
|
||||
0x6c0| 04 | . | [68]: 4 transition_type 0x6c9-0x6c9.7 (1)
|
||||
0x6c0| 02 | . | [69]: 2 transition_type 0x6ca-0x6ca.7 (1)
|
||||
0x6c0| 04 | . | [70]: 4 transition_type 0x6cb-0x6cb.7 (1)
|
||||
0x6c0| 02 | . | [71]: 2 transition_type 0x6cc-0x6cc.7 (1)
|
||||
0x6c0| 04 | . | [72]: 4 transition_type 0x6cd-0x6cd.7 (1)
|
||||
0x6c0| 02 | . | [73]: 2 transition_type 0x6ce-0x6ce.7 (1)
|
||||
0x6c0| 04| .| [74]: 4 transition_type 0x6cf-0x6cf.7 (1)
|
||||
0x6d0|02 |. | [75]: 2 transition_type 0x6d0-0x6d0.7 (1)
|
||||
0x6d0| 04 | . | [76]: 4 transition_type 0x6d1-0x6d1.7 (1)
|
||||
0x6d0| 02 | . | [77]: 2 transition_type 0x6d2-0x6d2.7 (1)
|
||||
0x6d0| 04 | . | [78]: 4 transition_type 0x6d3-0x6d3.7 (1)
|
||||
0x6d0| 02 | . | [79]: 2 transition_type 0x6d4-0x6d4.7 (1)
|
||||
0x6d0| 04 | . | [80]: 4 transition_type 0x6d5-0x6d5.7 (1)
|
||||
0x6d0| 02 | . | [81]: 2 transition_type 0x6d6-0x6d6.7 (1)
|
||||
0x6d0| 04 | . | [82]: 4 transition_type 0x6d7-0x6d7.7 (1)
|
||||
0x6d0| 02 | . | [83]: 2 transition_type 0x6d8-0x6d8.7 (1)
|
||||
0x6d0| 04 | . | [84]: 4 transition_type 0x6d9-0x6d9.7 (1)
|
||||
0x6d0| 02 | . | [85]: 2 transition_type 0x6da-0x6da.7 (1)
|
||||
0x6d0| 04 | . | [86]: 4 transition_type 0x6db-0x6db.7 (1)
|
||||
0x6d0| 02 | . | [87]: 2 transition_type 0x6dc-0x6dc.7 (1)
|
||||
0x6d0| 04 | . | [88]: 4 transition_type 0x6dd-0x6dd.7 (1)
|
||||
0x6d0| 02 | . | [89]: 2 transition_type 0x6de-0x6de.7 (1)
|
||||
0x6d0| 04| .| [90]: 4 transition_type 0x6df-0x6df.7 (1)
|
||||
0x6e0|02 |. | [91]: 2 transition_type 0x6e0-0x6e0.7 (1)
|
||||
0x6e0| 04 | . | [92]: 4 transition_type 0x6e1-0x6e1.7 (1)
|
||||
0x6e0| 02 | . | [93]: 2 transition_type 0x6e2-0x6e2.7 (1)
|
||||
0x6e0| 04 | . | [94]: 4 transition_type 0x6e3-0x6e3.7 (1)
|
||||
0x6e0| 02 | . | [95]: 2 transition_type 0x6e4-0x6e4.7 (1)
|
||||
0x6e0| 04 | . | [96]: 4 transition_type 0x6e5-0x6e5.7 (1)
|
||||
0x6e0| 02 | . | [97]: 2 transition_type 0x6e6-0x6e6.7 (1)
|
||||
0x6e0| 04 | . | [98]: 4 transition_type 0x6e7-0x6e7.7 (1)
|
||||
0x6e0| 02 | . | [99]: 2 transition_type 0x6e8-0x6e8.7 (1)
|
||||
0x6e0| 02 | . | [100]: 2 transition_type 0x6e9-0x6e9.7 (1)
|
||||
| | | local_time_type_records[0:6]: 0x6ea-0x70d.7 (36)
|
||||
| | | [0]{}: local_time_type 0x6ea-0x6ef.7 (6)
|
||||
0x6e0| ff ff c9 f0 | .... | utoff: -13840 (valid) 0x6ea-0x6ed.7 (4)
|
||||
0x6e0| 00 | . | dst: 0 (valid) 0x6ee-0x6ee.7 (1)
|
||||
0x6e0| 00| .| idx: 0 (valid) 0x6ef-0x6ef.7 (1)
|
||||
| | | [1]{}: local_time_type 0x6f0-0x6f5.7 (6)
|
||||
0x6f0|ff ff c9 f0 |.... | utoff: -13840 (valid) 0x6f0-0x6f3.7 (4)
|
||||
0x6f0| 00 | . | dst: 0 (valid) 0x6f4-0x6f4.7 (1)
|
||||
0x6f0| 04 | . | idx: 4 (valid) 0x6f5-0x6f5.7 (1)
|
||||
| | | [2]{}: local_time_type 0x6f6-0x6fb.7 (6)
|
||||
0x6f0| ff ff c7 c0 | .... | utoff: -14400 (valid) 0x6f6-0x6f9.7 (4)
|
||||
0x6f0| 00 | . | dst: 0 (valid) 0x6fa-0x6fa.7 (1)
|
||||
0x6f0| 08 | . | idx: 8 (valid) 0x6fb-0x6fb.7 (1)
|
||||
| | | [3]{}: local_time_type 0x6fc-0x701.7 (6)
|
||||
0x6f0| ff ff d5 d0| ....| utoff: -10800 (valid) 0x6fc-0x6ff.7 (4)
|
||||
0x700|00 |. | dst: 0 (valid) 0x700-0x700.7 (1)
|
||||
0x700| 0c | . | idx: 12 (valid) 0x701-0x701.7 (1)
|
||||
| | | [4]{}: local_time_type 0x702-0x707.7 (6)
|
||||
0x700| ff ff d5 d0 | .... | utoff: -10800 (valid) 0x702-0x705.7 (4)
|
||||
0x700| 01 | . | dst: 1 (valid) 0x706-0x706.7 (1)
|
||||
0x700| 0c | . | idx: 12 (valid) 0x707-0x707.7 (1)
|
||||
| | | [5]{}: local_time_type 0x708-0x70d.7 (6)
|
||||
0x700| ff ff c7 c0 | .... | utoff: -14400 (valid) 0x708-0x70b.7 (4)
|
||||
0x700| 00 | . | dst: 0 (valid) 0x70c-0x70c.7 (1)
|
||||
0x700| 08 | . | idx: 8 (valid) 0x70d-0x70d.7 (1)
|
||||
| | | time_zone_designations[0:4]: 0x70e-0x71d.7 (16)
|
||||
0x700| 4c 4d| LM| [0]: "LMT" time_zone_designation 0x70e-0x711.7 (4)
|
||||
0x710|54 00 |T. |
|
||||
0x710| 41 4d 54 00 | AMT. | [1]: "AMT" time_zone_designation 0x712-0x715.7 (4)
|
||||
0x710| 2d 30 34 00 | -04. | [2]: "-04" time_zone_designation 0x716-0x719.7 (4)
|
||||
0x710| 2d 30 33 00 | -03. | [3]: "-03" time_zone_designation 0x71a-0x71d.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x71e-0x861.7 (324)
|
||||
| | | [0]{}: leap_second_record 0x71e-0x729.7 (12)
|
||||
0x710| 00 00| ..| occur: "1972-07-01T00:00:00Z" (78796800) 0x71e-0x725.7 (8)
|
||||
0x720|00 00 04 b2 58 00 |....X. |
|
||||
0x720| 00 00 00 01 | .... | corr: 1 0x726-0x729.7 (4)
|
||||
| | | [1]{}: leap_second_record 0x72a-0x735.7 (12)
|
||||
0x720| 00 00 00 00 05 a4| ......| occur: "1973-01-01T00:00:01Z" (94694401) 0x72a-0x731.7 (8)
|
||||
0x730|ec 01 |.. |
|
||||
0x730| 00 00 00 02 | .... | corr: 2 0x732-0x735.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x736-0x741.7 (12)
|
||||
0x730| 00 00 00 00 07 86 1f 82 | ........ | occur: "1974-01-01T00:00:02Z" (126230402) 0x736-0x73d.7 (8)
|
||||
0x730| 00 00| ..| corr: 3 0x73e-0x741.7 (4)
|
||||
0x740|00 03 |.. |
|
||||
| | | [3]{}: leap_second_record 0x742-0x74d.7 (12)
|
||||
0x740| 00 00 00 00 09 67 53 03 | .....gS. | occur: "1975-01-01T00:00:03Z" (157766403) 0x742-0x749.7 (8)
|
||||
0x740| 00 00 00 04 | .... | corr: 4 0x74a-0x74d.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x74e-0x759.7 (12)
|
||||
0x740| 00 00| ..| occur: "1976-01-01T00:00:04Z" (189302404) 0x74e-0x755.7 (8)
|
||||
0x750|00 00 0b 48 86 84 |...H.. |
|
||||
0x750| 00 00 00 05 | .... | corr: 5 0x756-0x759.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x75a-0x765.7 (12)
|
||||
0x750| 00 00 00 00 0d 2b| .....+| occur: "1977-01-01T00:00:05Z" (220924805) 0x75a-0x761.7 (8)
|
||||
0x760|0b 85 |.. |
|
||||
0x760| 00 00 00 06 | .... | corr: 6 0x762-0x765.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x766-0x771.7 (12)
|
||||
0x760| 00 00 00 00 0f 0c 3f 06 | ......?. | occur: "1978-01-01T00:00:06Z" (252460806) 0x766-0x76d.7 (8)
|
||||
0x760| 00 00| ..| corr: 7 0x76e-0x771.7 (4)
|
||||
0x770|00 07 |.. |
|
||||
| | | [7]{}: leap_second_record 0x772-0x77d.7 (12)
|
||||
0x770| 00 00 00 00 10 ed 72 87 | ......r. | occur: "1979-01-01T00:00:07Z" (283996807) 0x772-0x779.7 (8)
|
||||
0x770| 00 00 00 08 | .... | corr: 8 0x77a-0x77d.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x77e-0x789.7 (12)
|
||||
0x770| 00 00| ..| occur: "1980-01-01T00:00:08Z" (315532808) 0x77e-0x785.7 (8)
|
||||
0x780|00 00 12 ce a6 08 |...... |
|
||||
0x780| 00 00 00 09 | .... | corr: 9 0x786-0x789.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x78a-0x795.7 (12)
|
||||
0x780| 00 00 00 00 15 9f| ......| occur: "1981-07-01T00:00:09Z" (362793609) 0x78a-0x791.7 (8)
|
||||
0x790|ca 89 |.. |
|
||||
0x790| 00 00 00 0a | .... | corr: 10 0x792-0x795.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x796-0x7a1.7 (12)
|
||||
0x790| 00 00 00 00 17 80 fe 0a | ........ | occur: "1982-07-01T00:00:10Z" (394329610) 0x796-0x79d.7 (8)
|
||||
0x790| 00 00| ..| corr: 11 0x79e-0x7a1.7 (4)
|
||||
0x7a0|00 0b |.. |
|
||||
| | | [11]{}: leap_second_record 0x7a2-0x7ad.7 (12)
|
||||
0x7a0| 00 00 00 00 19 62 31 8b | .....b1. | occur: "1983-07-01T00:00:11Z" (425865611) 0x7a2-0x7a9.7 (8)
|
||||
0x7a0| 00 00 00 0c | .... | corr: 12 0x7aa-0x7ad.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x7ae-0x7b9.7 (12)
|
||||
0x7a0| 00 00| ..| occur: "1985-07-01T00:00:12Z" (489024012) 0x7ae-0x7b5.7 (8)
|
||||
0x7b0|00 00 1d 25 ea 0c |...%.. |
|
||||
0x7b0| 00 00 00 0d | .... | corr: 13 0x7b6-0x7b9.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x7ba-0x7c5.7 (12)
|
||||
0x7b0| 00 00 00 00 21 da| ....!.| occur: "1988-01-01T00:00:13Z" (567993613) 0x7ba-0x7c1.7 (8)
|
||||
0x7c0|e5 0d |.. |
|
||||
0x7c0| 00 00 00 0e | .... | corr: 14 0x7c2-0x7c5.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x7c6-0x7d1.7 (12)
|
||||
0x7c0| 00 00 00 00 25 9e 9d 8e | ....%... | occur: "1990-01-01T00:00:14Z" (631152014) 0x7c6-0x7cd.7 (8)
|
||||
0x7c0| 00 00| ..| corr: 15 0x7ce-0x7d1.7 (4)
|
||||
0x7d0|00 0f |.. |
|
||||
| | | [15]{}: leap_second_record 0x7d2-0x7dd.7 (12)
|
||||
0x7d0| 00 00 00 00 27 7f d1 0f | ....'... | occur: "1991-01-01T00:00:15Z" (662688015) 0x7d2-0x7d9.7 (8)
|
||||
0x7d0| 00 00 00 10 | .... | corr: 16 0x7da-0x7dd.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x7de-0x7e9.7 (12)
|
||||
0x7d0| 00 00| ..| occur: "1992-07-01T00:00:16Z" (709948816) 0x7de-0x7e5.7 (8)
|
||||
0x7e0|00 00 2a 50 f5 90 |..*P.. |
|
||||
0x7e0| 00 00 00 11 | .... | corr: 17 0x7e6-0x7e9.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x7ea-0x7f5.7 (12)
|
||||
0x7e0| 00 00 00 00 2c 32| ....,2| occur: "1993-07-01T00:00:17Z" (741484817) 0x7ea-0x7f1.7 (8)
|
||||
0x7f0|29 11 |). |
|
||||
0x7f0| 00 00 00 12 | .... | corr: 18 0x7f2-0x7f5.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x7f6-0x801.7 (12)
|
||||
0x7f0| 00 00 00 00 2e 13 5c 92 | ......\. | occur: "1994-07-01T00:00:18Z" (773020818) 0x7f6-0x7fd.7 (8)
|
||||
0x7f0| 00 00| ..| corr: 19 0x7fe-0x801.7 (4)
|
||||
0x800|00 13 |.. |
|
||||
| | | [19]{}: leap_second_record 0x802-0x80d.7 (12)
|
||||
0x800| 00 00 00 00 30 e7 24 13 | ....0.$. | occur: "1996-01-01T00:00:19Z" (820454419) 0x802-0x809.7 (8)
|
||||
0x800| 00 00 00 14 | .... | corr: 20 0x80a-0x80d.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x80e-0x819.7 (12)
|
||||
0x800| 00 00| ..| occur: "1997-07-01T00:00:20Z" (867715220) 0x80e-0x815.7 (8)
|
||||
0x810|00 00 33 b8 48 94 |..3.H. |
|
||||
0x810| 00 00 00 15 | .... | corr: 21 0x816-0x819.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x81a-0x825.7 (12)
|
||||
0x810| 00 00 00 00 36 8c| ....6.| occur: "1999-01-01T00:00:21Z" (915148821) 0x81a-0x821.7 (8)
|
||||
0x820|10 15 |.. |
|
||||
0x820| 00 00 00 16 | .... | corr: 22 0x822-0x825.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x826-0x831.7 (12)
|
||||
0x820| 00 00 00 00 43 b7 1b 96 | ....C... | occur: "2006-01-01T00:00:22Z" (1136073622) 0x826-0x82d.7 (8)
|
||||
0x820| 00 00| ..| corr: 23 0x82e-0x831.7 (4)
|
||||
0x830|00 17 |.. |
|
||||
| | | [23]{}: leap_second_record 0x832-0x83d.7 (12)
|
||||
0x830| 00 00 00 00 49 5c 07 97 | ....I\.. | occur: "2009-01-01T00:00:23Z" (1230768023) 0x832-0x839.7 (8)
|
||||
0x830| 00 00 00 18 | .... | corr: 24 0x83a-0x83d.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x83e-0x849.7 (12)
|
||||
0x830| 00 00| ..| occur: "2012-07-01T00:00:24Z" (1341100824) 0x83e-0x845.7 (8)
|
||||
0x840|00 00 4f ef 93 18 |..O... |
|
||||
0x840| 00 00 00 19 | .... | corr: 25 0x846-0x849.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x84a-0x855.7 (12)
|
||||
0x840| 00 00 00 00 55 93| ....U.| occur: "2015-07-01T00:00:25Z" (1435708825) 0x84a-0x851.7 (8)
|
||||
0x850|2d 99 |-. |
|
||||
0x850| 00 00 00 1a | .... | corr: 26 0x852-0x855.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x856-0x861.7 (12)
|
||||
0x850| 00 00 00 00 58 68 46 9a | ....XhF. | occur: "2017-01-01T00:00:26Z" (1483228826) 0x856-0x85d.7 (8)
|
||||
0x850| 00 00| ..| corr: 27 0x85e-0x861.7 (4)
|
||||
0x860|00 1b |.. |
|
||||
| | | standard_wall_indicators[0:0]: 0x862-NA (0)
|
||||
| | | ut_local_indicators[0:0]: 0x862-NA (0)
|
||||
| | | footer{}: 0x862-0x863.7 (2)
|
||||
0x860| 0a | . | nl1: 10 (valid) 0x862-0x862.7 (1)
|
||||
| | | tz_string: "" 0x863-NA (0)
|
||||
0x860| 0a| | .| | nl2: 10 (valid) 0x863-0x863.7 (1)
|
BIN
format/tzif/testdata/Athens
vendored
Normal file
BIN
format/tzif/testdata/Athens
vendored
Normal file
Binary file not shown.
807
format/tzif/testdata/Athens.fqtest
vendored
Normal file
807
format/tzif/testdata/Athens.fqtest
vendored
Normal file
@ -0,0 +1,807 @@
|
||||
$ fq -d tzif dv Athens
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: Athens (tzif) 0x0-0x8d5.7 (2262)
|
||||
| | | v1header{}: 0x0-0x2b.7 (44)
|
||||
0x000|54 5a 69 66 |TZif | magic: 0x545a6966 (valid) 0x0-0x3.7 (4)
|
||||
0x000| 32 | 2 | ver: "2" (0x32) (valid) 0x4-0x4.7 (1)
|
||||
0x000| 00 00 00 00 00 00 00 00 00 00 00| ...........| reserved: raw bits 0x5-0x13.7 (15)
|
||||
0x010|00 00 00 00 |.... |
|
||||
0x010| 00 00 00 0a | .... | isutcnt: 10 0x14-0x17.7 (4)
|
||||
0x010| 00 00 00 0a | .... | isstdcnt: 10 0x18-0x1b.7 (4)
|
||||
0x010| 00 00 00 00| ....| leapcnt: 0 0x1c-0x1f.7 (4)
|
||||
0x020|00 00 00 8a |.... | timecnt: 138 0x20-0x23.7 (4)
|
||||
0x020| 00 00 00 0a | .... | typecnt: 10 0x24-0x27.7 (4)
|
||||
0x020| 00 00 00 1a | .... | charcnt: 26 0x28-0x2b.7 (4)
|
||||
| | | v1datablock{}: 0x2c-0x347.7 (796)
|
||||
| | | transition_times[0:138]: 0x2c-0x253.7 (552)
|
||||
0x020| 80 00 00 00| ....| [0]: "1901-12-13T20:45:52Z" (-2147483648) transition_time 0x2c-0x2f.7 (4)
|
||||
0x030|9b 80 21 80 |..!. | [1]: "1916-07-27T22:26:08Z" (-1686101632) transition_time 0x30-0x33.7 (4)
|
||||
0x030| b9 7c e9 e0 | .|.. | [2]: "1932-07-06T22:00:00Z" (-1182996000) transition_time 0x34-0x37.7 (4)
|
||||
0x030| b9 c6 af d0 | .... | [3]: "1932-08-31T21:00:00Z" (-1178161200) transition_time 0x38-0x3b.7 (4)
|
||||
0x030| c9 f2 63 e0| ..c.| [4]: "1941-04-06T22:00:00Z" (-906861600) transition_time 0x3c-0x3f.7 (4)
|
||||
0x040|ca 10 a8 50 |...P | [5]: "1941-04-29T21:00:00Z" (-904878000) transition_time 0x40-0x43.7 (4)
|
||||
0x040| cc e7 4b 10 | ..K. | [6]: "1942-11-02T01:00:00Z" (-857257200) transition_time 0x44-0x47.7 (4)
|
||||
0x040| cd aa 4c f0 | ..L. | [7]: "1943-03-29T23:00:00Z" (-844477200) transition_time 0x48-0x4b.7 (4)
|
||||
0x040| ce a2 18 e0| ....| [8]: "1943-10-03T22:00:00Z" (-828237600) transition_time 0x4c-0x4f.7 (4)
|
||||
0x050|cf 93 69 70 |..ip | [9]: "1944-04-03T23:00:00Z" (-812422800) transition_time 0x50-0x53.7 (4)
|
||||
0x050| df 13 9e 60 | ...` | [10]: "1952-06-30T22:00:00Z" (-552362400) transition_time 0x54-0x57.7 (4)
|
||||
0x050| df b7 0a 50 | ...P | [11]: "1952-11-01T21:00:00Z" (-541652400) transition_time 0x58-0x5b.7 (4)
|
||||
0x050| 09 ec 5e 60| ..^`| [12]: "1975-04-11T22:00:00Z" (166485600) transition_time 0x5c-0x5f.7 (4)
|
||||
0x060|0b 18 f4 60 |...` | [13]: "1975-11-25T22:00:00Z" (186184800) transition_time 0x60-0x63.7 (4)
|
||||
0x060| 0b cd ae 00 | .... | [14]: "1976-04-11T00:00:00Z" (198028800) transition_time 0x64-0x67.7 (4)
|
||||
0x060| 0c bd 9f 00 | .... | [15]: "1976-10-10T00:00:00Z" (213753600) transition_time 0x68-0x6b.7 (4)
|
||||
0x060| 0d a4 55 80| ..U.| [16]: "1977-04-03T00:00:00Z" (228873600) transition_time 0x6c-0x6f.7 (4)
|
||||
0x070|0e 8c 5d 80 |..]. | [17]: "1977-09-26T00:00:00Z" (244080000) transition_time 0x70-0x73.7 (4)
|
||||
0x070| 0f 84 37 80 | ..7. | [18]: "1978-04-02T00:00:00Z" (260323200) transition_time 0x74-0x77.7 (4)
|
||||
0x070| 10 6a fc 10 | .j.. | [19]: "1978-09-24T01:00:00Z" (275446800) transition_time 0x78-0x7b.7 (4)
|
||||
0x070| 11 64 7b f0| .d{.| [20]: "1979-04-01T07:00:00Z" (291798000) transition_time 0x7c-0x7f.7 (4)
|
||||
0x080|12 52 aa f0 |.R.. | [21]: "1979-09-28T23:00:00Z" (307407600) transition_time 0x80-0x83.7 (4)
|
||||
0x080| 13 46 82 60 | .F.` | [22]: "1980-03-31T22:00:00Z" (323388000) transition_time 0x84-0x87.7 (4)
|
||||
0x080| 14 33 c2 50 | .3.P | [23]: "1980-09-27T21:00:00Z" (338936400) transition_time 0x88-0x8b.7 (4)
|
||||
0x080| 15 23 eb 90| .#..| [24]: "1981-03-29T01:00:00Z" (354675600) transition_time 0x8c-0x8f.7 (4)
|
||||
0x090|16 13 dc 90 |.... | [25]: "1981-09-27T01:00:00Z" (370400400) transition_time 0x90-0x93.7 (4)
|
||||
0x090| 17 03 cd 90 | .... | [26]: "1982-03-28T01:00:00Z" (386125200) transition_time 0x94-0x97.7 (4)
|
||||
0x090| 17 f3 be 90 | .... | [27]: "1982-09-26T01:00:00Z" (401850000) transition_time 0x98-0x9b.7 (4)
|
||||
0x090| 18 e3 af 90| ....| [28]: "1983-03-27T01:00:00Z" (417574800) transition_time 0x9c-0x9f.7 (4)
|
||||
0x0a0|19 d3 a0 90 |.... | [29]: "1983-09-25T01:00:00Z" (433299600) transition_time 0xa0-0xa3.7 (4)
|
||||
0x0a0| 1a c3 91 90 | .... | [30]: "1984-03-25T01:00:00Z" (449024400) transition_time 0xa4-0xa7.7 (4)
|
||||
0x0a0| 1b bc bd 10 | .... | [31]: "1984-09-30T01:00:00Z" (465354000) transition_time 0xa8-0xab.7 (4)
|
||||
0x0a0| 1c ac ae 10| ....| [32]: "1985-03-31T01:00:00Z" (481078800) transition_time 0xac-0xaf.7 (4)
|
||||
0x0b0|1d 9c 9f 10 |.... | [33]: "1985-09-29T01:00:00Z" (496803600) transition_time 0xb0-0xb3.7 (4)
|
||||
0x0b0| 1e 8c 90 10 | .... | [34]: "1986-03-30T01:00:00Z" (512528400) transition_time 0xb4-0xb7.7 (4)
|
||||
0x0b0| 1f 7c 81 10 | .|.. | [35]: "1986-09-28T01:00:00Z" (528253200) transition_time 0xb8-0xbb.7 (4)
|
||||
0x0b0| 20 6c 72 10| lr.| [36]: "1987-03-29T01:00:00Z" (543978000) transition_time 0xbc-0xbf.7 (4)
|
||||
0x0c0|21 5c 63 10 |!\c. | [37]: "1987-09-27T01:00:00Z" (559702800) transition_time 0xc0-0xc3.7 (4)
|
||||
0x0c0| 22 4c 54 10 | "LT. | [38]: "1988-03-27T01:00:00Z" (575427600) transition_time 0xc4-0xc7.7 (4)
|
||||
0x0c0| 23 3c 45 10 | #<E. | [39]: "1988-09-25T01:00:00Z" (591152400) transition_time 0xc8-0xcb.7 (4)
|
||||
0x0c0| 24 2c 36 10| $,6.| [40]: "1989-03-26T01:00:00Z" (606877200) transition_time 0xcc-0xcf.7 (4)
|
||||
0x0d0|25 1c 27 10 |%.'. | [41]: "1989-09-24T01:00:00Z" (622602000) transition_time 0xd0-0xd3.7 (4)
|
||||
0x0d0| 26 0c 18 10 | &... | [42]: "1990-03-25T01:00:00Z" (638326800) transition_time 0xd4-0xd7.7 (4)
|
||||
0x0d0| 27 05 43 90 | '.C. | [43]: "1990-09-30T01:00:00Z" (654656400) transition_time 0xd8-0xdb.7 (4)
|
||||
0x0d0| 27 f5 34 90| '.4.| [44]: "1991-03-31T01:00:00Z" (670381200) transition_time 0xdc-0xdf.7 (4)
|
||||
0x0e0|28 e5 25 90 |(.%. | [45]: "1991-09-29T01:00:00Z" (686106000) transition_time 0xe0-0xe3.7 (4)
|
||||
0x0e0| 29 d5 16 90 | )... | [46]: "1992-03-29T01:00:00Z" (701830800) transition_time 0xe4-0xe7.7 (4)
|
||||
0x0e0| 2a c5 07 90 | *... | [47]: "1992-09-27T01:00:00Z" (717555600) transition_time 0xe8-0xeb.7 (4)
|
||||
0x0e0| 2b b4 f8 90| +...| [48]: "1993-03-28T01:00:00Z" (733280400) transition_time 0xec-0xef.7 (4)
|
||||
0x0f0|2c a4 e9 90 |,... | [49]: "1993-09-26T01:00:00Z" (749005200) transition_time 0xf0-0xf3.7 (4)
|
||||
0x0f0| 2d 94 da 90 | -... | [50]: "1994-03-27T01:00:00Z" (764730000) transition_time 0xf4-0xf7.7 (4)
|
||||
0x0f0| 2e 84 cb 90 | .... | [51]: "1994-09-25T01:00:00Z" (780454800) transition_time 0xf8-0xfb.7 (4)
|
||||
0x0f0| 2f 74 bc 90| /t..| [52]: "1995-03-26T01:00:00Z" (796179600) transition_time 0xfc-0xff.7 (4)
|
||||
0x100|30 64 ad 90 |0d.. | [53]: "1995-09-24T01:00:00Z" (811904400) transition_time 0x100-0x103.7 (4)
|
||||
0x100| 31 5d d9 10 | 1].. | [54]: "1996-03-31T01:00:00Z" (828234000) transition_time 0x104-0x107.7 (4)
|
||||
0x100| 32 72 b4 10 | 2r.. | [55]: "1996-10-27T01:00:00Z" (846378000) transition_time 0x108-0x10b.7 (4)
|
||||
0x100| 33 3d bb 10| 3=..| [56]: "1997-03-30T01:00:00Z" (859683600) transition_time 0x10c-0x10f.7 (4)
|
||||
0x110|34 52 96 10 |4R.. | [57]: "1997-10-26T01:00:00Z" (877827600) transition_time 0x110-0x113.7 (4)
|
||||
0x110| 35 1d 9d 10 | 5... | [58]: "1998-03-29T01:00:00Z" (891133200) transition_time 0x114-0x117.7 (4)
|
||||
0x110| 36 32 78 10 | 62x. | [59]: "1998-10-25T01:00:00Z" (909277200) transition_time 0x118-0x11b.7 (4)
|
||||
0x110| 36 fd 7f 10| 6...| [60]: "1999-03-28T01:00:00Z" (922582800) transition_time 0x11c-0x11f.7 (4)
|
||||
0x120|38 1b 94 90 |8... | [61]: "1999-10-31T01:00:00Z" (941331600) transition_time 0x120-0x123.7 (4)
|
||||
0x120| 38 dd 61 10 | 8.a. | [62]: "2000-03-26T01:00:00Z" (954032400) transition_time 0x124-0x127.7 (4)
|
||||
0x120| 39 fb 76 90 | 9.v. | [63]: "2000-10-29T01:00:00Z" (972781200) transition_time 0x128-0x12b.7 (4)
|
||||
0x120| 3a bd 43 10| :.C.| [64]: "2001-03-25T01:00:00Z" (985482000) transition_time 0x12c-0x12f.7 (4)
|
||||
0x130|3b db 58 90 |;.X. | [65]: "2001-10-28T01:00:00Z" (1004230800) transition_time 0x130-0x133.7 (4)
|
||||
0x130| 3c a6 5f 90 | <._. | [66]: "2002-03-31T01:00:00Z" (1017536400) transition_time 0x134-0x137.7 (4)
|
||||
0x130| 3d bb 3a 90 | =.:. | [67]: "2002-10-27T01:00:00Z" (1035680400) transition_time 0x138-0x13b.7 (4)
|
||||
0x130| 3e 86 41 90| >.A.| [68]: "2003-03-30T01:00:00Z" (1048986000) transition_time 0x13c-0x13f.7 (4)
|
||||
0x140|3f 9b 1c 90 |?... | [69]: "2003-10-26T01:00:00Z" (1067130000) transition_time 0x140-0x143.7 (4)
|
||||
0x140| 40 66 23 90 | @f#. | [70]: "2004-03-28T01:00:00Z" (1080435600) transition_time 0x144-0x147.7 (4)
|
||||
0x140| 41 84 39 10 | A.9. | [71]: "2004-10-31T01:00:00Z" (1099184400) transition_time 0x148-0x14b.7 (4)
|
||||
0x140| 42 46 05 90| BF..| [72]: "2005-03-27T01:00:00Z" (1111885200) transition_time 0x14c-0x14f.7 (4)
|
||||
0x150|43 64 1b 10 |Cd.. | [73]: "2005-10-30T01:00:00Z" (1130634000) transition_time 0x150-0x153.7 (4)
|
||||
0x150| 44 25 e7 90 | D%.. | [74]: "2006-03-26T01:00:00Z" (1143334800) transition_time 0x154-0x157.7 (4)
|
||||
0x150| 45 43 fd 10 | EC.. | [75]: "2006-10-29T01:00:00Z" (1162083600) transition_time 0x158-0x15b.7 (4)
|
||||
0x150| 46 05 c9 90| F...| [76]: "2007-03-25T01:00:00Z" (1174784400) transition_time 0x15c-0x15f.7 (4)
|
||||
0x160|47 23 df 10 |G#.. | [77]: "2007-10-28T01:00:00Z" (1193533200) transition_time 0x160-0x163.7 (4)
|
||||
0x160| 47 ee e6 10 | G... | [78]: "2008-03-30T01:00:00Z" (1206838800) transition_time 0x164-0x167.7 (4)
|
||||
0x160| 49 03 c1 10 | I... | [79]: "2008-10-26T01:00:00Z" (1224982800) transition_time 0x168-0x16b.7 (4)
|
||||
0x160| 49 ce c8 10| I...| [80]: "2009-03-29T01:00:00Z" (1238288400) transition_time 0x16c-0x16f.7 (4)
|
||||
0x170|4a e3 a3 10 |J... | [81]: "2009-10-25T01:00:00Z" (1256432400) transition_time 0x170-0x173.7 (4)
|
||||
0x170| 4b ae aa 10 | K... | [82]: "2010-03-28T01:00:00Z" (1269738000) transition_time 0x174-0x177.7 (4)
|
||||
0x170| 4c cc bf 90 | L... | [83]: "2010-10-31T01:00:00Z" (1288486800) transition_time 0x178-0x17b.7 (4)
|
||||
0x170| 4d 8e 8c 10| M...| [84]: "2011-03-27T01:00:00Z" (1301187600) transition_time 0x17c-0x17f.7 (4)
|
||||
0x180|4e ac a1 90 |N... | [85]: "2011-10-30T01:00:00Z" (1319936400) transition_time 0x180-0x183.7 (4)
|
||||
0x180| 4f 6e 6e 10 | Onn. | [86]: "2012-03-25T01:00:00Z" (1332637200) transition_time 0x184-0x187.7 (4)
|
||||
0x180| 50 8c 83 90 | P... | [87]: "2012-10-28T01:00:00Z" (1351386000) transition_time 0x188-0x18b.7 (4)
|
||||
0x180| 51 57 8a 90| QW..| [88]: "2013-03-31T01:00:00Z" (1364691600) transition_time 0x18c-0x18f.7 (4)
|
||||
0x190|52 6c 65 90 |Rle. | [89]: "2013-10-27T01:00:00Z" (1382835600) transition_time 0x190-0x193.7 (4)
|
||||
0x190| 53 37 6c 90 | S7l. | [90]: "2014-03-30T01:00:00Z" (1396141200) transition_time 0x194-0x197.7 (4)
|
||||
0x190| 54 4c 47 90 | TLG. | [91]: "2014-10-26T01:00:00Z" (1414285200) transition_time 0x198-0x19b.7 (4)
|
||||
0x190| 55 17 4e 90| U.N.| [92]: "2015-03-29T01:00:00Z" (1427590800) transition_time 0x19c-0x19f.7 (4)
|
||||
0x1a0|56 2c 29 90 |V,). | [93]: "2015-10-25T01:00:00Z" (1445734800) transition_time 0x1a0-0x1a3.7 (4)
|
||||
0x1a0| 56 f7 30 90 | V.0. | [94]: "2016-03-27T01:00:00Z" (1459040400) transition_time 0x1a4-0x1a7.7 (4)
|
||||
0x1a0| 58 15 46 10 | X.F. | [95]: "2016-10-30T01:00:00Z" (1477789200) transition_time 0x1a8-0x1ab.7 (4)
|
||||
0x1a0| 58 d7 12 90| X...| [96]: "2017-03-26T01:00:00Z" (1490490000) transition_time 0x1ac-0x1af.7 (4)
|
||||
0x1b0|59 f5 28 10 |Y.(. | [97]: "2017-10-29T01:00:00Z" (1509238800) transition_time 0x1b0-0x1b3.7 (4)
|
||||
0x1b0| 5a b6 f4 90 | Z... | [98]: "2018-03-25T01:00:00Z" (1521939600) transition_time 0x1b4-0x1b7.7 (4)
|
||||
0x1b0| 5b d5 0a 10 | [... | [99]: "2018-10-28T01:00:00Z" (1540688400) transition_time 0x1b8-0x1bb.7 (4)
|
||||
0x1b0| 5c a0 11 10| \...| [100]: "2019-03-31T01:00:00Z" (1553994000) transition_time 0x1bc-0x1bf.7 (4)
|
||||
0x1c0|5d b4 ec 10 |]... | [101]: "2019-10-27T01:00:00Z" (1572138000) transition_time 0x1c0-0x1c3.7 (4)
|
||||
0x1c0| 5e 7f f3 10 | ^... | [102]: "2020-03-29T01:00:00Z" (1585443600) transition_time 0x1c4-0x1c7.7 (4)
|
||||
0x1c0| 5f 94 ce 10 | _... | [103]: "2020-10-25T01:00:00Z" (1603587600) transition_time 0x1c8-0x1cb.7 (4)
|
||||
0x1c0| 60 5f d5 10| `_..| [104]: "2021-03-28T01:00:00Z" (1616893200) transition_time 0x1cc-0x1cf.7 (4)
|
||||
0x1d0|61 7d ea 90 |a}.. | [105]: "2021-10-31T01:00:00Z" (1635642000) transition_time 0x1d0-0x1d3.7 (4)
|
||||
0x1d0| 62 3f b7 10 | b?.. | [106]: "2022-03-27T01:00:00Z" (1648342800) transition_time 0x1d4-0x1d7.7 (4)
|
||||
0x1d0| 63 5d cc 90 | c].. | [107]: "2022-10-30T01:00:00Z" (1667091600) transition_time 0x1d8-0x1db.7 (4)
|
||||
0x1d0| 64 1f 99 10| d...| [108]: "2023-03-26T01:00:00Z" (1679792400) transition_time 0x1dc-0x1df.7 (4)
|
||||
0x1e0|65 3d ae 90 |e=.. | [109]: "2023-10-29T01:00:00Z" (1698541200) transition_time 0x1e0-0x1e3.7 (4)
|
||||
0x1e0| 66 08 b5 90 | f... | [110]: "2024-03-31T01:00:00Z" (1711846800) transition_time 0x1e4-0x1e7.7 (4)
|
||||
0x1e0| 67 1d 90 90 | g... | [111]: "2024-10-27T01:00:00Z" (1729990800) transition_time 0x1e8-0x1eb.7 (4)
|
||||
0x1e0| 67 e8 97 90| g...| [112]: "2025-03-30T01:00:00Z" (1743296400) transition_time 0x1ec-0x1ef.7 (4)
|
||||
0x1f0|68 fd 72 90 |h.r. | [113]: "2025-10-26T01:00:00Z" (1761440400) transition_time 0x1f0-0x1f3.7 (4)
|
||||
0x1f0| 69 c8 79 90 | i.y. | [114]: "2026-03-29T01:00:00Z" (1774746000) transition_time 0x1f4-0x1f7.7 (4)
|
||||
0x1f0| 6a dd 54 90 | j.T. | [115]: "2026-10-25T01:00:00Z" (1792890000) transition_time 0x1f8-0x1fb.7 (4)
|
||||
0x1f0| 6b a8 5b 90| k.[.| [116]: "2027-03-28T01:00:00Z" (1806195600) transition_time 0x1fc-0x1ff.7 (4)
|
||||
0x200|6c c6 71 10 |l.q. | [117]: "2027-10-31T01:00:00Z" (1824944400) transition_time 0x200-0x203.7 (4)
|
||||
0x200| 6d 88 3d 90 | m.=. | [118]: "2028-03-26T01:00:00Z" (1837645200) transition_time 0x204-0x207.7 (4)
|
||||
0x200| 6e a6 53 10 | n.S. | [119]: "2028-10-29T01:00:00Z" (1856394000) transition_time 0x208-0x20b.7 (4)
|
||||
0x200| 6f 68 1f 90| oh..| [120]: "2029-03-25T01:00:00Z" (1869094800) transition_time 0x20c-0x20f.7 (4)
|
||||
0x210|70 86 35 10 |p.5. | [121]: "2029-10-28T01:00:00Z" (1887843600) transition_time 0x210-0x213.7 (4)
|
||||
0x210| 71 51 3c 10 | qQ<. | [122]: "2030-03-31T01:00:00Z" (1901149200) transition_time 0x214-0x217.7 (4)
|
||||
0x210| 72 66 17 10 | rf.. | [123]: "2030-10-27T01:00:00Z" (1919293200) transition_time 0x218-0x21b.7 (4)
|
||||
0x210| 73 31 1e 10| s1..| [124]: "2031-03-30T01:00:00Z" (1932598800) transition_time 0x21c-0x21f.7 (4)
|
||||
0x220|74 45 f9 10 |tE.. | [125]: "2031-10-26T01:00:00Z" (1950742800) transition_time 0x220-0x223.7 (4)
|
||||
0x220| 75 11 00 10 | u... | [126]: "2032-03-28T01:00:00Z" (1964048400) transition_time 0x224-0x227.7 (4)
|
||||
0x220| 76 2f 15 90 | v/.. | [127]: "2032-10-31T01:00:00Z" (1982797200) transition_time 0x228-0x22b.7 (4)
|
||||
0x220| 76 f0 e2 10| v...| [128]: "2033-03-27T01:00:00Z" (1995498000) transition_time 0x22c-0x22f.7 (4)
|
||||
0x230|78 0e f7 90 |x... | [129]: "2033-10-30T01:00:00Z" (2014246800) transition_time 0x230-0x233.7 (4)
|
||||
0x230| 78 d0 c4 10 | x... | [130]: "2034-03-26T01:00:00Z" (2026947600) transition_time 0x234-0x237.7 (4)
|
||||
0x230| 79 ee d9 90 | y... | [131]: "2034-10-29T01:00:00Z" (2045696400) transition_time 0x238-0x23b.7 (4)
|
||||
0x230| 7a b0 a6 10| z...| [132]: "2035-03-25T01:00:00Z" (2058397200) transition_time 0x23c-0x23f.7 (4)
|
||||
0x240|7b ce bb 90 |{... | [133]: "2035-10-28T01:00:00Z" (2077146000) transition_time 0x240-0x243.7 (4)
|
||||
0x240| 7c 99 c2 90 | |... | [134]: "2036-03-30T01:00:00Z" (2090451600) transition_time 0x244-0x247.7 (4)
|
||||
0x240| 7d ae 9d 90 | }... | [135]: "2036-10-26T01:00:00Z" (2108595600) transition_time 0x248-0x24b.7 (4)
|
||||
0x240| 7e 79 a4 90| ~y..| [136]: "2037-03-29T01:00:00Z" (2121901200) transition_time 0x24c-0x24f.7 (4)
|
||||
0x250|7f 8e 7f 90 |.... | [137]: "2037-10-25T01:00:00Z" (2140045200) transition_time 0x250-0x253.7 (4)
|
||||
| | | transition_types[0:138]: 0x254-0x2dd.7 (138)
|
||||
0x250| 01 | . | [0]: 1 transition_type 0x254-0x254.7 (1)
|
||||
0x250| 03 | . | [1]: 3 transition_type 0x255-0x255.7 (1)
|
||||
0x250| 02 | . | [2]: 2 transition_type 0x256-0x256.7 (1)
|
||||
0x250| 03 | . | [3]: 3 transition_type 0x257-0x257.7 (1)
|
||||
0x250| 02 | . | [4]: 2 transition_type 0x258-0x258.7 (1)
|
||||
0x250| 05 | . | [5]: 5 transition_type 0x259-0x259.7 (1)
|
||||
0x250| 04 | . | [6]: 4 transition_type 0x25a-0x25a.7 (1)
|
||||
0x250| 05 | . | [7]: 5 transition_type 0x25b-0x25b.7 (1)
|
||||
0x250| 04 | . | [8]: 4 transition_type 0x25c-0x25c.7 (1)
|
||||
0x250| 03 | . | [9]: 3 transition_type 0x25d-0x25d.7 (1)
|
||||
0x250| 02 | . | [10]: 2 transition_type 0x25e-0x25e.7 (1)
|
||||
0x250| 03| .| [11]: 3 transition_type 0x25f-0x25f.7 (1)
|
||||
0x260|06 |. | [12]: 6 transition_type 0x260-0x260.7 (1)
|
||||
0x260| 07 | . | [13]: 7 transition_type 0x261-0x261.7 (1)
|
||||
0x260| 06 | . | [14]: 6 transition_type 0x262-0x262.7 (1)
|
||||
0x260| 07 | . | [15]: 7 transition_type 0x263-0x263.7 (1)
|
||||
0x260| 06 | . | [16]: 6 transition_type 0x264-0x264.7 (1)
|
||||
0x260| 07 | . | [17]: 7 transition_type 0x265-0x265.7 (1)
|
||||
0x260| 06 | . | [18]: 6 transition_type 0x266-0x266.7 (1)
|
||||
0x260| 03 | . | [19]: 3 transition_type 0x267-0x267.7 (1)
|
||||
0x260| 02 | . | [20]: 2 transition_type 0x268-0x268.7 (1)
|
||||
0x260| 03 | . | [21]: 3 transition_type 0x269-0x269.7 (1)
|
||||
0x260| 02 | . | [22]: 2 transition_type 0x26a-0x26a.7 (1)
|
||||
0x260| 03 | . | [23]: 3 transition_type 0x26b-0x26b.7 (1)
|
||||
0x260| 08 | . | [24]: 8 transition_type 0x26c-0x26c.7 (1)
|
||||
0x260| 09 | . | [25]: 9 transition_type 0x26d-0x26d.7 (1)
|
||||
0x260| 08 | . | [26]: 8 transition_type 0x26e-0x26e.7 (1)
|
||||
0x260| 09| .| [27]: 9 transition_type 0x26f-0x26f.7 (1)
|
||||
0x270|08 |. | [28]: 8 transition_type 0x270-0x270.7 (1)
|
||||
0x270| 09 | . | [29]: 9 transition_type 0x271-0x271.7 (1)
|
||||
0x270| 08 | . | [30]: 8 transition_type 0x272-0x272.7 (1)
|
||||
0x270| 09 | . | [31]: 9 transition_type 0x273-0x273.7 (1)
|
||||
0x270| 08 | . | [32]: 8 transition_type 0x274-0x274.7 (1)
|
||||
0x270| 09 | . | [33]: 9 transition_type 0x275-0x275.7 (1)
|
||||
0x270| 08 | . | [34]: 8 transition_type 0x276-0x276.7 (1)
|
||||
0x270| 09 | . | [35]: 9 transition_type 0x277-0x277.7 (1)
|
||||
0x270| 08 | . | [36]: 8 transition_type 0x278-0x278.7 (1)
|
||||
0x270| 09 | . | [37]: 9 transition_type 0x279-0x279.7 (1)
|
||||
0x270| 08 | . | [38]: 8 transition_type 0x27a-0x27a.7 (1)
|
||||
0x270| 09 | . | [39]: 9 transition_type 0x27b-0x27b.7 (1)
|
||||
0x270| 08 | . | [40]: 8 transition_type 0x27c-0x27c.7 (1)
|
||||
0x270| 09 | . | [41]: 9 transition_type 0x27d-0x27d.7 (1)
|
||||
0x270| 08 | . | [42]: 8 transition_type 0x27e-0x27e.7 (1)
|
||||
0x270| 09| .| [43]: 9 transition_type 0x27f-0x27f.7 (1)
|
||||
0x280|08 |. | [44]: 8 transition_type 0x280-0x280.7 (1)
|
||||
0x280| 09 | . | [45]: 9 transition_type 0x281-0x281.7 (1)
|
||||
0x280| 08 | . | [46]: 8 transition_type 0x282-0x282.7 (1)
|
||||
0x280| 09 | . | [47]: 9 transition_type 0x283-0x283.7 (1)
|
||||
0x280| 08 | . | [48]: 8 transition_type 0x284-0x284.7 (1)
|
||||
0x280| 09 | . | [49]: 9 transition_type 0x285-0x285.7 (1)
|
||||
0x280| 08 | . | [50]: 8 transition_type 0x286-0x286.7 (1)
|
||||
0x280| 09 | . | [51]: 9 transition_type 0x287-0x287.7 (1)
|
||||
0x280| 08 | . | [52]: 8 transition_type 0x288-0x288.7 (1)
|
||||
0x280| 09 | . | [53]: 9 transition_type 0x289-0x289.7 (1)
|
||||
0x280| 08 | . | [54]: 8 transition_type 0x28a-0x28a.7 (1)
|
||||
0x280| 09 | . | [55]: 9 transition_type 0x28b-0x28b.7 (1)
|
||||
0x280| 08 | . | [56]: 8 transition_type 0x28c-0x28c.7 (1)
|
||||
0x280| 09 | . | [57]: 9 transition_type 0x28d-0x28d.7 (1)
|
||||
0x280| 08 | . | [58]: 8 transition_type 0x28e-0x28e.7 (1)
|
||||
0x280| 09| .| [59]: 9 transition_type 0x28f-0x28f.7 (1)
|
||||
0x290|08 |. | [60]: 8 transition_type 0x290-0x290.7 (1)
|
||||
0x290| 09 | . | [61]: 9 transition_type 0x291-0x291.7 (1)
|
||||
0x290| 08 | . | [62]: 8 transition_type 0x292-0x292.7 (1)
|
||||
0x290| 09 | . | [63]: 9 transition_type 0x293-0x293.7 (1)
|
||||
0x290| 08 | . | [64]: 8 transition_type 0x294-0x294.7 (1)
|
||||
0x290| 09 | . | [65]: 9 transition_type 0x295-0x295.7 (1)
|
||||
0x290| 08 | . | [66]: 8 transition_type 0x296-0x296.7 (1)
|
||||
0x290| 09 | . | [67]: 9 transition_type 0x297-0x297.7 (1)
|
||||
0x290| 08 | . | [68]: 8 transition_type 0x298-0x298.7 (1)
|
||||
0x290| 09 | . | [69]: 9 transition_type 0x299-0x299.7 (1)
|
||||
0x290| 08 | . | [70]: 8 transition_type 0x29a-0x29a.7 (1)
|
||||
0x290| 09 | . | [71]: 9 transition_type 0x29b-0x29b.7 (1)
|
||||
0x290| 08 | . | [72]: 8 transition_type 0x29c-0x29c.7 (1)
|
||||
0x290| 09 | . | [73]: 9 transition_type 0x29d-0x29d.7 (1)
|
||||
0x290| 08 | . | [74]: 8 transition_type 0x29e-0x29e.7 (1)
|
||||
0x290| 09| .| [75]: 9 transition_type 0x29f-0x29f.7 (1)
|
||||
0x2a0|08 |. | [76]: 8 transition_type 0x2a0-0x2a0.7 (1)
|
||||
0x2a0| 09 | . | [77]: 9 transition_type 0x2a1-0x2a1.7 (1)
|
||||
0x2a0| 08 | . | [78]: 8 transition_type 0x2a2-0x2a2.7 (1)
|
||||
0x2a0| 09 | . | [79]: 9 transition_type 0x2a3-0x2a3.7 (1)
|
||||
0x2a0| 08 | . | [80]: 8 transition_type 0x2a4-0x2a4.7 (1)
|
||||
0x2a0| 09 | . | [81]: 9 transition_type 0x2a5-0x2a5.7 (1)
|
||||
0x2a0| 08 | . | [82]: 8 transition_type 0x2a6-0x2a6.7 (1)
|
||||
0x2a0| 09 | . | [83]: 9 transition_type 0x2a7-0x2a7.7 (1)
|
||||
0x2a0| 08 | . | [84]: 8 transition_type 0x2a8-0x2a8.7 (1)
|
||||
0x2a0| 09 | . | [85]: 9 transition_type 0x2a9-0x2a9.7 (1)
|
||||
0x2a0| 08 | . | [86]: 8 transition_type 0x2aa-0x2aa.7 (1)
|
||||
0x2a0| 09 | . | [87]: 9 transition_type 0x2ab-0x2ab.7 (1)
|
||||
0x2a0| 08 | . | [88]: 8 transition_type 0x2ac-0x2ac.7 (1)
|
||||
0x2a0| 09 | . | [89]: 9 transition_type 0x2ad-0x2ad.7 (1)
|
||||
0x2a0| 08 | . | [90]: 8 transition_type 0x2ae-0x2ae.7 (1)
|
||||
0x2a0| 09| .| [91]: 9 transition_type 0x2af-0x2af.7 (1)
|
||||
0x2b0|08 |. | [92]: 8 transition_type 0x2b0-0x2b0.7 (1)
|
||||
0x2b0| 09 | . | [93]: 9 transition_type 0x2b1-0x2b1.7 (1)
|
||||
0x2b0| 08 | . | [94]: 8 transition_type 0x2b2-0x2b2.7 (1)
|
||||
0x2b0| 09 | . | [95]: 9 transition_type 0x2b3-0x2b3.7 (1)
|
||||
0x2b0| 08 | . | [96]: 8 transition_type 0x2b4-0x2b4.7 (1)
|
||||
0x2b0| 09 | . | [97]: 9 transition_type 0x2b5-0x2b5.7 (1)
|
||||
0x2b0| 08 | . | [98]: 8 transition_type 0x2b6-0x2b6.7 (1)
|
||||
0x2b0| 09 | . | [99]: 9 transition_type 0x2b7-0x2b7.7 (1)
|
||||
0x2b0| 08 | . | [100]: 8 transition_type 0x2b8-0x2b8.7 (1)
|
||||
0x2b0| 09 | . | [101]: 9 transition_type 0x2b9-0x2b9.7 (1)
|
||||
0x2b0| 08 | . | [102]: 8 transition_type 0x2ba-0x2ba.7 (1)
|
||||
0x2b0| 09 | . | [103]: 9 transition_type 0x2bb-0x2bb.7 (1)
|
||||
0x2b0| 08 | . | [104]: 8 transition_type 0x2bc-0x2bc.7 (1)
|
||||
0x2b0| 09 | . | [105]: 9 transition_type 0x2bd-0x2bd.7 (1)
|
||||
0x2b0| 08 | . | [106]: 8 transition_type 0x2be-0x2be.7 (1)
|
||||
0x2b0| 09| .| [107]: 9 transition_type 0x2bf-0x2bf.7 (1)
|
||||
0x2c0|08 |. | [108]: 8 transition_type 0x2c0-0x2c0.7 (1)
|
||||
0x2c0| 09 | . | [109]: 9 transition_type 0x2c1-0x2c1.7 (1)
|
||||
0x2c0| 08 | . | [110]: 8 transition_type 0x2c2-0x2c2.7 (1)
|
||||
0x2c0| 09 | . | [111]: 9 transition_type 0x2c3-0x2c3.7 (1)
|
||||
0x2c0| 08 | . | [112]: 8 transition_type 0x2c4-0x2c4.7 (1)
|
||||
0x2c0| 09 | . | [113]: 9 transition_type 0x2c5-0x2c5.7 (1)
|
||||
0x2c0| 08 | . | [114]: 8 transition_type 0x2c6-0x2c6.7 (1)
|
||||
0x2c0| 09 | . | [115]: 9 transition_type 0x2c7-0x2c7.7 (1)
|
||||
0x2c0| 08 | . | [116]: 8 transition_type 0x2c8-0x2c8.7 (1)
|
||||
0x2c0| 09 | . | [117]: 9 transition_type 0x2c9-0x2c9.7 (1)
|
||||
0x2c0| 08 | . | [118]: 8 transition_type 0x2ca-0x2ca.7 (1)
|
||||
0x2c0| 09 | . | [119]: 9 transition_type 0x2cb-0x2cb.7 (1)
|
||||
0x2c0| 08 | . | [120]: 8 transition_type 0x2cc-0x2cc.7 (1)
|
||||
0x2c0| 09 | . | [121]: 9 transition_type 0x2cd-0x2cd.7 (1)
|
||||
0x2c0| 08 | . | [122]: 8 transition_type 0x2ce-0x2ce.7 (1)
|
||||
0x2c0| 09| .| [123]: 9 transition_type 0x2cf-0x2cf.7 (1)
|
||||
0x2d0|08 |. | [124]: 8 transition_type 0x2d0-0x2d0.7 (1)
|
||||
0x2d0| 09 | . | [125]: 9 transition_type 0x2d1-0x2d1.7 (1)
|
||||
0x2d0| 08 | . | [126]: 8 transition_type 0x2d2-0x2d2.7 (1)
|
||||
0x2d0| 09 | . | [127]: 9 transition_type 0x2d3-0x2d3.7 (1)
|
||||
0x2d0| 08 | . | [128]: 8 transition_type 0x2d4-0x2d4.7 (1)
|
||||
0x2d0| 09 | . | [129]: 9 transition_type 0x2d5-0x2d5.7 (1)
|
||||
0x2d0| 08 | . | [130]: 8 transition_type 0x2d6-0x2d6.7 (1)
|
||||
0x2d0| 09 | . | [131]: 9 transition_type 0x2d7-0x2d7.7 (1)
|
||||
0x2d0| 08 | . | [132]: 8 transition_type 0x2d8-0x2d8.7 (1)
|
||||
0x2d0| 09 | . | [133]: 9 transition_type 0x2d9-0x2d9.7 (1)
|
||||
0x2d0| 08 | . | [134]: 8 transition_type 0x2da-0x2da.7 (1)
|
||||
0x2d0| 09 | . | [135]: 9 transition_type 0x2db-0x2db.7 (1)
|
||||
0x2d0| 08 | . | [136]: 8 transition_type 0x2dc-0x2dc.7 (1)
|
||||
0x2d0| 09 | . | [137]: 9 transition_type 0x2dd-0x2dd.7 (1)
|
||||
| | | local_time_type_records[0:10]: 0x2de-0x319.7 (60)
|
||||
| | | [0]{}: local_time_type 0x2de-0x2e3.7 (6)
|
||||
0x2d0| 00 00| ..| utoff: 5692 (valid) 0x2de-0x2e1.7 (4)
|
||||
0x2e0|16 3c |.< |
|
||||
0x2e0| 00 | . | dst: 0 (valid) 0x2e2-0x2e2.7 (1)
|
||||
0x2e0| 00 | . | idx: 0 (valid) 0x2e3-0x2e3.7 (1)
|
||||
| | | [1]{}: local_time_type 0x2e4-0x2e9.7 (6)
|
||||
0x2e0| 00 00 16 3c | ...< | utoff: 5692 (valid) 0x2e4-0x2e7.7 (4)
|
||||
0x2e0| 00 | . | dst: 0 (valid) 0x2e8-0x2e8.7 (1)
|
||||
0x2e0| 04 | . | idx: 4 (valid) 0x2e9-0x2e9.7 (1)
|
||||
| | | [2]{}: local_time_type 0x2ea-0x2ef.7 (6)
|
||||
0x2e0| 00 00 2a 30 | ..*0 | utoff: 10800 (valid) 0x2ea-0x2ed.7 (4)
|
||||
0x2e0| 01 | . | dst: 1 (valid) 0x2ee-0x2ee.7 (1)
|
||||
0x2e0| 08| .| idx: 8 (valid) 0x2ef-0x2ef.7 (1)
|
||||
| | | [3]{}: local_time_type 0x2f0-0x2f5.7 (6)
|
||||
0x2f0|00 00 1c 20 |... | utoff: 7200 (valid) 0x2f0-0x2f3.7 (4)
|
||||
0x2f0| 00 | . | dst: 0 (valid) 0x2f4-0x2f4.7 (1)
|
||||
0x2f0| 0d | . | idx: 13 (valid) 0x2f5-0x2f5.7 (1)
|
||||
| | | [4]{}: local_time_type 0x2f6-0x2fb.7 (6)
|
||||
0x2f0| 00 00 0e 10 | .... | utoff: 3600 (valid) 0x2f6-0x2f9.7 (4)
|
||||
0x2f0| 00 | . | dst: 0 (valid) 0x2fa-0x2fa.7 (1)
|
||||
0x2f0| 11 | . | idx: 17 (valid) 0x2fb-0x2fb.7 (1)
|
||||
| | | [5]{}: local_time_type 0x2fc-0x301.7 (6)
|
||||
0x2f0| 00 00 1c 20| ... | utoff: 7200 (valid) 0x2fc-0x2ff.7 (4)
|
||||
0x300|01 |. | dst: 1 (valid) 0x300-0x300.7 (1)
|
||||
0x300| 15 | . | idx: 21 (valid) 0x301-0x301.7 (1)
|
||||
| | | [6]{}: local_time_type 0x302-0x307.7 (6)
|
||||
0x300| 00 00 2a 30 | ..*0 | utoff: 10800 (valid) 0x302-0x305.7 (4)
|
||||
0x300| 01 | . | dst: 1 (valid) 0x306-0x306.7 (1)
|
||||
0x300| 08 | . | idx: 8 (valid) 0x307-0x307.7 (1)
|
||||
| | | [7]{}: local_time_type 0x308-0x30d.7 (6)
|
||||
0x300| 00 00 1c 20 | ... | utoff: 7200 (valid) 0x308-0x30b.7 (4)
|
||||
0x300| 00 | . | dst: 0 (valid) 0x30c-0x30c.7 (1)
|
||||
0x300| 0d | . | idx: 13 (valid) 0x30d-0x30d.7 (1)
|
||||
| | | [8]{}: local_time_type 0x30e-0x313.7 (6)
|
||||
0x300| 00 00| ..| utoff: 10800 (valid) 0x30e-0x311.7 (4)
|
||||
0x310|2a 30 |*0 |
|
||||
0x310| 01 | . | dst: 1 (valid) 0x312-0x312.7 (1)
|
||||
0x310| 08 | . | idx: 8 (valid) 0x313-0x313.7 (1)
|
||||
| | | [9]{}: local_time_type 0x314-0x319.7 (6)
|
||||
0x310| 00 00 1c 20 | ... | utoff: 7200 (valid) 0x314-0x317.7 (4)
|
||||
0x310| 00 | . | dst: 0 (valid) 0x318-0x318.7 (1)
|
||||
0x310| 0d | . | idx: 13 (valid) 0x319-0x319.7 (1)
|
||||
| | | time_zone_designations[0:6]: 0x31a-0x333.7 (26)
|
||||
0x310| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x31a-0x31d.7 (4)
|
||||
0x310| 41 4d| AM| [1]: "AMT" time_zone_designation 0x31e-0x321.7 (4)
|
||||
0x320|54 00 |T. |
|
||||
0x320| 45 45 53 54 00 | EEST. | [2]: "EEST" time_zone_designation 0x322-0x326.7 (5)
|
||||
0x320| 45 45 54 00 | EET. | [3]: "EET" time_zone_designation 0x327-0x32a.7 (4)
|
||||
0x320| 43 45 54 00 | CET. | [4]: "CET" time_zone_designation 0x32b-0x32e.7 (4)
|
||||
0x320| 43| C| [5]: "CEST" time_zone_designation 0x32f-0x333.7 (5)
|
||||
0x330|45 53 54 00 |EST. |
|
||||
| | | leap_second_records[0:0]: 0x334-NA (0)
|
||||
| | | standard_wall_indicators[0:10]: 0x334-0x33d.7 (10)
|
||||
0x330| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x334-0x334.7 (1)
|
||||
0x330| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x335-0x335.7 (1)
|
||||
0x330| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x336-0x336.7 (1)
|
||||
0x330| 00 | . | [3]: 0 standard_wall_indicator (valid) 0x337-0x337.7 (1)
|
||||
0x330| 00 | . | [4]: 0 standard_wall_indicator (valid) 0x338-0x338.7 (1)
|
||||
0x330| 00 | . | [5]: 0 standard_wall_indicator (valid) 0x339-0x339.7 (1)
|
||||
0x330| 01 | . | [6]: 1 standard_wall_indicator (valid) 0x33a-0x33a.7 (1)
|
||||
0x330| 01 | . | [7]: 1 standard_wall_indicator (valid) 0x33b-0x33b.7 (1)
|
||||
0x330| 01 | . | [8]: 1 standard_wall_indicator (valid) 0x33c-0x33c.7 (1)
|
||||
0x330| 01 | . | [9]: 1 standard_wall_indicator (valid) 0x33d-0x33d.7 (1)
|
||||
| | | ut_local_indicators[0:10]: 0x33e-0x347.7 (10)
|
||||
0x330| 00 | . | [0]: 0 ut_local_indicator (valid) 0x33e-0x33e.7 (1)
|
||||
0x330| 00| .| [1]: 0 ut_local_indicator (valid) 0x33f-0x33f.7 (1)
|
||||
0x340|00 |. | [2]: 0 ut_local_indicator (valid) 0x340-0x340.7 (1)
|
||||
0x340| 00 | . | [3]: 0 ut_local_indicator (valid) 0x341-0x341.7 (1)
|
||||
0x340| 00 | . | [4]: 0 ut_local_indicator (valid) 0x342-0x342.7 (1)
|
||||
0x340| 00 | . | [5]: 0 ut_local_indicator (valid) 0x343-0x343.7 (1)
|
||||
0x340| 00 | . | [6]: 0 ut_local_indicator (valid) 0x344-0x344.7 (1)
|
||||
0x340| 00 | . | [7]: 0 ut_local_indicator (valid) 0x345-0x345.7 (1)
|
||||
0x340| 01 | . | [8]: 1 ut_local_indicator (valid) 0x346-0x346.7 (1)
|
||||
0x340| 01 | . | [9]: 1 ut_local_indicator (valid) 0x347-0x347.7 (1)
|
||||
| | | v2plusheader{}: 0x348-0x373.7 (44)
|
||||
0x340| 54 5a 69 66 | TZif | magic: 0x545a6966 (valid) 0x348-0x34b.7 (4)
|
||||
0x340| 32 | 2 | ver: "2" (0x32) (valid) 0x34c-0x34c.7 (1)
|
||||
0x340| 00 00 00| ...| reserved: raw bits 0x34d-0x35b.7 (15)
|
||||
0x350|00 00 00 00 00 00 00 00 00 00 00 00 |............ |
|
||||
0x350| 00 00 00 0a| ....| isutcnt: 10 0x35c-0x35f.7 (4)
|
||||
0x360|00 00 00 0a |.... | isstdcnt: 10 0x360-0x363.7 (4)
|
||||
0x360| 00 00 00 00 | .... | leapcnt: 0 0x364-0x367.7 (4)
|
||||
0x360| 00 00 00 8a | .... | timecnt: 138 0x368-0x36b.7 (4)
|
||||
0x360| 00 00 00 0a| ....| typecnt: 10 0x36c-0x36f.7 (4)
|
||||
0x370|00 00 00 1a |.... | charcnt: 26 0x370-0x373.7 (4)
|
||||
| | | v2plusdatablock{}: 0x374-0x8b7.7 (1348)
|
||||
| | | transition_times[0:138]: 0x374-0x7c3.7 (1104)
|
||||
0x370| ff ff ff ff 74 3f 98 44 | ....t?.D | [0]: "1895-09-13T22:25:08Z" (-2344642492) transition_time 0x374-0x37b.7 (8)
|
||||
0x370| ff ff ff ff| ....| [1]: "1916-07-27T22:26:08Z" (-1686101632) transition_time 0x37c-0x383.7 (8)
|
||||
0x380|9b 80 21 80 |..!. |
|
||||
0x380| ff ff ff ff b9 7c e9 e0 | .....|.. | [2]: "1932-07-06T22:00:00Z" (-1182996000) transition_time 0x384-0x38b.7 (8)
|
||||
0x380| ff ff ff ff| ....| [3]: "1932-08-31T21:00:00Z" (-1178161200) transition_time 0x38c-0x393.7 (8)
|
||||
0x390|b9 c6 af d0 |.... |
|
||||
0x390| ff ff ff ff c9 f2 63 e0 | ......c. | [4]: "1941-04-06T22:00:00Z" (-906861600) transition_time 0x394-0x39b.7 (8)
|
||||
0x390| ff ff ff ff| ....| [5]: "1941-04-29T21:00:00Z" (-904878000) transition_time 0x39c-0x3a3.7 (8)
|
||||
0x3a0|ca 10 a8 50 |...P |
|
||||
0x3a0| ff ff ff ff cc e7 4b 10 | ......K. | [6]: "1942-11-02T01:00:00Z" (-857257200) transition_time 0x3a4-0x3ab.7 (8)
|
||||
0x3a0| ff ff ff ff| ....| [7]: "1943-03-29T23:00:00Z" (-844477200) transition_time 0x3ac-0x3b3.7 (8)
|
||||
0x3b0|cd aa 4c f0 |..L. |
|
||||
0x3b0| ff ff ff ff ce a2 18 e0 | ........ | [8]: "1943-10-03T22:00:00Z" (-828237600) transition_time 0x3b4-0x3bb.7 (8)
|
||||
0x3b0| ff ff ff ff| ....| [9]: "1944-04-03T23:00:00Z" (-812422800) transition_time 0x3bc-0x3c3.7 (8)
|
||||
0x3c0|cf 93 69 70 |..ip |
|
||||
0x3c0| ff ff ff ff df 13 9e 60 | .......` | [10]: "1952-06-30T22:00:00Z" (-552362400) transition_time 0x3c4-0x3cb.7 (8)
|
||||
0x3c0| ff ff ff ff| ....| [11]: "1952-11-01T21:00:00Z" (-541652400) transition_time 0x3cc-0x3d3.7 (8)
|
||||
0x3d0|df b7 0a 50 |...P |
|
||||
0x3d0| 00 00 00 00 09 ec 5e 60 | ......^` | [12]: "1975-04-11T22:00:00Z" (166485600) transition_time 0x3d4-0x3db.7 (8)
|
||||
0x3d0| 00 00 00 00| ....| [13]: "1975-11-25T22:00:00Z" (186184800) transition_time 0x3dc-0x3e3.7 (8)
|
||||
0x3e0|0b 18 f4 60 |...` |
|
||||
0x3e0| 00 00 00 00 0b cd ae 00 | ........ | [14]: "1976-04-11T00:00:00Z" (198028800) transition_time 0x3e4-0x3eb.7 (8)
|
||||
0x3e0| 00 00 00 00| ....| [15]: "1976-10-10T00:00:00Z" (213753600) transition_time 0x3ec-0x3f3.7 (8)
|
||||
0x3f0|0c bd 9f 00 |.... |
|
||||
0x3f0| 00 00 00 00 0d a4 55 80 | ......U. | [16]: "1977-04-03T00:00:00Z" (228873600) transition_time 0x3f4-0x3fb.7 (8)
|
||||
0x3f0| 00 00 00 00| ....| [17]: "1977-09-26T00:00:00Z" (244080000) transition_time 0x3fc-0x403.7 (8)
|
||||
0x400|0e 8c 5d 80 |..]. |
|
||||
0x400| 00 00 00 00 0f 84 37 80 | ......7. | [18]: "1978-04-02T00:00:00Z" (260323200) transition_time 0x404-0x40b.7 (8)
|
||||
0x400| 00 00 00 00| ....| [19]: "1978-09-24T01:00:00Z" (275446800) transition_time 0x40c-0x413.7 (8)
|
||||
0x410|10 6a fc 10 |.j.. |
|
||||
0x410| 00 00 00 00 11 64 7b f0 | .....d{. | [20]: "1979-04-01T07:00:00Z" (291798000) transition_time 0x414-0x41b.7 (8)
|
||||
0x410| 00 00 00 00| ....| [21]: "1979-09-28T23:00:00Z" (307407600) transition_time 0x41c-0x423.7 (8)
|
||||
0x420|12 52 aa f0 |.R.. |
|
||||
0x420| 00 00 00 00 13 46 82 60 | .....F.` | [22]: "1980-03-31T22:00:00Z" (323388000) transition_time 0x424-0x42b.7 (8)
|
||||
0x420| 00 00 00 00| ....| [23]: "1980-09-27T21:00:00Z" (338936400) transition_time 0x42c-0x433.7 (8)
|
||||
0x430|14 33 c2 50 |.3.P |
|
||||
0x430| 00 00 00 00 15 23 eb 90 | .....#.. | [24]: "1981-03-29T01:00:00Z" (354675600) transition_time 0x434-0x43b.7 (8)
|
||||
0x430| 00 00 00 00| ....| [25]: "1981-09-27T01:00:00Z" (370400400) transition_time 0x43c-0x443.7 (8)
|
||||
0x440|16 13 dc 90 |.... |
|
||||
0x440| 00 00 00 00 17 03 cd 90 | ........ | [26]: "1982-03-28T01:00:00Z" (386125200) transition_time 0x444-0x44b.7 (8)
|
||||
0x440| 00 00 00 00| ....| [27]: "1982-09-26T01:00:00Z" (401850000) transition_time 0x44c-0x453.7 (8)
|
||||
0x450|17 f3 be 90 |.... |
|
||||
0x450| 00 00 00 00 18 e3 af 90 | ........ | [28]: "1983-03-27T01:00:00Z" (417574800) transition_time 0x454-0x45b.7 (8)
|
||||
0x450| 00 00 00 00| ....| [29]: "1983-09-25T01:00:00Z" (433299600) transition_time 0x45c-0x463.7 (8)
|
||||
0x460|19 d3 a0 90 |.... |
|
||||
0x460| 00 00 00 00 1a c3 91 90 | ........ | [30]: "1984-03-25T01:00:00Z" (449024400) transition_time 0x464-0x46b.7 (8)
|
||||
0x460| 00 00 00 00| ....| [31]: "1984-09-30T01:00:00Z" (465354000) transition_time 0x46c-0x473.7 (8)
|
||||
0x470|1b bc bd 10 |.... |
|
||||
0x470| 00 00 00 00 1c ac ae 10 | ........ | [32]: "1985-03-31T01:00:00Z" (481078800) transition_time 0x474-0x47b.7 (8)
|
||||
0x470| 00 00 00 00| ....| [33]: "1985-09-29T01:00:00Z" (496803600) transition_time 0x47c-0x483.7 (8)
|
||||
0x480|1d 9c 9f 10 |.... |
|
||||
0x480| 00 00 00 00 1e 8c 90 10 | ........ | [34]: "1986-03-30T01:00:00Z" (512528400) transition_time 0x484-0x48b.7 (8)
|
||||
0x480| 00 00 00 00| ....| [35]: "1986-09-28T01:00:00Z" (528253200) transition_time 0x48c-0x493.7 (8)
|
||||
0x490|1f 7c 81 10 |.|.. |
|
||||
0x490| 00 00 00 00 20 6c 72 10 | .... lr. | [36]: "1987-03-29T01:00:00Z" (543978000) transition_time 0x494-0x49b.7 (8)
|
||||
0x490| 00 00 00 00| ....| [37]: "1987-09-27T01:00:00Z" (559702800) transition_time 0x49c-0x4a3.7 (8)
|
||||
0x4a0|21 5c 63 10 |!\c. |
|
||||
0x4a0| 00 00 00 00 22 4c 54 10 | ...."LT. | [38]: "1988-03-27T01:00:00Z" (575427600) transition_time 0x4a4-0x4ab.7 (8)
|
||||
0x4a0| 00 00 00 00| ....| [39]: "1988-09-25T01:00:00Z" (591152400) transition_time 0x4ac-0x4b3.7 (8)
|
||||
0x4b0|23 3c 45 10 |#<E. |
|
||||
0x4b0| 00 00 00 00 24 2c 36 10 | ....$,6. | [40]: "1989-03-26T01:00:00Z" (606877200) transition_time 0x4b4-0x4bb.7 (8)
|
||||
0x4b0| 00 00 00 00| ....| [41]: "1989-09-24T01:00:00Z" (622602000) transition_time 0x4bc-0x4c3.7 (8)
|
||||
0x4c0|25 1c 27 10 |%.'. |
|
||||
0x4c0| 00 00 00 00 26 0c 18 10 | ....&... | [42]: "1990-03-25T01:00:00Z" (638326800) transition_time 0x4c4-0x4cb.7 (8)
|
||||
0x4c0| 00 00 00 00| ....| [43]: "1990-09-30T01:00:00Z" (654656400) transition_time 0x4cc-0x4d3.7 (8)
|
||||
0x4d0|27 05 43 90 |'.C. |
|
||||
0x4d0| 00 00 00 00 27 f5 34 90 | ....'.4. | [44]: "1991-03-31T01:00:00Z" (670381200) transition_time 0x4d4-0x4db.7 (8)
|
||||
0x4d0| 00 00 00 00| ....| [45]: "1991-09-29T01:00:00Z" (686106000) transition_time 0x4dc-0x4e3.7 (8)
|
||||
0x4e0|28 e5 25 90 |(.%. |
|
||||
0x4e0| 00 00 00 00 29 d5 16 90 | ....)... | [46]: "1992-03-29T01:00:00Z" (701830800) transition_time 0x4e4-0x4eb.7 (8)
|
||||
0x4e0| 00 00 00 00| ....| [47]: "1992-09-27T01:00:00Z" (717555600) transition_time 0x4ec-0x4f3.7 (8)
|
||||
0x4f0|2a c5 07 90 |*... |
|
||||
0x4f0| 00 00 00 00 2b b4 f8 90 | ....+... | [48]: "1993-03-28T01:00:00Z" (733280400) transition_time 0x4f4-0x4fb.7 (8)
|
||||
0x4f0| 00 00 00 00| ....| [49]: "1993-09-26T01:00:00Z" (749005200) transition_time 0x4fc-0x503.7 (8)
|
||||
0x500|2c a4 e9 90 |,... |
|
||||
0x500| 00 00 00 00 2d 94 da 90 | ....-... | [50]: "1994-03-27T01:00:00Z" (764730000) transition_time 0x504-0x50b.7 (8)
|
||||
0x500| 00 00 00 00| ....| [51]: "1994-09-25T01:00:00Z" (780454800) transition_time 0x50c-0x513.7 (8)
|
||||
0x510|2e 84 cb 90 |.... |
|
||||
0x510| 00 00 00 00 2f 74 bc 90 | ..../t.. | [52]: "1995-03-26T01:00:00Z" (796179600) transition_time 0x514-0x51b.7 (8)
|
||||
0x510| 00 00 00 00| ....| [53]: "1995-09-24T01:00:00Z" (811904400) transition_time 0x51c-0x523.7 (8)
|
||||
0x520|30 64 ad 90 |0d.. |
|
||||
0x520| 00 00 00 00 31 5d d9 10 | ....1].. | [54]: "1996-03-31T01:00:00Z" (828234000) transition_time 0x524-0x52b.7 (8)
|
||||
0x520| 00 00 00 00| ....| [55]: "1996-10-27T01:00:00Z" (846378000) transition_time 0x52c-0x533.7 (8)
|
||||
0x530|32 72 b4 10 |2r.. |
|
||||
0x530| 00 00 00 00 33 3d bb 10 | ....3=.. | [56]: "1997-03-30T01:00:00Z" (859683600) transition_time 0x534-0x53b.7 (8)
|
||||
0x530| 00 00 00 00| ....| [57]: "1997-10-26T01:00:00Z" (877827600) transition_time 0x53c-0x543.7 (8)
|
||||
0x540|34 52 96 10 |4R.. |
|
||||
0x540| 00 00 00 00 35 1d 9d 10 | ....5... | [58]: "1998-03-29T01:00:00Z" (891133200) transition_time 0x544-0x54b.7 (8)
|
||||
0x540| 00 00 00 00| ....| [59]: "1998-10-25T01:00:00Z" (909277200) transition_time 0x54c-0x553.7 (8)
|
||||
0x550|36 32 78 10 |62x. |
|
||||
0x550| 00 00 00 00 36 fd 7f 10 | ....6... | [60]: "1999-03-28T01:00:00Z" (922582800) transition_time 0x554-0x55b.7 (8)
|
||||
0x550| 00 00 00 00| ....| [61]: "1999-10-31T01:00:00Z" (941331600) transition_time 0x55c-0x563.7 (8)
|
||||
0x560|38 1b 94 90 |8... |
|
||||
0x560| 00 00 00 00 38 dd 61 10 | ....8.a. | [62]: "2000-03-26T01:00:00Z" (954032400) transition_time 0x564-0x56b.7 (8)
|
||||
0x560| 00 00 00 00| ....| [63]: "2000-10-29T01:00:00Z" (972781200) transition_time 0x56c-0x573.7 (8)
|
||||
0x570|39 fb 76 90 |9.v. |
|
||||
0x570| 00 00 00 00 3a bd 43 10 | ....:.C. | [64]: "2001-03-25T01:00:00Z" (985482000) transition_time 0x574-0x57b.7 (8)
|
||||
0x570| 00 00 00 00| ....| [65]: "2001-10-28T01:00:00Z" (1004230800) transition_time 0x57c-0x583.7 (8)
|
||||
0x580|3b db 58 90 |;.X. |
|
||||
0x580| 00 00 00 00 3c a6 5f 90 | ....<._. | [66]: "2002-03-31T01:00:00Z" (1017536400) transition_time 0x584-0x58b.7 (8)
|
||||
0x580| 00 00 00 00| ....| [67]: "2002-10-27T01:00:00Z" (1035680400) transition_time 0x58c-0x593.7 (8)
|
||||
0x590|3d bb 3a 90 |=.:. |
|
||||
0x590| 00 00 00 00 3e 86 41 90 | ....>.A. | [68]: "2003-03-30T01:00:00Z" (1048986000) transition_time 0x594-0x59b.7 (8)
|
||||
0x590| 00 00 00 00| ....| [69]: "2003-10-26T01:00:00Z" (1067130000) transition_time 0x59c-0x5a3.7 (8)
|
||||
0x5a0|3f 9b 1c 90 |?... |
|
||||
0x5a0| 00 00 00 00 40 66 23 90 | ....@f#. | [70]: "2004-03-28T01:00:00Z" (1080435600) transition_time 0x5a4-0x5ab.7 (8)
|
||||
0x5a0| 00 00 00 00| ....| [71]: "2004-10-31T01:00:00Z" (1099184400) transition_time 0x5ac-0x5b3.7 (8)
|
||||
0x5b0|41 84 39 10 |A.9. |
|
||||
0x5b0| 00 00 00 00 42 46 05 90 | ....BF.. | [72]: "2005-03-27T01:00:00Z" (1111885200) transition_time 0x5b4-0x5bb.7 (8)
|
||||
0x5b0| 00 00 00 00| ....| [73]: "2005-10-30T01:00:00Z" (1130634000) transition_time 0x5bc-0x5c3.7 (8)
|
||||
0x5c0|43 64 1b 10 |Cd.. |
|
||||
0x5c0| 00 00 00 00 44 25 e7 90 | ....D%.. | [74]: "2006-03-26T01:00:00Z" (1143334800) transition_time 0x5c4-0x5cb.7 (8)
|
||||
0x5c0| 00 00 00 00| ....| [75]: "2006-10-29T01:00:00Z" (1162083600) transition_time 0x5cc-0x5d3.7 (8)
|
||||
0x5d0|45 43 fd 10 |EC.. |
|
||||
0x5d0| 00 00 00 00 46 05 c9 90 | ....F... | [76]: "2007-03-25T01:00:00Z" (1174784400) transition_time 0x5d4-0x5db.7 (8)
|
||||
0x5d0| 00 00 00 00| ....| [77]: "2007-10-28T01:00:00Z" (1193533200) transition_time 0x5dc-0x5e3.7 (8)
|
||||
0x5e0|47 23 df 10 |G#.. |
|
||||
0x5e0| 00 00 00 00 47 ee e6 10 | ....G... | [78]: "2008-03-30T01:00:00Z" (1206838800) transition_time 0x5e4-0x5eb.7 (8)
|
||||
0x5e0| 00 00 00 00| ....| [79]: "2008-10-26T01:00:00Z" (1224982800) transition_time 0x5ec-0x5f3.7 (8)
|
||||
0x5f0|49 03 c1 10 |I... |
|
||||
0x5f0| 00 00 00 00 49 ce c8 10 | ....I... | [80]: "2009-03-29T01:00:00Z" (1238288400) transition_time 0x5f4-0x5fb.7 (8)
|
||||
0x5f0| 00 00 00 00| ....| [81]: "2009-10-25T01:00:00Z" (1256432400) transition_time 0x5fc-0x603.7 (8)
|
||||
0x600|4a e3 a3 10 |J... |
|
||||
0x600| 00 00 00 00 4b ae aa 10 | ....K... | [82]: "2010-03-28T01:00:00Z" (1269738000) transition_time 0x604-0x60b.7 (8)
|
||||
0x600| 00 00 00 00| ....| [83]: "2010-10-31T01:00:00Z" (1288486800) transition_time 0x60c-0x613.7 (8)
|
||||
0x610|4c cc bf 90 |L... |
|
||||
0x610| 00 00 00 00 4d 8e 8c 10 | ....M... | [84]: "2011-03-27T01:00:00Z" (1301187600) transition_time 0x614-0x61b.7 (8)
|
||||
0x610| 00 00 00 00| ....| [85]: "2011-10-30T01:00:00Z" (1319936400) transition_time 0x61c-0x623.7 (8)
|
||||
0x620|4e ac a1 90 |N... |
|
||||
0x620| 00 00 00 00 4f 6e 6e 10 | ....Onn. | [86]: "2012-03-25T01:00:00Z" (1332637200) transition_time 0x624-0x62b.7 (8)
|
||||
0x620| 00 00 00 00| ....| [87]: "2012-10-28T01:00:00Z" (1351386000) transition_time 0x62c-0x633.7 (8)
|
||||
0x630|50 8c 83 90 |P... |
|
||||
0x630| 00 00 00 00 51 57 8a 90 | ....QW.. | [88]: "2013-03-31T01:00:00Z" (1364691600) transition_time 0x634-0x63b.7 (8)
|
||||
0x630| 00 00 00 00| ....| [89]: "2013-10-27T01:00:00Z" (1382835600) transition_time 0x63c-0x643.7 (8)
|
||||
0x640|52 6c 65 90 |Rle. |
|
||||
0x640| 00 00 00 00 53 37 6c 90 | ....S7l. | [90]: "2014-03-30T01:00:00Z" (1396141200) transition_time 0x644-0x64b.7 (8)
|
||||
0x640| 00 00 00 00| ....| [91]: "2014-10-26T01:00:00Z" (1414285200) transition_time 0x64c-0x653.7 (8)
|
||||
0x650|54 4c 47 90 |TLG. |
|
||||
0x650| 00 00 00 00 55 17 4e 90 | ....U.N. | [92]: "2015-03-29T01:00:00Z" (1427590800) transition_time 0x654-0x65b.7 (8)
|
||||
0x650| 00 00 00 00| ....| [93]: "2015-10-25T01:00:00Z" (1445734800) transition_time 0x65c-0x663.7 (8)
|
||||
0x660|56 2c 29 90 |V,). |
|
||||
0x660| 00 00 00 00 56 f7 30 90 | ....V.0. | [94]: "2016-03-27T01:00:00Z" (1459040400) transition_time 0x664-0x66b.7 (8)
|
||||
0x660| 00 00 00 00| ....| [95]: "2016-10-30T01:00:00Z" (1477789200) transition_time 0x66c-0x673.7 (8)
|
||||
0x670|58 15 46 10 |X.F. |
|
||||
0x670| 00 00 00 00 58 d7 12 90 | ....X... | [96]: "2017-03-26T01:00:00Z" (1490490000) transition_time 0x674-0x67b.7 (8)
|
||||
0x670| 00 00 00 00| ....| [97]: "2017-10-29T01:00:00Z" (1509238800) transition_time 0x67c-0x683.7 (8)
|
||||
0x680|59 f5 28 10 |Y.(. |
|
||||
0x680| 00 00 00 00 5a b6 f4 90 | ....Z... | [98]: "2018-03-25T01:00:00Z" (1521939600) transition_time 0x684-0x68b.7 (8)
|
||||
0x680| 00 00 00 00| ....| [99]: "2018-10-28T01:00:00Z" (1540688400) transition_time 0x68c-0x693.7 (8)
|
||||
0x690|5b d5 0a 10 |[... |
|
||||
0x690| 00 00 00 00 5c a0 11 10 | ....\... | [100]: "2019-03-31T01:00:00Z" (1553994000) transition_time 0x694-0x69b.7 (8)
|
||||
0x690| 00 00 00 00| ....| [101]: "2019-10-27T01:00:00Z" (1572138000) transition_time 0x69c-0x6a3.7 (8)
|
||||
0x6a0|5d b4 ec 10 |]... |
|
||||
0x6a0| 00 00 00 00 5e 7f f3 10 | ....^... | [102]: "2020-03-29T01:00:00Z" (1585443600) transition_time 0x6a4-0x6ab.7 (8)
|
||||
0x6a0| 00 00 00 00| ....| [103]: "2020-10-25T01:00:00Z" (1603587600) transition_time 0x6ac-0x6b3.7 (8)
|
||||
0x6b0|5f 94 ce 10 |_... |
|
||||
0x6b0| 00 00 00 00 60 5f d5 10 | ....`_.. | [104]: "2021-03-28T01:00:00Z" (1616893200) transition_time 0x6b4-0x6bb.7 (8)
|
||||
0x6b0| 00 00 00 00| ....| [105]: "2021-10-31T01:00:00Z" (1635642000) transition_time 0x6bc-0x6c3.7 (8)
|
||||
0x6c0|61 7d ea 90 |a}.. |
|
||||
0x6c0| 00 00 00 00 62 3f b7 10 | ....b?.. | [106]: "2022-03-27T01:00:00Z" (1648342800) transition_time 0x6c4-0x6cb.7 (8)
|
||||
0x6c0| 00 00 00 00| ....| [107]: "2022-10-30T01:00:00Z" (1667091600) transition_time 0x6cc-0x6d3.7 (8)
|
||||
0x6d0|63 5d cc 90 |c].. |
|
||||
0x6d0| 00 00 00 00 64 1f 99 10 | ....d... | [108]: "2023-03-26T01:00:00Z" (1679792400) transition_time 0x6d4-0x6db.7 (8)
|
||||
0x6d0| 00 00 00 00| ....| [109]: "2023-10-29T01:00:00Z" (1698541200) transition_time 0x6dc-0x6e3.7 (8)
|
||||
0x6e0|65 3d ae 90 |e=.. |
|
||||
0x6e0| 00 00 00 00 66 08 b5 90 | ....f... | [110]: "2024-03-31T01:00:00Z" (1711846800) transition_time 0x6e4-0x6eb.7 (8)
|
||||
0x6e0| 00 00 00 00| ....| [111]: "2024-10-27T01:00:00Z" (1729990800) transition_time 0x6ec-0x6f3.7 (8)
|
||||
0x6f0|67 1d 90 90 |g... |
|
||||
0x6f0| 00 00 00 00 67 e8 97 90 | ....g... | [112]: "2025-03-30T01:00:00Z" (1743296400) transition_time 0x6f4-0x6fb.7 (8)
|
||||
0x6f0| 00 00 00 00| ....| [113]: "2025-10-26T01:00:00Z" (1761440400) transition_time 0x6fc-0x703.7 (8)
|
||||
0x700|68 fd 72 90 |h.r. |
|
||||
0x700| 00 00 00 00 69 c8 79 90 | ....i.y. | [114]: "2026-03-29T01:00:00Z" (1774746000) transition_time 0x704-0x70b.7 (8)
|
||||
0x700| 00 00 00 00| ....| [115]: "2026-10-25T01:00:00Z" (1792890000) transition_time 0x70c-0x713.7 (8)
|
||||
0x710|6a dd 54 90 |j.T. |
|
||||
0x710| 00 00 00 00 6b a8 5b 90 | ....k.[. | [116]: "2027-03-28T01:00:00Z" (1806195600) transition_time 0x714-0x71b.7 (8)
|
||||
0x710| 00 00 00 00| ....| [117]: "2027-10-31T01:00:00Z" (1824944400) transition_time 0x71c-0x723.7 (8)
|
||||
0x720|6c c6 71 10 |l.q. |
|
||||
0x720| 00 00 00 00 6d 88 3d 90 | ....m.=. | [118]: "2028-03-26T01:00:00Z" (1837645200) transition_time 0x724-0x72b.7 (8)
|
||||
0x720| 00 00 00 00| ....| [119]: "2028-10-29T01:00:00Z" (1856394000) transition_time 0x72c-0x733.7 (8)
|
||||
0x730|6e a6 53 10 |n.S. |
|
||||
0x730| 00 00 00 00 6f 68 1f 90 | ....oh.. | [120]: "2029-03-25T01:00:00Z" (1869094800) transition_time 0x734-0x73b.7 (8)
|
||||
0x730| 00 00 00 00| ....| [121]: "2029-10-28T01:00:00Z" (1887843600) transition_time 0x73c-0x743.7 (8)
|
||||
0x740|70 86 35 10 |p.5. |
|
||||
0x740| 00 00 00 00 71 51 3c 10 | ....qQ<. | [122]: "2030-03-31T01:00:00Z" (1901149200) transition_time 0x744-0x74b.7 (8)
|
||||
0x740| 00 00 00 00| ....| [123]: "2030-10-27T01:00:00Z" (1919293200) transition_time 0x74c-0x753.7 (8)
|
||||
0x750|72 66 17 10 |rf.. |
|
||||
0x750| 00 00 00 00 73 31 1e 10 | ....s1.. | [124]: "2031-03-30T01:00:00Z" (1932598800) transition_time 0x754-0x75b.7 (8)
|
||||
0x750| 00 00 00 00| ....| [125]: "2031-10-26T01:00:00Z" (1950742800) transition_time 0x75c-0x763.7 (8)
|
||||
0x760|74 45 f9 10 |tE.. |
|
||||
0x760| 00 00 00 00 75 11 00 10 | ....u... | [126]: "2032-03-28T01:00:00Z" (1964048400) transition_time 0x764-0x76b.7 (8)
|
||||
0x760| 00 00 00 00| ....| [127]: "2032-10-31T01:00:00Z" (1982797200) transition_time 0x76c-0x773.7 (8)
|
||||
0x770|76 2f 15 90 |v/.. |
|
||||
0x770| 00 00 00 00 76 f0 e2 10 | ....v... | [128]: "2033-03-27T01:00:00Z" (1995498000) transition_time 0x774-0x77b.7 (8)
|
||||
0x770| 00 00 00 00| ....| [129]: "2033-10-30T01:00:00Z" (2014246800) transition_time 0x77c-0x783.7 (8)
|
||||
0x780|78 0e f7 90 |x... |
|
||||
0x780| 00 00 00 00 78 d0 c4 10 | ....x... | [130]: "2034-03-26T01:00:00Z" (2026947600) transition_time 0x784-0x78b.7 (8)
|
||||
0x780| 00 00 00 00| ....| [131]: "2034-10-29T01:00:00Z" (2045696400) transition_time 0x78c-0x793.7 (8)
|
||||
0x790|79 ee d9 90 |y... |
|
||||
0x790| 00 00 00 00 7a b0 a6 10 | ....z... | [132]: "2035-03-25T01:00:00Z" (2058397200) transition_time 0x794-0x79b.7 (8)
|
||||
0x790| 00 00 00 00| ....| [133]: "2035-10-28T01:00:00Z" (2077146000) transition_time 0x79c-0x7a3.7 (8)
|
||||
0x7a0|7b ce bb 90 |{... |
|
||||
0x7a0| 00 00 00 00 7c 99 c2 90 | ....|... | [134]: "2036-03-30T01:00:00Z" (2090451600) transition_time 0x7a4-0x7ab.7 (8)
|
||||
0x7a0| 00 00 00 00| ....| [135]: "2036-10-26T01:00:00Z" (2108595600) transition_time 0x7ac-0x7b3.7 (8)
|
||||
0x7b0|7d ae 9d 90 |}... |
|
||||
0x7b0| 00 00 00 00 7e 79 a4 90 | ....~y.. | [136]: "2037-03-29T01:00:00Z" (2121901200) transition_time 0x7b4-0x7bb.7 (8)
|
||||
0x7b0| 00 00 00 00| ....| [137]: "2037-10-25T01:00:00Z" (2140045200) transition_time 0x7bc-0x7c3.7 (8)
|
||||
0x7c0|7f 8e 7f 90 |.... |
|
||||
| | | transition_types[0:138]: 0x7c4-0x84d.7 (138)
|
||||
0x7c0| 01 | . | [0]: 1 transition_type 0x7c4-0x7c4.7 (1)
|
||||
0x7c0| 03 | . | [1]: 3 transition_type 0x7c5-0x7c5.7 (1)
|
||||
0x7c0| 02 | . | [2]: 2 transition_type 0x7c6-0x7c6.7 (1)
|
||||
0x7c0| 03 | . | [3]: 3 transition_type 0x7c7-0x7c7.7 (1)
|
||||
0x7c0| 02 | . | [4]: 2 transition_type 0x7c8-0x7c8.7 (1)
|
||||
0x7c0| 05 | . | [5]: 5 transition_type 0x7c9-0x7c9.7 (1)
|
||||
0x7c0| 04 | . | [6]: 4 transition_type 0x7ca-0x7ca.7 (1)
|
||||
0x7c0| 05 | . | [7]: 5 transition_type 0x7cb-0x7cb.7 (1)
|
||||
0x7c0| 04 | . | [8]: 4 transition_type 0x7cc-0x7cc.7 (1)
|
||||
0x7c0| 03 | . | [9]: 3 transition_type 0x7cd-0x7cd.7 (1)
|
||||
0x7c0| 02 | . | [10]: 2 transition_type 0x7ce-0x7ce.7 (1)
|
||||
0x7c0| 03| .| [11]: 3 transition_type 0x7cf-0x7cf.7 (1)
|
||||
0x7d0|06 |. | [12]: 6 transition_type 0x7d0-0x7d0.7 (1)
|
||||
0x7d0| 07 | . | [13]: 7 transition_type 0x7d1-0x7d1.7 (1)
|
||||
0x7d0| 06 | . | [14]: 6 transition_type 0x7d2-0x7d2.7 (1)
|
||||
0x7d0| 07 | . | [15]: 7 transition_type 0x7d3-0x7d3.7 (1)
|
||||
0x7d0| 06 | . | [16]: 6 transition_type 0x7d4-0x7d4.7 (1)
|
||||
0x7d0| 07 | . | [17]: 7 transition_type 0x7d5-0x7d5.7 (1)
|
||||
0x7d0| 06 | . | [18]: 6 transition_type 0x7d6-0x7d6.7 (1)
|
||||
0x7d0| 03 | . | [19]: 3 transition_type 0x7d7-0x7d7.7 (1)
|
||||
0x7d0| 02 | . | [20]: 2 transition_type 0x7d8-0x7d8.7 (1)
|
||||
0x7d0| 03 | . | [21]: 3 transition_type 0x7d9-0x7d9.7 (1)
|
||||
0x7d0| 02 | . | [22]: 2 transition_type 0x7da-0x7da.7 (1)
|
||||
0x7d0| 03 | . | [23]: 3 transition_type 0x7db-0x7db.7 (1)
|
||||
0x7d0| 08 | . | [24]: 8 transition_type 0x7dc-0x7dc.7 (1)
|
||||
0x7d0| 09 | . | [25]: 9 transition_type 0x7dd-0x7dd.7 (1)
|
||||
0x7d0| 08 | . | [26]: 8 transition_type 0x7de-0x7de.7 (1)
|
||||
0x7d0| 09| .| [27]: 9 transition_type 0x7df-0x7df.7 (1)
|
||||
0x7e0|08 |. | [28]: 8 transition_type 0x7e0-0x7e0.7 (1)
|
||||
0x7e0| 09 | . | [29]: 9 transition_type 0x7e1-0x7e1.7 (1)
|
||||
0x7e0| 08 | . | [30]: 8 transition_type 0x7e2-0x7e2.7 (1)
|
||||
0x7e0| 09 | . | [31]: 9 transition_type 0x7e3-0x7e3.7 (1)
|
||||
0x7e0| 08 | . | [32]: 8 transition_type 0x7e4-0x7e4.7 (1)
|
||||
0x7e0| 09 | . | [33]: 9 transition_type 0x7e5-0x7e5.7 (1)
|
||||
0x7e0| 08 | . | [34]: 8 transition_type 0x7e6-0x7e6.7 (1)
|
||||
0x7e0| 09 | . | [35]: 9 transition_type 0x7e7-0x7e7.7 (1)
|
||||
0x7e0| 08 | . | [36]: 8 transition_type 0x7e8-0x7e8.7 (1)
|
||||
0x7e0| 09 | . | [37]: 9 transition_type 0x7e9-0x7e9.7 (1)
|
||||
0x7e0| 08 | . | [38]: 8 transition_type 0x7ea-0x7ea.7 (1)
|
||||
0x7e0| 09 | . | [39]: 9 transition_type 0x7eb-0x7eb.7 (1)
|
||||
0x7e0| 08 | . | [40]: 8 transition_type 0x7ec-0x7ec.7 (1)
|
||||
0x7e0| 09 | . | [41]: 9 transition_type 0x7ed-0x7ed.7 (1)
|
||||
0x7e0| 08 | . | [42]: 8 transition_type 0x7ee-0x7ee.7 (1)
|
||||
0x7e0| 09| .| [43]: 9 transition_type 0x7ef-0x7ef.7 (1)
|
||||
0x7f0|08 |. | [44]: 8 transition_type 0x7f0-0x7f0.7 (1)
|
||||
0x7f0| 09 | . | [45]: 9 transition_type 0x7f1-0x7f1.7 (1)
|
||||
0x7f0| 08 | . | [46]: 8 transition_type 0x7f2-0x7f2.7 (1)
|
||||
0x7f0| 09 | . | [47]: 9 transition_type 0x7f3-0x7f3.7 (1)
|
||||
0x7f0| 08 | . | [48]: 8 transition_type 0x7f4-0x7f4.7 (1)
|
||||
0x7f0| 09 | . | [49]: 9 transition_type 0x7f5-0x7f5.7 (1)
|
||||
0x7f0| 08 | . | [50]: 8 transition_type 0x7f6-0x7f6.7 (1)
|
||||
0x7f0| 09 | . | [51]: 9 transition_type 0x7f7-0x7f7.7 (1)
|
||||
0x7f0| 08 | . | [52]: 8 transition_type 0x7f8-0x7f8.7 (1)
|
||||
0x7f0| 09 | . | [53]: 9 transition_type 0x7f9-0x7f9.7 (1)
|
||||
0x7f0| 08 | . | [54]: 8 transition_type 0x7fa-0x7fa.7 (1)
|
||||
0x7f0| 09 | . | [55]: 9 transition_type 0x7fb-0x7fb.7 (1)
|
||||
0x7f0| 08 | . | [56]: 8 transition_type 0x7fc-0x7fc.7 (1)
|
||||
0x7f0| 09 | . | [57]: 9 transition_type 0x7fd-0x7fd.7 (1)
|
||||
0x7f0| 08 | . | [58]: 8 transition_type 0x7fe-0x7fe.7 (1)
|
||||
0x7f0| 09| .| [59]: 9 transition_type 0x7ff-0x7ff.7 (1)
|
||||
0x800|08 |. | [60]: 8 transition_type 0x800-0x800.7 (1)
|
||||
0x800| 09 | . | [61]: 9 transition_type 0x801-0x801.7 (1)
|
||||
0x800| 08 | . | [62]: 8 transition_type 0x802-0x802.7 (1)
|
||||
0x800| 09 | . | [63]: 9 transition_type 0x803-0x803.7 (1)
|
||||
0x800| 08 | . | [64]: 8 transition_type 0x804-0x804.7 (1)
|
||||
0x800| 09 | . | [65]: 9 transition_type 0x805-0x805.7 (1)
|
||||
0x800| 08 | . | [66]: 8 transition_type 0x806-0x806.7 (1)
|
||||
0x800| 09 | . | [67]: 9 transition_type 0x807-0x807.7 (1)
|
||||
0x800| 08 | . | [68]: 8 transition_type 0x808-0x808.7 (1)
|
||||
0x800| 09 | . | [69]: 9 transition_type 0x809-0x809.7 (1)
|
||||
0x800| 08 | . | [70]: 8 transition_type 0x80a-0x80a.7 (1)
|
||||
0x800| 09 | . | [71]: 9 transition_type 0x80b-0x80b.7 (1)
|
||||
0x800| 08 | . | [72]: 8 transition_type 0x80c-0x80c.7 (1)
|
||||
0x800| 09 | . | [73]: 9 transition_type 0x80d-0x80d.7 (1)
|
||||
0x800| 08 | . | [74]: 8 transition_type 0x80e-0x80e.7 (1)
|
||||
0x800| 09| .| [75]: 9 transition_type 0x80f-0x80f.7 (1)
|
||||
0x810|08 |. | [76]: 8 transition_type 0x810-0x810.7 (1)
|
||||
0x810| 09 | . | [77]: 9 transition_type 0x811-0x811.7 (1)
|
||||
0x810| 08 | . | [78]: 8 transition_type 0x812-0x812.7 (1)
|
||||
0x810| 09 | . | [79]: 9 transition_type 0x813-0x813.7 (1)
|
||||
0x810| 08 | . | [80]: 8 transition_type 0x814-0x814.7 (1)
|
||||
0x810| 09 | . | [81]: 9 transition_type 0x815-0x815.7 (1)
|
||||
0x810| 08 | . | [82]: 8 transition_type 0x816-0x816.7 (1)
|
||||
0x810| 09 | . | [83]: 9 transition_type 0x817-0x817.7 (1)
|
||||
0x810| 08 | . | [84]: 8 transition_type 0x818-0x818.7 (1)
|
||||
0x810| 09 | . | [85]: 9 transition_type 0x819-0x819.7 (1)
|
||||
0x810| 08 | . | [86]: 8 transition_type 0x81a-0x81a.7 (1)
|
||||
0x810| 09 | . | [87]: 9 transition_type 0x81b-0x81b.7 (1)
|
||||
0x810| 08 | . | [88]: 8 transition_type 0x81c-0x81c.7 (1)
|
||||
0x810| 09 | . | [89]: 9 transition_type 0x81d-0x81d.7 (1)
|
||||
0x810| 08 | . | [90]: 8 transition_type 0x81e-0x81e.7 (1)
|
||||
0x810| 09| .| [91]: 9 transition_type 0x81f-0x81f.7 (1)
|
||||
0x820|08 |. | [92]: 8 transition_type 0x820-0x820.7 (1)
|
||||
0x820| 09 | . | [93]: 9 transition_type 0x821-0x821.7 (1)
|
||||
0x820| 08 | . | [94]: 8 transition_type 0x822-0x822.7 (1)
|
||||
0x820| 09 | . | [95]: 9 transition_type 0x823-0x823.7 (1)
|
||||
0x820| 08 | . | [96]: 8 transition_type 0x824-0x824.7 (1)
|
||||
0x820| 09 | . | [97]: 9 transition_type 0x825-0x825.7 (1)
|
||||
0x820| 08 | . | [98]: 8 transition_type 0x826-0x826.7 (1)
|
||||
0x820| 09 | . | [99]: 9 transition_type 0x827-0x827.7 (1)
|
||||
0x820| 08 | . | [100]: 8 transition_type 0x828-0x828.7 (1)
|
||||
0x820| 09 | . | [101]: 9 transition_type 0x829-0x829.7 (1)
|
||||
0x820| 08 | . | [102]: 8 transition_type 0x82a-0x82a.7 (1)
|
||||
0x820| 09 | . | [103]: 9 transition_type 0x82b-0x82b.7 (1)
|
||||
0x820| 08 | . | [104]: 8 transition_type 0x82c-0x82c.7 (1)
|
||||
0x820| 09 | . | [105]: 9 transition_type 0x82d-0x82d.7 (1)
|
||||
0x820| 08 | . | [106]: 8 transition_type 0x82e-0x82e.7 (1)
|
||||
0x820| 09| .| [107]: 9 transition_type 0x82f-0x82f.7 (1)
|
||||
0x830|08 |. | [108]: 8 transition_type 0x830-0x830.7 (1)
|
||||
0x830| 09 | . | [109]: 9 transition_type 0x831-0x831.7 (1)
|
||||
0x830| 08 | . | [110]: 8 transition_type 0x832-0x832.7 (1)
|
||||
0x830| 09 | . | [111]: 9 transition_type 0x833-0x833.7 (1)
|
||||
0x830| 08 | . | [112]: 8 transition_type 0x834-0x834.7 (1)
|
||||
0x830| 09 | . | [113]: 9 transition_type 0x835-0x835.7 (1)
|
||||
0x830| 08 | . | [114]: 8 transition_type 0x836-0x836.7 (1)
|
||||
0x830| 09 | . | [115]: 9 transition_type 0x837-0x837.7 (1)
|
||||
0x830| 08 | . | [116]: 8 transition_type 0x838-0x838.7 (1)
|
||||
0x830| 09 | . | [117]: 9 transition_type 0x839-0x839.7 (1)
|
||||
0x830| 08 | . | [118]: 8 transition_type 0x83a-0x83a.7 (1)
|
||||
0x830| 09 | . | [119]: 9 transition_type 0x83b-0x83b.7 (1)
|
||||
0x830| 08 | . | [120]: 8 transition_type 0x83c-0x83c.7 (1)
|
||||
0x830| 09 | . | [121]: 9 transition_type 0x83d-0x83d.7 (1)
|
||||
0x830| 08 | . | [122]: 8 transition_type 0x83e-0x83e.7 (1)
|
||||
0x830| 09| .| [123]: 9 transition_type 0x83f-0x83f.7 (1)
|
||||
0x840|08 |. | [124]: 8 transition_type 0x840-0x840.7 (1)
|
||||
0x840| 09 | . | [125]: 9 transition_type 0x841-0x841.7 (1)
|
||||
0x840| 08 | . | [126]: 8 transition_type 0x842-0x842.7 (1)
|
||||
0x840| 09 | . | [127]: 9 transition_type 0x843-0x843.7 (1)
|
||||
0x840| 08 | . | [128]: 8 transition_type 0x844-0x844.7 (1)
|
||||
0x840| 09 | . | [129]: 9 transition_type 0x845-0x845.7 (1)
|
||||
0x840| 08 | . | [130]: 8 transition_type 0x846-0x846.7 (1)
|
||||
0x840| 09 | . | [131]: 9 transition_type 0x847-0x847.7 (1)
|
||||
0x840| 08 | . | [132]: 8 transition_type 0x848-0x848.7 (1)
|
||||
0x840| 09 | . | [133]: 9 transition_type 0x849-0x849.7 (1)
|
||||
0x840| 08 | . | [134]: 8 transition_type 0x84a-0x84a.7 (1)
|
||||
0x840| 09 | . | [135]: 9 transition_type 0x84b-0x84b.7 (1)
|
||||
0x840| 08 | . | [136]: 8 transition_type 0x84c-0x84c.7 (1)
|
||||
0x840| 09 | . | [137]: 9 transition_type 0x84d-0x84d.7 (1)
|
||||
| | | local_time_type_records[0:10]: 0x84e-0x889.7 (60)
|
||||
| | | [0]{}: local_time_type 0x84e-0x853.7 (6)
|
||||
0x840| 00 00| ..| utoff: 5692 (valid) 0x84e-0x851.7 (4)
|
||||
0x850|16 3c |.< |
|
||||
0x850| 00 | . | dst: 0 (valid) 0x852-0x852.7 (1)
|
||||
0x850| 00 | . | idx: 0 (valid) 0x853-0x853.7 (1)
|
||||
| | | [1]{}: local_time_type 0x854-0x859.7 (6)
|
||||
0x850| 00 00 16 3c | ...< | utoff: 5692 (valid) 0x854-0x857.7 (4)
|
||||
0x850| 00 | . | dst: 0 (valid) 0x858-0x858.7 (1)
|
||||
0x850| 04 | . | idx: 4 (valid) 0x859-0x859.7 (1)
|
||||
| | | [2]{}: local_time_type 0x85a-0x85f.7 (6)
|
||||
0x850| 00 00 2a 30 | ..*0 | utoff: 10800 (valid) 0x85a-0x85d.7 (4)
|
||||
0x850| 01 | . | dst: 1 (valid) 0x85e-0x85e.7 (1)
|
||||
0x850| 08| .| idx: 8 (valid) 0x85f-0x85f.7 (1)
|
||||
| | | [3]{}: local_time_type 0x860-0x865.7 (6)
|
||||
0x860|00 00 1c 20 |... | utoff: 7200 (valid) 0x860-0x863.7 (4)
|
||||
0x860| 00 | . | dst: 0 (valid) 0x864-0x864.7 (1)
|
||||
0x860| 0d | . | idx: 13 (valid) 0x865-0x865.7 (1)
|
||||
| | | [4]{}: local_time_type 0x866-0x86b.7 (6)
|
||||
0x860| 00 00 0e 10 | .... | utoff: 3600 (valid) 0x866-0x869.7 (4)
|
||||
0x860| 00 | . | dst: 0 (valid) 0x86a-0x86a.7 (1)
|
||||
0x860| 11 | . | idx: 17 (valid) 0x86b-0x86b.7 (1)
|
||||
| | | [5]{}: local_time_type 0x86c-0x871.7 (6)
|
||||
0x860| 00 00 1c 20| ... | utoff: 7200 (valid) 0x86c-0x86f.7 (4)
|
||||
0x870|01 |. | dst: 1 (valid) 0x870-0x870.7 (1)
|
||||
0x870| 15 | . | idx: 21 (valid) 0x871-0x871.7 (1)
|
||||
| | | [6]{}: local_time_type 0x872-0x877.7 (6)
|
||||
0x870| 00 00 2a 30 | ..*0 | utoff: 10800 (valid) 0x872-0x875.7 (4)
|
||||
0x870| 01 | . | dst: 1 (valid) 0x876-0x876.7 (1)
|
||||
0x870| 08 | . | idx: 8 (valid) 0x877-0x877.7 (1)
|
||||
| | | [7]{}: local_time_type 0x878-0x87d.7 (6)
|
||||
0x870| 00 00 1c 20 | ... | utoff: 7200 (valid) 0x878-0x87b.7 (4)
|
||||
0x870| 00 | . | dst: 0 (valid) 0x87c-0x87c.7 (1)
|
||||
0x870| 0d | . | idx: 13 (valid) 0x87d-0x87d.7 (1)
|
||||
| | | [8]{}: local_time_type 0x87e-0x883.7 (6)
|
||||
0x870| 00 00| ..| utoff: 10800 (valid) 0x87e-0x881.7 (4)
|
||||
0x880|2a 30 |*0 |
|
||||
0x880| 01 | . | dst: 1 (valid) 0x882-0x882.7 (1)
|
||||
0x880| 08 | . | idx: 8 (valid) 0x883-0x883.7 (1)
|
||||
| | | [9]{}: local_time_type 0x884-0x889.7 (6)
|
||||
0x880| 00 00 1c 20 | ... | utoff: 7200 (valid) 0x884-0x887.7 (4)
|
||||
0x880| 00 | . | dst: 0 (valid) 0x888-0x888.7 (1)
|
||||
0x880| 0d | . | idx: 13 (valid) 0x889-0x889.7 (1)
|
||||
| | | time_zone_designations[0:6]: 0x88a-0x8a3.7 (26)
|
||||
0x880| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x88a-0x88d.7 (4)
|
||||
0x880| 41 4d| AM| [1]: "AMT" time_zone_designation 0x88e-0x891.7 (4)
|
||||
0x890|54 00 |T. |
|
||||
0x890| 45 45 53 54 00 | EEST. | [2]: "EEST" time_zone_designation 0x892-0x896.7 (5)
|
||||
0x890| 45 45 54 00 | EET. | [3]: "EET" time_zone_designation 0x897-0x89a.7 (4)
|
||||
0x890| 43 45 54 00 | CET. | [4]: "CET" time_zone_designation 0x89b-0x89e.7 (4)
|
||||
0x890| 43| C| [5]: "CEST" time_zone_designation 0x89f-0x8a3.7 (5)
|
||||
0x8a0|45 53 54 00 |EST. |
|
||||
| | | leap_second_records[0:0]: 0x8a4-NA (0)
|
||||
| | | standard_wall_indicators[0:10]: 0x8a4-0x8ad.7 (10)
|
||||
0x8a0| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x8a4-0x8a4.7 (1)
|
||||
0x8a0| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x8a5-0x8a5.7 (1)
|
||||
0x8a0| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x8a6-0x8a6.7 (1)
|
||||
0x8a0| 00 | . | [3]: 0 standard_wall_indicator (valid) 0x8a7-0x8a7.7 (1)
|
||||
0x8a0| 00 | . | [4]: 0 standard_wall_indicator (valid) 0x8a8-0x8a8.7 (1)
|
||||
0x8a0| 00 | . | [5]: 0 standard_wall_indicator (valid) 0x8a9-0x8a9.7 (1)
|
||||
0x8a0| 01 | . | [6]: 1 standard_wall_indicator (valid) 0x8aa-0x8aa.7 (1)
|
||||
0x8a0| 01 | . | [7]: 1 standard_wall_indicator (valid) 0x8ab-0x8ab.7 (1)
|
||||
0x8a0| 01 | . | [8]: 1 standard_wall_indicator (valid) 0x8ac-0x8ac.7 (1)
|
||||
0x8a0| 01 | . | [9]: 1 standard_wall_indicator (valid) 0x8ad-0x8ad.7 (1)
|
||||
| | | ut_local_indicators[0:10]: 0x8ae-0x8b7.7 (10)
|
||||
0x8a0| 00 | . | [0]: 0 ut_local_indicator (valid) 0x8ae-0x8ae.7 (1)
|
||||
0x8a0| 00| .| [1]: 0 ut_local_indicator (valid) 0x8af-0x8af.7 (1)
|
||||
0x8b0|00 |. | [2]: 0 ut_local_indicator (valid) 0x8b0-0x8b0.7 (1)
|
||||
0x8b0| 00 | . | [3]: 0 ut_local_indicator (valid) 0x8b1-0x8b1.7 (1)
|
||||
0x8b0| 00 | . | [4]: 0 ut_local_indicator (valid) 0x8b2-0x8b2.7 (1)
|
||||
0x8b0| 00 | . | [5]: 0 ut_local_indicator (valid) 0x8b3-0x8b3.7 (1)
|
||||
0x8b0| 00 | . | [6]: 0 ut_local_indicator (valid) 0x8b4-0x8b4.7 (1)
|
||||
0x8b0| 00 | . | [7]: 0 ut_local_indicator (valid) 0x8b5-0x8b5.7 (1)
|
||||
0x8b0| 01 | . | [8]: 1 ut_local_indicator (valid) 0x8b6-0x8b6.7 (1)
|
||||
0x8b0| 01 | . | [9]: 1 ut_local_indicator (valid) 0x8b7-0x8b7.7 (1)
|
||||
| | | footer{}: 0x8b8-0x8d5.7 (30)
|
||||
0x8b0| 0a | . | nl1: 10 (valid) 0x8b8-0x8b8.7 (1)
|
||||
0x8b0| 45 45 54 2d 32 45 45| EET-2EE| tz_string: "EET-2EEST,M3.5.0/3,M10.5.0/4" 0x8b9-0x8d4.7 (28)
|
||||
0x8c0|53 54 2c 4d 33 2e 35 2e 30 2f 33 2c 4d 31 30 2e|ST,M3.5.0/3,M10.|
|
||||
0x8d0|35 2e 30 2f 34 |5.0/4 |
|
||||
0x8d0| 0a| | .| | nl2: 10 (valid) 0x8d5-0x8d5.7 (1)
|
BIN
format/tzif/testdata/Atyrau
vendored
Normal file
BIN
format/tzif/testdata/Atyrau
vendored
Normal file
Binary file not shown.
573
format/tzif/testdata/Atyrau.fqtest
vendored
Normal file
573
format/tzif/testdata/Atyrau.fqtest
vendored
Normal file
@ -0,0 +1,573 @@
|
||||
$ fq -d tzif dv Atyrau
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: Atyrau (tzif) 0x0-0x5f3.7 (1524)
|
||||
| | | v1header{}: 0x0-0x2b.7 (44)
|
||||
0x000|54 5a 69 66 |TZif | magic: 0x545a6966 (valid) 0x0-0x3.7 (4)
|
||||
0x000| 32 | 2 | ver: "2" (0x32) (valid) 0x4-0x4.7 (1)
|
||||
0x000| 00 00 00 00 00 00 00 00 00 00 00| ...........| reserved: raw bits 0x5-0x13.7 (15)
|
||||
0x010|00 00 00 00 |.... |
|
||||
0x010| 00 00 00 00 | .... | isutcnt: 0 0x14-0x17.7 (4)
|
||||
0x010| 00 00 00 0a | .... | isstdcnt: 10 0x18-0x1b.7 (4)
|
||||
0x010| 00 00 00 1b| ....| leapcnt: 27 0x1c-0x1f.7 (4)
|
||||
0x020|00 00 00 33 |...3 | timecnt: 51 0x20-0x23.7 (4)
|
||||
0x020| 00 00 00 0a | .... | typecnt: 10 0x24-0x27.7 (4)
|
||||
0x020| 00 00 00 14 | .... | charcnt: 20 0x28-0x2b.7 (4)
|
||||
| | | v1datablock{}: 0x2c-0x25c.7 (561)
|
||||
| | | transition_times[0:51]: 0x2c-0xf7.7 (204)
|
||||
0x020| aa 19 93 50| ...P| [0]: "1924-05-01T20:32:16Z" (-1441164464) transition_time 0x2c-0x2f.7 (4)
|
||||
0x030|b5 a4 0b 50 |...P | [1]: "1930-06-20T21:00:00Z" (-1247540400) transition_time 0x30-0x33.7 (4)
|
||||
0x030| 16 18 ce 3a | ...: | [2]: "1981-09-30T19:00:10Z" (370724410) transition_time 0x34-0x37.7 (4)
|
||||
0x030| 17 08 b1 2a | ...* | [3]: "1982-03-31T18:00:10Z" (386445610) transition_time 0x38-0x3b.7 (4)
|
||||
0x030| 17 f9 f3 ab| ....| [4]: "1982-09-30T18:00:11Z" (402256811) transition_time 0x3c-0x3f.7 (4)
|
||||
0x040|18 e9 f2 bb |.... | [5]: "1983-03-31T19:00:11Z" (417985211) transition_time 0x40-0x43.7 (4)
|
||||
0x040| 19 db 27 2c | ..', | [6]: "1983-09-30T18:00:12Z" (433792812) transition_time 0x44-0x47.7 (4)
|
||||
0x040| 1a cc 77 bc | ..w. | [7]: "1984-03-31T19:00:12Z" (449607612) transition_time 0x48-0x4b.7 (4)
|
||||
0x040| 1b bc 84 dc| ....| [8]: "1984-09-29T21:00:12Z" (465339612) transition_time 0x4c-0x4f.7 (4)
|
||||
0x050|1c ac 75 dc |..u. | [9]: "1985-03-30T21:00:12Z" (481064412) transition_time 0x50-0x53.7 (4)
|
||||
0x050| 1d 9c 66 dd | ..f. | [10]: "1985-09-28T21:00:13Z" (496789213) transition_time 0x54-0x57.7 (4)
|
||||
0x050| 1e 8c 57 dd | ..W. | [11]: "1986-03-29T21:00:13Z" (512514013) transition_time 0x58-0x5b.7 (4)
|
||||
0x050| 1f 7c 48 dd| .|H.| [12]: "1986-09-27T21:00:13Z" (528238813) transition_time 0x5c-0x5f.7 (4)
|
||||
0x060|20 6c 39 dd | l9. | [13]: "1987-03-28T21:00:13Z" (543963613) transition_time 0x60-0x63.7 (4)
|
||||
0x060| 21 5c 2a dd | !\*. | [14]: "1987-09-26T21:00:13Z" (559688413) transition_time 0x64-0x67.7 (4)
|
||||
0x060| 22 4c 1b de | "L.. | [15]: "1988-03-26T21:00:14Z" (575413214) transition_time 0x68-0x6b.7 (4)
|
||||
0x060| 23 3c 0c de| #<..| [16]: "1988-09-24T21:00:14Z" (591138014) transition_time 0x6c-0x6f.7 (4)
|
||||
0x070|24 2b fd de |$+.. | [17]: "1989-03-25T21:00:14Z" (606862814) transition_time 0x70-0x73.7 (4)
|
||||
0x070| 25 1b ee de | %... | [18]: "1989-09-23T21:00:14Z" (622587614) transition_time 0x74-0x77.7 (4)
|
||||
0x070| 26 0b df df | &... | [19]: "1990-03-24T21:00:15Z" (638312415) transition_time 0x78-0x7b.7 (4)
|
||||
0x070| 27 05 0b 5f| '.._| [20]: "1990-09-29T21:00:15Z" (654642015) transition_time 0x7c-0x7f.7 (4)
|
||||
0x080|27 f4 fc 60 |'..` | [21]: "1991-03-30T21:00:16Z" (670366816) transition_time 0x80-0x83.7 (4)
|
||||
0x080| 28 e4 fb 70 | (..p | [22]: "1991-09-28T22:00:16Z" (686095216) transition_time 0x84-0x87.7 (4)
|
||||
0x080| 29 78 a3 70 | )x.p | [23]: "1992-01-18T22:00:16Z" (695772016) transition_time 0x88-0x8b.7 (4)
|
||||
0x080| 29 d4 de 60| )..`| [24]: "1992-03-28T21:00:16Z" (701816416) transition_time 0x8c-0x8f.7 (4)
|
||||
0x090|2a c4 cf 61 |*..a | [25]: "1992-09-26T21:00:17Z" (717541217) transition_time 0x90-0x93.7 (4)
|
||||
0x090| 2b b4 c0 61 | +..a | [26]: "1993-03-27T21:00:17Z" (733266017) transition_time 0x94-0x97.7 (4)
|
||||
0x090| 2c a4 b1 62 | ,..b | [27]: "1993-09-25T21:00:18Z" (748990818) transition_time 0x98-0x9b.7 (4)
|
||||
0x090| 2d 94 a2 62| -..b| [28]: "1994-03-26T21:00:18Z" (764715618) transition_time 0x9c-0x9f.7 (4)
|
||||
0x0a0|2e 84 93 63 |...c | [29]: "1994-09-24T21:00:19Z" (780440419) transition_time 0xa0-0xa3.7 (4)
|
||||
0x0a0| 2f 74 84 63 | /t.c | [30]: "1995-03-25T21:00:19Z" (796165219) transition_time 0xa4-0xa7.7 (4)
|
||||
0x0a0| 30 64 75 63 | 0duc | [31]: "1995-09-23T21:00:19Z" (811890019) transition_time 0xa8-0xab.7 (4)
|
||||
0x0a0| 31 5d a0 e4| 1]..| [32]: "1996-03-30T21:00:20Z" (828219620) transition_time 0xac-0xaf.7 (4)
|
||||
0x0b0|32 72 7b e4 |2r{. | [33]: "1996-10-26T21:00:20Z" (846363620) transition_time 0xb0-0xb3.7 (4)
|
||||
0x0b0| 33 3d 82 e4 | 3=.. | [34]: "1997-03-29T21:00:20Z" (859669220) transition_time 0xb4-0xb7.7 (4)
|
||||
0x0b0| 34 52 5d e5 | 4R]. | [35]: "1997-10-25T21:00:21Z" (877813221) transition_time 0xb8-0xbb.7 (4)
|
||||
0x0b0| 35 1d 64 e5| 5.d.| [36]: "1998-03-28T21:00:21Z" (891118821) transition_time 0xbc-0xbf.7 (4)
|
||||
0x0c0|36 32 3f e5 |62?. | [37]: "1998-10-24T21:00:21Z" (909262821) transition_time 0xc0-0xc3.7 (4)
|
||||
0x0c0| 36 fd 46 e6 | 6.F. | [38]: "1999-03-27T21:00:22Z" (922568422) transition_time 0xc4-0xc7.7 (4)
|
||||
0x0c0| 38 1b 6a 76 | 8.jv | [39]: "1999-10-30T22:00:22Z" (941320822) transition_time 0xc8-0xcb.7 (4)
|
||||
0x0c0| 38 dd 36 f6| 8.6.| [40]: "2000-03-25T22:00:22Z" (954021622) transition_time 0xcc-0xcf.7 (4)
|
||||
0x0d0|39 fb 4c 76 |9.Lv | [41]: "2000-10-28T22:00:22Z" (972770422) transition_time 0xd0-0xd3.7 (4)
|
||||
0x0d0| 3a bd 18 f6 | :... | [42]: "2001-03-24T22:00:22Z" (985471222) transition_time 0xd4-0xd7.7 (4)
|
||||
0x0d0| 3b db 2e 76 | ;..v | [43]: "2001-10-27T22:00:22Z" (1004220022) transition_time 0xd8-0xdb.7 (4)
|
||||
0x0d0| 3c a6 35 76| <.5v| [44]: "2002-03-30T22:00:22Z" (1017525622) transition_time 0xdc-0xdf.7 (4)
|
||||
0x0e0|3d bb 10 76 |=..v | [45]: "2002-10-26T22:00:22Z" (1035669622) transition_time 0xe0-0xe3.7 (4)
|
||||
0x0e0| 3e 86 17 76 | >..v | [46]: "2003-03-29T22:00:22Z" (1048975222) transition_time 0xe4-0xe7.7 (4)
|
||||
0x0e0| 3f 9a f2 76 | ?..v | [47]: "2003-10-25T22:00:22Z" (1067119222) transition_time 0xe8-0xeb.7 (4)
|
||||
0x0e0| 40 65 f9 76| @e.v| [48]: "2004-03-27T22:00:22Z" (1080424822) transition_time 0xec-0xef.7 (4)
|
||||
0x0f0|41 84 0e f6 |A... | [49]: "2004-10-30T22:00:22Z" (1099173622) transition_time 0xf0-0xf3.7 (4)
|
||||
0x0f0| 64 9b 78 1b | d.x. | [50]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0xf4-0xf7.7 (4)
|
||||
| | | transition_types[0:51]: 0xf8-0x12a.7 (51)
|
||||
0x0f0| 01 | . | [0]: 1 transition_type 0xf8-0xf8.7 (1)
|
||||
0x0f0| 02 | . | [1]: 2 transition_type 0xf9-0xf9.7 (1)
|
||||
0x0f0| 03 | . | [2]: 3 transition_type 0xfa-0xfa.7 (1)
|
||||
0x0f0| 04 | . | [3]: 4 transition_type 0xfb-0xfb.7 (1)
|
||||
0x0f0| 02 | . | [4]: 2 transition_type 0xfc-0xfc.7 (1)
|
||||
0x0f0| 04 | . | [5]: 4 transition_type 0xfd-0xfd.7 (1)
|
||||
0x0f0| 02 | . | [6]: 2 transition_type 0xfe-0xfe.7 (1)
|
||||
0x0f0| 04| .| [7]: 4 transition_type 0xff-0xff.7 (1)
|
||||
0x100|05 |. | [8]: 5 transition_type 0x100-0x100.7 (1)
|
||||
0x100| 06 | . | [9]: 6 transition_type 0x101-0x101.7 (1)
|
||||
0x100| 05 | . | [10]: 5 transition_type 0x102-0x102.7 (1)
|
||||
0x100| 06 | . | [11]: 6 transition_type 0x103-0x103.7 (1)
|
||||
0x100| 05 | . | [12]: 5 transition_type 0x104-0x104.7 (1)
|
||||
0x100| 06 | . | [13]: 6 transition_type 0x105-0x105.7 (1)
|
||||
0x100| 05 | . | [14]: 5 transition_type 0x106-0x106.7 (1)
|
||||
0x100| 06 | . | [15]: 6 transition_type 0x107-0x107.7 (1)
|
||||
0x100| 05 | . | [16]: 5 transition_type 0x108-0x108.7 (1)
|
||||
0x100| 06 | . | [17]: 6 transition_type 0x109-0x109.7 (1)
|
||||
0x100| 05 | . | [18]: 5 transition_type 0x10a-0x10a.7 (1)
|
||||
0x100| 06 | . | [19]: 6 transition_type 0x10b-0x10b.7 (1)
|
||||
0x100| 05 | . | [20]: 5 transition_type 0x10c-0x10c.7 (1)
|
||||
0x100| 07 | . | [21]: 7 transition_type 0x10d-0x10d.7 (1)
|
||||
0x100| 08 | . | [22]: 8 transition_type 0x10e-0x10e.7 (1)
|
||||
0x100| 05| .| [23]: 5 transition_type 0x10f-0x10f.7 (1)
|
||||
0x110|06 |. | [24]: 6 transition_type 0x110-0x110.7 (1)
|
||||
0x110| 05 | . | [25]: 5 transition_type 0x111-0x111.7 (1)
|
||||
0x110| 06 | . | [26]: 6 transition_type 0x112-0x112.7 (1)
|
||||
0x110| 05 | . | [27]: 5 transition_type 0x113-0x113.7 (1)
|
||||
0x110| 06 | . | [28]: 6 transition_type 0x114-0x114.7 (1)
|
||||
0x110| 05 | . | [29]: 5 transition_type 0x115-0x115.7 (1)
|
||||
0x110| 06 | . | [30]: 6 transition_type 0x116-0x116.7 (1)
|
||||
0x110| 05 | . | [31]: 5 transition_type 0x117-0x117.7 (1)
|
||||
0x110| 06 | . | [32]: 6 transition_type 0x118-0x118.7 (1)
|
||||
0x110| 05 | . | [33]: 5 transition_type 0x119-0x119.7 (1)
|
||||
0x110| 06 | . | [34]: 6 transition_type 0x11a-0x11a.7 (1)
|
||||
0x110| 05 | . | [35]: 5 transition_type 0x11b-0x11b.7 (1)
|
||||
0x110| 06 | . | [36]: 6 transition_type 0x11c-0x11c.7 (1)
|
||||
0x110| 05 | . | [37]: 5 transition_type 0x11d-0x11d.7 (1)
|
||||
0x110| 07 | . | [38]: 7 transition_type 0x11e-0x11e.7 (1)
|
||||
0x110| 08| .| [39]: 8 transition_type 0x11f-0x11f.7 (1)
|
||||
0x120|07 |. | [40]: 7 transition_type 0x120-0x120.7 (1)
|
||||
0x120| 08 | . | [41]: 8 transition_type 0x121-0x121.7 (1)
|
||||
0x120| 07 | . | [42]: 7 transition_type 0x122-0x122.7 (1)
|
||||
0x120| 08 | . | [43]: 8 transition_type 0x123-0x123.7 (1)
|
||||
0x120| 07 | . | [44]: 7 transition_type 0x124-0x124.7 (1)
|
||||
0x120| 08 | . | [45]: 8 transition_type 0x125-0x125.7 (1)
|
||||
0x120| 07 | . | [46]: 7 transition_type 0x126-0x126.7 (1)
|
||||
0x120| 08 | . | [47]: 8 transition_type 0x127-0x127.7 (1)
|
||||
0x120| 07 | . | [48]: 7 transition_type 0x128-0x128.7 (1)
|
||||
0x120| 05 | . | [49]: 5 transition_type 0x129-0x129.7 (1)
|
||||
0x120| 05 | . | [50]: 5 transition_type 0x12a-0x12a.7 (1)
|
||||
| | | local_time_type_records[0:10]: 0x12b-0x166.7 (60)
|
||||
| | | [0]{}: local_time_type 0x12b-0x130.7 (6)
|
||||
0x120| 00 00 30 b0 | ..0. | utoff: 12464 (valid) 0x12b-0x12e.7 (4)
|
||||
0x120| 00| .| dst: 0 (valid) 0x12f-0x12f.7 (1)
|
||||
0x130|00 |. | idx: 0 (valid) 0x130-0x130.7 (1)
|
||||
| | | [1]{}: local_time_type 0x131-0x136.7 (6)
|
||||
0x130| 00 00 2a 30 | ..*0 | utoff: 10800 (valid) 0x131-0x134.7 (4)
|
||||
0x130| 00 | . | dst: 0 (valid) 0x135-0x135.7 (1)
|
||||
0x130| 04 | . | idx: 4 (valid) 0x136-0x136.7 (1)
|
||||
| | | [2]{}: local_time_type 0x137-0x13c.7 (6)
|
||||
0x130| 00 00 46 50 | ..FP | utoff: 18000 (valid) 0x137-0x13a.7 (4)
|
||||
0x130| 00 | . | dst: 0 (valid) 0x13b-0x13b.7 (1)
|
||||
0x130| 08 | . | idx: 8 (valid) 0x13c-0x13c.7 (1)
|
||||
| | | [3]{}: local_time_type 0x13d-0x142.7 (6)
|
||||
0x130| 00 00 54| ..T| utoff: 21600 (valid) 0x13d-0x140.7 (4)
|
||||
0x140|60 |` |
|
||||
0x140| 00 | . | dst: 0 (valid) 0x141-0x141.7 (1)
|
||||
0x140| 0c | . | idx: 12 (valid) 0x142-0x142.7 (1)
|
||||
| | | [4]{}: local_time_type 0x143-0x148.7 (6)
|
||||
0x140| 00 00 54 60 | ..T` | utoff: 21600 (valid) 0x143-0x146.7 (4)
|
||||
0x140| 01 | . | dst: 1 (valid) 0x147-0x147.7 (1)
|
||||
0x140| 0c | . | idx: 12 (valid) 0x148-0x148.7 (1)
|
||||
| | | [5]{}: local_time_type 0x149-0x14e.7 (6)
|
||||
0x140| 00 00 46 50 | ..FP | utoff: 18000 (valid) 0x149-0x14c.7 (4)
|
||||
0x140| 00 | . | dst: 0 (valid) 0x14d-0x14d.7 (1)
|
||||
0x140| 08 | . | idx: 8 (valid) 0x14e-0x14e.7 (1)
|
||||
| | | [6]{}: local_time_type 0x14f-0x154.7 (6)
|
||||
0x140| 00| .| utoff: 21600 (valid) 0x14f-0x152.7 (4)
|
||||
0x150|00 54 60 |.T` |
|
||||
0x150| 01 | . | dst: 1 (valid) 0x153-0x153.7 (1)
|
||||
0x150| 0c | . | idx: 12 (valid) 0x154-0x154.7 (1)
|
||||
| | | [7]{}: local_time_type 0x155-0x15a.7 (6)
|
||||
0x150| 00 00 46 50 | ..FP | utoff: 18000 (valid) 0x155-0x158.7 (4)
|
||||
0x150| 01 | . | dst: 1 (valid) 0x159-0x159.7 (1)
|
||||
0x150| 08 | . | idx: 8 (valid) 0x15a-0x15a.7 (1)
|
||||
| | | [8]{}: local_time_type 0x15b-0x160.7 (6)
|
||||
0x150| 00 00 38 40 | ..8@ | utoff: 14400 (valid) 0x15b-0x15e.7 (4)
|
||||
0x150| 00| .| dst: 0 (valid) 0x15f-0x15f.7 (1)
|
||||
0x160|10 |. | idx: 16 (valid) 0x160-0x160.7 (1)
|
||||
| | | [9]{}: local_time_type 0x161-0x166.7 (6)
|
||||
0x160| 00 00 46 50 | ..FP | utoff: 18000 (valid) 0x161-0x164.7 (4)
|
||||
0x160| 00 | . | dst: 0 (valid) 0x165-0x165.7 (1)
|
||||
0x160| 08 | . | idx: 8 (valid) 0x166-0x166.7 (1)
|
||||
| | | time_zone_designations[0:5]: 0x167-0x17a.7 (20)
|
||||
0x160| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x167-0x16a.7 (4)
|
||||
0x160| 2b 30 33 00 | +03. | [1]: "+03" time_zone_designation 0x16b-0x16e.7 (4)
|
||||
0x160| 2b| +| [2]: "+05" time_zone_designation 0x16f-0x172.7 (4)
|
||||
0x170|30 35 00 |05. |
|
||||
0x170| 2b 30 36 00 | +06. | [3]: "+06" time_zone_designation 0x173-0x176.7 (4)
|
||||
0x170| 2b 30 34 00 | +04. | [4]: "+04" time_zone_designation 0x177-0x17a.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x17b-0x252.7 (216)
|
||||
| | | [0]{}: leap_second_record 0x17b-0x182.7 (8)
|
||||
0x170| 04 b2 58 00 | ..X. | occur: "1972-07-01T00:00:00Z" (78796800) 0x17b-0x17e.7 (4)
|
||||
0x170| 00| .| corr: 1 0x17f-0x182.7 (4)
|
||||
0x180|00 00 01 |... |
|
||||
| | | [1]{}: leap_second_record 0x183-0x18a.7 (8)
|
||||
0x180| 05 a4 ec 01 | .... | occur: "1973-01-01T00:00:01Z" (94694401) 0x183-0x186.7 (4)
|
||||
0x180| 00 00 00 02 | .... | corr: 2 0x187-0x18a.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x18b-0x192.7 (8)
|
||||
0x180| 07 86 1f 82 | .... | occur: "1974-01-01T00:00:02Z" (126230402) 0x18b-0x18e.7 (4)
|
||||
0x180| 00| .| corr: 3 0x18f-0x192.7 (4)
|
||||
0x190|00 00 03 |... |
|
||||
| | | [3]{}: leap_second_record 0x193-0x19a.7 (8)
|
||||
0x190| 09 67 53 03 | .gS. | occur: "1975-01-01T00:00:03Z" (157766403) 0x193-0x196.7 (4)
|
||||
0x190| 00 00 00 04 | .... | corr: 4 0x197-0x19a.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x19b-0x1a2.7 (8)
|
||||
0x190| 0b 48 86 84 | .H.. | occur: "1976-01-01T00:00:04Z" (189302404) 0x19b-0x19e.7 (4)
|
||||
0x190| 00| .| corr: 5 0x19f-0x1a2.7 (4)
|
||||
0x1a0|00 00 05 |... |
|
||||
| | | [5]{}: leap_second_record 0x1a3-0x1aa.7 (8)
|
||||
0x1a0| 0d 2b 0b 85 | .+.. | occur: "1977-01-01T00:00:05Z" (220924805) 0x1a3-0x1a6.7 (4)
|
||||
0x1a0| 00 00 00 06 | .... | corr: 6 0x1a7-0x1aa.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x1ab-0x1b2.7 (8)
|
||||
0x1a0| 0f 0c 3f 06 | ..?. | occur: "1978-01-01T00:00:06Z" (252460806) 0x1ab-0x1ae.7 (4)
|
||||
0x1a0| 00| .| corr: 7 0x1af-0x1b2.7 (4)
|
||||
0x1b0|00 00 07 |... |
|
||||
| | | [7]{}: leap_second_record 0x1b3-0x1ba.7 (8)
|
||||
0x1b0| 10 ed 72 87 | ..r. | occur: "1979-01-01T00:00:07Z" (283996807) 0x1b3-0x1b6.7 (4)
|
||||
0x1b0| 00 00 00 08 | .... | corr: 8 0x1b7-0x1ba.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x1bb-0x1c2.7 (8)
|
||||
0x1b0| 12 ce a6 08 | .... | occur: "1980-01-01T00:00:08Z" (315532808) 0x1bb-0x1be.7 (4)
|
||||
0x1b0| 00| .| corr: 9 0x1bf-0x1c2.7 (4)
|
||||
0x1c0|00 00 09 |... |
|
||||
| | | [9]{}: leap_second_record 0x1c3-0x1ca.7 (8)
|
||||
0x1c0| 15 9f ca 89 | .... | occur: "1981-07-01T00:00:09Z" (362793609) 0x1c3-0x1c6.7 (4)
|
||||
0x1c0| 00 00 00 0a | .... | corr: 10 0x1c7-0x1ca.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x1cb-0x1d2.7 (8)
|
||||
0x1c0| 17 80 fe 0a | .... | occur: "1982-07-01T00:00:10Z" (394329610) 0x1cb-0x1ce.7 (4)
|
||||
0x1c0| 00| .| corr: 11 0x1cf-0x1d2.7 (4)
|
||||
0x1d0|00 00 0b |... |
|
||||
| | | [11]{}: leap_second_record 0x1d3-0x1da.7 (8)
|
||||
0x1d0| 19 62 31 8b | .b1. | occur: "1983-07-01T00:00:11Z" (425865611) 0x1d3-0x1d6.7 (4)
|
||||
0x1d0| 00 00 00 0c | .... | corr: 12 0x1d7-0x1da.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x1db-0x1e2.7 (8)
|
||||
0x1d0| 1d 25 ea 0c | .%.. | occur: "1985-07-01T00:00:12Z" (489024012) 0x1db-0x1de.7 (4)
|
||||
0x1d0| 00| .| corr: 13 0x1df-0x1e2.7 (4)
|
||||
0x1e0|00 00 0d |... |
|
||||
| | | [13]{}: leap_second_record 0x1e3-0x1ea.7 (8)
|
||||
0x1e0| 21 da e5 0d | !... | occur: "1988-01-01T00:00:13Z" (567993613) 0x1e3-0x1e6.7 (4)
|
||||
0x1e0| 00 00 00 0e | .... | corr: 14 0x1e7-0x1ea.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x1eb-0x1f2.7 (8)
|
||||
0x1e0| 25 9e 9d 8e | %... | occur: "1990-01-01T00:00:14Z" (631152014) 0x1eb-0x1ee.7 (4)
|
||||
0x1e0| 00| .| corr: 15 0x1ef-0x1f2.7 (4)
|
||||
0x1f0|00 00 0f |... |
|
||||
| | | [15]{}: leap_second_record 0x1f3-0x1fa.7 (8)
|
||||
0x1f0| 27 7f d1 0f | '... | occur: "1991-01-01T00:00:15Z" (662688015) 0x1f3-0x1f6.7 (4)
|
||||
0x1f0| 00 00 00 10 | .... | corr: 16 0x1f7-0x1fa.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x1fb-0x202.7 (8)
|
||||
0x1f0| 2a 50 f5 90 | *P.. | occur: "1992-07-01T00:00:16Z" (709948816) 0x1fb-0x1fe.7 (4)
|
||||
0x1f0| 00| .| corr: 17 0x1ff-0x202.7 (4)
|
||||
0x200|00 00 11 |... |
|
||||
| | | [17]{}: leap_second_record 0x203-0x20a.7 (8)
|
||||
0x200| 2c 32 29 11 | ,2). | occur: "1993-07-01T00:00:17Z" (741484817) 0x203-0x206.7 (4)
|
||||
0x200| 00 00 00 12 | .... | corr: 18 0x207-0x20a.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x20b-0x212.7 (8)
|
||||
0x200| 2e 13 5c 92 | ..\. | occur: "1994-07-01T00:00:18Z" (773020818) 0x20b-0x20e.7 (4)
|
||||
0x200| 00| .| corr: 19 0x20f-0x212.7 (4)
|
||||
0x210|00 00 13 |... |
|
||||
| | | [19]{}: leap_second_record 0x213-0x21a.7 (8)
|
||||
0x210| 30 e7 24 13 | 0.$. | occur: "1996-01-01T00:00:19Z" (820454419) 0x213-0x216.7 (4)
|
||||
0x210| 00 00 00 14 | .... | corr: 20 0x217-0x21a.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x21b-0x222.7 (8)
|
||||
0x210| 33 b8 48 94 | 3.H. | occur: "1997-07-01T00:00:20Z" (867715220) 0x21b-0x21e.7 (4)
|
||||
0x210| 00| .| corr: 21 0x21f-0x222.7 (4)
|
||||
0x220|00 00 15 |... |
|
||||
| | | [21]{}: leap_second_record 0x223-0x22a.7 (8)
|
||||
0x220| 36 8c 10 15 | 6... | occur: "1999-01-01T00:00:21Z" (915148821) 0x223-0x226.7 (4)
|
||||
0x220| 00 00 00 16 | .... | corr: 22 0x227-0x22a.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x22b-0x232.7 (8)
|
||||
0x220| 43 b7 1b 96 | C... | occur: "2006-01-01T00:00:22Z" (1136073622) 0x22b-0x22e.7 (4)
|
||||
0x220| 00| .| corr: 23 0x22f-0x232.7 (4)
|
||||
0x230|00 00 17 |... |
|
||||
| | | [23]{}: leap_second_record 0x233-0x23a.7 (8)
|
||||
0x230| 49 5c 07 97 | I\.. | occur: "2009-01-01T00:00:23Z" (1230768023) 0x233-0x236.7 (4)
|
||||
0x230| 00 00 00 18 | .... | corr: 24 0x237-0x23a.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x23b-0x242.7 (8)
|
||||
0x230| 4f ef 93 18 | O... | occur: "2012-07-01T00:00:24Z" (1341100824) 0x23b-0x23e.7 (4)
|
||||
0x230| 00| .| corr: 25 0x23f-0x242.7 (4)
|
||||
0x240|00 00 19 |... |
|
||||
| | | [25]{}: leap_second_record 0x243-0x24a.7 (8)
|
||||
0x240| 55 93 2d 99 | U.-. | occur: "2015-07-01T00:00:25Z" (1435708825) 0x243-0x246.7 (4)
|
||||
0x240| 00 00 00 1a | .... | corr: 26 0x247-0x24a.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x24b-0x252.7 (8)
|
||||
0x240| 58 68 46 9a | XhF. | occur: "2017-01-01T00:00:26Z" (1483228826) 0x24b-0x24e.7 (4)
|
||||
0x240| 00| .| corr: 27 0x24f-0x252.7 (4)
|
||||
0x250|00 00 1b |... |
|
||||
| | | standard_wall_indicators[0:10]: 0x253-0x25c.7 (10)
|
||||
0x250| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x253-0x253.7 (1)
|
||||
0x250| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x254-0x254.7 (1)
|
||||
0x250| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x255-0x255.7 (1)
|
||||
0x250| 00 | . | [3]: 0 standard_wall_indicator (valid) 0x256-0x256.7 (1)
|
||||
0x250| 00 | . | [4]: 0 standard_wall_indicator (valid) 0x257-0x257.7 (1)
|
||||
0x250| 01 | . | [5]: 1 standard_wall_indicator (valid) 0x258-0x258.7 (1)
|
||||
0x250| 01 | . | [6]: 1 standard_wall_indicator (valid) 0x259-0x259.7 (1)
|
||||
0x250| 01 | . | [7]: 1 standard_wall_indicator (valid) 0x25a-0x25a.7 (1)
|
||||
0x250| 01 | . | [8]: 1 standard_wall_indicator (valid) 0x25b-0x25b.7 (1)
|
||||
0x250| 01 | . | [9]: 1 standard_wall_indicator (valid) 0x25c-0x25c.7 (1)
|
||||
| | | ut_local_indicators[0:0]: 0x25d-NA (0)
|
||||
| | | v2plusheader{}: 0x25d-0x288.7 (44)
|
||||
0x250| 54 5a 69| TZi| magic: 0x545a6966 (valid) 0x25d-0x260.7 (4)
|
||||
0x260|66 |f |
|
||||
0x260| 32 | 2 | ver: "2" (0x32) (valid) 0x261-0x261.7 (1)
|
||||
0x260| 00 00 00 00 00 00 00 00 00 00 00 00 00 00| ..............| reserved: raw bits 0x262-0x270.7 (15)
|
||||
0x270|00 |. |
|
||||
0x270| 00 00 00 00 | .... | isutcnt: 0 0x271-0x274.7 (4)
|
||||
0x270| 00 00 00 0a | .... | isstdcnt: 10 0x275-0x278.7 (4)
|
||||
0x270| 00 00 00 1b | .... | leapcnt: 27 0x279-0x27c.7 (4)
|
||||
0x270| 00 00 00| ...| timecnt: 51 0x27d-0x280.7 (4)
|
||||
0x280|33 |3 |
|
||||
0x280| 00 00 00 0a | .... | typecnt: 10 0x281-0x284.7 (4)
|
||||
0x280| 00 00 00 14 | .... | charcnt: 20 0x285-0x288.7 (4)
|
||||
| | | v2plusdatablock{}: 0x289-0x5f1.7 (873)
|
||||
| | | transition_times[0:51]: 0x289-0x420.7 (408)
|
||||
0x280| ff ff ff ff aa 19 93| .......| [0]: "1924-05-01T20:32:16Z" (-1441164464) transition_time 0x289-0x290.7 (8)
|
||||
0x290|50 |P |
|
||||
0x290| ff ff ff ff b5 a4 0b 50 | .......P | [1]: "1930-06-20T21:00:00Z" (-1247540400) transition_time 0x291-0x298.7 (8)
|
||||
0x290| 00 00 00 00 16 18 ce| .......| [2]: "1981-09-30T19:00:10Z" (370724410) transition_time 0x299-0x2a0.7 (8)
|
||||
0x2a0|3a |: |
|
||||
0x2a0| 00 00 00 00 17 08 b1 2a | .......* | [3]: "1982-03-31T18:00:10Z" (386445610) transition_time 0x2a1-0x2a8.7 (8)
|
||||
0x2a0| 00 00 00 00 17 f9 f3| .......| [4]: "1982-09-30T18:00:11Z" (402256811) transition_time 0x2a9-0x2b0.7 (8)
|
||||
0x2b0|ab |. |
|
||||
0x2b0| 00 00 00 00 18 e9 f2 bb | ........ | [5]: "1983-03-31T19:00:11Z" (417985211) transition_time 0x2b1-0x2b8.7 (8)
|
||||
0x2b0| 00 00 00 00 19 db 27| ......'| [6]: "1983-09-30T18:00:12Z" (433792812) transition_time 0x2b9-0x2c0.7 (8)
|
||||
0x2c0|2c |, |
|
||||
0x2c0| 00 00 00 00 1a cc 77 bc | ......w. | [7]: "1984-03-31T19:00:12Z" (449607612) transition_time 0x2c1-0x2c8.7 (8)
|
||||
0x2c0| 00 00 00 00 1b bc 84| .......| [8]: "1984-09-29T21:00:12Z" (465339612) transition_time 0x2c9-0x2d0.7 (8)
|
||||
0x2d0|dc |. |
|
||||
0x2d0| 00 00 00 00 1c ac 75 dc | ......u. | [9]: "1985-03-30T21:00:12Z" (481064412) transition_time 0x2d1-0x2d8.7 (8)
|
||||
0x2d0| 00 00 00 00 1d 9c 66| ......f| [10]: "1985-09-28T21:00:13Z" (496789213) transition_time 0x2d9-0x2e0.7 (8)
|
||||
0x2e0|dd |. |
|
||||
0x2e0| 00 00 00 00 1e 8c 57 dd | ......W. | [11]: "1986-03-29T21:00:13Z" (512514013) transition_time 0x2e1-0x2e8.7 (8)
|
||||
0x2e0| 00 00 00 00 1f 7c 48| .....|H| [12]: "1986-09-27T21:00:13Z" (528238813) transition_time 0x2e9-0x2f0.7 (8)
|
||||
0x2f0|dd |. |
|
||||
0x2f0| 00 00 00 00 20 6c 39 dd | .... l9. | [13]: "1987-03-28T21:00:13Z" (543963613) transition_time 0x2f1-0x2f8.7 (8)
|
||||
0x2f0| 00 00 00 00 21 5c 2a| ....!\*| [14]: "1987-09-26T21:00:13Z" (559688413) transition_time 0x2f9-0x300.7 (8)
|
||||
0x300|dd |. |
|
||||
0x300| 00 00 00 00 22 4c 1b de | ...."L.. | [15]: "1988-03-26T21:00:14Z" (575413214) transition_time 0x301-0x308.7 (8)
|
||||
0x300| 00 00 00 00 23 3c 0c| ....#<.| [16]: "1988-09-24T21:00:14Z" (591138014) transition_time 0x309-0x310.7 (8)
|
||||
0x310|de |. |
|
||||
0x310| 00 00 00 00 24 2b fd de | ....$+.. | [17]: "1989-03-25T21:00:14Z" (606862814) transition_time 0x311-0x318.7 (8)
|
||||
0x310| 00 00 00 00 25 1b ee| ....%..| [18]: "1989-09-23T21:00:14Z" (622587614) transition_time 0x319-0x320.7 (8)
|
||||
0x320|de |. |
|
||||
0x320| 00 00 00 00 26 0b df df | ....&... | [19]: "1990-03-24T21:00:15Z" (638312415) transition_time 0x321-0x328.7 (8)
|
||||
0x320| 00 00 00 00 27 05 0b| ....'..| [20]: "1990-09-29T21:00:15Z" (654642015) transition_time 0x329-0x330.7 (8)
|
||||
0x330|5f |_ |
|
||||
0x330| 00 00 00 00 27 f4 fc 60 | ....'..` | [21]: "1991-03-30T21:00:16Z" (670366816) transition_time 0x331-0x338.7 (8)
|
||||
0x330| 00 00 00 00 28 e4 fb| ....(..| [22]: "1991-09-28T22:00:16Z" (686095216) transition_time 0x339-0x340.7 (8)
|
||||
0x340|70 |p |
|
||||
0x340| 00 00 00 00 29 78 a3 70 | ....)x.p | [23]: "1992-01-18T22:00:16Z" (695772016) transition_time 0x341-0x348.7 (8)
|
||||
0x340| 00 00 00 00 29 d4 de| ....)..| [24]: "1992-03-28T21:00:16Z" (701816416) transition_time 0x349-0x350.7 (8)
|
||||
0x350|60 |` |
|
||||
0x350| 00 00 00 00 2a c4 cf 61 | ....*..a | [25]: "1992-09-26T21:00:17Z" (717541217) transition_time 0x351-0x358.7 (8)
|
||||
0x350| 00 00 00 00 2b b4 c0| ....+..| [26]: "1993-03-27T21:00:17Z" (733266017) transition_time 0x359-0x360.7 (8)
|
||||
0x360|61 |a |
|
||||
0x360| 00 00 00 00 2c a4 b1 62 | ....,..b | [27]: "1993-09-25T21:00:18Z" (748990818) transition_time 0x361-0x368.7 (8)
|
||||
0x360| 00 00 00 00 2d 94 a2| ....-..| [28]: "1994-03-26T21:00:18Z" (764715618) transition_time 0x369-0x370.7 (8)
|
||||
0x370|62 |b |
|
||||
0x370| 00 00 00 00 2e 84 93 63 | .......c | [29]: "1994-09-24T21:00:19Z" (780440419) transition_time 0x371-0x378.7 (8)
|
||||
0x370| 00 00 00 00 2f 74 84| ..../t.| [30]: "1995-03-25T21:00:19Z" (796165219) transition_time 0x379-0x380.7 (8)
|
||||
0x380|63 |c |
|
||||
0x380| 00 00 00 00 30 64 75 63 | ....0duc | [31]: "1995-09-23T21:00:19Z" (811890019) transition_time 0x381-0x388.7 (8)
|
||||
0x380| 00 00 00 00 31 5d a0| ....1].| [32]: "1996-03-30T21:00:20Z" (828219620) transition_time 0x389-0x390.7 (8)
|
||||
0x390|e4 |. |
|
||||
0x390| 00 00 00 00 32 72 7b e4 | ....2r{. | [33]: "1996-10-26T21:00:20Z" (846363620) transition_time 0x391-0x398.7 (8)
|
||||
0x390| 00 00 00 00 33 3d 82| ....3=.| [34]: "1997-03-29T21:00:20Z" (859669220) transition_time 0x399-0x3a0.7 (8)
|
||||
0x3a0|e4 |. |
|
||||
0x3a0| 00 00 00 00 34 52 5d e5 | ....4R]. | [35]: "1997-10-25T21:00:21Z" (877813221) transition_time 0x3a1-0x3a8.7 (8)
|
||||
0x3a0| 00 00 00 00 35 1d 64| ....5.d| [36]: "1998-03-28T21:00:21Z" (891118821) transition_time 0x3a9-0x3b0.7 (8)
|
||||
0x3b0|e5 |. |
|
||||
0x3b0| 00 00 00 00 36 32 3f e5 | ....62?. | [37]: "1998-10-24T21:00:21Z" (909262821) transition_time 0x3b1-0x3b8.7 (8)
|
||||
0x3b0| 00 00 00 00 36 fd 46| ....6.F| [38]: "1999-03-27T21:00:22Z" (922568422) transition_time 0x3b9-0x3c0.7 (8)
|
||||
0x3c0|e6 |. |
|
||||
0x3c0| 00 00 00 00 38 1b 6a 76 | ....8.jv | [39]: "1999-10-30T22:00:22Z" (941320822) transition_time 0x3c1-0x3c8.7 (8)
|
||||
0x3c0| 00 00 00 00 38 dd 36| ....8.6| [40]: "2000-03-25T22:00:22Z" (954021622) transition_time 0x3c9-0x3d0.7 (8)
|
||||
0x3d0|f6 |. |
|
||||
0x3d0| 00 00 00 00 39 fb 4c 76 | ....9.Lv | [41]: "2000-10-28T22:00:22Z" (972770422) transition_time 0x3d1-0x3d8.7 (8)
|
||||
0x3d0| 00 00 00 00 3a bd 18| ....:..| [42]: "2001-03-24T22:00:22Z" (985471222) transition_time 0x3d9-0x3e0.7 (8)
|
||||
0x3e0|f6 |. |
|
||||
0x3e0| 00 00 00 00 3b db 2e 76 | ....;..v | [43]: "2001-10-27T22:00:22Z" (1004220022) transition_time 0x3e1-0x3e8.7 (8)
|
||||
0x3e0| 00 00 00 00 3c a6 35| ....<.5| [44]: "2002-03-30T22:00:22Z" (1017525622) transition_time 0x3e9-0x3f0.7 (8)
|
||||
0x3f0|76 |v |
|
||||
0x3f0| 00 00 00 00 3d bb 10 76 | ....=..v | [45]: "2002-10-26T22:00:22Z" (1035669622) transition_time 0x3f1-0x3f8.7 (8)
|
||||
0x3f0| 00 00 00 00 3e 86 17| ....>..| [46]: "2003-03-29T22:00:22Z" (1048975222) transition_time 0x3f9-0x400.7 (8)
|
||||
0x400|76 |v |
|
||||
0x400| 00 00 00 00 3f 9a f2 76 | ....?..v | [47]: "2003-10-25T22:00:22Z" (1067119222) transition_time 0x401-0x408.7 (8)
|
||||
0x400| 00 00 00 00 40 65 f9| ....@e.| [48]: "2004-03-27T22:00:22Z" (1080424822) transition_time 0x409-0x410.7 (8)
|
||||
0x410|76 |v |
|
||||
0x410| 00 00 00 00 41 84 0e f6 | ....A... | [49]: "2004-10-30T22:00:22Z" (1099173622) transition_time 0x411-0x418.7 (8)
|
||||
0x410| 00 00 00 00 64 9b 78| ....d.x| [50]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x419-0x420.7 (8)
|
||||
0x420|1b |. |
|
||||
| | | transition_types[0:51]: 0x421-0x453.7 (51)
|
||||
0x420| 01 | . | [0]: 1 transition_type 0x421-0x421.7 (1)
|
||||
0x420| 02 | . | [1]: 2 transition_type 0x422-0x422.7 (1)
|
||||
0x420| 03 | . | [2]: 3 transition_type 0x423-0x423.7 (1)
|
||||
0x420| 04 | . | [3]: 4 transition_type 0x424-0x424.7 (1)
|
||||
0x420| 02 | . | [4]: 2 transition_type 0x425-0x425.7 (1)
|
||||
0x420| 04 | . | [5]: 4 transition_type 0x426-0x426.7 (1)
|
||||
0x420| 02 | . | [6]: 2 transition_type 0x427-0x427.7 (1)
|
||||
0x420| 04 | . | [7]: 4 transition_type 0x428-0x428.7 (1)
|
||||
0x420| 05 | . | [8]: 5 transition_type 0x429-0x429.7 (1)
|
||||
0x420| 06 | . | [9]: 6 transition_type 0x42a-0x42a.7 (1)
|
||||
0x420| 05 | . | [10]: 5 transition_type 0x42b-0x42b.7 (1)
|
||||
0x420| 06 | . | [11]: 6 transition_type 0x42c-0x42c.7 (1)
|
||||
0x420| 05 | . | [12]: 5 transition_type 0x42d-0x42d.7 (1)
|
||||
0x420| 06 | . | [13]: 6 transition_type 0x42e-0x42e.7 (1)
|
||||
0x420| 05| .| [14]: 5 transition_type 0x42f-0x42f.7 (1)
|
||||
0x430|06 |. | [15]: 6 transition_type 0x430-0x430.7 (1)
|
||||
0x430| 05 | . | [16]: 5 transition_type 0x431-0x431.7 (1)
|
||||
0x430| 06 | . | [17]: 6 transition_type 0x432-0x432.7 (1)
|
||||
0x430| 05 | . | [18]: 5 transition_type 0x433-0x433.7 (1)
|
||||
0x430| 06 | . | [19]: 6 transition_type 0x434-0x434.7 (1)
|
||||
0x430| 05 | . | [20]: 5 transition_type 0x435-0x435.7 (1)
|
||||
0x430| 07 | . | [21]: 7 transition_type 0x436-0x436.7 (1)
|
||||
0x430| 08 | . | [22]: 8 transition_type 0x437-0x437.7 (1)
|
||||
0x430| 05 | . | [23]: 5 transition_type 0x438-0x438.7 (1)
|
||||
0x430| 06 | . | [24]: 6 transition_type 0x439-0x439.7 (1)
|
||||
0x430| 05 | . | [25]: 5 transition_type 0x43a-0x43a.7 (1)
|
||||
0x430| 06 | . | [26]: 6 transition_type 0x43b-0x43b.7 (1)
|
||||
0x430| 05 | . | [27]: 5 transition_type 0x43c-0x43c.7 (1)
|
||||
0x430| 06 | . | [28]: 6 transition_type 0x43d-0x43d.7 (1)
|
||||
0x430| 05 | . | [29]: 5 transition_type 0x43e-0x43e.7 (1)
|
||||
0x430| 06| .| [30]: 6 transition_type 0x43f-0x43f.7 (1)
|
||||
0x440|05 |. | [31]: 5 transition_type 0x440-0x440.7 (1)
|
||||
0x440| 06 | . | [32]: 6 transition_type 0x441-0x441.7 (1)
|
||||
0x440| 05 | . | [33]: 5 transition_type 0x442-0x442.7 (1)
|
||||
0x440| 06 | . | [34]: 6 transition_type 0x443-0x443.7 (1)
|
||||
0x440| 05 | . | [35]: 5 transition_type 0x444-0x444.7 (1)
|
||||
0x440| 06 | . | [36]: 6 transition_type 0x445-0x445.7 (1)
|
||||
0x440| 05 | . | [37]: 5 transition_type 0x446-0x446.7 (1)
|
||||
0x440| 07 | . | [38]: 7 transition_type 0x447-0x447.7 (1)
|
||||
0x440| 08 | . | [39]: 8 transition_type 0x448-0x448.7 (1)
|
||||
0x440| 07 | . | [40]: 7 transition_type 0x449-0x449.7 (1)
|
||||
0x440| 08 | . | [41]: 8 transition_type 0x44a-0x44a.7 (1)
|
||||
0x440| 07 | . | [42]: 7 transition_type 0x44b-0x44b.7 (1)
|
||||
0x440| 08 | . | [43]: 8 transition_type 0x44c-0x44c.7 (1)
|
||||
0x440| 07 | . | [44]: 7 transition_type 0x44d-0x44d.7 (1)
|
||||
0x440| 08 | . | [45]: 8 transition_type 0x44e-0x44e.7 (1)
|
||||
0x440| 07| .| [46]: 7 transition_type 0x44f-0x44f.7 (1)
|
||||
0x450|08 |. | [47]: 8 transition_type 0x450-0x450.7 (1)
|
||||
0x450| 07 | . | [48]: 7 transition_type 0x451-0x451.7 (1)
|
||||
0x450| 05 | . | [49]: 5 transition_type 0x452-0x452.7 (1)
|
||||
0x450| 05 | . | [50]: 5 transition_type 0x453-0x453.7 (1)
|
||||
| | | local_time_type_records[0:10]: 0x454-0x48f.7 (60)
|
||||
| | | [0]{}: local_time_type 0x454-0x459.7 (6)
|
||||
0x450| 00 00 30 b0 | ..0. | utoff: 12464 (valid) 0x454-0x457.7 (4)
|
||||
0x450| 00 | . | dst: 0 (valid) 0x458-0x458.7 (1)
|
||||
0x450| 00 | . | idx: 0 (valid) 0x459-0x459.7 (1)
|
||||
| | | [1]{}: local_time_type 0x45a-0x45f.7 (6)
|
||||
0x450| 00 00 2a 30 | ..*0 | utoff: 10800 (valid) 0x45a-0x45d.7 (4)
|
||||
0x450| 00 | . | dst: 0 (valid) 0x45e-0x45e.7 (1)
|
||||
0x450| 04| .| idx: 4 (valid) 0x45f-0x45f.7 (1)
|
||||
| | | [2]{}: local_time_type 0x460-0x465.7 (6)
|
||||
0x460|00 00 46 50 |..FP | utoff: 18000 (valid) 0x460-0x463.7 (4)
|
||||
0x460| 00 | . | dst: 0 (valid) 0x464-0x464.7 (1)
|
||||
0x460| 08 | . | idx: 8 (valid) 0x465-0x465.7 (1)
|
||||
| | | [3]{}: local_time_type 0x466-0x46b.7 (6)
|
||||
0x460| 00 00 54 60 | ..T` | utoff: 21600 (valid) 0x466-0x469.7 (4)
|
||||
0x460| 00 | . | dst: 0 (valid) 0x46a-0x46a.7 (1)
|
||||
0x460| 0c | . | idx: 12 (valid) 0x46b-0x46b.7 (1)
|
||||
| | | [4]{}: local_time_type 0x46c-0x471.7 (6)
|
||||
0x460| 00 00 54 60| ..T`| utoff: 21600 (valid) 0x46c-0x46f.7 (4)
|
||||
0x470|01 |. | dst: 1 (valid) 0x470-0x470.7 (1)
|
||||
0x470| 0c | . | idx: 12 (valid) 0x471-0x471.7 (1)
|
||||
| | | [5]{}: local_time_type 0x472-0x477.7 (6)
|
||||
0x470| 00 00 46 50 | ..FP | utoff: 18000 (valid) 0x472-0x475.7 (4)
|
||||
0x470| 00 | . | dst: 0 (valid) 0x476-0x476.7 (1)
|
||||
0x470| 08 | . | idx: 8 (valid) 0x477-0x477.7 (1)
|
||||
| | | [6]{}: local_time_type 0x478-0x47d.7 (6)
|
||||
0x470| 00 00 54 60 | ..T` | utoff: 21600 (valid) 0x478-0x47b.7 (4)
|
||||
0x470| 01 | . | dst: 1 (valid) 0x47c-0x47c.7 (1)
|
||||
0x470| 0c | . | idx: 12 (valid) 0x47d-0x47d.7 (1)
|
||||
| | | [7]{}: local_time_type 0x47e-0x483.7 (6)
|
||||
0x470| 00 00| ..| utoff: 18000 (valid) 0x47e-0x481.7 (4)
|
||||
0x480|46 50 |FP |
|
||||
0x480| 01 | . | dst: 1 (valid) 0x482-0x482.7 (1)
|
||||
0x480| 08 | . | idx: 8 (valid) 0x483-0x483.7 (1)
|
||||
| | | [8]{}: local_time_type 0x484-0x489.7 (6)
|
||||
0x480| 00 00 38 40 | ..8@ | utoff: 14400 (valid) 0x484-0x487.7 (4)
|
||||
0x480| 00 | . | dst: 0 (valid) 0x488-0x488.7 (1)
|
||||
0x480| 10 | . | idx: 16 (valid) 0x489-0x489.7 (1)
|
||||
| | | [9]{}: local_time_type 0x48a-0x48f.7 (6)
|
||||
0x480| 00 00 46 50 | ..FP | utoff: 18000 (valid) 0x48a-0x48d.7 (4)
|
||||
0x480| 00 | . | dst: 0 (valid) 0x48e-0x48e.7 (1)
|
||||
0x480| 08| .| idx: 8 (valid) 0x48f-0x48f.7 (1)
|
||||
| | | time_zone_designations[0:5]: 0x490-0x4a3.7 (20)
|
||||
0x490|4c 4d 54 00 |LMT. | [0]: "LMT" time_zone_designation 0x490-0x493.7 (4)
|
||||
0x490| 2b 30 33 00 | +03. | [1]: "+03" time_zone_designation 0x494-0x497.7 (4)
|
||||
0x490| 2b 30 35 00 | +05. | [2]: "+05" time_zone_designation 0x498-0x49b.7 (4)
|
||||
0x490| 2b 30 36 00| +06.| [3]: "+06" time_zone_designation 0x49c-0x49f.7 (4)
|
||||
0x4a0|2b 30 34 00 |+04. | [4]: "+04" time_zone_designation 0x4a0-0x4a3.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x4a4-0x5e7.7 (324)
|
||||
| | | [0]{}: leap_second_record 0x4a4-0x4af.7 (12)
|
||||
0x4a0| 00 00 00 00 04 b2 58 00 | ......X. | occur: "1972-07-01T00:00:00Z" (78796800) 0x4a4-0x4ab.7 (8)
|
||||
0x4a0| 00 00 00 01| ....| corr: 1 0x4ac-0x4af.7 (4)
|
||||
| | | [1]{}: leap_second_record 0x4b0-0x4bb.7 (12)
|
||||
0x4b0|00 00 00 00 05 a4 ec 01 |........ | occur: "1973-01-01T00:00:01Z" (94694401) 0x4b0-0x4b7.7 (8)
|
||||
0x4b0| 00 00 00 02 | .... | corr: 2 0x4b8-0x4bb.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x4bc-0x4c7.7 (12)
|
||||
0x4b0| 00 00 00 00| ....| occur: "1974-01-01T00:00:02Z" (126230402) 0x4bc-0x4c3.7 (8)
|
||||
0x4c0|07 86 1f 82 |.... |
|
||||
0x4c0| 00 00 00 03 | .... | corr: 3 0x4c4-0x4c7.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x4c8-0x4d3.7 (12)
|
||||
0x4c0| 00 00 00 00 09 67 53 03| .....gS.| occur: "1975-01-01T00:00:03Z" (157766403) 0x4c8-0x4cf.7 (8)
|
||||
0x4d0|00 00 00 04 |.... | corr: 4 0x4d0-0x4d3.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x4d4-0x4df.7 (12)
|
||||
0x4d0| 00 00 00 00 0b 48 86 84 | .....H.. | occur: "1976-01-01T00:00:04Z" (189302404) 0x4d4-0x4db.7 (8)
|
||||
0x4d0| 00 00 00 05| ....| corr: 5 0x4dc-0x4df.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x4e0-0x4eb.7 (12)
|
||||
0x4e0|00 00 00 00 0d 2b 0b 85 |.....+.. | occur: "1977-01-01T00:00:05Z" (220924805) 0x4e0-0x4e7.7 (8)
|
||||
0x4e0| 00 00 00 06 | .... | corr: 6 0x4e8-0x4eb.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x4ec-0x4f7.7 (12)
|
||||
0x4e0| 00 00 00 00| ....| occur: "1978-01-01T00:00:06Z" (252460806) 0x4ec-0x4f3.7 (8)
|
||||
0x4f0|0f 0c 3f 06 |..?. |
|
||||
0x4f0| 00 00 00 07 | .... | corr: 7 0x4f4-0x4f7.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x4f8-0x503.7 (12)
|
||||
0x4f0| 00 00 00 00 10 ed 72 87| ......r.| occur: "1979-01-01T00:00:07Z" (283996807) 0x4f8-0x4ff.7 (8)
|
||||
0x500|00 00 00 08 |.... | corr: 8 0x500-0x503.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x504-0x50f.7 (12)
|
||||
0x500| 00 00 00 00 12 ce a6 08 | ........ | occur: "1980-01-01T00:00:08Z" (315532808) 0x504-0x50b.7 (8)
|
||||
0x500| 00 00 00 09| ....| corr: 9 0x50c-0x50f.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x510-0x51b.7 (12)
|
||||
0x510|00 00 00 00 15 9f ca 89 |........ | occur: "1981-07-01T00:00:09Z" (362793609) 0x510-0x517.7 (8)
|
||||
0x510| 00 00 00 0a | .... | corr: 10 0x518-0x51b.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x51c-0x527.7 (12)
|
||||
0x510| 00 00 00 00| ....| occur: "1982-07-01T00:00:10Z" (394329610) 0x51c-0x523.7 (8)
|
||||
0x520|17 80 fe 0a |.... |
|
||||
0x520| 00 00 00 0b | .... | corr: 11 0x524-0x527.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x528-0x533.7 (12)
|
||||
0x520| 00 00 00 00 19 62 31 8b| .....b1.| occur: "1983-07-01T00:00:11Z" (425865611) 0x528-0x52f.7 (8)
|
||||
0x530|00 00 00 0c |.... | corr: 12 0x530-0x533.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x534-0x53f.7 (12)
|
||||
0x530| 00 00 00 00 1d 25 ea 0c | .....%.. | occur: "1985-07-01T00:00:12Z" (489024012) 0x534-0x53b.7 (8)
|
||||
0x530| 00 00 00 0d| ....| corr: 13 0x53c-0x53f.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x540-0x54b.7 (12)
|
||||
0x540|00 00 00 00 21 da e5 0d |....!... | occur: "1988-01-01T00:00:13Z" (567993613) 0x540-0x547.7 (8)
|
||||
0x540| 00 00 00 0e | .... | corr: 14 0x548-0x54b.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x54c-0x557.7 (12)
|
||||
0x540| 00 00 00 00| ....| occur: "1990-01-01T00:00:14Z" (631152014) 0x54c-0x553.7 (8)
|
||||
0x550|25 9e 9d 8e |%... |
|
||||
0x550| 00 00 00 0f | .... | corr: 15 0x554-0x557.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x558-0x563.7 (12)
|
||||
0x550| 00 00 00 00 27 7f d1 0f| ....'...| occur: "1991-01-01T00:00:15Z" (662688015) 0x558-0x55f.7 (8)
|
||||
0x560|00 00 00 10 |.... | corr: 16 0x560-0x563.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x564-0x56f.7 (12)
|
||||
0x560| 00 00 00 00 2a 50 f5 90 | ....*P.. | occur: "1992-07-01T00:00:16Z" (709948816) 0x564-0x56b.7 (8)
|
||||
0x560| 00 00 00 11| ....| corr: 17 0x56c-0x56f.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x570-0x57b.7 (12)
|
||||
0x570|00 00 00 00 2c 32 29 11 |....,2). | occur: "1993-07-01T00:00:17Z" (741484817) 0x570-0x577.7 (8)
|
||||
0x570| 00 00 00 12 | .... | corr: 18 0x578-0x57b.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x57c-0x587.7 (12)
|
||||
0x570| 00 00 00 00| ....| occur: "1994-07-01T00:00:18Z" (773020818) 0x57c-0x583.7 (8)
|
||||
0x580|2e 13 5c 92 |..\. |
|
||||
0x580| 00 00 00 13 | .... | corr: 19 0x584-0x587.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x588-0x593.7 (12)
|
||||
0x580| 00 00 00 00 30 e7 24 13| ....0.$.| occur: "1996-01-01T00:00:19Z" (820454419) 0x588-0x58f.7 (8)
|
||||
0x590|00 00 00 14 |.... | corr: 20 0x590-0x593.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x594-0x59f.7 (12)
|
||||
0x590| 00 00 00 00 33 b8 48 94 | ....3.H. | occur: "1997-07-01T00:00:20Z" (867715220) 0x594-0x59b.7 (8)
|
||||
0x590| 00 00 00 15| ....| corr: 21 0x59c-0x59f.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x5a0-0x5ab.7 (12)
|
||||
0x5a0|00 00 00 00 36 8c 10 15 |....6... | occur: "1999-01-01T00:00:21Z" (915148821) 0x5a0-0x5a7.7 (8)
|
||||
0x5a0| 00 00 00 16 | .... | corr: 22 0x5a8-0x5ab.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x5ac-0x5b7.7 (12)
|
||||
0x5a0| 00 00 00 00| ....| occur: "2006-01-01T00:00:22Z" (1136073622) 0x5ac-0x5b3.7 (8)
|
||||
0x5b0|43 b7 1b 96 |C... |
|
||||
0x5b0| 00 00 00 17 | .... | corr: 23 0x5b4-0x5b7.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x5b8-0x5c3.7 (12)
|
||||
0x5b0| 00 00 00 00 49 5c 07 97| ....I\..| occur: "2009-01-01T00:00:23Z" (1230768023) 0x5b8-0x5bf.7 (8)
|
||||
0x5c0|00 00 00 18 |.... | corr: 24 0x5c0-0x5c3.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x5c4-0x5cf.7 (12)
|
||||
0x5c0| 00 00 00 00 4f ef 93 18 | ....O... | occur: "2012-07-01T00:00:24Z" (1341100824) 0x5c4-0x5cb.7 (8)
|
||||
0x5c0| 00 00 00 19| ....| corr: 25 0x5cc-0x5cf.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x5d0-0x5db.7 (12)
|
||||
0x5d0|00 00 00 00 55 93 2d 99 |....U.-. | occur: "2015-07-01T00:00:25Z" (1435708825) 0x5d0-0x5d7.7 (8)
|
||||
0x5d0| 00 00 00 1a | .... | corr: 26 0x5d8-0x5db.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x5dc-0x5e7.7 (12)
|
||||
0x5d0| 00 00 00 00| ....| occur: "2017-01-01T00:00:26Z" (1483228826) 0x5dc-0x5e3.7 (8)
|
||||
0x5e0|58 68 46 9a |XhF. |
|
||||
0x5e0| 00 00 00 1b | .... | corr: 27 0x5e4-0x5e7.7 (4)
|
||||
| | | standard_wall_indicators[0:10]: 0x5e8-0x5f1.7 (10)
|
||||
0x5e0| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x5e8-0x5e8.7 (1)
|
||||
0x5e0| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x5e9-0x5e9.7 (1)
|
||||
0x5e0| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x5ea-0x5ea.7 (1)
|
||||
0x5e0| 00 | . | [3]: 0 standard_wall_indicator (valid) 0x5eb-0x5eb.7 (1)
|
||||
0x5e0| 00 | . | [4]: 0 standard_wall_indicator (valid) 0x5ec-0x5ec.7 (1)
|
||||
0x5e0| 01 | . | [5]: 1 standard_wall_indicator (valid) 0x5ed-0x5ed.7 (1)
|
||||
0x5e0| 01 | . | [6]: 1 standard_wall_indicator (valid) 0x5ee-0x5ee.7 (1)
|
||||
0x5e0| 01| .| [7]: 1 standard_wall_indicator (valid) 0x5ef-0x5ef.7 (1)
|
||||
0x5f0|01 |. | [8]: 1 standard_wall_indicator (valid) 0x5f0-0x5f0.7 (1)
|
||||
0x5f0| 01 | . | [9]: 1 standard_wall_indicator (valid) 0x5f1-0x5f1.7 (1)
|
||||
| | | ut_local_indicators[0:0]: 0x5f2-NA (0)
|
||||
| | | footer{}: 0x5f2-0x5f3.7 (2)
|
||||
0x5f0| 0a | . | nl1: 10 (valid) 0x5f2-0x5f2.7 (1)
|
||||
| | | tz_string: "" 0x5f3-NA (0)
|
||||
0x5f0| 0a| | .| | nl2: 10 (valid) 0x5f3-0x5f3.7 (1)
|
BIN
format/tzif/testdata/Auckland
vendored
Normal file
BIN
format/tzif/testdata/Auckland
vendored
Normal file
Binary file not shown.
750
format/tzif/testdata/Auckland.fqtest
vendored
Normal file
750
format/tzif/testdata/Auckland.fqtest
vendored
Normal file
@ -0,0 +1,750 @@
|
||||
$ fq -d tzif dv Auckland
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: Auckland (tzif) 0x0-0x984.7 (2437)
|
||||
| | | v1header{}: 0x0-0x2b.7 (44)
|
||||
0x000|54 5a 69 66 |TZif | magic: 0x545a6966 (valid) 0x0-0x3.7 (4)
|
||||
0x000| 32 | 2 | ver: "2" (0x32) (valid) 0x4-0x4.7 (1)
|
||||
0x000| 00 00 00 00 00 00 00 00 00 00 00| ...........| reserved: raw bits 0x5-0x13.7 (15)
|
||||
0x010|00 00 00 00 |.... |
|
||||
0x010| 00 00 00 00 | .... | isutcnt: 0 0x14-0x17.7 (4)
|
||||
0x010| 00 00 00 07 | .... | isstdcnt: 7 0x18-0x1b.7 (4)
|
||||
0x010| 00 00 00 00| ....| leapcnt: 0 0x1c-0x1f.7 (4)
|
||||
0x020|00 00 00 9c |.... | timecnt: 156 0x20-0x23.7 (4)
|
||||
0x020| 00 00 00 07 | .... | typecnt: 7 0x24-0x27.7 (4)
|
||||
0x020| 00 00 00 13 | .... | charcnt: 19 0x28-0x2b.7 (4)
|
||||
| | | v1datablock{}: 0x2c-0x37b.7 (848)
|
||||
| | | transition_times[0:156]: 0x2c-0x29b.7 (624)
|
||||
0x020| 80 00 00 00| ....| [0]: "1901-12-13T20:45:52Z" (-2147483648) transition_time 0x2c-0x2f.7 (4)
|
||||
0x030|b0 b4 b2 e8 |.... | [1]: "1927-11-05T14:30:00Z" (-1330335000) transition_time 0x30-0x33.7 (4)
|
||||
0x030| b1 51 87 58 | .Q.X | [2]: "1928-03-03T13:30:00Z" (-1320057000) transition_time 0x34-0x37.7 (4)
|
||||
0x030| b2 78 e5 68 | .x.h | [3]: "1928-10-13T14:30:00Z" (-1300699800) transition_time 0x38-0x3b.7 (4)
|
||||
0x030| b3 43 e5 60| .C.`| [4]: "1929-03-16T14:00:00Z" (-1287396000) transition_time 0x3c-0x3f.7 (4)
|
||||
0x040|b4 58 c7 68 |.X.h | [5]: "1929-10-12T14:30:00Z" (-1269250200) transition_time 0x40-0x43.7 (4)
|
||||
0x040| b5 23 c7 60 | .#.` | [6]: "1930-03-15T14:00:00Z" (-1255946400) transition_time 0x44-0x47.7 (4)
|
||||
0x040| b6 38 a9 68 | .8.h | [7]: "1930-10-11T14:30:00Z" (-1237800600) transition_time 0x48-0x4b.7 (4)
|
||||
0x040| b7 03 a9 60| ...`| [8]: "1931-03-14T14:00:00Z" (-1224496800) transition_time 0x4c-0x4f.7 (4)
|
||||
0x050|b8 18 8b 68 |...h | [9]: "1931-10-10T14:30:00Z" (-1206351000) transition_time 0x50-0x53.7 (4)
|
||||
0x050| b8 ec c5 e0 | .... | [10]: "1932-03-19T14:00:00Z" (-1192442400) transition_time 0x54-0x57.7 (4)
|
||||
0x050| b9 f8 6d 68 | ..mh | [11]: "1932-10-08T14:30:00Z" (-1174901400) transition_time 0x58-0x5b.7 (4)
|
||||
0x050| ba cc a7 e0| ....| [12]: "1933-03-18T14:00:00Z" (-1160992800) transition_time 0x5c-0x5f.7 (4)
|
||||
0x060|bb d8 4f 68 |..Oh | [13]: "1933-10-07T14:30:00Z" (-1143451800) transition_time 0x60-0x63.7 (4)
|
||||
0x060| bc e3 e8 e0 | .... | [14]: "1934-04-28T14:00:00Z" (-1125914400) transition_time 0x64-0x67.7 (4)
|
||||
0x060| bd ae f6 e8 | .... | [15]: "1934-09-29T14:30:00Z" (-1112607000) transition_time 0x68-0x6b.7 (4)
|
||||
0x060| be c3 ca e0| ....| [16]: "1935-04-27T14:00:00Z" (-1094464800) transition_time 0x6c-0x6f.7 (4)
|
||||
0x070|bf 8e d8 e8 |.... | [17]: "1935-09-28T14:30:00Z" (-1081157400) transition_time 0x70-0x73.7 (4)
|
||||
0x070| c0 a3 ac e0 | .... | [18]: "1936-04-25T14:00:00Z" (-1063015200) transition_time 0x74-0x77.7 (4)
|
||||
0x070| c1 6e ba e8 | .n.. | [19]: "1936-09-26T14:30:00Z" (-1049707800) transition_time 0x78-0x7b.7 (4)
|
||||
0x070| c2 83 8e e0| ....| [20]: "1937-04-24T14:00:00Z" (-1031565600) transition_time 0x7c-0x7f.7 (4)
|
||||
0x080|c3 4e 9c e8 |.N.. | [21]: "1937-09-25T14:30:00Z" (-1018258200) transition_time 0x80-0x83.7 (4)
|
||||
0x080| c4 63 70 e0 | .cp. | [22]: "1938-04-23T14:00:00Z" (-1000116000) transition_time 0x84-0x87.7 (4)
|
||||
0x080| c5 2e 7e e8 | ..~. | [23]: "1938-09-24T14:30:00Z" (-986808600) transition_time 0x88-0x8b.7 (4)
|
||||
0x080| c6 4c 8d 60| .L.`| [24]: "1939-04-29T14:00:00Z" (-968061600) transition_time 0x8c-0x8f.7 (4)
|
||||
0x090|c7 0e 60 e8 |..`. | [25]: "1939-09-23T14:30:00Z" (-955359000) transition_time 0x90-0x93.7 (4)
|
||||
0x090| c8 2c 6f 60 | .,o` | [26]: "1940-04-27T14:00:00Z" (-936612000) transition_time 0x94-0x97.7 (4)
|
||||
0x090| c8 f7 7d 68 | ..}h | [27]: "1940-09-28T14:30:00Z" (-923304600) transition_time 0x98-0x9b.7 (4)
|
||||
0x090| d2 da 9a 40| ...@| [28]: "1945-12-31T12:00:00Z" (-757425600) transition_time 0x9c-0x9f.7 (4)
|
||||
0x0a0|09 18 fd e0 |.... | [29]: "1974-11-02T14:00:00Z" (152632800) transition_time 0xa0-0xa3.7 (4)
|
||||
0x0a0| 09 ac a5 e0 | .... | [30]: "1975-02-22T14:00:00Z" (162309600) transition_time 0xa4-0xa7.7 (4)
|
||||
0x0a0| 0a ef a5 60 | ...` | [31]: "1975-10-25T14:00:00Z" (183477600) transition_time 0xa8-0xab.7 (4)
|
||||
0x0a0| 0b 9e fc e0| ....| [32]: "1976-03-06T14:00:00Z" (194968800) transition_time 0xac-0xaf.7 (4)
|
||||
0x0b0|0c d8 c1 e0 |.... | [33]: "1976-10-30T14:00:00Z" (215532000) transition_time 0xb0-0xb3.7 (4)
|
||||
0x0b0| 0d 7e de e0 | .~.. | [34]: "1977-03-05T14:00:00Z" (226418400) transition_time 0xb4-0xb7.7 (4)
|
||||
0x0b0| 0e b8 a3 e0 | .... | [35]: "1977-10-29T14:00:00Z" (246981600) transition_time 0xb8-0xbb.7 (4)
|
||||
0x0b0| 0f 5e c0 e0| .^..| [36]: "1978-03-04T14:00:00Z" (257868000) transition_time 0xbc-0xbf.7 (4)
|
||||
0x0c0|10 98 85 e0 |.... | [37]: "1978-10-28T14:00:00Z" (278431200) transition_time 0xc0-0xc3.7 (4)
|
||||
0x0c0| 11 3e a2 e0 | .>.. | [38]: "1979-03-03T14:00:00Z" (289317600) transition_time 0xc4-0xc7.7 (4)
|
||||
0x0c0| 12 78 67 e0 | .xg. | [39]: "1979-10-27T14:00:00Z" (309880800) transition_time 0xc8-0xcb.7 (4)
|
||||
0x0c0| 13 1e 84 e0| ....| [40]: "1980-03-01T14:00:00Z" (320767200) transition_time 0xcc-0xcf.7 (4)
|
||||
0x0d0|14 58 49 e0 |.XI. | [41]: "1980-10-25T14:00:00Z" (341330400) transition_time 0xd0-0xd3.7 (4)
|
||||
0x0d0| 14 fe 66 e0 | ..f. | [42]: "1981-02-28T14:00:00Z" (352216800) transition_time 0xd4-0xd7.7 (4)
|
||||
0x0d0| 16 38 2b e0 | .8+. | [43]: "1981-10-24T14:00:00Z" (372780000) transition_time 0xd8-0xdb.7 (4)
|
||||
0x0d0| 16 e7 83 60| ...`| [44]: "1982-03-06T14:00:00Z" (384271200) transition_time 0xdc-0xdf.7 (4)
|
||||
0x0e0|18 21 48 60 |.!H` | [45]: "1982-10-30T14:00:00Z" (404834400) transition_time 0xe0-0xe3.7 (4)
|
||||
0x0e0| 18 c7 65 60 | ..e` | [46]: "1983-03-05T14:00:00Z" (415720800) transition_time 0xe4-0xe7.7 (4)
|
||||
0x0e0| 1a 01 2a 60 | ..*` | [47]: "1983-10-29T14:00:00Z" (436284000) transition_time 0xe8-0xeb.7 (4)
|
||||
0x0e0| 1a a7 47 60| ..G`| [48]: "1984-03-03T14:00:00Z" (447170400) transition_time 0xec-0xef.7 (4)
|
||||
0x0f0|1b e1 0c 60 |...` | [49]: "1984-10-27T14:00:00Z" (467733600) transition_time 0xf0-0xf3.7 (4)
|
||||
0x0f0| 1c 87 29 60 | ..)` | [50]: "1985-03-02T14:00:00Z" (478620000) transition_time 0xf4-0xf7.7 (4)
|
||||
0x0f0| 1d c0 ee 60 | ...` | [51]: "1985-10-26T14:00:00Z" (499183200) transition_time 0xf8-0xfb.7 (4)
|
||||
0x0f0| 1e 67 0b 60| .g.`| [52]: "1986-03-01T14:00:00Z" (510069600) transition_time 0xfc-0xff.7 (4)
|
||||
0x100|1f a0 d0 60 |...` | [53]: "1986-10-25T14:00:00Z" (530632800) transition_time 0x100-0x103.7 (4)
|
||||
0x100| 20 46 ed 60 | F.` | [54]: "1987-02-28T14:00:00Z" (541519200) transition_time 0x104-0x107.7 (4)
|
||||
0x100| 21 80 b2 60 | !..` | [55]: "1987-10-24T14:00:00Z" (562082400) transition_time 0x108-0x10b.7 (4)
|
||||
0x100| 22 30 09 e0| "0..| [56]: "1988-03-05T14:00:00Z" (573573600) transition_time 0x10c-0x10f.7 (4)
|
||||
0x110|23 69 ce e0 |#i.. | [57]: "1988-10-29T14:00:00Z" (594136800) transition_time 0x110-0x113.7 (4)
|
||||
0x110| 24 0f eb e0 | $... | [58]: "1989-03-04T14:00:00Z" (605023200) transition_time 0x114-0x117.7 (4)
|
||||
0x110| 25 2e 01 60 | %..` | [59]: "1989-10-07T14:00:00Z" (623772000) transition_time 0x118-0x11b.7 (4)
|
||||
0x110| 26 02 42 e0| &.B.| [60]: "1990-03-17T14:00:00Z" (637682400) transition_time 0x11c-0x11f.7 (4)
|
||||
0x120|27 0d e3 60 |'..` | [61]: "1990-10-06T14:00:00Z" (655221600) transition_time 0x120-0x123.7 (4)
|
||||
0x120| 27 e2 24 e0 | '.$. | [62]: "1991-03-16T14:00:00Z" (669132000) transition_time 0x124-0x127.7 (4)
|
||||
0x120| 28 ed c5 60 | (..` | [63]: "1991-10-05T14:00:00Z" (686671200) transition_time 0x128-0x12b.7 (4)
|
||||
0x120| 29 c2 06 e0| )...| [64]: "1992-03-14T14:00:00Z" (700581600) transition_time 0x12c-0x12f.7 (4)
|
||||
0x130|2a cd a7 60 |*..` | [65]: "1992-10-03T14:00:00Z" (718120800) transition_time 0x130-0x133.7 (4)
|
||||
0x130| 2b ab 23 60 | +.#` | [66]: "1993-03-20T14:00:00Z" (732636000) transition_time 0x134-0x137.7 (4)
|
||||
0x130| 2c ad 89 60 | ,..` | [67]: "1993-10-02T14:00:00Z" (749570400) transition_time 0x138-0x13b.7 (4)
|
||||
0x130| 2d 8b 05 60| -..`| [68]: "1994-03-19T14:00:00Z" (764085600) transition_time 0x13c-0x13f.7 (4)
|
||||
0x140|2e 8d 6b 60 |..k` | [69]: "1994-10-01T14:00:00Z" (781020000) transition_time 0x140-0x143.7 (4)
|
||||
0x140| 2f 6a e7 60 | /j.` | [70]: "1995-03-18T14:00:00Z" (795535200) transition_time 0x144-0x147.7 (4)
|
||||
0x140| 30 6d 4d 60 | 0mM` | [71]: "1995-09-30T14:00:00Z" (812469600) transition_time 0x148-0x14b.7 (4)
|
||||
0x140| 31 4a c9 60| 1J.`| [72]: "1996-03-16T14:00:00Z" (826984800) transition_time 0x14c-0x14f.7 (4)
|
||||
0x150|32 56 69 e0 |2Vi. | [73]: "1996-10-05T14:00:00Z" (844524000) transition_time 0x150-0x153.7 (4)
|
||||
0x150| 33 2a ab 60 | 3*.` | [74]: "1997-03-15T14:00:00Z" (858434400) transition_time 0x154-0x157.7 (4)
|
||||
0x150| 34 36 4b e0 | 46K. | [75]: "1997-10-04T14:00:00Z" (875973600) transition_time 0x158-0x15b.7 (4)
|
||||
0x150| 35 0a 8d 60| 5..`| [76]: "1998-03-14T14:00:00Z" (889884000) transition_time 0x15c-0x15f.7 (4)
|
||||
0x160|36 16 2d e0 |6.-. | [77]: "1998-10-03T14:00:00Z" (907423200) transition_time 0x160-0x163.7 (4)
|
||||
0x160| 36 f3 a9 e0 | 6... | [78]: "1999-03-20T14:00:00Z" (921938400) transition_time 0x164-0x167.7 (4)
|
||||
0x160| 37 f6 0f e0 | 7... | [79]: "1999-10-02T14:00:00Z" (938872800) transition_time 0x168-0x16b.7 (4)
|
||||
0x160| 38 d3 8b e0| 8...| [80]: "2000-03-18T14:00:00Z" (953388000) transition_time 0x16c-0x16f.7 (4)
|
||||
0x170|39 d5 f1 e0 |9... | [81]: "2000-09-30T14:00:00Z" (970322400) transition_time 0x170-0x173.7 (4)
|
||||
0x170| 3a b3 6d e0 | :.m. | [82]: "2001-03-17T14:00:00Z" (984837600) transition_time 0x174-0x177.7 (4)
|
||||
0x170| 3b bf 0e 60 | ;..` | [83]: "2001-10-06T14:00:00Z" (1002376800) transition_time 0x178-0x17b.7 (4)
|
||||
0x170| 3c 93 4f e0| <.O.| [84]: "2002-03-16T14:00:00Z" (1016287200) transition_time 0x17c-0x17f.7 (4)
|
||||
0x180|3d 9e f0 60 |=..` | [85]: "2002-10-05T14:00:00Z" (1033826400) transition_time 0x180-0x183.7 (4)
|
||||
0x180| 3e 73 31 e0 | >s1. | [86]: "2003-03-15T14:00:00Z" (1047736800) transition_time 0x184-0x187.7 (4)
|
||||
0x180| 3f 7e d2 60 | ?~.` | [87]: "2003-10-04T14:00:00Z" (1065276000) transition_time 0x188-0x18b.7 (4)
|
||||
0x180| 40 5c 4e 60| @\N`| [88]: "2004-03-20T14:00:00Z" (1079791200) transition_time 0x18c-0x18f.7 (4)
|
||||
0x190|41 5e b4 60 |A^.` | [89]: "2004-10-02T14:00:00Z" (1096725600) transition_time 0x190-0x193.7 (4)
|
||||
0x190| 42 3c 30 60 | B<0` | [90]: "2005-03-19T14:00:00Z" (1111240800) transition_time 0x194-0x197.7 (4)
|
||||
0x190| 43 3e 96 60 | C>.` | [91]: "2005-10-01T14:00:00Z" (1128175200) transition_time 0x198-0x19b.7 (4)
|
||||
0x190| 44 1c 12 60| D..`| [92]: "2006-03-18T14:00:00Z" (1142690400) transition_time 0x19c-0x19f.7 (4)
|
||||
0x1a0|45 1e 78 60 |E.x` | [93]: "2006-09-30T14:00:00Z" (1159624800) transition_time 0x1a0-0x1a3.7 (4)
|
||||
0x1a0| 45 fb f4 60 | E..` | [94]: "2007-03-17T14:00:00Z" (1174140000) transition_time 0x1a4-0x1a7.7 (4)
|
||||
0x1a0| 46 fe 5a 60 | F.Z` | [95]: "2007-09-29T14:00:00Z" (1191074400) transition_time 0x1a8-0x1ab.7 (4)
|
||||
0x1a0| 47 f7 85 e0| G...| [96]: "2008-04-05T14:00:00Z" (1207404000) transition_time 0x1ac-0x1af.7 (4)
|
||||
0x1b0|48 de 3c 60 |H.<` | [97]: "2008-09-27T14:00:00Z" (1222524000) transition_time 0x1b0-0x1b3.7 (4)
|
||||
0x1b0| 49 d7 67 e0 | I.g. | [98]: "2009-04-04T14:00:00Z" (1238853600) transition_time 0x1b4-0x1b7.7 (4)
|
||||
0x1b0| 4a be 1e 60 | J..` | [99]: "2009-09-26T14:00:00Z" (1253973600) transition_time 0x1b8-0x1bb.7 (4)
|
||||
0x1b0| 4b b7 49 e0| K.I.| [100]: "2010-04-03T14:00:00Z" (1270303200) transition_time 0x1bc-0x1bf.7 (4)
|
||||
0x1c0|4c 9e 00 60 |L..` | [101]: "2010-09-25T14:00:00Z" (1285423200) transition_time 0x1c0-0x1c3.7 (4)
|
||||
0x1c0| 4d 97 2b e0 | M.+. | [102]: "2011-04-02T14:00:00Z" (1301752800) transition_time 0x1c4-0x1c7.7 (4)
|
||||
0x1c0| 4e 7d e2 60 | N}.` | [103]: "2011-09-24T14:00:00Z" (1316872800) transition_time 0x1c8-0x1cb.7 (4)
|
||||
0x1c0| 4f 77 0d e0| Ow..| [104]: "2012-03-31T14:00:00Z" (1333202400) transition_time 0x1cc-0x1cf.7 (4)
|
||||
0x1d0|50 66 fe e0 |Pf.. | [105]: "2012-09-29T14:00:00Z" (1348927200) transition_time 0x1d0-0x1d3.7 (4)
|
||||
0x1d0| 51 60 2a 60 | Q`*` | [106]: "2013-04-06T14:00:00Z" (1365256800) transition_time 0x1d4-0x1d7.7 (4)
|
||||
0x1d0| 52 46 e0 e0 | RF.. | [107]: "2013-09-28T14:00:00Z" (1380376800) transition_time 0x1d8-0x1db.7 (4)
|
||||
0x1d0| 53 40 0c 60| S@.`| [108]: "2014-04-05T14:00:00Z" (1396706400) transition_time 0x1dc-0x1df.7 (4)
|
||||
0x1e0|54 26 c2 e0 |T&.. | [109]: "2014-09-27T14:00:00Z" (1411826400) transition_time 0x1e0-0x1e3.7 (4)
|
||||
0x1e0| 55 1f ee 60 | U..` | [110]: "2015-04-04T14:00:00Z" (1428156000) transition_time 0x1e4-0x1e7.7 (4)
|
||||
0x1e0| 56 06 a4 e0 | V... | [111]: "2015-09-26T14:00:00Z" (1443276000) transition_time 0x1e8-0x1eb.7 (4)
|
||||
0x1e0| 56 ff d0 60| V..`| [112]: "2016-04-02T14:00:00Z" (1459605600) transition_time 0x1ec-0x1ef.7 (4)
|
||||
0x1f0|57 e6 86 e0 |W... | [113]: "2016-09-24T14:00:00Z" (1474725600) transition_time 0x1f0-0x1f3.7 (4)
|
||||
0x1f0| 58 df b2 60 | X..` | [114]: "2017-04-01T14:00:00Z" (1491055200) transition_time 0x1f4-0x1f7.7 (4)
|
||||
0x1f0| 59 c6 68 e0 | Y.h. | [115]: "2017-09-23T14:00:00Z" (1506175200) transition_time 0x1f8-0x1fb.7 (4)
|
||||
0x1f0| 5a bf 94 60| Z..`| [116]: "2018-03-31T14:00:00Z" (1522504800) transition_time 0x1fc-0x1ff.7 (4)
|
||||
0x200|5b af 85 60 |[..` | [117]: "2018-09-29T14:00:00Z" (1538229600) transition_time 0x200-0x203.7 (4)
|
||||
0x200| 5c a8 b0 e0 | \... | [118]: "2019-04-06T14:00:00Z" (1554559200) transition_time 0x204-0x207.7 (4)
|
||||
0x200| 5d 8f 67 60 | ].g` | [119]: "2019-09-28T14:00:00Z" (1569679200) transition_time 0x208-0x20b.7 (4)
|
||||
0x200| 5e 88 92 e0| ^...| [120]: "2020-04-04T14:00:00Z" (1586008800) transition_time 0x20c-0x20f.7 (4)
|
||||
0x210|5f 6f 49 60 |_oI` | [121]: "2020-09-26T14:00:00Z" (1601128800) transition_time 0x210-0x213.7 (4)
|
||||
0x210| 60 68 74 e0 | `ht. | [122]: "2021-04-03T14:00:00Z" (1617458400) transition_time 0x214-0x217.7 (4)
|
||||
0x210| 61 4f 2b 60 | aO+` | [123]: "2021-09-25T14:00:00Z" (1632578400) transition_time 0x218-0x21b.7 (4)
|
||||
0x210| 62 48 56 e0| bHV.| [124]: "2022-04-02T14:00:00Z" (1648908000) transition_time 0x21c-0x21f.7 (4)
|
||||
0x220|63 2f 0d 60 |c/.` | [125]: "2022-09-24T14:00:00Z" (1664028000) transition_time 0x220-0x223.7 (4)
|
||||
0x220| 64 28 38 e0 | d(8. | [126]: "2023-04-01T14:00:00Z" (1680357600) transition_time 0x224-0x227.7 (4)
|
||||
0x220| 65 0e ef 60 | e..` | [127]: "2023-09-23T14:00:00Z" (1695477600) transition_time 0x228-0x22b.7 (4)
|
||||
0x220| 66 11 55 60| f.U`| [128]: "2024-04-06T14:00:00Z" (1712412000) transition_time 0x22c-0x22f.7 (4)
|
||||
0x230|66 f8 0b e0 |f... | [129]: "2024-09-28T14:00:00Z" (1727532000) transition_time 0x230-0x233.7 (4)
|
||||
0x230| 67 f1 37 60 | g.7` | [130]: "2025-04-05T14:00:00Z" (1743861600) transition_time 0x234-0x237.7 (4)
|
||||
0x230| 68 d7 ed e0 | h... | [131]: "2025-09-27T14:00:00Z" (1758981600) transition_time 0x238-0x23b.7 (4)
|
||||
0x230| 69 d1 19 60| i..`| [132]: "2026-04-04T14:00:00Z" (1775311200) transition_time 0x23c-0x23f.7 (4)
|
||||
0x240|6a b7 cf e0 |j... | [133]: "2026-09-26T14:00:00Z" (1790431200) transition_time 0x240-0x243.7 (4)
|
||||
0x240| 6b b0 fb 60 | k..` | [134]: "2027-04-03T14:00:00Z" (1806760800) transition_time 0x244-0x247.7 (4)
|
||||
0x240| 6c 97 b1 e0 | l... | [135]: "2027-09-25T14:00:00Z" (1821880800) transition_time 0x248-0x24b.7 (4)
|
||||
0x240| 6d 90 dd 60| m..`| [136]: "2028-04-01T14:00:00Z" (1838210400) transition_time 0x24c-0x24f.7 (4)
|
||||
0x250|6e 77 93 e0 |nw.. | [137]: "2028-09-23T14:00:00Z" (1853330400) transition_time 0x250-0x253.7 (4)
|
||||
0x250| 6f 70 bf 60 | op.` | [138]: "2029-03-31T14:00:00Z" (1869660000) transition_time 0x254-0x257.7 (4)
|
||||
0x250| 70 60 b0 60 | p`.` | [139]: "2029-09-29T14:00:00Z" (1885384800) transition_time 0x258-0x25b.7 (4)
|
||||
0x250| 71 59 db e0| qY..| [140]: "2030-04-06T14:00:00Z" (1901714400) transition_time 0x25c-0x25f.7 (4)
|
||||
0x260|72 40 92 60 |r@.` | [141]: "2030-09-28T14:00:00Z" (1916834400) transition_time 0x260-0x263.7 (4)
|
||||
0x260| 73 39 bd e0 | s9.. | [142]: "2031-04-05T14:00:00Z" (1933164000) transition_time 0x264-0x267.7 (4)
|
||||
0x260| 74 20 74 60 | t t` | [143]: "2031-09-27T14:00:00Z" (1948284000) transition_time 0x268-0x26b.7 (4)
|
||||
0x260| 75 19 9f e0| u...| [144]: "2032-04-03T14:00:00Z" (1964613600) transition_time 0x26c-0x26f.7 (4)
|
||||
0x270|76 00 56 60 |v.V` | [145]: "2032-09-25T14:00:00Z" (1979733600) transition_time 0x270-0x273.7 (4)
|
||||
0x270| 76 f9 81 e0 | v... | [146]: "2033-04-02T14:00:00Z" (1996063200) transition_time 0x274-0x277.7 (4)
|
||||
0x270| 77 e0 38 60 | w.8` | [147]: "2033-09-24T14:00:00Z" (2011183200) transition_time 0x278-0x27b.7 (4)
|
||||
0x270| 78 d9 63 e0| x.c.| [148]: "2034-04-01T14:00:00Z" (2027512800) transition_time 0x27c-0x27f.7 (4)
|
||||
0x280|79 c0 1a 60 |y..` | [149]: "2034-09-23T14:00:00Z" (2042632800) transition_time 0x280-0x283.7 (4)
|
||||
0x280| 7a b9 45 e0 | z.E. | [150]: "2035-03-31T14:00:00Z" (2058962400) transition_time 0x284-0x287.7 (4)
|
||||
0x280| 7b a9 36 e0 | {.6. | [151]: "2035-09-29T14:00:00Z" (2074687200) transition_time 0x288-0x28b.7 (4)
|
||||
0x280| 7c a2 62 60| |.b`| [152]: "2036-04-05T14:00:00Z" (2091016800) transition_time 0x28c-0x28f.7 (4)
|
||||
0x290|7d 89 18 e0 |}... | [153]: "2036-09-27T14:00:00Z" (2106136800) transition_time 0x290-0x293.7 (4)
|
||||
0x290| 7e 82 44 60 | ~.D` | [154]: "2037-04-04T14:00:00Z" (2122466400) transition_time 0x294-0x297.7 (4)
|
||||
0x290| 7f 68 fa e0 | .h.. | [155]: "2037-09-26T14:00:00Z" (2137586400) transition_time 0x298-0x29b.7 (4)
|
||||
| | | transition_types[0:156]: 0x29c-0x337.7 (156)
|
||||
0x290| 02 | . | [0]: 2 transition_type 0x29c-0x29c.7 (1)
|
||||
0x290| 01 | . | [1]: 1 transition_type 0x29d-0x29d.7 (1)
|
||||
0x290| 02 | . | [2]: 2 transition_type 0x29e-0x29e.7 (1)
|
||||
0x290| 03| .| [3]: 3 transition_type 0x29f-0x29f.7 (1)
|
||||
0x2a0|02 |. | [4]: 2 transition_type 0x2a0-0x2a0.7 (1)
|
||||
0x2a0| 03 | . | [5]: 3 transition_type 0x2a1-0x2a1.7 (1)
|
||||
0x2a0| 02 | . | [6]: 2 transition_type 0x2a2-0x2a2.7 (1)
|
||||
0x2a0| 03 | . | [7]: 3 transition_type 0x2a3-0x2a3.7 (1)
|
||||
0x2a0| 02 | . | [8]: 2 transition_type 0x2a4-0x2a4.7 (1)
|
||||
0x2a0| 03 | . | [9]: 3 transition_type 0x2a5-0x2a5.7 (1)
|
||||
0x2a0| 02 | . | [10]: 2 transition_type 0x2a6-0x2a6.7 (1)
|
||||
0x2a0| 03 | . | [11]: 3 transition_type 0x2a7-0x2a7.7 (1)
|
||||
0x2a0| 02 | . | [12]: 2 transition_type 0x2a8-0x2a8.7 (1)
|
||||
0x2a0| 03 | . | [13]: 3 transition_type 0x2a9-0x2a9.7 (1)
|
||||
0x2a0| 02 | . | [14]: 2 transition_type 0x2aa-0x2aa.7 (1)
|
||||
0x2a0| 03 | . | [15]: 3 transition_type 0x2ab-0x2ab.7 (1)
|
||||
0x2a0| 02 | . | [16]: 2 transition_type 0x2ac-0x2ac.7 (1)
|
||||
0x2a0| 03 | . | [17]: 3 transition_type 0x2ad-0x2ad.7 (1)
|
||||
0x2a0| 02 | . | [18]: 2 transition_type 0x2ae-0x2ae.7 (1)
|
||||
0x2a0| 03| .| [19]: 3 transition_type 0x2af-0x2af.7 (1)
|
||||
0x2b0|02 |. | [20]: 2 transition_type 0x2b0-0x2b0.7 (1)
|
||||
0x2b0| 03 | . | [21]: 3 transition_type 0x2b1-0x2b1.7 (1)
|
||||
0x2b0| 02 | . | [22]: 2 transition_type 0x2b2-0x2b2.7 (1)
|
||||
0x2b0| 03 | . | [23]: 3 transition_type 0x2b3-0x2b3.7 (1)
|
||||
0x2b0| 02 | . | [24]: 2 transition_type 0x2b4-0x2b4.7 (1)
|
||||
0x2b0| 03 | . | [25]: 3 transition_type 0x2b5-0x2b5.7 (1)
|
||||
0x2b0| 02 | . | [26]: 2 transition_type 0x2b6-0x2b6.7 (1)
|
||||
0x2b0| 03 | . | [27]: 3 transition_type 0x2b7-0x2b7.7 (1)
|
||||
0x2b0| 06 | . | [28]: 6 transition_type 0x2b8-0x2b8.7 (1)
|
||||
0x2b0| 04 | . | [29]: 4 transition_type 0x2b9-0x2b9.7 (1)
|
||||
0x2b0| 05 | . | [30]: 5 transition_type 0x2ba-0x2ba.7 (1)
|
||||
0x2b0| 04 | . | [31]: 4 transition_type 0x2bb-0x2bb.7 (1)
|
||||
0x2b0| 05 | . | [32]: 5 transition_type 0x2bc-0x2bc.7 (1)
|
||||
0x2b0| 04 | . | [33]: 4 transition_type 0x2bd-0x2bd.7 (1)
|
||||
0x2b0| 05 | . | [34]: 5 transition_type 0x2be-0x2be.7 (1)
|
||||
0x2b0| 04| .| [35]: 4 transition_type 0x2bf-0x2bf.7 (1)
|
||||
0x2c0|05 |. | [36]: 5 transition_type 0x2c0-0x2c0.7 (1)
|
||||
0x2c0| 04 | . | [37]: 4 transition_type 0x2c1-0x2c1.7 (1)
|
||||
0x2c0| 05 | . | [38]: 5 transition_type 0x2c2-0x2c2.7 (1)
|
||||
0x2c0| 04 | . | [39]: 4 transition_type 0x2c3-0x2c3.7 (1)
|
||||
0x2c0| 05 | . | [40]: 5 transition_type 0x2c4-0x2c4.7 (1)
|
||||
0x2c0| 04 | . | [41]: 4 transition_type 0x2c5-0x2c5.7 (1)
|
||||
0x2c0| 05 | . | [42]: 5 transition_type 0x2c6-0x2c6.7 (1)
|
||||
0x2c0| 04 | . | [43]: 4 transition_type 0x2c7-0x2c7.7 (1)
|
||||
0x2c0| 05 | . | [44]: 5 transition_type 0x2c8-0x2c8.7 (1)
|
||||
0x2c0| 04 | . | [45]: 4 transition_type 0x2c9-0x2c9.7 (1)
|
||||
0x2c0| 05 | . | [46]: 5 transition_type 0x2ca-0x2ca.7 (1)
|
||||
0x2c0| 04 | . | [47]: 4 transition_type 0x2cb-0x2cb.7 (1)
|
||||
0x2c0| 05 | . | [48]: 5 transition_type 0x2cc-0x2cc.7 (1)
|
||||
0x2c0| 04 | . | [49]: 4 transition_type 0x2cd-0x2cd.7 (1)
|
||||
0x2c0| 05 | . | [50]: 5 transition_type 0x2ce-0x2ce.7 (1)
|
||||
0x2c0| 04| .| [51]: 4 transition_type 0x2cf-0x2cf.7 (1)
|
||||
0x2d0|05 |. | [52]: 5 transition_type 0x2d0-0x2d0.7 (1)
|
||||
0x2d0| 04 | . | [53]: 4 transition_type 0x2d1-0x2d1.7 (1)
|
||||
0x2d0| 05 | . | [54]: 5 transition_type 0x2d2-0x2d2.7 (1)
|
||||
0x2d0| 04 | . | [55]: 4 transition_type 0x2d3-0x2d3.7 (1)
|
||||
0x2d0| 05 | . | [56]: 5 transition_type 0x2d4-0x2d4.7 (1)
|
||||
0x2d0| 04 | . | [57]: 4 transition_type 0x2d5-0x2d5.7 (1)
|
||||
0x2d0| 05 | . | [58]: 5 transition_type 0x2d6-0x2d6.7 (1)
|
||||
0x2d0| 04 | . | [59]: 4 transition_type 0x2d7-0x2d7.7 (1)
|
||||
0x2d0| 05 | . | [60]: 5 transition_type 0x2d8-0x2d8.7 (1)
|
||||
0x2d0| 04 | . | [61]: 4 transition_type 0x2d9-0x2d9.7 (1)
|
||||
0x2d0| 05 | . | [62]: 5 transition_type 0x2da-0x2da.7 (1)
|
||||
0x2d0| 04 | . | [63]: 4 transition_type 0x2db-0x2db.7 (1)
|
||||
0x2d0| 05 | . | [64]: 5 transition_type 0x2dc-0x2dc.7 (1)
|
||||
0x2d0| 04 | . | [65]: 4 transition_type 0x2dd-0x2dd.7 (1)
|
||||
0x2d0| 05 | . | [66]: 5 transition_type 0x2de-0x2de.7 (1)
|
||||
0x2d0| 04| .| [67]: 4 transition_type 0x2df-0x2df.7 (1)
|
||||
0x2e0|05 |. | [68]: 5 transition_type 0x2e0-0x2e0.7 (1)
|
||||
0x2e0| 04 | . | [69]: 4 transition_type 0x2e1-0x2e1.7 (1)
|
||||
0x2e0| 05 | . | [70]: 5 transition_type 0x2e2-0x2e2.7 (1)
|
||||
0x2e0| 04 | . | [71]: 4 transition_type 0x2e3-0x2e3.7 (1)
|
||||
0x2e0| 05 | . | [72]: 5 transition_type 0x2e4-0x2e4.7 (1)
|
||||
0x2e0| 04 | . | [73]: 4 transition_type 0x2e5-0x2e5.7 (1)
|
||||
0x2e0| 05 | . | [74]: 5 transition_type 0x2e6-0x2e6.7 (1)
|
||||
0x2e0| 04 | . | [75]: 4 transition_type 0x2e7-0x2e7.7 (1)
|
||||
0x2e0| 05 | . | [76]: 5 transition_type 0x2e8-0x2e8.7 (1)
|
||||
0x2e0| 04 | . | [77]: 4 transition_type 0x2e9-0x2e9.7 (1)
|
||||
0x2e0| 05 | . | [78]: 5 transition_type 0x2ea-0x2ea.7 (1)
|
||||
0x2e0| 04 | . | [79]: 4 transition_type 0x2eb-0x2eb.7 (1)
|
||||
0x2e0| 05 | . | [80]: 5 transition_type 0x2ec-0x2ec.7 (1)
|
||||
0x2e0| 04 | . | [81]: 4 transition_type 0x2ed-0x2ed.7 (1)
|
||||
0x2e0| 05 | . | [82]: 5 transition_type 0x2ee-0x2ee.7 (1)
|
||||
0x2e0| 04| .| [83]: 4 transition_type 0x2ef-0x2ef.7 (1)
|
||||
0x2f0|05 |. | [84]: 5 transition_type 0x2f0-0x2f0.7 (1)
|
||||
0x2f0| 04 | . | [85]: 4 transition_type 0x2f1-0x2f1.7 (1)
|
||||
0x2f0| 05 | . | [86]: 5 transition_type 0x2f2-0x2f2.7 (1)
|
||||
0x2f0| 04 | . | [87]: 4 transition_type 0x2f3-0x2f3.7 (1)
|
||||
0x2f0| 05 | . | [88]: 5 transition_type 0x2f4-0x2f4.7 (1)
|
||||
0x2f0| 04 | . | [89]: 4 transition_type 0x2f5-0x2f5.7 (1)
|
||||
0x2f0| 05 | . | [90]: 5 transition_type 0x2f6-0x2f6.7 (1)
|
||||
0x2f0| 04 | . | [91]: 4 transition_type 0x2f7-0x2f7.7 (1)
|
||||
0x2f0| 05 | . | [92]: 5 transition_type 0x2f8-0x2f8.7 (1)
|
||||
0x2f0| 04 | . | [93]: 4 transition_type 0x2f9-0x2f9.7 (1)
|
||||
0x2f0| 05 | . | [94]: 5 transition_type 0x2fa-0x2fa.7 (1)
|
||||
0x2f0| 04 | . | [95]: 4 transition_type 0x2fb-0x2fb.7 (1)
|
||||
0x2f0| 05 | . | [96]: 5 transition_type 0x2fc-0x2fc.7 (1)
|
||||
0x2f0| 04 | . | [97]: 4 transition_type 0x2fd-0x2fd.7 (1)
|
||||
0x2f0| 05 | . | [98]: 5 transition_type 0x2fe-0x2fe.7 (1)
|
||||
0x2f0| 04| .| [99]: 4 transition_type 0x2ff-0x2ff.7 (1)
|
||||
0x300|05 |. | [100]: 5 transition_type 0x300-0x300.7 (1)
|
||||
0x300| 04 | . | [101]: 4 transition_type 0x301-0x301.7 (1)
|
||||
0x300| 05 | . | [102]: 5 transition_type 0x302-0x302.7 (1)
|
||||
0x300| 04 | . | [103]: 4 transition_type 0x303-0x303.7 (1)
|
||||
0x300| 05 | . | [104]: 5 transition_type 0x304-0x304.7 (1)
|
||||
0x300| 04 | . | [105]: 4 transition_type 0x305-0x305.7 (1)
|
||||
0x300| 05 | . | [106]: 5 transition_type 0x306-0x306.7 (1)
|
||||
0x300| 04 | . | [107]: 4 transition_type 0x307-0x307.7 (1)
|
||||
0x300| 05 | . | [108]: 5 transition_type 0x308-0x308.7 (1)
|
||||
0x300| 04 | . | [109]: 4 transition_type 0x309-0x309.7 (1)
|
||||
0x300| 05 | . | [110]: 5 transition_type 0x30a-0x30a.7 (1)
|
||||
0x300| 04 | . | [111]: 4 transition_type 0x30b-0x30b.7 (1)
|
||||
0x300| 05 | . | [112]: 5 transition_type 0x30c-0x30c.7 (1)
|
||||
0x300| 04 | . | [113]: 4 transition_type 0x30d-0x30d.7 (1)
|
||||
0x300| 05 | . | [114]: 5 transition_type 0x30e-0x30e.7 (1)
|
||||
0x300| 04| .| [115]: 4 transition_type 0x30f-0x30f.7 (1)
|
||||
0x310|05 |. | [116]: 5 transition_type 0x310-0x310.7 (1)
|
||||
0x310| 04 | . | [117]: 4 transition_type 0x311-0x311.7 (1)
|
||||
0x310| 05 | . | [118]: 5 transition_type 0x312-0x312.7 (1)
|
||||
0x310| 04 | . | [119]: 4 transition_type 0x313-0x313.7 (1)
|
||||
0x310| 05 | . | [120]: 5 transition_type 0x314-0x314.7 (1)
|
||||
0x310| 04 | . | [121]: 4 transition_type 0x315-0x315.7 (1)
|
||||
0x310| 05 | . | [122]: 5 transition_type 0x316-0x316.7 (1)
|
||||
0x310| 04 | . | [123]: 4 transition_type 0x317-0x317.7 (1)
|
||||
0x310| 05 | . | [124]: 5 transition_type 0x318-0x318.7 (1)
|
||||
0x310| 04 | . | [125]: 4 transition_type 0x319-0x319.7 (1)
|
||||
0x310| 05 | . | [126]: 5 transition_type 0x31a-0x31a.7 (1)
|
||||
0x310| 04 | . | [127]: 4 transition_type 0x31b-0x31b.7 (1)
|
||||
0x310| 05 | . | [128]: 5 transition_type 0x31c-0x31c.7 (1)
|
||||
0x310| 04 | . | [129]: 4 transition_type 0x31d-0x31d.7 (1)
|
||||
0x310| 05 | . | [130]: 5 transition_type 0x31e-0x31e.7 (1)
|
||||
0x310| 04| .| [131]: 4 transition_type 0x31f-0x31f.7 (1)
|
||||
0x320|05 |. | [132]: 5 transition_type 0x320-0x320.7 (1)
|
||||
0x320| 04 | . | [133]: 4 transition_type 0x321-0x321.7 (1)
|
||||
0x320| 05 | . | [134]: 5 transition_type 0x322-0x322.7 (1)
|
||||
0x320| 04 | . | [135]: 4 transition_type 0x323-0x323.7 (1)
|
||||
0x320| 05 | . | [136]: 5 transition_type 0x324-0x324.7 (1)
|
||||
0x320| 04 | . | [137]: 4 transition_type 0x325-0x325.7 (1)
|
||||
0x320| 05 | . | [138]: 5 transition_type 0x326-0x326.7 (1)
|
||||
0x320| 04 | . | [139]: 4 transition_type 0x327-0x327.7 (1)
|
||||
0x320| 05 | . | [140]: 5 transition_type 0x328-0x328.7 (1)
|
||||
0x320| 04 | . | [141]: 4 transition_type 0x329-0x329.7 (1)
|
||||
0x320| 05 | . | [142]: 5 transition_type 0x32a-0x32a.7 (1)
|
||||
0x320| 04 | . | [143]: 4 transition_type 0x32b-0x32b.7 (1)
|
||||
0x320| 05 | . | [144]: 5 transition_type 0x32c-0x32c.7 (1)
|
||||
0x320| 04 | . | [145]: 4 transition_type 0x32d-0x32d.7 (1)
|
||||
0x320| 05 | . | [146]: 5 transition_type 0x32e-0x32e.7 (1)
|
||||
0x320| 04| .| [147]: 4 transition_type 0x32f-0x32f.7 (1)
|
||||
0x330|05 |. | [148]: 5 transition_type 0x330-0x330.7 (1)
|
||||
0x330| 04 | . | [149]: 4 transition_type 0x331-0x331.7 (1)
|
||||
0x330| 05 | . | [150]: 5 transition_type 0x332-0x332.7 (1)
|
||||
0x330| 04 | . | [151]: 4 transition_type 0x333-0x333.7 (1)
|
||||
0x330| 05 | . | [152]: 5 transition_type 0x334-0x334.7 (1)
|
||||
0x330| 04 | . | [153]: 4 transition_type 0x335-0x335.7 (1)
|
||||
0x330| 05 | . | [154]: 5 transition_type 0x336-0x336.7 (1)
|
||||
0x330| 04 | . | [155]: 4 transition_type 0x337-0x337.7 (1)
|
||||
| | | local_time_type_records[0:7]: 0x338-0x361.7 (42)
|
||||
| | | [0]{}: local_time_type 0x338-0x33d.7 (6)
|
||||
0x330| 00 00 a3 d8 | .... | utoff: 41944 (valid) 0x338-0x33b.7 (4)
|
||||
0x330| 00 | . | dst: 0 (valid) 0x33c-0x33c.7 (1)
|
||||
0x330| 00 | . | idx: 0 (valid) 0x33d-0x33d.7 (1)
|
||||
| | | [1]{}: local_time_type 0x33e-0x343.7 (6)
|
||||
0x330| 00 00| ..| utoff: 45000 (valid) 0x33e-0x341.7 (4)
|
||||
0x340|af c8 |.. |
|
||||
0x340| 01 | . | dst: 1 (valid) 0x342-0x342.7 (1)
|
||||
0x340| 04 | . | idx: 4 (valid) 0x343-0x343.7 (1)
|
||||
| | | [2]{}: local_time_type 0x344-0x349.7 (6)
|
||||
0x340| 00 00 a1 b8 | .... | utoff: 41400 (valid) 0x344-0x347.7 (4)
|
||||
0x340| 00 | . | dst: 0 (valid) 0x348-0x348.7 (1)
|
||||
0x340| 09 | . | idx: 9 (valid) 0x349-0x349.7 (1)
|
||||
| | | [3]{}: local_time_type 0x34a-0x34f.7 (6)
|
||||
0x340| 00 00 a8 c0 | .... | utoff: 43200 (valid) 0x34a-0x34d.7 (4)
|
||||
0x340| 01 | . | dst: 1 (valid) 0x34e-0x34e.7 (1)
|
||||
0x340| 04| .| idx: 4 (valid) 0x34f-0x34f.7 (1)
|
||||
| | | [4]{}: local_time_type 0x350-0x355.7 (6)
|
||||
0x350|00 00 b6 d0 |.... | utoff: 46800 (valid) 0x350-0x353.7 (4)
|
||||
0x350| 01 | . | dst: 1 (valid) 0x354-0x354.7 (1)
|
||||
0x350| 0e | . | idx: 14 (valid) 0x355-0x355.7 (1)
|
||||
| | | [5]{}: local_time_type 0x356-0x35b.7 (6)
|
||||
0x350| 00 00 a8 c0 | .... | utoff: 43200 (valid) 0x356-0x359.7 (4)
|
||||
0x350| 00 | . | dst: 0 (valid) 0x35a-0x35a.7 (1)
|
||||
0x350| 04 | . | idx: 4 (valid) 0x35b-0x35b.7 (1)
|
||||
| | | [6]{}: local_time_type 0x35c-0x361.7 (6)
|
||||
0x350| 00 00 a8 c0| ....| utoff: 43200 (valid) 0x35c-0x35f.7 (4)
|
||||
0x360|00 |. | dst: 0 (valid) 0x360-0x360.7 (1)
|
||||
0x360| 04 | . | idx: 4 (valid) 0x361-0x361.7 (1)
|
||||
| | | time_zone_designations[0:4]: 0x362-0x374.7 (19)
|
||||
0x360| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x362-0x365.7 (4)
|
||||
0x360| 4e 5a 53 54 00 | NZST. | [1]: "NZST" time_zone_designation 0x366-0x36a.7 (5)
|
||||
0x360| 4e 5a 4d 54 00| NZMT.| [2]: "NZMT" time_zone_designation 0x36b-0x36f.7 (5)
|
||||
0x370|4e 5a 44 54 00 |NZDT. | [3]: "NZDT" time_zone_designation 0x370-0x374.7 (5)
|
||||
| | | leap_second_records[0:0]: 0x375-NA (0)
|
||||
| | | standard_wall_indicators[0:7]: 0x375-0x37b.7 (7)
|
||||
0x370| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x375-0x375.7 (1)
|
||||
0x370| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x376-0x376.7 (1)
|
||||
0x370| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x377-0x377.7 (1)
|
||||
0x370| 00 | . | [3]: 0 standard_wall_indicator (valid) 0x378-0x378.7 (1)
|
||||
0x370| 01 | . | [4]: 1 standard_wall_indicator (valid) 0x379-0x379.7 (1)
|
||||
0x370| 01 | . | [5]: 1 standard_wall_indicator (valid) 0x37a-0x37a.7 (1)
|
||||
0x370| 00 | . | [6]: 0 standard_wall_indicator (valid) 0x37b-0x37b.7 (1)
|
||||
| | | ut_local_indicators[0:0]: 0x37c-NA (0)
|
||||
| | | v2plusheader{}: 0x37c-0x3a7.7 (44)
|
||||
0x370| 54 5a 69 66| TZif| magic: 0x545a6966 (valid) 0x37c-0x37f.7 (4)
|
||||
0x380|32 |2 | ver: "2" (0x32) (valid) 0x380-0x380.7 (1)
|
||||
0x380| 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00| ...............| reserved: raw bits 0x381-0x38f.7 (15)
|
||||
0x390|00 00 00 00 |.... | isutcnt: 0 0x390-0x393.7 (4)
|
||||
0x390| 00 00 00 07 | .... | isstdcnt: 7 0x394-0x397.7 (4)
|
||||
0x390| 00 00 00 00 | .... | leapcnt: 0 0x398-0x39b.7 (4)
|
||||
0x390| 00 00 00 9c| ....| timecnt: 156 0x39c-0x39f.7 (4)
|
||||
0x3a0|00 00 00 07 |.... | typecnt: 7 0x3a0-0x3a3.7 (4)
|
||||
0x3a0| 00 00 00 13 | .... | charcnt: 19 0x3a4-0x3a7.7 (4)
|
||||
| | | v2plusdatablock{}: 0x3a8-0x967.7 (1472)
|
||||
| | | transition_times[0:156]: 0x3a8-0x887.7 (1248)
|
||||
0x3a0| ff ff ff ff 41 b7 4c a8| ....A.L.| [0]: "1868-11-01T12:20:56Z" (-3192435544) transition_time 0x3a8-0x3af.7 (8)
|
||||
0x3b0|ff ff ff ff b0 b4 b2 e8 |........ | [1]: "1927-11-05T14:30:00Z" (-1330335000) transition_time 0x3b0-0x3b7.7 (8)
|
||||
0x3b0| ff ff ff ff b1 51 87 58| .....Q.X| [2]: "1928-03-03T13:30:00Z" (-1320057000) transition_time 0x3b8-0x3bf.7 (8)
|
||||
0x3c0|ff ff ff ff b2 78 e5 68 |.....x.h | [3]: "1928-10-13T14:30:00Z" (-1300699800) transition_time 0x3c0-0x3c7.7 (8)
|
||||
0x3c0| ff ff ff ff b3 43 e5 60| .....C.`| [4]: "1929-03-16T14:00:00Z" (-1287396000) transition_time 0x3c8-0x3cf.7 (8)
|
||||
0x3d0|ff ff ff ff b4 58 c7 68 |.....X.h | [5]: "1929-10-12T14:30:00Z" (-1269250200) transition_time 0x3d0-0x3d7.7 (8)
|
||||
0x3d0| ff ff ff ff b5 23 c7 60| .....#.`| [6]: "1930-03-15T14:00:00Z" (-1255946400) transition_time 0x3d8-0x3df.7 (8)
|
||||
0x3e0|ff ff ff ff b6 38 a9 68 |.....8.h | [7]: "1930-10-11T14:30:00Z" (-1237800600) transition_time 0x3e0-0x3e7.7 (8)
|
||||
0x3e0| ff ff ff ff b7 03 a9 60| .......`| [8]: "1931-03-14T14:00:00Z" (-1224496800) transition_time 0x3e8-0x3ef.7 (8)
|
||||
0x3f0|ff ff ff ff b8 18 8b 68 |.......h | [9]: "1931-10-10T14:30:00Z" (-1206351000) transition_time 0x3f0-0x3f7.7 (8)
|
||||
0x3f0| ff ff ff ff b8 ec c5 e0| ........| [10]: "1932-03-19T14:00:00Z" (-1192442400) transition_time 0x3f8-0x3ff.7 (8)
|
||||
0x400|ff ff ff ff b9 f8 6d 68 |......mh | [11]: "1932-10-08T14:30:00Z" (-1174901400) transition_time 0x400-0x407.7 (8)
|
||||
0x400| ff ff ff ff ba cc a7 e0| ........| [12]: "1933-03-18T14:00:00Z" (-1160992800) transition_time 0x408-0x40f.7 (8)
|
||||
0x410|ff ff ff ff bb d8 4f 68 |......Oh | [13]: "1933-10-07T14:30:00Z" (-1143451800) transition_time 0x410-0x417.7 (8)
|
||||
0x410| ff ff ff ff bc e3 e8 e0| ........| [14]: "1934-04-28T14:00:00Z" (-1125914400) transition_time 0x418-0x41f.7 (8)
|
||||
0x420|ff ff ff ff bd ae f6 e8 |........ | [15]: "1934-09-29T14:30:00Z" (-1112607000) transition_time 0x420-0x427.7 (8)
|
||||
0x420| ff ff ff ff be c3 ca e0| ........| [16]: "1935-04-27T14:00:00Z" (-1094464800) transition_time 0x428-0x42f.7 (8)
|
||||
0x430|ff ff ff ff bf 8e d8 e8 |........ | [17]: "1935-09-28T14:30:00Z" (-1081157400) transition_time 0x430-0x437.7 (8)
|
||||
0x430| ff ff ff ff c0 a3 ac e0| ........| [18]: "1936-04-25T14:00:00Z" (-1063015200) transition_time 0x438-0x43f.7 (8)
|
||||
0x440|ff ff ff ff c1 6e ba e8 |.....n.. | [19]: "1936-09-26T14:30:00Z" (-1049707800) transition_time 0x440-0x447.7 (8)
|
||||
0x440| ff ff ff ff c2 83 8e e0| ........| [20]: "1937-04-24T14:00:00Z" (-1031565600) transition_time 0x448-0x44f.7 (8)
|
||||
0x450|ff ff ff ff c3 4e 9c e8 |.....N.. | [21]: "1937-09-25T14:30:00Z" (-1018258200) transition_time 0x450-0x457.7 (8)
|
||||
0x450| ff ff ff ff c4 63 70 e0| .....cp.| [22]: "1938-04-23T14:00:00Z" (-1000116000) transition_time 0x458-0x45f.7 (8)
|
||||
0x460|ff ff ff ff c5 2e 7e e8 |......~. | [23]: "1938-09-24T14:30:00Z" (-986808600) transition_time 0x460-0x467.7 (8)
|
||||
0x460| ff ff ff ff c6 4c 8d 60| .....L.`| [24]: "1939-04-29T14:00:00Z" (-968061600) transition_time 0x468-0x46f.7 (8)
|
||||
0x470|ff ff ff ff c7 0e 60 e8 |......`. | [25]: "1939-09-23T14:30:00Z" (-955359000) transition_time 0x470-0x477.7 (8)
|
||||
0x470| ff ff ff ff c8 2c 6f 60| .....,o`| [26]: "1940-04-27T14:00:00Z" (-936612000) transition_time 0x478-0x47f.7 (8)
|
||||
0x480|ff ff ff ff c8 f7 7d 68 |......}h | [27]: "1940-09-28T14:30:00Z" (-923304600) transition_time 0x480-0x487.7 (8)
|
||||
0x480| ff ff ff ff d2 da 9a 40| .......@| [28]: "1945-12-31T12:00:00Z" (-757425600) transition_time 0x488-0x48f.7 (8)
|
||||
0x490|00 00 00 00 09 18 fd e0 |........ | [29]: "1974-11-02T14:00:00Z" (152632800) transition_time 0x490-0x497.7 (8)
|
||||
0x490| 00 00 00 00 09 ac a5 e0| ........| [30]: "1975-02-22T14:00:00Z" (162309600) transition_time 0x498-0x49f.7 (8)
|
||||
0x4a0|00 00 00 00 0a ef a5 60 |.......` | [31]: "1975-10-25T14:00:00Z" (183477600) transition_time 0x4a0-0x4a7.7 (8)
|
||||
0x4a0| 00 00 00 00 0b 9e fc e0| ........| [32]: "1976-03-06T14:00:00Z" (194968800) transition_time 0x4a8-0x4af.7 (8)
|
||||
0x4b0|00 00 00 00 0c d8 c1 e0 |........ | [33]: "1976-10-30T14:00:00Z" (215532000) transition_time 0x4b0-0x4b7.7 (8)
|
||||
0x4b0| 00 00 00 00 0d 7e de e0| .....~..| [34]: "1977-03-05T14:00:00Z" (226418400) transition_time 0x4b8-0x4bf.7 (8)
|
||||
0x4c0|00 00 00 00 0e b8 a3 e0 |........ | [35]: "1977-10-29T14:00:00Z" (246981600) transition_time 0x4c0-0x4c7.7 (8)
|
||||
0x4c0| 00 00 00 00 0f 5e c0 e0| .....^..| [36]: "1978-03-04T14:00:00Z" (257868000) transition_time 0x4c8-0x4cf.7 (8)
|
||||
0x4d0|00 00 00 00 10 98 85 e0 |........ | [37]: "1978-10-28T14:00:00Z" (278431200) transition_time 0x4d0-0x4d7.7 (8)
|
||||
0x4d0| 00 00 00 00 11 3e a2 e0| .....>..| [38]: "1979-03-03T14:00:00Z" (289317600) transition_time 0x4d8-0x4df.7 (8)
|
||||
0x4e0|00 00 00 00 12 78 67 e0 |.....xg. | [39]: "1979-10-27T14:00:00Z" (309880800) transition_time 0x4e0-0x4e7.7 (8)
|
||||
0x4e0| 00 00 00 00 13 1e 84 e0| ........| [40]: "1980-03-01T14:00:00Z" (320767200) transition_time 0x4e8-0x4ef.7 (8)
|
||||
0x4f0|00 00 00 00 14 58 49 e0 |.....XI. | [41]: "1980-10-25T14:00:00Z" (341330400) transition_time 0x4f0-0x4f7.7 (8)
|
||||
0x4f0| 00 00 00 00 14 fe 66 e0| ......f.| [42]: "1981-02-28T14:00:00Z" (352216800) transition_time 0x4f8-0x4ff.7 (8)
|
||||
0x500|00 00 00 00 16 38 2b e0 |.....8+. | [43]: "1981-10-24T14:00:00Z" (372780000) transition_time 0x500-0x507.7 (8)
|
||||
0x500| 00 00 00 00 16 e7 83 60| .......`| [44]: "1982-03-06T14:00:00Z" (384271200) transition_time 0x508-0x50f.7 (8)
|
||||
0x510|00 00 00 00 18 21 48 60 |.....!H` | [45]: "1982-10-30T14:00:00Z" (404834400) transition_time 0x510-0x517.7 (8)
|
||||
0x510| 00 00 00 00 18 c7 65 60| ......e`| [46]: "1983-03-05T14:00:00Z" (415720800) transition_time 0x518-0x51f.7 (8)
|
||||
0x520|00 00 00 00 1a 01 2a 60 |......*` | [47]: "1983-10-29T14:00:00Z" (436284000) transition_time 0x520-0x527.7 (8)
|
||||
0x520| 00 00 00 00 1a a7 47 60| ......G`| [48]: "1984-03-03T14:00:00Z" (447170400) transition_time 0x528-0x52f.7 (8)
|
||||
0x530|00 00 00 00 1b e1 0c 60 |.......` | [49]: "1984-10-27T14:00:00Z" (467733600) transition_time 0x530-0x537.7 (8)
|
||||
0x530| 00 00 00 00 1c 87 29 60| ......)`| [50]: "1985-03-02T14:00:00Z" (478620000) transition_time 0x538-0x53f.7 (8)
|
||||
0x540|00 00 00 00 1d c0 ee 60 |.......` | [51]: "1985-10-26T14:00:00Z" (499183200) transition_time 0x540-0x547.7 (8)
|
||||
0x540| 00 00 00 00 1e 67 0b 60| .....g.`| [52]: "1986-03-01T14:00:00Z" (510069600) transition_time 0x548-0x54f.7 (8)
|
||||
0x550|00 00 00 00 1f a0 d0 60 |.......` | [53]: "1986-10-25T14:00:00Z" (530632800) transition_time 0x550-0x557.7 (8)
|
||||
0x550| 00 00 00 00 20 46 ed 60| .... F.`| [54]: "1987-02-28T14:00:00Z" (541519200) transition_time 0x558-0x55f.7 (8)
|
||||
0x560|00 00 00 00 21 80 b2 60 |....!..` | [55]: "1987-10-24T14:00:00Z" (562082400) transition_time 0x560-0x567.7 (8)
|
||||
0x560| 00 00 00 00 22 30 09 e0| ...."0..| [56]: "1988-03-05T14:00:00Z" (573573600) transition_time 0x568-0x56f.7 (8)
|
||||
0x570|00 00 00 00 23 69 ce e0 |....#i.. | [57]: "1988-10-29T14:00:00Z" (594136800) transition_time 0x570-0x577.7 (8)
|
||||
0x570| 00 00 00 00 24 0f eb e0| ....$...| [58]: "1989-03-04T14:00:00Z" (605023200) transition_time 0x578-0x57f.7 (8)
|
||||
0x580|00 00 00 00 25 2e 01 60 |....%..` | [59]: "1989-10-07T14:00:00Z" (623772000) transition_time 0x580-0x587.7 (8)
|
||||
0x580| 00 00 00 00 26 02 42 e0| ....&.B.| [60]: "1990-03-17T14:00:00Z" (637682400) transition_time 0x588-0x58f.7 (8)
|
||||
0x590|00 00 00 00 27 0d e3 60 |....'..` | [61]: "1990-10-06T14:00:00Z" (655221600) transition_time 0x590-0x597.7 (8)
|
||||
0x590| 00 00 00 00 27 e2 24 e0| ....'.$.| [62]: "1991-03-16T14:00:00Z" (669132000) transition_time 0x598-0x59f.7 (8)
|
||||
0x5a0|00 00 00 00 28 ed c5 60 |....(..` | [63]: "1991-10-05T14:00:00Z" (686671200) transition_time 0x5a0-0x5a7.7 (8)
|
||||
0x5a0| 00 00 00 00 29 c2 06 e0| ....)...| [64]: "1992-03-14T14:00:00Z" (700581600) transition_time 0x5a8-0x5af.7 (8)
|
||||
0x5b0|00 00 00 00 2a cd a7 60 |....*..` | [65]: "1992-10-03T14:00:00Z" (718120800) transition_time 0x5b0-0x5b7.7 (8)
|
||||
0x5b0| 00 00 00 00 2b ab 23 60| ....+.#`| [66]: "1993-03-20T14:00:00Z" (732636000) transition_time 0x5b8-0x5bf.7 (8)
|
||||
0x5c0|00 00 00 00 2c ad 89 60 |....,..` | [67]: "1993-10-02T14:00:00Z" (749570400) transition_time 0x5c0-0x5c7.7 (8)
|
||||
0x5c0| 00 00 00 00 2d 8b 05 60| ....-..`| [68]: "1994-03-19T14:00:00Z" (764085600) transition_time 0x5c8-0x5cf.7 (8)
|
||||
0x5d0|00 00 00 00 2e 8d 6b 60 |......k` | [69]: "1994-10-01T14:00:00Z" (781020000) transition_time 0x5d0-0x5d7.7 (8)
|
||||
0x5d0| 00 00 00 00 2f 6a e7 60| ..../j.`| [70]: "1995-03-18T14:00:00Z" (795535200) transition_time 0x5d8-0x5df.7 (8)
|
||||
0x5e0|00 00 00 00 30 6d 4d 60 |....0mM` | [71]: "1995-09-30T14:00:00Z" (812469600) transition_time 0x5e0-0x5e7.7 (8)
|
||||
0x5e0| 00 00 00 00 31 4a c9 60| ....1J.`| [72]: "1996-03-16T14:00:00Z" (826984800) transition_time 0x5e8-0x5ef.7 (8)
|
||||
0x5f0|00 00 00 00 32 56 69 e0 |....2Vi. | [73]: "1996-10-05T14:00:00Z" (844524000) transition_time 0x5f0-0x5f7.7 (8)
|
||||
0x5f0| 00 00 00 00 33 2a ab 60| ....3*.`| [74]: "1997-03-15T14:00:00Z" (858434400) transition_time 0x5f8-0x5ff.7 (8)
|
||||
0x600|00 00 00 00 34 36 4b e0 |....46K. | [75]: "1997-10-04T14:00:00Z" (875973600) transition_time 0x600-0x607.7 (8)
|
||||
0x600| 00 00 00 00 35 0a 8d 60| ....5..`| [76]: "1998-03-14T14:00:00Z" (889884000) transition_time 0x608-0x60f.7 (8)
|
||||
0x610|00 00 00 00 36 16 2d e0 |....6.-. | [77]: "1998-10-03T14:00:00Z" (907423200) transition_time 0x610-0x617.7 (8)
|
||||
0x610| 00 00 00 00 36 f3 a9 e0| ....6...| [78]: "1999-03-20T14:00:00Z" (921938400) transition_time 0x618-0x61f.7 (8)
|
||||
0x620|00 00 00 00 37 f6 0f e0 |....7... | [79]: "1999-10-02T14:00:00Z" (938872800) transition_time 0x620-0x627.7 (8)
|
||||
0x620| 00 00 00 00 38 d3 8b e0| ....8...| [80]: "2000-03-18T14:00:00Z" (953388000) transition_time 0x628-0x62f.7 (8)
|
||||
0x630|00 00 00 00 39 d5 f1 e0 |....9... | [81]: "2000-09-30T14:00:00Z" (970322400) transition_time 0x630-0x637.7 (8)
|
||||
0x630| 00 00 00 00 3a b3 6d e0| ....:.m.| [82]: "2001-03-17T14:00:00Z" (984837600) transition_time 0x638-0x63f.7 (8)
|
||||
0x640|00 00 00 00 3b bf 0e 60 |....;..` | [83]: "2001-10-06T14:00:00Z" (1002376800) transition_time 0x640-0x647.7 (8)
|
||||
0x640| 00 00 00 00 3c 93 4f e0| ....<.O.| [84]: "2002-03-16T14:00:00Z" (1016287200) transition_time 0x648-0x64f.7 (8)
|
||||
0x650|00 00 00 00 3d 9e f0 60 |....=..` | [85]: "2002-10-05T14:00:00Z" (1033826400) transition_time 0x650-0x657.7 (8)
|
||||
0x650| 00 00 00 00 3e 73 31 e0| ....>s1.| [86]: "2003-03-15T14:00:00Z" (1047736800) transition_time 0x658-0x65f.7 (8)
|
||||
0x660|00 00 00 00 3f 7e d2 60 |....?~.` | [87]: "2003-10-04T14:00:00Z" (1065276000) transition_time 0x660-0x667.7 (8)
|
||||
0x660| 00 00 00 00 40 5c 4e 60| ....@\N`| [88]: "2004-03-20T14:00:00Z" (1079791200) transition_time 0x668-0x66f.7 (8)
|
||||
0x670|00 00 00 00 41 5e b4 60 |....A^.` | [89]: "2004-10-02T14:00:00Z" (1096725600) transition_time 0x670-0x677.7 (8)
|
||||
0x670| 00 00 00 00 42 3c 30 60| ....B<0`| [90]: "2005-03-19T14:00:00Z" (1111240800) transition_time 0x678-0x67f.7 (8)
|
||||
0x680|00 00 00 00 43 3e 96 60 |....C>.` | [91]: "2005-10-01T14:00:00Z" (1128175200) transition_time 0x680-0x687.7 (8)
|
||||
0x680| 00 00 00 00 44 1c 12 60| ....D..`| [92]: "2006-03-18T14:00:00Z" (1142690400) transition_time 0x688-0x68f.7 (8)
|
||||
0x690|00 00 00 00 45 1e 78 60 |....E.x` | [93]: "2006-09-30T14:00:00Z" (1159624800) transition_time 0x690-0x697.7 (8)
|
||||
0x690| 00 00 00 00 45 fb f4 60| ....E..`| [94]: "2007-03-17T14:00:00Z" (1174140000) transition_time 0x698-0x69f.7 (8)
|
||||
0x6a0|00 00 00 00 46 fe 5a 60 |....F.Z` | [95]: "2007-09-29T14:00:00Z" (1191074400) transition_time 0x6a0-0x6a7.7 (8)
|
||||
0x6a0| 00 00 00 00 47 f7 85 e0| ....G...| [96]: "2008-04-05T14:00:00Z" (1207404000) transition_time 0x6a8-0x6af.7 (8)
|
||||
0x6b0|00 00 00 00 48 de 3c 60 |....H.<` | [97]: "2008-09-27T14:00:00Z" (1222524000) transition_time 0x6b0-0x6b7.7 (8)
|
||||
0x6b0| 00 00 00 00 49 d7 67 e0| ....I.g.| [98]: "2009-04-04T14:00:00Z" (1238853600) transition_time 0x6b8-0x6bf.7 (8)
|
||||
0x6c0|00 00 00 00 4a be 1e 60 |....J..` | [99]: "2009-09-26T14:00:00Z" (1253973600) transition_time 0x6c0-0x6c7.7 (8)
|
||||
0x6c0| 00 00 00 00 4b b7 49 e0| ....K.I.| [100]: "2010-04-03T14:00:00Z" (1270303200) transition_time 0x6c8-0x6cf.7 (8)
|
||||
0x6d0|00 00 00 00 4c 9e 00 60 |....L..` | [101]: "2010-09-25T14:00:00Z" (1285423200) transition_time 0x6d0-0x6d7.7 (8)
|
||||
0x6d0| 00 00 00 00 4d 97 2b e0| ....M.+.| [102]: "2011-04-02T14:00:00Z" (1301752800) transition_time 0x6d8-0x6df.7 (8)
|
||||
0x6e0|00 00 00 00 4e 7d e2 60 |....N}.` | [103]: "2011-09-24T14:00:00Z" (1316872800) transition_time 0x6e0-0x6e7.7 (8)
|
||||
0x6e0| 00 00 00 00 4f 77 0d e0| ....Ow..| [104]: "2012-03-31T14:00:00Z" (1333202400) transition_time 0x6e8-0x6ef.7 (8)
|
||||
0x6f0|00 00 00 00 50 66 fe e0 |....Pf.. | [105]: "2012-09-29T14:00:00Z" (1348927200) transition_time 0x6f0-0x6f7.7 (8)
|
||||
0x6f0| 00 00 00 00 51 60 2a 60| ....Q`*`| [106]: "2013-04-06T14:00:00Z" (1365256800) transition_time 0x6f8-0x6ff.7 (8)
|
||||
0x700|00 00 00 00 52 46 e0 e0 |....RF.. | [107]: "2013-09-28T14:00:00Z" (1380376800) transition_time 0x700-0x707.7 (8)
|
||||
0x700| 00 00 00 00 53 40 0c 60| ....S@.`| [108]: "2014-04-05T14:00:00Z" (1396706400) transition_time 0x708-0x70f.7 (8)
|
||||
0x710|00 00 00 00 54 26 c2 e0 |....T&.. | [109]: "2014-09-27T14:00:00Z" (1411826400) transition_time 0x710-0x717.7 (8)
|
||||
0x710| 00 00 00 00 55 1f ee 60| ....U..`| [110]: "2015-04-04T14:00:00Z" (1428156000) transition_time 0x718-0x71f.7 (8)
|
||||
0x720|00 00 00 00 56 06 a4 e0 |....V... | [111]: "2015-09-26T14:00:00Z" (1443276000) transition_time 0x720-0x727.7 (8)
|
||||
0x720| 00 00 00 00 56 ff d0 60| ....V..`| [112]: "2016-04-02T14:00:00Z" (1459605600) transition_time 0x728-0x72f.7 (8)
|
||||
0x730|00 00 00 00 57 e6 86 e0 |....W... | [113]: "2016-09-24T14:00:00Z" (1474725600) transition_time 0x730-0x737.7 (8)
|
||||
0x730| 00 00 00 00 58 df b2 60| ....X..`| [114]: "2017-04-01T14:00:00Z" (1491055200) transition_time 0x738-0x73f.7 (8)
|
||||
0x740|00 00 00 00 59 c6 68 e0 |....Y.h. | [115]: "2017-09-23T14:00:00Z" (1506175200) transition_time 0x740-0x747.7 (8)
|
||||
0x740| 00 00 00 00 5a bf 94 60| ....Z..`| [116]: "2018-03-31T14:00:00Z" (1522504800) transition_time 0x748-0x74f.7 (8)
|
||||
0x750|00 00 00 00 5b af 85 60 |....[..` | [117]: "2018-09-29T14:00:00Z" (1538229600) transition_time 0x750-0x757.7 (8)
|
||||
0x750| 00 00 00 00 5c a8 b0 e0| ....\...| [118]: "2019-04-06T14:00:00Z" (1554559200) transition_time 0x758-0x75f.7 (8)
|
||||
0x760|00 00 00 00 5d 8f 67 60 |....].g` | [119]: "2019-09-28T14:00:00Z" (1569679200) transition_time 0x760-0x767.7 (8)
|
||||
0x760| 00 00 00 00 5e 88 92 e0| ....^...| [120]: "2020-04-04T14:00:00Z" (1586008800) transition_time 0x768-0x76f.7 (8)
|
||||
0x770|00 00 00 00 5f 6f 49 60 |...._oI` | [121]: "2020-09-26T14:00:00Z" (1601128800) transition_time 0x770-0x777.7 (8)
|
||||
0x770| 00 00 00 00 60 68 74 e0| ....`ht.| [122]: "2021-04-03T14:00:00Z" (1617458400) transition_time 0x778-0x77f.7 (8)
|
||||
0x780|00 00 00 00 61 4f 2b 60 |....aO+` | [123]: "2021-09-25T14:00:00Z" (1632578400) transition_time 0x780-0x787.7 (8)
|
||||
0x780| 00 00 00 00 62 48 56 e0| ....bHV.| [124]: "2022-04-02T14:00:00Z" (1648908000) transition_time 0x788-0x78f.7 (8)
|
||||
0x790|00 00 00 00 63 2f 0d 60 |....c/.` | [125]: "2022-09-24T14:00:00Z" (1664028000) transition_time 0x790-0x797.7 (8)
|
||||
0x790| 00 00 00 00 64 28 38 e0| ....d(8.| [126]: "2023-04-01T14:00:00Z" (1680357600) transition_time 0x798-0x79f.7 (8)
|
||||
0x7a0|00 00 00 00 65 0e ef 60 |....e..` | [127]: "2023-09-23T14:00:00Z" (1695477600) transition_time 0x7a0-0x7a7.7 (8)
|
||||
0x7a0| 00 00 00 00 66 11 55 60| ....f.U`| [128]: "2024-04-06T14:00:00Z" (1712412000) transition_time 0x7a8-0x7af.7 (8)
|
||||
0x7b0|00 00 00 00 66 f8 0b e0 |....f... | [129]: "2024-09-28T14:00:00Z" (1727532000) transition_time 0x7b0-0x7b7.7 (8)
|
||||
0x7b0| 00 00 00 00 67 f1 37 60| ....g.7`| [130]: "2025-04-05T14:00:00Z" (1743861600) transition_time 0x7b8-0x7bf.7 (8)
|
||||
0x7c0|00 00 00 00 68 d7 ed e0 |....h... | [131]: "2025-09-27T14:00:00Z" (1758981600) transition_time 0x7c0-0x7c7.7 (8)
|
||||
0x7c0| 00 00 00 00 69 d1 19 60| ....i..`| [132]: "2026-04-04T14:00:00Z" (1775311200) transition_time 0x7c8-0x7cf.7 (8)
|
||||
0x7d0|00 00 00 00 6a b7 cf e0 |....j... | [133]: "2026-09-26T14:00:00Z" (1790431200) transition_time 0x7d0-0x7d7.7 (8)
|
||||
0x7d0| 00 00 00 00 6b b0 fb 60| ....k..`| [134]: "2027-04-03T14:00:00Z" (1806760800) transition_time 0x7d8-0x7df.7 (8)
|
||||
0x7e0|00 00 00 00 6c 97 b1 e0 |....l... | [135]: "2027-09-25T14:00:00Z" (1821880800) transition_time 0x7e0-0x7e7.7 (8)
|
||||
0x7e0| 00 00 00 00 6d 90 dd 60| ....m..`| [136]: "2028-04-01T14:00:00Z" (1838210400) transition_time 0x7e8-0x7ef.7 (8)
|
||||
0x7f0|00 00 00 00 6e 77 93 e0 |....nw.. | [137]: "2028-09-23T14:00:00Z" (1853330400) transition_time 0x7f0-0x7f7.7 (8)
|
||||
0x7f0| 00 00 00 00 6f 70 bf 60| ....op.`| [138]: "2029-03-31T14:00:00Z" (1869660000) transition_time 0x7f8-0x7ff.7 (8)
|
||||
0x800|00 00 00 00 70 60 b0 60 |....p`.` | [139]: "2029-09-29T14:00:00Z" (1885384800) transition_time 0x800-0x807.7 (8)
|
||||
0x800| 00 00 00 00 71 59 db e0| ....qY..| [140]: "2030-04-06T14:00:00Z" (1901714400) transition_time 0x808-0x80f.7 (8)
|
||||
0x810|00 00 00 00 72 40 92 60 |....r@.` | [141]: "2030-09-28T14:00:00Z" (1916834400) transition_time 0x810-0x817.7 (8)
|
||||
0x810| 00 00 00 00 73 39 bd e0| ....s9..| [142]: "2031-04-05T14:00:00Z" (1933164000) transition_time 0x818-0x81f.7 (8)
|
||||
0x820|00 00 00 00 74 20 74 60 |....t t` | [143]: "2031-09-27T14:00:00Z" (1948284000) transition_time 0x820-0x827.7 (8)
|
||||
0x820| 00 00 00 00 75 19 9f e0| ....u...| [144]: "2032-04-03T14:00:00Z" (1964613600) transition_time 0x828-0x82f.7 (8)
|
||||
0x830|00 00 00 00 76 00 56 60 |....v.V` | [145]: "2032-09-25T14:00:00Z" (1979733600) transition_time 0x830-0x837.7 (8)
|
||||
0x830| 00 00 00 00 76 f9 81 e0| ....v...| [146]: "2033-04-02T14:00:00Z" (1996063200) transition_time 0x838-0x83f.7 (8)
|
||||
0x840|00 00 00 00 77 e0 38 60 |....w.8` | [147]: "2033-09-24T14:00:00Z" (2011183200) transition_time 0x840-0x847.7 (8)
|
||||
0x840| 00 00 00 00 78 d9 63 e0| ....x.c.| [148]: "2034-04-01T14:00:00Z" (2027512800) transition_time 0x848-0x84f.7 (8)
|
||||
0x850|00 00 00 00 79 c0 1a 60 |....y..` | [149]: "2034-09-23T14:00:00Z" (2042632800) transition_time 0x850-0x857.7 (8)
|
||||
0x850| 00 00 00 00 7a b9 45 e0| ....z.E.| [150]: "2035-03-31T14:00:00Z" (2058962400) transition_time 0x858-0x85f.7 (8)
|
||||
0x860|00 00 00 00 7b a9 36 e0 |....{.6. | [151]: "2035-09-29T14:00:00Z" (2074687200) transition_time 0x860-0x867.7 (8)
|
||||
0x860| 00 00 00 00 7c a2 62 60| ....|.b`| [152]: "2036-04-05T14:00:00Z" (2091016800) transition_time 0x868-0x86f.7 (8)
|
||||
0x870|00 00 00 00 7d 89 18 e0 |....}... | [153]: "2036-09-27T14:00:00Z" (2106136800) transition_time 0x870-0x877.7 (8)
|
||||
0x870| 00 00 00 00 7e 82 44 60| ....~.D`| [154]: "2037-04-04T14:00:00Z" (2122466400) transition_time 0x878-0x87f.7 (8)
|
||||
0x880|00 00 00 00 7f 68 fa e0 |.....h.. | [155]: "2037-09-26T14:00:00Z" (2137586400) transition_time 0x880-0x887.7 (8)
|
||||
| | | transition_types[0:156]: 0x888-0x923.7 (156)
|
||||
0x880| 02 | . | [0]: 2 transition_type 0x888-0x888.7 (1)
|
||||
0x880| 01 | . | [1]: 1 transition_type 0x889-0x889.7 (1)
|
||||
0x880| 02 | . | [2]: 2 transition_type 0x88a-0x88a.7 (1)
|
||||
0x880| 03 | . | [3]: 3 transition_type 0x88b-0x88b.7 (1)
|
||||
0x880| 02 | . | [4]: 2 transition_type 0x88c-0x88c.7 (1)
|
||||
0x880| 03 | . | [5]: 3 transition_type 0x88d-0x88d.7 (1)
|
||||
0x880| 02 | . | [6]: 2 transition_type 0x88e-0x88e.7 (1)
|
||||
0x880| 03| .| [7]: 3 transition_type 0x88f-0x88f.7 (1)
|
||||
0x890|02 |. | [8]: 2 transition_type 0x890-0x890.7 (1)
|
||||
0x890| 03 | . | [9]: 3 transition_type 0x891-0x891.7 (1)
|
||||
0x890| 02 | . | [10]: 2 transition_type 0x892-0x892.7 (1)
|
||||
0x890| 03 | . | [11]: 3 transition_type 0x893-0x893.7 (1)
|
||||
0x890| 02 | . | [12]: 2 transition_type 0x894-0x894.7 (1)
|
||||
0x890| 03 | . | [13]: 3 transition_type 0x895-0x895.7 (1)
|
||||
0x890| 02 | . | [14]: 2 transition_type 0x896-0x896.7 (1)
|
||||
0x890| 03 | . | [15]: 3 transition_type 0x897-0x897.7 (1)
|
||||
0x890| 02 | . | [16]: 2 transition_type 0x898-0x898.7 (1)
|
||||
0x890| 03 | . | [17]: 3 transition_type 0x899-0x899.7 (1)
|
||||
0x890| 02 | . | [18]: 2 transition_type 0x89a-0x89a.7 (1)
|
||||
0x890| 03 | . | [19]: 3 transition_type 0x89b-0x89b.7 (1)
|
||||
0x890| 02 | . | [20]: 2 transition_type 0x89c-0x89c.7 (1)
|
||||
0x890| 03 | . | [21]: 3 transition_type 0x89d-0x89d.7 (1)
|
||||
0x890| 02 | . | [22]: 2 transition_type 0x89e-0x89e.7 (1)
|
||||
0x890| 03| .| [23]: 3 transition_type 0x89f-0x89f.7 (1)
|
||||
0x8a0|02 |. | [24]: 2 transition_type 0x8a0-0x8a0.7 (1)
|
||||
0x8a0| 03 | . | [25]: 3 transition_type 0x8a1-0x8a1.7 (1)
|
||||
0x8a0| 02 | . | [26]: 2 transition_type 0x8a2-0x8a2.7 (1)
|
||||
0x8a0| 03 | . | [27]: 3 transition_type 0x8a3-0x8a3.7 (1)
|
||||
0x8a0| 06 | . | [28]: 6 transition_type 0x8a4-0x8a4.7 (1)
|
||||
0x8a0| 04 | . | [29]: 4 transition_type 0x8a5-0x8a5.7 (1)
|
||||
0x8a0| 05 | . | [30]: 5 transition_type 0x8a6-0x8a6.7 (1)
|
||||
0x8a0| 04 | . | [31]: 4 transition_type 0x8a7-0x8a7.7 (1)
|
||||
0x8a0| 05 | . | [32]: 5 transition_type 0x8a8-0x8a8.7 (1)
|
||||
0x8a0| 04 | . | [33]: 4 transition_type 0x8a9-0x8a9.7 (1)
|
||||
0x8a0| 05 | . | [34]: 5 transition_type 0x8aa-0x8aa.7 (1)
|
||||
0x8a0| 04 | . | [35]: 4 transition_type 0x8ab-0x8ab.7 (1)
|
||||
0x8a0| 05 | . | [36]: 5 transition_type 0x8ac-0x8ac.7 (1)
|
||||
0x8a0| 04 | . | [37]: 4 transition_type 0x8ad-0x8ad.7 (1)
|
||||
0x8a0| 05 | . | [38]: 5 transition_type 0x8ae-0x8ae.7 (1)
|
||||
0x8a0| 04| .| [39]: 4 transition_type 0x8af-0x8af.7 (1)
|
||||
0x8b0|05 |. | [40]: 5 transition_type 0x8b0-0x8b0.7 (1)
|
||||
0x8b0| 04 | . | [41]: 4 transition_type 0x8b1-0x8b1.7 (1)
|
||||
0x8b0| 05 | . | [42]: 5 transition_type 0x8b2-0x8b2.7 (1)
|
||||
0x8b0| 04 | . | [43]: 4 transition_type 0x8b3-0x8b3.7 (1)
|
||||
0x8b0| 05 | . | [44]: 5 transition_type 0x8b4-0x8b4.7 (1)
|
||||
0x8b0| 04 | . | [45]: 4 transition_type 0x8b5-0x8b5.7 (1)
|
||||
0x8b0| 05 | . | [46]: 5 transition_type 0x8b6-0x8b6.7 (1)
|
||||
0x8b0| 04 | . | [47]: 4 transition_type 0x8b7-0x8b7.7 (1)
|
||||
0x8b0| 05 | . | [48]: 5 transition_type 0x8b8-0x8b8.7 (1)
|
||||
0x8b0| 04 | . | [49]: 4 transition_type 0x8b9-0x8b9.7 (1)
|
||||
0x8b0| 05 | . | [50]: 5 transition_type 0x8ba-0x8ba.7 (1)
|
||||
0x8b0| 04 | . | [51]: 4 transition_type 0x8bb-0x8bb.7 (1)
|
||||
0x8b0| 05 | . | [52]: 5 transition_type 0x8bc-0x8bc.7 (1)
|
||||
0x8b0| 04 | . | [53]: 4 transition_type 0x8bd-0x8bd.7 (1)
|
||||
0x8b0| 05 | . | [54]: 5 transition_type 0x8be-0x8be.7 (1)
|
||||
0x8b0| 04| .| [55]: 4 transition_type 0x8bf-0x8bf.7 (1)
|
||||
0x8c0|05 |. | [56]: 5 transition_type 0x8c0-0x8c0.7 (1)
|
||||
0x8c0| 04 | . | [57]: 4 transition_type 0x8c1-0x8c1.7 (1)
|
||||
0x8c0| 05 | . | [58]: 5 transition_type 0x8c2-0x8c2.7 (1)
|
||||
0x8c0| 04 | . | [59]: 4 transition_type 0x8c3-0x8c3.7 (1)
|
||||
0x8c0| 05 | . | [60]: 5 transition_type 0x8c4-0x8c4.7 (1)
|
||||
0x8c0| 04 | . | [61]: 4 transition_type 0x8c5-0x8c5.7 (1)
|
||||
0x8c0| 05 | . | [62]: 5 transition_type 0x8c6-0x8c6.7 (1)
|
||||
0x8c0| 04 | . | [63]: 4 transition_type 0x8c7-0x8c7.7 (1)
|
||||
0x8c0| 05 | . | [64]: 5 transition_type 0x8c8-0x8c8.7 (1)
|
||||
0x8c0| 04 | . | [65]: 4 transition_type 0x8c9-0x8c9.7 (1)
|
||||
0x8c0| 05 | . | [66]: 5 transition_type 0x8ca-0x8ca.7 (1)
|
||||
0x8c0| 04 | . | [67]: 4 transition_type 0x8cb-0x8cb.7 (1)
|
||||
0x8c0| 05 | . | [68]: 5 transition_type 0x8cc-0x8cc.7 (1)
|
||||
0x8c0| 04 | . | [69]: 4 transition_type 0x8cd-0x8cd.7 (1)
|
||||
0x8c0| 05 | . | [70]: 5 transition_type 0x8ce-0x8ce.7 (1)
|
||||
0x8c0| 04| .| [71]: 4 transition_type 0x8cf-0x8cf.7 (1)
|
||||
0x8d0|05 |. | [72]: 5 transition_type 0x8d0-0x8d0.7 (1)
|
||||
0x8d0| 04 | . | [73]: 4 transition_type 0x8d1-0x8d1.7 (1)
|
||||
0x8d0| 05 | . | [74]: 5 transition_type 0x8d2-0x8d2.7 (1)
|
||||
0x8d0| 04 | . | [75]: 4 transition_type 0x8d3-0x8d3.7 (1)
|
||||
0x8d0| 05 | . | [76]: 5 transition_type 0x8d4-0x8d4.7 (1)
|
||||
0x8d0| 04 | . | [77]: 4 transition_type 0x8d5-0x8d5.7 (1)
|
||||
0x8d0| 05 | . | [78]: 5 transition_type 0x8d6-0x8d6.7 (1)
|
||||
0x8d0| 04 | . | [79]: 4 transition_type 0x8d7-0x8d7.7 (1)
|
||||
0x8d0| 05 | . | [80]: 5 transition_type 0x8d8-0x8d8.7 (1)
|
||||
0x8d0| 04 | . | [81]: 4 transition_type 0x8d9-0x8d9.7 (1)
|
||||
0x8d0| 05 | . | [82]: 5 transition_type 0x8da-0x8da.7 (1)
|
||||
0x8d0| 04 | . | [83]: 4 transition_type 0x8db-0x8db.7 (1)
|
||||
0x8d0| 05 | . | [84]: 5 transition_type 0x8dc-0x8dc.7 (1)
|
||||
0x8d0| 04 | . | [85]: 4 transition_type 0x8dd-0x8dd.7 (1)
|
||||
0x8d0| 05 | . | [86]: 5 transition_type 0x8de-0x8de.7 (1)
|
||||
0x8d0| 04| .| [87]: 4 transition_type 0x8df-0x8df.7 (1)
|
||||
0x8e0|05 |. | [88]: 5 transition_type 0x8e0-0x8e0.7 (1)
|
||||
0x8e0| 04 | . | [89]: 4 transition_type 0x8e1-0x8e1.7 (1)
|
||||
0x8e0| 05 | . | [90]: 5 transition_type 0x8e2-0x8e2.7 (1)
|
||||
0x8e0| 04 | . | [91]: 4 transition_type 0x8e3-0x8e3.7 (1)
|
||||
0x8e0| 05 | . | [92]: 5 transition_type 0x8e4-0x8e4.7 (1)
|
||||
0x8e0| 04 | . | [93]: 4 transition_type 0x8e5-0x8e5.7 (1)
|
||||
0x8e0| 05 | . | [94]: 5 transition_type 0x8e6-0x8e6.7 (1)
|
||||
0x8e0| 04 | . | [95]: 4 transition_type 0x8e7-0x8e7.7 (1)
|
||||
0x8e0| 05 | . | [96]: 5 transition_type 0x8e8-0x8e8.7 (1)
|
||||
0x8e0| 04 | . | [97]: 4 transition_type 0x8e9-0x8e9.7 (1)
|
||||
0x8e0| 05 | . | [98]: 5 transition_type 0x8ea-0x8ea.7 (1)
|
||||
0x8e0| 04 | . | [99]: 4 transition_type 0x8eb-0x8eb.7 (1)
|
||||
0x8e0| 05 | . | [100]: 5 transition_type 0x8ec-0x8ec.7 (1)
|
||||
0x8e0| 04 | . | [101]: 4 transition_type 0x8ed-0x8ed.7 (1)
|
||||
0x8e0| 05 | . | [102]: 5 transition_type 0x8ee-0x8ee.7 (1)
|
||||
0x8e0| 04| .| [103]: 4 transition_type 0x8ef-0x8ef.7 (1)
|
||||
0x8f0|05 |. | [104]: 5 transition_type 0x8f0-0x8f0.7 (1)
|
||||
0x8f0| 04 | . | [105]: 4 transition_type 0x8f1-0x8f1.7 (1)
|
||||
0x8f0| 05 | . | [106]: 5 transition_type 0x8f2-0x8f2.7 (1)
|
||||
0x8f0| 04 | . | [107]: 4 transition_type 0x8f3-0x8f3.7 (1)
|
||||
0x8f0| 05 | . | [108]: 5 transition_type 0x8f4-0x8f4.7 (1)
|
||||
0x8f0| 04 | . | [109]: 4 transition_type 0x8f5-0x8f5.7 (1)
|
||||
0x8f0| 05 | . | [110]: 5 transition_type 0x8f6-0x8f6.7 (1)
|
||||
0x8f0| 04 | . | [111]: 4 transition_type 0x8f7-0x8f7.7 (1)
|
||||
0x8f0| 05 | . | [112]: 5 transition_type 0x8f8-0x8f8.7 (1)
|
||||
0x8f0| 04 | . | [113]: 4 transition_type 0x8f9-0x8f9.7 (1)
|
||||
0x8f0| 05 | . | [114]: 5 transition_type 0x8fa-0x8fa.7 (1)
|
||||
0x8f0| 04 | . | [115]: 4 transition_type 0x8fb-0x8fb.7 (1)
|
||||
0x8f0| 05 | . | [116]: 5 transition_type 0x8fc-0x8fc.7 (1)
|
||||
0x8f0| 04 | . | [117]: 4 transition_type 0x8fd-0x8fd.7 (1)
|
||||
0x8f0| 05 | . | [118]: 5 transition_type 0x8fe-0x8fe.7 (1)
|
||||
0x8f0| 04| .| [119]: 4 transition_type 0x8ff-0x8ff.7 (1)
|
||||
0x900|05 |. | [120]: 5 transition_type 0x900-0x900.7 (1)
|
||||
0x900| 04 | . | [121]: 4 transition_type 0x901-0x901.7 (1)
|
||||
0x900| 05 | . | [122]: 5 transition_type 0x902-0x902.7 (1)
|
||||
0x900| 04 | . | [123]: 4 transition_type 0x903-0x903.7 (1)
|
||||
0x900| 05 | . | [124]: 5 transition_type 0x904-0x904.7 (1)
|
||||
0x900| 04 | . | [125]: 4 transition_type 0x905-0x905.7 (1)
|
||||
0x900| 05 | . | [126]: 5 transition_type 0x906-0x906.7 (1)
|
||||
0x900| 04 | . | [127]: 4 transition_type 0x907-0x907.7 (1)
|
||||
0x900| 05 | . | [128]: 5 transition_type 0x908-0x908.7 (1)
|
||||
0x900| 04 | . | [129]: 4 transition_type 0x909-0x909.7 (1)
|
||||
0x900| 05 | . | [130]: 5 transition_type 0x90a-0x90a.7 (1)
|
||||
0x900| 04 | . | [131]: 4 transition_type 0x90b-0x90b.7 (1)
|
||||
0x900| 05 | . | [132]: 5 transition_type 0x90c-0x90c.7 (1)
|
||||
0x900| 04 | . | [133]: 4 transition_type 0x90d-0x90d.7 (1)
|
||||
0x900| 05 | . | [134]: 5 transition_type 0x90e-0x90e.7 (1)
|
||||
0x900| 04| .| [135]: 4 transition_type 0x90f-0x90f.7 (1)
|
||||
0x910|05 |. | [136]: 5 transition_type 0x910-0x910.7 (1)
|
||||
0x910| 04 | . | [137]: 4 transition_type 0x911-0x911.7 (1)
|
||||
0x910| 05 | . | [138]: 5 transition_type 0x912-0x912.7 (1)
|
||||
0x910| 04 | . | [139]: 4 transition_type 0x913-0x913.7 (1)
|
||||
0x910| 05 | . | [140]: 5 transition_type 0x914-0x914.7 (1)
|
||||
0x910| 04 | . | [141]: 4 transition_type 0x915-0x915.7 (1)
|
||||
0x910| 05 | . | [142]: 5 transition_type 0x916-0x916.7 (1)
|
||||
0x910| 04 | . | [143]: 4 transition_type 0x917-0x917.7 (1)
|
||||
0x910| 05 | . | [144]: 5 transition_type 0x918-0x918.7 (1)
|
||||
0x910| 04 | . | [145]: 4 transition_type 0x919-0x919.7 (1)
|
||||
0x910| 05 | . | [146]: 5 transition_type 0x91a-0x91a.7 (1)
|
||||
0x910| 04 | . | [147]: 4 transition_type 0x91b-0x91b.7 (1)
|
||||
0x910| 05 | . | [148]: 5 transition_type 0x91c-0x91c.7 (1)
|
||||
0x910| 04 | . | [149]: 4 transition_type 0x91d-0x91d.7 (1)
|
||||
0x910| 05 | . | [150]: 5 transition_type 0x91e-0x91e.7 (1)
|
||||
0x910| 04| .| [151]: 4 transition_type 0x91f-0x91f.7 (1)
|
||||
0x920|05 |. | [152]: 5 transition_type 0x920-0x920.7 (1)
|
||||
0x920| 04 | . | [153]: 4 transition_type 0x921-0x921.7 (1)
|
||||
0x920| 05 | . | [154]: 5 transition_type 0x922-0x922.7 (1)
|
||||
0x920| 04 | . | [155]: 4 transition_type 0x923-0x923.7 (1)
|
||||
| | | local_time_type_records[0:7]: 0x924-0x94d.7 (42)
|
||||
| | | [0]{}: local_time_type 0x924-0x929.7 (6)
|
||||
0x920| 00 00 a3 d8 | .... | utoff: 41944 (valid) 0x924-0x927.7 (4)
|
||||
0x920| 00 | . | dst: 0 (valid) 0x928-0x928.7 (1)
|
||||
0x920| 00 | . | idx: 0 (valid) 0x929-0x929.7 (1)
|
||||
| | | [1]{}: local_time_type 0x92a-0x92f.7 (6)
|
||||
0x920| 00 00 af c8 | .... | utoff: 45000 (valid) 0x92a-0x92d.7 (4)
|
||||
0x920| 01 | . | dst: 1 (valid) 0x92e-0x92e.7 (1)
|
||||
0x920| 04| .| idx: 4 (valid) 0x92f-0x92f.7 (1)
|
||||
| | | [2]{}: local_time_type 0x930-0x935.7 (6)
|
||||
0x930|00 00 a1 b8 |.... | utoff: 41400 (valid) 0x930-0x933.7 (4)
|
||||
0x930| 00 | . | dst: 0 (valid) 0x934-0x934.7 (1)
|
||||
0x930| 09 | . | idx: 9 (valid) 0x935-0x935.7 (1)
|
||||
| | | [3]{}: local_time_type 0x936-0x93b.7 (6)
|
||||
0x930| 00 00 a8 c0 | .... | utoff: 43200 (valid) 0x936-0x939.7 (4)
|
||||
0x930| 01 | . | dst: 1 (valid) 0x93a-0x93a.7 (1)
|
||||
0x930| 04 | . | idx: 4 (valid) 0x93b-0x93b.7 (1)
|
||||
| | | [4]{}: local_time_type 0x93c-0x941.7 (6)
|
||||
0x930| 00 00 b6 d0| ....| utoff: 46800 (valid) 0x93c-0x93f.7 (4)
|
||||
0x940|01 |. | dst: 1 (valid) 0x940-0x940.7 (1)
|
||||
0x940| 0e | . | idx: 14 (valid) 0x941-0x941.7 (1)
|
||||
| | | [5]{}: local_time_type 0x942-0x947.7 (6)
|
||||
0x940| 00 00 a8 c0 | .... | utoff: 43200 (valid) 0x942-0x945.7 (4)
|
||||
0x940| 00 | . | dst: 0 (valid) 0x946-0x946.7 (1)
|
||||
0x940| 04 | . | idx: 4 (valid) 0x947-0x947.7 (1)
|
||||
| | | [6]{}: local_time_type 0x948-0x94d.7 (6)
|
||||
0x940| 00 00 a8 c0 | .... | utoff: 43200 (valid) 0x948-0x94b.7 (4)
|
||||
0x940| 00 | . | dst: 0 (valid) 0x94c-0x94c.7 (1)
|
||||
0x940| 04 | . | idx: 4 (valid) 0x94d-0x94d.7 (1)
|
||||
| | | time_zone_designations[0:4]: 0x94e-0x960.7 (19)
|
||||
0x940| 4c 4d| LM| [0]: "LMT" time_zone_designation 0x94e-0x951.7 (4)
|
||||
0x950|54 00 |T. |
|
||||
0x950| 4e 5a 53 54 00 | NZST. | [1]: "NZST" time_zone_designation 0x952-0x956.7 (5)
|
||||
0x950| 4e 5a 4d 54 00 | NZMT. | [2]: "NZMT" time_zone_designation 0x957-0x95b.7 (5)
|
||||
0x950| 4e 5a 44 54| NZDT| [3]: "NZDT" time_zone_designation 0x95c-0x960.7 (5)
|
||||
0x960|00 |. |
|
||||
| | | leap_second_records[0:0]: 0x961-NA (0)
|
||||
| | | standard_wall_indicators[0:7]: 0x961-0x967.7 (7)
|
||||
0x960| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x961-0x961.7 (1)
|
||||
0x960| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x962-0x962.7 (1)
|
||||
0x960| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x963-0x963.7 (1)
|
||||
0x960| 00 | . | [3]: 0 standard_wall_indicator (valid) 0x964-0x964.7 (1)
|
||||
0x960| 01 | . | [4]: 1 standard_wall_indicator (valid) 0x965-0x965.7 (1)
|
||||
0x960| 01 | . | [5]: 1 standard_wall_indicator (valid) 0x966-0x966.7 (1)
|
||||
0x960| 00 | . | [6]: 0 standard_wall_indicator (valid) 0x967-0x967.7 (1)
|
||||
| | | ut_local_indicators[0:0]: 0x968-NA (0)
|
||||
| | | footer{}: 0x968-0x984.7 (29)
|
||||
0x960| 0a | . | nl1: 10 (valid) 0x968-0x968.7 (1)
|
||||
0x960| 4e 5a 53 54 2d 31 32| NZST-12| tz_string: "NZST-12NZDT,M9.5.0,M4.1.0/3" 0x969-0x983.7 (27)
|
||||
0x970|4e 5a 44 54 2c 4d 39 2e 35 2e 30 2c 4d 34 2e 31|NZDT,M9.5.0,M4.1|
|
||||
0x980|2e 30 2f 33 |.0/3 |
|
||||
0x980| 0a| | .| | nl2: 10 (valid) 0x984-0x984.7 (1)
|
BIN
format/tzif/testdata/Azores
vendored
Normal file
BIN
format/tzif/testdata/Azores
vendored
Normal file
Binary file not shown.
1279
format/tzif/testdata/Azores.fqtest
vendored
Normal file
1279
format/tzif/testdata/Azores.fqtest
vendored
Normal file
File diff suppressed because it is too large
Load Diff
BIN
format/tzif/testdata/Baghdad
vendored
Normal file
BIN
format/tzif/testdata/Baghdad
vendored
Normal file
Binary file not shown.
547
format/tzif/testdata/Baghdad.fqtest
vendored
Normal file
547
format/tzif/testdata/Baghdad.fqtest
vendored
Normal file
@ -0,0 +1,547 @@
|
||||
$ fq -d tzif dv Baghdad
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: Baghdad (tzif) 0x0-0x5eb.7 (1516)
|
||||
| | | v1header{}: 0x0-0x2b.7 (44)
|
||||
0x000|54 5a 69 66 |TZif | magic: 0x545a6966 (valid) 0x0-0x3.7 (4)
|
||||
0x000| 32 | 2 | ver: "2" (0x32) (valid) 0x4-0x4.7 (1)
|
||||
0x000| 00 00 00 00 00 00 00 00 00 00 00| ...........| reserved: raw bits 0x5-0x13.7 (15)
|
||||
0x010|00 00 00 00 |.... |
|
||||
0x010| 00 00 00 00 | .... | isutcnt: 0 0x14-0x17.7 (4)
|
||||
0x010| 00 00 00 06 | .... | isstdcnt: 6 0x18-0x1b.7 (4)
|
||||
0x010| 00 00 00 1b| ....| leapcnt: 27 0x1c-0x1f.7 (4)
|
||||
0x020|00 00 00 37 |...7 | timecnt: 55 0x20-0x23.7 (4)
|
||||
0x020| 00 00 00 06 | .... | typecnt: 6 0x24-0x27.7 (4)
|
||||
0x020| 00 00 00 10 | .... | charcnt: 16 0x28-0x2b.7 (4)
|
||||
| | | v1datablock{}: 0x2c-0x250.7 (549)
|
||||
| | | transition_times[0:55]: 0x2c-0x107.7 (220)
|
||||
0x020| 80 00 00 00| ....| [0]: "1901-12-13T20:45:52Z" (-2147483648) transition_time 0x2c-0x2f.7 (4)
|
||||
0x030|9e 30 3c e0 |.0<. | [1]: "1917-12-31T21:02:24Z" (-1641005856) transition_time 0x30-0x33.7 (4)
|
||||
0x030| 17 30 68 5a | .0hZ | [2]: "1982-04-30T21:00:10Z" (389048410) transition_time 0x34-0x37.7 (4)
|
||||
0x030| 17 fa 0f cb | .... | [3]: "1982-09-30T20:00:11Z" (402264011) transition_time 0x38-0x3b.7 (4)
|
||||
0x030| 18 e8 bd 5b| ...[| [4]: "1983-03-30T21:00:11Z" (417906011) transition_time 0x3c-0x3f.7 (4)
|
||||
0x040|19 db 43 4c |..CL | [5]: "1983-09-30T20:00:12Z" (433800012) transition_time 0x40-0x43.7 (4)
|
||||
0x040| 1a cc 93 dc | .... | [6]: "1984-03-31T21:00:12Z" (449614812) transition_time 0x44-0x47.7 (4)
|
||||
0x040| 1b bd c8 4c | ...L | [7]: "1984-09-30T20:00:12Z" (465422412) transition_time 0x48-0x4b.7 (4)
|
||||
0x040| 1c ad c7 5c| ...\| [8]: "1985-03-31T21:00:12Z" (481150812) transition_time 0x4c-0x4f.7 (4)
|
||||
0x050|1d 9c 74 ed |..t. | [9]: "1985-09-28T22:00:13Z" (496792813) transition_time 0x50-0x53.7 (4)
|
||||
0x050| 1e 8c 65 ed | ..e. | [10]: "1986-03-29T22:00:13Z" (512517613) transition_time 0x54-0x57.7 (4)
|
||||
0x050| 1f 7c 56 ed | .|V. | [11]: "1986-09-27T22:00:13Z" (528242413) transition_time 0x58-0x5b.7 (4)
|
||||
0x050| 20 6c 47 ed| lG.| [12]: "1987-03-28T22:00:13Z" (543967213) transition_time 0x5c-0x5f.7 (4)
|
||||
0x060|21 5c 38 ed |!\8. | [13]: "1987-09-26T22:00:13Z" (559692013) transition_time 0x60-0x63.7 (4)
|
||||
0x060| 22 4c 29 ee | "L). | [14]: "1988-03-26T22:00:14Z" (575416814) transition_time 0x64-0x67.7 (4)
|
||||
0x060| 23 3c 1a ee | #<.. | [15]: "1988-09-24T22:00:14Z" (591141614) transition_time 0x68-0x6b.7 (4)
|
||||
0x060| 24 2c 0b ee| $,..| [16]: "1989-03-25T22:00:14Z" (606866414) transition_time 0x6c-0x6f.7 (4)
|
||||
0x070|25 1b fc ee |%... | [17]: "1989-09-23T22:00:14Z" (622591214) transition_time 0x70-0x73.7 (4)
|
||||
0x070| 26 0b ed ef | &... | [18]: "1990-03-24T22:00:15Z" (638316015) transition_time 0x74-0x77.7 (4)
|
||||
0x070| 27 05 19 6f | '..o | [19]: "1990-09-29T22:00:15Z" (654645615) transition_time 0x78-0x7b.7 (4)
|
||||
0x070| 27 f6 78 10| '.x.| [20]: "1991-04-01T00:00:16Z" (670464016) transition_time 0x7c-0x7f.7 (4)
|
||||
0x080|28 e7 ba 90 |(... | [21]: "1991-10-01T00:00:16Z" (686275216) transition_time 0x80-0x83.7 (4)
|
||||
0x080| 29 d8 fd 10 | )... | [22]: "1992-04-01T00:00:16Z" (702086416) transition_time 0x84-0x87.7 (4)
|
||||
0x080| 2a ca 3f 91 | *.?. | [23]: "1992-10-01T00:00:17Z" (717897617) transition_time 0x88-0x8b.7 (4)
|
||||
0x080| 2b ba 30 91| +.0.| [24]: "1993-04-01T00:00:17Z" (733622417) transition_time 0x8c-0x8f.7 (4)
|
||||
0x090|2c ab 73 12 |,.s. | [25]: "1993-10-01T00:00:18Z" (749433618) transition_time 0x90-0x93.7 (4)
|
||||
0x090| 2d 9b 64 12 | -.d. | [26]: "1994-04-01T00:00:18Z" (765158418) transition_time 0x94-0x97.7 (4)
|
||||
0x090| 2e 8c a6 93 | .... | [27]: "1994-10-01T00:00:19Z" (780969619) transition_time 0x98-0x9b.7 (4)
|
||||
0x090| 2f 7c 97 93| /|..| [28]: "1995-04-01T00:00:19Z" (796694419) transition_time 0x9c-0x9f.7 (4)
|
||||
0x0a0|30 6d da 13 |0m.. | [29]: "1995-10-01T00:00:19Z" (812505619) transition_time 0xa0-0xa3.7 (4)
|
||||
0x0a0| 31 5f 1c 94 | 1_.. | [30]: "1996-04-01T00:00:20Z" (828316820) transition_time 0xa4-0xa7.7 (4)
|
||||
0x0a0| 32 50 5f 14 | 2P_. | [31]: "1996-10-01T00:00:20Z" (844128020) transition_time 0xa8-0xab.7 (4)
|
||||
0x0a0| 33 40 50 14| 3@P.| [32]: "1997-04-01T00:00:20Z" (859852820) transition_time 0xac-0xaf.7 (4)
|
||||
0x0b0|34 31 92 95 |41.. | [33]: "1997-10-01T00:00:21Z" (875664021) transition_time 0xb0-0xb3.7 (4)
|
||||
0x0b0| 35 21 83 95 | 5!.. | [34]: "1998-04-01T00:00:21Z" (891388821) transition_time 0xb4-0xb7.7 (4)
|
||||
0x0b0| 36 12 c6 15 | 6... | [35]: "1998-10-01T00:00:21Z" (907200021) transition_time 0xb8-0xbb.7 (4)
|
||||
0x0b0| 37 02 b7 16| 7...| [36]: "1999-04-01T00:00:22Z" (922924822) transition_time 0xbc-0xbf.7 (4)
|
||||
0x0c0|37 f3 f9 96 |7... | [37]: "1999-10-01T00:00:22Z" (938736022) transition_time 0xc0-0xc3.7 (4)
|
||||
0x0c0| 38 e5 3c 16 | 8.<. | [38]: "2000-04-01T00:00:22Z" (954547222) transition_time 0xc4-0xc7.7 (4)
|
||||
0x0c0| 39 d6 7e 96 | 9.~. | [39]: "2000-10-01T00:00:22Z" (970358422) transition_time 0xc8-0xcb.7 (4)
|
||||
0x0c0| 3a c6 6f 96| :.o.| [40]: "2001-04-01T00:00:22Z" (986083222) transition_time 0xcc-0xcf.7 (4)
|
||||
0x0d0|3b b7 b2 16 |;... | [41]: "2001-10-01T00:00:22Z" (1001894422) transition_time 0xd0-0xd3.7 (4)
|
||||
0x0d0| 3c a7 a3 16 | <... | [42]: "2002-04-01T00:00:22Z" (1017619222) transition_time 0xd4-0xd7.7 (4)
|
||||
0x0d0| 3d 98 e5 96 | =... | [43]: "2002-10-01T00:00:22Z" (1033430422) transition_time 0xd8-0xdb.7 (4)
|
||||
0x0d0| 3e 88 d6 96| >...| [44]: "2003-04-01T00:00:22Z" (1049155222) transition_time 0xdc-0xdf.7 (4)
|
||||
0x0e0|3f 7a 19 16 |?z.. | [45]: "2003-10-01T00:00:22Z" (1064966422) transition_time 0xe0-0xe3.7 (4)
|
||||
0x0e0| 40 6b 5b 96 | @k[. | [46]: "2004-04-01T00:00:22Z" (1080777622) transition_time 0xe4-0xe7.7 (4)
|
||||
0x0e0| 41 5c 9e 16 | A\.. | [47]: "2004-10-01T00:00:22Z" (1096588822) transition_time 0xe8-0xeb.7 (4)
|
||||
0x0e0| 42 4c 8f 16| BL..| [48]: "2005-04-01T00:00:22Z" (1112313622) transition_time 0xec-0xef.7 (4)
|
||||
0x0f0|43 3d d1 96 |C=.. | [49]: "2005-10-01T00:00:22Z" (1128124822) transition_time 0xf0-0xf3.7 (4)
|
||||
0x0f0| 44 2d c2 97 | D-.. | [50]: "2006-04-01T00:00:23Z" (1143849623) transition_time 0xf4-0xf7.7 (4)
|
||||
0x0f0| 45 1f 05 17 | E... | [51]: "2006-10-01T00:00:23Z" (1159660823) transition_time 0xf8-0xfb.7 (4)
|
||||
0x0f0| 46 0e f6 17| F...| [52]: "2007-04-01T00:00:23Z" (1175385623) transition_time 0xfc-0xff.7 (4)
|
||||
0x100|47 00 38 97 |G.8. | [53]: "2007-10-01T00:00:23Z" (1191196823) transition_time 0x100-0x103.7 (4)
|
||||
0x100| 64 9b 78 1b | d.x. | [54]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x104-0x107.7 (4)
|
||||
| | | transition_types[0:55]: 0x108-0x13e.7 (55)
|
||||
0x100| 01 | . | [0]: 1 transition_type 0x108-0x108.7 (1)
|
||||
0x100| 02 | . | [1]: 2 transition_type 0x109-0x109.7 (1)
|
||||
0x100| 03 | . | [2]: 3 transition_type 0x10a-0x10a.7 (1)
|
||||
0x100| 02 | . | [3]: 2 transition_type 0x10b-0x10b.7 (1)
|
||||
0x100| 03 | . | [4]: 3 transition_type 0x10c-0x10c.7 (1)
|
||||
0x100| 02 | . | [5]: 2 transition_type 0x10d-0x10d.7 (1)
|
||||
0x100| 03 | . | [6]: 3 transition_type 0x10e-0x10e.7 (1)
|
||||
0x100| 02| .| [7]: 2 transition_type 0x10f-0x10f.7 (1)
|
||||
0x110|03 |. | [8]: 3 transition_type 0x110-0x110.7 (1)
|
||||
0x110| 04 | . | [9]: 4 transition_type 0x111-0x111.7 (1)
|
||||
0x110| 05 | . | [10]: 5 transition_type 0x112-0x112.7 (1)
|
||||
0x110| 04 | . | [11]: 4 transition_type 0x113-0x113.7 (1)
|
||||
0x110| 05 | . | [12]: 5 transition_type 0x114-0x114.7 (1)
|
||||
0x110| 04 | . | [13]: 4 transition_type 0x115-0x115.7 (1)
|
||||
0x110| 05 | . | [14]: 5 transition_type 0x116-0x116.7 (1)
|
||||
0x110| 04 | . | [15]: 4 transition_type 0x117-0x117.7 (1)
|
||||
0x110| 05 | . | [16]: 5 transition_type 0x118-0x118.7 (1)
|
||||
0x110| 04 | . | [17]: 4 transition_type 0x119-0x119.7 (1)
|
||||
0x110| 05 | . | [18]: 5 transition_type 0x11a-0x11a.7 (1)
|
||||
0x110| 04 | . | [19]: 4 transition_type 0x11b-0x11b.7 (1)
|
||||
0x110| 05 | . | [20]: 5 transition_type 0x11c-0x11c.7 (1)
|
||||
0x110| 04 | . | [21]: 4 transition_type 0x11d-0x11d.7 (1)
|
||||
0x110| 05 | . | [22]: 5 transition_type 0x11e-0x11e.7 (1)
|
||||
0x110| 04| .| [23]: 4 transition_type 0x11f-0x11f.7 (1)
|
||||
0x120|05 |. | [24]: 5 transition_type 0x120-0x120.7 (1)
|
||||
0x120| 04 | . | [25]: 4 transition_type 0x121-0x121.7 (1)
|
||||
0x120| 05 | . | [26]: 5 transition_type 0x122-0x122.7 (1)
|
||||
0x120| 04 | . | [27]: 4 transition_type 0x123-0x123.7 (1)
|
||||
0x120| 05 | . | [28]: 5 transition_type 0x124-0x124.7 (1)
|
||||
0x120| 04 | . | [29]: 4 transition_type 0x125-0x125.7 (1)
|
||||
0x120| 05 | . | [30]: 5 transition_type 0x126-0x126.7 (1)
|
||||
0x120| 04 | . | [31]: 4 transition_type 0x127-0x127.7 (1)
|
||||
0x120| 05 | . | [32]: 5 transition_type 0x128-0x128.7 (1)
|
||||
0x120| 04 | . | [33]: 4 transition_type 0x129-0x129.7 (1)
|
||||
0x120| 05 | . | [34]: 5 transition_type 0x12a-0x12a.7 (1)
|
||||
0x120| 04 | . | [35]: 4 transition_type 0x12b-0x12b.7 (1)
|
||||
0x120| 05 | . | [36]: 5 transition_type 0x12c-0x12c.7 (1)
|
||||
0x120| 04 | . | [37]: 4 transition_type 0x12d-0x12d.7 (1)
|
||||
0x120| 05 | . | [38]: 5 transition_type 0x12e-0x12e.7 (1)
|
||||
0x120| 04| .| [39]: 4 transition_type 0x12f-0x12f.7 (1)
|
||||
0x130|05 |. | [40]: 5 transition_type 0x130-0x130.7 (1)
|
||||
0x130| 04 | . | [41]: 4 transition_type 0x131-0x131.7 (1)
|
||||
0x130| 05 | . | [42]: 5 transition_type 0x132-0x132.7 (1)
|
||||
0x130| 04 | . | [43]: 4 transition_type 0x133-0x133.7 (1)
|
||||
0x130| 05 | . | [44]: 5 transition_type 0x134-0x134.7 (1)
|
||||
0x130| 04 | . | [45]: 4 transition_type 0x135-0x135.7 (1)
|
||||
0x130| 05 | . | [46]: 5 transition_type 0x136-0x136.7 (1)
|
||||
0x130| 04 | . | [47]: 4 transition_type 0x137-0x137.7 (1)
|
||||
0x130| 05 | . | [48]: 5 transition_type 0x138-0x138.7 (1)
|
||||
0x130| 04 | . | [49]: 4 transition_type 0x139-0x139.7 (1)
|
||||
0x130| 05 | . | [50]: 5 transition_type 0x13a-0x13a.7 (1)
|
||||
0x130| 04 | . | [51]: 4 transition_type 0x13b-0x13b.7 (1)
|
||||
0x130| 05 | . | [52]: 5 transition_type 0x13c-0x13c.7 (1)
|
||||
0x130| 04 | . | [53]: 4 transition_type 0x13d-0x13d.7 (1)
|
||||
0x130| 04 | . | [54]: 4 transition_type 0x13e-0x13e.7 (1)
|
||||
| | | local_time_type_records[0:6]: 0x13f-0x162.7 (36)
|
||||
| | | [0]{}: local_time_type 0x13f-0x144.7 (6)
|
||||
0x130| 00| .| utoff: 10660 (valid) 0x13f-0x142.7 (4)
|
||||
0x140|00 29 a4 |.). |
|
||||
0x140| 00 | . | dst: 0 (valid) 0x143-0x143.7 (1)
|
||||
0x140| 00 | . | idx: 0 (valid) 0x144-0x144.7 (1)
|
||||
| | | [1]{}: local_time_type 0x145-0x14a.7 (6)
|
||||
0x140| 00 00 29 a0 | ..). | utoff: 10656 (valid) 0x145-0x148.7 (4)
|
||||
0x140| 00 | . | dst: 0 (valid) 0x149-0x149.7 (1)
|
||||
0x140| 04 | . | idx: 4 (valid) 0x14a-0x14a.7 (1)
|
||||
| | | [2]{}: local_time_type 0x14b-0x150.7 (6)
|
||||
0x140| 00 00 2a 30 | ..*0 | utoff: 10800 (valid) 0x14b-0x14e.7 (4)
|
||||
0x140| 00| .| dst: 0 (valid) 0x14f-0x14f.7 (1)
|
||||
0x150|08 |. | idx: 8 (valid) 0x150-0x150.7 (1)
|
||||
| | | [3]{}: local_time_type 0x151-0x156.7 (6)
|
||||
0x150| 00 00 38 40 | ..8@ | utoff: 14400 (valid) 0x151-0x154.7 (4)
|
||||
0x150| 01 | . | dst: 1 (valid) 0x155-0x155.7 (1)
|
||||
0x150| 0c | . | idx: 12 (valid) 0x156-0x156.7 (1)
|
||||
| | | [4]{}: local_time_type 0x157-0x15c.7 (6)
|
||||
0x150| 00 00 2a 30 | ..*0 | utoff: 10800 (valid) 0x157-0x15a.7 (4)
|
||||
0x150| 00 | . | dst: 0 (valid) 0x15b-0x15b.7 (1)
|
||||
0x150| 08 | . | idx: 8 (valid) 0x15c-0x15c.7 (1)
|
||||
| | | [5]{}: local_time_type 0x15d-0x162.7 (6)
|
||||
0x150| 00 00 38| ..8| utoff: 14400 (valid) 0x15d-0x160.7 (4)
|
||||
0x160|40 |@ |
|
||||
0x160| 01 | . | dst: 1 (valid) 0x161-0x161.7 (1)
|
||||
0x160| 0c | . | idx: 12 (valid) 0x162-0x162.7 (1)
|
||||
| | | time_zone_designations[0:4]: 0x163-0x172.7 (16)
|
||||
0x160| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x163-0x166.7 (4)
|
||||
0x160| 42 4d 54 00 | BMT. | [1]: "BMT" time_zone_designation 0x167-0x16a.7 (4)
|
||||
0x160| 2b 30 33 00 | +03. | [2]: "+03" time_zone_designation 0x16b-0x16e.7 (4)
|
||||
0x160| 2b| +| [3]: "+04" time_zone_designation 0x16f-0x172.7 (4)
|
||||
0x170|30 34 00 |04. |
|
||||
| | | leap_second_records[0:27]: 0x173-0x24a.7 (216)
|
||||
| | | [0]{}: leap_second_record 0x173-0x17a.7 (8)
|
||||
0x170| 04 b2 58 00 | ..X. | occur: "1972-07-01T00:00:00Z" (78796800) 0x173-0x176.7 (4)
|
||||
0x170| 00 00 00 01 | .... | corr: 1 0x177-0x17a.7 (4)
|
||||
| | | [1]{}: leap_second_record 0x17b-0x182.7 (8)
|
||||
0x170| 05 a4 ec 01 | .... | occur: "1973-01-01T00:00:01Z" (94694401) 0x17b-0x17e.7 (4)
|
||||
0x170| 00| .| corr: 2 0x17f-0x182.7 (4)
|
||||
0x180|00 00 02 |... |
|
||||
| | | [2]{}: leap_second_record 0x183-0x18a.7 (8)
|
||||
0x180| 07 86 1f 82 | .... | occur: "1974-01-01T00:00:02Z" (126230402) 0x183-0x186.7 (4)
|
||||
0x180| 00 00 00 03 | .... | corr: 3 0x187-0x18a.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x18b-0x192.7 (8)
|
||||
0x180| 09 67 53 03 | .gS. | occur: "1975-01-01T00:00:03Z" (157766403) 0x18b-0x18e.7 (4)
|
||||
0x180| 00| .| corr: 4 0x18f-0x192.7 (4)
|
||||
0x190|00 00 04 |... |
|
||||
| | | [4]{}: leap_second_record 0x193-0x19a.7 (8)
|
||||
0x190| 0b 48 86 84 | .H.. | occur: "1976-01-01T00:00:04Z" (189302404) 0x193-0x196.7 (4)
|
||||
0x190| 00 00 00 05 | .... | corr: 5 0x197-0x19a.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x19b-0x1a2.7 (8)
|
||||
0x190| 0d 2b 0b 85 | .+.. | occur: "1977-01-01T00:00:05Z" (220924805) 0x19b-0x19e.7 (4)
|
||||
0x190| 00| .| corr: 6 0x19f-0x1a2.7 (4)
|
||||
0x1a0|00 00 06 |... |
|
||||
| | | [6]{}: leap_second_record 0x1a3-0x1aa.7 (8)
|
||||
0x1a0| 0f 0c 3f 06 | ..?. | occur: "1978-01-01T00:00:06Z" (252460806) 0x1a3-0x1a6.7 (4)
|
||||
0x1a0| 00 00 00 07 | .... | corr: 7 0x1a7-0x1aa.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x1ab-0x1b2.7 (8)
|
||||
0x1a0| 10 ed 72 87 | ..r. | occur: "1979-01-01T00:00:07Z" (283996807) 0x1ab-0x1ae.7 (4)
|
||||
0x1a0| 00| .| corr: 8 0x1af-0x1b2.7 (4)
|
||||
0x1b0|00 00 08 |... |
|
||||
| | | [8]{}: leap_second_record 0x1b3-0x1ba.7 (8)
|
||||
0x1b0| 12 ce a6 08 | .... | occur: "1980-01-01T00:00:08Z" (315532808) 0x1b3-0x1b6.7 (4)
|
||||
0x1b0| 00 00 00 09 | .... | corr: 9 0x1b7-0x1ba.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x1bb-0x1c2.7 (8)
|
||||
0x1b0| 15 9f ca 89 | .... | occur: "1981-07-01T00:00:09Z" (362793609) 0x1bb-0x1be.7 (4)
|
||||
0x1b0| 00| .| corr: 10 0x1bf-0x1c2.7 (4)
|
||||
0x1c0|00 00 0a |... |
|
||||
| | | [10]{}: leap_second_record 0x1c3-0x1ca.7 (8)
|
||||
0x1c0| 17 80 fe 0a | .... | occur: "1982-07-01T00:00:10Z" (394329610) 0x1c3-0x1c6.7 (4)
|
||||
0x1c0| 00 00 00 0b | .... | corr: 11 0x1c7-0x1ca.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x1cb-0x1d2.7 (8)
|
||||
0x1c0| 19 62 31 8b | .b1. | occur: "1983-07-01T00:00:11Z" (425865611) 0x1cb-0x1ce.7 (4)
|
||||
0x1c0| 00| .| corr: 12 0x1cf-0x1d2.7 (4)
|
||||
0x1d0|00 00 0c |... |
|
||||
| | | [12]{}: leap_second_record 0x1d3-0x1da.7 (8)
|
||||
0x1d0| 1d 25 ea 0c | .%.. | occur: "1985-07-01T00:00:12Z" (489024012) 0x1d3-0x1d6.7 (4)
|
||||
0x1d0| 00 00 00 0d | .... | corr: 13 0x1d7-0x1da.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x1db-0x1e2.7 (8)
|
||||
0x1d0| 21 da e5 0d | !... | occur: "1988-01-01T00:00:13Z" (567993613) 0x1db-0x1de.7 (4)
|
||||
0x1d0| 00| .| corr: 14 0x1df-0x1e2.7 (4)
|
||||
0x1e0|00 00 0e |... |
|
||||
| | | [14]{}: leap_second_record 0x1e3-0x1ea.7 (8)
|
||||
0x1e0| 25 9e 9d 8e | %... | occur: "1990-01-01T00:00:14Z" (631152014) 0x1e3-0x1e6.7 (4)
|
||||
0x1e0| 00 00 00 0f | .... | corr: 15 0x1e7-0x1ea.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x1eb-0x1f2.7 (8)
|
||||
0x1e0| 27 7f d1 0f | '... | occur: "1991-01-01T00:00:15Z" (662688015) 0x1eb-0x1ee.7 (4)
|
||||
0x1e0| 00| .| corr: 16 0x1ef-0x1f2.7 (4)
|
||||
0x1f0|00 00 10 |... |
|
||||
| | | [16]{}: leap_second_record 0x1f3-0x1fa.7 (8)
|
||||
0x1f0| 2a 50 f5 90 | *P.. | occur: "1992-07-01T00:00:16Z" (709948816) 0x1f3-0x1f6.7 (4)
|
||||
0x1f0| 00 00 00 11 | .... | corr: 17 0x1f7-0x1fa.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x1fb-0x202.7 (8)
|
||||
0x1f0| 2c 32 29 11 | ,2). | occur: "1993-07-01T00:00:17Z" (741484817) 0x1fb-0x1fe.7 (4)
|
||||
0x1f0| 00| .| corr: 18 0x1ff-0x202.7 (4)
|
||||
0x200|00 00 12 |... |
|
||||
| | | [18]{}: leap_second_record 0x203-0x20a.7 (8)
|
||||
0x200| 2e 13 5c 92 | ..\. | occur: "1994-07-01T00:00:18Z" (773020818) 0x203-0x206.7 (4)
|
||||
0x200| 00 00 00 13 | .... | corr: 19 0x207-0x20a.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x20b-0x212.7 (8)
|
||||
0x200| 30 e7 24 13 | 0.$. | occur: "1996-01-01T00:00:19Z" (820454419) 0x20b-0x20e.7 (4)
|
||||
0x200| 00| .| corr: 20 0x20f-0x212.7 (4)
|
||||
0x210|00 00 14 |... |
|
||||
| | | [20]{}: leap_second_record 0x213-0x21a.7 (8)
|
||||
0x210| 33 b8 48 94 | 3.H. | occur: "1997-07-01T00:00:20Z" (867715220) 0x213-0x216.7 (4)
|
||||
0x210| 00 00 00 15 | .... | corr: 21 0x217-0x21a.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x21b-0x222.7 (8)
|
||||
0x210| 36 8c 10 15 | 6... | occur: "1999-01-01T00:00:21Z" (915148821) 0x21b-0x21e.7 (4)
|
||||
0x210| 00| .| corr: 22 0x21f-0x222.7 (4)
|
||||
0x220|00 00 16 |... |
|
||||
| | | [22]{}: leap_second_record 0x223-0x22a.7 (8)
|
||||
0x220| 43 b7 1b 96 | C... | occur: "2006-01-01T00:00:22Z" (1136073622) 0x223-0x226.7 (4)
|
||||
0x220| 00 00 00 17 | .... | corr: 23 0x227-0x22a.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x22b-0x232.7 (8)
|
||||
0x220| 49 5c 07 97 | I\.. | occur: "2009-01-01T00:00:23Z" (1230768023) 0x22b-0x22e.7 (4)
|
||||
0x220| 00| .| corr: 24 0x22f-0x232.7 (4)
|
||||
0x230|00 00 18 |... |
|
||||
| | | [24]{}: leap_second_record 0x233-0x23a.7 (8)
|
||||
0x230| 4f ef 93 18 | O... | occur: "2012-07-01T00:00:24Z" (1341100824) 0x233-0x236.7 (4)
|
||||
0x230| 00 00 00 19 | .... | corr: 25 0x237-0x23a.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x23b-0x242.7 (8)
|
||||
0x230| 55 93 2d 99 | U.-. | occur: "2015-07-01T00:00:25Z" (1435708825) 0x23b-0x23e.7 (4)
|
||||
0x230| 00| .| corr: 26 0x23f-0x242.7 (4)
|
||||
0x240|00 00 1a |... |
|
||||
| | | [26]{}: leap_second_record 0x243-0x24a.7 (8)
|
||||
0x240| 58 68 46 9a | XhF. | occur: "2017-01-01T00:00:26Z" (1483228826) 0x243-0x246.7 (4)
|
||||
0x240| 00 00 00 1b | .... | corr: 27 0x247-0x24a.7 (4)
|
||||
| | | standard_wall_indicators[0:6]: 0x24b-0x250.7 (6)
|
||||
0x240| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x24b-0x24b.7 (1)
|
||||
0x240| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x24c-0x24c.7 (1)
|
||||
0x240| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x24d-0x24d.7 (1)
|
||||
0x240| 00 | . | [3]: 0 standard_wall_indicator (valid) 0x24e-0x24e.7 (1)
|
||||
0x240| 01| .| [4]: 1 standard_wall_indicator (valid) 0x24f-0x24f.7 (1)
|
||||
0x250|01 |. | [5]: 1 standard_wall_indicator (valid) 0x250-0x250.7 (1)
|
||||
| | | ut_local_indicators[0:0]: 0x251-NA (0)
|
||||
| | | v2plusheader{}: 0x251-0x27c.7 (44)
|
||||
0x250| 54 5a 69 66 | TZif | magic: 0x545a6966 (valid) 0x251-0x254.7 (4)
|
||||
0x250| 32 | 2 | ver: "2" (0x32) (valid) 0x255-0x255.7 (1)
|
||||
0x250| 00 00 00 00 00 00 00 00 00 00| ..........| reserved: raw bits 0x256-0x264.7 (15)
|
||||
0x260|00 00 00 00 00 |..... |
|
||||
0x260| 00 00 00 00 | .... | isutcnt: 0 0x265-0x268.7 (4)
|
||||
0x260| 00 00 00 06 | .... | isstdcnt: 6 0x269-0x26c.7 (4)
|
||||
0x260| 00 00 00| ...| leapcnt: 27 0x26d-0x270.7 (4)
|
||||
0x270|1b |. |
|
||||
0x270| 00 00 00 37 | ...7 | timecnt: 55 0x271-0x274.7 (4)
|
||||
0x270| 00 00 00 06 | .... | typecnt: 6 0x275-0x278.7 (4)
|
||||
0x270| 00 00 00 10 | .... | charcnt: 16 0x279-0x27c.7 (4)
|
||||
| | | v2plusdatablock{}: 0x27d-0x5e9.7 (877)
|
||||
| | | transition_times[0:55]: 0x27d-0x434.7 (440)
|
||||
0x270| ff ff ff| ...| [0]: "1889-12-31T21:02:20Z" (-2524532260) transition_time 0x27d-0x284.7 (8)
|
||||
0x280|ff 69 86 b1 dc |.i... |
|
||||
0x280| ff ff ff ff 9e 30 3c e0 | .....0<. | [1]: "1917-12-31T21:02:24Z" (-1641005856) transition_time 0x285-0x28c.7 (8)
|
||||
0x280| 00 00 00| ...| [2]: "1982-04-30T21:00:10Z" (389048410) transition_time 0x28d-0x294.7 (8)
|
||||
0x290|00 17 30 68 5a |..0hZ |
|
||||
0x290| 00 00 00 00 17 fa 0f cb | ........ | [3]: "1982-09-30T20:00:11Z" (402264011) transition_time 0x295-0x29c.7 (8)
|
||||
0x290| 00 00 00| ...| [4]: "1983-03-30T21:00:11Z" (417906011) transition_time 0x29d-0x2a4.7 (8)
|
||||
0x2a0|00 18 e8 bd 5b |....[ |
|
||||
0x2a0| 00 00 00 00 19 db 43 4c | ......CL | [5]: "1983-09-30T20:00:12Z" (433800012) transition_time 0x2a5-0x2ac.7 (8)
|
||||
0x2a0| 00 00 00| ...| [6]: "1984-03-31T21:00:12Z" (449614812) transition_time 0x2ad-0x2b4.7 (8)
|
||||
0x2b0|00 1a cc 93 dc |..... |
|
||||
0x2b0| 00 00 00 00 1b bd c8 4c | .......L | [7]: "1984-09-30T20:00:12Z" (465422412) transition_time 0x2b5-0x2bc.7 (8)
|
||||
0x2b0| 00 00 00| ...| [8]: "1985-03-31T21:00:12Z" (481150812) transition_time 0x2bd-0x2c4.7 (8)
|
||||
0x2c0|00 1c ad c7 5c |....\ |
|
||||
0x2c0| 00 00 00 00 1d 9c 74 ed | ......t. | [9]: "1985-09-28T22:00:13Z" (496792813) transition_time 0x2c5-0x2cc.7 (8)
|
||||
0x2c0| 00 00 00| ...| [10]: "1986-03-29T22:00:13Z" (512517613) transition_time 0x2cd-0x2d4.7 (8)
|
||||
0x2d0|00 1e 8c 65 ed |...e. |
|
||||
0x2d0| 00 00 00 00 1f 7c 56 ed | .....|V. | [11]: "1986-09-27T22:00:13Z" (528242413) transition_time 0x2d5-0x2dc.7 (8)
|
||||
0x2d0| 00 00 00| ...| [12]: "1987-03-28T22:00:13Z" (543967213) transition_time 0x2dd-0x2e4.7 (8)
|
||||
0x2e0|00 20 6c 47 ed |. lG. |
|
||||
0x2e0| 00 00 00 00 21 5c 38 ed | ....!\8. | [13]: "1987-09-26T22:00:13Z" (559692013) transition_time 0x2e5-0x2ec.7 (8)
|
||||
0x2e0| 00 00 00| ...| [14]: "1988-03-26T22:00:14Z" (575416814) transition_time 0x2ed-0x2f4.7 (8)
|
||||
0x2f0|00 22 4c 29 ee |."L). |
|
||||
0x2f0| 00 00 00 00 23 3c 1a ee | ....#<.. | [15]: "1988-09-24T22:00:14Z" (591141614) transition_time 0x2f5-0x2fc.7 (8)
|
||||
0x2f0| 00 00 00| ...| [16]: "1989-03-25T22:00:14Z" (606866414) transition_time 0x2fd-0x304.7 (8)
|
||||
0x300|00 24 2c 0b ee |.$,.. |
|
||||
0x300| 00 00 00 00 25 1b fc ee | ....%... | [17]: "1989-09-23T22:00:14Z" (622591214) transition_time 0x305-0x30c.7 (8)
|
||||
0x300| 00 00 00| ...| [18]: "1990-03-24T22:00:15Z" (638316015) transition_time 0x30d-0x314.7 (8)
|
||||
0x310|00 26 0b ed ef |.&... |
|
||||
0x310| 00 00 00 00 27 05 19 6f | ....'..o | [19]: "1990-09-29T22:00:15Z" (654645615) transition_time 0x315-0x31c.7 (8)
|
||||
0x310| 00 00 00| ...| [20]: "1991-04-01T00:00:16Z" (670464016) transition_time 0x31d-0x324.7 (8)
|
||||
0x320|00 27 f6 78 10 |.'.x. |
|
||||
0x320| 00 00 00 00 28 e7 ba 90 | ....(... | [21]: "1991-10-01T00:00:16Z" (686275216) transition_time 0x325-0x32c.7 (8)
|
||||
0x320| 00 00 00| ...| [22]: "1992-04-01T00:00:16Z" (702086416) transition_time 0x32d-0x334.7 (8)
|
||||
0x330|00 29 d8 fd 10 |.)... |
|
||||
0x330| 00 00 00 00 2a ca 3f 91 | ....*.?. | [23]: "1992-10-01T00:00:17Z" (717897617) transition_time 0x335-0x33c.7 (8)
|
||||
0x330| 00 00 00| ...| [24]: "1993-04-01T00:00:17Z" (733622417) transition_time 0x33d-0x344.7 (8)
|
||||
0x340|00 2b ba 30 91 |.+.0. |
|
||||
0x340| 00 00 00 00 2c ab 73 12 | ....,.s. | [25]: "1993-10-01T00:00:18Z" (749433618) transition_time 0x345-0x34c.7 (8)
|
||||
0x340| 00 00 00| ...| [26]: "1994-04-01T00:00:18Z" (765158418) transition_time 0x34d-0x354.7 (8)
|
||||
0x350|00 2d 9b 64 12 |.-.d. |
|
||||
0x350| 00 00 00 00 2e 8c a6 93 | ........ | [27]: "1994-10-01T00:00:19Z" (780969619) transition_time 0x355-0x35c.7 (8)
|
||||
0x350| 00 00 00| ...| [28]: "1995-04-01T00:00:19Z" (796694419) transition_time 0x35d-0x364.7 (8)
|
||||
0x360|00 2f 7c 97 93 |./|.. |
|
||||
0x360| 00 00 00 00 30 6d da 13 | ....0m.. | [29]: "1995-10-01T00:00:19Z" (812505619) transition_time 0x365-0x36c.7 (8)
|
||||
0x360| 00 00 00| ...| [30]: "1996-04-01T00:00:20Z" (828316820) transition_time 0x36d-0x374.7 (8)
|
||||
0x370|00 31 5f 1c 94 |.1_.. |
|
||||
0x370| 00 00 00 00 32 50 5f 14 | ....2P_. | [31]: "1996-10-01T00:00:20Z" (844128020) transition_time 0x375-0x37c.7 (8)
|
||||
0x370| 00 00 00| ...| [32]: "1997-04-01T00:00:20Z" (859852820) transition_time 0x37d-0x384.7 (8)
|
||||
0x380|00 33 40 50 14 |.3@P. |
|
||||
0x380| 00 00 00 00 34 31 92 95 | ....41.. | [33]: "1997-10-01T00:00:21Z" (875664021) transition_time 0x385-0x38c.7 (8)
|
||||
0x380| 00 00 00| ...| [34]: "1998-04-01T00:00:21Z" (891388821) transition_time 0x38d-0x394.7 (8)
|
||||
0x390|00 35 21 83 95 |.5!.. |
|
||||
0x390| 00 00 00 00 36 12 c6 15 | ....6... | [35]: "1998-10-01T00:00:21Z" (907200021) transition_time 0x395-0x39c.7 (8)
|
||||
0x390| 00 00 00| ...| [36]: "1999-04-01T00:00:22Z" (922924822) transition_time 0x39d-0x3a4.7 (8)
|
||||
0x3a0|00 37 02 b7 16 |.7... |
|
||||
0x3a0| 00 00 00 00 37 f3 f9 96 | ....7... | [37]: "1999-10-01T00:00:22Z" (938736022) transition_time 0x3a5-0x3ac.7 (8)
|
||||
0x3a0| 00 00 00| ...| [38]: "2000-04-01T00:00:22Z" (954547222) transition_time 0x3ad-0x3b4.7 (8)
|
||||
0x3b0|00 38 e5 3c 16 |.8.<. |
|
||||
0x3b0| 00 00 00 00 39 d6 7e 96 | ....9.~. | [39]: "2000-10-01T00:00:22Z" (970358422) transition_time 0x3b5-0x3bc.7 (8)
|
||||
0x3b0| 00 00 00| ...| [40]: "2001-04-01T00:00:22Z" (986083222) transition_time 0x3bd-0x3c4.7 (8)
|
||||
0x3c0|00 3a c6 6f 96 |.:.o. |
|
||||
0x3c0| 00 00 00 00 3b b7 b2 16 | ....;... | [41]: "2001-10-01T00:00:22Z" (1001894422) transition_time 0x3c5-0x3cc.7 (8)
|
||||
0x3c0| 00 00 00| ...| [42]: "2002-04-01T00:00:22Z" (1017619222) transition_time 0x3cd-0x3d4.7 (8)
|
||||
0x3d0|00 3c a7 a3 16 |.<... |
|
||||
0x3d0| 00 00 00 00 3d 98 e5 96 | ....=... | [43]: "2002-10-01T00:00:22Z" (1033430422) transition_time 0x3d5-0x3dc.7 (8)
|
||||
0x3d0| 00 00 00| ...| [44]: "2003-04-01T00:00:22Z" (1049155222) transition_time 0x3dd-0x3e4.7 (8)
|
||||
0x3e0|00 3e 88 d6 96 |.>... |
|
||||
0x3e0| 00 00 00 00 3f 7a 19 16 | ....?z.. | [45]: "2003-10-01T00:00:22Z" (1064966422) transition_time 0x3e5-0x3ec.7 (8)
|
||||
0x3e0| 00 00 00| ...| [46]: "2004-04-01T00:00:22Z" (1080777622) transition_time 0x3ed-0x3f4.7 (8)
|
||||
0x3f0|00 40 6b 5b 96 |.@k[. |
|
||||
0x3f0| 00 00 00 00 41 5c 9e 16 | ....A\.. | [47]: "2004-10-01T00:00:22Z" (1096588822) transition_time 0x3f5-0x3fc.7 (8)
|
||||
0x3f0| 00 00 00| ...| [48]: "2005-04-01T00:00:22Z" (1112313622) transition_time 0x3fd-0x404.7 (8)
|
||||
0x400|00 42 4c 8f 16 |.BL.. |
|
||||
0x400| 00 00 00 00 43 3d d1 96 | ....C=.. | [49]: "2005-10-01T00:00:22Z" (1128124822) transition_time 0x405-0x40c.7 (8)
|
||||
0x400| 00 00 00| ...| [50]: "2006-04-01T00:00:23Z" (1143849623) transition_time 0x40d-0x414.7 (8)
|
||||
0x410|00 44 2d c2 97 |.D-.. |
|
||||
0x410| 00 00 00 00 45 1f 05 17 | ....E... | [51]: "2006-10-01T00:00:23Z" (1159660823) transition_time 0x415-0x41c.7 (8)
|
||||
0x410| 00 00 00| ...| [52]: "2007-04-01T00:00:23Z" (1175385623) transition_time 0x41d-0x424.7 (8)
|
||||
0x420|00 46 0e f6 17 |.F... |
|
||||
0x420| 00 00 00 00 47 00 38 97 | ....G.8. | [53]: "2007-10-01T00:00:23Z" (1191196823) transition_time 0x425-0x42c.7 (8)
|
||||
0x420| 00 00 00| ...| [54]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x42d-0x434.7 (8)
|
||||
0x430|00 64 9b 78 1b |.d.x. |
|
||||
| | | transition_types[0:55]: 0x435-0x46b.7 (55)
|
||||
0x430| 01 | . | [0]: 1 transition_type 0x435-0x435.7 (1)
|
||||
0x430| 02 | . | [1]: 2 transition_type 0x436-0x436.7 (1)
|
||||
0x430| 03 | . | [2]: 3 transition_type 0x437-0x437.7 (1)
|
||||
0x430| 02 | . | [3]: 2 transition_type 0x438-0x438.7 (1)
|
||||
0x430| 03 | . | [4]: 3 transition_type 0x439-0x439.7 (1)
|
||||
0x430| 02 | . | [5]: 2 transition_type 0x43a-0x43a.7 (1)
|
||||
0x430| 03 | . | [6]: 3 transition_type 0x43b-0x43b.7 (1)
|
||||
0x430| 02 | . | [7]: 2 transition_type 0x43c-0x43c.7 (1)
|
||||
0x430| 03 | . | [8]: 3 transition_type 0x43d-0x43d.7 (1)
|
||||
0x430| 04 | . | [9]: 4 transition_type 0x43e-0x43e.7 (1)
|
||||
0x430| 05| .| [10]: 5 transition_type 0x43f-0x43f.7 (1)
|
||||
0x440|04 |. | [11]: 4 transition_type 0x440-0x440.7 (1)
|
||||
0x440| 05 | . | [12]: 5 transition_type 0x441-0x441.7 (1)
|
||||
0x440| 04 | . | [13]: 4 transition_type 0x442-0x442.7 (1)
|
||||
0x440| 05 | . | [14]: 5 transition_type 0x443-0x443.7 (1)
|
||||
0x440| 04 | . | [15]: 4 transition_type 0x444-0x444.7 (1)
|
||||
0x440| 05 | . | [16]: 5 transition_type 0x445-0x445.7 (1)
|
||||
0x440| 04 | . | [17]: 4 transition_type 0x446-0x446.7 (1)
|
||||
0x440| 05 | . | [18]: 5 transition_type 0x447-0x447.7 (1)
|
||||
0x440| 04 | . | [19]: 4 transition_type 0x448-0x448.7 (1)
|
||||
0x440| 05 | . | [20]: 5 transition_type 0x449-0x449.7 (1)
|
||||
0x440| 04 | . | [21]: 4 transition_type 0x44a-0x44a.7 (1)
|
||||
0x440| 05 | . | [22]: 5 transition_type 0x44b-0x44b.7 (1)
|
||||
0x440| 04 | . | [23]: 4 transition_type 0x44c-0x44c.7 (1)
|
||||
0x440| 05 | . | [24]: 5 transition_type 0x44d-0x44d.7 (1)
|
||||
0x440| 04 | . | [25]: 4 transition_type 0x44e-0x44e.7 (1)
|
||||
0x440| 05| .| [26]: 5 transition_type 0x44f-0x44f.7 (1)
|
||||
0x450|04 |. | [27]: 4 transition_type 0x450-0x450.7 (1)
|
||||
0x450| 05 | . | [28]: 5 transition_type 0x451-0x451.7 (1)
|
||||
0x450| 04 | . | [29]: 4 transition_type 0x452-0x452.7 (1)
|
||||
0x450| 05 | . | [30]: 5 transition_type 0x453-0x453.7 (1)
|
||||
0x450| 04 | . | [31]: 4 transition_type 0x454-0x454.7 (1)
|
||||
0x450| 05 | . | [32]: 5 transition_type 0x455-0x455.7 (1)
|
||||
0x450| 04 | . | [33]: 4 transition_type 0x456-0x456.7 (1)
|
||||
0x450| 05 | . | [34]: 5 transition_type 0x457-0x457.7 (1)
|
||||
0x450| 04 | . | [35]: 4 transition_type 0x458-0x458.7 (1)
|
||||
0x450| 05 | . | [36]: 5 transition_type 0x459-0x459.7 (1)
|
||||
0x450| 04 | . | [37]: 4 transition_type 0x45a-0x45a.7 (1)
|
||||
0x450| 05 | . | [38]: 5 transition_type 0x45b-0x45b.7 (1)
|
||||
0x450| 04 | . | [39]: 4 transition_type 0x45c-0x45c.7 (1)
|
||||
0x450| 05 | . | [40]: 5 transition_type 0x45d-0x45d.7 (1)
|
||||
0x450| 04 | . | [41]: 4 transition_type 0x45e-0x45e.7 (1)
|
||||
0x450| 05| .| [42]: 5 transition_type 0x45f-0x45f.7 (1)
|
||||
0x460|04 |. | [43]: 4 transition_type 0x460-0x460.7 (1)
|
||||
0x460| 05 | . | [44]: 5 transition_type 0x461-0x461.7 (1)
|
||||
0x460| 04 | . | [45]: 4 transition_type 0x462-0x462.7 (1)
|
||||
0x460| 05 | . | [46]: 5 transition_type 0x463-0x463.7 (1)
|
||||
0x460| 04 | . | [47]: 4 transition_type 0x464-0x464.7 (1)
|
||||
0x460| 05 | . | [48]: 5 transition_type 0x465-0x465.7 (1)
|
||||
0x460| 04 | . | [49]: 4 transition_type 0x466-0x466.7 (1)
|
||||
0x460| 05 | . | [50]: 5 transition_type 0x467-0x467.7 (1)
|
||||
0x460| 04 | . | [51]: 4 transition_type 0x468-0x468.7 (1)
|
||||
0x460| 05 | . | [52]: 5 transition_type 0x469-0x469.7 (1)
|
||||
0x460| 04 | . | [53]: 4 transition_type 0x46a-0x46a.7 (1)
|
||||
0x460| 04 | . | [54]: 4 transition_type 0x46b-0x46b.7 (1)
|
||||
| | | local_time_type_records[0:6]: 0x46c-0x48f.7 (36)
|
||||
| | | [0]{}: local_time_type 0x46c-0x471.7 (6)
|
||||
0x460| 00 00 29 a4| ..).| utoff: 10660 (valid) 0x46c-0x46f.7 (4)
|
||||
0x470|00 |. | dst: 0 (valid) 0x470-0x470.7 (1)
|
||||
0x470| 00 | . | idx: 0 (valid) 0x471-0x471.7 (1)
|
||||
| | | [1]{}: local_time_type 0x472-0x477.7 (6)
|
||||
0x470| 00 00 29 a0 | ..). | utoff: 10656 (valid) 0x472-0x475.7 (4)
|
||||
0x470| 00 | . | dst: 0 (valid) 0x476-0x476.7 (1)
|
||||
0x470| 04 | . | idx: 4 (valid) 0x477-0x477.7 (1)
|
||||
| | | [2]{}: local_time_type 0x478-0x47d.7 (6)
|
||||
0x470| 00 00 2a 30 | ..*0 | utoff: 10800 (valid) 0x478-0x47b.7 (4)
|
||||
0x470| 00 | . | dst: 0 (valid) 0x47c-0x47c.7 (1)
|
||||
0x470| 08 | . | idx: 8 (valid) 0x47d-0x47d.7 (1)
|
||||
| | | [3]{}: local_time_type 0x47e-0x483.7 (6)
|
||||
0x470| 00 00| ..| utoff: 14400 (valid) 0x47e-0x481.7 (4)
|
||||
0x480|38 40 |8@ |
|
||||
0x480| 01 | . | dst: 1 (valid) 0x482-0x482.7 (1)
|
||||
0x480| 0c | . | idx: 12 (valid) 0x483-0x483.7 (1)
|
||||
| | | [4]{}: local_time_type 0x484-0x489.7 (6)
|
||||
0x480| 00 00 2a 30 | ..*0 | utoff: 10800 (valid) 0x484-0x487.7 (4)
|
||||
0x480| 00 | . | dst: 0 (valid) 0x488-0x488.7 (1)
|
||||
0x480| 08 | . | idx: 8 (valid) 0x489-0x489.7 (1)
|
||||
| | | [5]{}: local_time_type 0x48a-0x48f.7 (6)
|
||||
0x480| 00 00 38 40 | ..8@ | utoff: 14400 (valid) 0x48a-0x48d.7 (4)
|
||||
0x480| 01 | . | dst: 1 (valid) 0x48e-0x48e.7 (1)
|
||||
0x480| 0c| .| idx: 12 (valid) 0x48f-0x48f.7 (1)
|
||||
| | | time_zone_designations[0:4]: 0x490-0x49f.7 (16)
|
||||
0x490|4c 4d 54 00 |LMT. | [0]: "LMT" time_zone_designation 0x490-0x493.7 (4)
|
||||
0x490| 42 4d 54 00 | BMT. | [1]: "BMT" time_zone_designation 0x494-0x497.7 (4)
|
||||
0x490| 2b 30 33 00 | +03. | [2]: "+03" time_zone_designation 0x498-0x49b.7 (4)
|
||||
0x490| 2b 30 34 00| +04.| [3]: "+04" time_zone_designation 0x49c-0x49f.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x4a0-0x5e3.7 (324)
|
||||
| | | [0]{}: leap_second_record 0x4a0-0x4ab.7 (12)
|
||||
0x4a0|00 00 00 00 04 b2 58 00 |......X. | occur: "1972-07-01T00:00:00Z" (78796800) 0x4a0-0x4a7.7 (8)
|
||||
0x4a0| 00 00 00 01 | .... | corr: 1 0x4a8-0x4ab.7 (4)
|
||||
| | | [1]{}: leap_second_record 0x4ac-0x4b7.7 (12)
|
||||
0x4a0| 00 00 00 00| ....| occur: "1973-01-01T00:00:01Z" (94694401) 0x4ac-0x4b3.7 (8)
|
||||
0x4b0|05 a4 ec 01 |.... |
|
||||
0x4b0| 00 00 00 02 | .... | corr: 2 0x4b4-0x4b7.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x4b8-0x4c3.7 (12)
|
||||
0x4b0| 00 00 00 00 07 86 1f 82| ........| occur: "1974-01-01T00:00:02Z" (126230402) 0x4b8-0x4bf.7 (8)
|
||||
0x4c0|00 00 00 03 |.... | corr: 3 0x4c0-0x4c3.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x4c4-0x4cf.7 (12)
|
||||
0x4c0| 00 00 00 00 09 67 53 03 | .....gS. | occur: "1975-01-01T00:00:03Z" (157766403) 0x4c4-0x4cb.7 (8)
|
||||
0x4c0| 00 00 00 04| ....| corr: 4 0x4cc-0x4cf.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x4d0-0x4db.7 (12)
|
||||
0x4d0|00 00 00 00 0b 48 86 84 |.....H.. | occur: "1976-01-01T00:00:04Z" (189302404) 0x4d0-0x4d7.7 (8)
|
||||
0x4d0| 00 00 00 05 | .... | corr: 5 0x4d8-0x4db.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x4dc-0x4e7.7 (12)
|
||||
0x4d0| 00 00 00 00| ....| occur: "1977-01-01T00:00:05Z" (220924805) 0x4dc-0x4e3.7 (8)
|
||||
0x4e0|0d 2b 0b 85 |.+.. |
|
||||
0x4e0| 00 00 00 06 | .... | corr: 6 0x4e4-0x4e7.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x4e8-0x4f3.7 (12)
|
||||
0x4e0| 00 00 00 00 0f 0c 3f 06| ......?.| occur: "1978-01-01T00:00:06Z" (252460806) 0x4e8-0x4ef.7 (8)
|
||||
0x4f0|00 00 00 07 |.... | corr: 7 0x4f0-0x4f3.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x4f4-0x4ff.7 (12)
|
||||
0x4f0| 00 00 00 00 10 ed 72 87 | ......r. | occur: "1979-01-01T00:00:07Z" (283996807) 0x4f4-0x4fb.7 (8)
|
||||
0x4f0| 00 00 00 08| ....| corr: 8 0x4fc-0x4ff.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x500-0x50b.7 (12)
|
||||
0x500|00 00 00 00 12 ce a6 08 |........ | occur: "1980-01-01T00:00:08Z" (315532808) 0x500-0x507.7 (8)
|
||||
0x500| 00 00 00 09 | .... | corr: 9 0x508-0x50b.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x50c-0x517.7 (12)
|
||||
0x500| 00 00 00 00| ....| occur: "1981-07-01T00:00:09Z" (362793609) 0x50c-0x513.7 (8)
|
||||
0x510|15 9f ca 89 |.... |
|
||||
0x510| 00 00 00 0a | .... | corr: 10 0x514-0x517.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x518-0x523.7 (12)
|
||||
0x510| 00 00 00 00 17 80 fe 0a| ........| occur: "1982-07-01T00:00:10Z" (394329610) 0x518-0x51f.7 (8)
|
||||
0x520|00 00 00 0b |.... | corr: 11 0x520-0x523.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x524-0x52f.7 (12)
|
||||
0x520| 00 00 00 00 19 62 31 8b | .....b1. | occur: "1983-07-01T00:00:11Z" (425865611) 0x524-0x52b.7 (8)
|
||||
0x520| 00 00 00 0c| ....| corr: 12 0x52c-0x52f.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x530-0x53b.7 (12)
|
||||
0x530|00 00 00 00 1d 25 ea 0c |.....%.. | occur: "1985-07-01T00:00:12Z" (489024012) 0x530-0x537.7 (8)
|
||||
0x530| 00 00 00 0d | .... | corr: 13 0x538-0x53b.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x53c-0x547.7 (12)
|
||||
0x530| 00 00 00 00| ....| occur: "1988-01-01T00:00:13Z" (567993613) 0x53c-0x543.7 (8)
|
||||
0x540|21 da e5 0d |!... |
|
||||
0x540| 00 00 00 0e | .... | corr: 14 0x544-0x547.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x548-0x553.7 (12)
|
||||
0x540| 00 00 00 00 25 9e 9d 8e| ....%...| occur: "1990-01-01T00:00:14Z" (631152014) 0x548-0x54f.7 (8)
|
||||
0x550|00 00 00 0f |.... | corr: 15 0x550-0x553.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x554-0x55f.7 (12)
|
||||
0x550| 00 00 00 00 27 7f d1 0f | ....'... | occur: "1991-01-01T00:00:15Z" (662688015) 0x554-0x55b.7 (8)
|
||||
0x550| 00 00 00 10| ....| corr: 16 0x55c-0x55f.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x560-0x56b.7 (12)
|
||||
0x560|00 00 00 00 2a 50 f5 90 |....*P.. | occur: "1992-07-01T00:00:16Z" (709948816) 0x560-0x567.7 (8)
|
||||
0x560| 00 00 00 11 | .... | corr: 17 0x568-0x56b.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x56c-0x577.7 (12)
|
||||
0x560| 00 00 00 00| ....| occur: "1993-07-01T00:00:17Z" (741484817) 0x56c-0x573.7 (8)
|
||||
0x570|2c 32 29 11 |,2). |
|
||||
0x570| 00 00 00 12 | .... | corr: 18 0x574-0x577.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x578-0x583.7 (12)
|
||||
0x570| 00 00 00 00 2e 13 5c 92| ......\.| occur: "1994-07-01T00:00:18Z" (773020818) 0x578-0x57f.7 (8)
|
||||
0x580|00 00 00 13 |.... | corr: 19 0x580-0x583.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x584-0x58f.7 (12)
|
||||
0x580| 00 00 00 00 30 e7 24 13 | ....0.$. | occur: "1996-01-01T00:00:19Z" (820454419) 0x584-0x58b.7 (8)
|
||||
0x580| 00 00 00 14| ....| corr: 20 0x58c-0x58f.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x590-0x59b.7 (12)
|
||||
0x590|00 00 00 00 33 b8 48 94 |....3.H. | occur: "1997-07-01T00:00:20Z" (867715220) 0x590-0x597.7 (8)
|
||||
0x590| 00 00 00 15 | .... | corr: 21 0x598-0x59b.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x59c-0x5a7.7 (12)
|
||||
0x590| 00 00 00 00| ....| occur: "1999-01-01T00:00:21Z" (915148821) 0x59c-0x5a3.7 (8)
|
||||
0x5a0|36 8c 10 15 |6... |
|
||||
0x5a0| 00 00 00 16 | .... | corr: 22 0x5a4-0x5a7.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x5a8-0x5b3.7 (12)
|
||||
0x5a0| 00 00 00 00 43 b7 1b 96| ....C...| occur: "2006-01-01T00:00:22Z" (1136073622) 0x5a8-0x5af.7 (8)
|
||||
0x5b0|00 00 00 17 |.... | corr: 23 0x5b0-0x5b3.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x5b4-0x5bf.7 (12)
|
||||
0x5b0| 00 00 00 00 49 5c 07 97 | ....I\.. | occur: "2009-01-01T00:00:23Z" (1230768023) 0x5b4-0x5bb.7 (8)
|
||||
0x5b0| 00 00 00 18| ....| corr: 24 0x5bc-0x5bf.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x5c0-0x5cb.7 (12)
|
||||
0x5c0|00 00 00 00 4f ef 93 18 |....O... | occur: "2012-07-01T00:00:24Z" (1341100824) 0x5c0-0x5c7.7 (8)
|
||||
0x5c0| 00 00 00 19 | .... | corr: 25 0x5c8-0x5cb.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x5cc-0x5d7.7 (12)
|
||||
0x5c0| 00 00 00 00| ....| occur: "2015-07-01T00:00:25Z" (1435708825) 0x5cc-0x5d3.7 (8)
|
||||
0x5d0|55 93 2d 99 |U.-. |
|
||||
0x5d0| 00 00 00 1a | .... | corr: 26 0x5d4-0x5d7.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x5d8-0x5e3.7 (12)
|
||||
0x5d0| 00 00 00 00 58 68 46 9a| ....XhF.| occur: "2017-01-01T00:00:26Z" (1483228826) 0x5d8-0x5df.7 (8)
|
||||
0x5e0|00 00 00 1b |.... | corr: 27 0x5e0-0x5e3.7 (4)
|
||||
| | | standard_wall_indicators[0:6]: 0x5e4-0x5e9.7 (6)
|
||||
0x5e0| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x5e4-0x5e4.7 (1)
|
||||
0x5e0| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x5e5-0x5e5.7 (1)
|
||||
0x5e0| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x5e6-0x5e6.7 (1)
|
||||
0x5e0| 00 | . | [3]: 0 standard_wall_indicator (valid) 0x5e7-0x5e7.7 (1)
|
||||
0x5e0| 01 | . | [4]: 1 standard_wall_indicator (valid) 0x5e8-0x5e8.7 (1)
|
||||
0x5e0| 01 | . | [5]: 1 standard_wall_indicator (valid) 0x5e9-0x5e9.7 (1)
|
||||
| | | ut_local_indicators[0:0]: 0x5ea-NA (0)
|
||||
| | | footer{}: 0x5ea-0x5eb.7 (2)
|
||||
0x5e0| 0a | . | nl1: 10 (valid) 0x5ea-0x5ea.7 (1)
|
||||
| | | tz_string: "" 0x5eb-NA (0)
|
||||
0x5e0| 0a| | .| | nl2: 10 (valid) 0x5eb-0x5eb.7 (1)
|
BIN
format/tzif/testdata/Bahia
vendored
Normal file
BIN
format/tzif/testdata/Bahia
vendored
Normal file
Binary file not shown.
524
format/tzif/testdata/Bahia.fqtest
vendored
Normal file
524
format/tzif/testdata/Bahia.fqtest
vendored
Normal file
@ -0,0 +1,524 @@
|
||||
$ fq -d tzif dv Bahia
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: Bahia (tzif) 0x0-0x615.7 (1558)
|
||||
| | | v1header{}: 0x0-0x2b.7 (44)
|
||||
0x000|54 5a 69 66 |TZif | magic: 0x545a6966 (valid) 0x0-0x3.7 (4)
|
||||
0x000| 32 | 2 | ver: "2" (0x32) (valid) 0x4-0x4.7 (1)
|
||||
0x000| 00 00 00 00 00 00 00 00 00 00 00| ...........| reserved: raw bits 0x5-0x13.7 (15)
|
||||
0x010|00 00 00 00 |.... |
|
||||
0x010| 00 00 00 00 | .... | isutcnt: 0 0x14-0x17.7 (4)
|
||||
0x010| 00 00 00 00 | .... | isstdcnt: 0 0x18-0x1b.7 (4)
|
||||
0x010| 00 00 00 1b| ....| leapcnt: 27 0x1c-0x1f.7 (4)
|
||||
0x020|00 00 00 3e |...> | timecnt: 62 0x20-0x23.7 (4)
|
||||
0x020| 00 00 00 03 | .... | typecnt: 3 0x24-0x27.7 (4)
|
||||
0x020| 00 00 00 0c | .... | charcnt: 12 0x28-0x2b.7 (4)
|
||||
| | | v1datablock{}: 0x2c-0x257.7 (556)
|
||||
| | | transition_times[0:62]: 0x2c-0x123.7 (248)
|
||||
0x020| 96 aa 6b 1c| ..k.| [0]: "1914-01-01T02:34:04Z" (-1767216356) transition_time 0x2c-0x2f.7 (4)
|
||||
0x030|b8 0f 49 e0 |..I. | [1]: "1931-10-03T14:00:00Z" (-1206957600) transition_time 0x30-0x33.7 (4)
|
||||
0x030| b8 fd 40 a0 | ..@. | [2]: "1932-04-01T02:00:00Z" (-1191362400) transition_time 0x34-0x37.7 (4)
|
||||
0x030| b9 f1 34 30 | ..40 | [3]: "1932-10-03T03:00:00Z" (-1175374800) transition_time 0x38-0x3b.7 (4)
|
||||
0x030| ba de 74 20| ..t | [4]: "1933-04-01T02:00:00Z" (-1159826400) transition_time 0x3c-0x3f.7 (4)
|
||||
0x040|da 38 ae 30 |.8.0 | [5]: "1949-12-01T03:00:00Z" (-633819600) transition_time 0x40-0x43.7 (4)
|
||||
0x040| da eb fa 30 | ...0 | [6]: "1950-04-16T03:00:00Z" (-622069200) transition_time 0x44-0x47.7 (4)
|
||||
0x040| dc 19 e1 b0 | .... | [7]: "1950-12-01T03:00:00Z" (-602283600) transition_time 0x48-0x4b.7 (4)
|
||||
0x040| dc b9 59 20| ..Y | [8]: "1951-04-01T02:00:00Z" (-591832800) transition_time 0x4c-0x4f.7 (4)
|
||||
0x050|dd fb 15 30 |...0 | [9]: "1951-12-01T03:00:00Z" (-570747600) transition_time 0x50-0x53.7 (4)
|
||||
0x050| de 9b de 20 | ... | [10]: "1952-04-01T02:00:00Z" (-560210400) transition_time 0x54-0x57.7 (4)
|
||||
0x050| df dd 9a 30 | ...0 | [11]: "1952-12-01T03:00:00Z" (-539125200) transition_time 0x58-0x5b.7 (4)
|
||||
0x050| e0 54 33 20| .T3 | [12]: "1953-03-01T02:00:00Z" (-531352800) transition_time 0x5c-0x5f.7 (4)
|
||||
0x060|f4 97 ff b0 |.... | [13]: "1963-12-09T03:00:00Z" (-191365200) transition_time 0x60-0x63.7 (4)
|
||||
0x060| f5 05 5e 20 | ..^ | [14]: "1964-03-01T02:00:00Z" (-184197600) transition_time 0x64-0x67.7 (4)
|
||||
0x060| f6 c0 64 30 | ..d0 | [15]: "1965-01-31T03:00:00Z" (-155163600) transition_time 0x68-0x6b.7 (4)
|
||||
0x060| f7 0e 1e a0| ....| [16]: "1965-03-31T02:00:00Z" (-150069600) transition_time 0x6c-0x6f.7 (4)
|
||||
0x070|f8 51 2c 30 |.Q,0 | [17]: "1965-12-01T03:00:00Z" (-128898000) transition_time 0x70-0x73.7 (4)
|
||||
0x070| f8 c7 c5 20 | ... | [18]: "1966-03-01T02:00:00Z" (-121125600) transition_time 0x74-0x77.7 (4)
|
||||
0x070| fa 0a d2 b0 | .... | [19]: "1966-11-01T03:00:00Z" (-99954000) transition_time 0x78-0x7b.7 (4)
|
||||
0x070| fa a8 f8 a0| ....| [20]: "1967-03-01T02:00:00Z" (-89589600) transition_time 0x7c-0x7f.7 (4)
|
||||
0x080|fb ec 06 30 |...0 | [21]: "1967-11-01T03:00:00Z" (-68418000) transition_time 0x80-0x83.7 (4)
|
||||
0x080| fc 8b 7d a0 | ..}. | [22]: "1968-03-01T02:00:00Z" (-57967200) transition_time 0x84-0x87.7 (4)
|
||||
0x080| 1d c9 8e 3d | ...= | [23]: "1985-11-02T03:00:13Z" (499748413) transition_time 0x88-0x8b.7 (4)
|
||||
0x080| 1e 78 d7 ad| .x..| [24]: "1986-03-15T02:00:13Z" (511236013) transition_time 0x8c-0x8f.7 (4)
|
||||
0x090|1f a0 35 bd |..5. | [25]: "1986-10-25T03:00:13Z" (530593213) transition_time 0x90-0x93.7 (4)
|
||||
0x090| 20 33 cf ad | 3.. | [26]: "1987-02-14T02:00:13Z" (540266413) transition_time 0x94-0x97.7 (4)
|
||||
0x090| 21 81 69 3d | !.i= | [27]: "1987-10-25T03:00:13Z" (562129213) transition_time 0x98-0x9b.7 (4)
|
||||
0x090| 22 0b c8 ae| "...| [28]: "1988-02-07T02:00:14Z" (571197614) transition_time 0x9c-0x9f.7 (4)
|
||||
0x0a0|23 58 10 be |#X.. | [29]: "1988-10-16T03:00:14Z" (592974014) transition_time 0xa0-0xa3.7 (4)
|
||||
0x0a0| 23 e2 70 2e | #.p. | [30]: "1989-01-29T02:00:14Z" (602042414) transition_time 0xa4-0xa7.7 (4)
|
||||
0x0a0| 25 37 f2 be | %7.. | [31]: "1989-10-15T03:00:14Z" (624423614) transition_time 0xa8-0xab.7 (4)
|
||||
0x0a0| 25 d4 c7 2f| %../| [32]: "1990-02-11T02:00:15Z" (634701615) transition_time 0xac-0xaf.7 (4)
|
||||
0x0b0|27 21 0f 3f |'!.? | [33]: "1990-10-21T03:00:15Z" (656478015) transition_time 0xb0-0xb3.7 (4)
|
||||
0x0b0| 27 bd e3 b0 | '... | [34]: "1991-02-17T02:00:16Z" (666756016) transition_time 0xb4-0xb7.7 (4)
|
||||
0x0b0| 29 00 f1 40 | )..@ | [35]: "1991-10-20T03:00:16Z" (687927616) transition_time 0xb8-0xbb.7 (4)
|
||||
0x0b0| 29 94 8b 30| )..0| [36]: "1992-02-09T02:00:16Z" (697600816) transition_time 0xbc-0xbf.7 (4)
|
||||
0x0c0|2a ea 0d c1 |*... | [37]: "1992-10-25T03:00:17Z" (719982017) transition_time 0xc0-0xc3.7 (4)
|
||||
0x0c0| 2b 6b 32 b1 | +k2. | [38]: "1993-01-31T02:00:17Z" (728445617) transition_time 0xc4-0xc7.7 (4)
|
||||
0x0c0| 2c c0 b5 42 | ,..B | [39]: "1993-10-17T03:00:18Z" (750826818) transition_time 0xc8-0xcb.7 (4)
|
||||
0x0c0| 2d 66 c4 32| -f.2| [40]: "1994-02-20T02:00:18Z" (761709618) transition_time 0xcc-0xcf.7 (4)
|
||||
0x0d0|2e a0 97 43 |...C | [41]: "1994-10-16T03:00:19Z" (782276419) transition_time 0xd0-0xd3.7 (4)
|
||||
0x0d0| 2f 46 a6 33 | /F.3 | [42]: "1995-02-19T02:00:19Z" (793159219) transition_time 0xd4-0xd7.7 (4)
|
||||
0x0d0| 30 80 79 43 | 0.yC | [43]: "1995-10-15T03:00:19Z" (813726019) transition_time 0xd8-0xdb.7 (4)
|
||||
0x0d0| 31 1d 4d b4| 1.M.| [44]: "1996-02-11T02:00:20Z" (824004020) transition_time 0xdc-0xdf.7 (4)
|
||||
0x0e0|32 57 20 c4 |2W . | [45]: "1996-10-06T03:00:20Z" (844570820) transition_time 0xe0-0xe3.7 (4)
|
||||
0x0e0| 33 06 6a 34 | 3.j4 | [46]: "1997-02-16T02:00:20Z" (856058420) transition_time 0xe4-0xe7.7 (4)
|
||||
0x0e0| 34 38 54 45 | 48TE | [47]: "1997-10-06T03:00:21Z" (876106821) transition_time 0xe8-0xeb.7 (4)
|
||||
0x0e0| 34 f8 c1 35| 4..5| [48]: "1998-03-01T02:00:21Z" (888717621) transition_time 0xec-0xef.7 (4)
|
||||
0x0f0|36 20 1f 45 |6 .E | [49]: "1998-10-11T03:00:21Z" (908074821) transition_time 0xf0-0xf3.7 (4)
|
||||
0x0f0| 36 cf 68 b6 | 6.h. | [50]: "1999-02-21T02:00:22Z" (919562422) transition_time 0xf4-0xf7.7 (4)
|
||||
0x0f0| 37 f6 c6 c6 | 7... | [51]: "1999-10-03T03:00:22Z" (938919622) transition_time 0xf8-0xfb.7 (4)
|
||||
0x0f0| 38 b8 85 36| 8..6| [52]: "2000-02-27T02:00:22Z" (951616822) transition_time 0xfc-0xff.7 (4)
|
||||
0x100|39 df e3 46 |9..F | [53]: "2000-10-08T03:00:22Z" (970974022) transition_time 0x100-0x103.7 (4)
|
||||
0x100| 3a 8f 2c b6 | :.,. | [54]: "2001-02-18T02:00:22Z" (982461622) transition_time 0x104-0x107.7 (4)
|
||||
0x100| 3b c8 ff c6 | ;... | [55]: "2001-10-14T03:00:22Z" (1003028422) transition_time 0x108-0x10b.7 (4)
|
||||
0x100| 3c 6f 0e b6| <o..| [56]: "2002-02-17T02:00:22Z" (1013911222) transition_time 0x10c-0x10f.7 (4)
|
||||
0x110|3d c4 91 46 |=..F | [57]: "2002-11-03T03:00:22Z" (1036292422) transition_time 0x110-0x113.7 (4)
|
||||
0x110| 3e 4e f0 b6 | >N.. | [58]: "2003-02-16T02:00:22Z" (1045360822) transition_time 0x114-0x117.7 (4)
|
||||
0x110| 4e 9a 48 c8 | N.H. | [59]: "2011-10-16T03:00:24Z" (1318734024) transition_time 0x118-0x11b.7 (4)
|
||||
0x110| 4f 49 92 38| OI.8| [60]: "2012-02-26T02:00:24Z" (1330221624) transition_time 0x11c-0x11f.7 (4)
|
||||
0x120|64 9b 78 1b |d.x. | [61]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x120-0x123.7 (4)
|
||||
| | | transition_types[0:62]: 0x124-0x161.7 (62)
|
||||
0x120| 02 | . | [0]: 2 transition_type 0x124-0x124.7 (1)
|
||||
0x120| 01 | . | [1]: 1 transition_type 0x125-0x125.7 (1)
|
||||
0x120| 02 | . | [2]: 2 transition_type 0x126-0x126.7 (1)
|
||||
0x120| 01 | . | [3]: 1 transition_type 0x127-0x127.7 (1)
|
||||
0x120| 02 | . | [4]: 2 transition_type 0x128-0x128.7 (1)
|
||||
0x120| 01 | . | [5]: 1 transition_type 0x129-0x129.7 (1)
|
||||
0x120| 02 | . | [6]: 2 transition_type 0x12a-0x12a.7 (1)
|
||||
0x120| 01 | . | [7]: 1 transition_type 0x12b-0x12b.7 (1)
|
||||
0x120| 02 | . | [8]: 2 transition_type 0x12c-0x12c.7 (1)
|
||||
0x120| 01 | . | [9]: 1 transition_type 0x12d-0x12d.7 (1)
|
||||
0x120| 02 | . | [10]: 2 transition_type 0x12e-0x12e.7 (1)
|
||||
0x120| 01| .| [11]: 1 transition_type 0x12f-0x12f.7 (1)
|
||||
0x130|02 |. | [12]: 2 transition_type 0x130-0x130.7 (1)
|
||||
0x130| 01 | . | [13]: 1 transition_type 0x131-0x131.7 (1)
|
||||
0x130| 02 | . | [14]: 2 transition_type 0x132-0x132.7 (1)
|
||||
0x130| 01 | . | [15]: 1 transition_type 0x133-0x133.7 (1)
|
||||
0x130| 02 | . | [16]: 2 transition_type 0x134-0x134.7 (1)
|
||||
0x130| 01 | . | [17]: 1 transition_type 0x135-0x135.7 (1)
|
||||
0x130| 02 | . | [18]: 2 transition_type 0x136-0x136.7 (1)
|
||||
0x130| 01 | . | [19]: 1 transition_type 0x137-0x137.7 (1)
|
||||
0x130| 02 | . | [20]: 2 transition_type 0x138-0x138.7 (1)
|
||||
0x130| 01 | . | [21]: 1 transition_type 0x139-0x139.7 (1)
|
||||
0x130| 02 | . | [22]: 2 transition_type 0x13a-0x13a.7 (1)
|
||||
0x130| 01 | . | [23]: 1 transition_type 0x13b-0x13b.7 (1)
|
||||
0x130| 02 | . | [24]: 2 transition_type 0x13c-0x13c.7 (1)
|
||||
0x130| 01 | . | [25]: 1 transition_type 0x13d-0x13d.7 (1)
|
||||
0x130| 02 | . | [26]: 2 transition_type 0x13e-0x13e.7 (1)
|
||||
0x130| 01| .| [27]: 1 transition_type 0x13f-0x13f.7 (1)
|
||||
0x140|02 |. | [28]: 2 transition_type 0x140-0x140.7 (1)
|
||||
0x140| 01 | . | [29]: 1 transition_type 0x141-0x141.7 (1)
|
||||
0x140| 02 | . | [30]: 2 transition_type 0x142-0x142.7 (1)
|
||||
0x140| 01 | . | [31]: 1 transition_type 0x143-0x143.7 (1)
|
||||
0x140| 02 | . | [32]: 2 transition_type 0x144-0x144.7 (1)
|
||||
0x140| 01 | . | [33]: 1 transition_type 0x145-0x145.7 (1)
|
||||
0x140| 02 | . | [34]: 2 transition_type 0x146-0x146.7 (1)
|
||||
0x140| 01 | . | [35]: 1 transition_type 0x147-0x147.7 (1)
|
||||
0x140| 02 | . | [36]: 2 transition_type 0x148-0x148.7 (1)
|
||||
0x140| 01 | . | [37]: 1 transition_type 0x149-0x149.7 (1)
|
||||
0x140| 02 | . | [38]: 2 transition_type 0x14a-0x14a.7 (1)
|
||||
0x140| 01 | . | [39]: 1 transition_type 0x14b-0x14b.7 (1)
|
||||
0x140| 02 | . | [40]: 2 transition_type 0x14c-0x14c.7 (1)
|
||||
0x140| 01 | . | [41]: 1 transition_type 0x14d-0x14d.7 (1)
|
||||
0x140| 02 | . | [42]: 2 transition_type 0x14e-0x14e.7 (1)
|
||||
0x140| 01| .| [43]: 1 transition_type 0x14f-0x14f.7 (1)
|
||||
0x150|02 |. | [44]: 2 transition_type 0x150-0x150.7 (1)
|
||||
0x150| 01 | . | [45]: 1 transition_type 0x151-0x151.7 (1)
|
||||
0x150| 02 | . | [46]: 2 transition_type 0x152-0x152.7 (1)
|
||||
0x150| 01 | . | [47]: 1 transition_type 0x153-0x153.7 (1)
|
||||
0x150| 02 | . | [48]: 2 transition_type 0x154-0x154.7 (1)
|
||||
0x150| 01 | . | [49]: 1 transition_type 0x155-0x155.7 (1)
|
||||
0x150| 02 | . | [50]: 2 transition_type 0x156-0x156.7 (1)
|
||||
0x150| 01 | . | [51]: 1 transition_type 0x157-0x157.7 (1)
|
||||
0x150| 02 | . | [52]: 2 transition_type 0x158-0x158.7 (1)
|
||||
0x150| 01 | . | [53]: 1 transition_type 0x159-0x159.7 (1)
|
||||
0x150| 02 | . | [54]: 2 transition_type 0x15a-0x15a.7 (1)
|
||||
0x150| 01 | . | [55]: 1 transition_type 0x15b-0x15b.7 (1)
|
||||
0x150| 02 | . | [56]: 2 transition_type 0x15c-0x15c.7 (1)
|
||||
0x150| 01 | . | [57]: 1 transition_type 0x15d-0x15d.7 (1)
|
||||
0x150| 02 | . | [58]: 2 transition_type 0x15e-0x15e.7 (1)
|
||||
0x150| 01| .| [59]: 1 transition_type 0x15f-0x15f.7 (1)
|
||||
0x160|02 |. | [60]: 2 transition_type 0x160-0x160.7 (1)
|
||||
0x160| 02 | . | [61]: 2 transition_type 0x161-0x161.7 (1)
|
||||
| | | local_time_type_records[0:3]: 0x162-0x173.7 (18)
|
||||
| | | [0]{}: local_time_type 0x162-0x167.7 (6)
|
||||
0x160| ff ff db e4 | .... | utoff: -9244 (valid) 0x162-0x165.7 (4)
|
||||
0x160| 00 | . | dst: 0 (valid) 0x166-0x166.7 (1)
|
||||
0x160| 00 | . | idx: 0 (valid) 0x167-0x167.7 (1)
|
||||
| | | [1]{}: local_time_type 0x168-0x16d.7 (6)
|
||||
0x160| ff ff e3 e0 | .... | utoff: -7200 (valid) 0x168-0x16b.7 (4)
|
||||
0x160| 01 | . | dst: 1 (valid) 0x16c-0x16c.7 (1)
|
||||
0x160| 04 | . | idx: 4 (valid) 0x16d-0x16d.7 (1)
|
||||
| | | [2]{}: local_time_type 0x16e-0x173.7 (6)
|
||||
0x160| ff ff| ..| utoff: -10800 (valid) 0x16e-0x171.7 (4)
|
||||
0x170|d5 d0 |.. |
|
||||
0x170| 00 | . | dst: 0 (valid) 0x172-0x172.7 (1)
|
||||
0x170| 08 | . | idx: 8 (valid) 0x173-0x173.7 (1)
|
||||
| | | time_zone_designations[0:3]: 0x174-0x17f.7 (12)
|
||||
0x170| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x174-0x177.7 (4)
|
||||
0x170| 2d 30 32 00 | -02. | [1]: "-02" time_zone_designation 0x178-0x17b.7 (4)
|
||||
0x170| 2d 30 33 00| -03.| [2]: "-03" time_zone_designation 0x17c-0x17f.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x180-0x257.7 (216)
|
||||
| | | [0]{}: leap_second_record 0x180-0x187.7 (8)
|
||||
0x180|04 b2 58 00 |..X. | occur: "1972-07-01T00:00:00Z" (78796800) 0x180-0x183.7 (4)
|
||||
0x180| 00 00 00 01 | .... | corr: 1 0x184-0x187.7 (4)
|
||||
| | | [1]{}: leap_second_record 0x188-0x18f.7 (8)
|
||||
0x180| 05 a4 ec 01 | .... | occur: "1973-01-01T00:00:01Z" (94694401) 0x188-0x18b.7 (4)
|
||||
0x180| 00 00 00 02| ....| corr: 2 0x18c-0x18f.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x190-0x197.7 (8)
|
||||
0x190|07 86 1f 82 |.... | occur: "1974-01-01T00:00:02Z" (126230402) 0x190-0x193.7 (4)
|
||||
0x190| 00 00 00 03 | .... | corr: 3 0x194-0x197.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x198-0x19f.7 (8)
|
||||
0x190| 09 67 53 03 | .gS. | occur: "1975-01-01T00:00:03Z" (157766403) 0x198-0x19b.7 (4)
|
||||
0x190| 00 00 00 04| ....| corr: 4 0x19c-0x19f.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x1a0-0x1a7.7 (8)
|
||||
0x1a0|0b 48 86 84 |.H.. | occur: "1976-01-01T00:00:04Z" (189302404) 0x1a0-0x1a3.7 (4)
|
||||
0x1a0| 00 00 00 05 | .... | corr: 5 0x1a4-0x1a7.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x1a8-0x1af.7 (8)
|
||||
0x1a0| 0d 2b 0b 85 | .+.. | occur: "1977-01-01T00:00:05Z" (220924805) 0x1a8-0x1ab.7 (4)
|
||||
0x1a0| 00 00 00 06| ....| corr: 6 0x1ac-0x1af.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x1b0-0x1b7.7 (8)
|
||||
0x1b0|0f 0c 3f 06 |..?. | occur: "1978-01-01T00:00:06Z" (252460806) 0x1b0-0x1b3.7 (4)
|
||||
0x1b0| 00 00 00 07 | .... | corr: 7 0x1b4-0x1b7.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x1b8-0x1bf.7 (8)
|
||||
0x1b0| 10 ed 72 87 | ..r. | occur: "1979-01-01T00:00:07Z" (283996807) 0x1b8-0x1bb.7 (4)
|
||||
0x1b0| 00 00 00 08| ....| corr: 8 0x1bc-0x1bf.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x1c0-0x1c7.7 (8)
|
||||
0x1c0|12 ce a6 08 |.... | occur: "1980-01-01T00:00:08Z" (315532808) 0x1c0-0x1c3.7 (4)
|
||||
0x1c0| 00 00 00 09 | .... | corr: 9 0x1c4-0x1c7.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x1c8-0x1cf.7 (8)
|
||||
0x1c0| 15 9f ca 89 | .... | occur: "1981-07-01T00:00:09Z" (362793609) 0x1c8-0x1cb.7 (4)
|
||||
0x1c0| 00 00 00 0a| ....| corr: 10 0x1cc-0x1cf.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x1d0-0x1d7.7 (8)
|
||||
0x1d0|17 80 fe 0a |.... | occur: "1982-07-01T00:00:10Z" (394329610) 0x1d0-0x1d3.7 (4)
|
||||
0x1d0| 00 00 00 0b | .... | corr: 11 0x1d4-0x1d7.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x1d8-0x1df.7 (8)
|
||||
0x1d0| 19 62 31 8b | .b1. | occur: "1983-07-01T00:00:11Z" (425865611) 0x1d8-0x1db.7 (4)
|
||||
0x1d0| 00 00 00 0c| ....| corr: 12 0x1dc-0x1df.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x1e0-0x1e7.7 (8)
|
||||
0x1e0|1d 25 ea 0c |.%.. | occur: "1985-07-01T00:00:12Z" (489024012) 0x1e0-0x1e3.7 (4)
|
||||
0x1e0| 00 00 00 0d | .... | corr: 13 0x1e4-0x1e7.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x1e8-0x1ef.7 (8)
|
||||
0x1e0| 21 da e5 0d | !... | occur: "1988-01-01T00:00:13Z" (567993613) 0x1e8-0x1eb.7 (4)
|
||||
0x1e0| 00 00 00 0e| ....| corr: 14 0x1ec-0x1ef.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x1f0-0x1f7.7 (8)
|
||||
0x1f0|25 9e 9d 8e |%... | occur: "1990-01-01T00:00:14Z" (631152014) 0x1f0-0x1f3.7 (4)
|
||||
0x1f0| 00 00 00 0f | .... | corr: 15 0x1f4-0x1f7.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x1f8-0x1ff.7 (8)
|
||||
0x1f0| 27 7f d1 0f | '... | occur: "1991-01-01T00:00:15Z" (662688015) 0x1f8-0x1fb.7 (4)
|
||||
0x1f0| 00 00 00 10| ....| corr: 16 0x1fc-0x1ff.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x200-0x207.7 (8)
|
||||
0x200|2a 50 f5 90 |*P.. | occur: "1992-07-01T00:00:16Z" (709948816) 0x200-0x203.7 (4)
|
||||
0x200| 00 00 00 11 | .... | corr: 17 0x204-0x207.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x208-0x20f.7 (8)
|
||||
0x200| 2c 32 29 11 | ,2). | occur: "1993-07-01T00:00:17Z" (741484817) 0x208-0x20b.7 (4)
|
||||
0x200| 00 00 00 12| ....| corr: 18 0x20c-0x20f.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x210-0x217.7 (8)
|
||||
0x210|2e 13 5c 92 |..\. | occur: "1994-07-01T00:00:18Z" (773020818) 0x210-0x213.7 (4)
|
||||
0x210| 00 00 00 13 | .... | corr: 19 0x214-0x217.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x218-0x21f.7 (8)
|
||||
0x210| 30 e7 24 13 | 0.$. | occur: "1996-01-01T00:00:19Z" (820454419) 0x218-0x21b.7 (4)
|
||||
0x210| 00 00 00 14| ....| corr: 20 0x21c-0x21f.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x220-0x227.7 (8)
|
||||
0x220|33 b8 48 94 |3.H. | occur: "1997-07-01T00:00:20Z" (867715220) 0x220-0x223.7 (4)
|
||||
0x220| 00 00 00 15 | .... | corr: 21 0x224-0x227.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x228-0x22f.7 (8)
|
||||
0x220| 36 8c 10 15 | 6... | occur: "1999-01-01T00:00:21Z" (915148821) 0x228-0x22b.7 (4)
|
||||
0x220| 00 00 00 16| ....| corr: 22 0x22c-0x22f.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x230-0x237.7 (8)
|
||||
0x230|43 b7 1b 96 |C... | occur: "2006-01-01T00:00:22Z" (1136073622) 0x230-0x233.7 (4)
|
||||
0x230| 00 00 00 17 | .... | corr: 23 0x234-0x237.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x238-0x23f.7 (8)
|
||||
0x230| 49 5c 07 97 | I\.. | occur: "2009-01-01T00:00:23Z" (1230768023) 0x238-0x23b.7 (4)
|
||||
0x230| 00 00 00 18| ....| corr: 24 0x23c-0x23f.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x240-0x247.7 (8)
|
||||
0x240|4f ef 93 18 |O... | occur: "2012-07-01T00:00:24Z" (1341100824) 0x240-0x243.7 (4)
|
||||
0x240| 00 00 00 19 | .... | corr: 25 0x244-0x247.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x248-0x24f.7 (8)
|
||||
0x240| 55 93 2d 99 | U.-. | occur: "2015-07-01T00:00:25Z" (1435708825) 0x248-0x24b.7 (4)
|
||||
0x240| 00 00 00 1a| ....| corr: 26 0x24c-0x24f.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x250-0x257.7 (8)
|
||||
0x250|58 68 46 9a |XhF. | occur: "2017-01-01T00:00:26Z" (1483228826) 0x250-0x253.7 (4)
|
||||
0x250| 00 00 00 1b | .... | corr: 27 0x254-0x257.7 (4)
|
||||
| | | standard_wall_indicators[0:0]: 0x258-NA (0)
|
||||
| | | ut_local_indicators[0:0]: 0x258-NA (0)
|
||||
| | | v2plusheader{}: 0x258-0x283.7 (44)
|
||||
0x250| 54 5a 69 66 | TZif | magic: 0x545a6966 (valid) 0x258-0x25b.7 (4)
|
||||
0x250| 32 | 2 | ver: "2" (0x32) (valid) 0x25c-0x25c.7 (1)
|
||||
0x250| 00 00 00| ...| reserved: raw bits 0x25d-0x26b.7 (15)
|
||||
0x260|00 00 00 00 00 00 00 00 00 00 00 00 |............ |
|
||||
0x260| 00 00 00 00| ....| isutcnt: 0 0x26c-0x26f.7 (4)
|
||||
0x270|00 00 00 00 |.... | isstdcnt: 0 0x270-0x273.7 (4)
|
||||
0x270| 00 00 00 1b | .... | leapcnt: 27 0x274-0x277.7 (4)
|
||||
0x270| 00 00 00 3e | ...> | timecnt: 62 0x278-0x27b.7 (4)
|
||||
0x270| 00 00 00 03| ....| typecnt: 3 0x27c-0x27f.7 (4)
|
||||
0x280|00 00 00 0c |.... | charcnt: 12 0x280-0x283.7 (4)
|
||||
| | | v2plusdatablock{}: 0x284-0x613.7 (912)
|
||||
| | | transition_times[0:62]: 0x284-0x473.7 (496)
|
||||
0x280| ff ff ff ff 96 aa 6b 1c | ......k. | [0]: "1914-01-01T02:34:04Z" (-1767216356) transition_time 0x284-0x28b.7 (8)
|
||||
0x280| ff ff ff ff| ....| [1]: "1931-10-03T14:00:00Z" (-1206957600) transition_time 0x28c-0x293.7 (8)
|
||||
0x290|b8 0f 49 e0 |..I. |
|
||||
0x290| ff ff ff ff b8 fd 40 a0 | ......@. | [2]: "1932-04-01T02:00:00Z" (-1191362400) transition_time 0x294-0x29b.7 (8)
|
||||
0x290| ff ff ff ff| ....| [3]: "1932-10-03T03:00:00Z" (-1175374800) transition_time 0x29c-0x2a3.7 (8)
|
||||
0x2a0|b9 f1 34 30 |..40 |
|
||||
0x2a0| ff ff ff ff ba de 74 20 | ......t | [4]: "1933-04-01T02:00:00Z" (-1159826400) transition_time 0x2a4-0x2ab.7 (8)
|
||||
0x2a0| ff ff ff ff| ....| [5]: "1949-12-01T03:00:00Z" (-633819600) transition_time 0x2ac-0x2b3.7 (8)
|
||||
0x2b0|da 38 ae 30 |.8.0 |
|
||||
0x2b0| ff ff ff ff da eb fa 30 | .......0 | [6]: "1950-04-16T03:00:00Z" (-622069200) transition_time 0x2b4-0x2bb.7 (8)
|
||||
0x2b0| ff ff ff ff| ....| [7]: "1950-12-01T03:00:00Z" (-602283600) transition_time 0x2bc-0x2c3.7 (8)
|
||||
0x2c0|dc 19 e1 b0 |.... |
|
||||
0x2c0| ff ff ff ff dc b9 59 20 | ......Y | [8]: "1951-04-01T02:00:00Z" (-591832800) transition_time 0x2c4-0x2cb.7 (8)
|
||||
0x2c0| ff ff ff ff| ....| [9]: "1951-12-01T03:00:00Z" (-570747600) transition_time 0x2cc-0x2d3.7 (8)
|
||||
0x2d0|dd fb 15 30 |...0 |
|
||||
0x2d0| ff ff ff ff de 9b de 20 | ....... | [10]: "1952-04-01T02:00:00Z" (-560210400) transition_time 0x2d4-0x2db.7 (8)
|
||||
0x2d0| ff ff ff ff| ....| [11]: "1952-12-01T03:00:00Z" (-539125200) transition_time 0x2dc-0x2e3.7 (8)
|
||||
0x2e0|df dd 9a 30 |...0 |
|
||||
0x2e0| ff ff ff ff e0 54 33 20 | .....T3 | [12]: "1953-03-01T02:00:00Z" (-531352800) transition_time 0x2e4-0x2eb.7 (8)
|
||||
0x2e0| ff ff ff ff| ....| [13]: "1963-12-09T03:00:00Z" (-191365200) transition_time 0x2ec-0x2f3.7 (8)
|
||||
0x2f0|f4 97 ff b0 |.... |
|
||||
0x2f0| ff ff ff ff f5 05 5e 20 | ......^ | [14]: "1964-03-01T02:00:00Z" (-184197600) transition_time 0x2f4-0x2fb.7 (8)
|
||||
0x2f0| ff ff ff ff| ....| [15]: "1965-01-31T03:00:00Z" (-155163600) transition_time 0x2fc-0x303.7 (8)
|
||||
0x300|f6 c0 64 30 |..d0 |
|
||||
0x300| ff ff ff ff f7 0e 1e a0 | ........ | [16]: "1965-03-31T02:00:00Z" (-150069600) transition_time 0x304-0x30b.7 (8)
|
||||
0x300| ff ff ff ff| ....| [17]: "1965-12-01T03:00:00Z" (-128898000) transition_time 0x30c-0x313.7 (8)
|
||||
0x310|f8 51 2c 30 |.Q,0 |
|
||||
0x310| ff ff ff ff f8 c7 c5 20 | ....... | [18]: "1966-03-01T02:00:00Z" (-121125600) transition_time 0x314-0x31b.7 (8)
|
||||
0x310| ff ff ff ff| ....| [19]: "1966-11-01T03:00:00Z" (-99954000) transition_time 0x31c-0x323.7 (8)
|
||||
0x320|fa 0a d2 b0 |.... |
|
||||
0x320| ff ff ff ff fa a8 f8 a0 | ........ | [20]: "1967-03-01T02:00:00Z" (-89589600) transition_time 0x324-0x32b.7 (8)
|
||||
0x320| ff ff ff ff| ....| [21]: "1967-11-01T03:00:00Z" (-68418000) transition_time 0x32c-0x333.7 (8)
|
||||
0x330|fb ec 06 30 |...0 |
|
||||
0x330| ff ff ff ff fc 8b 7d a0 | ......}. | [22]: "1968-03-01T02:00:00Z" (-57967200) transition_time 0x334-0x33b.7 (8)
|
||||
0x330| 00 00 00 00| ....| [23]: "1985-11-02T03:00:13Z" (499748413) transition_time 0x33c-0x343.7 (8)
|
||||
0x340|1d c9 8e 3d |...= |
|
||||
0x340| 00 00 00 00 1e 78 d7 ad | .....x.. | [24]: "1986-03-15T02:00:13Z" (511236013) transition_time 0x344-0x34b.7 (8)
|
||||
0x340| 00 00 00 00| ....| [25]: "1986-10-25T03:00:13Z" (530593213) transition_time 0x34c-0x353.7 (8)
|
||||
0x350|1f a0 35 bd |..5. |
|
||||
0x350| 00 00 00 00 20 33 cf ad | .... 3.. | [26]: "1987-02-14T02:00:13Z" (540266413) transition_time 0x354-0x35b.7 (8)
|
||||
0x350| 00 00 00 00| ....| [27]: "1987-10-25T03:00:13Z" (562129213) transition_time 0x35c-0x363.7 (8)
|
||||
0x360|21 81 69 3d |!.i= |
|
||||
0x360| 00 00 00 00 22 0b c8 ae | ...."... | [28]: "1988-02-07T02:00:14Z" (571197614) transition_time 0x364-0x36b.7 (8)
|
||||
0x360| 00 00 00 00| ....| [29]: "1988-10-16T03:00:14Z" (592974014) transition_time 0x36c-0x373.7 (8)
|
||||
0x370|23 58 10 be |#X.. |
|
||||
0x370| 00 00 00 00 23 e2 70 2e | ....#.p. | [30]: "1989-01-29T02:00:14Z" (602042414) transition_time 0x374-0x37b.7 (8)
|
||||
0x370| 00 00 00 00| ....| [31]: "1989-10-15T03:00:14Z" (624423614) transition_time 0x37c-0x383.7 (8)
|
||||
0x380|25 37 f2 be |%7.. |
|
||||
0x380| 00 00 00 00 25 d4 c7 2f | ....%../ | [32]: "1990-02-11T02:00:15Z" (634701615) transition_time 0x384-0x38b.7 (8)
|
||||
0x380| 00 00 00 00| ....| [33]: "1990-10-21T03:00:15Z" (656478015) transition_time 0x38c-0x393.7 (8)
|
||||
0x390|27 21 0f 3f |'!.? |
|
||||
0x390| 00 00 00 00 27 bd e3 b0 | ....'... | [34]: "1991-02-17T02:00:16Z" (666756016) transition_time 0x394-0x39b.7 (8)
|
||||
0x390| 00 00 00 00| ....| [35]: "1991-10-20T03:00:16Z" (687927616) transition_time 0x39c-0x3a3.7 (8)
|
||||
0x3a0|29 00 f1 40 |)..@ |
|
||||
0x3a0| 00 00 00 00 29 94 8b 30 | ....)..0 | [36]: "1992-02-09T02:00:16Z" (697600816) transition_time 0x3a4-0x3ab.7 (8)
|
||||
0x3a0| 00 00 00 00| ....| [37]: "1992-10-25T03:00:17Z" (719982017) transition_time 0x3ac-0x3b3.7 (8)
|
||||
0x3b0|2a ea 0d c1 |*... |
|
||||
0x3b0| 00 00 00 00 2b 6b 32 b1 | ....+k2. | [38]: "1993-01-31T02:00:17Z" (728445617) transition_time 0x3b4-0x3bb.7 (8)
|
||||
0x3b0| 00 00 00 00| ....| [39]: "1993-10-17T03:00:18Z" (750826818) transition_time 0x3bc-0x3c3.7 (8)
|
||||
0x3c0|2c c0 b5 42 |,..B |
|
||||
0x3c0| 00 00 00 00 2d 66 c4 32 | ....-f.2 | [40]: "1994-02-20T02:00:18Z" (761709618) transition_time 0x3c4-0x3cb.7 (8)
|
||||
0x3c0| 00 00 00 00| ....| [41]: "1994-10-16T03:00:19Z" (782276419) transition_time 0x3cc-0x3d3.7 (8)
|
||||
0x3d0|2e a0 97 43 |...C |
|
||||
0x3d0| 00 00 00 00 2f 46 a6 33 | ..../F.3 | [42]: "1995-02-19T02:00:19Z" (793159219) transition_time 0x3d4-0x3db.7 (8)
|
||||
0x3d0| 00 00 00 00| ....| [43]: "1995-10-15T03:00:19Z" (813726019) transition_time 0x3dc-0x3e3.7 (8)
|
||||
0x3e0|30 80 79 43 |0.yC |
|
||||
0x3e0| 00 00 00 00 31 1d 4d b4 | ....1.M. | [44]: "1996-02-11T02:00:20Z" (824004020) transition_time 0x3e4-0x3eb.7 (8)
|
||||
0x3e0| 00 00 00 00| ....| [45]: "1996-10-06T03:00:20Z" (844570820) transition_time 0x3ec-0x3f3.7 (8)
|
||||
0x3f0|32 57 20 c4 |2W . |
|
||||
0x3f0| 00 00 00 00 33 06 6a 34 | ....3.j4 | [46]: "1997-02-16T02:00:20Z" (856058420) transition_time 0x3f4-0x3fb.7 (8)
|
||||
0x3f0| 00 00 00 00| ....| [47]: "1997-10-06T03:00:21Z" (876106821) transition_time 0x3fc-0x403.7 (8)
|
||||
0x400|34 38 54 45 |48TE |
|
||||
0x400| 00 00 00 00 34 f8 c1 35 | ....4..5 | [48]: "1998-03-01T02:00:21Z" (888717621) transition_time 0x404-0x40b.7 (8)
|
||||
0x400| 00 00 00 00| ....| [49]: "1998-10-11T03:00:21Z" (908074821) transition_time 0x40c-0x413.7 (8)
|
||||
0x410|36 20 1f 45 |6 .E |
|
||||
0x410| 00 00 00 00 36 cf 68 b6 | ....6.h. | [50]: "1999-02-21T02:00:22Z" (919562422) transition_time 0x414-0x41b.7 (8)
|
||||
0x410| 00 00 00 00| ....| [51]: "1999-10-03T03:00:22Z" (938919622) transition_time 0x41c-0x423.7 (8)
|
||||
0x420|37 f6 c6 c6 |7... |
|
||||
0x420| 00 00 00 00 38 b8 85 36 | ....8..6 | [52]: "2000-02-27T02:00:22Z" (951616822) transition_time 0x424-0x42b.7 (8)
|
||||
0x420| 00 00 00 00| ....| [53]: "2000-10-08T03:00:22Z" (970974022) transition_time 0x42c-0x433.7 (8)
|
||||
0x430|39 df e3 46 |9..F |
|
||||
0x430| 00 00 00 00 3a 8f 2c b6 | ....:.,. | [54]: "2001-02-18T02:00:22Z" (982461622) transition_time 0x434-0x43b.7 (8)
|
||||
0x430| 00 00 00 00| ....| [55]: "2001-10-14T03:00:22Z" (1003028422) transition_time 0x43c-0x443.7 (8)
|
||||
0x440|3b c8 ff c6 |;... |
|
||||
0x440| 00 00 00 00 3c 6f 0e b6 | ....<o.. | [56]: "2002-02-17T02:00:22Z" (1013911222) transition_time 0x444-0x44b.7 (8)
|
||||
0x440| 00 00 00 00| ....| [57]: "2002-11-03T03:00:22Z" (1036292422) transition_time 0x44c-0x453.7 (8)
|
||||
0x450|3d c4 91 46 |=..F |
|
||||
0x450| 00 00 00 00 3e 4e f0 b6 | ....>N.. | [58]: "2003-02-16T02:00:22Z" (1045360822) transition_time 0x454-0x45b.7 (8)
|
||||
0x450| 00 00 00 00| ....| [59]: "2011-10-16T03:00:24Z" (1318734024) transition_time 0x45c-0x463.7 (8)
|
||||
0x460|4e 9a 48 c8 |N.H. |
|
||||
0x460| 00 00 00 00 4f 49 92 38 | ....OI.8 | [60]: "2012-02-26T02:00:24Z" (1330221624) transition_time 0x464-0x46b.7 (8)
|
||||
0x460| 00 00 00 00| ....| [61]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x46c-0x473.7 (8)
|
||||
0x470|64 9b 78 1b |d.x. |
|
||||
| | | transition_types[0:62]: 0x474-0x4b1.7 (62)
|
||||
0x470| 02 | . | [0]: 2 transition_type 0x474-0x474.7 (1)
|
||||
0x470| 01 | . | [1]: 1 transition_type 0x475-0x475.7 (1)
|
||||
0x470| 02 | . | [2]: 2 transition_type 0x476-0x476.7 (1)
|
||||
0x470| 01 | . | [3]: 1 transition_type 0x477-0x477.7 (1)
|
||||
0x470| 02 | . | [4]: 2 transition_type 0x478-0x478.7 (1)
|
||||
0x470| 01 | . | [5]: 1 transition_type 0x479-0x479.7 (1)
|
||||
0x470| 02 | . | [6]: 2 transition_type 0x47a-0x47a.7 (1)
|
||||
0x470| 01 | . | [7]: 1 transition_type 0x47b-0x47b.7 (1)
|
||||
0x470| 02 | . | [8]: 2 transition_type 0x47c-0x47c.7 (1)
|
||||
0x470| 01 | . | [9]: 1 transition_type 0x47d-0x47d.7 (1)
|
||||
0x470| 02 | . | [10]: 2 transition_type 0x47e-0x47e.7 (1)
|
||||
0x470| 01| .| [11]: 1 transition_type 0x47f-0x47f.7 (1)
|
||||
0x480|02 |. | [12]: 2 transition_type 0x480-0x480.7 (1)
|
||||
0x480| 01 | . | [13]: 1 transition_type 0x481-0x481.7 (1)
|
||||
0x480| 02 | . | [14]: 2 transition_type 0x482-0x482.7 (1)
|
||||
0x480| 01 | . | [15]: 1 transition_type 0x483-0x483.7 (1)
|
||||
0x480| 02 | . | [16]: 2 transition_type 0x484-0x484.7 (1)
|
||||
0x480| 01 | . | [17]: 1 transition_type 0x485-0x485.7 (1)
|
||||
0x480| 02 | . | [18]: 2 transition_type 0x486-0x486.7 (1)
|
||||
0x480| 01 | . | [19]: 1 transition_type 0x487-0x487.7 (1)
|
||||
0x480| 02 | . | [20]: 2 transition_type 0x488-0x488.7 (1)
|
||||
0x480| 01 | . | [21]: 1 transition_type 0x489-0x489.7 (1)
|
||||
0x480| 02 | . | [22]: 2 transition_type 0x48a-0x48a.7 (1)
|
||||
0x480| 01 | . | [23]: 1 transition_type 0x48b-0x48b.7 (1)
|
||||
0x480| 02 | . | [24]: 2 transition_type 0x48c-0x48c.7 (1)
|
||||
0x480| 01 | . | [25]: 1 transition_type 0x48d-0x48d.7 (1)
|
||||
0x480| 02 | . | [26]: 2 transition_type 0x48e-0x48e.7 (1)
|
||||
0x480| 01| .| [27]: 1 transition_type 0x48f-0x48f.7 (1)
|
||||
0x490|02 |. | [28]: 2 transition_type 0x490-0x490.7 (1)
|
||||
0x490| 01 | . | [29]: 1 transition_type 0x491-0x491.7 (1)
|
||||
0x490| 02 | . | [30]: 2 transition_type 0x492-0x492.7 (1)
|
||||
0x490| 01 | . | [31]: 1 transition_type 0x493-0x493.7 (1)
|
||||
0x490| 02 | . | [32]: 2 transition_type 0x494-0x494.7 (1)
|
||||
0x490| 01 | . | [33]: 1 transition_type 0x495-0x495.7 (1)
|
||||
0x490| 02 | . | [34]: 2 transition_type 0x496-0x496.7 (1)
|
||||
0x490| 01 | . | [35]: 1 transition_type 0x497-0x497.7 (1)
|
||||
0x490| 02 | . | [36]: 2 transition_type 0x498-0x498.7 (1)
|
||||
0x490| 01 | . | [37]: 1 transition_type 0x499-0x499.7 (1)
|
||||
0x490| 02 | . | [38]: 2 transition_type 0x49a-0x49a.7 (1)
|
||||
0x490| 01 | . | [39]: 1 transition_type 0x49b-0x49b.7 (1)
|
||||
0x490| 02 | . | [40]: 2 transition_type 0x49c-0x49c.7 (1)
|
||||
0x490| 01 | . | [41]: 1 transition_type 0x49d-0x49d.7 (1)
|
||||
0x490| 02 | . | [42]: 2 transition_type 0x49e-0x49e.7 (1)
|
||||
0x490| 01| .| [43]: 1 transition_type 0x49f-0x49f.7 (1)
|
||||
0x4a0|02 |. | [44]: 2 transition_type 0x4a0-0x4a0.7 (1)
|
||||
0x4a0| 01 | . | [45]: 1 transition_type 0x4a1-0x4a1.7 (1)
|
||||
0x4a0| 02 | . | [46]: 2 transition_type 0x4a2-0x4a2.7 (1)
|
||||
0x4a0| 01 | . | [47]: 1 transition_type 0x4a3-0x4a3.7 (1)
|
||||
0x4a0| 02 | . | [48]: 2 transition_type 0x4a4-0x4a4.7 (1)
|
||||
0x4a0| 01 | . | [49]: 1 transition_type 0x4a5-0x4a5.7 (1)
|
||||
0x4a0| 02 | . | [50]: 2 transition_type 0x4a6-0x4a6.7 (1)
|
||||
0x4a0| 01 | . | [51]: 1 transition_type 0x4a7-0x4a7.7 (1)
|
||||
0x4a0| 02 | . | [52]: 2 transition_type 0x4a8-0x4a8.7 (1)
|
||||
0x4a0| 01 | . | [53]: 1 transition_type 0x4a9-0x4a9.7 (1)
|
||||
0x4a0| 02 | . | [54]: 2 transition_type 0x4aa-0x4aa.7 (1)
|
||||
0x4a0| 01 | . | [55]: 1 transition_type 0x4ab-0x4ab.7 (1)
|
||||
0x4a0| 02 | . | [56]: 2 transition_type 0x4ac-0x4ac.7 (1)
|
||||
0x4a0| 01 | . | [57]: 1 transition_type 0x4ad-0x4ad.7 (1)
|
||||
0x4a0| 02 | . | [58]: 2 transition_type 0x4ae-0x4ae.7 (1)
|
||||
0x4a0| 01| .| [59]: 1 transition_type 0x4af-0x4af.7 (1)
|
||||
0x4b0|02 |. | [60]: 2 transition_type 0x4b0-0x4b0.7 (1)
|
||||
0x4b0| 02 | . | [61]: 2 transition_type 0x4b1-0x4b1.7 (1)
|
||||
| | | local_time_type_records[0:3]: 0x4b2-0x4c3.7 (18)
|
||||
| | | [0]{}: local_time_type 0x4b2-0x4b7.7 (6)
|
||||
0x4b0| ff ff db e4 | .... | utoff: -9244 (valid) 0x4b2-0x4b5.7 (4)
|
||||
0x4b0| 00 | . | dst: 0 (valid) 0x4b6-0x4b6.7 (1)
|
||||
0x4b0| 00 | . | idx: 0 (valid) 0x4b7-0x4b7.7 (1)
|
||||
| | | [1]{}: local_time_type 0x4b8-0x4bd.7 (6)
|
||||
0x4b0| ff ff e3 e0 | .... | utoff: -7200 (valid) 0x4b8-0x4bb.7 (4)
|
||||
0x4b0| 01 | . | dst: 1 (valid) 0x4bc-0x4bc.7 (1)
|
||||
0x4b0| 04 | . | idx: 4 (valid) 0x4bd-0x4bd.7 (1)
|
||||
| | | [2]{}: local_time_type 0x4be-0x4c3.7 (6)
|
||||
0x4b0| ff ff| ..| utoff: -10800 (valid) 0x4be-0x4c1.7 (4)
|
||||
0x4c0|d5 d0 |.. |
|
||||
0x4c0| 00 | . | dst: 0 (valid) 0x4c2-0x4c2.7 (1)
|
||||
0x4c0| 08 | . | idx: 8 (valid) 0x4c3-0x4c3.7 (1)
|
||||
| | | time_zone_designations[0:3]: 0x4c4-0x4cf.7 (12)
|
||||
0x4c0| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x4c4-0x4c7.7 (4)
|
||||
0x4c0| 2d 30 32 00 | -02. | [1]: "-02" time_zone_designation 0x4c8-0x4cb.7 (4)
|
||||
0x4c0| 2d 30 33 00| -03.| [2]: "-03" time_zone_designation 0x4cc-0x4cf.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x4d0-0x613.7 (324)
|
||||
| | | [0]{}: leap_second_record 0x4d0-0x4db.7 (12)
|
||||
0x4d0|00 00 00 00 04 b2 58 00 |......X. | occur: "1972-07-01T00:00:00Z" (78796800) 0x4d0-0x4d7.7 (8)
|
||||
0x4d0| 00 00 00 01 | .... | corr: 1 0x4d8-0x4db.7 (4)
|
||||
| | | [1]{}: leap_second_record 0x4dc-0x4e7.7 (12)
|
||||
0x4d0| 00 00 00 00| ....| occur: "1973-01-01T00:00:01Z" (94694401) 0x4dc-0x4e3.7 (8)
|
||||
0x4e0|05 a4 ec 01 |.... |
|
||||
0x4e0| 00 00 00 02 | .... | corr: 2 0x4e4-0x4e7.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x4e8-0x4f3.7 (12)
|
||||
0x4e0| 00 00 00 00 07 86 1f 82| ........| occur: "1974-01-01T00:00:02Z" (126230402) 0x4e8-0x4ef.7 (8)
|
||||
0x4f0|00 00 00 03 |.... | corr: 3 0x4f0-0x4f3.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x4f4-0x4ff.7 (12)
|
||||
0x4f0| 00 00 00 00 09 67 53 03 | .....gS. | occur: "1975-01-01T00:00:03Z" (157766403) 0x4f4-0x4fb.7 (8)
|
||||
0x4f0| 00 00 00 04| ....| corr: 4 0x4fc-0x4ff.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x500-0x50b.7 (12)
|
||||
0x500|00 00 00 00 0b 48 86 84 |.....H.. | occur: "1976-01-01T00:00:04Z" (189302404) 0x500-0x507.7 (8)
|
||||
0x500| 00 00 00 05 | .... | corr: 5 0x508-0x50b.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x50c-0x517.7 (12)
|
||||
0x500| 00 00 00 00| ....| occur: "1977-01-01T00:00:05Z" (220924805) 0x50c-0x513.7 (8)
|
||||
0x510|0d 2b 0b 85 |.+.. |
|
||||
0x510| 00 00 00 06 | .... | corr: 6 0x514-0x517.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x518-0x523.7 (12)
|
||||
0x510| 00 00 00 00 0f 0c 3f 06| ......?.| occur: "1978-01-01T00:00:06Z" (252460806) 0x518-0x51f.7 (8)
|
||||
0x520|00 00 00 07 |.... | corr: 7 0x520-0x523.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x524-0x52f.7 (12)
|
||||
0x520| 00 00 00 00 10 ed 72 87 | ......r. | occur: "1979-01-01T00:00:07Z" (283996807) 0x524-0x52b.7 (8)
|
||||
0x520| 00 00 00 08| ....| corr: 8 0x52c-0x52f.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x530-0x53b.7 (12)
|
||||
0x530|00 00 00 00 12 ce a6 08 |........ | occur: "1980-01-01T00:00:08Z" (315532808) 0x530-0x537.7 (8)
|
||||
0x530| 00 00 00 09 | .... | corr: 9 0x538-0x53b.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x53c-0x547.7 (12)
|
||||
0x530| 00 00 00 00| ....| occur: "1981-07-01T00:00:09Z" (362793609) 0x53c-0x543.7 (8)
|
||||
0x540|15 9f ca 89 |.... |
|
||||
0x540| 00 00 00 0a | .... | corr: 10 0x544-0x547.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x548-0x553.7 (12)
|
||||
0x540| 00 00 00 00 17 80 fe 0a| ........| occur: "1982-07-01T00:00:10Z" (394329610) 0x548-0x54f.7 (8)
|
||||
0x550|00 00 00 0b |.... | corr: 11 0x550-0x553.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x554-0x55f.7 (12)
|
||||
0x550| 00 00 00 00 19 62 31 8b | .....b1. | occur: "1983-07-01T00:00:11Z" (425865611) 0x554-0x55b.7 (8)
|
||||
0x550| 00 00 00 0c| ....| corr: 12 0x55c-0x55f.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x560-0x56b.7 (12)
|
||||
0x560|00 00 00 00 1d 25 ea 0c |.....%.. | occur: "1985-07-01T00:00:12Z" (489024012) 0x560-0x567.7 (8)
|
||||
0x560| 00 00 00 0d | .... | corr: 13 0x568-0x56b.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x56c-0x577.7 (12)
|
||||
0x560| 00 00 00 00| ....| occur: "1988-01-01T00:00:13Z" (567993613) 0x56c-0x573.7 (8)
|
||||
0x570|21 da e5 0d |!... |
|
||||
0x570| 00 00 00 0e | .... | corr: 14 0x574-0x577.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x578-0x583.7 (12)
|
||||
0x570| 00 00 00 00 25 9e 9d 8e| ....%...| occur: "1990-01-01T00:00:14Z" (631152014) 0x578-0x57f.7 (8)
|
||||
0x580|00 00 00 0f |.... | corr: 15 0x580-0x583.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x584-0x58f.7 (12)
|
||||
0x580| 00 00 00 00 27 7f d1 0f | ....'... | occur: "1991-01-01T00:00:15Z" (662688015) 0x584-0x58b.7 (8)
|
||||
0x580| 00 00 00 10| ....| corr: 16 0x58c-0x58f.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x590-0x59b.7 (12)
|
||||
0x590|00 00 00 00 2a 50 f5 90 |....*P.. | occur: "1992-07-01T00:00:16Z" (709948816) 0x590-0x597.7 (8)
|
||||
0x590| 00 00 00 11 | .... | corr: 17 0x598-0x59b.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x59c-0x5a7.7 (12)
|
||||
0x590| 00 00 00 00| ....| occur: "1993-07-01T00:00:17Z" (741484817) 0x59c-0x5a3.7 (8)
|
||||
0x5a0|2c 32 29 11 |,2). |
|
||||
0x5a0| 00 00 00 12 | .... | corr: 18 0x5a4-0x5a7.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x5a8-0x5b3.7 (12)
|
||||
0x5a0| 00 00 00 00 2e 13 5c 92| ......\.| occur: "1994-07-01T00:00:18Z" (773020818) 0x5a8-0x5af.7 (8)
|
||||
0x5b0|00 00 00 13 |.... | corr: 19 0x5b0-0x5b3.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x5b4-0x5bf.7 (12)
|
||||
0x5b0| 00 00 00 00 30 e7 24 13 | ....0.$. | occur: "1996-01-01T00:00:19Z" (820454419) 0x5b4-0x5bb.7 (8)
|
||||
0x5b0| 00 00 00 14| ....| corr: 20 0x5bc-0x5bf.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x5c0-0x5cb.7 (12)
|
||||
0x5c0|00 00 00 00 33 b8 48 94 |....3.H. | occur: "1997-07-01T00:00:20Z" (867715220) 0x5c0-0x5c7.7 (8)
|
||||
0x5c0| 00 00 00 15 | .... | corr: 21 0x5c8-0x5cb.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x5cc-0x5d7.7 (12)
|
||||
0x5c0| 00 00 00 00| ....| occur: "1999-01-01T00:00:21Z" (915148821) 0x5cc-0x5d3.7 (8)
|
||||
0x5d0|36 8c 10 15 |6... |
|
||||
0x5d0| 00 00 00 16 | .... | corr: 22 0x5d4-0x5d7.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x5d8-0x5e3.7 (12)
|
||||
0x5d0| 00 00 00 00 43 b7 1b 96| ....C...| occur: "2006-01-01T00:00:22Z" (1136073622) 0x5d8-0x5df.7 (8)
|
||||
0x5e0|00 00 00 17 |.... | corr: 23 0x5e0-0x5e3.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x5e4-0x5ef.7 (12)
|
||||
0x5e0| 00 00 00 00 49 5c 07 97 | ....I\.. | occur: "2009-01-01T00:00:23Z" (1230768023) 0x5e4-0x5eb.7 (8)
|
||||
0x5e0| 00 00 00 18| ....| corr: 24 0x5ec-0x5ef.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x5f0-0x5fb.7 (12)
|
||||
0x5f0|00 00 00 00 4f ef 93 18 |....O... | occur: "2012-07-01T00:00:24Z" (1341100824) 0x5f0-0x5f7.7 (8)
|
||||
0x5f0| 00 00 00 19 | .... | corr: 25 0x5f8-0x5fb.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x5fc-0x607.7 (12)
|
||||
0x5f0| 00 00 00 00| ....| occur: "2015-07-01T00:00:25Z" (1435708825) 0x5fc-0x603.7 (8)
|
||||
0x600|55 93 2d 99 |U.-. |
|
||||
0x600| 00 00 00 1a | .... | corr: 26 0x604-0x607.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x608-0x613.7 (12)
|
||||
0x600| 00 00 00 00 58 68 46 9a| ....XhF.| occur: "2017-01-01T00:00:26Z" (1483228826) 0x608-0x60f.7 (8)
|
||||
0x610|00 00 00 1b |.... | corr: 27 0x610-0x613.7 (4)
|
||||
| | | standard_wall_indicators[0:0]: 0x614-NA (0)
|
||||
| | | ut_local_indicators[0:0]: 0x614-NA (0)
|
||||
| | | footer{}: 0x614-0x615.7 (2)
|
||||
0x610| 0a | . | nl1: 10 (valid) 0x614-0x614.7 (1)
|
||||
| | | tz_string: "" 0x615-NA (0)
|
||||
0x610| 0a| | .| | nl2: 10 (valid) 0x615-0x615.7 (1)
|
BIN
format/tzif/testdata/Bahia_Banderas
vendored
Normal file
BIN
format/tzif/testdata/Bahia_Banderas
vendored
Normal file
Binary file not shown.
578
format/tzif/testdata/Bahia_Banderas.fqtest
vendored
Normal file
578
format/tzif/testdata/Bahia_Banderas.fqtest
vendored
Normal file
@ -0,0 +1,578 @@
|
||||
$ fq -d tzif dv Bahia_Banderas
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: Bahia_Banderas (tzif) 0x0-0x6a5.7 (1702)
|
||||
| | | v1header{}: 0x0-0x2b.7 (44)
|
||||
0x000|54 5a 69 66 |TZif | magic: 0x545a6966 (valid) 0x0-0x3.7 (4)
|
||||
0x000| 32 | 2 | ver: "2" (0x32) (valid) 0x4-0x4.7 (1)
|
||||
0x000| 00 00 00 00 00 00 00 00 00 00 00| ...........| reserved: raw bits 0x5-0x13.7 (15)
|
||||
0x010|00 00 00 00 |.... |
|
||||
0x010| 00 00 00 08 | .... | isutcnt: 8 0x14-0x17.7 (4)
|
||||
0x010| 00 00 00 08 | .... | isstdcnt: 8 0x18-0x1b.7 (4)
|
||||
0x010| 00 00 00 1b| ....| leapcnt: 27 0x1c-0x1f.7 (4)
|
||||
0x020|00 00 00 40 |...@ | timecnt: 64 0x20-0x23.7 (4)
|
||||
0x020| 00 00 00 08 | .... | typecnt: 8 0x24-0x27.7 (4)
|
||||
0x020| 00 00 00 18 | .... | charcnt: 24 0x28-0x2b.7 (4)
|
||||
| | | v1datablock{}: 0x2c-0x29b.7 (624)
|
||||
| | | transition_times[0:64]: 0x2c-0x12b.7 (256)
|
||||
0x020| a5 b6 e8 70| ...p| [0]: "1922-01-01T07:00:00Z" (-1514739600) transition_time 0x2c-0x2f.7 (4)
|
||||
0x030|af f2 6e e0 |..n. | [1]: "1927-06-11T06:00:00Z" (-1343066400) transition_time 0x30-0x33.7 (4)
|
||||
0x030| b6 66 56 60 | .fV` | [2]: "1930-11-15T06:00:00Z" (-1234807200) transition_time 0x34-0x37.7 (4)
|
||||
0x030| b7 43 d2 60 | .C.` | [3]: "1931-05-02T06:00:00Z" (-1220292000) transition_time 0x38-0x3b.7 (4)
|
||||
0x030| b8 0c 36 60| ..6`| [4]: "1931-10-01T06:00:00Z" (-1207159200) transition_time 0x3c-0x3f.7 (4)
|
||||
0x040|b8 fd 86 f0 |.... | [5]: "1932-04-01T07:00:00Z" (-1191344400) transition_time 0x40-0x43.7 (4)
|
||||
0x040| cb ea 71 60 | ..q` | [6]: "1942-04-24T06:00:00Z" (-873828000) transition_time 0x44-0x47.7 (4)
|
||||
0x040| d8 91 b4 f0 | .... | [7]: "1949-01-14T07:00:00Z" (-661539600) transition_time 0x48-0x4b.7 (4)
|
||||
0x040| 00 00 70 80| ..p.| [8]: "1970-01-01T08:00:00Z" (28800) transition_time 0x4c-0x4f.7 (4)
|
||||
0x050|31 67 84 24 |1g.$ | [9]: "1996-04-07T09:00:20Z" (828867620) transition_time 0x50-0x53.7 (4)
|
||||
0x050| 32 73 16 94 | 2s.. | [10]: "1996-10-27T08:00:20Z" (846403220) transition_time 0x54-0x57.7 (4)
|
||||
0x050| 33 47 66 24 | 3Gf$ | [11]: "1997-04-06T09:00:20Z" (860317220) transition_time 0x58-0x5b.7 (4)
|
||||
0x050| 34 52 f8 95| 4R..| [12]: "1997-10-26T08:00:21Z" (877852821) transition_time 0x5c-0x5f.7 (4)
|
||||
0x060|35 27 48 25 |5'H% | [13]: "1998-04-05T09:00:21Z" (891766821) transition_time 0x60-0x63.7 (4)
|
||||
0x060| 36 32 da 95 | 62.. | [14]: "1998-10-25T08:00:21Z" (909302421) transition_time 0x64-0x67.7 (4)
|
||||
0x060| 37 07 2a 26 | 7.*& | [15]: "1999-04-04T09:00:22Z" (923216422) transition_time 0x68-0x6b.7 (4)
|
||||
0x060| 38 1b f7 16| 8...| [16]: "1999-10-31T08:00:22Z" (941356822) transition_time 0x6c-0x6f.7 (4)
|
||||
0x070|38 e7 0c 26 |8..& | [17]: "2000-04-02T09:00:22Z" (954666022) transition_time 0x70-0x73.7 (4)
|
||||
0x070| 39 fb d9 16 | 9... | [18]: "2000-10-29T08:00:22Z" (972806422) transition_time 0x74-0x77.7 (4)
|
||||
0x070| 3a f5 12 a6 | :... | [19]: "2001-05-06T09:00:22Z" (989139622) transition_time 0x78-0x7b.7 (4)
|
||||
0x070| 3b b6 d1 16| ;...| [20]: "2001-09-30T08:00:22Z" (1001836822) transition_time 0x7c-0x7f.7 (4)
|
||||
0x080|3c b0 0a a6 |<... | [21]: "2002-04-07T09:00:22Z" (1018170022) transition_time 0x80-0x83.7 (4)
|
||||
0x080| 3d bb 9d 16 | =... | [22]: "2002-10-27T08:00:22Z" (1035705622) transition_time 0x84-0x87.7 (4)
|
||||
0x080| 3e 8f ec a6 | >... | [23]: "2003-04-06T09:00:22Z" (1049619622) transition_time 0x88-0x8b.7 (4)
|
||||
0x080| 3f 9b 7f 16| ?...| [24]: "2003-10-26T08:00:22Z" (1067155222) transition_time 0x8c-0x8f.7 (4)
|
||||
0x090|40 6f ce a6 |@o.. | [25]: "2004-04-04T09:00:22Z" (1081069222) transition_time 0x90-0x93.7 (4)
|
||||
0x090| 41 84 9b 96 | A... | [26]: "2004-10-31T08:00:22Z" (1099209622) transition_time 0x94-0x97.7 (4)
|
||||
0x090| 42 4f b0 a6 | BO.. | [27]: "2005-04-03T09:00:22Z" (1112518822) transition_time 0x98-0x9b.7 (4)
|
||||
0x090| 43 64 7d 96| Cd}.| [28]: "2005-10-30T08:00:22Z" (1130659222) transition_time 0x9c-0x9f.7 (4)
|
||||
0x0a0|44 2f 92 a7 |D/.. | [29]: "2006-04-02T09:00:23Z" (1143968423) transition_time 0xa0-0xa3.7 (4)
|
||||
0x0a0| 45 44 5f 97 | ED_. | [30]: "2006-10-29T08:00:23Z" (1162108823) transition_time 0xa4-0xa7.7 (4)
|
||||
0x0a0| 46 0f 74 a7 | F.t. | [31]: "2007-04-01T09:00:23Z" (1175418023) transition_time 0xa8-0xab.7 (4)
|
||||
0x0a0| 47 24 41 97| G$A.| [32]: "2007-10-28T08:00:23Z" (1193558423) transition_time 0xac-0xaf.7 (4)
|
||||
0x0b0|47 f8 91 27 |G..' | [33]: "2008-04-06T09:00:23Z" (1207472423) transition_time 0xb0-0xb3.7 (4)
|
||||
0x0b0| 49 04 23 97 | I.#. | [34]: "2008-10-26T08:00:23Z" (1225008023) transition_time 0xb4-0xb7.7 (4)
|
||||
0x0b0| 49 d8 73 28 | I.s( | [35]: "2009-04-05T09:00:24Z" (1238922024) transition_time 0xb8-0xbb.7 (4)
|
||||
0x0b0| 4a e4 05 98| J...| [36]: "2009-10-25T08:00:24Z" (1256457624) transition_time 0xbc-0xbf.7 (4)
|
||||
0x0c0|4b b8 55 28 |K.U( | [37]: "2010-04-04T09:00:24Z" (1270371624) transition_time 0xc0-0xc3.7 (4)
|
||||
0x0c0| 4c cd 14 08 | L... | [38]: "2010-10-31T07:00:24Z" (1288508424) transition_time 0xc4-0xc7.7 (4)
|
||||
0x0c0| 4d 98 29 18 | M.). | [39]: "2011-04-03T08:00:24Z" (1301817624) transition_time 0xc8-0xcb.7 (4)
|
||||
0x0c0| 4e ac f6 08| N...| [40]: "2011-10-30T07:00:24Z" (1319958024) transition_time 0xcc-0xcf.7 (4)
|
||||
0x0d0|4f 78 0b 18 |Ox.. | [41]: "2012-04-01T08:00:24Z" (1333267224) transition_time 0xd0-0xd3.7 (4)
|
||||
0x0d0| 50 8c d8 09 | P... | [42]: "2012-10-28T07:00:25Z" (1351407625) transition_time 0xd4-0xd7.7 (4)
|
||||
0x0d0| 51 61 27 99 | Qa'. | [43]: "2013-04-07T08:00:25Z" (1365321625) transition_time 0xd8-0xdb.7 (4)
|
||||
0x0d0| 52 6c ba 09| Rl..| [44]: "2013-10-27T07:00:25Z" (1382857225) transition_time 0xdc-0xdf.7 (4)
|
||||
0x0e0|53 41 09 99 |SA.. | [45]: "2014-04-06T08:00:25Z" (1396771225) transition_time 0xe0-0xe3.7 (4)
|
||||
0x0e0| 54 4c 9c 09 | TL.. | [46]: "2014-10-26T07:00:25Z" (1414306825) transition_time 0xe4-0xe7.7 (4)
|
||||
0x0e0| 55 20 eb 99 | U .. | [47]: "2015-04-05T08:00:25Z" (1428220825) transition_time 0xe8-0xeb.7 (4)
|
||||
0x0e0| 56 2c 7e 0a| V,~.| [48]: "2015-10-25T07:00:26Z" (1445756426) transition_time 0xec-0xef.7 (4)
|
||||
0x0f0|57 00 cd 9a |W... | [49]: "2016-04-03T08:00:26Z" (1459670426) transition_time 0xf0-0xf3.7 (4)
|
||||
0x0f0| 58 15 9a 8a | X... | [50]: "2016-10-30T07:00:26Z" (1477810826) transition_time 0xf4-0xf7.7 (4)
|
||||
0x0f0| 58 e0 af 9b | X... | [51]: "2017-04-02T08:00:27Z" (1491120027) transition_time 0xf8-0xfb.7 (4)
|
||||
0x0f0| 59 f5 7c 8b| Y.|.| [52]: "2017-10-29T07:00:27Z" (1509260427) transition_time 0xfc-0xff.7 (4)
|
||||
0x100|5a c0 91 9b |Z... | [53]: "2018-04-01T08:00:27Z" (1522569627) transition_time 0x100-0x103.7 (4)
|
||||
0x100| 5b d5 5e 8b | [.^. | [54]: "2018-10-28T07:00:27Z" (1540710027) transition_time 0x104-0x107.7 (4)
|
||||
0x100| 5c a9 ae 1b | \... | [55]: "2019-04-07T08:00:27Z" (1554624027) transition_time 0x108-0x10b.7 (4)
|
||||
0x100| 5d b5 40 8b| ].@.| [56]: "2019-10-27T07:00:27Z" (1572159627) transition_time 0x10c-0x10f.7 (4)
|
||||
0x110|5e 89 90 1b |^... | [57]: "2020-04-05T08:00:27Z" (1586073627) transition_time 0x110-0x113.7 (4)
|
||||
0x110| 5f 95 22 8b | _.". | [58]: "2020-10-25T07:00:27Z" (1603609227) transition_time 0x114-0x117.7 (4)
|
||||
0x110| 60 69 72 1b | `ir. | [59]: "2021-04-04T08:00:27Z" (1617523227) transition_time 0x118-0x11b.7 (4)
|
||||
0x110| 61 7e 3f 0b| a~?.| [60]: "2021-10-31T07:00:27Z" (1635663627) transition_time 0x11c-0x11f.7 (4)
|
||||
0x120|62 49 54 1b |bIT. | [61]: "2022-04-03T08:00:27Z" (1648972827) transition_time 0x120-0x123.7 (4)
|
||||
0x120| 63 5e 21 0b | c^!. | [62]: "2022-10-30T07:00:27Z" (1667113227) transition_time 0x124-0x127.7 (4)
|
||||
0x120| 64 9b 78 1b | d.x. | [63]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x128-0x12b.7 (4)
|
||||
| | | transition_types[0:64]: 0x12c-0x16b.7 (64)
|
||||
0x120| 01 | . | [0]: 1 transition_type 0x12c-0x12c.7 (1)
|
||||
0x120| 02 | . | [1]: 2 transition_type 0x12d-0x12d.7 (1)
|
||||
0x120| 04 | . | [2]: 4 transition_type 0x12e-0x12e.7 (1)
|
||||
0x120| 03| .| [3]: 3 transition_type 0x12f-0x12f.7 (1)
|
||||
0x130|04 |. | [4]: 4 transition_type 0x130-0x130.7 (1)
|
||||
0x130| 02 | . | [5]: 2 transition_type 0x131-0x131.7 (1)
|
||||
0x130| 04 | . | [6]: 4 transition_type 0x132-0x132.7 (1)
|
||||
0x130| 05 | . | [7]: 5 transition_type 0x133-0x133.7 (1)
|
||||
0x130| 04 | . | [8]: 4 transition_type 0x134-0x134.7 (1)
|
||||
0x130| 03 | . | [9]: 3 transition_type 0x135-0x135.7 (1)
|
||||
0x130| 04 | . | [10]: 4 transition_type 0x136-0x136.7 (1)
|
||||
0x130| 03 | . | [11]: 3 transition_type 0x137-0x137.7 (1)
|
||||
0x130| 04 | . | [12]: 4 transition_type 0x138-0x138.7 (1)
|
||||
0x130| 03 | . | [13]: 3 transition_type 0x139-0x139.7 (1)
|
||||
0x130| 04 | . | [14]: 4 transition_type 0x13a-0x13a.7 (1)
|
||||
0x130| 03 | . | [15]: 3 transition_type 0x13b-0x13b.7 (1)
|
||||
0x130| 04 | . | [16]: 4 transition_type 0x13c-0x13c.7 (1)
|
||||
0x130| 03 | . | [17]: 3 transition_type 0x13d-0x13d.7 (1)
|
||||
0x130| 04 | . | [18]: 4 transition_type 0x13e-0x13e.7 (1)
|
||||
0x130| 03| .| [19]: 3 transition_type 0x13f-0x13f.7 (1)
|
||||
0x140|04 |. | [20]: 4 transition_type 0x140-0x140.7 (1)
|
||||
0x140| 03 | . | [21]: 3 transition_type 0x141-0x141.7 (1)
|
||||
0x140| 04 | . | [22]: 4 transition_type 0x142-0x142.7 (1)
|
||||
0x140| 03 | . | [23]: 3 transition_type 0x143-0x143.7 (1)
|
||||
0x140| 04 | . | [24]: 4 transition_type 0x144-0x144.7 (1)
|
||||
0x140| 03 | . | [25]: 3 transition_type 0x145-0x145.7 (1)
|
||||
0x140| 04 | . | [26]: 4 transition_type 0x146-0x146.7 (1)
|
||||
0x140| 03 | . | [27]: 3 transition_type 0x147-0x147.7 (1)
|
||||
0x140| 04 | . | [28]: 4 transition_type 0x148-0x148.7 (1)
|
||||
0x140| 03 | . | [29]: 3 transition_type 0x149-0x149.7 (1)
|
||||
0x140| 04 | . | [30]: 4 transition_type 0x14a-0x14a.7 (1)
|
||||
0x140| 03 | . | [31]: 3 transition_type 0x14b-0x14b.7 (1)
|
||||
0x140| 04 | . | [32]: 4 transition_type 0x14c-0x14c.7 (1)
|
||||
0x140| 03 | . | [33]: 3 transition_type 0x14d-0x14d.7 (1)
|
||||
0x140| 04 | . | [34]: 4 transition_type 0x14e-0x14e.7 (1)
|
||||
0x140| 03| .| [35]: 3 transition_type 0x14f-0x14f.7 (1)
|
||||
0x150|04 |. | [36]: 4 transition_type 0x150-0x150.7 (1)
|
||||
0x150| 06 | . | [37]: 6 transition_type 0x151-0x151.7 (1)
|
||||
0x150| 02 | . | [38]: 2 transition_type 0x152-0x152.7 (1)
|
||||
0x150| 06 | . | [39]: 6 transition_type 0x153-0x153.7 (1)
|
||||
0x150| 02 | . | [40]: 2 transition_type 0x154-0x154.7 (1)
|
||||
0x150| 06 | . | [41]: 6 transition_type 0x155-0x155.7 (1)
|
||||
0x150| 02 | . | [42]: 2 transition_type 0x156-0x156.7 (1)
|
||||
0x150| 06 | . | [43]: 6 transition_type 0x157-0x157.7 (1)
|
||||
0x150| 02 | . | [44]: 2 transition_type 0x158-0x158.7 (1)
|
||||
0x150| 06 | . | [45]: 6 transition_type 0x159-0x159.7 (1)
|
||||
0x150| 02 | . | [46]: 2 transition_type 0x15a-0x15a.7 (1)
|
||||
0x150| 06 | . | [47]: 6 transition_type 0x15b-0x15b.7 (1)
|
||||
0x150| 02 | . | [48]: 2 transition_type 0x15c-0x15c.7 (1)
|
||||
0x150| 06 | . | [49]: 6 transition_type 0x15d-0x15d.7 (1)
|
||||
0x150| 02 | . | [50]: 2 transition_type 0x15e-0x15e.7 (1)
|
||||
0x150| 06| .| [51]: 6 transition_type 0x15f-0x15f.7 (1)
|
||||
0x160|02 |. | [52]: 2 transition_type 0x160-0x160.7 (1)
|
||||
0x160| 06 | . | [53]: 6 transition_type 0x161-0x161.7 (1)
|
||||
0x160| 02 | . | [54]: 2 transition_type 0x162-0x162.7 (1)
|
||||
0x160| 06 | . | [55]: 6 transition_type 0x163-0x163.7 (1)
|
||||
0x160| 02 | . | [56]: 2 transition_type 0x164-0x164.7 (1)
|
||||
0x160| 06 | . | [57]: 6 transition_type 0x165-0x165.7 (1)
|
||||
0x160| 02 | . | [58]: 2 transition_type 0x166-0x166.7 (1)
|
||||
0x160| 06 | . | [59]: 6 transition_type 0x167-0x167.7 (1)
|
||||
0x160| 02 | . | [60]: 2 transition_type 0x168-0x168.7 (1)
|
||||
0x160| 06 | . | [61]: 6 transition_type 0x169-0x169.7 (1)
|
||||
0x160| 02 | . | [62]: 2 transition_type 0x16a-0x16a.7 (1)
|
||||
0x160| 02 | . | [63]: 2 transition_type 0x16b-0x16b.7 (1)
|
||||
| | | local_time_type_records[0:8]: 0x16c-0x19b.7 (48)
|
||||
| | | [0]{}: local_time_type 0x16c-0x171.7 (6)
|
||||
0x160| ff ff 9d 54| ...T| utoff: -25260 (valid) 0x16c-0x16f.7 (4)
|
||||
0x170|00 |. | dst: 0 (valid) 0x170-0x170.7 (1)
|
||||
0x170| 00 | . | idx: 0 (valid) 0x171-0x171.7 (1)
|
||||
| | | [1]{}: local_time_type 0x172-0x177.7 (6)
|
||||
0x170| ff ff 9d 90 | .... | utoff: -25200 (valid) 0x172-0x175.7 (4)
|
||||
0x170| 00 | . | dst: 0 (valid) 0x176-0x176.7 (1)
|
||||
0x170| 04 | . | idx: 4 (valid) 0x177-0x177.7 (1)
|
||||
| | | [2]{}: local_time_type 0x178-0x17d.7 (6)
|
||||
0x170| ff ff ab a0 | .... | utoff: -21600 (valid) 0x178-0x17b.7 (4)
|
||||
0x170| 00 | . | dst: 0 (valid) 0x17c-0x17c.7 (1)
|
||||
0x170| 08 | . | idx: 8 (valid) 0x17d-0x17d.7 (1)
|
||||
| | | [3]{}: local_time_type 0x17e-0x183.7 (6)
|
||||
0x170| ff ff| ..| utoff: -21600 (valid) 0x17e-0x181.7 (4)
|
||||
0x180|ab a0 |.. |
|
||||
0x180| 01 | . | dst: 1 (valid) 0x182-0x182.7 (1)
|
||||
0x180| 0c | . | idx: 12 (valid) 0x183-0x183.7 (1)
|
||||
| | | [4]{}: local_time_type 0x184-0x189.7 (6)
|
||||
0x180| ff ff 9d 90 | .... | utoff: -25200 (valid) 0x184-0x187.7 (4)
|
||||
0x180| 00 | . | dst: 0 (valid) 0x188-0x188.7 (1)
|
||||
0x180| 04 | . | idx: 4 (valid) 0x189-0x189.7 (1)
|
||||
| | | [5]{}: local_time_type 0x18a-0x18f.7 (6)
|
||||
0x180| ff ff 8f 80 | .... | utoff: -28800 (valid) 0x18a-0x18d.7 (4)
|
||||
0x180| 00 | . | dst: 0 (valid) 0x18e-0x18e.7 (1)
|
||||
0x180| 10| .| idx: 16 (valid) 0x18f-0x18f.7 (1)
|
||||
| | | [6]{}: local_time_type 0x190-0x195.7 (6)
|
||||
0x190|ff ff b9 b0 |.... | utoff: -18000 (valid) 0x190-0x193.7 (4)
|
||||
0x190| 01 | . | dst: 1 (valid) 0x194-0x194.7 (1)
|
||||
0x190| 14 | . | idx: 20 (valid) 0x195-0x195.7 (1)
|
||||
| | | [7]{}: local_time_type 0x196-0x19b.7 (6)
|
||||
0x190| ff ff ab a0 | .... | utoff: -21600 (valid) 0x196-0x199.7 (4)
|
||||
0x190| 00 | . | dst: 0 (valid) 0x19a-0x19a.7 (1)
|
||||
0x190| 08 | . | idx: 8 (valid) 0x19b-0x19b.7 (1)
|
||||
| | | time_zone_designations[0:6]: 0x19c-0x1b3.7 (24)
|
||||
0x190| 4c 4d 54 00| LMT.| [0]: "LMT" time_zone_designation 0x19c-0x19f.7 (4)
|
||||
0x1a0|4d 53 54 00 |MST. | [1]: "MST" time_zone_designation 0x1a0-0x1a3.7 (4)
|
||||
0x1a0| 43 53 54 00 | CST. | [2]: "CST" time_zone_designation 0x1a4-0x1a7.7 (4)
|
||||
0x1a0| 4d 44 54 00 | MDT. | [3]: "MDT" time_zone_designation 0x1a8-0x1ab.7 (4)
|
||||
0x1a0| 50 53 54 00| PST.| [4]: "PST" time_zone_designation 0x1ac-0x1af.7 (4)
|
||||
0x1b0|43 44 54 00 |CDT. | [5]: "CDT" time_zone_designation 0x1b0-0x1b3.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x1b4-0x28b.7 (216)
|
||||
| | | [0]{}: leap_second_record 0x1b4-0x1bb.7 (8)
|
||||
0x1b0| 04 b2 58 00 | ..X. | occur: "1972-07-01T00:00:00Z" (78796800) 0x1b4-0x1b7.7 (4)
|
||||
0x1b0| 00 00 00 01 | .... | corr: 1 0x1b8-0x1bb.7 (4)
|
||||
| | | [1]{}: leap_second_record 0x1bc-0x1c3.7 (8)
|
||||
0x1b0| 05 a4 ec 01| ....| occur: "1973-01-01T00:00:01Z" (94694401) 0x1bc-0x1bf.7 (4)
|
||||
0x1c0|00 00 00 02 |.... | corr: 2 0x1c0-0x1c3.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x1c4-0x1cb.7 (8)
|
||||
0x1c0| 07 86 1f 82 | .... | occur: "1974-01-01T00:00:02Z" (126230402) 0x1c4-0x1c7.7 (4)
|
||||
0x1c0| 00 00 00 03 | .... | corr: 3 0x1c8-0x1cb.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x1cc-0x1d3.7 (8)
|
||||
0x1c0| 09 67 53 03| .gS.| occur: "1975-01-01T00:00:03Z" (157766403) 0x1cc-0x1cf.7 (4)
|
||||
0x1d0|00 00 00 04 |.... | corr: 4 0x1d0-0x1d3.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x1d4-0x1db.7 (8)
|
||||
0x1d0| 0b 48 86 84 | .H.. | occur: "1976-01-01T00:00:04Z" (189302404) 0x1d4-0x1d7.7 (4)
|
||||
0x1d0| 00 00 00 05 | .... | corr: 5 0x1d8-0x1db.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x1dc-0x1e3.7 (8)
|
||||
0x1d0| 0d 2b 0b 85| .+..| occur: "1977-01-01T00:00:05Z" (220924805) 0x1dc-0x1df.7 (4)
|
||||
0x1e0|00 00 00 06 |.... | corr: 6 0x1e0-0x1e3.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x1e4-0x1eb.7 (8)
|
||||
0x1e0| 0f 0c 3f 06 | ..?. | occur: "1978-01-01T00:00:06Z" (252460806) 0x1e4-0x1e7.7 (4)
|
||||
0x1e0| 00 00 00 07 | .... | corr: 7 0x1e8-0x1eb.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x1ec-0x1f3.7 (8)
|
||||
0x1e0| 10 ed 72 87| ..r.| occur: "1979-01-01T00:00:07Z" (283996807) 0x1ec-0x1ef.7 (4)
|
||||
0x1f0|00 00 00 08 |.... | corr: 8 0x1f0-0x1f3.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x1f4-0x1fb.7 (8)
|
||||
0x1f0| 12 ce a6 08 | .... | occur: "1980-01-01T00:00:08Z" (315532808) 0x1f4-0x1f7.7 (4)
|
||||
0x1f0| 00 00 00 09 | .... | corr: 9 0x1f8-0x1fb.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x1fc-0x203.7 (8)
|
||||
0x1f0| 15 9f ca 89| ....| occur: "1981-07-01T00:00:09Z" (362793609) 0x1fc-0x1ff.7 (4)
|
||||
0x200|00 00 00 0a |.... | corr: 10 0x200-0x203.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x204-0x20b.7 (8)
|
||||
0x200| 17 80 fe 0a | .... | occur: "1982-07-01T00:00:10Z" (394329610) 0x204-0x207.7 (4)
|
||||
0x200| 00 00 00 0b | .... | corr: 11 0x208-0x20b.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x20c-0x213.7 (8)
|
||||
0x200| 19 62 31 8b| .b1.| occur: "1983-07-01T00:00:11Z" (425865611) 0x20c-0x20f.7 (4)
|
||||
0x210|00 00 00 0c |.... | corr: 12 0x210-0x213.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x214-0x21b.7 (8)
|
||||
0x210| 1d 25 ea 0c | .%.. | occur: "1985-07-01T00:00:12Z" (489024012) 0x214-0x217.7 (4)
|
||||
0x210| 00 00 00 0d | .... | corr: 13 0x218-0x21b.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x21c-0x223.7 (8)
|
||||
0x210| 21 da e5 0d| !...| occur: "1988-01-01T00:00:13Z" (567993613) 0x21c-0x21f.7 (4)
|
||||
0x220|00 00 00 0e |.... | corr: 14 0x220-0x223.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x224-0x22b.7 (8)
|
||||
0x220| 25 9e 9d 8e | %... | occur: "1990-01-01T00:00:14Z" (631152014) 0x224-0x227.7 (4)
|
||||
0x220| 00 00 00 0f | .... | corr: 15 0x228-0x22b.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x22c-0x233.7 (8)
|
||||
0x220| 27 7f d1 0f| '...| occur: "1991-01-01T00:00:15Z" (662688015) 0x22c-0x22f.7 (4)
|
||||
0x230|00 00 00 10 |.... | corr: 16 0x230-0x233.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x234-0x23b.7 (8)
|
||||
0x230| 2a 50 f5 90 | *P.. | occur: "1992-07-01T00:00:16Z" (709948816) 0x234-0x237.7 (4)
|
||||
0x230| 00 00 00 11 | .... | corr: 17 0x238-0x23b.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x23c-0x243.7 (8)
|
||||
0x230| 2c 32 29 11| ,2).| occur: "1993-07-01T00:00:17Z" (741484817) 0x23c-0x23f.7 (4)
|
||||
0x240|00 00 00 12 |.... | corr: 18 0x240-0x243.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x244-0x24b.7 (8)
|
||||
0x240| 2e 13 5c 92 | ..\. | occur: "1994-07-01T00:00:18Z" (773020818) 0x244-0x247.7 (4)
|
||||
0x240| 00 00 00 13 | .... | corr: 19 0x248-0x24b.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x24c-0x253.7 (8)
|
||||
0x240| 30 e7 24 13| 0.$.| occur: "1996-01-01T00:00:19Z" (820454419) 0x24c-0x24f.7 (4)
|
||||
0x250|00 00 00 14 |.... | corr: 20 0x250-0x253.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x254-0x25b.7 (8)
|
||||
0x250| 33 b8 48 94 | 3.H. | occur: "1997-07-01T00:00:20Z" (867715220) 0x254-0x257.7 (4)
|
||||
0x250| 00 00 00 15 | .... | corr: 21 0x258-0x25b.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x25c-0x263.7 (8)
|
||||
0x250| 36 8c 10 15| 6...| occur: "1999-01-01T00:00:21Z" (915148821) 0x25c-0x25f.7 (4)
|
||||
0x260|00 00 00 16 |.... | corr: 22 0x260-0x263.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x264-0x26b.7 (8)
|
||||
0x260| 43 b7 1b 96 | C... | occur: "2006-01-01T00:00:22Z" (1136073622) 0x264-0x267.7 (4)
|
||||
0x260| 00 00 00 17 | .... | corr: 23 0x268-0x26b.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x26c-0x273.7 (8)
|
||||
0x260| 49 5c 07 97| I\..| occur: "2009-01-01T00:00:23Z" (1230768023) 0x26c-0x26f.7 (4)
|
||||
0x270|00 00 00 18 |.... | corr: 24 0x270-0x273.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x274-0x27b.7 (8)
|
||||
0x270| 4f ef 93 18 | O... | occur: "2012-07-01T00:00:24Z" (1341100824) 0x274-0x277.7 (4)
|
||||
0x270| 00 00 00 19 | .... | corr: 25 0x278-0x27b.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x27c-0x283.7 (8)
|
||||
0x270| 55 93 2d 99| U.-.| occur: "2015-07-01T00:00:25Z" (1435708825) 0x27c-0x27f.7 (4)
|
||||
0x280|00 00 00 1a |.... | corr: 26 0x280-0x283.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x284-0x28b.7 (8)
|
||||
0x280| 58 68 46 9a | XhF. | occur: "2017-01-01T00:00:26Z" (1483228826) 0x284-0x287.7 (4)
|
||||
0x280| 00 00 00 1b | .... | corr: 27 0x288-0x28b.7 (4)
|
||||
| | | standard_wall_indicators[0:8]: 0x28c-0x293.7 (8)
|
||||
0x280| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x28c-0x28c.7 (1)
|
||||
0x280| 01 | . | [1]: 1 standard_wall_indicator (valid) 0x28d-0x28d.7 (1)
|
||||
0x280| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x28e-0x28e.7 (1)
|
||||
0x280| 00| .| [3]: 0 standard_wall_indicator (valid) 0x28f-0x28f.7 (1)
|
||||
0x290|00 |. | [4]: 0 standard_wall_indicator (valid) 0x290-0x290.7 (1)
|
||||
0x290| 00 | . | [5]: 0 standard_wall_indicator (valid) 0x291-0x291.7 (1)
|
||||
0x290| 00 | . | [6]: 0 standard_wall_indicator (valid) 0x292-0x292.7 (1)
|
||||
0x290| 00 | . | [7]: 0 standard_wall_indicator (valid) 0x293-0x293.7 (1)
|
||||
| | | ut_local_indicators[0:8]: 0x294-0x29b.7 (8)
|
||||
0x290| 00 | . | [0]: 0 ut_local_indicator (valid) 0x294-0x294.7 (1)
|
||||
0x290| 01 | . | [1]: 1 ut_local_indicator (valid) 0x295-0x295.7 (1)
|
||||
0x290| 00 | . | [2]: 0 ut_local_indicator (valid) 0x296-0x296.7 (1)
|
||||
0x290| 00 | . | [3]: 0 ut_local_indicator (valid) 0x297-0x297.7 (1)
|
||||
0x290| 00 | . | [4]: 0 ut_local_indicator (valid) 0x298-0x298.7 (1)
|
||||
0x290| 00 | . | [5]: 0 ut_local_indicator (valid) 0x299-0x299.7 (1)
|
||||
0x290| 00 | . | [6]: 0 ut_local_indicator (valid) 0x29a-0x29a.7 (1)
|
||||
0x290| 00 | . | [7]: 0 ut_local_indicator (valid) 0x29b-0x29b.7 (1)
|
||||
| | | v2plusheader{}: 0x29c-0x2c7.7 (44)
|
||||
0x290| 54 5a 69 66| TZif| magic: 0x545a6966 (valid) 0x29c-0x29f.7 (4)
|
||||
0x2a0|32 |2 | ver: "2" (0x32) (valid) 0x2a0-0x2a0.7 (1)
|
||||
0x2a0| 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00| ...............| reserved: raw bits 0x2a1-0x2af.7 (15)
|
||||
0x2b0|00 00 00 08 |.... | isutcnt: 8 0x2b0-0x2b3.7 (4)
|
||||
0x2b0| 00 00 00 08 | .... | isstdcnt: 8 0x2b4-0x2b7.7 (4)
|
||||
0x2b0| 00 00 00 1b | .... | leapcnt: 27 0x2b8-0x2bb.7 (4)
|
||||
0x2b0| 00 00 00 40| ...@| timecnt: 64 0x2bc-0x2bf.7 (4)
|
||||
0x2c0|00 00 00 08 |.... | typecnt: 8 0x2c0-0x2c3.7 (4)
|
||||
0x2c0| 00 00 00 18 | .... | charcnt: 24 0x2c4-0x2c7.7 (4)
|
||||
| | | v2plusdatablock{}: 0x2c8-0x6a3.7 (988)
|
||||
| | | transition_times[0:64]: 0x2c8-0x4c7.7 (512)
|
||||
0x2c0| ff ff ff ff a5 b6 e8 70| .......p| [0]: "1922-01-01T07:00:00Z" (-1514739600) transition_time 0x2c8-0x2cf.7 (8)
|
||||
0x2d0|ff ff ff ff af f2 6e e0 |......n. | [1]: "1927-06-11T06:00:00Z" (-1343066400) transition_time 0x2d0-0x2d7.7 (8)
|
||||
0x2d0| ff ff ff ff b6 66 56 60| .....fV`| [2]: "1930-11-15T06:00:00Z" (-1234807200) transition_time 0x2d8-0x2df.7 (8)
|
||||
0x2e0|ff ff ff ff b7 43 d2 60 |.....C.` | [3]: "1931-05-02T06:00:00Z" (-1220292000) transition_time 0x2e0-0x2e7.7 (8)
|
||||
0x2e0| ff ff ff ff b8 0c 36 60| ......6`| [4]: "1931-10-01T06:00:00Z" (-1207159200) transition_time 0x2e8-0x2ef.7 (8)
|
||||
0x2f0|ff ff ff ff b8 fd 86 f0 |........ | [5]: "1932-04-01T07:00:00Z" (-1191344400) transition_time 0x2f0-0x2f7.7 (8)
|
||||
0x2f0| ff ff ff ff cb ea 71 60| ......q`| [6]: "1942-04-24T06:00:00Z" (-873828000) transition_time 0x2f8-0x2ff.7 (8)
|
||||
0x300|ff ff ff ff d8 91 b4 f0 |........ | [7]: "1949-01-14T07:00:00Z" (-661539600) transition_time 0x300-0x307.7 (8)
|
||||
0x300| 00 00 00 00 00 00 70 80| ......p.| [8]: "1970-01-01T08:00:00Z" (28800) transition_time 0x308-0x30f.7 (8)
|
||||
0x310|00 00 00 00 31 67 84 24 |....1g.$ | [9]: "1996-04-07T09:00:20Z" (828867620) transition_time 0x310-0x317.7 (8)
|
||||
0x310| 00 00 00 00 32 73 16 94| ....2s..| [10]: "1996-10-27T08:00:20Z" (846403220) transition_time 0x318-0x31f.7 (8)
|
||||
0x320|00 00 00 00 33 47 66 24 |....3Gf$ | [11]: "1997-04-06T09:00:20Z" (860317220) transition_time 0x320-0x327.7 (8)
|
||||
0x320| 00 00 00 00 34 52 f8 95| ....4R..| [12]: "1997-10-26T08:00:21Z" (877852821) transition_time 0x328-0x32f.7 (8)
|
||||
0x330|00 00 00 00 35 27 48 25 |....5'H% | [13]: "1998-04-05T09:00:21Z" (891766821) transition_time 0x330-0x337.7 (8)
|
||||
0x330| 00 00 00 00 36 32 da 95| ....62..| [14]: "1998-10-25T08:00:21Z" (909302421) transition_time 0x338-0x33f.7 (8)
|
||||
0x340|00 00 00 00 37 07 2a 26 |....7.*& | [15]: "1999-04-04T09:00:22Z" (923216422) transition_time 0x340-0x347.7 (8)
|
||||
0x340| 00 00 00 00 38 1b f7 16| ....8...| [16]: "1999-10-31T08:00:22Z" (941356822) transition_time 0x348-0x34f.7 (8)
|
||||
0x350|00 00 00 00 38 e7 0c 26 |....8..& | [17]: "2000-04-02T09:00:22Z" (954666022) transition_time 0x350-0x357.7 (8)
|
||||
0x350| 00 00 00 00 39 fb d9 16| ....9...| [18]: "2000-10-29T08:00:22Z" (972806422) transition_time 0x358-0x35f.7 (8)
|
||||
0x360|00 00 00 00 3a f5 12 a6 |....:... | [19]: "2001-05-06T09:00:22Z" (989139622) transition_time 0x360-0x367.7 (8)
|
||||
0x360| 00 00 00 00 3b b6 d1 16| ....;...| [20]: "2001-09-30T08:00:22Z" (1001836822) transition_time 0x368-0x36f.7 (8)
|
||||
0x370|00 00 00 00 3c b0 0a a6 |....<... | [21]: "2002-04-07T09:00:22Z" (1018170022) transition_time 0x370-0x377.7 (8)
|
||||
0x370| 00 00 00 00 3d bb 9d 16| ....=...| [22]: "2002-10-27T08:00:22Z" (1035705622) transition_time 0x378-0x37f.7 (8)
|
||||
0x380|00 00 00 00 3e 8f ec a6 |....>... | [23]: "2003-04-06T09:00:22Z" (1049619622) transition_time 0x380-0x387.7 (8)
|
||||
0x380| 00 00 00 00 3f 9b 7f 16| ....?...| [24]: "2003-10-26T08:00:22Z" (1067155222) transition_time 0x388-0x38f.7 (8)
|
||||
0x390|00 00 00 00 40 6f ce a6 |....@o.. | [25]: "2004-04-04T09:00:22Z" (1081069222) transition_time 0x390-0x397.7 (8)
|
||||
0x390| 00 00 00 00 41 84 9b 96| ....A...| [26]: "2004-10-31T08:00:22Z" (1099209622) transition_time 0x398-0x39f.7 (8)
|
||||
0x3a0|00 00 00 00 42 4f b0 a6 |....BO.. | [27]: "2005-04-03T09:00:22Z" (1112518822) transition_time 0x3a0-0x3a7.7 (8)
|
||||
0x3a0| 00 00 00 00 43 64 7d 96| ....Cd}.| [28]: "2005-10-30T08:00:22Z" (1130659222) transition_time 0x3a8-0x3af.7 (8)
|
||||
0x3b0|00 00 00 00 44 2f 92 a7 |....D/.. | [29]: "2006-04-02T09:00:23Z" (1143968423) transition_time 0x3b0-0x3b7.7 (8)
|
||||
0x3b0| 00 00 00 00 45 44 5f 97| ....ED_.| [30]: "2006-10-29T08:00:23Z" (1162108823) transition_time 0x3b8-0x3bf.7 (8)
|
||||
0x3c0|00 00 00 00 46 0f 74 a7 |....F.t. | [31]: "2007-04-01T09:00:23Z" (1175418023) transition_time 0x3c0-0x3c7.7 (8)
|
||||
0x3c0| 00 00 00 00 47 24 41 97| ....G$A.| [32]: "2007-10-28T08:00:23Z" (1193558423) transition_time 0x3c8-0x3cf.7 (8)
|
||||
0x3d0|00 00 00 00 47 f8 91 27 |....G..' | [33]: "2008-04-06T09:00:23Z" (1207472423) transition_time 0x3d0-0x3d7.7 (8)
|
||||
0x3d0| 00 00 00 00 49 04 23 97| ....I.#.| [34]: "2008-10-26T08:00:23Z" (1225008023) transition_time 0x3d8-0x3df.7 (8)
|
||||
0x3e0|00 00 00 00 49 d8 73 28 |....I.s( | [35]: "2009-04-05T09:00:24Z" (1238922024) transition_time 0x3e0-0x3e7.7 (8)
|
||||
0x3e0| 00 00 00 00 4a e4 05 98| ....J...| [36]: "2009-10-25T08:00:24Z" (1256457624) transition_time 0x3e8-0x3ef.7 (8)
|
||||
0x3f0|00 00 00 00 4b b8 55 28 |....K.U( | [37]: "2010-04-04T09:00:24Z" (1270371624) transition_time 0x3f0-0x3f7.7 (8)
|
||||
0x3f0| 00 00 00 00 4c cd 14 08| ....L...| [38]: "2010-10-31T07:00:24Z" (1288508424) transition_time 0x3f8-0x3ff.7 (8)
|
||||
0x400|00 00 00 00 4d 98 29 18 |....M.). | [39]: "2011-04-03T08:00:24Z" (1301817624) transition_time 0x400-0x407.7 (8)
|
||||
0x400| 00 00 00 00 4e ac f6 08| ....N...| [40]: "2011-10-30T07:00:24Z" (1319958024) transition_time 0x408-0x40f.7 (8)
|
||||
0x410|00 00 00 00 4f 78 0b 18 |....Ox.. | [41]: "2012-04-01T08:00:24Z" (1333267224) transition_time 0x410-0x417.7 (8)
|
||||
0x410| 00 00 00 00 50 8c d8 09| ....P...| [42]: "2012-10-28T07:00:25Z" (1351407625) transition_time 0x418-0x41f.7 (8)
|
||||
0x420|00 00 00 00 51 61 27 99 |....Qa'. | [43]: "2013-04-07T08:00:25Z" (1365321625) transition_time 0x420-0x427.7 (8)
|
||||
0x420| 00 00 00 00 52 6c ba 09| ....Rl..| [44]: "2013-10-27T07:00:25Z" (1382857225) transition_time 0x428-0x42f.7 (8)
|
||||
0x430|00 00 00 00 53 41 09 99 |....SA.. | [45]: "2014-04-06T08:00:25Z" (1396771225) transition_time 0x430-0x437.7 (8)
|
||||
0x430| 00 00 00 00 54 4c 9c 09| ....TL..| [46]: "2014-10-26T07:00:25Z" (1414306825) transition_time 0x438-0x43f.7 (8)
|
||||
0x440|00 00 00 00 55 20 eb 99 |....U .. | [47]: "2015-04-05T08:00:25Z" (1428220825) transition_time 0x440-0x447.7 (8)
|
||||
0x440| 00 00 00 00 56 2c 7e 0a| ....V,~.| [48]: "2015-10-25T07:00:26Z" (1445756426) transition_time 0x448-0x44f.7 (8)
|
||||
0x450|00 00 00 00 57 00 cd 9a |....W... | [49]: "2016-04-03T08:00:26Z" (1459670426) transition_time 0x450-0x457.7 (8)
|
||||
0x450| 00 00 00 00 58 15 9a 8a| ....X...| [50]: "2016-10-30T07:00:26Z" (1477810826) transition_time 0x458-0x45f.7 (8)
|
||||
0x460|00 00 00 00 58 e0 af 9b |....X... | [51]: "2017-04-02T08:00:27Z" (1491120027) transition_time 0x460-0x467.7 (8)
|
||||
0x460| 00 00 00 00 59 f5 7c 8b| ....Y.|.| [52]: "2017-10-29T07:00:27Z" (1509260427) transition_time 0x468-0x46f.7 (8)
|
||||
0x470|00 00 00 00 5a c0 91 9b |....Z... | [53]: "2018-04-01T08:00:27Z" (1522569627) transition_time 0x470-0x477.7 (8)
|
||||
0x470| 00 00 00 00 5b d5 5e 8b| ....[.^.| [54]: "2018-10-28T07:00:27Z" (1540710027) transition_time 0x478-0x47f.7 (8)
|
||||
0x480|00 00 00 00 5c a9 ae 1b |....\... | [55]: "2019-04-07T08:00:27Z" (1554624027) transition_time 0x480-0x487.7 (8)
|
||||
0x480| 00 00 00 00 5d b5 40 8b| ....].@.| [56]: "2019-10-27T07:00:27Z" (1572159627) transition_time 0x488-0x48f.7 (8)
|
||||
0x490|00 00 00 00 5e 89 90 1b |....^... | [57]: "2020-04-05T08:00:27Z" (1586073627) transition_time 0x490-0x497.7 (8)
|
||||
0x490| 00 00 00 00 5f 95 22 8b| ...._.".| [58]: "2020-10-25T07:00:27Z" (1603609227) transition_time 0x498-0x49f.7 (8)
|
||||
0x4a0|00 00 00 00 60 69 72 1b |....`ir. | [59]: "2021-04-04T08:00:27Z" (1617523227) transition_time 0x4a0-0x4a7.7 (8)
|
||||
0x4a0| 00 00 00 00 61 7e 3f 0b| ....a~?.| [60]: "2021-10-31T07:00:27Z" (1635663627) transition_time 0x4a8-0x4af.7 (8)
|
||||
0x4b0|00 00 00 00 62 49 54 1b |....bIT. | [61]: "2022-04-03T08:00:27Z" (1648972827) transition_time 0x4b0-0x4b7.7 (8)
|
||||
0x4b0| 00 00 00 00 63 5e 21 0b| ....c^!.| [62]: "2022-10-30T07:00:27Z" (1667113227) transition_time 0x4b8-0x4bf.7 (8)
|
||||
0x4c0|00 00 00 00 64 9b 78 1b |....d.x. | [63]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x4c0-0x4c7.7 (8)
|
||||
| | | transition_types[0:64]: 0x4c8-0x507.7 (64)
|
||||
0x4c0| 01 | . | [0]: 1 transition_type 0x4c8-0x4c8.7 (1)
|
||||
0x4c0| 02 | . | [1]: 2 transition_type 0x4c9-0x4c9.7 (1)
|
||||
0x4c0| 04 | . | [2]: 4 transition_type 0x4ca-0x4ca.7 (1)
|
||||
0x4c0| 03 | . | [3]: 3 transition_type 0x4cb-0x4cb.7 (1)
|
||||
0x4c0| 04 | . | [4]: 4 transition_type 0x4cc-0x4cc.7 (1)
|
||||
0x4c0| 02 | . | [5]: 2 transition_type 0x4cd-0x4cd.7 (1)
|
||||
0x4c0| 04 | . | [6]: 4 transition_type 0x4ce-0x4ce.7 (1)
|
||||
0x4c0| 05| .| [7]: 5 transition_type 0x4cf-0x4cf.7 (1)
|
||||
0x4d0|04 |. | [8]: 4 transition_type 0x4d0-0x4d0.7 (1)
|
||||
0x4d0| 03 | . | [9]: 3 transition_type 0x4d1-0x4d1.7 (1)
|
||||
0x4d0| 04 | . | [10]: 4 transition_type 0x4d2-0x4d2.7 (1)
|
||||
0x4d0| 03 | . | [11]: 3 transition_type 0x4d3-0x4d3.7 (1)
|
||||
0x4d0| 04 | . | [12]: 4 transition_type 0x4d4-0x4d4.7 (1)
|
||||
0x4d0| 03 | . | [13]: 3 transition_type 0x4d5-0x4d5.7 (1)
|
||||
0x4d0| 04 | . | [14]: 4 transition_type 0x4d6-0x4d6.7 (1)
|
||||
0x4d0| 03 | . | [15]: 3 transition_type 0x4d7-0x4d7.7 (1)
|
||||
0x4d0| 04 | . | [16]: 4 transition_type 0x4d8-0x4d8.7 (1)
|
||||
0x4d0| 03 | . | [17]: 3 transition_type 0x4d9-0x4d9.7 (1)
|
||||
0x4d0| 04 | . | [18]: 4 transition_type 0x4da-0x4da.7 (1)
|
||||
0x4d0| 03 | . | [19]: 3 transition_type 0x4db-0x4db.7 (1)
|
||||
0x4d0| 04 | . | [20]: 4 transition_type 0x4dc-0x4dc.7 (1)
|
||||
0x4d0| 03 | . | [21]: 3 transition_type 0x4dd-0x4dd.7 (1)
|
||||
0x4d0| 04 | . | [22]: 4 transition_type 0x4de-0x4de.7 (1)
|
||||
0x4d0| 03| .| [23]: 3 transition_type 0x4df-0x4df.7 (1)
|
||||
0x4e0|04 |. | [24]: 4 transition_type 0x4e0-0x4e0.7 (1)
|
||||
0x4e0| 03 | . | [25]: 3 transition_type 0x4e1-0x4e1.7 (1)
|
||||
0x4e0| 04 | . | [26]: 4 transition_type 0x4e2-0x4e2.7 (1)
|
||||
0x4e0| 03 | . | [27]: 3 transition_type 0x4e3-0x4e3.7 (1)
|
||||
0x4e0| 04 | . | [28]: 4 transition_type 0x4e4-0x4e4.7 (1)
|
||||
0x4e0| 03 | . | [29]: 3 transition_type 0x4e5-0x4e5.7 (1)
|
||||
0x4e0| 04 | . | [30]: 4 transition_type 0x4e6-0x4e6.7 (1)
|
||||
0x4e0| 03 | . | [31]: 3 transition_type 0x4e7-0x4e7.7 (1)
|
||||
0x4e0| 04 | . | [32]: 4 transition_type 0x4e8-0x4e8.7 (1)
|
||||
0x4e0| 03 | . | [33]: 3 transition_type 0x4e9-0x4e9.7 (1)
|
||||
0x4e0| 04 | . | [34]: 4 transition_type 0x4ea-0x4ea.7 (1)
|
||||
0x4e0| 03 | . | [35]: 3 transition_type 0x4eb-0x4eb.7 (1)
|
||||
0x4e0| 04 | . | [36]: 4 transition_type 0x4ec-0x4ec.7 (1)
|
||||
0x4e0| 06 | . | [37]: 6 transition_type 0x4ed-0x4ed.7 (1)
|
||||
0x4e0| 02 | . | [38]: 2 transition_type 0x4ee-0x4ee.7 (1)
|
||||
0x4e0| 06| .| [39]: 6 transition_type 0x4ef-0x4ef.7 (1)
|
||||
0x4f0|02 |. | [40]: 2 transition_type 0x4f0-0x4f0.7 (1)
|
||||
0x4f0| 06 | . | [41]: 6 transition_type 0x4f1-0x4f1.7 (1)
|
||||
0x4f0| 02 | . | [42]: 2 transition_type 0x4f2-0x4f2.7 (1)
|
||||
0x4f0| 06 | . | [43]: 6 transition_type 0x4f3-0x4f3.7 (1)
|
||||
0x4f0| 02 | . | [44]: 2 transition_type 0x4f4-0x4f4.7 (1)
|
||||
0x4f0| 06 | . | [45]: 6 transition_type 0x4f5-0x4f5.7 (1)
|
||||
0x4f0| 02 | . | [46]: 2 transition_type 0x4f6-0x4f6.7 (1)
|
||||
0x4f0| 06 | . | [47]: 6 transition_type 0x4f7-0x4f7.7 (1)
|
||||
0x4f0| 02 | . | [48]: 2 transition_type 0x4f8-0x4f8.7 (1)
|
||||
0x4f0| 06 | . | [49]: 6 transition_type 0x4f9-0x4f9.7 (1)
|
||||
0x4f0| 02 | . | [50]: 2 transition_type 0x4fa-0x4fa.7 (1)
|
||||
0x4f0| 06 | . | [51]: 6 transition_type 0x4fb-0x4fb.7 (1)
|
||||
0x4f0| 02 | . | [52]: 2 transition_type 0x4fc-0x4fc.7 (1)
|
||||
0x4f0| 06 | . | [53]: 6 transition_type 0x4fd-0x4fd.7 (1)
|
||||
0x4f0| 02 | . | [54]: 2 transition_type 0x4fe-0x4fe.7 (1)
|
||||
0x4f0| 06| .| [55]: 6 transition_type 0x4ff-0x4ff.7 (1)
|
||||
0x500|02 |. | [56]: 2 transition_type 0x500-0x500.7 (1)
|
||||
0x500| 06 | . | [57]: 6 transition_type 0x501-0x501.7 (1)
|
||||
0x500| 02 | . | [58]: 2 transition_type 0x502-0x502.7 (1)
|
||||
0x500| 06 | . | [59]: 6 transition_type 0x503-0x503.7 (1)
|
||||
0x500| 02 | . | [60]: 2 transition_type 0x504-0x504.7 (1)
|
||||
0x500| 06 | . | [61]: 6 transition_type 0x505-0x505.7 (1)
|
||||
0x500| 02 | . | [62]: 2 transition_type 0x506-0x506.7 (1)
|
||||
0x500| 02 | . | [63]: 2 transition_type 0x507-0x507.7 (1)
|
||||
| | | local_time_type_records[0:8]: 0x508-0x537.7 (48)
|
||||
| | | [0]{}: local_time_type 0x508-0x50d.7 (6)
|
||||
0x500| ff ff 9d 54 | ...T | utoff: -25260 (valid) 0x508-0x50b.7 (4)
|
||||
0x500| 00 | . | dst: 0 (valid) 0x50c-0x50c.7 (1)
|
||||
0x500| 00 | . | idx: 0 (valid) 0x50d-0x50d.7 (1)
|
||||
| | | [1]{}: local_time_type 0x50e-0x513.7 (6)
|
||||
0x500| ff ff| ..| utoff: -25200 (valid) 0x50e-0x511.7 (4)
|
||||
0x510|9d 90 |.. |
|
||||
0x510| 00 | . | dst: 0 (valid) 0x512-0x512.7 (1)
|
||||
0x510| 04 | . | idx: 4 (valid) 0x513-0x513.7 (1)
|
||||
| | | [2]{}: local_time_type 0x514-0x519.7 (6)
|
||||
0x510| ff ff ab a0 | .... | utoff: -21600 (valid) 0x514-0x517.7 (4)
|
||||
0x510| 00 | . | dst: 0 (valid) 0x518-0x518.7 (1)
|
||||
0x510| 08 | . | idx: 8 (valid) 0x519-0x519.7 (1)
|
||||
| | | [3]{}: local_time_type 0x51a-0x51f.7 (6)
|
||||
0x510| ff ff ab a0 | .... | utoff: -21600 (valid) 0x51a-0x51d.7 (4)
|
||||
0x510| 01 | . | dst: 1 (valid) 0x51e-0x51e.7 (1)
|
||||
0x510| 0c| .| idx: 12 (valid) 0x51f-0x51f.7 (1)
|
||||
| | | [4]{}: local_time_type 0x520-0x525.7 (6)
|
||||
0x520|ff ff 9d 90 |.... | utoff: -25200 (valid) 0x520-0x523.7 (4)
|
||||
0x520| 00 | . | dst: 0 (valid) 0x524-0x524.7 (1)
|
||||
0x520| 04 | . | idx: 4 (valid) 0x525-0x525.7 (1)
|
||||
| | | [5]{}: local_time_type 0x526-0x52b.7 (6)
|
||||
0x520| ff ff 8f 80 | .... | utoff: -28800 (valid) 0x526-0x529.7 (4)
|
||||
0x520| 00 | . | dst: 0 (valid) 0x52a-0x52a.7 (1)
|
||||
0x520| 10 | . | idx: 16 (valid) 0x52b-0x52b.7 (1)
|
||||
| | | [6]{}: local_time_type 0x52c-0x531.7 (6)
|
||||
0x520| ff ff b9 b0| ....| utoff: -18000 (valid) 0x52c-0x52f.7 (4)
|
||||
0x530|01 |. | dst: 1 (valid) 0x530-0x530.7 (1)
|
||||
0x530| 14 | . | idx: 20 (valid) 0x531-0x531.7 (1)
|
||||
| | | [7]{}: local_time_type 0x532-0x537.7 (6)
|
||||
0x530| ff ff ab a0 | .... | utoff: -21600 (valid) 0x532-0x535.7 (4)
|
||||
0x530| 00 | . | dst: 0 (valid) 0x536-0x536.7 (1)
|
||||
0x530| 08 | . | idx: 8 (valid) 0x537-0x537.7 (1)
|
||||
| | | time_zone_designations[0:6]: 0x538-0x54f.7 (24)
|
||||
0x530| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x538-0x53b.7 (4)
|
||||
0x530| 4d 53 54 00| MST.| [1]: "MST" time_zone_designation 0x53c-0x53f.7 (4)
|
||||
0x540|43 53 54 00 |CST. | [2]: "CST" time_zone_designation 0x540-0x543.7 (4)
|
||||
0x540| 4d 44 54 00 | MDT. | [3]: "MDT" time_zone_designation 0x544-0x547.7 (4)
|
||||
0x540| 50 53 54 00 | PST. | [4]: "PST" time_zone_designation 0x548-0x54b.7 (4)
|
||||
0x540| 43 44 54 00| CDT.| [5]: "CDT" time_zone_designation 0x54c-0x54f.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x550-0x693.7 (324)
|
||||
| | | [0]{}: leap_second_record 0x550-0x55b.7 (12)
|
||||
0x550|00 00 00 00 04 b2 58 00 |......X. | occur: "1972-07-01T00:00:00Z" (78796800) 0x550-0x557.7 (8)
|
||||
0x550| 00 00 00 01 | .... | corr: 1 0x558-0x55b.7 (4)
|
||||
| | | [1]{}: leap_second_record 0x55c-0x567.7 (12)
|
||||
0x550| 00 00 00 00| ....| occur: "1973-01-01T00:00:01Z" (94694401) 0x55c-0x563.7 (8)
|
||||
0x560|05 a4 ec 01 |.... |
|
||||
0x560| 00 00 00 02 | .... | corr: 2 0x564-0x567.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x568-0x573.7 (12)
|
||||
0x560| 00 00 00 00 07 86 1f 82| ........| occur: "1974-01-01T00:00:02Z" (126230402) 0x568-0x56f.7 (8)
|
||||
0x570|00 00 00 03 |.... | corr: 3 0x570-0x573.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x574-0x57f.7 (12)
|
||||
0x570| 00 00 00 00 09 67 53 03 | .....gS. | occur: "1975-01-01T00:00:03Z" (157766403) 0x574-0x57b.7 (8)
|
||||
0x570| 00 00 00 04| ....| corr: 4 0x57c-0x57f.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x580-0x58b.7 (12)
|
||||
0x580|00 00 00 00 0b 48 86 84 |.....H.. | occur: "1976-01-01T00:00:04Z" (189302404) 0x580-0x587.7 (8)
|
||||
0x580| 00 00 00 05 | .... | corr: 5 0x588-0x58b.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x58c-0x597.7 (12)
|
||||
0x580| 00 00 00 00| ....| occur: "1977-01-01T00:00:05Z" (220924805) 0x58c-0x593.7 (8)
|
||||
0x590|0d 2b 0b 85 |.+.. |
|
||||
0x590| 00 00 00 06 | .... | corr: 6 0x594-0x597.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x598-0x5a3.7 (12)
|
||||
0x590| 00 00 00 00 0f 0c 3f 06| ......?.| occur: "1978-01-01T00:00:06Z" (252460806) 0x598-0x59f.7 (8)
|
||||
0x5a0|00 00 00 07 |.... | corr: 7 0x5a0-0x5a3.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x5a4-0x5af.7 (12)
|
||||
0x5a0| 00 00 00 00 10 ed 72 87 | ......r. | occur: "1979-01-01T00:00:07Z" (283996807) 0x5a4-0x5ab.7 (8)
|
||||
0x5a0| 00 00 00 08| ....| corr: 8 0x5ac-0x5af.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x5b0-0x5bb.7 (12)
|
||||
0x5b0|00 00 00 00 12 ce a6 08 |........ | occur: "1980-01-01T00:00:08Z" (315532808) 0x5b0-0x5b7.7 (8)
|
||||
0x5b0| 00 00 00 09 | .... | corr: 9 0x5b8-0x5bb.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x5bc-0x5c7.7 (12)
|
||||
0x5b0| 00 00 00 00| ....| occur: "1981-07-01T00:00:09Z" (362793609) 0x5bc-0x5c3.7 (8)
|
||||
0x5c0|15 9f ca 89 |.... |
|
||||
0x5c0| 00 00 00 0a | .... | corr: 10 0x5c4-0x5c7.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x5c8-0x5d3.7 (12)
|
||||
0x5c0| 00 00 00 00 17 80 fe 0a| ........| occur: "1982-07-01T00:00:10Z" (394329610) 0x5c8-0x5cf.7 (8)
|
||||
0x5d0|00 00 00 0b |.... | corr: 11 0x5d0-0x5d3.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x5d4-0x5df.7 (12)
|
||||
0x5d0| 00 00 00 00 19 62 31 8b | .....b1. | occur: "1983-07-01T00:00:11Z" (425865611) 0x5d4-0x5db.7 (8)
|
||||
0x5d0| 00 00 00 0c| ....| corr: 12 0x5dc-0x5df.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x5e0-0x5eb.7 (12)
|
||||
0x5e0|00 00 00 00 1d 25 ea 0c |.....%.. | occur: "1985-07-01T00:00:12Z" (489024012) 0x5e0-0x5e7.7 (8)
|
||||
0x5e0| 00 00 00 0d | .... | corr: 13 0x5e8-0x5eb.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x5ec-0x5f7.7 (12)
|
||||
0x5e0| 00 00 00 00| ....| occur: "1988-01-01T00:00:13Z" (567993613) 0x5ec-0x5f3.7 (8)
|
||||
0x5f0|21 da e5 0d |!... |
|
||||
0x5f0| 00 00 00 0e | .... | corr: 14 0x5f4-0x5f7.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x5f8-0x603.7 (12)
|
||||
0x5f0| 00 00 00 00 25 9e 9d 8e| ....%...| occur: "1990-01-01T00:00:14Z" (631152014) 0x5f8-0x5ff.7 (8)
|
||||
0x600|00 00 00 0f |.... | corr: 15 0x600-0x603.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x604-0x60f.7 (12)
|
||||
0x600| 00 00 00 00 27 7f d1 0f | ....'... | occur: "1991-01-01T00:00:15Z" (662688015) 0x604-0x60b.7 (8)
|
||||
0x600| 00 00 00 10| ....| corr: 16 0x60c-0x60f.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x610-0x61b.7 (12)
|
||||
0x610|00 00 00 00 2a 50 f5 90 |....*P.. | occur: "1992-07-01T00:00:16Z" (709948816) 0x610-0x617.7 (8)
|
||||
0x610| 00 00 00 11 | .... | corr: 17 0x618-0x61b.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x61c-0x627.7 (12)
|
||||
0x610| 00 00 00 00| ....| occur: "1993-07-01T00:00:17Z" (741484817) 0x61c-0x623.7 (8)
|
||||
0x620|2c 32 29 11 |,2). |
|
||||
0x620| 00 00 00 12 | .... | corr: 18 0x624-0x627.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x628-0x633.7 (12)
|
||||
0x620| 00 00 00 00 2e 13 5c 92| ......\.| occur: "1994-07-01T00:00:18Z" (773020818) 0x628-0x62f.7 (8)
|
||||
0x630|00 00 00 13 |.... | corr: 19 0x630-0x633.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x634-0x63f.7 (12)
|
||||
0x630| 00 00 00 00 30 e7 24 13 | ....0.$. | occur: "1996-01-01T00:00:19Z" (820454419) 0x634-0x63b.7 (8)
|
||||
0x630| 00 00 00 14| ....| corr: 20 0x63c-0x63f.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x640-0x64b.7 (12)
|
||||
0x640|00 00 00 00 33 b8 48 94 |....3.H. | occur: "1997-07-01T00:00:20Z" (867715220) 0x640-0x647.7 (8)
|
||||
0x640| 00 00 00 15 | .... | corr: 21 0x648-0x64b.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x64c-0x657.7 (12)
|
||||
0x640| 00 00 00 00| ....| occur: "1999-01-01T00:00:21Z" (915148821) 0x64c-0x653.7 (8)
|
||||
0x650|36 8c 10 15 |6... |
|
||||
0x650| 00 00 00 16 | .... | corr: 22 0x654-0x657.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x658-0x663.7 (12)
|
||||
0x650| 00 00 00 00 43 b7 1b 96| ....C...| occur: "2006-01-01T00:00:22Z" (1136073622) 0x658-0x65f.7 (8)
|
||||
0x660|00 00 00 17 |.... | corr: 23 0x660-0x663.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x664-0x66f.7 (12)
|
||||
0x660| 00 00 00 00 49 5c 07 97 | ....I\.. | occur: "2009-01-01T00:00:23Z" (1230768023) 0x664-0x66b.7 (8)
|
||||
0x660| 00 00 00 18| ....| corr: 24 0x66c-0x66f.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x670-0x67b.7 (12)
|
||||
0x670|00 00 00 00 4f ef 93 18 |....O... | occur: "2012-07-01T00:00:24Z" (1341100824) 0x670-0x677.7 (8)
|
||||
0x670| 00 00 00 19 | .... | corr: 25 0x678-0x67b.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x67c-0x687.7 (12)
|
||||
0x670| 00 00 00 00| ....| occur: "2015-07-01T00:00:25Z" (1435708825) 0x67c-0x683.7 (8)
|
||||
0x680|55 93 2d 99 |U.-. |
|
||||
0x680| 00 00 00 1a | .... | corr: 26 0x684-0x687.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x688-0x693.7 (12)
|
||||
0x680| 00 00 00 00 58 68 46 9a| ....XhF.| occur: "2017-01-01T00:00:26Z" (1483228826) 0x688-0x68f.7 (8)
|
||||
0x690|00 00 00 1b |.... | corr: 27 0x690-0x693.7 (4)
|
||||
| | | standard_wall_indicators[0:8]: 0x694-0x69b.7 (8)
|
||||
0x690| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x694-0x694.7 (1)
|
||||
0x690| 01 | . | [1]: 1 standard_wall_indicator (valid) 0x695-0x695.7 (1)
|
||||
0x690| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x696-0x696.7 (1)
|
||||
0x690| 00 | . | [3]: 0 standard_wall_indicator (valid) 0x697-0x697.7 (1)
|
||||
0x690| 00 | . | [4]: 0 standard_wall_indicator (valid) 0x698-0x698.7 (1)
|
||||
0x690| 00 | . | [5]: 0 standard_wall_indicator (valid) 0x699-0x699.7 (1)
|
||||
0x690| 00 | . | [6]: 0 standard_wall_indicator (valid) 0x69a-0x69a.7 (1)
|
||||
0x690| 00 | . | [7]: 0 standard_wall_indicator (valid) 0x69b-0x69b.7 (1)
|
||||
| | | ut_local_indicators[0:8]: 0x69c-0x6a3.7 (8)
|
||||
0x690| 00 | . | [0]: 0 ut_local_indicator (valid) 0x69c-0x69c.7 (1)
|
||||
0x690| 01 | . | [1]: 1 ut_local_indicator (valid) 0x69d-0x69d.7 (1)
|
||||
0x690| 00 | . | [2]: 0 ut_local_indicator (valid) 0x69e-0x69e.7 (1)
|
||||
0x690| 00| .| [3]: 0 ut_local_indicator (valid) 0x69f-0x69f.7 (1)
|
||||
0x6a0|00 |. | [4]: 0 ut_local_indicator (valid) 0x6a0-0x6a0.7 (1)
|
||||
0x6a0| 00 | . | [5]: 0 ut_local_indicator (valid) 0x6a1-0x6a1.7 (1)
|
||||
0x6a0| 00 | . | [6]: 0 ut_local_indicator (valid) 0x6a2-0x6a2.7 (1)
|
||||
0x6a0| 00 | . | [7]: 0 ut_local_indicator (valid) 0x6a3-0x6a3.7 (1)
|
||||
| | | footer{}: 0x6a4-0x6a5.7 (2)
|
||||
0x6a0| 0a | . | nl1: 10 (valid) 0x6a4-0x6a4.7 (1)
|
||||
| | | tz_string: "" 0x6a5-NA (0)
|
||||
0x6a0| 0a| | .| | nl2: 10 (valid) 0x6a5-0x6a5.7 (1)
|
BIN
format/tzif/testdata/Baku
vendored
Normal file
BIN
format/tzif/testdata/Baku
vendored
Normal file
Binary file not shown.
675
format/tzif/testdata/Baku.fqtest
vendored
Normal file
675
format/tzif/testdata/Baku.fqtest
vendored
Normal file
@ -0,0 +1,675 @@
|
||||
$ fq -d tzif dv Baku
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: Baku (tzif) 0x0-0x6df.7 (1760)
|
||||
| | | v1header{}: 0x0-0x2b.7 (44)
|
||||
0x000|54 5a 69 66 |TZif | magic: 0x545a6966 (valid) 0x0-0x3.7 (4)
|
||||
0x000| 32 | 2 | ver: "2" (0x32) (valid) 0x4-0x4.7 (1)
|
||||
0x000| 00 00 00 00 00 00 00 00 00 00 00| ...........| reserved: raw bits 0x5-0x13.7 (15)
|
||||
0x010|00 00 00 00 |.... |
|
||||
0x010| 00 00 00 0a | .... | isutcnt: 10 0x14-0x17.7 (4)
|
||||
0x010| 00 00 00 0a | .... | isstdcnt: 10 0x18-0x1b.7 (4)
|
||||
0x010| 00 00 00 1b| ....| leapcnt: 27 0x1c-0x1f.7 (4)
|
||||
0x020|00 00 00 43 |...C | timecnt: 67 0x20-0x23.7 (4)
|
||||
0x020| 00 00 00 0a | .... | typecnt: 10 0x24-0x27.7 (4)
|
||||
0x020| 00 00 00 10 | .... | charcnt: 16 0x28-0x2b.7 (4)
|
||||
| | | v1datablock{}: 0x2c-0x2b2.7 (647)
|
||||
| | | transition_times[0:67]: 0x2c-0x137.7 (268)
|
||||
0x020| aa 19 95 44| ...D| [0]: "1924-05-01T20:40:36Z" (-1441163964) transition_time 0x2c-0x2f.7 (4)
|
||||
0x030|e7 da 0c 50 |...P | [1]: "1957-02-28T21:00:00Z" (-405140400) transition_time 0x30-0x33.7 (4)
|
||||
0x030| 15 27 99 c9 | .'.. | [2]: "1981-03-31T20:00:09Z" (354916809) transition_time 0x34-0x37.7 (4)
|
||||
0x030| 16 18 ce 3a | ...: | [3]: "1981-09-30T19:00:10Z" (370724410) transition_time 0x38-0x3b.7 (4)
|
||||
0x030| 17 08 cd 4a| ...J| [4]: "1982-03-31T20:00:10Z" (386452810) transition_time 0x3c-0x3f.7 (4)
|
||||
0x040|17 fa 01 bb |.... | [5]: "1982-09-30T19:00:11Z" (402260411) transition_time 0x40-0x43.7 (4)
|
||||
0x040| 18 ea 00 cb | .... | [6]: "1983-03-31T20:00:11Z" (417988811) transition_time 0x44-0x47.7 (4)
|
||||
0x040| 19 db 35 3c | ..5< | [7]: "1983-09-30T19:00:12Z" (433796412) transition_time 0x48-0x4b.7 (4)
|
||||
0x040| 1a cc 85 cc| ....| [8]: "1984-03-31T20:00:12Z" (449611212) transition_time 0x4c-0x4f.7 (4)
|
||||
0x050|1b bc 92 ec |.... | [9]: "1984-09-29T22:00:12Z" (465343212) transition_time 0x50-0x53.7 (4)
|
||||
0x050| 1c ac 83 ec | .... | [10]: "1985-03-30T22:00:12Z" (481068012) transition_time 0x54-0x57.7 (4)
|
||||
0x050| 1d 9c 74 ed | ..t. | [11]: "1985-09-28T22:00:13Z" (496792813) transition_time 0x58-0x5b.7 (4)
|
||||
0x050| 1e 8c 65 ed| ..e.| [12]: "1986-03-29T22:00:13Z" (512517613) transition_time 0x5c-0x5f.7 (4)
|
||||
0x060|1f 7c 56 ed |.|V. | [13]: "1986-09-27T22:00:13Z" (528242413) transition_time 0x60-0x63.7 (4)
|
||||
0x060| 20 6c 47 ed | lG. | [14]: "1987-03-28T22:00:13Z" (543967213) transition_time 0x64-0x67.7 (4)
|
||||
0x060| 21 5c 38 ed | !\8. | [15]: "1987-09-26T22:00:13Z" (559692013) transition_time 0x68-0x6b.7 (4)
|
||||
0x060| 22 4c 29 ee| "L).| [16]: "1988-03-26T22:00:14Z" (575416814) transition_time 0x6c-0x6f.7 (4)
|
||||
0x070|23 3c 1a ee |#<.. | [17]: "1988-09-24T22:00:14Z" (591141614) transition_time 0x70-0x73.7 (4)
|
||||
0x070| 24 2c 0b ee | $,.. | [18]: "1989-03-25T22:00:14Z" (606866414) transition_time 0x74-0x77.7 (4)
|
||||
0x070| 25 1b fc ee | %... | [19]: "1989-09-23T22:00:14Z" (622591214) transition_time 0x78-0x7b.7 (4)
|
||||
0x070| 26 0b ed ef| &...| [20]: "1990-03-24T22:00:15Z" (638316015) transition_time 0x7c-0x7f.7 (4)
|
||||
0x080|27 05 19 6f |'..o | [21]: "1990-09-29T22:00:15Z" (654645615) transition_time 0x80-0x83.7 (4)
|
||||
0x080| 27 f5 0a 70 | '..p | [22]: "1991-03-30T22:00:16Z" (670370416) transition_time 0x84-0x87.7 (4)
|
||||
0x080| 28 e5 09 80 | (... | [23]: "1991-09-28T23:00:16Z" (686098816) transition_time 0x88-0x8b.7 (4)
|
||||
0x080| 29 d4 fa 80| )...| [24]: "1992-03-28T23:00:16Z" (701823616) transition_time 0x8c-0x8f.7 (4)
|
||||
0x090|2a c4 eb 81 |*... | [25]: "1992-09-26T23:00:17Z" (717548417) transition_time 0x90-0x93.7 (4)
|
||||
0x090| 31 5d d9 24 | 1].$ | [26]: "1996-03-31T01:00:20Z" (828234020) transition_time 0x94-0x97.7 (4)
|
||||
0x090| 32 72 b4 24 | 2r.$ | [27]: "1996-10-27T01:00:20Z" (846378020) transition_time 0x98-0x9b.7 (4)
|
||||
0x090| 33 3d ad 14| 3=..| [28]: "1997-03-30T00:00:20Z" (859680020) transition_time 0x9c-0x9f.7 (4)
|
||||
0x0a0|34 52 88 15 |4R.. | [29]: "1997-10-26T00:00:21Z" (877824021) transition_time 0xa0-0xa3.7 (4)
|
||||
0x0a0| 35 1d 8f 15 | 5... | [30]: "1998-03-29T00:00:21Z" (891129621) transition_time 0xa4-0xa7.7 (4)
|
||||
0x0a0| 36 32 6a 15 | 62j. | [31]: "1998-10-25T00:00:21Z" (909273621) transition_time 0xa8-0xab.7 (4)
|
||||
0x0a0| 36 fd 71 16| 6.q.| [32]: "1999-03-28T00:00:22Z" (922579222) transition_time 0xac-0xaf.7 (4)
|
||||
0x0b0|38 1b 86 96 |8... | [33]: "1999-10-31T00:00:22Z" (941328022) transition_time 0xb0-0xb3.7 (4)
|
||||
0x0b0| 38 dd 53 16 | 8.S. | [34]: "2000-03-26T00:00:22Z" (954028822) transition_time 0xb4-0xb7.7 (4)
|
||||
0x0b0| 39 fb 68 96 | 9.h. | [35]: "2000-10-29T00:00:22Z" (972777622) transition_time 0xb8-0xbb.7 (4)
|
||||
0x0b0| 3a bd 35 16| :.5.| [36]: "2001-03-25T00:00:22Z" (985478422) transition_time 0xbc-0xbf.7 (4)
|
||||
0x0c0|3b db 4a 96 |;.J. | [37]: "2001-10-28T00:00:22Z" (1004227222) transition_time 0xc0-0xc3.7 (4)
|
||||
0x0c0| 3c a6 51 96 | <.Q. | [38]: "2002-03-31T00:00:22Z" (1017532822) transition_time 0xc4-0xc7.7 (4)
|
||||
0x0c0| 3d bb 2c 96 | =.,. | [39]: "2002-10-27T00:00:22Z" (1035676822) transition_time 0xc8-0xcb.7 (4)
|
||||
0x0c0| 3e 86 33 96| >.3.| [40]: "2003-03-30T00:00:22Z" (1048982422) transition_time 0xcc-0xcf.7 (4)
|
||||
0x0d0|3f 9b 0e 96 |?... | [41]: "2003-10-26T00:00:22Z" (1067126422) transition_time 0xd0-0xd3.7 (4)
|
||||
0x0d0| 40 66 15 96 | @f.. | [42]: "2004-03-28T00:00:22Z" (1080432022) transition_time 0xd4-0xd7.7 (4)
|
||||
0x0d0| 41 84 2b 16 | A.+. | [43]: "2004-10-31T00:00:22Z" (1099180822) transition_time 0xd8-0xdb.7 (4)
|
||||
0x0d0| 42 45 f7 96| BE..| [44]: "2005-03-27T00:00:22Z" (1111881622) transition_time 0xdc-0xdf.7 (4)
|
||||
0x0e0|43 64 0d 16 |Cd.. | [45]: "2005-10-30T00:00:22Z" (1130630422) transition_time 0xe0-0xe3.7 (4)
|
||||
0x0e0| 44 25 d9 97 | D%.. | [46]: "2006-03-26T00:00:23Z" (1143331223) transition_time 0xe4-0xe7.7 (4)
|
||||
0x0e0| 45 43 ef 17 | EC.. | [47]: "2006-10-29T00:00:23Z" (1162080023) transition_time 0xe8-0xeb.7 (4)
|
||||
0x0e0| 46 05 bb 97| F...| [48]: "2007-03-25T00:00:23Z" (1174780823) transition_time 0xec-0xef.7 (4)
|
||||
0x0f0|47 23 d1 17 |G#.. | [49]: "2007-10-28T00:00:23Z" (1193529623) transition_time 0xf0-0xf3.7 (4)
|
||||
0x0f0| 47 ee d8 17 | G... | [50]: "2008-03-30T00:00:23Z" (1206835223) transition_time 0xf4-0xf7.7 (4)
|
||||
0x0f0| 49 03 b3 17 | I... | [51]: "2008-10-26T00:00:23Z" (1224979223) transition_time 0xf8-0xfb.7 (4)
|
||||
0x0f0| 49 ce ba 18| I...| [52]: "2009-03-29T00:00:24Z" (1238284824) transition_time 0xfc-0xff.7 (4)
|
||||
0x100|4a e3 95 18 |J... | [53]: "2009-10-25T00:00:24Z" (1256428824) transition_time 0x100-0x103.7 (4)
|
||||
0x100| 4b ae 9c 18 | K... | [54]: "2010-03-28T00:00:24Z" (1269734424) transition_time 0x104-0x107.7 (4)
|
||||
0x100| 4c cc b1 98 | L... | [55]: "2010-10-31T00:00:24Z" (1288483224) transition_time 0x108-0x10b.7 (4)
|
||||
0x100| 4d 8e 7e 18| M.~.| [56]: "2011-03-27T00:00:24Z" (1301184024) transition_time 0x10c-0x10f.7 (4)
|
||||
0x110|4e ac 93 98 |N... | [57]: "2011-10-30T00:00:24Z" (1319932824) transition_time 0x110-0x113.7 (4)
|
||||
0x110| 4f 6e 60 18 | On`. | [58]: "2012-03-25T00:00:24Z" (1332633624) transition_time 0x114-0x117.7 (4)
|
||||
0x110| 50 8c 75 99 | P.u. | [59]: "2012-10-28T00:00:25Z" (1351382425) transition_time 0x118-0x11b.7 (4)
|
||||
0x110| 51 57 7c 99| QW|.| [60]: "2013-03-31T00:00:25Z" (1364688025) transition_time 0x11c-0x11f.7 (4)
|
||||
0x120|52 6c 57 99 |RlW. | [61]: "2013-10-27T00:00:25Z" (1382832025) transition_time 0x120-0x123.7 (4)
|
||||
0x120| 53 37 5e 99 | S7^. | [62]: "2014-03-30T00:00:25Z" (1396137625) transition_time 0x124-0x127.7 (4)
|
||||
0x120| 54 4c 39 99 | TL9. | [63]: "2014-10-26T00:00:25Z" (1414281625) transition_time 0x128-0x12b.7 (4)
|
||||
0x120| 55 17 40 99| U.@.| [64]: "2015-03-29T00:00:25Z" (1427587225) transition_time 0x12c-0x12f.7 (4)
|
||||
0x130|56 2c 1b 9a |V,.. | [65]: "2015-10-25T00:00:26Z" (1445731226) transition_time 0x130-0x133.7 (4)
|
||||
0x130| 64 9b 78 1b | d.x. | [66]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x134-0x137.7 (4)
|
||||
| | | transition_types[0:67]: 0x138-0x17a.7 (67)
|
||||
0x130| 01 | . | [0]: 1 transition_type 0x138-0x138.7 (1)
|
||||
0x130| 03 | . | [1]: 3 transition_type 0x139-0x139.7 (1)
|
||||
0x130| 02 | . | [2]: 2 transition_type 0x13a-0x13a.7 (1)
|
||||
0x130| 03 | . | [3]: 3 transition_type 0x13b-0x13b.7 (1)
|
||||
0x130| 02 | . | [4]: 2 transition_type 0x13c-0x13c.7 (1)
|
||||
0x130| 03 | . | [5]: 3 transition_type 0x13d-0x13d.7 (1)
|
||||
0x130| 02 | . | [6]: 2 transition_type 0x13e-0x13e.7 (1)
|
||||
0x130| 03| .| [7]: 3 transition_type 0x13f-0x13f.7 (1)
|
||||
0x140|02 |. | [8]: 2 transition_type 0x140-0x140.7 (1)
|
||||
0x140| 04 | . | [9]: 4 transition_type 0x141-0x141.7 (1)
|
||||
0x140| 05 | . | [10]: 5 transition_type 0x142-0x142.7 (1)
|
||||
0x140| 04 | . | [11]: 4 transition_type 0x143-0x143.7 (1)
|
||||
0x140| 05 | . | [12]: 5 transition_type 0x144-0x144.7 (1)
|
||||
0x140| 04 | . | [13]: 4 transition_type 0x145-0x145.7 (1)
|
||||
0x140| 05 | . | [14]: 5 transition_type 0x146-0x146.7 (1)
|
||||
0x140| 04 | . | [15]: 4 transition_type 0x147-0x147.7 (1)
|
||||
0x140| 05 | . | [16]: 5 transition_type 0x148-0x148.7 (1)
|
||||
0x140| 04 | . | [17]: 4 transition_type 0x149-0x149.7 (1)
|
||||
0x140| 05 | . | [18]: 5 transition_type 0x14a-0x14a.7 (1)
|
||||
0x140| 04 | . | [19]: 4 transition_type 0x14b-0x14b.7 (1)
|
||||
0x140| 05 | . | [20]: 5 transition_type 0x14c-0x14c.7 (1)
|
||||
0x140| 04 | . | [21]: 4 transition_type 0x14d-0x14d.7 (1)
|
||||
0x140| 06 | . | [22]: 6 transition_type 0x14e-0x14e.7 (1)
|
||||
0x140| 07| .| [23]: 7 transition_type 0x14f-0x14f.7 (1)
|
||||
0x150|06 |. | [24]: 6 transition_type 0x150-0x150.7 (1)
|
||||
0x150| 04 | . | [25]: 4 transition_type 0x151-0x151.7 (1)
|
||||
0x150| 08 | . | [26]: 8 transition_type 0x152-0x152.7 (1)
|
||||
0x150| 09 | . | [27]: 9 transition_type 0x153-0x153.7 (1)
|
||||
0x150| 02 | . | [28]: 2 transition_type 0x154-0x154.7 (1)
|
||||
0x150| 03 | . | [29]: 3 transition_type 0x155-0x155.7 (1)
|
||||
0x150| 02 | . | [30]: 2 transition_type 0x156-0x156.7 (1)
|
||||
0x150| 03 | . | [31]: 3 transition_type 0x157-0x157.7 (1)
|
||||
0x150| 02 | . | [32]: 2 transition_type 0x158-0x158.7 (1)
|
||||
0x150| 03 | . | [33]: 3 transition_type 0x159-0x159.7 (1)
|
||||
0x150| 02 | . | [34]: 2 transition_type 0x15a-0x15a.7 (1)
|
||||
0x150| 03 | . | [35]: 3 transition_type 0x15b-0x15b.7 (1)
|
||||
0x150| 02 | . | [36]: 2 transition_type 0x15c-0x15c.7 (1)
|
||||
0x150| 03 | . | [37]: 3 transition_type 0x15d-0x15d.7 (1)
|
||||
0x150| 02 | . | [38]: 2 transition_type 0x15e-0x15e.7 (1)
|
||||
0x150| 03| .| [39]: 3 transition_type 0x15f-0x15f.7 (1)
|
||||
0x160|02 |. | [40]: 2 transition_type 0x160-0x160.7 (1)
|
||||
0x160| 03 | . | [41]: 3 transition_type 0x161-0x161.7 (1)
|
||||
0x160| 02 | . | [42]: 2 transition_type 0x162-0x162.7 (1)
|
||||
0x160| 03 | . | [43]: 3 transition_type 0x163-0x163.7 (1)
|
||||
0x160| 02 | . | [44]: 2 transition_type 0x164-0x164.7 (1)
|
||||
0x160| 03 | . | [45]: 3 transition_type 0x165-0x165.7 (1)
|
||||
0x160| 02 | . | [46]: 2 transition_type 0x166-0x166.7 (1)
|
||||
0x160| 03 | . | [47]: 3 transition_type 0x167-0x167.7 (1)
|
||||
0x160| 02 | . | [48]: 2 transition_type 0x168-0x168.7 (1)
|
||||
0x160| 03 | . | [49]: 3 transition_type 0x169-0x169.7 (1)
|
||||
0x160| 02 | . | [50]: 2 transition_type 0x16a-0x16a.7 (1)
|
||||
0x160| 03 | . | [51]: 3 transition_type 0x16b-0x16b.7 (1)
|
||||
0x160| 02 | . | [52]: 2 transition_type 0x16c-0x16c.7 (1)
|
||||
0x160| 03 | . | [53]: 3 transition_type 0x16d-0x16d.7 (1)
|
||||
0x160| 02 | . | [54]: 2 transition_type 0x16e-0x16e.7 (1)
|
||||
0x160| 03| .| [55]: 3 transition_type 0x16f-0x16f.7 (1)
|
||||
0x170|02 |. | [56]: 2 transition_type 0x170-0x170.7 (1)
|
||||
0x170| 03 | . | [57]: 3 transition_type 0x171-0x171.7 (1)
|
||||
0x170| 02 | . | [58]: 2 transition_type 0x172-0x172.7 (1)
|
||||
0x170| 03 | . | [59]: 3 transition_type 0x173-0x173.7 (1)
|
||||
0x170| 02 | . | [60]: 2 transition_type 0x174-0x174.7 (1)
|
||||
0x170| 03 | . | [61]: 3 transition_type 0x175-0x175.7 (1)
|
||||
0x170| 02 | . | [62]: 2 transition_type 0x176-0x176.7 (1)
|
||||
0x170| 03 | . | [63]: 3 transition_type 0x177-0x177.7 (1)
|
||||
0x170| 02 | . | [64]: 2 transition_type 0x178-0x178.7 (1)
|
||||
0x170| 03 | . | [65]: 3 transition_type 0x179-0x179.7 (1)
|
||||
0x170| 03 | . | [66]: 3 transition_type 0x17a-0x17a.7 (1)
|
||||
| | | local_time_type_records[0:10]: 0x17b-0x1b6.7 (60)
|
||||
| | | [0]{}: local_time_type 0x17b-0x180.7 (6)
|
||||
0x170| 00 00 2e bc | .... | utoff: 11964 (valid) 0x17b-0x17e.7 (4)
|
||||
0x170| 00| .| dst: 0 (valid) 0x17f-0x17f.7 (1)
|
||||
0x180|00 |. | idx: 0 (valid) 0x180-0x180.7 (1)
|
||||
| | | [1]{}: local_time_type 0x181-0x186.7 (6)
|
||||
0x180| 00 00 2a 30 | ..*0 | utoff: 10800 (valid) 0x181-0x184.7 (4)
|
||||
0x180| 00 | . | dst: 0 (valid) 0x185-0x185.7 (1)
|
||||
0x180| 04 | . | idx: 4 (valid) 0x186-0x186.7 (1)
|
||||
| | | [2]{}: local_time_type 0x187-0x18c.7 (6)
|
||||
0x180| 00 00 46 50 | ..FP | utoff: 18000 (valid) 0x187-0x18a.7 (4)
|
||||
0x180| 01 | . | dst: 1 (valid) 0x18b-0x18b.7 (1)
|
||||
0x180| 08 | . | idx: 8 (valid) 0x18c-0x18c.7 (1)
|
||||
| | | [3]{}: local_time_type 0x18d-0x192.7 (6)
|
||||
0x180| 00 00 38| ..8| utoff: 14400 (valid) 0x18d-0x190.7 (4)
|
||||
0x190|40 |@ |
|
||||
0x190| 00 | . | dst: 0 (valid) 0x191-0x191.7 (1)
|
||||
0x190| 0c | . | idx: 12 (valid) 0x192-0x192.7 (1)
|
||||
| | | [4]{}: local_time_type 0x193-0x198.7 (6)
|
||||
0x190| 00 00 38 40 | ..8@ | utoff: 14400 (valid) 0x193-0x196.7 (4)
|
||||
0x190| 00 | . | dst: 0 (valid) 0x197-0x197.7 (1)
|
||||
0x190| 0c | . | idx: 12 (valid) 0x198-0x198.7 (1)
|
||||
| | | [5]{}: local_time_type 0x199-0x19e.7 (6)
|
||||
0x190| 00 00 46 50 | ..FP | utoff: 18000 (valid) 0x199-0x19c.7 (4)
|
||||
0x190| 01 | . | dst: 1 (valid) 0x19d-0x19d.7 (1)
|
||||
0x190| 08 | . | idx: 8 (valid) 0x19e-0x19e.7 (1)
|
||||
| | | [6]{}: local_time_type 0x19f-0x1a4.7 (6)
|
||||
0x190| 00| .| utoff: 14400 (valid) 0x19f-0x1a2.7 (4)
|
||||
0x1a0|00 38 40 |.8@ |
|
||||
0x1a0| 01 | . | dst: 1 (valid) 0x1a3-0x1a3.7 (1)
|
||||
0x1a0| 0c | . | idx: 12 (valid) 0x1a4-0x1a4.7 (1)
|
||||
| | | [7]{}: local_time_type 0x1a5-0x1aa.7 (6)
|
||||
0x1a0| 00 00 2a 30 | ..*0 | utoff: 10800 (valid) 0x1a5-0x1a8.7 (4)
|
||||
0x1a0| 00 | . | dst: 0 (valid) 0x1a9-0x1a9.7 (1)
|
||||
0x1a0| 04 | . | idx: 4 (valid) 0x1aa-0x1aa.7 (1)
|
||||
| | | [8]{}: local_time_type 0x1ab-0x1b0.7 (6)
|
||||
0x1a0| 00 00 46 50 | ..FP | utoff: 18000 (valid) 0x1ab-0x1ae.7 (4)
|
||||
0x1a0| 01| .| dst: 1 (valid) 0x1af-0x1af.7 (1)
|
||||
0x1b0|08 |. | idx: 8 (valid) 0x1b0-0x1b0.7 (1)
|
||||
| | | [9]{}: local_time_type 0x1b1-0x1b6.7 (6)
|
||||
0x1b0| 00 00 38 40 | ..8@ | utoff: 14400 (valid) 0x1b1-0x1b4.7 (4)
|
||||
0x1b0| 00 | . | dst: 0 (valid) 0x1b5-0x1b5.7 (1)
|
||||
0x1b0| 0c | . | idx: 12 (valid) 0x1b6-0x1b6.7 (1)
|
||||
| | | time_zone_designations[0:4]: 0x1b7-0x1c6.7 (16)
|
||||
0x1b0| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x1b7-0x1ba.7 (4)
|
||||
0x1b0| 2b 30 33 00 | +03. | [1]: "+03" time_zone_designation 0x1bb-0x1be.7 (4)
|
||||
0x1b0| 2b| +| [2]: "+05" time_zone_designation 0x1bf-0x1c2.7 (4)
|
||||
0x1c0|30 35 00 |05. |
|
||||
0x1c0| 2b 30 34 00 | +04. | [3]: "+04" time_zone_designation 0x1c3-0x1c6.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x1c7-0x29e.7 (216)
|
||||
| | | [0]{}: leap_second_record 0x1c7-0x1ce.7 (8)
|
||||
0x1c0| 04 b2 58 00 | ..X. | occur: "1972-07-01T00:00:00Z" (78796800) 0x1c7-0x1ca.7 (4)
|
||||
0x1c0| 00 00 00 01 | .... | corr: 1 0x1cb-0x1ce.7 (4)
|
||||
| | | [1]{}: leap_second_record 0x1cf-0x1d6.7 (8)
|
||||
0x1c0| 05| .| occur: "1973-01-01T00:00:01Z" (94694401) 0x1cf-0x1d2.7 (4)
|
||||
0x1d0|a4 ec 01 |... |
|
||||
0x1d0| 00 00 00 02 | .... | corr: 2 0x1d3-0x1d6.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x1d7-0x1de.7 (8)
|
||||
0x1d0| 07 86 1f 82 | .... | occur: "1974-01-01T00:00:02Z" (126230402) 0x1d7-0x1da.7 (4)
|
||||
0x1d0| 00 00 00 03 | .... | corr: 3 0x1db-0x1de.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x1df-0x1e6.7 (8)
|
||||
0x1d0| 09| .| occur: "1975-01-01T00:00:03Z" (157766403) 0x1df-0x1e2.7 (4)
|
||||
0x1e0|67 53 03 |gS. |
|
||||
0x1e0| 00 00 00 04 | .... | corr: 4 0x1e3-0x1e6.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x1e7-0x1ee.7 (8)
|
||||
0x1e0| 0b 48 86 84 | .H.. | occur: "1976-01-01T00:00:04Z" (189302404) 0x1e7-0x1ea.7 (4)
|
||||
0x1e0| 00 00 00 05 | .... | corr: 5 0x1eb-0x1ee.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x1ef-0x1f6.7 (8)
|
||||
0x1e0| 0d| .| occur: "1977-01-01T00:00:05Z" (220924805) 0x1ef-0x1f2.7 (4)
|
||||
0x1f0|2b 0b 85 |+.. |
|
||||
0x1f0| 00 00 00 06 | .... | corr: 6 0x1f3-0x1f6.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x1f7-0x1fe.7 (8)
|
||||
0x1f0| 0f 0c 3f 06 | ..?. | occur: "1978-01-01T00:00:06Z" (252460806) 0x1f7-0x1fa.7 (4)
|
||||
0x1f0| 00 00 00 07 | .... | corr: 7 0x1fb-0x1fe.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x1ff-0x206.7 (8)
|
||||
0x1f0| 10| .| occur: "1979-01-01T00:00:07Z" (283996807) 0x1ff-0x202.7 (4)
|
||||
0x200|ed 72 87 |.r. |
|
||||
0x200| 00 00 00 08 | .... | corr: 8 0x203-0x206.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x207-0x20e.7 (8)
|
||||
0x200| 12 ce a6 08 | .... | occur: "1980-01-01T00:00:08Z" (315532808) 0x207-0x20a.7 (4)
|
||||
0x200| 00 00 00 09 | .... | corr: 9 0x20b-0x20e.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x20f-0x216.7 (8)
|
||||
0x200| 15| .| occur: "1981-07-01T00:00:09Z" (362793609) 0x20f-0x212.7 (4)
|
||||
0x210|9f ca 89 |... |
|
||||
0x210| 00 00 00 0a | .... | corr: 10 0x213-0x216.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x217-0x21e.7 (8)
|
||||
0x210| 17 80 fe 0a | .... | occur: "1982-07-01T00:00:10Z" (394329610) 0x217-0x21a.7 (4)
|
||||
0x210| 00 00 00 0b | .... | corr: 11 0x21b-0x21e.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x21f-0x226.7 (8)
|
||||
0x210| 19| .| occur: "1983-07-01T00:00:11Z" (425865611) 0x21f-0x222.7 (4)
|
||||
0x220|62 31 8b |b1. |
|
||||
0x220| 00 00 00 0c | .... | corr: 12 0x223-0x226.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x227-0x22e.7 (8)
|
||||
0x220| 1d 25 ea 0c | .%.. | occur: "1985-07-01T00:00:12Z" (489024012) 0x227-0x22a.7 (4)
|
||||
0x220| 00 00 00 0d | .... | corr: 13 0x22b-0x22e.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x22f-0x236.7 (8)
|
||||
0x220| 21| !| occur: "1988-01-01T00:00:13Z" (567993613) 0x22f-0x232.7 (4)
|
||||
0x230|da e5 0d |... |
|
||||
0x230| 00 00 00 0e | .... | corr: 14 0x233-0x236.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x237-0x23e.7 (8)
|
||||
0x230| 25 9e 9d 8e | %... | occur: "1990-01-01T00:00:14Z" (631152014) 0x237-0x23a.7 (4)
|
||||
0x230| 00 00 00 0f | .... | corr: 15 0x23b-0x23e.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x23f-0x246.7 (8)
|
||||
0x230| 27| '| occur: "1991-01-01T00:00:15Z" (662688015) 0x23f-0x242.7 (4)
|
||||
0x240|7f d1 0f |... |
|
||||
0x240| 00 00 00 10 | .... | corr: 16 0x243-0x246.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x247-0x24e.7 (8)
|
||||
0x240| 2a 50 f5 90 | *P.. | occur: "1992-07-01T00:00:16Z" (709948816) 0x247-0x24a.7 (4)
|
||||
0x240| 00 00 00 11 | .... | corr: 17 0x24b-0x24e.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x24f-0x256.7 (8)
|
||||
0x240| 2c| ,| occur: "1993-07-01T00:00:17Z" (741484817) 0x24f-0x252.7 (4)
|
||||
0x250|32 29 11 |2). |
|
||||
0x250| 00 00 00 12 | .... | corr: 18 0x253-0x256.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x257-0x25e.7 (8)
|
||||
0x250| 2e 13 5c 92 | ..\. | occur: "1994-07-01T00:00:18Z" (773020818) 0x257-0x25a.7 (4)
|
||||
0x250| 00 00 00 13 | .... | corr: 19 0x25b-0x25e.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x25f-0x266.7 (8)
|
||||
0x250| 30| 0| occur: "1996-01-01T00:00:19Z" (820454419) 0x25f-0x262.7 (4)
|
||||
0x260|e7 24 13 |.$. |
|
||||
0x260| 00 00 00 14 | .... | corr: 20 0x263-0x266.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x267-0x26e.7 (8)
|
||||
0x260| 33 b8 48 94 | 3.H. | occur: "1997-07-01T00:00:20Z" (867715220) 0x267-0x26a.7 (4)
|
||||
0x260| 00 00 00 15 | .... | corr: 21 0x26b-0x26e.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x26f-0x276.7 (8)
|
||||
0x260| 36| 6| occur: "1999-01-01T00:00:21Z" (915148821) 0x26f-0x272.7 (4)
|
||||
0x270|8c 10 15 |... |
|
||||
0x270| 00 00 00 16 | .... | corr: 22 0x273-0x276.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x277-0x27e.7 (8)
|
||||
0x270| 43 b7 1b 96 | C... | occur: "2006-01-01T00:00:22Z" (1136073622) 0x277-0x27a.7 (4)
|
||||
0x270| 00 00 00 17 | .... | corr: 23 0x27b-0x27e.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x27f-0x286.7 (8)
|
||||
0x270| 49| I| occur: "2009-01-01T00:00:23Z" (1230768023) 0x27f-0x282.7 (4)
|
||||
0x280|5c 07 97 |\.. |
|
||||
0x280| 00 00 00 18 | .... | corr: 24 0x283-0x286.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x287-0x28e.7 (8)
|
||||
0x280| 4f ef 93 18 | O... | occur: "2012-07-01T00:00:24Z" (1341100824) 0x287-0x28a.7 (4)
|
||||
0x280| 00 00 00 19 | .... | corr: 25 0x28b-0x28e.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x28f-0x296.7 (8)
|
||||
0x280| 55| U| occur: "2015-07-01T00:00:25Z" (1435708825) 0x28f-0x292.7 (4)
|
||||
0x290|93 2d 99 |.-. |
|
||||
0x290| 00 00 00 1a | .... | corr: 26 0x293-0x296.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x297-0x29e.7 (8)
|
||||
0x290| 58 68 46 9a | XhF. | occur: "2017-01-01T00:00:26Z" (1483228826) 0x297-0x29a.7 (4)
|
||||
0x290| 00 00 00 1b | .... | corr: 27 0x29b-0x29e.7 (4)
|
||||
| | | standard_wall_indicators[0:10]: 0x29f-0x2a8.7 (10)
|
||||
0x290| 00| .| [0]: 0 standard_wall_indicator (valid) 0x29f-0x29f.7 (1)
|
||||
0x2a0|00 |. | [1]: 0 standard_wall_indicator (valid) 0x2a0-0x2a0.7 (1)
|
||||
0x2a0| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x2a1-0x2a1.7 (1)
|
||||
0x2a0| 00 | . | [3]: 0 standard_wall_indicator (valid) 0x2a2-0x2a2.7 (1)
|
||||
0x2a0| 01 | . | [4]: 1 standard_wall_indicator (valid) 0x2a3-0x2a3.7 (1)
|
||||
0x2a0| 01 | . | [5]: 1 standard_wall_indicator (valid) 0x2a4-0x2a4.7 (1)
|
||||
0x2a0| 01 | . | [6]: 1 standard_wall_indicator (valid) 0x2a5-0x2a5.7 (1)
|
||||
0x2a0| 01 | . | [7]: 1 standard_wall_indicator (valid) 0x2a6-0x2a6.7 (1)
|
||||
0x2a0| 01 | . | [8]: 1 standard_wall_indicator (valid) 0x2a7-0x2a7.7 (1)
|
||||
0x2a0| 01 | . | [9]: 1 standard_wall_indicator (valid) 0x2a8-0x2a8.7 (1)
|
||||
| | | ut_local_indicators[0:10]: 0x2a9-0x2b2.7 (10)
|
||||
0x2a0| 00 | . | [0]: 0 ut_local_indicator (valid) 0x2a9-0x2a9.7 (1)
|
||||
0x2a0| 00 | . | [1]: 0 ut_local_indicator (valid) 0x2aa-0x2aa.7 (1)
|
||||
0x2a0| 00 | . | [2]: 0 ut_local_indicator (valid) 0x2ab-0x2ab.7 (1)
|
||||
0x2a0| 00 | . | [3]: 0 ut_local_indicator (valid) 0x2ac-0x2ac.7 (1)
|
||||
0x2a0| 00 | . | [4]: 0 ut_local_indicator (valid) 0x2ad-0x2ad.7 (1)
|
||||
0x2a0| 00 | . | [5]: 0 ut_local_indicator (valid) 0x2ae-0x2ae.7 (1)
|
||||
0x2a0| 00| .| [6]: 0 ut_local_indicator (valid) 0x2af-0x2af.7 (1)
|
||||
0x2b0|00 |. | [7]: 0 ut_local_indicator (valid) 0x2b0-0x2b0.7 (1)
|
||||
0x2b0| 01 | . | [8]: 1 ut_local_indicator (valid) 0x2b1-0x2b1.7 (1)
|
||||
0x2b0| 01 | . | [9]: 1 ut_local_indicator (valid) 0x2b2-0x2b2.7 (1)
|
||||
| | | v2plusheader{}: 0x2b3-0x2de.7 (44)
|
||||
0x2b0| 54 5a 69 66 | TZif | magic: 0x545a6966 (valid) 0x2b3-0x2b6.7 (4)
|
||||
0x2b0| 32 | 2 | ver: "2" (0x32) (valid) 0x2b7-0x2b7.7 (1)
|
||||
0x2b0| 00 00 00 00 00 00 00 00| ........| reserved: raw bits 0x2b8-0x2c6.7 (15)
|
||||
0x2c0|00 00 00 00 00 00 00 |....... |
|
||||
0x2c0| 00 00 00 0a | .... | isutcnt: 10 0x2c7-0x2ca.7 (4)
|
||||
0x2c0| 00 00 00 0a | .... | isstdcnt: 10 0x2cb-0x2ce.7 (4)
|
||||
0x2c0| 00| .| leapcnt: 27 0x2cf-0x2d2.7 (4)
|
||||
0x2d0|00 00 1b |... |
|
||||
0x2d0| 00 00 00 43 | ...C | timecnt: 67 0x2d3-0x2d6.7 (4)
|
||||
0x2d0| 00 00 00 0a | .... | typecnt: 10 0x2d7-0x2da.7 (4)
|
||||
0x2d0| 00 00 00 10 | .... | charcnt: 16 0x2db-0x2de.7 (4)
|
||||
| | | v2plusdatablock{}: 0x2df-0x6dd.7 (1023)
|
||||
| | | transition_times[0:67]: 0x2df-0x4f6.7 (536)
|
||||
0x2d0| ff| .| [0]: "1924-05-01T20:40:36Z" (-1441163964) transition_time 0x2df-0x2e6.7 (8)
|
||||
0x2e0|ff ff ff aa 19 95 44 |......D |
|
||||
0x2e0| ff ff ff ff e7 da 0c 50 | .......P | [1]: "1957-02-28T21:00:00Z" (-405140400) transition_time 0x2e7-0x2ee.7 (8)
|
||||
0x2e0| 00| .| [2]: "1981-03-31T20:00:09Z" (354916809) transition_time 0x2ef-0x2f6.7 (8)
|
||||
0x2f0|00 00 00 15 27 99 c9 |....'.. |
|
||||
0x2f0| 00 00 00 00 16 18 ce 3a | .......: | [3]: "1981-09-30T19:00:10Z" (370724410) transition_time 0x2f7-0x2fe.7 (8)
|
||||
0x2f0| 00| .| [4]: "1982-03-31T20:00:10Z" (386452810) transition_time 0x2ff-0x306.7 (8)
|
||||
0x300|00 00 00 17 08 cd 4a |......J |
|
||||
0x300| 00 00 00 00 17 fa 01 bb | ........ | [5]: "1982-09-30T19:00:11Z" (402260411) transition_time 0x307-0x30e.7 (8)
|
||||
0x300| 00| .| [6]: "1983-03-31T20:00:11Z" (417988811) transition_time 0x30f-0x316.7 (8)
|
||||
0x310|00 00 00 18 ea 00 cb |....... |
|
||||
0x310| 00 00 00 00 19 db 35 3c | ......5< | [7]: "1983-09-30T19:00:12Z" (433796412) transition_time 0x317-0x31e.7 (8)
|
||||
0x310| 00| .| [8]: "1984-03-31T20:00:12Z" (449611212) transition_time 0x31f-0x326.7 (8)
|
||||
0x320|00 00 00 1a cc 85 cc |....... |
|
||||
0x320| 00 00 00 00 1b bc 92 ec | ........ | [9]: "1984-09-29T22:00:12Z" (465343212) transition_time 0x327-0x32e.7 (8)
|
||||
0x320| 00| .| [10]: "1985-03-30T22:00:12Z" (481068012) transition_time 0x32f-0x336.7 (8)
|
||||
0x330|00 00 00 1c ac 83 ec |....... |
|
||||
0x330| 00 00 00 00 1d 9c 74 ed | ......t. | [11]: "1985-09-28T22:00:13Z" (496792813) transition_time 0x337-0x33e.7 (8)
|
||||
0x330| 00| .| [12]: "1986-03-29T22:00:13Z" (512517613) transition_time 0x33f-0x346.7 (8)
|
||||
0x340|00 00 00 1e 8c 65 ed |.....e. |
|
||||
0x340| 00 00 00 00 1f 7c 56 ed | .....|V. | [13]: "1986-09-27T22:00:13Z" (528242413) transition_time 0x347-0x34e.7 (8)
|
||||
0x340| 00| .| [14]: "1987-03-28T22:00:13Z" (543967213) transition_time 0x34f-0x356.7 (8)
|
||||
0x350|00 00 00 20 6c 47 ed |... lG. |
|
||||
0x350| 00 00 00 00 21 5c 38 ed | ....!\8. | [15]: "1987-09-26T22:00:13Z" (559692013) transition_time 0x357-0x35e.7 (8)
|
||||
0x350| 00| .| [16]: "1988-03-26T22:00:14Z" (575416814) transition_time 0x35f-0x366.7 (8)
|
||||
0x360|00 00 00 22 4c 29 ee |..."L). |
|
||||
0x360| 00 00 00 00 23 3c 1a ee | ....#<.. | [17]: "1988-09-24T22:00:14Z" (591141614) transition_time 0x367-0x36e.7 (8)
|
||||
0x360| 00| .| [18]: "1989-03-25T22:00:14Z" (606866414) transition_time 0x36f-0x376.7 (8)
|
||||
0x370|00 00 00 24 2c 0b ee |...$,.. |
|
||||
0x370| 00 00 00 00 25 1b fc ee | ....%... | [19]: "1989-09-23T22:00:14Z" (622591214) transition_time 0x377-0x37e.7 (8)
|
||||
0x370| 00| .| [20]: "1990-03-24T22:00:15Z" (638316015) transition_time 0x37f-0x386.7 (8)
|
||||
0x380|00 00 00 26 0b ed ef |...&... |
|
||||
0x380| 00 00 00 00 27 05 19 6f | ....'..o | [21]: "1990-09-29T22:00:15Z" (654645615) transition_time 0x387-0x38e.7 (8)
|
||||
0x380| 00| .| [22]: "1991-03-30T22:00:16Z" (670370416) transition_time 0x38f-0x396.7 (8)
|
||||
0x390|00 00 00 27 f5 0a 70 |...'..p |
|
||||
0x390| 00 00 00 00 28 e5 09 80 | ....(... | [23]: "1991-09-28T23:00:16Z" (686098816) transition_time 0x397-0x39e.7 (8)
|
||||
0x390| 00| .| [24]: "1992-03-28T23:00:16Z" (701823616) transition_time 0x39f-0x3a6.7 (8)
|
||||
0x3a0|00 00 00 29 d4 fa 80 |...)... |
|
||||
0x3a0| 00 00 00 00 2a c4 eb 81 | ....*... | [25]: "1992-09-26T23:00:17Z" (717548417) transition_time 0x3a7-0x3ae.7 (8)
|
||||
0x3a0| 00| .| [26]: "1996-03-31T01:00:20Z" (828234020) transition_time 0x3af-0x3b6.7 (8)
|
||||
0x3b0|00 00 00 31 5d d9 24 |...1].$ |
|
||||
0x3b0| 00 00 00 00 32 72 b4 24 | ....2r.$ | [27]: "1996-10-27T01:00:20Z" (846378020) transition_time 0x3b7-0x3be.7 (8)
|
||||
0x3b0| 00| .| [28]: "1997-03-30T00:00:20Z" (859680020) transition_time 0x3bf-0x3c6.7 (8)
|
||||
0x3c0|00 00 00 33 3d ad 14 |...3=.. |
|
||||
0x3c0| 00 00 00 00 34 52 88 15 | ....4R.. | [29]: "1997-10-26T00:00:21Z" (877824021) transition_time 0x3c7-0x3ce.7 (8)
|
||||
0x3c0| 00| .| [30]: "1998-03-29T00:00:21Z" (891129621) transition_time 0x3cf-0x3d6.7 (8)
|
||||
0x3d0|00 00 00 35 1d 8f 15 |...5... |
|
||||
0x3d0| 00 00 00 00 36 32 6a 15 | ....62j. | [31]: "1998-10-25T00:00:21Z" (909273621) transition_time 0x3d7-0x3de.7 (8)
|
||||
0x3d0| 00| .| [32]: "1999-03-28T00:00:22Z" (922579222) transition_time 0x3df-0x3e6.7 (8)
|
||||
0x3e0|00 00 00 36 fd 71 16 |...6.q. |
|
||||
0x3e0| 00 00 00 00 38 1b 86 96 | ....8... | [33]: "1999-10-31T00:00:22Z" (941328022) transition_time 0x3e7-0x3ee.7 (8)
|
||||
0x3e0| 00| .| [34]: "2000-03-26T00:00:22Z" (954028822) transition_time 0x3ef-0x3f6.7 (8)
|
||||
0x3f0|00 00 00 38 dd 53 16 |...8.S. |
|
||||
0x3f0| 00 00 00 00 39 fb 68 96 | ....9.h. | [35]: "2000-10-29T00:00:22Z" (972777622) transition_time 0x3f7-0x3fe.7 (8)
|
||||
0x3f0| 00| .| [36]: "2001-03-25T00:00:22Z" (985478422) transition_time 0x3ff-0x406.7 (8)
|
||||
0x400|00 00 00 3a bd 35 16 |...:.5. |
|
||||
0x400| 00 00 00 00 3b db 4a 96 | ....;.J. | [37]: "2001-10-28T00:00:22Z" (1004227222) transition_time 0x407-0x40e.7 (8)
|
||||
0x400| 00| .| [38]: "2002-03-31T00:00:22Z" (1017532822) transition_time 0x40f-0x416.7 (8)
|
||||
0x410|00 00 00 3c a6 51 96 |...<.Q. |
|
||||
0x410| 00 00 00 00 3d bb 2c 96 | ....=.,. | [39]: "2002-10-27T00:00:22Z" (1035676822) transition_time 0x417-0x41e.7 (8)
|
||||
0x410| 00| .| [40]: "2003-03-30T00:00:22Z" (1048982422) transition_time 0x41f-0x426.7 (8)
|
||||
0x420|00 00 00 3e 86 33 96 |...>.3. |
|
||||
0x420| 00 00 00 00 3f 9b 0e 96 | ....?... | [41]: "2003-10-26T00:00:22Z" (1067126422) transition_time 0x427-0x42e.7 (8)
|
||||
0x420| 00| .| [42]: "2004-03-28T00:00:22Z" (1080432022) transition_time 0x42f-0x436.7 (8)
|
||||
0x430|00 00 00 40 66 15 96 |...@f.. |
|
||||
0x430| 00 00 00 00 41 84 2b 16 | ....A.+. | [43]: "2004-10-31T00:00:22Z" (1099180822) transition_time 0x437-0x43e.7 (8)
|
||||
0x430| 00| .| [44]: "2005-03-27T00:00:22Z" (1111881622) transition_time 0x43f-0x446.7 (8)
|
||||
0x440|00 00 00 42 45 f7 96 |...BE.. |
|
||||
0x440| 00 00 00 00 43 64 0d 16 | ....Cd.. | [45]: "2005-10-30T00:00:22Z" (1130630422) transition_time 0x447-0x44e.7 (8)
|
||||
0x440| 00| .| [46]: "2006-03-26T00:00:23Z" (1143331223) transition_time 0x44f-0x456.7 (8)
|
||||
0x450|00 00 00 44 25 d9 97 |...D%.. |
|
||||
0x450| 00 00 00 00 45 43 ef 17 | ....EC.. | [47]: "2006-10-29T00:00:23Z" (1162080023) transition_time 0x457-0x45e.7 (8)
|
||||
0x450| 00| .| [48]: "2007-03-25T00:00:23Z" (1174780823) transition_time 0x45f-0x466.7 (8)
|
||||
0x460|00 00 00 46 05 bb 97 |...F... |
|
||||
0x460| 00 00 00 00 47 23 d1 17 | ....G#.. | [49]: "2007-10-28T00:00:23Z" (1193529623) transition_time 0x467-0x46e.7 (8)
|
||||
0x460| 00| .| [50]: "2008-03-30T00:00:23Z" (1206835223) transition_time 0x46f-0x476.7 (8)
|
||||
0x470|00 00 00 47 ee d8 17 |...G... |
|
||||
0x470| 00 00 00 00 49 03 b3 17 | ....I... | [51]: "2008-10-26T00:00:23Z" (1224979223) transition_time 0x477-0x47e.7 (8)
|
||||
0x470| 00| .| [52]: "2009-03-29T00:00:24Z" (1238284824) transition_time 0x47f-0x486.7 (8)
|
||||
0x480|00 00 00 49 ce ba 18 |...I... |
|
||||
0x480| 00 00 00 00 4a e3 95 18 | ....J... | [53]: "2009-10-25T00:00:24Z" (1256428824) transition_time 0x487-0x48e.7 (8)
|
||||
0x480| 00| .| [54]: "2010-03-28T00:00:24Z" (1269734424) transition_time 0x48f-0x496.7 (8)
|
||||
0x490|00 00 00 4b ae 9c 18 |...K... |
|
||||
0x490| 00 00 00 00 4c cc b1 98 | ....L... | [55]: "2010-10-31T00:00:24Z" (1288483224) transition_time 0x497-0x49e.7 (8)
|
||||
0x490| 00| .| [56]: "2011-03-27T00:00:24Z" (1301184024) transition_time 0x49f-0x4a6.7 (8)
|
||||
0x4a0|00 00 00 4d 8e 7e 18 |...M.~. |
|
||||
0x4a0| 00 00 00 00 4e ac 93 98 | ....N... | [57]: "2011-10-30T00:00:24Z" (1319932824) transition_time 0x4a7-0x4ae.7 (8)
|
||||
0x4a0| 00| .| [58]: "2012-03-25T00:00:24Z" (1332633624) transition_time 0x4af-0x4b6.7 (8)
|
||||
0x4b0|00 00 00 4f 6e 60 18 |...On`. |
|
||||
0x4b0| 00 00 00 00 50 8c 75 99 | ....P.u. | [59]: "2012-10-28T00:00:25Z" (1351382425) transition_time 0x4b7-0x4be.7 (8)
|
||||
0x4b0| 00| .| [60]: "2013-03-31T00:00:25Z" (1364688025) transition_time 0x4bf-0x4c6.7 (8)
|
||||
0x4c0|00 00 00 51 57 7c 99 |...QW|. |
|
||||
0x4c0| 00 00 00 00 52 6c 57 99 | ....RlW. | [61]: "2013-10-27T00:00:25Z" (1382832025) transition_time 0x4c7-0x4ce.7 (8)
|
||||
0x4c0| 00| .| [62]: "2014-03-30T00:00:25Z" (1396137625) transition_time 0x4cf-0x4d6.7 (8)
|
||||
0x4d0|00 00 00 53 37 5e 99 |...S7^. |
|
||||
0x4d0| 00 00 00 00 54 4c 39 99 | ....TL9. | [63]: "2014-10-26T00:00:25Z" (1414281625) transition_time 0x4d7-0x4de.7 (8)
|
||||
0x4d0| 00| .| [64]: "2015-03-29T00:00:25Z" (1427587225) transition_time 0x4df-0x4e6.7 (8)
|
||||
0x4e0|00 00 00 55 17 40 99 |...U.@. |
|
||||
0x4e0| 00 00 00 00 56 2c 1b 9a | ....V,.. | [65]: "2015-10-25T00:00:26Z" (1445731226) transition_time 0x4e7-0x4ee.7 (8)
|
||||
0x4e0| 00| .| [66]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x4ef-0x4f6.7 (8)
|
||||
0x4f0|00 00 00 64 9b 78 1b |...d.x. |
|
||||
| | | transition_types[0:67]: 0x4f7-0x539.7 (67)
|
||||
0x4f0| 01 | . | [0]: 1 transition_type 0x4f7-0x4f7.7 (1)
|
||||
0x4f0| 03 | . | [1]: 3 transition_type 0x4f8-0x4f8.7 (1)
|
||||
0x4f0| 02 | . | [2]: 2 transition_type 0x4f9-0x4f9.7 (1)
|
||||
0x4f0| 03 | . | [3]: 3 transition_type 0x4fa-0x4fa.7 (1)
|
||||
0x4f0| 02 | . | [4]: 2 transition_type 0x4fb-0x4fb.7 (1)
|
||||
0x4f0| 03 | . | [5]: 3 transition_type 0x4fc-0x4fc.7 (1)
|
||||
0x4f0| 02 | . | [6]: 2 transition_type 0x4fd-0x4fd.7 (1)
|
||||
0x4f0| 03 | . | [7]: 3 transition_type 0x4fe-0x4fe.7 (1)
|
||||
0x4f0| 02| .| [8]: 2 transition_type 0x4ff-0x4ff.7 (1)
|
||||
0x500|04 |. | [9]: 4 transition_type 0x500-0x500.7 (1)
|
||||
0x500| 05 | . | [10]: 5 transition_type 0x501-0x501.7 (1)
|
||||
0x500| 04 | . | [11]: 4 transition_type 0x502-0x502.7 (1)
|
||||
0x500| 05 | . | [12]: 5 transition_type 0x503-0x503.7 (1)
|
||||
0x500| 04 | . | [13]: 4 transition_type 0x504-0x504.7 (1)
|
||||
0x500| 05 | . | [14]: 5 transition_type 0x505-0x505.7 (1)
|
||||
0x500| 04 | . | [15]: 4 transition_type 0x506-0x506.7 (1)
|
||||
0x500| 05 | . | [16]: 5 transition_type 0x507-0x507.7 (1)
|
||||
0x500| 04 | . | [17]: 4 transition_type 0x508-0x508.7 (1)
|
||||
0x500| 05 | . | [18]: 5 transition_type 0x509-0x509.7 (1)
|
||||
0x500| 04 | . | [19]: 4 transition_type 0x50a-0x50a.7 (1)
|
||||
0x500| 05 | . | [20]: 5 transition_type 0x50b-0x50b.7 (1)
|
||||
0x500| 04 | . | [21]: 4 transition_type 0x50c-0x50c.7 (1)
|
||||
0x500| 06 | . | [22]: 6 transition_type 0x50d-0x50d.7 (1)
|
||||
0x500| 07 | . | [23]: 7 transition_type 0x50e-0x50e.7 (1)
|
||||
0x500| 06| .| [24]: 6 transition_type 0x50f-0x50f.7 (1)
|
||||
0x510|04 |. | [25]: 4 transition_type 0x510-0x510.7 (1)
|
||||
0x510| 08 | . | [26]: 8 transition_type 0x511-0x511.7 (1)
|
||||
0x510| 09 | . | [27]: 9 transition_type 0x512-0x512.7 (1)
|
||||
0x510| 02 | . | [28]: 2 transition_type 0x513-0x513.7 (1)
|
||||
0x510| 03 | . | [29]: 3 transition_type 0x514-0x514.7 (1)
|
||||
0x510| 02 | . | [30]: 2 transition_type 0x515-0x515.7 (1)
|
||||
0x510| 03 | . | [31]: 3 transition_type 0x516-0x516.7 (1)
|
||||
0x510| 02 | . | [32]: 2 transition_type 0x517-0x517.7 (1)
|
||||
0x510| 03 | . | [33]: 3 transition_type 0x518-0x518.7 (1)
|
||||
0x510| 02 | . | [34]: 2 transition_type 0x519-0x519.7 (1)
|
||||
0x510| 03 | . | [35]: 3 transition_type 0x51a-0x51a.7 (1)
|
||||
0x510| 02 | . | [36]: 2 transition_type 0x51b-0x51b.7 (1)
|
||||
0x510| 03 | . | [37]: 3 transition_type 0x51c-0x51c.7 (1)
|
||||
0x510| 02 | . | [38]: 2 transition_type 0x51d-0x51d.7 (1)
|
||||
0x510| 03 | . | [39]: 3 transition_type 0x51e-0x51e.7 (1)
|
||||
0x510| 02| .| [40]: 2 transition_type 0x51f-0x51f.7 (1)
|
||||
0x520|03 |. | [41]: 3 transition_type 0x520-0x520.7 (1)
|
||||
0x520| 02 | . | [42]: 2 transition_type 0x521-0x521.7 (1)
|
||||
0x520| 03 | . | [43]: 3 transition_type 0x522-0x522.7 (1)
|
||||
0x520| 02 | . | [44]: 2 transition_type 0x523-0x523.7 (1)
|
||||
0x520| 03 | . | [45]: 3 transition_type 0x524-0x524.7 (1)
|
||||
0x520| 02 | . | [46]: 2 transition_type 0x525-0x525.7 (1)
|
||||
0x520| 03 | . | [47]: 3 transition_type 0x526-0x526.7 (1)
|
||||
0x520| 02 | . | [48]: 2 transition_type 0x527-0x527.7 (1)
|
||||
0x520| 03 | . | [49]: 3 transition_type 0x528-0x528.7 (1)
|
||||
0x520| 02 | . | [50]: 2 transition_type 0x529-0x529.7 (1)
|
||||
0x520| 03 | . | [51]: 3 transition_type 0x52a-0x52a.7 (1)
|
||||
0x520| 02 | . | [52]: 2 transition_type 0x52b-0x52b.7 (1)
|
||||
0x520| 03 | . | [53]: 3 transition_type 0x52c-0x52c.7 (1)
|
||||
0x520| 02 | . | [54]: 2 transition_type 0x52d-0x52d.7 (1)
|
||||
0x520| 03 | . | [55]: 3 transition_type 0x52e-0x52e.7 (1)
|
||||
0x520| 02| .| [56]: 2 transition_type 0x52f-0x52f.7 (1)
|
||||
0x530|03 |. | [57]: 3 transition_type 0x530-0x530.7 (1)
|
||||
0x530| 02 | . | [58]: 2 transition_type 0x531-0x531.7 (1)
|
||||
0x530| 03 | . | [59]: 3 transition_type 0x532-0x532.7 (1)
|
||||
0x530| 02 | . | [60]: 2 transition_type 0x533-0x533.7 (1)
|
||||
0x530| 03 | . | [61]: 3 transition_type 0x534-0x534.7 (1)
|
||||
0x530| 02 | . | [62]: 2 transition_type 0x535-0x535.7 (1)
|
||||
0x530| 03 | . | [63]: 3 transition_type 0x536-0x536.7 (1)
|
||||
0x530| 02 | . | [64]: 2 transition_type 0x537-0x537.7 (1)
|
||||
0x530| 03 | . | [65]: 3 transition_type 0x538-0x538.7 (1)
|
||||
0x530| 03 | . | [66]: 3 transition_type 0x539-0x539.7 (1)
|
||||
| | | local_time_type_records[0:10]: 0x53a-0x575.7 (60)
|
||||
| | | [0]{}: local_time_type 0x53a-0x53f.7 (6)
|
||||
0x530| 00 00 2e bc | .... | utoff: 11964 (valid) 0x53a-0x53d.7 (4)
|
||||
0x530| 00 | . | dst: 0 (valid) 0x53e-0x53e.7 (1)
|
||||
0x530| 00| .| idx: 0 (valid) 0x53f-0x53f.7 (1)
|
||||
| | | [1]{}: local_time_type 0x540-0x545.7 (6)
|
||||
0x540|00 00 2a 30 |..*0 | utoff: 10800 (valid) 0x540-0x543.7 (4)
|
||||
0x540| 00 | . | dst: 0 (valid) 0x544-0x544.7 (1)
|
||||
0x540| 04 | . | idx: 4 (valid) 0x545-0x545.7 (1)
|
||||
| | | [2]{}: local_time_type 0x546-0x54b.7 (6)
|
||||
0x540| 00 00 46 50 | ..FP | utoff: 18000 (valid) 0x546-0x549.7 (4)
|
||||
0x540| 01 | . | dst: 1 (valid) 0x54a-0x54a.7 (1)
|
||||
0x540| 08 | . | idx: 8 (valid) 0x54b-0x54b.7 (1)
|
||||
| | | [3]{}: local_time_type 0x54c-0x551.7 (6)
|
||||
0x540| 00 00 38 40| ..8@| utoff: 14400 (valid) 0x54c-0x54f.7 (4)
|
||||
0x550|00 |. | dst: 0 (valid) 0x550-0x550.7 (1)
|
||||
0x550| 0c | . | idx: 12 (valid) 0x551-0x551.7 (1)
|
||||
| | | [4]{}: local_time_type 0x552-0x557.7 (6)
|
||||
0x550| 00 00 38 40 | ..8@ | utoff: 14400 (valid) 0x552-0x555.7 (4)
|
||||
0x550| 00 | . | dst: 0 (valid) 0x556-0x556.7 (1)
|
||||
0x550| 0c | . | idx: 12 (valid) 0x557-0x557.7 (1)
|
||||
| | | [5]{}: local_time_type 0x558-0x55d.7 (6)
|
||||
0x550| 00 00 46 50 | ..FP | utoff: 18000 (valid) 0x558-0x55b.7 (4)
|
||||
0x550| 01 | . | dst: 1 (valid) 0x55c-0x55c.7 (1)
|
||||
0x550| 08 | . | idx: 8 (valid) 0x55d-0x55d.7 (1)
|
||||
| | | [6]{}: local_time_type 0x55e-0x563.7 (6)
|
||||
0x550| 00 00| ..| utoff: 14400 (valid) 0x55e-0x561.7 (4)
|
||||
0x560|38 40 |8@ |
|
||||
0x560| 01 | . | dst: 1 (valid) 0x562-0x562.7 (1)
|
||||
0x560| 0c | . | idx: 12 (valid) 0x563-0x563.7 (1)
|
||||
| | | [7]{}: local_time_type 0x564-0x569.7 (6)
|
||||
0x560| 00 00 2a 30 | ..*0 | utoff: 10800 (valid) 0x564-0x567.7 (4)
|
||||
0x560| 00 | . | dst: 0 (valid) 0x568-0x568.7 (1)
|
||||
0x560| 04 | . | idx: 4 (valid) 0x569-0x569.7 (1)
|
||||
| | | [8]{}: local_time_type 0x56a-0x56f.7 (6)
|
||||
0x560| 00 00 46 50 | ..FP | utoff: 18000 (valid) 0x56a-0x56d.7 (4)
|
||||
0x560| 01 | . | dst: 1 (valid) 0x56e-0x56e.7 (1)
|
||||
0x560| 08| .| idx: 8 (valid) 0x56f-0x56f.7 (1)
|
||||
| | | [9]{}: local_time_type 0x570-0x575.7 (6)
|
||||
0x570|00 00 38 40 |..8@ | utoff: 14400 (valid) 0x570-0x573.7 (4)
|
||||
0x570| 00 | . | dst: 0 (valid) 0x574-0x574.7 (1)
|
||||
0x570| 0c | . | idx: 12 (valid) 0x575-0x575.7 (1)
|
||||
| | | time_zone_designations[0:4]: 0x576-0x585.7 (16)
|
||||
0x570| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x576-0x579.7 (4)
|
||||
0x570| 2b 30 33 00 | +03. | [1]: "+03" time_zone_designation 0x57a-0x57d.7 (4)
|
||||
0x570| 2b 30| +0| [2]: "+05" time_zone_designation 0x57e-0x581.7 (4)
|
||||
0x580|35 00 |5. |
|
||||
0x580| 2b 30 34 00 | +04. | [3]: "+04" time_zone_designation 0x582-0x585.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x586-0x6c9.7 (324)
|
||||
| | | [0]{}: leap_second_record 0x586-0x591.7 (12)
|
||||
0x580| 00 00 00 00 04 b2 58 00 | ......X. | occur: "1972-07-01T00:00:00Z" (78796800) 0x586-0x58d.7 (8)
|
||||
0x580| 00 00| ..| corr: 1 0x58e-0x591.7 (4)
|
||||
0x590|00 01 |.. |
|
||||
| | | [1]{}: leap_second_record 0x592-0x59d.7 (12)
|
||||
0x590| 00 00 00 00 05 a4 ec 01 | ........ | occur: "1973-01-01T00:00:01Z" (94694401) 0x592-0x599.7 (8)
|
||||
0x590| 00 00 00 02 | .... | corr: 2 0x59a-0x59d.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x59e-0x5a9.7 (12)
|
||||
0x590| 00 00| ..| occur: "1974-01-01T00:00:02Z" (126230402) 0x59e-0x5a5.7 (8)
|
||||
0x5a0|00 00 07 86 1f 82 |...... |
|
||||
0x5a0| 00 00 00 03 | .... | corr: 3 0x5a6-0x5a9.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x5aa-0x5b5.7 (12)
|
||||
0x5a0| 00 00 00 00 09 67| .....g| occur: "1975-01-01T00:00:03Z" (157766403) 0x5aa-0x5b1.7 (8)
|
||||
0x5b0|53 03 |S. |
|
||||
0x5b0| 00 00 00 04 | .... | corr: 4 0x5b2-0x5b5.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x5b6-0x5c1.7 (12)
|
||||
0x5b0| 00 00 00 00 0b 48 86 84 | .....H.. | occur: "1976-01-01T00:00:04Z" (189302404) 0x5b6-0x5bd.7 (8)
|
||||
0x5b0| 00 00| ..| corr: 5 0x5be-0x5c1.7 (4)
|
||||
0x5c0|00 05 |.. |
|
||||
| | | [5]{}: leap_second_record 0x5c2-0x5cd.7 (12)
|
||||
0x5c0| 00 00 00 00 0d 2b 0b 85 | .....+.. | occur: "1977-01-01T00:00:05Z" (220924805) 0x5c2-0x5c9.7 (8)
|
||||
0x5c0| 00 00 00 06 | .... | corr: 6 0x5ca-0x5cd.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x5ce-0x5d9.7 (12)
|
||||
0x5c0| 00 00| ..| occur: "1978-01-01T00:00:06Z" (252460806) 0x5ce-0x5d5.7 (8)
|
||||
0x5d0|00 00 0f 0c 3f 06 |....?. |
|
||||
0x5d0| 00 00 00 07 | .... | corr: 7 0x5d6-0x5d9.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x5da-0x5e5.7 (12)
|
||||
0x5d0| 00 00 00 00 10 ed| ......| occur: "1979-01-01T00:00:07Z" (283996807) 0x5da-0x5e1.7 (8)
|
||||
0x5e0|72 87 |r. |
|
||||
0x5e0| 00 00 00 08 | .... | corr: 8 0x5e2-0x5e5.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x5e6-0x5f1.7 (12)
|
||||
0x5e0| 00 00 00 00 12 ce a6 08 | ........ | occur: "1980-01-01T00:00:08Z" (315532808) 0x5e6-0x5ed.7 (8)
|
||||
0x5e0| 00 00| ..| corr: 9 0x5ee-0x5f1.7 (4)
|
||||
0x5f0|00 09 |.. |
|
||||
| | | [9]{}: leap_second_record 0x5f2-0x5fd.7 (12)
|
||||
0x5f0| 00 00 00 00 15 9f ca 89 | ........ | occur: "1981-07-01T00:00:09Z" (362793609) 0x5f2-0x5f9.7 (8)
|
||||
0x5f0| 00 00 00 0a | .... | corr: 10 0x5fa-0x5fd.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x5fe-0x609.7 (12)
|
||||
0x5f0| 00 00| ..| occur: "1982-07-01T00:00:10Z" (394329610) 0x5fe-0x605.7 (8)
|
||||
0x600|00 00 17 80 fe 0a |...... |
|
||||
0x600| 00 00 00 0b | .... | corr: 11 0x606-0x609.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x60a-0x615.7 (12)
|
||||
0x600| 00 00 00 00 19 62| .....b| occur: "1983-07-01T00:00:11Z" (425865611) 0x60a-0x611.7 (8)
|
||||
0x610|31 8b |1. |
|
||||
0x610| 00 00 00 0c | .... | corr: 12 0x612-0x615.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x616-0x621.7 (12)
|
||||
0x610| 00 00 00 00 1d 25 ea 0c | .....%.. | occur: "1985-07-01T00:00:12Z" (489024012) 0x616-0x61d.7 (8)
|
||||
0x610| 00 00| ..| corr: 13 0x61e-0x621.7 (4)
|
||||
0x620|00 0d |.. |
|
||||
| | | [13]{}: leap_second_record 0x622-0x62d.7 (12)
|
||||
0x620| 00 00 00 00 21 da e5 0d | ....!... | occur: "1988-01-01T00:00:13Z" (567993613) 0x622-0x629.7 (8)
|
||||
0x620| 00 00 00 0e | .... | corr: 14 0x62a-0x62d.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x62e-0x639.7 (12)
|
||||
0x620| 00 00| ..| occur: "1990-01-01T00:00:14Z" (631152014) 0x62e-0x635.7 (8)
|
||||
0x630|00 00 25 9e 9d 8e |..%... |
|
||||
0x630| 00 00 00 0f | .... | corr: 15 0x636-0x639.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x63a-0x645.7 (12)
|
||||
0x630| 00 00 00 00 27 7f| ....'.| occur: "1991-01-01T00:00:15Z" (662688015) 0x63a-0x641.7 (8)
|
||||
0x640|d1 0f |.. |
|
||||
0x640| 00 00 00 10 | .... | corr: 16 0x642-0x645.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x646-0x651.7 (12)
|
||||
0x640| 00 00 00 00 2a 50 f5 90 | ....*P.. | occur: "1992-07-01T00:00:16Z" (709948816) 0x646-0x64d.7 (8)
|
||||
0x640| 00 00| ..| corr: 17 0x64e-0x651.7 (4)
|
||||
0x650|00 11 |.. |
|
||||
| | | [17]{}: leap_second_record 0x652-0x65d.7 (12)
|
||||
0x650| 00 00 00 00 2c 32 29 11 | ....,2). | occur: "1993-07-01T00:00:17Z" (741484817) 0x652-0x659.7 (8)
|
||||
0x650| 00 00 00 12 | .... | corr: 18 0x65a-0x65d.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x65e-0x669.7 (12)
|
||||
0x650| 00 00| ..| occur: "1994-07-01T00:00:18Z" (773020818) 0x65e-0x665.7 (8)
|
||||
0x660|00 00 2e 13 5c 92 |....\. |
|
||||
0x660| 00 00 00 13 | .... | corr: 19 0x666-0x669.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x66a-0x675.7 (12)
|
||||
0x660| 00 00 00 00 30 e7| ....0.| occur: "1996-01-01T00:00:19Z" (820454419) 0x66a-0x671.7 (8)
|
||||
0x670|24 13 |$. |
|
||||
0x670| 00 00 00 14 | .... | corr: 20 0x672-0x675.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x676-0x681.7 (12)
|
||||
0x670| 00 00 00 00 33 b8 48 94 | ....3.H. | occur: "1997-07-01T00:00:20Z" (867715220) 0x676-0x67d.7 (8)
|
||||
0x670| 00 00| ..| corr: 21 0x67e-0x681.7 (4)
|
||||
0x680|00 15 |.. |
|
||||
| | | [21]{}: leap_second_record 0x682-0x68d.7 (12)
|
||||
0x680| 00 00 00 00 36 8c 10 15 | ....6... | occur: "1999-01-01T00:00:21Z" (915148821) 0x682-0x689.7 (8)
|
||||
0x680| 00 00 00 16 | .... | corr: 22 0x68a-0x68d.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x68e-0x699.7 (12)
|
||||
0x680| 00 00| ..| occur: "2006-01-01T00:00:22Z" (1136073622) 0x68e-0x695.7 (8)
|
||||
0x690|00 00 43 b7 1b 96 |..C... |
|
||||
0x690| 00 00 00 17 | .... | corr: 23 0x696-0x699.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x69a-0x6a5.7 (12)
|
||||
0x690| 00 00 00 00 49 5c| ....I\| occur: "2009-01-01T00:00:23Z" (1230768023) 0x69a-0x6a1.7 (8)
|
||||
0x6a0|07 97 |.. |
|
||||
0x6a0| 00 00 00 18 | .... | corr: 24 0x6a2-0x6a5.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x6a6-0x6b1.7 (12)
|
||||
0x6a0| 00 00 00 00 4f ef 93 18 | ....O... | occur: "2012-07-01T00:00:24Z" (1341100824) 0x6a6-0x6ad.7 (8)
|
||||
0x6a0| 00 00| ..| corr: 25 0x6ae-0x6b1.7 (4)
|
||||
0x6b0|00 19 |.. |
|
||||
| | | [25]{}: leap_second_record 0x6b2-0x6bd.7 (12)
|
||||
0x6b0| 00 00 00 00 55 93 2d 99 | ....U.-. | occur: "2015-07-01T00:00:25Z" (1435708825) 0x6b2-0x6b9.7 (8)
|
||||
0x6b0| 00 00 00 1a | .... | corr: 26 0x6ba-0x6bd.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x6be-0x6c9.7 (12)
|
||||
0x6b0| 00 00| ..| occur: "2017-01-01T00:00:26Z" (1483228826) 0x6be-0x6c5.7 (8)
|
||||
0x6c0|00 00 58 68 46 9a |..XhF. |
|
||||
0x6c0| 00 00 00 1b | .... | corr: 27 0x6c6-0x6c9.7 (4)
|
||||
| | | standard_wall_indicators[0:10]: 0x6ca-0x6d3.7 (10)
|
||||
0x6c0| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x6ca-0x6ca.7 (1)
|
||||
0x6c0| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x6cb-0x6cb.7 (1)
|
||||
0x6c0| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x6cc-0x6cc.7 (1)
|
||||
0x6c0| 00 | . | [3]: 0 standard_wall_indicator (valid) 0x6cd-0x6cd.7 (1)
|
||||
0x6c0| 01 | . | [4]: 1 standard_wall_indicator (valid) 0x6ce-0x6ce.7 (1)
|
||||
0x6c0| 01| .| [5]: 1 standard_wall_indicator (valid) 0x6cf-0x6cf.7 (1)
|
||||
0x6d0|01 |. | [6]: 1 standard_wall_indicator (valid) 0x6d0-0x6d0.7 (1)
|
||||
0x6d0| 01 | . | [7]: 1 standard_wall_indicator (valid) 0x6d1-0x6d1.7 (1)
|
||||
0x6d0| 01 | . | [8]: 1 standard_wall_indicator (valid) 0x6d2-0x6d2.7 (1)
|
||||
0x6d0| 01 | . | [9]: 1 standard_wall_indicator (valid) 0x6d3-0x6d3.7 (1)
|
||||
| | | ut_local_indicators[0:10]: 0x6d4-0x6dd.7 (10)
|
||||
0x6d0| 00 | . | [0]: 0 ut_local_indicator (valid) 0x6d4-0x6d4.7 (1)
|
||||
0x6d0| 00 | . | [1]: 0 ut_local_indicator (valid) 0x6d5-0x6d5.7 (1)
|
||||
0x6d0| 00 | . | [2]: 0 ut_local_indicator (valid) 0x6d6-0x6d6.7 (1)
|
||||
0x6d0| 00 | . | [3]: 0 ut_local_indicator (valid) 0x6d7-0x6d7.7 (1)
|
||||
0x6d0| 00 | . | [4]: 0 ut_local_indicator (valid) 0x6d8-0x6d8.7 (1)
|
||||
0x6d0| 00 | . | [5]: 0 ut_local_indicator (valid) 0x6d9-0x6d9.7 (1)
|
||||
0x6d0| 00 | . | [6]: 0 ut_local_indicator (valid) 0x6da-0x6da.7 (1)
|
||||
0x6d0| 00 | . | [7]: 0 ut_local_indicator (valid) 0x6db-0x6db.7 (1)
|
||||
0x6d0| 01 | . | [8]: 1 ut_local_indicator (valid) 0x6dc-0x6dc.7 (1)
|
||||
0x6d0| 01 | . | [9]: 1 ut_local_indicator (valid) 0x6dd-0x6dd.7 (1)
|
||||
| | | footer{}: 0x6de-0x6df.7 (2)
|
||||
0x6d0| 0a | . | nl1: 10 (valid) 0x6de-0x6de.7 (1)
|
||||
| | | tz_string: "" 0x6df-NA (0)
|
||||
0x6d0| 0a| .| nl2: 10 (valid) 0x6df-0x6df.7 (1)
|
BIN
format/tzif/testdata/Bangkok
vendored
Normal file
BIN
format/tzif/testdata/Bangkok
vendored
Normal file
Binary file not shown.
288
format/tzif/testdata/Bangkok.fqtest
vendored
Normal file
288
format/tzif/testdata/Bangkok.fqtest
vendored
Normal file
@ -0,0 +1,288 @@
|
||||
$ fq -d tzif dv Bangkok
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: Bangkok (tzif) 0x0-0x2db.7 (732)
|
||||
| | | v1header{}: 0x0-0x2b.7 (44)
|
||||
0x000|54 5a 69 66 |TZif | magic: 0x545a6966 (valid) 0x0-0x3.7 (4)
|
||||
0x000| 32 | 2 | ver: "2" (0x32) (valid) 0x4-0x4.7 (1)
|
||||
0x000| 00 00 00 00 00 00 00 00 00 00 00| ...........| reserved: raw bits 0x5-0x13.7 (15)
|
||||
0x010|00 00 00 00 |.... |
|
||||
0x010| 00 00 00 00 | .... | isutcnt: 0 0x14-0x17.7 (4)
|
||||
0x010| 00 00 00 00 | .... | isstdcnt: 0 0x18-0x1b.7 (4)
|
||||
0x010| 00 00 00 1b| ....| leapcnt: 27 0x1c-0x1f.7 (4)
|
||||
0x020|00 00 00 03 |.... | timecnt: 3 0x20-0x23.7 (4)
|
||||
0x020| 00 00 00 03 | .... | typecnt: 3 0x24-0x27.7 (4)
|
||||
0x020| 00 00 00 0c | .... | charcnt: 12 0x28-0x2b.7 (4)
|
||||
| | | v1datablock{}: 0x2c-0x130.7 (261)
|
||||
| | | transition_times[0:3]: 0x2c-0x37.7 (12)
|
||||
0x020| 80 00 00 00| ....| [0]: "1901-12-13T20:45:52Z" (-2147483648) transition_time 0x2c-0x2f.7 (4)
|
||||
0x030|a2 6a 67 c4 |.jg. | [1]: "1920-03-31T17:17:56Z" (-1570084924) transition_time 0x30-0x33.7 (4)
|
||||
0x030| 64 9b 78 1b | d.x. | [2]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x34-0x37.7 (4)
|
||||
| | | transition_types[0:3]: 0x38-0x3a.7 (3)
|
||||
0x030| 01 | . | [0]: 1 transition_type 0x38-0x38.7 (1)
|
||||
0x030| 02 | . | [1]: 2 transition_type 0x39-0x39.7 (1)
|
||||
0x030| 02 | . | [2]: 2 transition_type 0x3a-0x3a.7 (1)
|
||||
| | | local_time_type_records[0:3]: 0x3b-0x4c.7 (18)
|
||||
| | | [0]{}: local_time_type 0x3b-0x40.7 (6)
|
||||
0x030| 00 00 5e 3c | ..^< | utoff: 24124 (valid) 0x3b-0x3e.7 (4)
|
||||
0x030| 00| .| dst: 0 (valid) 0x3f-0x3f.7 (1)
|
||||
0x040|00 |. | idx: 0 (valid) 0x40-0x40.7 (1)
|
||||
| | | [1]{}: local_time_type 0x41-0x46.7 (6)
|
||||
0x040| 00 00 5e 3c | ..^< | utoff: 24124 (valid) 0x41-0x44.7 (4)
|
||||
0x040| 00 | . | dst: 0 (valid) 0x45-0x45.7 (1)
|
||||
0x040| 04 | . | idx: 4 (valid) 0x46-0x46.7 (1)
|
||||
| | | [2]{}: local_time_type 0x47-0x4c.7 (6)
|
||||
0x040| 00 00 62 70 | ..bp | utoff: 25200 (valid) 0x47-0x4a.7 (4)
|
||||
0x040| 00 | . | dst: 0 (valid) 0x4b-0x4b.7 (1)
|
||||
0x040| 08 | . | idx: 8 (valid) 0x4c-0x4c.7 (1)
|
||||
| | | time_zone_designations[0:3]: 0x4d-0x58.7 (12)
|
||||
0x040| 4c 4d 54| LMT| [0]: "LMT" time_zone_designation 0x4d-0x50.7 (4)
|
||||
0x050|00 |. |
|
||||
0x050| 42 4d 54 00 | BMT. | [1]: "BMT" time_zone_designation 0x51-0x54.7 (4)
|
||||
0x050| 2b 30 37 00 | +07. | [2]: "+07" time_zone_designation 0x55-0x58.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x59-0x130.7 (216)
|
||||
| | | [0]{}: leap_second_record 0x59-0x60.7 (8)
|
||||
0x050| 04 b2 58 00 | ..X. | occur: "1972-07-01T00:00:00Z" (78796800) 0x59-0x5c.7 (4)
|
||||
0x050| 00 00 00| ...| corr: 1 0x5d-0x60.7 (4)
|
||||
0x060|01 |. |
|
||||
| | | [1]{}: leap_second_record 0x61-0x68.7 (8)
|
||||
0x060| 05 a4 ec 01 | .... | occur: "1973-01-01T00:00:01Z" (94694401) 0x61-0x64.7 (4)
|
||||
0x060| 00 00 00 02 | .... | corr: 2 0x65-0x68.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x69-0x70.7 (8)
|
||||
0x060| 07 86 1f 82 | .... | occur: "1974-01-01T00:00:02Z" (126230402) 0x69-0x6c.7 (4)
|
||||
0x060| 00 00 00| ...| corr: 3 0x6d-0x70.7 (4)
|
||||
0x070|03 |. |
|
||||
| | | [3]{}: leap_second_record 0x71-0x78.7 (8)
|
||||
0x070| 09 67 53 03 | .gS. | occur: "1975-01-01T00:00:03Z" (157766403) 0x71-0x74.7 (4)
|
||||
0x070| 00 00 00 04 | .... | corr: 4 0x75-0x78.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x79-0x80.7 (8)
|
||||
0x070| 0b 48 86 84 | .H.. | occur: "1976-01-01T00:00:04Z" (189302404) 0x79-0x7c.7 (4)
|
||||
0x070| 00 00 00| ...| corr: 5 0x7d-0x80.7 (4)
|
||||
0x080|05 |. |
|
||||
| | | [5]{}: leap_second_record 0x81-0x88.7 (8)
|
||||
0x080| 0d 2b 0b 85 | .+.. | occur: "1977-01-01T00:00:05Z" (220924805) 0x81-0x84.7 (4)
|
||||
0x080| 00 00 00 06 | .... | corr: 6 0x85-0x88.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x89-0x90.7 (8)
|
||||
0x080| 0f 0c 3f 06 | ..?. | occur: "1978-01-01T00:00:06Z" (252460806) 0x89-0x8c.7 (4)
|
||||
0x080| 00 00 00| ...| corr: 7 0x8d-0x90.7 (4)
|
||||
0x090|07 |. |
|
||||
| | | [7]{}: leap_second_record 0x91-0x98.7 (8)
|
||||
0x090| 10 ed 72 87 | ..r. | occur: "1979-01-01T00:00:07Z" (283996807) 0x91-0x94.7 (4)
|
||||
0x090| 00 00 00 08 | .... | corr: 8 0x95-0x98.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x99-0xa0.7 (8)
|
||||
0x090| 12 ce a6 08 | .... | occur: "1980-01-01T00:00:08Z" (315532808) 0x99-0x9c.7 (4)
|
||||
0x090| 00 00 00| ...| corr: 9 0x9d-0xa0.7 (4)
|
||||
0x0a0|09 |. |
|
||||
| | | [9]{}: leap_second_record 0xa1-0xa8.7 (8)
|
||||
0x0a0| 15 9f ca 89 | .... | occur: "1981-07-01T00:00:09Z" (362793609) 0xa1-0xa4.7 (4)
|
||||
0x0a0| 00 00 00 0a | .... | corr: 10 0xa5-0xa8.7 (4)
|
||||
| | | [10]{}: leap_second_record 0xa9-0xb0.7 (8)
|
||||
0x0a0| 17 80 fe 0a | .... | occur: "1982-07-01T00:00:10Z" (394329610) 0xa9-0xac.7 (4)
|
||||
0x0a0| 00 00 00| ...| corr: 11 0xad-0xb0.7 (4)
|
||||
0x0b0|0b |. |
|
||||
| | | [11]{}: leap_second_record 0xb1-0xb8.7 (8)
|
||||
0x0b0| 19 62 31 8b | .b1. | occur: "1983-07-01T00:00:11Z" (425865611) 0xb1-0xb4.7 (4)
|
||||
0x0b0| 00 00 00 0c | .... | corr: 12 0xb5-0xb8.7 (4)
|
||||
| | | [12]{}: leap_second_record 0xb9-0xc0.7 (8)
|
||||
0x0b0| 1d 25 ea 0c | .%.. | occur: "1985-07-01T00:00:12Z" (489024012) 0xb9-0xbc.7 (4)
|
||||
0x0b0| 00 00 00| ...| corr: 13 0xbd-0xc0.7 (4)
|
||||
0x0c0|0d |. |
|
||||
| | | [13]{}: leap_second_record 0xc1-0xc8.7 (8)
|
||||
0x0c0| 21 da e5 0d | !... | occur: "1988-01-01T00:00:13Z" (567993613) 0xc1-0xc4.7 (4)
|
||||
0x0c0| 00 00 00 0e | .... | corr: 14 0xc5-0xc8.7 (4)
|
||||
| | | [14]{}: leap_second_record 0xc9-0xd0.7 (8)
|
||||
0x0c0| 25 9e 9d 8e | %... | occur: "1990-01-01T00:00:14Z" (631152014) 0xc9-0xcc.7 (4)
|
||||
0x0c0| 00 00 00| ...| corr: 15 0xcd-0xd0.7 (4)
|
||||
0x0d0|0f |. |
|
||||
| | | [15]{}: leap_second_record 0xd1-0xd8.7 (8)
|
||||
0x0d0| 27 7f d1 0f | '... | occur: "1991-01-01T00:00:15Z" (662688015) 0xd1-0xd4.7 (4)
|
||||
0x0d0| 00 00 00 10 | .... | corr: 16 0xd5-0xd8.7 (4)
|
||||
| | | [16]{}: leap_second_record 0xd9-0xe0.7 (8)
|
||||
0x0d0| 2a 50 f5 90 | *P.. | occur: "1992-07-01T00:00:16Z" (709948816) 0xd9-0xdc.7 (4)
|
||||
0x0d0| 00 00 00| ...| corr: 17 0xdd-0xe0.7 (4)
|
||||
0x0e0|11 |. |
|
||||
| | | [17]{}: leap_second_record 0xe1-0xe8.7 (8)
|
||||
0x0e0| 2c 32 29 11 | ,2). | occur: "1993-07-01T00:00:17Z" (741484817) 0xe1-0xe4.7 (4)
|
||||
0x0e0| 00 00 00 12 | .... | corr: 18 0xe5-0xe8.7 (4)
|
||||
| | | [18]{}: leap_second_record 0xe9-0xf0.7 (8)
|
||||
0x0e0| 2e 13 5c 92 | ..\. | occur: "1994-07-01T00:00:18Z" (773020818) 0xe9-0xec.7 (4)
|
||||
0x0e0| 00 00 00| ...| corr: 19 0xed-0xf0.7 (4)
|
||||
0x0f0|13 |. |
|
||||
| | | [19]{}: leap_second_record 0xf1-0xf8.7 (8)
|
||||
0x0f0| 30 e7 24 13 | 0.$. | occur: "1996-01-01T00:00:19Z" (820454419) 0xf1-0xf4.7 (4)
|
||||
0x0f0| 00 00 00 14 | .... | corr: 20 0xf5-0xf8.7 (4)
|
||||
| | | [20]{}: leap_second_record 0xf9-0x100.7 (8)
|
||||
0x0f0| 33 b8 48 94 | 3.H. | occur: "1997-07-01T00:00:20Z" (867715220) 0xf9-0xfc.7 (4)
|
||||
0x0f0| 00 00 00| ...| corr: 21 0xfd-0x100.7 (4)
|
||||
0x100|15 |. |
|
||||
| | | [21]{}: leap_second_record 0x101-0x108.7 (8)
|
||||
0x100| 36 8c 10 15 | 6... | occur: "1999-01-01T00:00:21Z" (915148821) 0x101-0x104.7 (4)
|
||||
0x100| 00 00 00 16 | .... | corr: 22 0x105-0x108.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x109-0x110.7 (8)
|
||||
0x100| 43 b7 1b 96 | C... | occur: "2006-01-01T00:00:22Z" (1136073622) 0x109-0x10c.7 (4)
|
||||
0x100| 00 00 00| ...| corr: 23 0x10d-0x110.7 (4)
|
||||
0x110|17 |. |
|
||||
| | | [23]{}: leap_second_record 0x111-0x118.7 (8)
|
||||
0x110| 49 5c 07 97 | I\.. | occur: "2009-01-01T00:00:23Z" (1230768023) 0x111-0x114.7 (4)
|
||||
0x110| 00 00 00 18 | .... | corr: 24 0x115-0x118.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x119-0x120.7 (8)
|
||||
0x110| 4f ef 93 18 | O... | occur: "2012-07-01T00:00:24Z" (1341100824) 0x119-0x11c.7 (4)
|
||||
0x110| 00 00 00| ...| corr: 25 0x11d-0x120.7 (4)
|
||||
0x120|19 |. |
|
||||
| | | [25]{}: leap_second_record 0x121-0x128.7 (8)
|
||||
0x120| 55 93 2d 99 | U.-. | occur: "2015-07-01T00:00:25Z" (1435708825) 0x121-0x124.7 (4)
|
||||
0x120| 00 00 00 1a | .... | corr: 26 0x125-0x128.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x129-0x130.7 (8)
|
||||
0x120| 58 68 46 9a | XhF. | occur: "2017-01-01T00:00:26Z" (1483228826) 0x129-0x12c.7 (4)
|
||||
0x120| 00 00 00| ...| corr: 27 0x12d-0x130.7 (4)
|
||||
0x130|1b |. |
|
||||
| | | standard_wall_indicators[0:0]: 0x131-NA (0)
|
||||
| | | ut_local_indicators[0:0]: 0x131-NA (0)
|
||||
| | | v2plusheader{}: 0x131-0x15c.7 (44)
|
||||
0x130| 54 5a 69 66 | TZif | magic: 0x545a6966 (valid) 0x131-0x134.7 (4)
|
||||
0x130| 32 | 2 | ver: "2" (0x32) (valid) 0x135-0x135.7 (1)
|
||||
0x130| 00 00 00 00 00 00 00 00 00 00| ..........| reserved: raw bits 0x136-0x144.7 (15)
|
||||
0x140|00 00 00 00 00 |..... |
|
||||
0x140| 00 00 00 00 | .... | isutcnt: 0 0x145-0x148.7 (4)
|
||||
0x140| 00 00 00 00 | .... | isstdcnt: 0 0x149-0x14c.7 (4)
|
||||
0x140| 00 00 00| ...| leapcnt: 27 0x14d-0x150.7 (4)
|
||||
0x150|1b |. |
|
||||
0x150| 00 00 00 03 | .... | timecnt: 3 0x151-0x154.7 (4)
|
||||
0x150| 00 00 00 03 | .... | typecnt: 3 0x155-0x158.7 (4)
|
||||
0x150| 00 00 00 0c | .... | charcnt: 12 0x159-0x15c.7 (4)
|
||||
| | | v2plusdatablock{}: 0x15d-0x2d9.7 (381)
|
||||
| | | transition_times[0:3]: 0x15d-0x174.7 (24)
|
||||
0x150| ff ff ff| ...| [0]: "1879-12-31T17:17:56Z" (-2840164924) transition_time 0x15d-0x164.7 (8)
|
||||
0x160|ff 56 b6 85 c4 |.V... |
|
||||
0x160| ff ff ff ff a2 6a 67 c4 | .....jg. | [1]: "1920-03-31T17:17:56Z" (-1570084924) transition_time 0x165-0x16c.7 (8)
|
||||
0x160| 00 00 00| ...| [2]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x16d-0x174.7 (8)
|
||||
0x170|00 64 9b 78 1b |.d.x. |
|
||||
| | | transition_types[0:3]: 0x175-0x177.7 (3)
|
||||
0x170| 01 | . | [0]: 1 transition_type 0x175-0x175.7 (1)
|
||||
0x170| 02 | . | [1]: 2 transition_type 0x176-0x176.7 (1)
|
||||
0x170| 02 | . | [2]: 2 transition_type 0x177-0x177.7 (1)
|
||||
| | | local_time_type_records[0:3]: 0x178-0x189.7 (18)
|
||||
| | | [0]{}: local_time_type 0x178-0x17d.7 (6)
|
||||
0x170| 00 00 5e 3c | ..^< | utoff: 24124 (valid) 0x178-0x17b.7 (4)
|
||||
0x170| 00 | . | dst: 0 (valid) 0x17c-0x17c.7 (1)
|
||||
0x170| 00 | . | idx: 0 (valid) 0x17d-0x17d.7 (1)
|
||||
| | | [1]{}: local_time_type 0x17e-0x183.7 (6)
|
||||
0x170| 00 00| ..| utoff: 24124 (valid) 0x17e-0x181.7 (4)
|
||||
0x180|5e 3c |^< |
|
||||
0x180| 00 | . | dst: 0 (valid) 0x182-0x182.7 (1)
|
||||
0x180| 04 | . | idx: 4 (valid) 0x183-0x183.7 (1)
|
||||
| | | [2]{}: local_time_type 0x184-0x189.7 (6)
|
||||
0x180| 00 00 62 70 | ..bp | utoff: 25200 (valid) 0x184-0x187.7 (4)
|
||||
0x180| 00 | . | dst: 0 (valid) 0x188-0x188.7 (1)
|
||||
0x180| 08 | . | idx: 8 (valid) 0x189-0x189.7 (1)
|
||||
| | | time_zone_designations[0:3]: 0x18a-0x195.7 (12)
|
||||
0x180| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x18a-0x18d.7 (4)
|
||||
0x180| 42 4d| BM| [1]: "BMT" time_zone_designation 0x18e-0x191.7 (4)
|
||||
0x190|54 00 |T. |
|
||||
0x190| 2b 30 37 00 | +07. | [2]: "+07" time_zone_designation 0x192-0x195.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x196-0x2d9.7 (324)
|
||||
| | | [0]{}: leap_second_record 0x196-0x1a1.7 (12)
|
||||
0x190| 00 00 00 00 04 b2 58 00 | ......X. | occur: "1972-07-01T00:00:00Z" (78796800) 0x196-0x19d.7 (8)
|
||||
0x190| 00 00| ..| corr: 1 0x19e-0x1a1.7 (4)
|
||||
0x1a0|00 01 |.. |
|
||||
| | | [1]{}: leap_second_record 0x1a2-0x1ad.7 (12)
|
||||
0x1a0| 00 00 00 00 05 a4 ec 01 | ........ | occur: "1973-01-01T00:00:01Z" (94694401) 0x1a2-0x1a9.7 (8)
|
||||
0x1a0| 00 00 00 02 | .... | corr: 2 0x1aa-0x1ad.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x1ae-0x1b9.7 (12)
|
||||
0x1a0| 00 00| ..| occur: "1974-01-01T00:00:02Z" (126230402) 0x1ae-0x1b5.7 (8)
|
||||
0x1b0|00 00 07 86 1f 82 |...... |
|
||||
0x1b0| 00 00 00 03 | .... | corr: 3 0x1b6-0x1b9.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x1ba-0x1c5.7 (12)
|
||||
0x1b0| 00 00 00 00 09 67| .....g| occur: "1975-01-01T00:00:03Z" (157766403) 0x1ba-0x1c1.7 (8)
|
||||
0x1c0|53 03 |S. |
|
||||
0x1c0| 00 00 00 04 | .... | corr: 4 0x1c2-0x1c5.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x1c6-0x1d1.7 (12)
|
||||
0x1c0| 00 00 00 00 0b 48 86 84 | .....H.. | occur: "1976-01-01T00:00:04Z" (189302404) 0x1c6-0x1cd.7 (8)
|
||||
0x1c0| 00 00| ..| corr: 5 0x1ce-0x1d1.7 (4)
|
||||
0x1d0|00 05 |.. |
|
||||
| | | [5]{}: leap_second_record 0x1d2-0x1dd.7 (12)
|
||||
0x1d0| 00 00 00 00 0d 2b 0b 85 | .....+.. | occur: "1977-01-01T00:00:05Z" (220924805) 0x1d2-0x1d9.7 (8)
|
||||
0x1d0| 00 00 00 06 | .... | corr: 6 0x1da-0x1dd.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x1de-0x1e9.7 (12)
|
||||
0x1d0| 00 00| ..| occur: "1978-01-01T00:00:06Z" (252460806) 0x1de-0x1e5.7 (8)
|
||||
0x1e0|00 00 0f 0c 3f 06 |....?. |
|
||||
0x1e0| 00 00 00 07 | .... | corr: 7 0x1e6-0x1e9.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x1ea-0x1f5.7 (12)
|
||||
0x1e0| 00 00 00 00 10 ed| ......| occur: "1979-01-01T00:00:07Z" (283996807) 0x1ea-0x1f1.7 (8)
|
||||
0x1f0|72 87 |r. |
|
||||
0x1f0| 00 00 00 08 | .... | corr: 8 0x1f2-0x1f5.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x1f6-0x201.7 (12)
|
||||
0x1f0| 00 00 00 00 12 ce a6 08 | ........ | occur: "1980-01-01T00:00:08Z" (315532808) 0x1f6-0x1fd.7 (8)
|
||||
0x1f0| 00 00| ..| corr: 9 0x1fe-0x201.7 (4)
|
||||
0x200|00 09 |.. |
|
||||
| | | [9]{}: leap_second_record 0x202-0x20d.7 (12)
|
||||
0x200| 00 00 00 00 15 9f ca 89 | ........ | occur: "1981-07-01T00:00:09Z" (362793609) 0x202-0x209.7 (8)
|
||||
0x200| 00 00 00 0a | .... | corr: 10 0x20a-0x20d.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x20e-0x219.7 (12)
|
||||
0x200| 00 00| ..| occur: "1982-07-01T00:00:10Z" (394329610) 0x20e-0x215.7 (8)
|
||||
0x210|00 00 17 80 fe 0a |...... |
|
||||
0x210| 00 00 00 0b | .... | corr: 11 0x216-0x219.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x21a-0x225.7 (12)
|
||||
0x210| 00 00 00 00 19 62| .....b| occur: "1983-07-01T00:00:11Z" (425865611) 0x21a-0x221.7 (8)
|
||||
0x220|31 8b |1. |
|
||||
0x220| 00 00 00 0c | .... | corr: 12 0x222-0x225.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x226-0x231.7 (12)
|
||||
0x220| 00 00 00 00 1d 25 ea 0c | .....%.. | occur: "1985-07-01T00:00:12Z" (489024012) 0x226-0x22d.7 (8)
|
||||
0x220| 00 00| ..| corr: 13 0x22e-0x231.7 (4)
|
||||
0x230|00 0d |.. |
|
||||
| | | [13]{}: leap_second_record 0x232-0x23d.7 (12)
|
||||
0x230| 00 00 00 00 21 da e5 0d | ....!... | occur: "1988-01-01T00:00:13Z" (567993613) 0x232-0x239.7 (8)
|
||||
0x230| 00 00 00 0e | .... | corr: 14 0x23a-0x23d.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x23e-0x249.7 (12)
|
||||
0x230| 00 00| ..| occur: "1990-01-01T00:00:14Z" (631152014) 0x23e-0x245.7 (8)
|
||||
0x240|00 00 25 9e 9d 8e |..%... |
|
||||
0x240| 00 00 00 0f | .... | corr: 15 0x246-0x249.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x24a-0x255.7 (12)
|
||||
0x240| 00 00 00 00 27 7f| ....'.| occur: "1991-01-01T00:00:15Z" (662688015) 0x24a-0x251.7 (8)
|
||||
0x250|d1 0f |.. |
|
||||
0x250| 00 00 00 10 | .... | corr: 16 0x252-0x255.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x256-0x261.7 (12)
|
||||
0x250| 00 00 00 00 2a 50 f5 90 | ....*P.. | occur: "1992-07-01T00:00:16Z" (709948816) 0x256-0x25d.7 (8)
|
||||
0x250| 00 00| ..| corr: 17 0x25e-0x261.7 (4)
|
||||
0x260|00 11 |.. |
|
||||
| | | [17]{}: leap_second_record 0x262-0x26d.7 (12)
|
||||
0x260| 00 00 00 00 2c 32 29 11 | ....,2). | occur: "1993-07-01T00:00:17Z" (741484817) 0x262-0x269.7 (8)
|
||||
0x260| 00 00 00 12 | .... | corr: 18 0x26a-0x26d.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x26e-0x279.7 (12)
|
||||
0x260| 00 00| ..| occur: "1994-07-01T00:00:18Z" (773020818) 0x26e-0x275.7 (8)
|
||||
0x270|00 00 2e 13 5c 92 |....\. |
|
||||
0x270| 00 00 00 13 | .... | corr: 19 0x276-0x279.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x27a-0x285.7 (12)
|
||||
0x270| 00 00 00 00 30 e7| ....0.| occur: "1996-01-01T00:00:19Z" (820454419) 0x27a-0x281.7 (8)
|
||||
0x280|24 13 |$. |
|
||||
0x280| 00 00 00 14 | .... | corr: 20 0x282-0x285.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x286-0x291.7 (12)
|
||||
0x280| 00 00 00 00 33 b8 48 94 | ....3.H. | occur: "1997-07-01T00:00:20Z" (867715220) 0x286-0x28d.7 (8)
|
||||
0x280| 00 00| ..| corr: 21 0x28e-0x291.7 (4)
|
||||
0x290|00 15 |.. |
|
||||
| | | [21]{}: leap_second_record 0x292-0x29d.7 (12)
|
||||
0x290| 00 00 00 00 36 8c 10 15 | ....6... | occur: "1999-01-01T00:00:21Z" (915148821) 0x292-0x299.7 (8)
|
||||
0x290| 00 00 00 16 | .... | corr: 22 0x29a-0x29d.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x29e-0x2a9.7 (12)
|
||||
0x290| 00 00| ..| occur: "2006-01-01T00:00:22Z" (1136073622) 0x29e-0x2a5.7 (8)
|
||||
0x2a0|00 00 43 b7 1b 96 |..C... |
|
||||
0x2a0| 00 00 00 17 | .... | corr: 23 0x2a6-0x2a9.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x2aa-0x2b5.7 (12)
|
||||
0x2a0| 00 00 00 00 49 5c| ....I\| occur: "2009-01-01T00:00:23Z" (1230768023) 0x2aa-0x2b1.7 (8)
|
||||
0x2b0|07 97 |.. |
|
||||
0x2b0| 00 00 00 18 | .... | corr: 24 0x2b2-0x2b5.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x2b6-0x2c1.7 (12)
|
||||
0x2b0| 00 00 00 00 4f ef 93 18 | ....O... | occur: "2012-07-01T00:00:24Z" (1341100824) 0x2b6-0x2bd.7 (8)
|
||||
0x2b0| 00 00| ..| corr: 25 0x2be-0x2c1.7 (4)
|
||||
0x2c0|00 19 |.. |
|
||||
| | | [25]{}: leap_second_record 0x2c2-0x2cd.7 (12)
|
||||
0x2c0| 00 00 00 00 55 93 2d 99 | ....U.-. | occur: "2015-07-01T00:00:25Z" (1435708825) 0x2c2-0x2c9.7 (8)
|
||||
0x2c0| 00 00 00 1a | .... | corr: 26 0x2ca-0x2cd.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x2ce-0x2d9.7 (12)
|
||||
0x2c0| 00 00| ..| occur: "2017-01-01T00:00:26Z" (1483228826) 0x2ce-0x2d5.7 (8)
|
||||
0x2d0|00 00 58 68 46 9a |..XhF. |
|
||||
0x2d0| 00 00 00 1b | .... | corr: 27 0x2d6-0x2d9.7 (4)
|
||||
| | | standard_wall_indicators[0:0]: 0x2da-NA (0)
|
||||
| | | ut_local_indicators[0:0]: 0x2da-NA (0)
|
||||
| | | footer{}: 0x2da-0x2db.7 (2)
|
||||
0x2d0| 0a | . | nl1: 10 (valid) 0x2da-0x2da.7 (1)
|
||||
| | | tz_string: "" 0x2db-NA (0)
|
||||
0x2d0| 0a| | .| | nl2: 10 (valid) 0x2db-0x2db.7 (1)
|
BIN
format/tzif/testdata/Barbados
vendored
Normal file
BIN
format/tzif/testdata/Barbados
vendored
Normal file
Binary file not shown.
383
format/tzif/testdata/Barbados.fqtest
vendored
Normal file
383
format/tzif/testdata/Barbados.fqtest
vendored
Normal file
@ -0,0 +1,383 @@
|
||||
$ fq -d tzif dv Barbados
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: Barbados (tzif) 0x0-0x3d9.7 (986)
|
||||
| | | v1header{}: 0x0-0x2b.7 (44)
|
||||
0x000|54 5a 69 66 |TZif | magic: 0x545a6966 (valid) 0x0-0x3.7 (4)
|
||||
0x000| 32 | 2 | ver: "2" (0x32) (valid) 0x4-0x4.7 (1)
|
||||
0x000| 00 00 00 00 00 00 00 00 00 00 00| ...........| reserved: raw bits 0x5-0x13.7 (15)
|
||||
0x010|00 00 00 00 |.... |
|
||||
0x010| 00 00 00 06 | .... | isutcnt: 6 0x14-0x17.7 (4)
|
||||
0x010| 00 00 00 06 | .... | isstdcnt: 6 0x18-0x1b.7 (4)
|
||||
0x010| 00 00 00 1b| ....| leapcnt: 27 0x1c-0x1f.7 (4)
|
||||
0x020|00 00 00 10 |.... | timecnt: 16 0x20-0x23.7 (4)
|
||||
0x020| 00 00 00 06 | .... | typecnt: 6 0x24-0x27.7 (4)
|
||||
0x020| 00 00 00 12 | .... | charcnt: 18 0x28-0x2b.7 (4)
|
||||
| | | v1datablock{}: 0x2c-0x195.7 (362)
|
||||
| | | transition_times[0:16]: 0x2c-0x6b.7 (64)
|
||||
0x020| 92 40 a9 65| .@.e| [0]: "1911-08-28T03:58:29Z" (-1841256091) transition_time 0x2c-0x2f.7 (4)
|
||||
0x030|cb e3 cb d0 |.... | [1]: "1942-04-19T05:00:00Z" (-874263600) transition_time 0x30-0x33.7 (4)
|
||||
0x030| cc 94 82 e0 | .... | [2]: "1942-08-31T06:00:00Z" (-862682400) transition_time 0x34-0x37.7 (4)
|
||||
0x030| cd d6 22 d0 | ..". | [3]: "1943-05-02T05:00:00Z" (-841604400) transition_time 0x38-0x3b.7 (4)
|
||||
0x030| ce 7c 4d e0| .|M.| [4]: "1943-09-05T06:00:00Z" (-830714400) transition_time 0x3c-0x3f.7 (4)
|
||||
0x040|cf 9b a6 d0 |.... | [5]: "1944-04-10T05:00:00Z" (-811882800) transition_time 0x40-0x43.7 (4)
|
||||
0x040| d0 65 6a 60 | .ej` | [6]: "1944-09-10T06:00:00Z" (-798660000) transition_time 0x44-0x47.7 (4)
|
||||
0x040| 0e 00 f2 e6 | .... | [7]: "1977-06-12T06:00:06Z" (234943206) transition_time 0x48-0x4b.7 (4)
|
||||
0x040| 0e 94 8c d6| ....| [8]: "1977-10-02T05:00:06Z" (244616406) transition_time 0x4c-0x4f.7 (4)
|
||||
0x050|0f 97 00 e7 |.... | [9]: "1978-04-16T06:00:07Z" (261554407) transition_time 0x50-0x53.7 (4)
|
||||
0x050| 10 74 6e d7 | .tn. | [10]: "1978-10-01T05:00:07Z" (276066007) transition_time 0x54-0x57.7 (4)
|
||||
0x050| 11 76 e2 e8 | .v.. | [11]: "1979-04-15T06:00:08Z" (293004008) transition_time 0x58-0x5b.7 (4)
|
||||
0x050| 12 54 50 d8| .TP.| [12]: "1979-09-30T05:00:08Z" (307515608) transition_time 0x5c-0x5f.7 (4)
|
||||
0x060|13 5f ff 69 |._.i | [13]: "1980-04-20T06:00:09Z" (325058409) transition_time 0x60-0x63.7 (4)
|
||||
0x060| 14 30 3e 59 | .0>Y | [14]: "1980-09-25T05:00:09Z" (338706009) transition_time 0x64-0x67.7 (4)
|
||||
0x060| 64 9b 78 1b | d.x. | [15]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x68-0x6b.7 (4)
|
||||
| | | transition_types[0:16]: 0x6c-0x7b.7 (16)
|
||||
0x060| 03 | . | [0]: 3 transition_type 0x6c-0x6c.7 (1)
|
||||
0x060| 01 | . | [1]: 1 transition_type 0x6d-0x6d.7 (1)
|
||||
0x060| 02 | . | [2]: 2 transition_type 0x6e-0x6e.7 (1)
|
||||
0x060| 01| .| [3]: 1 transition_type 0x6f-0x6f.7 (1)
|
||||
0x070|02 |. | [4]: 2 transition_type 0x70-0x70.7 (1)
|
||||
0x070| 04 | . | [5]: 4 transition_type 0x71-0x71.7 (1)
|
||||
0x070| 02 | . | [6]: 2 transition_type 0x72-0x72.7 (1)
|
||||
0x070| 05 | . | [7]: 5 transition_type 0x73-0x73.7 (1)
|
||||
0x070| 03 | . | [8]: 3 transition_type 0x74-0x74.7 (1)
|
||||
0x070| 05 | . | [9]: 5 transition_type 0x75-0x75.7 (1)
|
||||
0x070| 03 | . | [10]: 3 transition_type 0x76-0x76.7 (1)
|
||||
0x070| 05 | . | [11]: 5 transition_type 0x77-0x77.7 (1)
|
||||
0x070| 03 | . | [12]: 3 transition_type 0x78-0x78.7 (1)
|
||||
0x070| 05 | . | [13]: 5 transition_type 0x79-0x79.7 (1)
|
||||
0x070| 03 | . | [14]: 3 transition_type 0x7a-0x7a.7 (1)
|
||||
0x070| 03 | . | [15]: 3 transition_type 0x7b-0x7b.7 (1)
|
||||
| | | local_time_type_records[0:6]: 0x7c-0x9f.7 (36)
|
||||
| | | [0]{}: local_time_type 0x7c-0x81.7 (6)
|
||||
0x070| ff ff c8 1b| ....| utoff: -14309 (valid) 0x7c-0x7f.7 (4)
|
||||
0x080|00 |. | dst: 0 (valid) 0x80-0x80.7 (1)
|
||||
0x080| 00 | . | idx: 0 (valid) 0x81-0x81.7 (1)
|
||||
| | | [1]{}: local_time_type 0x82-0x87.7 (6)
|
||||
0x080| ff ff d5 d0 | .... | utoff: -10800 (valid) 0x82-0x85.7 (4)
|
||||
0x080| 01 | . | dst: 1 (valid) 0x86-0x86.7 (1)
|
||||
0x080| 04 | . | idx: 4 (valid) 0x87-0x87.7 (1)
|
||||
| | | [2]{}: local_time_type 0x88-0x8d.7 (6)
|
||||
0x080| ff ff c7 c0 | .... | utoff: -14400 (valid) 0x88-0x8b.7 (4)
|
||||
0x080| 00 | . | dst: 0 (valid) 0x8c-0x8c.7 (1)
|
||||
0x080| 08 | . | idx: 8 (valid) 0x8d-0x8d.7 (1)
|
||||
| | | [3]{}: local_time_type 0x8e-0x93.7 (6)
|
||||
0x080| ff ff| ..| utoff: -14400 (valid) 0x8e-0x91.7 (4)
|
||||
0x090|c7 c0 |.. |
|
||||
0x090| 00 | . | dst: 0 (valid) 0x92-0x92.7 (1)
|
||||
0x090| 08 | . | idx: 8 (valid) 0x93-0x93.7 (1)
|
||||
| | | [4]{}: local_time_type 0x94-0x99.7 (6)
|
||||
0x090| ff ff ce c8 | .... | utoff: -12600 (valid) 0x94-0x97.7 (4)
|
||||
0x090| 01 | . | dst: 1 (valid) 0x98-0x98.7 (1)
|
||||
0x090| 0c | . | idx: 12 (valid) 0x99-0x99.7 (1)
|
||||
| | | [5]{}: local_time_type 0x9a-0x9f.7 (6)
|
||||
0x090| ff ff d5 d0 | .... | utoff: -10800 (valid) 0x9a-0x9d.7 (4)
|
||||
0x090| 01 | . | dst: 1 (valid) 0x9e-0x9e.7 (1)
|
||||
0x090| 04| .| idx: 4 (valid) 0x9f-0x9f.7 (1)
|
||||
| | | time_zone_designations[0:4]: 0xa0-0xb1.7 (18)
|
||||
0x0a0|4c 4d 54 00 |LMT. | [0]: "LMT" time_zone_designation 0xa0-0xa3.7 (4)
|
||||
0x0a0| 41 44 54 00 | ADT. | [1]: "ADT" time_zone_designation 0xa4-0xa7.7 (4)
|
||||
0x0a0| 41 53 54 00 | AST. | [2]: "AST" time_zone_designation 0xa8-0xab.7 (4)
|
||||
0x0a0| 2d 30 33 33| -033| [3]: "-0330" time_zone_designation 0xac-0xb1.7 (6)
|
||||
0x0b0|30 00 |0. |
|
||||
| | | leap_second_records[0:27]: 0xb2-0x189.7 (216)
|
||||
| | | [0]{}: leap_second_record 0xb2-0xb9.7 (8)
|
||||
0x0b0| 04 b2 58 00 | ..X. | occur: "1972-07-01T00:00:00Z" (78796800) 0xb2-0xb5.7 (4)
|
||||
0x0b0| 00 00 00 01 | .... | corr: 1 0xb6-0xb9.7 (4)
|
||||
| | | [1]{}: leap_second_record 0xba-0xc1.7 (8)
|
||||
0x0b0| 05 a4 ec 01 | .... | occur: "1973-01-01T00:00:01Z" (94694401) 0xba-0xbd.7 (4)
|
||||
0x0b0| 00 00| ..| corr: 2 0xbe-0xc1.7 (4)
|
||||
0x0c0|00 02 |.. |
|
||||
| | | [2]{}: leap_second_record 0xc2-0xc9.7 (8)
|
||||
0x0c0| 07 86 1f 82 | .... | occur: "1974-01-01T00:00:02Z" (126230402) 0xc2-0xc5.7 (4)
|
||||
0x0c0| 00 00 00 03 | .... | corr: 3 0xc6-0xc9.7 (4)
|
||||
| | | [3]{}: leap_second_record 0xca-0xd1.7 (8)
|
||||
0x0c0| 09 67 53 03 | .gS. | occur: "1975-01-01T00:00:03Z" (157766403) 0xca-0xcd.7 (4)
|
||||
0x0c0| 00 00| ..| corr: 4 0xce-0xd1.7 (4)
|
||||
0x0d0|00 04 |.. |
|
||||
| | | [4]{}: leap_second_record 0xd2-0xd9.7 (8)
|
||||
0x0d0| 0b 48 86 84 | .H.. | occur: "1976-01-01T00:00:04Z" (189302404) 0xd2-0xd5.7 (4)
|
||||
0x0d0| 00 00 00 05 | .... | corr: 5 0xd6-0xd9.7 (4)
|
||||
| | | [5]{}: leap_second_record 0xda-0xe1.7 (8)
|
||||
0x0d0| 0d 2b 0b 85 | .+.. | occur: "1977-01-01T00:00:05Z" (220924805) 0xda-0xdd.7 (4)
|
||||
0x0d0| 00 00| ..| corr: 6 0xde-0xe1.7 (4)
|
||||
0x0e0|00 06 |.. |
|
||||
| | | [6]{}: leap_second_record 0xe2-0xe9.7 (8)
|
||||
0x0e0| 0f 0c 3f 06 | ..?. | occur: "1978-01-01T00:00:06Z" (252460806) 0xe2-0xe5.7 (4)
|
||||
0x0e0| 00 00 00 07 | .... | corr: 7 0xe6-0xe9.7 (4)
|
||||
| | | [7]{}: leap_second_record 0xea-0xf1.7 (8)
|
||||
0x0e0| 10 ed 72 87 | ..r. | occur: "1979-01-01T00:00:07Z" (283996807) 0xea-0xed.7 (4)
|
||||
0x0e0| 00 00| ..| corr: 8 0xee-0xf1.7 (4)
|
||||
0x0f0|00 08 |.. |
|
||||
| | | [8]{}: leap_second_record 0xf2-0xf9.7 (8)
|
||||
0x0f0| 12 ce a6 08 | .... | occur: "1980-01-01T00:00:08Z" (315532808) 0xf2-0xf5.7 (4)
|
||||
0x0f0| 00 00 00 09 | .... | corr: 9 0xf6-0xf9.7 (4)
|
||||
| | | [9]{}: leap_second_record 0xfa-0x101.7 (8)
|
||||
0x0f0| 15 9f ca 89 | .... | occur: "1981-07-01T00:00:09Z" (362793609) 0xfa-0xfd.7 (4)
|
||||
0x0f0| 00 00| ..| corr: 10 0xfe-0x101.7 (4)
|
||||
0x100|00 0a |.. |
|
||||
| | | [10]{}: leap_second_record 0x102-0x109.7 (8)
|
||||
0x100| 17 80 fe 0a | .... | occur: "1982-07-01T00:00:10Z" (394329610) 0x102-0x105.7 (4)
|
||||
0x100| 00 00 00 0b | .... | corr: 11 0x106-0x109.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x10a-0x111.7 (8)
|
||||
0x100| 19 62 31 8b | .b1. | occur: "1983-07-01T00:00:11Z" (425865611) 0x10a-0x10d.7 (4)
|
||||
0x100| 00 00| ..| corr: 12 0x10e-0x111.7 (4)
|
||||
0x110|00 0c |.. |
|
||||
| | | [12]{}: leap_second_record 0x112-0x119.7 (8)
|
||||
0x110| 1d 25 ea 0c | .%.. | occur: "1985-07-01T00:00:12Z" (489024012) 0x112-0x115.7 (4)
|
||||
0x110| 00 00 00 0d | .... | corr: 13 0x116-0x119.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x11a-0x121.7 (8)
|
||||
0x110| 21 da e5 0d | !... | occur: "1988-01-01T00:00:13Z" (567993613) 0x11a-0x11d.7 (4)
|
||||
0x110| 00 00| ..| corr: 14 0x11e-0x121.7 (4)
|
||||
0x120|00 0e |.. |
|
||||
| | | [14]{}: leap_second_record 0x122-0x129.7 (8)
|
||||
0x120| 25 9e 9d 8e | %... | occur: "1990-01-01T00:00:14Z" (631152014) 0x122-0x125.7 (4)
|
||||
0x120| 00 00 00 0f | .... | corr: 15 0x126-0x129.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x12a-0x131.7 (8)
|
||||
0x120| 27 7f d1 0f | '... | occur: "1991-01-01T00:00:15Z" (662688015) 0x12a-0x12d.7 (4)
|
||||
0x120| 00 00| ..| corr: 16 0x12e-0x131.7 (4)
|
||||
0x130|00 10 |.. |
|
||||
| | | [16]{}: leap_second_record 0x132-0x139.7 (8)
|
||||
0x130| 2a 50 f5 90 | *P.. | occur: "1992-07-01T00:00:16Z" (709948816) 0x132-0x135.7 (4)
|
||||
0x130| 00 00 00 11 | .... | corr: 17 0x136-0x139.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x13a-0x141.7 (8)
|
||||
0x130| 2c 32 29 11 | ,2). | occur: "1993-07-01T00:00:17Z" (741484817) 0x13a-0x13d.7 (4)
|
||||
0x130| 00 00| ..| corr: 18 0x13e-0x141.7 (4)
|
||||
0x140|00 12 |.. |
|
||||
| | | [18]{}: leap_second_record 0x142-0x149.7 (8)
|
||||
0x140| 2e 13 5c 92 | ..\. | occur: "1994-07-01T00:00:18Z" (773020818) 0x142-0x145.7 (4)
|
||||
0x140| 00 00 00 13 | .... | corr: 19 0x146-0x149.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x14a-0x151.7 (8)
|
||||
0x140| 30 e7 24 13 | 0.$. | occur: "1996-01-01T00:00:19Z" (820454419) 0x14a-0x14d.7 (4)
|
||||
0x140| 00 00| ..| corr: 20 0x14e-0x151.7 (4)
|
||||
0x150|00 14 |.. |
|
||||
| | | [20]{}: leap_second_record 0x152-0x159.7 (8)
|
||||
0x150| 33 b8 48 94 | 3.H. | occur: "1997-07-01T00:00:20Z" (867715220) 0x152-0x155.7 (4)
|
||||
0x150| 00 00 00 15 | .... | corr: 21 0x156-0x159.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x15a-0x161.7 (8)
|
||||
0x150| 36 8c 10 15 | 6... | occur: "1999-01-01T00:00:21Z" (915148821) 0x15a-0x15d.7 (4)
|
||||
0x150| 00 00| ..| corr: 22 0x15e-0x161.7 (4)
|
||||
0x160|00 16 |.. |
|
||||
| | | [22]{}: leap_second_record 0x162-0x169.7 (8)
|
||||
0x160| 43 b7 1b 96 | C... | occur: "2006-01-01T00:00:22Z" (1136073622) 0x162-0x165.7 (4)
|
||||
0x160| 00 00 00 17 | .... | corr: 23 0x166-0x169.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x16a-0x171.7 (8)
|
||||
0x160| 49 5c 07 97 | I\.. | occur: "2009-01-01T00:00:23Z" (1230768023) 0x16a-0x16d.7 (4)
|
||||
0x160| 00 00| ..| corr: 24 0x16e-0x171.7 (4)
|
||||
0x170|00 18 |.. |
|
||||
| | | [24]{}: leap_second_record 0x172-0x179.7 (8)
|
||||
0x170| 4f ef 93 18 | O... | occur: "2012-07-01T00:00:24Z" (1341100824) 0x172-0x175.7 (4)
|
||||
0x170| 00 00 00 19 | .... | corr: 25 0x176-0x179.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x17a-0x181.7 (8)
|
||||
0x170| 55 93 2d 99 | U.-. | occur: "2015-07-01T00:00:25Z" (1435708825) 0x17a-0x17d.7 (4)
|
||||
0x170| 00 00| ..| corr: 26 0x17e-0x181.7 (4)
|
||||
0x180|00 1a |.. |
|
||||
| | | [26]{}: leap_second_record 0x182-0x189.7 (8)
|
||||
0x180| 58 68 46 9a | XhF. | occur: "2017-01-01T00:00:26Z" (1483228826) 0x182-0x185.7 (4)
|
||||
0x180| 00 00 00 1b | .... | corr: 27 0x186-0x189.7 (4)
|
||||
| | | standard_wall_indicators[0:6]: 0x18a-0x18f.7 (6)
|
||||
0x180| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x18a-0x18a.7 (1)
|
||||
0x180| 01 | . | [1]: 1 standard_wall_indicator (valid) 0x18b-0x18b.7 (1)
|
||||
0x180| 01 | . | [2]: 1 standard_wall_indicator (valid) 0x18c-0x18c.7 (1)
|
||||
0x180| 00 | . | [3]: 0 standard_wall_indicator (valid) 0x18d-0x18d.7 (1)
|
||||
0x180| 01 | . | [4]: 1 standard_wall_indicator (valid) 0x18e-0x18e.7 (1)
|
||||
0x180| 00| .| [5]: 0 standard_wall_indicator (valid) 0x18f-0x18f.7 (1)
|
||||
| | | ut_local_indicators[0:6]: 0x190-0x195.7 (6)
|
||||
0x190|00 |. | [0]: 0 ut_local_indicator (valid) 0x190-0x190.7 (1)
|
||||
0x190| 01 | . | [1]: 1 ut_local_indicator (valid) 0x191-0x191.7 (1)
|
||||
0x190| 01 | . | [2]: 1 ut_local_indicator (valid) 0x192-0x192.7 (1)
|
||||
0x190| 00 | . | [3]: 0 ut_local_indicator (valid) 0x193-0x193.7 (1)
|
||||
0x190| 01 | . | [4]: 1 ut_local_indicator (valid) 0x194-0x194.7 (1)
|
||||
0x190| 00 | . | [5]: 0 ut_local_indicator (valid) 0x195-0x195.7 (1)
|
||||
| | | v2plusheader{}: 0x196-0x1c1.7 (44)
|
||||
0x190| 54 5a 69 66 | TZif | magic: 0x545a6966 (valid) 0x196-0x199.7 (4)
|
||||
0x190| 32 | 2 | ver: "2" (0x32) (valid) 0x19a-0x19a.7 (1)
|
||||
0x190| 00 00 00 00 00| .....| reserved: raw bits 0x19b-0x1a9.7 (15)
|
||||
0x1a0|00 00 00 00 00 00 00 00 00 00 |.......... |
|
||||
0x1a0| 00 00 00 06 | .... | isutcnt: 6 0x1aa-0x1ad.7 (4)
|
||||
0x1a0| 00 00| ..| isstdcnt: 6 0x1ae-0x1b1.7 (4)
|
||||
0x1b0|00 06 |.. |
|
||||
0x1b0| 00 00 00 1b | .... | leapcnt: 27 0x1b2-0x1b5.7 (4)
|
||||
0x1b0| 00 00 00 10 | .... | timecnt: 16 0x1b6-0x1b9.7 (4)
|
||||
0x1b0| 00 00 00 06 | .... | typecnt: 6 0x1ba-0x1bd.7 (4)
|
||||
0x1b0| 00 00| ..| charcnt: 18 0x1be-0x1c1.7 (4)
|
||||
0x1c0|00 12 |.. |
|
||||
| | | v2plusdatablock{}: 0x1c2-0x3d7.7 (534)
|
||||
| | | transition_times[0:16]: 0x1c2-0x241.7 (128)
|
||||
0x1c0| ff ff ff ff 92 40 a9 65 | .....@.e | [0]: "1911-08-28T03:58:29Z" (-1841256091) transition_time 0x1c2-0x1c9.7 (8)
|
||||
0x1c0| ff ff ff ff cb e3| ......| [1]: "1942-04-19T05:00:00Z" (-874263600) transition_time 0x1ca-0x1d1.7 (8)
|
||||
0x1d0|cb d0 |.. |
|
||||
0x1d0| ff ff ff ff cc 94 82 e0 | ........ | [2]: "1942-08-31T06:00:00Z" (-862682400) transition_time 0x1d2-0x1d9.7 (8)
|
||||
0x1d0| ff ff ff ff cd d6| ......| [3]: "1943-05-02T05:00:00Z" (-841604400) transition_time 0x1da-0x1e1.7 (8)
|
||||
0x1e0|22 d0 |". |
|
||||
0x1e0| ff ff ff ff ce 7c 4d e0 | .....|M. | [4]: "1943-09-05T06:00:00Z" (-830714400) transition_time 0x1e2-0x1e9.7 (8)
|
||||
0x1e0| ff ff ff ff cf 9b| ......| [5]: "1944-04-10T05:00:00Z" (-811882800) transition_time 0x1ea-0x1f1.7 (8)
|
||||
0x1f0|a6 d0 |.. |
|
||||
0x1f0| ff ff ff ff d0 65 6a 60 | .....ej` | [6]: "1944-09-10T06:00:00Z" (-798660000) transition_time 0x1f2-0x1f9.7 (8)
|
||||
0x1f0| 00 00 00 00 0e 00| ......| [7]: "1977-06-12T06:00:06Z" (234943206) transition_time 0x1fa-0x201.7 (8)
|
||||
0x200|f2 e6 |.. |
|
||||
0x200| 00 00 00 00 0e 94 8c d6 | ........ | [8]: "1977-10-02T05:00:06Z" (244616406) transition_time 0x202-0x209.7 (8)
|
||||
0x200| 00 00 00 00 0f 97| ......| [9]: "1978-04-16T06:00:07Z" (261554407) transition_time 0x20a-0x211.7 (8)
|
||||
0x210|00 e7 |.. |
|
||||
0x210| 00 00 00 00 10 74 6e d7 | .....tn. | [10]: "1978-10-01T05:00:07Z" (276066007) transition_time 0x212-0x219.7 (8)
|
||||
0x210| 00 00 00 00 11 76| .....v| [11]: "1979-04-15T06:00:08Z" (293004008) transition_time 0x21a-0x221.7 (8)
|
||||
0x220|e2 e8 |.. |
|
||||
0x220| 00 00 00 00 12 54 50 d8 | .....TP. | [12]: "1979-09-30T05:00:08Z" (307515608) transition_time 0x222-0x229.7 (8)
|
||||
0x220| 00 00 00 00 13 5f| ....._| [13]: "1980-04-20T06:00:09Z" (325058409) transition_time 0x22a-0x231.7 (8)
|
||||
0x230|ff 69 |.i |
|
||||
0x230| 00 00 00 00 14 30 3e 59 | .....0>Y | [14]: "1980-09-25T05:00:09Z" (338706009) transition_time 0x232-0x239.7 (8)
|
||||
0x230| 00 00 00 00 64 9b| ....d.| [15]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x23a-0x241.7 (8)
|
||||
0x240|78 1b |x. |
|
||||
| | | transition_types[0:16]: 0x242-0x251.7 (16)
|
||||
0x240| 03 | . | [0]: 3 transition_type 0x242-0x242.7 (1)
|
||||
0x240| 01 | . | [1]: 1 transition_type 0x243-0x243.7 (1)
|
||||
0x240| 02 | . | [2]: 2 transition_type 0x244-0x244.7 (1)
|
||||
0x240| 01 | . | [3]: 1 transition_type 0x245-0x245.7 (1)
|
||||
0x240| 02 | . | [4]: 2 transition_type 0x246-0x246.7 (1)
|
||||
0x240| 04 | . | [5]: 4 transition_type 0x247-0x247.7 (1)
|
||||
0x240| 02 | . | [6]: 2 transition_type 0x248-0x248.7 (1)
|
||||
0x240| 05 | . | [7]: 5 transition_type 0x249-0x249.7 (1)
|
||||
0x240| 03 | . | [8]: 3 transition_type 0x24a-0x24a.7 (1)
|
||||
0x240| 05 | . | [9]: 5 transition_type 0x24b-0x24b.7 (1)
|
||||
0x240| 03 | . | [10]: 3 transition_type 0x24c-0x24c.7 (1)
|
||||
0x240| 05 | . | [11]: 5 transition_type 0x24d-0x24d.7 (1)
|
||||
0x240| 03 | . | [12]: 3 transition_type 0x24e-0x24e.7 (1)
|
||||
0x240| 05| .| [13]: 5 transition_type 0x24f-0x24f.7 (1)
|
||||
0x250|03 |. | [14]: 3 transition_type 0x250-0x250.7 (1)
|
||||
0x250| 03 | . | [15]: 3 transition_type 0x251-0x251.7 (1)
|
||||
| | | local_time_type_records[0:6]: 0x252-0x275.7 (36)
|
||||
| | | [0]{}: local_time_type 0x252-0x257.7 (6)
|
||||
0x250| ff ff c8 1b | .... | utoff: -14309 (valid) 0x252-0x255.7 (4)
|
||||
0x250| 00 | . | dst: 0 (valid) 0x256-0x256.7 (1)
|
||||
0x250| 00 | . | idx: 0 (valid) 0x257-0x257.7 (1)
|
||||
| | | [1]{}: local_time_type 0x258-0x25d.7 (6)
|
||||
0x250| ff ff d5 d0 | .... | utoff: -10800 (valid) 0x258-0x25b.7 (4)
|
||||
0x250| 01 | . | dst: 1 (valid) 0x25c-0x25c.7 (1)
|
||||
0x250| 04 | . | idx: 4 (valid) 0x25d-0x25d.7 (1)
|
||||
| | | [2]{}: local_time_type 0x25e-0x263.7 (6)
|
||||
0x250| ff ff| ..| utoff: -14400 (valid) 0x25e-0x261.7 (4)
|
||||
0x260|c7 c0 |.. |
|
||||
0x260| 00 | . | dst: 0 (valid) 0x262-0x262.7 (1)
|
||||
0x260| 08 | . | idx: 8 (valid) 0x263-0x263.7 (1)
|
||||
| | | [3]{}: local_time_type 0x264-0x269.7 (6)
|
||||
0x260| ff ff c7 c0 | .... | utoff: -14400 (valid) 0x264-0x267.7 (4)
|
||||
0x260| 00 | . | dst: 0 (valid) 0x268-0x268.7 (1)
|
||||
0x260| 08 | . | idx: 8 (valid) 0x269-0x269.7 (1)
|
||||
| | | [4]{}: local_time_type 0x26a-0x26f.7 (6)
|
||||
0x260| ff ff ce c8 | .... | utoff: -12600 (valid) 0x26a-0x26d.7 (4)
|
||||
0x260| 01 | . | dst: 1 (valid) 0x26e-0x26e.7 (1)
|
||||
0x260| 0c| .| idx: 12 (valid) 0x26f-0x26f.7 (1)
|
||||
| | | [5]{}: local_time_type 0x270-0x275.7 (6)
|
||||
0x270|ff ff d5 d0 |.... | utoff: -10800 (valid) 0x270-0x273.7 (4)
|
||||
0x270| 01 | . | dst: 1 (valid) 0x274-0x274.7 (1)
|
||||
0x270| 04 | . | idx: 4 (valid) 0x275-0x275.7 (1)
|
||||
| | | time_zone_designations[0:4]: 0x276-0x287.7 (18)
|
||||
0x270| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x276-0x279.7 (4)
|
||||
0x270| 41 44 54 00 | ADT. | [1]: "ADT" time_zone_designation 0x27a-0x27d.7 (4)
|
||||
0x270| 41 53| AS| [2]: "AST" time_zone_designation 0x27e-0x281.7 (4)
|
||||
0x280|54 00 |T. |
|
||||
0x280| 2d 30 33 33 30 00 | -0330. | [3]: "-0330" time_zone_designation 0x282-0x287.7 (6)
|
||||
| | | leap_second_records[0:27]: 0x288-0x3cb.7 (324)
|
||||
| | | [0]{}: leap_second_record 0x288-0x293.7 (12)
|
||||
0x280| 00 00 00 00 04 b2 58 00| ......X.| occur: "1972-07-01T00:00:00Z" (78796800) 0x288-0x28f.7 (8)
|
||||
0x290|00 00 00 01 |.... | corr: 1 0x290-0x293.7 (4)
|
||||
| | | [1]{}: leap_second_record 0x294-0x29f.7 (12)
|
||||
0x290| 00 00 00 00 05 a4 ec 01 | ........ | occur: "1973-01-01T00:00:01Z" (94694401) 0x294-0x29b.7 (8)
|
||||
0x290| 00 00 00 02| ....| corr: 2 0x29c-0x29f.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x2a0-0x2ab.7 (12)
|
||||
0x2a0|00 00 00 00 07 86 1f 82 |........ | occur: "1974-01-01T00:00:02Z" (126230402) 0x2a0-0x2a7.7 (8)
|
||||
0x2a0| 00 00 00 03 | .... | corr: 3 0x2a8-0x2ab.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x2ac-0x2b7.7 (12)
|
||||
0x2a0| 00 00 00 00| ....| occur: "1975-01-01T00:00:03Z" (157766403) 0x2ac-0x2b3.7 (8)
|
||||
0x2b0|09 67 53 03 |.gS. |
|
||||
0x2b0| 00 00 00 04 | .... | corr: 4 0x2b4-0x2b7.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x2b8-0x2c3.7 (12)
|
||||
0x2b0| 00 00 00 00 0b 48 86 84| .....H..| occur: "1976-01-01T00:00:04Z" (189302404) 0x2b8-0x2bf.7 (8)
|
||||
0x2c0|00 00 00 05 |.... | corr: 5 0x2c0-0x2c3.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x2c4-0x2cf.7 (12)
|
||||
0x2c0| 00 00 00 00 0d 2b 0b 85 | .....+.. | occur: "1977-01-01T00:00:05Z" (220924805) 0x2c4-0x2cb.7 (8)
|
||||
0x2c0| 00 00 00 06| ....| corr: 6 0x2cc-0x2cf.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x2d0-0x2db.7 (12)
|
||||
0x2d0|00 00 00 00 0f 0c 3f 06 |......?. | occur: "1978-01-01T00:00:06Z" (252460806) 0x2d0-0x2d7.7 (8)
|
||||
0x2d0| 00 00 00 07 | .... | corr: 7 0x2d8-0x2db.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x2dc-0x2e7.7 (12)
|
||||
0x2d0| 00 00 00 00| ....| occur: "1979-01-01T00:00:07Z" (283996807) 0x2dc-0x2e3.7 (8)
|
||||
0x2e0|10 ed 72 87 |..r. |
|
||||
0x2e0| 00 00 00 08 | .... | corr: 8 0x2e4-0x2e7.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x2e8-0x2f3.7 (12)
|
||||
0x2e0| 00 00 00 00 12 ce a6 08| ........| occur: "1980-01-01T00:00:08Z" (315532808) 0x2e8-0x2ef.7 (8)
|
||||
0x2f0|00 00 00 09 |.... | corr: 9 0x2f0-0x2f3.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x2f4-0x2ff.7 (12)
|
||||
0x2f0| 00 00 00 00 15 9f ca 89 | ........ | occur: "1981-07-01T00:00:09Z" (362793609) 0x2f4-0x2fb.7 (8)
|
||||
0x2f0| 00 00 00 0a| ....| corr: 10 0x2fc-0x2ff.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x300-0x30b.7 (12)
|
||||
0x300|00 00 00 00 17 80 fe 0a |........ | occur: "1982-07-01T00:00:10Z" (394329610) 0x300-0x307.7 (8)
|
||||
0x300| 00 00 00 0b | .... | corr: 11 0x308-0x30b.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x30c-0x317.7 (12)
|
||||
0x300| 00 00 00 00| ....| occur: "1983-07-01T00:00:11Z" (425865611) 0x30c-0x313.7 (8)
|
||||
0x310|19 62 31 8b |.b1. |
|
||||
0x310| 00 00 00 0c | .... | corr: 12 0x314-0x317.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x318-0x323.7 (12)
|
||||
0x310| 00 00 00 00 1d 25 ea 0c| .....%..| occur: "1985-07-01T00:00:12Z" (489024012) 0x318-0x31f.7 (8)
|
||||
0x320|00 00 00 0d |.... | corr: 13 0x320-0x323.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x324-0x32f.7 (12)
|
||||
0x320| 00 00 00 00 21 da e5 0d | ....!... | occur: "1988-01-01T00:00:13Z" (567993613) 0x324-0x32b.7 (8)
|
||||
0x320| 00 00 00 0e| ....| corr: 14 0x32c-0x32f.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x330-0x33b.7 (12)
|
||||
0x330|00 00 00 00 25 9e 9d 8e |....%... | occur: "1990-01-01T00:00:14Z" (631152014) 0x330-0x337.7 (8)
|
||||
0x330| 00 00 00 0f | .... | corr: 15 0x338-0x33b.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x33c-0x347.7 (12)
|
||||
0x330| 00 00 00 00| ....| occur: "1991-01-01T00:00:15Z" (662688015) 0x33c-0x343.7 (8)
|
||||
0x340|27 7f d1 0f |'... |
|
||||
0x340| 00 00 00 10 | .... | corr: 16 0x344-0x347.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x348-0x353.7 (12)
|
||||
0x340| 00 00 00 00 2a 50 f5 90| ....*P..| occur: "1992-07-01T00:00:16Z" (709948816) 0x348-0x34f.7 (8)
|
||||
0x350|00 00 00 11 |.... | corr: 17 0x350-0x353.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x354-0x35f.7 (12)
|
||||
0x350| 00 00 00 00 2c 32 29 11 | ....,2). | occur: "1993-07-01T00:00:17Z" (741484817) 0x354-0x35b.7 (8)
|
||||
0x350| 00 00 00 12| ....| corr: 18 0x35c-0x35f.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x360-0x36b.7 (12)
|
||||
0x360|00 00 00 00 2e 13 5c 92 |......\. | occur: "1994-07-01T00:00:18Z" (773020818) 0x360-0x367.7 (8)
|
||||
0x360| 00 00 00 13 | .... | corr: 19 0x368-0x36b.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x36c-0x377.7 (12)
|
||||
0x360| 00 00 00 00| ....| occur: "1996-01-01T00:00:19Z" (820454419) 0x36c-0x373.7 (8)
|
||||
0x370|30 e7 24 13 |0.$. |
|
||||
0x370| 00 00 00 14 | .... | corr: 20 0x374-0x377.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x378-0x383.7 (12)
|
||||
0x370| 00 00 00 00 33 b8 48 94| ....3.H.| occur: "1997-07-01T00:00:20Z" (867715220) 0x378-0x37f.7 (8)
|
||||
0x380|00 00 00 15 |.... | corr: 21 0x380-0x383.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x384-0x38f.7 (12)
|
||||
0x380| 00 00 00 00 36 8c 10 15 | ....6... | occur: "1999-01-01T00:00:21Z" (915148821) 0x384-0x38b.7 (8)
|
||||
0x380| 00 00 00 16| ....| corr: 22 0x38c-0x38f.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x390-0x39b.7 (12)
|
||||
0x390|00 00 00 00 43 b7 1b 96 |....C... | occur: "2006-01-01T00:00:22Z" (1136073622) 0x390-0x397.7 (8)
|
||||
0x390| 00 00 00 17 | .... | corr: 23 0x398-0x39b.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x39c-0x3a7.7 (12)
|
||||
0x390| 00 00 00 00| ....| occur: "2009-01-01T00:00:23Z" (1230768023) 0x39c-0x3a3.7 (8)
|
||||
0x3a0|49 5c 07 97 |I\.. |
|
||||
0x3a0| 00 00 00 18 | .... | corr: 24 0x3a4-0x3a7.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x3a8-0x3b3.7 (12)
|
||||
0x3a0| 00 00 00 00 4f ef 93 18| ....O...| occur: "2012-07-01T00:00:24Z" (1341100824) 0x3a8-0x3af.7 (8)
|
||||
0x3b0|00 00 00 19 |.... | corr: 25 0x3b0-0x3b3.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x3b4-0x3bf.7 (12)
|
||||
0x3b0| 00 00 00 00 55 93 2d 99 | ....U.-. | occur: "2015-07-01T00:00:25Z" (1435708825) 0x3b4-0x3bb.7 (8)
|
||||
0x3b0| 00 00 00 1a| ....| corr: 26 0x3bc-0x3bf.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x3c0-0x3cb.7 (12)
|
||||
0x3c0|00 00 00 00 58 68 46 9a |....XhF. | occur: "2017-01-01T00:00:26Z" (1483228826) 0x3c0-0x3c7.7 (8)
|
||||
0x3c0| 00 00 00 1b | .... | corr: 27 0x3c8-0x3cb.7 (4)
|
||||
| | | standard_wall_indicators[0:6]: 0x3cc-0x3d1.7 (6)
|
||||
0x3c0| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x3cc-0x3cc.7 (1)
|
||||
0x3c0| 01 | . | [1]: 1 standard_wall_indicator (valid) 0x3cd-0x3cd.7 (1)
|
||||
0x3c0| 01 | . | [2]: 1 standard_wall_indicator (valid) 0x3ce-0x3ce.7 (1)
|
||||
0x3c0| 00| .| [3]: 0 standard_wall_indicator (valid) 0x3cf-0x3cf.7 (1)
|
||||
0x3d0|01 |. | [4]: 1 standard_wall_indicator (valid) 0x3d0-0x3d0.7 (1)
|
||||
0x3d0| 00 | . | [5]: 0 standard_wall_indicator (valid) 0x3d1-0x3d1.7 (1)
|
||||
| | | ut_local_indicators[0:6]: 0x3d2-0x3d7.7 (6)
|
||||
0x3d0| 00 | . | [0]: 0 ut_local_indicator (valid) 0x3d2-0x3d2.7 (1)
|
||||
0x3d0| 01 | . | [1]: 1 ut_local_indicator (valid) 0x3d3-0x3d3.7 (1)
|
||||
0x3d0| 01 | . | [2]: 1 ut_local_indicator (valid) 0x3d4-0x3d4.7 (1)
|
||||
0x3d0| 00 | . | [3]: 0 ut_local_indicator (valid) 0x3d5-0x3d5.7 (1)
|
||||
0x3d0| 01 | . | [4]: 1 ut_local_indicator (valid) 0x3d6-0x3d6.7 (1)
|
||||
0x3d0| 00 | . | [5]: 0 ut_local_indicator (valid) 0x3d7-0x3d7.7 (1)
|
||||
| | | footer{}: 0x3d8-0x3d9.7 (2)
|
||||
0x3d0| 0a | . | nl1: 10 (valid) 0x3d8-0x3d8.7 (1)
|
||||
| | | tz_string: "" 0x3d9-NA (0)
|
||||
0x3d0| 0a| | .| | nl2: 10 (valid) 0x3d9-0x3d9.7 (1)
|
BIN
format/tzif/testdata/Barnaul
vendored
Normal file
BIN
format/tzif/testdata/Barnaul
vendored
Normal file
Binary file not shown.
646
format/tzif/testdata/Barnaul.fqtest
vendored
Normal file
646
format/tzif/testdata/Barnaul.fqtest
vendored
Normal file
@ -0,0 +1,646 @@
|
||||
$ fq -d tzif dv Barnaul
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: Barnaul (tzif) 0x0-0x6d9.7 (1754)
|
||||
| | | v1header{}: 0x0-0x2b.7 (44)
|
||||
0x000|54 5a 69 66 |TZif | magic: 0x545a6966 (valid) 0x0-0x3.7 (4)
|
||||
0x000| 32 | 2 | ver: "2" (0x32) (valid) 0x4-0x4.7 (1)
|
||||
0x000| 00 00 00 00 00 00 00 00 00 00 00| ...........| reserved: raw bits 0x5-0x13.7 (15)
|
||||
0x010|00 00 00 00 |.... |
|
||||
0x010| 00 00 00 00 | .... | isutcnt: 0 0x14-0x17.7 (4)
|
||||
0x010| 00 00 00 0a | .... | isstdcnt: 10 0x18-0x1b.7 (4)
|
||||
0x010| 00 00 00 1b| ....| leapcnt: 27 0x1c-0x1f.7 (4)
|
||||
0x020|00 00 00 44 |...D | timecnt: 68 0x20-0x23.7 (4)
|
||||
0x020| 00 00 00 0a | .... | typecnt: 10 0x24-0x27.7 (4)
|
||||
0x020| 00 00 00 10 | .... | charcnt: 16 0x28-0x2b.7 (4)
|
||||
| | | v1datablock{}: 0x2c-0x2ad.7 (642)
|
||||
| | | transition_times[0:68]: 0x2c-0x13b.7 (272)
|
||||
0x020| a1 d5 7d fc| ..}.| [0]: "1919-12-09T18:25:00Z" (-1579844100) transition_time 0x2c-0x2f.7 (4)
|
||||
0x030|b5 a3 e1 20 |... | [1]: "1930-06-20T18:00:00Z" (-1247551200) transition_time 0x30-0x33.7 (4)
|
||||
0x030| 15 27 6f 99 | .'o. | [2]: "1981-03-31T17:00:09Z" (354906009) transition_time 0x34-0x37.7 (4)
|
||||
0x030| 16 18 a4 0a | .... | [3]: "1981-09-30T16:00:10Z" (370713610) transition_time 0x38-0x3b.7 (4)
|
||||
0x030| 17 08 a3 1a| ....| [4]: "1982-03-31T17:00:10Z" (386442010) transition_time 0x3c-0x3f.7 (4)
|
||||
0x040|17 f9 d7 8b |.... | [5]: "1982-09-30T16:00:11Z" (402249611) transition_time 0x40-0x43.7 (4)
|
||||
0x040| 18 e9 d6 9b | .... | [6]: "1983-03-31T17:00:11Z" (417978011) transition_time 0x44-0x47.7 (4)
|
||||
0x040| 19 db 0b 0c | .... | [7]: "1983-09-30T16:00:12Z" (433785612) transition_time 0x48-0x4b.7 (4)
|
||||
0x040| 1a cc 5b 9c| ..[.| [8]: "1984-03-31T17:00:12Z" (449600412) transition_time 0x4c-0x4f.7 (4)
|
||||
0x050|1b bc 68 bc |..h. | [9]: "1984-09-29T19:00:12Z" (465332412) transition_time 0x50-0x53.7 (4)
|
||||
0x050| 1c ac 59 bc | ..Y. | [10]: "1985-03-30T19:00:12Z" (481057212) transition_time 0x54-0x57.7 (4)
|
||||
0x050| 1d 9c 4a bd | ..J. | [11]: "1985-09-28T19:00:13Z" (496782013) transition_time 0x58-0x5b.7 (4)
|
||||
0x050| 1e 8c 3b bd| ..;.| [12]: "1986-03-29T19:00:13Z" (512506813) transition_time 0x5c-0x5f.7 (4)
|
||||
0x060|1f 7c 2c bd |.|,. | [13]: "1986-09-27T19:00:13Z" (528231613) transition_time 0x60-0x63.7 (4)
|
||||
0x060| 20 6c 1d bd | l.. | [14]: "1987-03-28T19:00:13Z" (543956413) transition_time 0x64-0x67.7 (4)
|
||||
0x060| 21 5c 0e bd | !\.. | [15]: "1987-09-26T19:00:13Z" (559681213) transition_time 0x68-0x6b.7 (4)
|
||||
0x060| 22 4b ff be| "K..| [16]: "1988-03-26T19:00:14Z" (575406014) transition_time 0x6c-0x6f.7 (4)
|
||||
0x070|23 3b f0 be |#;.. | [17]: "1988-09-24T19:00:14Z" (591130814) transition_time 0x70-0x73.7 (4)
|
||||
0x070| 24 2b e1 be | $+.. | [18]: "1989-03-25T19:00:14Z" (606855614) transition_time 0x74-0x77.7 (4)
|
||||
0x070| 25 1b d2 be | %... | [19]: "1989-09-23T19:00:14Z" (622580414) transition_time 0x78-0x7b.7 (4)
|
||||
0x070| 26 0b c3 bf| &...| [20]: "1990-03-24T19:00:15Z" (638305215) transition_time 0x7c-0x7f.7 (4)
|
||||
0x080|27 04 ef 3f |'..? | [21]: "1990-09-29T19:00:15Z" (654634815) transition_time 0x80-0x83.7 (4)
|
||||
0x080| 27 f4 e0 40 | '..@ | [22]: "1991-03-30T19:00:16Z" (670359616) transition_time 0x84-0x87.7 (4)
|
||||
0x080| 28 e4 df 50 | (..P | [23]: "1991-09-28T20:00:16Z" (686088016) transition_time 0x88-0x8b.7 (4)
|
||||
0x080| 29 78 87 50| )x.P| [24]: "1992-01-18T20:00:16Z" (695764816) transition_time 0x8c-0x8f.7 (4)
|
||||
0x090|29 d4 c2 40 |)..@ | [25]: "1992-03-28T19:00:16Z" (701809216) transition_time 0x90-0x93.7 (4)
|
||||
0x090| 2a c4 b3 41 | *..A | [26]: "1992-09-26T19:00:17Z" (717534017) transition_time 0x94-0x97.7 (4)
|
||||
0x090| 2b b4 a4 41 | +..A | [27]: "1993-03-27T19:00:17Z" (733258817) transition_time 0x98-0x9b.7 (4)
|
||||
0x090| 2c a4 95 42| ,..B| [28]: "1993-09-25T19:00:18Z" (748983618) transition_time 0x9c-0x9f.7 (4)
|
||||
0x0a0|2d 94 86 42 |-..B | [29]: "1994-03-26T19:00:18Z" (764708418) transition_time 0xa0-0xa3.7 (4)
|
||||
0x0a0| 2e 84 77 43 | ..wC | [30]: "1994-09-24T19:00:19Z" (780433219) transition_time 0xa4-0xa7.7 (4)
|
||||
0x0a0| 2f 74 68 43 | /thC | [31]: "1995-03-25T19:00:19Z" (796158019) transition_time 0xa8-0xab.7 (4)
|
||||
0x0a0| 2f c7 4c 93| /.L.| [32]: "1995-05-27T16:00:19Z" (801590419) transition_time 0xac-0xaf.7 (4)
|
||||
0x0b0|30 64 67 53 |0dgS | [33]: "1995-09-23T20:00:19Z" (811886419) transition_time 0xb0-0xb3.7 (4)
|
||||
0x0b0| 31 5d 92 d4 | 1].. | [34]: "1996-03-30T20:00:20Z" (828216020) transition_time 0xb4-0xb7.7 (4)
|
||||
0x0b0| 32 72 6d d4 | 2rm. | [35]: "1996-10-26T20:00:20Z" (846360020) transition_time 0xb8-0xbb.7 (4)
|
||||
0x0b0| 33 3d 74 d4| 3=t.| [36]: "1997-03-29T20:00:20Z" (859665620) transition_time 0xbc-0xbf.7 (4)
|
||||
0x0c0|34 52 4f d5 |4RO. | [37]: "1997-10-25T20:00:21Z" (877809621) transition_time 0xc0-0xc3.7 (4)
|
||||
0x0c0| 35 1d 56 d5 | 5.V. | [38]: "1998-03-28T20:00:21Z" (891115221) transition_time 0xc4-0xc7.7 (4)
|
||||
0x0c0| 36 32 31 d5 | 621. | [39]: "1998-10-24T20:00:21Z" (909259221) transition_time 0xc8-0xcb.7 (4)
|
||||
0x0c0| 36 fd 38 d6| 6.8.| [40]: "1999-03-27T20:00:22Z" (922564822) transition_time 0xcc-0xcf.7 (4)
|
||||
0x0d0|38 1b 4e 56 |8.NV | [41]: "1999-10-30T20:00:22Z" (941313622) transition_time 0xd0-0xd3.7 (4)
|
||||
0x0d0| 38 dd 1a d6 | 8... | [42]: "2000-03-25T20:00:22Z" (954014422) transition_time 0xd4-0xd7.7 (4)
|
||||
0x0d0| 39 fb 30 56 | 9.0V | [43]: "2000-10-28T20:00:22Z" (972763222) transition_time 0xd8-0xdb.7 (4)
|
||||
0x0d0| 3a bc fc d6| :...| [44]: "2001-03-24T20:00:22Z" (985464022) transition_time 0xdc-0xdf.7 (4)
|
||||
0x0e0|3b db 12 56 |;..V | [45]: "2001-10-27T20:00:22Z" (1004212822) transition_time 0xe0-0xe3.7 (4)
|
||||
0x0e0| 3c a6 19 56 | <..V | [46]: "2002-03-30T20:00:22Z" (1017518422) transition_time 0xe4-0xe7.7 (4)
|
||||
0x0e0| 3d ba f4 56 | =..V | [47]: "2002-10-26T20:00:22Z" (1035662422) transition_time 0xe8-0xeb.7 (4)
|
||||
0x0e0| 3e 85 fb 56| >..V| [48]: "2003-03-29T20:00:22Z" (1048968022) transition_time 0xec-0xef.7 (4)
|
||||
0x0f0|3f 9a d6 56 |?..V | [49]: "2003-10-25T20:00:22Z" (1067112022) transition_time 0xf0-0xf3.7 (4)
|
||||
0x0f0| 40 65 dd 56 | @e.V | [50]: "2004-03-27T20:00:22Z" (1080417622) transition_time 0xf4-0xf7.7 (4)
|
||||
0x0f0| 41 83 f2 d6 | A... | [51]: "2004-10-30T20:00:22Z" (1099166422) transition_time 0xf8-0xfb.7 (4)
|
||||
0x0f0| 42 45 bf 56| BE.V| [52]: "2005-03-26T20:00:22Z" (1111867222) transition_time 0xfc-0xff.7 (4)
|
||||
0x100|43 63 d4 d6 |Cc.. | [53]: "2005-10-29T20:00:22Z" (1130616022) transition_time 0x100-0x103.7 (4)
|
||||
0x100| 44 25 a1 57 | D%.W | [54]: "2006-03-25T20:00:23Z" (1143316823) transition_time 0x104-0x107.7 (4)
|
||||
0x100| 45 43 b6 d7 | EC.. | [55]: "2006-10-28T20:00:23Z" (1162065623) transition_time 0x108-0x10b.7 (4)
|
||||
0x100| 46 05 83 57| F..W| [56]: "2007-03-24T20:00:23Z" (1174766423) transition_time 0x10c-0x10f.7 (4)
|
||||
0x110|47 23 98 d7 |G#.. | [57]: "2007-10-27T20:00:23Z" (1193515223) transition_time 0x110-0x113.7 (4)
|
||||
0x110| 47 ee 9f d7 | G... | [58]: "2008-03-29T20:00:23Z" (1206820823) transition_time 0x114-0x117.7 (4)
|
||||
0x110| 49 03 7a d7 | I.z. | [59]: "2008-10-25T20:00:23Z" (1224964823) transition_time 0x118-0x11b.7 (4)
|
||||
0x110| 49 ce 81 d8| I...| [60]: "2009-03-28T20:00:24Z" (1238270424) transition_time 0x11c-0x11f.7 (4)
|
||||
0x120|4a e3 5c d8 |J.\. | [61]: "2009-10-24T20:00:24Z" (1256414424) transition_time 0x120-0x123.7 (4)
|
||||
0x120| 4b ae 63 d8 | K.c. | [62]: "2010-03-27T20:00:24Z" (1269720024) transition_time 0x124-0x127.7 (4)
|
||||
0x120| 4c cc 79 58 | L.yX | [63]: "2010-10-30T20:00:24Z" (1288468824) transition_time 0x128-0x12b.7 (4)
|
||||
0x120| 4d 8e 45 d8| M.E.| [64]: "2011-03-26T20:00:24Z" (1301169624) transition_time 0x12c-0x12f.7 (4)
|
||||
0x130|54 4b f3 49 |TK.I | [65]: "2014-10-25T19:00:25Z" (1414263625) transition_time 0x130-0x133.7 (4)
|
||||
0x130| 56 f6 ea 5a | V..Z | [66]: "2016-03-26T20:00:26Z" (1459022426) transition_time 0x134-0x137.7 (4)
|
||||
0x130| 64 9b 78 1b | d.x. | [67]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x138-0x13b.7 (4)
|
||||
| | | transition_types[0:68]: 0x13c-0x17f.7 (68)
|
||||
0x130| 01 | . | [0]: 1 transition_type 0x13c-0x13c.7 (1)
|
||||
0x130| 03 | . | [1]: 3 transition_type 0x13d-0x13d.7 (1)
|
||||
0x130| 02 | . | [2]: 2 transition_type 0x13e-0x13e.7 (1)
|
||||
0x130| 03| .| [3]: 3 transition_type 0x13f-0x13f.7 (1)
|
||||
0x140|02 |. | [4]: 2 transition_type 0x140-0x140.7 (1)
|
||||
0x140| 03 | . | [5]: 3 transition_type 0x141-0x141.7 (1)
|
||||
0x140| 02 | . | [6]: 2 transition_type 0x142-0x142.7 (1)
|
||||
0x140| 03 | . | [7]: 3 transition_type 0x143-0x143.7 (1)
|
||||
0x140| 02 | . | [8]: 2 transition_type 0x144-0x144.7 (1)
|
||||
0x140| 04 | . | [9]: 4 transition_type 0x145-0x145.7 (1)
|
||||
0x140| 05 | . | [10]: 5 transition_type 0x146-0x146.7 (1)
|
||||
0x140| 04 | . | [11]: 4 transition_type 0x147-0x147.7 (1)
|
||||
0x140| 05 | . | [12]: 5 transition_type 0x148-0x148.7 (1)
|
||||
0x140| 04 | . | [13]: 4 transition_type 0x149-0x149.7 (1)
|
||||
0x140| 05 | . | [14]: 5 transition_type 0x14a-0x14a.7 (1)
|
||||
0x140| 04 | . | [15]: 4 transition_type 0x14b-0x14b.7 (1)
|
||||
0x140| 05 | . | [16]: 5 transition_type 0x14c-0x14c.7 (1)
|
||||
0x140| 04 | . | [17]: 4 transition_type 0x14d-0x14d.7 (1)
|
||||
0x140| 05 | . | [18]: 5 transition_type 0x14e-0x14e.7 (1)
|
||||
0x140| 04| .| [19]: 4 transition_type 0x14f-0x14f.7 (1)
|
||||
0x150|05 |. | [20]: 5 transition_type 0x150-0x150.7 (1)
|
||||
0x150| 04 | . | [21]: 4 transition_type 0x151-0x151.7 (1)
|
||||
0x150| 06 | . | [22]: 6 transition_type 0x152-0x152.7 (1)
|
||||
0x150| 07 | . | [23]: 7 transition_type 0x153-0x153.7 (1)
|
||||
0x150| 04 | . | [24]: 4 transition_type 0x154-0x154.7 (1)
|
||||
0x150| 05 | . | [25]: 5 transition_type 0x155-0x155.7 (1)
|
||||
0x150| 04 | . | [26]: 4 transition_type 0x156-0x156.7 (1)
|
||||
0x150| 05 | . | [27]: 5 transition_type 0x157-0x157.7 (1)
|
||||
0x150| 04 | . | [28]: 4 transition_type 0x158-0x158.7 (1)
|
||||
0x150| 05 | . | [29]: 5 transition_type 0x159-0x159.7 (1)
|
||||
0x150| 04 | . | [30]: 4 transition_type 0x15a-0x15a.7 (1)
|
||||
0x150| 05 | . | [31]: 5 transition_type 0x15b-0x15b.7 (1)
|
||||
0x150| 08 | . | [32]: 8 transition_type 0x15c-0x15c.7 (1)
|
||||
0x150| 07 | . | [33]: 7 transition_type 0x15d-0x15d.7 (1)
|
||||
0x150| 06 | . | [34]: 6 transition_type 0x15e-0x15e.7 (1)
|
||||
0x150| 07| .| [35]: 7 transition_type 0x15f-0x15f.7 (1)
|
||||
0x160|06 |. | [36]: 6 transition_type 0x160-0x160.7 (1)
|
||||
0x160| 07 | . | [37]: 7 transition_type 0x161-0x161.7 (1)
|
||||
0x160| 06 | . | [38]: 6 transition_type 0x162-0x162.7 (1)
|
||||
0x160| 07 | . | [39]: 7 transition_type 0x163-0x163.7 (1)
|
||||
0x160| 06 | . | [40]: 6 transition_type 0x164-0x164.7 (1)
|
||||
0x160| 07 | . | [41]: 7 transition_type 0x165-0x165.7 (1)
|
||||
0x160| 06 | . | [42]: 6 transition_type 0x166-0x166.7 (1)
|
||||
0x160| 07 | . | [43]: 7 transition_type 0x167-0x167.7 (1)
|
||||
0x160| 06 | . | [44]: 6 transition_type 0x168-0x168.7 (1)
|
||||
0x160| 07 | . | [45]: 7 transition_type 0x169-0x169.7 (1)
|
||||
0x160| 06 | . | [46]: 6 transition_type 0x16a-0x16a.7 (1)
|
||||
0x160| 07 | . | [47]: 7 transition_type 0x16b-0x16b.7 (1)
|
||||
0x160| 06 | . | [48]: 6 transition_type 0x16c-0x16c.7 (1)
|
||||
0x160| 07 | . | [49]: 7 transition_type 0x16d-0x16d.7 (1)
|
||||
0x160| 06 | . | [50]: 6 transition_type 0x16e-0x16e.7 (1)
|
||||
0x160| 07| .| [51]: 7 transition_type 0x16f-0x16f.7 (1)
|
||||
0x170|06 |. | [52]: 6 transition_type 0x170-0x170.7 (1)
|
||||
0x170| 07 | . | [53]: 7 transition_type 0x171-0x171.7 (1)
|
||||
0x170| 06 | . | [54]: 6 transition_type 0x172-0x172.7 (1)
|
||||
0x170| 07 | . | [55]: 7 transition_type 0x173-0x173.7 (1)
|
||||
0x170| 06 | . | [56]: 6 transition_type 0x174-0x174.7 (1)
|
||||
0x170| 07 | . | [57]: 7 transition_type 0x175-0x175.7 (1)
|
||||
0x170| 06 | . | [58]: 6 transition_type 0x176-0x176.7 (1)
|
||||
0x170| 07 | . | [59]: 7 transition_type 0x177-0x177.7 (1)
|
||||
0x170| 06 | . | [60]: 6 transition_type 0x178-0x178.7 (1)
|
||||
0x170| 07 | . | [61]: 7 transition_type 0x179-0x179.7 (1)
|
||||
0x170| 06 | . | [62]: 6 transition_type 0x17a-0x17a.7 (1)
|
||||
0x170| 07 | . | [63]: 7 transition_type 0x17b-0x17b.7 (1)
|
||||
0x170| 04 | . | [64]: 4 transition_type 0x17c-0x17c.7 (1)
|
||||
0x170| 07 | . | [65]: 7 transition_type 0x17d-0x17d.7 (1)
|
||||
0x170| 04 | . | [66]: 4 transition_type 0x17e-0x17e.7 (1)
|
||||
0x170| 04| .| [67]: 4 transition_type 0x17f-0x17f.7 (1)
|
||||
| | | local_time_type_records[0:10]: 0x180-0x1bb.7 (60)
|
||||
| | | [0]{}: local_time_type 0x180-0x185.7 (6)
|
||||
0x180|00 00 4e 84 |..N. | utoff: 20100 (valid) 0x180-0x183.7 (4)
|
||||
0x180| 00 | . | dst: 0 (valid) 0x184-0x184.7 (1)
|
||||
0x180| 00 | . | idx: 0 (valid) 0x185-0x185.7 (1)
|
||||
| | | [1]{}: local_time_type 0x186-0x18b.7 (6)
|
||||
0x180| 00 00 54 60 | ..T` | utoff: 21600 (valid) 0x186-0x189.7 (4)
|
||||
0x180| 00 | . | dst: 0 (valid) 0x18a-0x18a.7 (1)
|
||||
0x180| 04 | . | idx: 4 (valid) 0x18b-0x18b.7 (1)
|
||||
| | | [2]{}: local_time_type 0x18c-0x191.7 (6)
|
||||
0x180| 00 00 70 80| ..p.| utoff: 28800 (valid) 0x18c-0x18f.7 (4)
|
||||
0x190|01 |. | dst: 1 (valid) 0x190-0x190.7 (1)
|
||||
0x190| 08 | . | idx: 8 (valid) 0x191-0x191.7 (1)
|
||||
| | | [3]{}: local_time_type 0x192-0x197.7 (6)
|
||||
0x190| 00 00 62 70 | ..bp | utoff: 25200 (valid) 0x192-0x195.7 (4)
|
||||
0x190| 00 | . | dst: 0 (valid) 0x196-0x196.7 (1)
|
||||
0x190| 0c | . | idx: 12 (valid) 0x197-0x197.7 (1)
|
||||
| | | [4]{}: local_time_type 0x198-0x19d.7 (6)
|
||||
0x190| 00 00 62 70 | ..bp | utoff: 25200 (valid) 0x198-0x19b.7 (4)
|
||||
0x190| 00 | . | dst: 0 (valid) 0x19c-0x19c.7 (1)
|
||||
0x190| 0c | . | idx: 12 (valid) 0x19d-0x19d.7 (1)
|
||||
| | | [5]{}: local_time_type 0x19e-0x1a3.7 (6)
|
||||
0x190| 00 00| ..| utoff: 28800 (valid) 0x19e-0x1a1.7 (4)
|
||||
0x1a0|70 80 |p. |
|
||||
0x1a0| 01 | . | dst: 1 (valid) 0x1a2-0x1a2.7 (1)
|
||||
0x1a0| 08 | . | idx: 8 (valid) 0x1a3-0x1a3.7 (1)
|
||||
| | | [6]{}: local_time_type 0x1a4-0x1a9.7 (6)
|
||||
0x1a0| 00 00 62 70 | ..bp | utoff: 25200 (valid) 0x1a4-0x1a7.7 (4)
|
||||
0x1a0| 01 | . | dst: 1 (valid) 0x1a8-0x1a8.7 (1)
|
||||
0x1a0| 0c | . | idx: 12 (valid) 0x1a9-0x1a9.7 (1)
|
||||
| | | [7]{}: local_time_type 0x1aa-0x1af.7 (6)
|
||||
0x1a0| 00 00 54 60 | ..T` | utoff: 21600 (valid) 0x1aa-0x1ad.7 (4)
|
||||
0x1a0| 00 | . | dst: 0 (valid) 0x1ae-0x1ae.7 (1)
|
||||
0x1a0| 04| .| idx: 4 (valid) 0x1af-0x1af.7 (1)
|
||||
| | | [8]{}: local_time_type 0x1b0-0x1b5.7 (6)
|
||||
0x1b0|00 00 62 70 |..bp | utoff: 25200 (valid) 0x1b0-0x1b3.7 (4)
|
||||
0x1b0| 01 | . | dst: 1 (valid) 0x1b4-0x1b4.7 (1)
|
||||
0x1b0| 0c | . | idx: 12 (valid) 0x1b5-0x1b5.7 (1)
|
||||
| | | [9]{}: local_time_type 0x1b6-0x1bb.7 (6)
|
||||
0x1b0| 00 00 62 70 | ..bp | utoff: 25200 (valid) 0x1b6-0x1b9.7 (4)
|
||||
0x1b0| 00 | . | dst: 0 (valid) 0x1ba-0x1ba.7 (1)
|
||||
0x1b0| 0c | . | idx: 12 (valid) 0x1bb-0x1bb.7 (1)
|
||||
| | | time_zone_designations[0:4]: 0x1bc-0x1cb.7 (16)
|
||||
0x1b0| 4c 4d 54 00| LMT.| [0]: "LMT" time_zone_designation 0x1bc-0x1bf.7 (4)
|
||||
0x1c0|2b 30 36 00 |+06. | [1]: "+06" time_zone_designation 0x1c0-0x1c3.7 (4)
|
||||
0x1c0| 2b 30 38 00 | +08. | [2]: "+08" time_zone_designation 0x1c4-0x1c7.7 (4)
|
||||
0x1c0| 2b 30 37 00 | +07. | [3]: "+07" time_zone_designation 0x1c8-0x1cb.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x1cc-0x2a3.7 (216)
|
||||
| | | [0]{}: leap_second_record 0x1cc-0x1d3.7 (8)
|
||||
0x1c0| 04 b2 58 00| ..X.| occur: "1972-07-01T00:00:00Z" (78796800) 0x1cc-0x1cf.7 (4)
|
||||
0x1d0|00 00 00 01 |.... | corr: 1 0x1d0-0x1d3.7 (4)
|
||||
| | | [1]{}: leap_second_record 0x1d4-0x1db.7 (8)
|
||||
0x1d0| 05 a4 ec 01 | .... | occur: "1973-01-01T00:00:01Z" (94694401) 0x1d4-0x1d7.7 (4)
|
||||
0x1d0| 00 00 00 02 | .... | corr: 2 0x1d8-0x1db.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x1dc-0x1e3.7 (8)
|
||||
0x1d0| 07 86 1f 82| ....| occur: "1974-01-01T00:00:02Z" (126230402) 0x1dc-0x1df.7 (4)
|
||||
0x1e0|00 00 00 03 |.... | corr: 3 0x1e0-0x1e3.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x1e4-0x1eb.7 (8)
|
||||
0x1e0| 09 67 53 03 | .gS. | occur: "1975-01-01T00:00:03Z" (157766403) 0x1e4-0x1e7.7 (4)
|
||||
0x1e0| 00 00 00 04 | .... | corr: 4 0x1e8-0x1eb.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x1ec-0x1f3.7 (8)
|
||||
0x1e0| 0b 48 86 84| .H..| occur: "1976-01-01T00:00:04Z" (189302404) 0x1ec-0x1ef.7 (4)
|
||||
0x1f0|00 00 00 05 |.... | corr: 5 0x1f0-0x1f3.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x1f4-0x1fb.7 (8)
|
||||
0x1f0| 0d 2b 0b 85 | .+.. | occur: "1977-01-01T00:00:05Z" (220924805) 0x1f4-0x1f7.7 (4)
|
||||
0x1f0| 00 00 00 06 | .... | corr: 6 0x1f8-0x1fb.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x1fc-0x203.7 (8)
|
||||
0x1f0| 0f 0c 3f 06| ..?.| occur: "1978-01-01T00:00:06Z" (252460806) 0x1fc-0x1ff.7 (4)
|
||||
0x200|00 00 00 07 |.... | corr: 7 0x200-0x203.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x204-0x20b.7 (8)
|
||||
0x200| 10 ed 72 87 | ..r. | occur: "1979-01-01T00:00:07Z" (283996807) 0x204-0x207.7 (4)
|
||||
0x200| 00 00 00 08 | .... | corr: 8 0x208-0x20b.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x20c-0x213.7 (8)
|
||||
0x200| 12 ce a6 08| ....| occur: "1980-01-01T00:00:08Z" (315532808) 0x20c-0x20f.7 (4)
|
||||
0x210|00 00 00 09 |.... | corr: 9 0x210-0x213.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x214-0x21b.7 (8)
|
||||
0x210| 15 9f ca 89 | .... | occur: "1981-07-01T00:00:09Z" (362793609) 0x214-0x217.7 (4)
|
||||
0x210| 00 00 00 0a | .... | corr: 10 0x218-0x21b.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x21c-0x223.7 (8)
|
||||
0x210| 17 80 fe 0a| ....| occur: "1982-07-01T00:00:10Z" (394329610) 0x21c-0x21f.7 (4)
|
||||
0x220|00 00 00 0b |.... | corr: 11 0x220-0x223.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x224-0x22b.7 (8)
|
||||
0x220| 19 62 31 8b | .b1. | occur: "1983-07-01T00:00:11Z" (425865611) 0x224-0x227.7 (4)
|
||||
0x220| 00 00 00 0c | .... | corr: 12 0x228-0x22b.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x22c-0x233.7 (8)
|
||||
0x220| 1d 25 ea 0c| .%..| occur: "1985-07-01T00:00:12Z" (489024012) 0x22c-0x22f.7 (4)
|
||||
0x230|00 00 00 0d |.... | corr: 13 0x230-0x233.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x234-0x23b.7 (8)
|
||||
0x230| 21 da e5 0d | !... | occur: "1988-01-01T00:00:13Z" (567993613) 0x234-0x237.7 (4)
|
||||
0x230| 00 00 00 0e | .... | corr: 14 0x238-0x23b.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x23c-0x243.7 (8)
|
||||
0x230| 25 9e 9d 8e| %...| occur: "1990-01-01T00:00:14Z" (631152014) 0x23c-0x23f.7 (4)
|
||||
0x240|00 00 00 0f |.... | corr: 15 0x240-0x243.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x244-0x24b.7 (8)
|
||||
0x240| 27 7f d1 0f | '... | occur: "1991-01-01T00:00:15Z" (662688015) 0x244-0x247.7 (4)
|
||||
0x240| 00 00 00 10 | .... | corr: 16 0x248-0x24b.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x24c-0x253.7 (8)
|
||||
0x240| 2a 50 f5 90| *P..| occur: "1992-07-01T00:00:16Z" (709948816) 0x24c-0x24f.7 (4)
|
||||
0x250|00 00 00 11 |.... | corr: 17 0x250-0x253.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x254-0x25b.7 (8)
|
||||
0x250| 2c 32 29 11 | ,2). | occur: "1993-07-01T00:00:17Z" (741484817) 0x254-0x257.7 (4)
|
||||
0x250| 00 00 00 12 | .... | corr: 18 0x258-0x25b.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x25c-0x263.7 (8)
|
||||
0x250| 2e 13 5c 92| ..\.| occur: "1994-07-01T00:00:18Z" (773020818) 0x25c-0x25f.7 (4)
|
||||
0x260|00 00 00 13 |.... | corr: 19 0x260-0x263.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x264-0x26b.7 (8)
|
||||
0x260| 30 e7 24 13 | 0.$. | occur: "1996-01-01T00:00:19Z" (820454419) 0x264-0x267.7 (4)
|
||||
0x260| 00 00 00 14 | .... | corr: 20 0x268-0x26b.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x26c-0x273.7 (8)
|
||||
0x260| 33 b8 48 94| 3.H.| occur: "1997-07-01T00:00:20Z" (867715220) 0x26c-0x26f.7 (4)
|
||||
0x270|00 00 00 15 |.... | corr: 21 0x270-0x273.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x274-0x27b.7 (8)
|
||||
0x270| 36 8c 10 15 | 6... | occur: "1999-01-01T00:00:21Z" (915148821) 0x274-0x277.7 (4)
|
||||
0x270| 00 00 00 16 | .... | corr: 22 0x278-0x27b.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x27c-0x283.7 (8)
|
||||
0x270| 43 b7 1b 96| C...| occur: "2006-01-01T00:00:22Z" (1136073622) 0x27c-0x27f.7 (4)
|
||||
0x280|00 00 00 17 |.... | corr: 23 0x280-0x283.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x284-0x28b.7 (8)
|
||||
0x280| 49 5c 07 97 | I\.. | occur: "2009-01-01T00:00:23Z" (1230768023) 0x284-0x287.7 (4)
|
||||
0x280| 00 00 00 18 | .... | corr: 24 0x288-0x28b.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x28c-0x293.7 (8)
|
||||
0x280| 4f ef 93 18| O...| occur: "2012-07-01T00:00:24Z" (1341100824) 0x28c-0x28f.7 (4)
|
||||
0x290|00 00 00 19 |.... | corr: 25 0x290-0x293.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x294-0x29b.7 (8)
|
||||
0x290| 55 93 2d 99 | U.-. | occur: "2015-07-01T00:00:25Z" (1435708825) 0x294-0x297.7 (4)
|
||||
0x290| 00 00 00 1a | .... | corr: 26 0x298-0x29b.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x29c-0x2a3.7 (8)
|
||||
0x290| 58 68 46 9a| XhF.| occur: "2017-01-01T00:00:26Z" (1483228826) 0x29c-0x29f.7 (4)
|
||||
0x2a0|00 00 00 1b |.... | corr: 27 0x2a0-0x2a3.7 (4)
|
||||
| | | standard_wall_indicators[0:10]: 0x2a4-0x2ad.7 (10)
|
||||
0x2a0| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x2a4-0x2a4.7 (1)
|
||||
0x2a0| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x2a5-0x2a5.7 (1)
|
||||
0x2a0| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x2a6-0x2a6.7 (1)
|
||||
0x2a0| 00 | . | [3]: 0 standard_wall_indicator (valid) 0x2a7-0x2a7.7 (1)
|
||||
0x2a0| 01 | . | [4]: 1 standard_wall_indicator (valid) 0x2a8-0x2a8.7 (1)
|
||||
0x2a0| 01 | . | [5]: 1 standard_wall_indicator (valid) 0x2a9-0x2a9.7 (1)
|
||||
0x2a0| 01 | . | [6]: 1 standard_wall_indicator (valid) 0x2aa-0x2aa.7 (1)
|
||||
0x2a0| 01 | . | [7]: 1 standard_wall_indicator (valid) 0x2ab-0x2ab.7 (1)
|
||||
0x2a0| 00 | . | [8]: 0 standard_wall_indicator (valid) 0x2ac-0x2ac.7 (1)
|
||||
0x2a0| 01 | . | [9]: 1 standard_wall_indicator (valid) 0x2ad-0x2ad.7 (1)
|
||||
| | | ut_local_indicators[0:0]: 0x2ae-NA (0)
|
||||
| | | v2plusheader{}: 0x2ae-0x2d9.7 (44)
|
||||
0x2a0| 54 5a| TZ| magic: 0x545a6966 (valid) 0x2ae-0x2b1.7 (4)
|
||||
0x2b0|69 66 |if |
|
||||
0x2b0| 32 | 2 | ver: "2" (0x32) (valid) 0x2b2-0x2b2.7 (1)
|
||||
0x2b0| 00 00 00 00 00 00 00 00 00 00 00 00 00| .............| reserved: raw bits 0x2b3-0x2c1.7 (15)
|
||||
0x2c0|00 00 |.. |
|
||||
0x2c0| 00 00 00 00 | .... | isutcnt: 0 0x2c2-0x2c5.7 (4)
|
||||
0x2c0| 00 00 00 0a | .... | isstdcnt: 10 0x2c6-0x2c9.7 (4)
|
||||
0x2c0| 00 00 00 1b | .... | leapcnt: 27 0x2ca-0x2cd.7 (4)
|
||||
0x2c0| 00 00| ..| timecnt: 68 0x2ce-0x2d1.7 (4)
|
||||
0x2d0|00 44 |.D |
|
||||
0x2d0| 00 00 00 0a | .... | typecnt: 10 0x2d2-0x2d5.7 (4)
|
||||
0x2d0| 00 00 00 10 | .... | charcnt: 16 0x2d6-0x2d9.7 (4)
|
||||
| | | v2plusdatablock{}: 0x2da-0x6d7.7 (1022)
|
||||
| | | transition_times[0:68]: 0x2da-0x4f9.7 (544)
|
||||
0x2d0| ff ff ff ff a1 d5| ......| [0]: "1919-12-09T18:25:00Z" (-1579844100) transition_time 0x2da-0x2e1.7 (8)
|
||||
0x2e0|7d fc |}. |
|
||||
0x2e0| ff ff ff ff b5 a3 e1 20 | ....... | [1]: "1930-06-20T18:00:00Z" (-1247551200) transition_time 0x2e2-0x2e9.7 (8)
|
||||
0x2e0| 00 00 00 00 15 27| .....'| [2]: "1981-03-31T17:00:09Z" (354906009) transition_time 0x2ea-0x2f1.7 (8)
|
||||
0x2f0|6f 99 |o. |
|
||||
0x2f0| 00 00 00 00 16 18 a4 0a | ........ | [3]: "1981-09-30T16:00:10Z" (370713610) transition_time 0x2f2-0x2f9.7 (8)
|
||||
0x2f0| 00 00 00 00 17 08| ......| [4]: "1982-03-31T17:00:10Z" (386442010) transition_time 0x2fa-0x301.7 (8)
|
||||
0x300|a3 1a |.. |
|
||||
0x300| 00 00 00 00 17 f9 d7 8b | ........ | [5]: "1982-09-30T16:00:11Z" (402249611) transition_time 0x302-0x309.7 (8)
|
||||
0x300| 00 00 00 00 18 e9| ......| [6]: "1983-03-31T17:00:11Z" (417978011) transition_time 0x30a-0x311.7 (8)
|
||||
0x310|d6 9b |.. |
|
||||
0x310| 00 00 00 00 19 db 0b 0c | ........ | [7]: "1983-09-30T16:00:12Z" (433785612) transition_time 0x312-0x319.7 (8)
|
||||
0x310| 00 00 00 00 1a cc| ......| [8]: "1984-03-31T17:00:12Z" (449600412) transition_time 0x31a-0x321.7 (8)
|
||||
0x320|5b 9c |[. |
|
||||
0x320| 00 00 00 00 1b bc 68 bc | ......h. | [9]: "1984-09-29T19:00:12Z" (465332412) transition_time 0x322-0x329.7 (8)
|
||||
0x320| 00 00 00 00 1c ac| ......| [10]: "1985-03-30T19:00:12Z" (481057212) transition_time 0x32a-0x331.7 (8)
|
||||
0x330|59 bc |Y. |
|
||||
0x330| 00 00 00 00 1d 9c 4a bd | ......J. | [11]: "1985-09-28T19:00:13Z" (496782013) transition_time 0x332-0x339.7 (8)
|
||||
0x330| 00 00 00 00 1e 8c| ......| [12]: "1986-03-29T19:00:13Z" (512506813) transition_time 0x33a-0x341.7 (8)
|
||||
0x340|3b bd |;. |
|
||||
0x340| 00 00 00 00 1f 7c 2c bd | .....|,. | [13]: "1986-09-27T19:00:13Z" (528231613) transition_time 0x342-0x349.7 (8)
|
||||
0x340| 00 00 00 00 20 6c| .... l| [14]: "1987-03-28T19:00:13Z" (543956413) transition_time 0x34a-0x351.7 (8)
|
||||
0x350|1d bd |.. |
|
||||
0x350| 00 00 00 00 21 5c 0e bd | ....!\.. | [15]: "1987-09-26T19:00:13Z" (559681213) transition_time 0x352-0x359.7 (8)
|
||||
0x350| 00 00 00 00 22 4b| ...."K| [16]: "1988-03-26T19:00:14Z" (575406014) transition_time 0x35a-0x361.7 (8)
|
||||
0x360|ff be |.. |
|
||||
0x360| 00 00 00 00 23 3b f0 be | ....#;.. | [17]: "1988-09-24T19:00:14Z" (591130814) transition_time 0x362-0x369.7 (8)
|
||||
0x360| 00 00 00 00 24 2b| ....$+| [18]: "1989-03-25T19:00:14Z" (606855614) transition_time 0x36a-0x371.7 (8)
|
||||
0x370|e1 be |.. |
|
||||
0x370| 00 00 00 00 25 1b d2 be | ....%... | [19]: "1989-09-23T19:00:14Z" (622580414) transition_time 0x372-0x379.7 (8)
|
||||
0x370| 00 00 00 00 26 0b| ....&.| [20]: "1990-03-24T19:00:15Z" (638305215) transition_time 0x37a-0x381.7 (8)
|
||||
0x380|c3 bf |.. |
|
||||
0x380| 00 00 00 00 27 04 ef 3f | ....'..? | [21]: "1990-09-29T19:00:15Z" (654634815) transition_time 0x382-0x389.7 (8)
|
||||
0x380| 00 00 00 00 27 f4| ....'.| [22]: "1991-03-30T19:00:16Z" (670359616) transition_time 0x38a-0x391.7 (8)
|
||||
0x390|e0 40 |.@ |
|
||||
0x390| 00 00 00 00 28 e4 df 50 | ....(..P | [23]: "1991-09-28T20:00:16Z" (686088016) transition_time 0x392-0x399.7 (8)
|
||||
0x390| 00 00 00 00 29 78| ....)x| [24]: "1992-01-18T20:00:16Z" (695764816) transition_time 0x39a-0x3a1.7 (8)
|
||||
0x3a0|87 50 |.P |
|
||||
0x3a0| 00 00 00 00 29 d4 c2 40 | ....)..@ | [25]: "1992-03-28T19:00:16Z" (701809216) transition_time 0x3a2-0x3a9.7 (8)
|
||||
0x3a0| 00 00 00 00 2a c4| ....*.| [26]: "1992-09-26T19:00:17Z" (717534017) transition_time 0x3aa-0x3b1.7 (8)
|
||||
0x3b0|b3 41 |.A |
|
||||
0x3b0| 00 00 00 00 2b b4 a4 41 | ....+..A | [27]: "1993-03-27T19:00:17Z" (733258817) transition_time 0x3b2-0x3b9.7 (8)
|
||||
0x3b0| 00 00 00 00 2c a4| ....,.| [28]: "1993-09-25T19:00:18Z" (748983618) transition_time 0x3ba-0x3c1.7 (8)
|
||||
0x3c0|95 42 |.B |
|
||||
0x3c0| 00 00 00 00 2d 94 86 42 | ....-..B | [29]: "1994-03-26T19:00:18Z" (764708418) transition_time 0x3c2-0x3c9.7 (8)
|
||||
0x3c0| 00 00 00 00 2e 84| ......| [30]: "1994-09-24T19:00:19Z" (780433219) transition_time 0x3ca-0x3d1.7 (8)
|
||||
0x3d0|77 43 |wC |
|
||||
0x3d0| 00 00 00 00 2f 74 68 43 | ..../thC | [31]: "1995-03-25T19:00:19Z" (796158019) transition_time 0x3d2-0x3d9.7 (8)
|
||||
0x3d0| 00 00 00 00 2f c7| ..../.| [32]: "1995-05-27T16:00:19Z" (801590419) transition_time 0x3da-0x3e1.7 (8)
|
||||
0x3e0|4c 93 |L. |
|
||||
0x3e0| 00 00 00 00 30 64 67 53 | ....0dgS | [33]: "1995-09-23T20:00:19Z" (811886419) transition_time 0x3e2-0x3e9.7 (8)
|
||||
0x3e0| 00 00 00 00 31 5d| ....1]| [34]: "1996-03-30T20:00:20Z" (828216020) transition_time 0x3ea-0x3f1.7 (8)
|
||||
0x3f0|92 d4 |.. |
|
||||
0x3f0| 00 00 00 00 32 72 6d d4 | ....2rm. | [35]: "1996-10-26T20:00:20Z" (846360020) transition_time 0x3f2-0x3f9.7 (8)
|
||||
0x3f0| 00 00 00 00 33 3d| ....3=| [36]: "1997-03-29T20:00:20Z" (859665620) transition_time 0x3fa-0x401.7 (8)
|
||||
0x400|74 d4 |t. |
|
||||
0x400| 00 00 00 00 34 52 4f d5 | ....4RO. | [37]: "1997-10-25T20:00:21Z" (877809621) transition_time 0x402-0x409.7 (8)
|
||||
0x400| 00 00 00 00 35 1d| ....5.| [38]: "1998-03-28T20:00:21Z" (891115221) transition_time 0x40a-0x411.7 (8)
|
||||
0x410|56 d5 |V. |
|
||||
0x410| 00 00 00 00 36 32 31 d5 | ....621. | [39]: "1998-10-24T20:00:21Z" (909259221) transition_time 0x412-0x419.7 (8)
|
||||
0x410| 00 00 00 00 36 fd| ....6.| [40]: "1999-03-27T20:00:22Z" (922564822) transition_time 0x41a-0x421.7 (8)
|
||||
0x420|38 d6 |8. |
|
||||
0x420| 00 00 00 00 38 1b 4e 56 | ....8.NV | [41]: "1999-10-30T20:00:22Z" (941313622) transition_time 0x422-0x429.7 (8)
|
||||
0x420| 00 00 00 00 38 dd| ....8.| [42]: "2000-03-25T20:00:22Z" (954014422) transition_time 0x42a-0x431.7 (8)
|
||||
0x430|1a d6 |.. |
|
||||
0x430| 00 00 00 00 39 fb 30 56 | ....9.0V | [43]: "2000-10-28T20:00:22Z" (972763222) transition_time 0x432-0x439.7 (8)
|
||||
0x430| 00 00 00 00 3a bc| ....:.| [44]: "2001-03-24T20:00:22Z" (985464022) transition_time 0x43a-0x441.7 (8)
|
||||
0x440|fc d6 |.. |
|
||||
0x440| 00 00 00 00 3b db 12 56 | ....;..V | [45]: "2001-10-27T20:00:22Z" (1004212822) transition_time 0x442-0x449.7 (8)
|
||||
0x440| 00 00 00 00 3c a6| ....<.| [46]: "2002-03-30T20:00:22Z" (1017518422) transition_time 0x44a-0x451.7 (8)
|
||||
0x450|19 56 |.V |
|
||||
0x450| 00 00 00 00 3d ba f4 56 | ....=..V | [47]: "2002-10-26T20:00:22Z" (1035662422) transition_time 0x452-0x459.7 (8)
|
||||
0x450| 00 00 00 00 3e 85| ....>.| [48]: "2003-03-29T20:00:22Z" (1048968022) transition_time 0x45a-0x461.7 (8)
|
||||
0x460|fb 56 |.V |
|
||||
0x460| 00 00 00 00 3f 9a d6 56 | ....?..V | [49]: "2003-10-25T20:00:22Z" (1067112022) transition_time 0x462-0x469.7 (8)
|
||||
0x460| 00 00 00 00 40 65| ....@e| [50]: "2004-03-27T20:00:22Z" (1080417622) transition_time 0x46a-0x471.7 (8)
|
||||
0x470|dd 56 |.V |
|
||||
0x470| 00 00 00 00 41 83 f2 d6 | ....A... | [51]: "2004-10-30T20:00:22Z" (1099166422) transition_time 0x472-0x479.7 (8)
|
||||
0x470| 00 00 00 00 42 45| ....BE| [52]: "2005-03-26T20:00:22Z" (1111867222) transition_time 0x47a-0x481.7 (8)
|
||||
0x480|bf 56 |.V |
|
||||
0x480| 00 00 00 00 43 63 d4 d6 | ....Cc.. | [53]: "2005-10-29T20:00:22Z" (1130616022) transition_time 0x482-0x489.7 (8)
|
||||
0x480| 00 00 00 00 44 25| ....D%| [54]: "2006-03-25T20:00:23Z" (1143316823) transition_time 0x48a-0x491.7 (8)
|
||||
0x490|a1 57 |.W |
|
||||
0x490| 00 00 00 00 45 43 b6 d7 | ....EC.. | [55]: "2006-10-28T20:00:23Z" (1162065623) transition_time 0x492-0x499.7 (8)
|
||||
0x490| 00 00 00 00 46 05| ....F.| [56]: "2007-03-24T20:00:23Z" (1174766423) transition_time 0x49a-0x4a1.7 (8)
|
||||
0x4a0|83 57 |.W |
|
||||
0x4a0| 00 00 00 00 47 23 98 d7 | ....G#.. | [57]: "2007-10-27T20:00:23Z" (1193515223) transition_time 0x4a2-0x4a9.7 (8)
|
||||
0x4a0| 00 00 00 00 47 ee| ....G.| [58]: "2008-03-29T20:00:23Z" (1206820823) transition_time 0x4aa-0x4b1.7 (8)
|
||||
0x4b0|9f d7 |.. |
|
||||
0x4b0| 00 00 00 00 49 03 7a d7 | ....I.z. | [59]: "2008-10-25T20:00:23Z" (1224964823) transition_time 0x4b2-0x4b9.7 (8)
|
||||
0x4b0| 00 00 00 00 49 ce| ....I.| [60]: "2009-03-28T20:00:24Z" (1238270424) transition_time 0x4ba-0x4c1.7 (8)
|
||||
0x4c0|81 d8 |.. |
|
||||
0x4c0| 00 00 00 00 4a e3 5c d8 | ....J.\. | [61]: "2009-10-24T20:00:24Z" (1256414424) transition_time 0x4c2-0x4c9.7 (8)
|
||||
0x4c0| 00 00 00 00 4b ae| ....K.| [62]: "2010-03-27T20:00:24Z" (1269720024) transition_time 0x4ca-0x4d1.7 (8)
|
||||
0x4d0|63 d8 |c. |
|
||||
0x4d0| 00 00 00 00 4c cc 79 58 | ....L.yX | [63]: "2010-10-30T20:00:24Z" (1288468824) transition_time 0x4d2-0x4d9.7 (8)
|
||||
0x4d0| 00 00 00 00 4d 8e| ....M.| [64]: "2011-03-26T20:00:24Z" (1301169624) transition_time 0x4da-0x4e1.7 (8)
|
||||
0x4e0|45 d8 |E. |
|
||||
0x4e0| 00 00 00 00 54 4b f3 49 | ....TK.I | [65]: "2014-10-25T19:00:25Z" (1414263625) transition_time 0x4e2-0x4e9.7 (8)
|
||||
0x4e0| 00 00 00 00 56 f6| ....V.| [66]: "2016-03-26T20:00:26Z" (1459022426) transition_time 0x4ea-0x4f1.7 (8)
|
||||
0x4f0|ea 5a |.Z |
|
||||
0x4f0| 00 00 00 00 64 9b 78 1b | ....d.x. | [67]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x4f2-0x4f9.7 (8)
|
||||
| | | transition_types[0:68]: 0x4fa-0x53d.7 (68)
|
||||
0x4f0| 01 | . | [0]: 1 transition_type 0x4fa-0x4fa.7 (1)
|
||||
0x4f0| 03 | . | [1]: 3 transition_type 0x4fb-0x4fb.7 (1)
|
||||
0x4f0| 02 | . | [2]: 2 transition_type 0x4fc-0x4fc.7 (1)
|
||||
0x4f0| 03 | . | [3]: 3 transition_type 0x4fd-0x4fd.7 (1)
|
||||
0x4f0| 02 | . | [4]: 2 transition_type 0x4fe-0x4fe.7 (1)
|
||||
0x4f0| 03| .| [5]: 3 transition_type 0x4ff-0x4ff.7 (1)
|
||||
0x500|02 |. | [6]: 2 transition_type 0x500-0x500.7 (1)
|
||||
0x500| 03 | . | [7]: 3 transition_type 0x501-0x501.7 (1)
|
||||
0x500| 02 | . | [8]: 2 transition_type 0x502-0x502.7 (1)
|
||||
0x500| 04 | . | [9]: 4 transition_type 0x503-0x503.7 (1)
|
||||
0x500| 05 | . | [10]: 5 transition_type 0x504-0x504.7 (1)
|
||||
0x500| 04 | . | [11]: 4 transition_type 0x505-0x505.7 (1)
|
||||
0x500| 05 | . | [12]: 5 transition_type 0x506-0x506.7 (1)
|
||||
0x500| 04 | . | [13]: 4 transition_type 0x507-0x507.7 (1)
|
||||
0x500| 05 | . | [14]: 5 transition_type 0x508-0x508.7 (1)
|
||||
0x500| 04 | . | [15]: 4 transition_type 0x509-0x509.7 (1)
|
||||
0x500| 05 | . | [16]: 5 transition_type 0x50a-0x50a.7 (1)
|
||||
0x500| 04 | . | [17]: 4 transition_type 0x50b-0x50b.7 (1)
|
||||
0x500| 05 | . | [18]: 5 transition_type 0x50c-0x50c.7 (1)
|
||||
0x500| 04 | . | [19]: 4 transition_type 0x50d-0x50d.7 (1)
|
||||
0x500| 05 | . | [20]: 5 transition_type 0x50e-0x50e.7 (1)
|
||||
0x500| 04| .| [21]: 4 transition_type 0x50f-0x50f.7 (1)
|
||||
0x510|06 |. | [22]: 6 transition_type 0x510-0x510.7 (1)
|
||||
0x510| 07 | . | [23]: 7 transition_type 0x511-0x511.7 (1)
|
||||
0x510| 04 | . | [24]: 4 transition_type 0x512-0x512.7 (1)
|
||||
0x510| 05 | . | [25]: 5 transition_type 0x513-0x513.7 (1)
|
||||
0x510| 04 | . | [26]: 4 transition_type 0x514-0x514.7 (1)
|
||||
0x510| 05 | . | [27]: 5 transition_type 0x515-0x515.7 (1)
|
||||
0x510| 04 | . | [28]: 4 transition_type 0x516-0x516.7 (1)
|
||||
0x510| 05 | . | [29]: 5 transition_type 0x517-0x517.7 (1)
|
||||
0x510| 04 | . | [30]: 4 transition_type 0x518-0x518.7 (1)
|
||||
0x510| 05 | . | [31]: 5 transition_type 0x519-0x519.7 (1)
|
||||
0x510| 08 | . | [32]: 8 transition_type 0x51a-0x51a.7 (1)
|
||||
0x510| 07 | . | [33]: 7 transition_type 0x51b-0x51b.7 (1)
|
||||
0x510| 06 | . | [34]: 6 transition_type 0x51c-0x51c.7 (1)
|
||||
0x510| 07 | . | [35]: 7 transition_type 0x51d-0x51d.7 (1)
|
||||
0x510| 06 | . | [36]: 6 transition_type 0x51e-0x51e.7 (1)
|
||||
0x510| 07| .| [37]: 7 transition_type 0x51f-0x51f.7 (1)
|
||||
0x520|06 |. | [38]: 6 transition_type 0x520-0x520.7 (1)
|
||||
0x520| 07 | . | [39]: 7 transition_type 0x521-0x521.7 (1)
|
||||
0x520| 06 | . | [40]: 6 transition_type 0x522-0x522.7 (1)
|
||||
0x520| 07 | . | [41]: 7 transition_type 0x523-0x523.7 (1)
|
||||
0x520| 06 | . | [42]: 6 transition_type 0x524-0x524.7 (1)
|
||||
0x520| 07 | . | [43]: 7 transition_type 0x525-0x525.7 (1)
|
||||
0x520| 06 | . | [44]: 6 transition_type 0x526-0x526.7 (1)
|
||||
0x520| 07 | . | [45]: 7 transition_type 0x527-0x527.7 (1)
|
||||
0x520| 06 | . | [46]: 6 transition_type 0x528-0x528.7 (1)
|
||||
0x520| 07 | . | [47]: 7 transition_type 0x529-0x529.7 (1)
|
||||
0x520| 06 | . | [48]: 6 transition_type 0x52a-0x52a.7 (1)
|
||||
0x520| 07 | . | [49]: 7 transition_type 0x52b-0x52b.7 (1)
|
||||
0x520| 06 | . | [50]: 6 transition_type 0x52c-0x52c.7 (1)
|
||||
0x520| 07 | . | [51]: 7 transition_type 0x52d-0x52d.7 (1)
|
||||
0x520| 06 | . | [52]: 6 transition_type 0x52e-0x52e.7 (1)
|
||||
0x520| 07| .| [53]: 7 transition_type 0x52f-0x52f.7 (1)
|
||||
0x530|06 |. | [54]: 6 transition_type 0x530-0x530.7 (1)
|
||||
0x530| 07 | . | [55]: 7 transition_type 0x531-0x531.7 (1)
|
||||
0x530| 06 | . | [56]: 6 transition_type 0x532-0x532.7 (1)
|
||||
0x530| 07 | . | [57]: 7 transition_type 0x533-0x533.7 (1)
|
||||
0x530| 06 | . | [58]: 6 transition_type 0x534-0x534.7 (1)
|
||||
0x530| 07 | . | [59]: 7 transition_type 0x535-0x535.7 (1)
|
||||
0x530| 06 | . | [60]: 6 transition_type 0x536-0x536.7 (1)
|
||||
0x530| 07 | . | [61]: 7 transition_type 0x537-0x537.7 (1)
|
||||
0x530| 06 | . | [62]: 6 transition_type 0x538-0x538.7 (1)
|
||||
0x530| 07 | . | [63]: 7 transition_type 0x539-0x539.7 (1)
|
||||
0x530| 04 | . | [64]: 4 transition_type 0x53a-0x53a.7 (1)
|
||||
0x530| 07 | . | [65]: 7 transition_type 0x53b-0x53b.7 (1)
|
||||
0x530| 04 | . | [66]: 4 transition_type 0x53c-0x53c.7 (1)
|
||||
0x530| 04 | . | [67]: 4 transition_type 0x53d-0x53d.7 (1)
|
||||
| | | local_time_type_records[0:10]: 0x53e-0x579.7 (60)
|
||||
| | | [0]{}: local_time_type 0x53e-0x543.7 (6)
|
||||
0x530| 00 00| ..| utoff: 20100 (valid) 0x53e-0x541.7 (4)
|
||||
0x540|4e 84 |N. |
|
||||
0x540| 00 | . | dst: 0 (valid) 0x542-0x542.7 (1)
|
||||
0x540| 00 | . | idx: 0 (valid) 0x543-0x543.7 (1)
|
||||
| | | [1]{}: local_time_type 0x544-0x549.7 (6)
|
||||
0x540| 00 00 54 60 | ..T` | utoff: 21600 (valid) 0x544-0x547.7 (4)
|
||||
0x540| 00 | . | dst: 0 (valid) 0x548-0x548.7 (1)
|
||||
0x540| 04 | . | idx: 4 (valid) 0x549-0x549.7 (1)
|
||||
| | | [2]{}: local_time_type 0x54a-0x54f.7 (6)
|
||||
0x540| 00 00 70 80 | ..p. | utoff: 28800 (valid) 0x54a-0x54d.7 (4)
|
||||
0x540| 01 | . | dst: 1 (valid) 0x54e-0x54e.7 (1)
|
||||
0x540| 08| .| idx: 8 (valid) 0x54f-0x54f.7 (1)
|
||||
| | | [3]{}: local_time_type 0x550-0x555.7 (6)
|
||||
0x550|00 00 62 70 |..bp | utoff: 25200 (valid) 0x550-0x553.7 (4)
|
||||
0x550| 00 | . | dst: 0 (valid) 0x554-0x554.7 (1)
|
||||
0x550| 0c | . | idx: 12 (valid) 0x555-0x555.7 (1)
|
||||
| | | [4]{}: local_time_type 0x556-0x55b.7 (6)
|
||||
0x550| 00 00 62 70 | ..bp | utoff: 25200 (valid) 0x556-0x559.7 (4)
|
||||
0x550| 00 | . | dst: 0 (valid) 0x55a-0x55a.7 (1)
|
||||
0x550| 0c | . | idx: 12 (valid) 0x55b-0x55b.7 (1)
|
||||
| | | [5]{}: local_time_type 0x55c-0x561.7 (6)
|
||||
0x550| 00 00 70 80| ..p.| utoff: 28800 (valid) 0x55c-0x55f.7 (4)
|
||||
0x560|01 |. | dst: 1 (valid) 0x560-0x560.7 (1)
|
||||
0x560| 08 | . | idx: 8 (valid) 0x561-0x561.7 (1)
|
||||
| | | [6]{}: local_time_type 0x562-0x567.7 (6)
|
||||
0x560| 00 00 62 70 | ..bp | utoff: 25200 (valid) 0x562-0x565.7 (4)
|
||||
0x560| 01 | . | dst: 1 (valid) 0x566-0x566.7 (1)
|
||||
0x560| 0c | . | idx: 12 (valid) 0x567-0x567.7 (1)
|
||||
| | | [7]{}: local_time_type 0x568-0x56d.7 (6)
|
||||
0x560| 00 00 54 60 | ..T` | utoff: 21600 (valid) 0x568-0x56b.7 (4)
|
||||
0x560| 00 | . | dst: 0 (valid) 0x56c-0x56c.7 (1)
|
||||
0x560| 04 | . | idx: 4 (valid) 0x56d-0x56d.7 (1)
|
||||
| | | [8]{}: local_time_type 0x56e-0x573.7 (6)
|
||||
0x560| 00 00| ..| utoff: 25200 (valid) 0x56e-0x571.7 (4)
|
||||
0x570|62 70 |bp |
|
||||
0x570| 01 | . | dst: 1 (valid) 0x572-0x572.7 (1)
|
||||
0x570| 0c | . | idx: 12 (valid) 0x573-0x573.7 (1)
|
||||
| | | [9]{}: local_time_type 0x574-0x579.7 (6)
|
||||
0x570| 00 00 62 70 | ..bp | utoff: 25200 (valid) 0x574-0x577.7 (4)
|
||||
0x570| 00 | . | dst: 0 (valid) 0x578-0x578.7 (1)
|
||||
0x570| 0c | . | idx: 12 (valid) 0x579-0x579.7 (1)
|
||||
| | | time_zone_designations[0:4]: 0x57a-0x589.7 (16)
|
||||
0x570| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x57a-0x57d.7 (4)
|
||||
0x570| 2b 30| +0| [1]: "+06" time_zone_designation 0x57e-0x581.7 (4)
|
||||
0x580|36 00 |6. |
|
||||
0x580| 2b 30 38 00 | +08. | [2]: "+08" time_zone_designation 0x582-0x585.7 (4)
|
||||
0x580| 2b 30 37 00 | +07. | [3]: "+07" time_zone_designation 0x586-0x589.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x58a-0x6cd.7 (324)
|
||||
| | | [0]{}: leap_second_record 0x58a-0x595.7 (12)
|
||||
0x580| 00 00 00 00 04 b2| ......| occur: "1972-07-01T00:00:00Z" (78796800) 0x58a-0x591.7 (8)
|
||||
0x590|58 00 |X. |
|
||||
0x590| 00 00 00 01 | .... | corr: 1 0x592-0x595.7 (4)
|
||||
| | | [1]{}: leap_second_record 0x596-0x5a1.7 (12)
|
||||
0x590| 00 00 00 00 05 a4 ec 01 | ........ | occur: "1973-01-01T00:00:01Z" (94694401) 0x596-0x59d.7 (8)
|
||||
0x590| 00 00| ..| corr: 2 0x59e-0x5a1.7 (4)
|
||||
0x5a0|00 02 |.. |
|
||||
| | | [2]{}: leap_second_record 0x5a2-0x5ad.7 (12)
|
||||
0x5a0| 00 00 00 00 07 86 1f 82 | ........ | occur: "1974-01-01T00:00:02Z" (126230402) 0x5a2-0x5a9.7 (8)
|
||||
0x5a0| 00 00 00 03 | .... | corr: 3 0x5aa-0x5ad.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x5ae-0x5b9.7 (12)
|
||||
0x5a0| 00 00| ..| occur: "1975-01-01T00:00:03Z" (157766403) 0x5ae-0x5b5.7 (8)
|
||||
0x5b0|00 00 09 67 53 03 |...gS. |
|
||||
0x5b0| 00 00 00 04 | .... | corr: 4 0x5b6-0x5b9.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x5ba-0x5c5.7 (12)
|
||||
0x5b0| 00 00 00 00 0b 48| .....H| occur: "1976-01-01T00:00:04Z" (189302404) 0x5ba-0x5c1.7 (8)
|
||||
0x5c0|86 84 |.. |
|
||||
0x5c0| 00 00 00 05 | .... | corr: 5 0x5c2-0x5c5.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x5c6-0x5d1.7 (12)
|
||||
0x5c0| 00 00 00 00 0d 2b 0b 85 | .....+.. | occur: "1977-01-01T00:00:05Z" (220924805) 0x5c6-0x5cd.7 (8)
|
||||
0x5c0| 00 00| ..| corr: 6 0x5ce-0x5d1.7 (4)
|
||||
0x5d0|00 06 |.. |
|
||||
| | | [6]{}: leap_second_record 0x5d2-0x5dd.7 (12)
|
||||
0x5d0| 00 00 00 00 0f 0c 3f 06 | ......?. | occur: "1978-01-01T00:00:06Z" (252460806) 0x5d2-0x5d9.7 (8)
|
||||
0x5d0| 00 00 00 07 | .... | corr: 7 0x5da-0x5dd.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x5de-0x5e9.7 (12)
|
||||
0x5d0| 00 00| ..| occur: "1979-01-01T00:00:07Z" (283996807) 0x5de-0x5e5.7 (8)
|
||||
0x5e0|00 00 10 ed 72 87 |....r. |
|
||||
0x5e0| 00 00 00 08 | .... | corr: 8 0x5e6-0x5e9.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x5ea-0x5f5.7 (12)
|
||||
0x5e0| 00 00 00 00 12 ce| ......| occur: "1980-01-01T00:00:08Z" (315532808) 0x5ea-0x5f1.7 (8)
|
||||
0x5f0|a6 08 |.. |
|
||||
0x5f0| 00 00 00 09 | .... | corr: 9 0x5f2-0x5f5.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x5f6-0x601.7 (12)
|
||||
0x5f0| 00 00 00 00 15 9f ca 89 | ........ | occur: "1981-07-01T00:00:09Z" (362793609) 0x5f6-0x5fd.7 (8)
|
||||
0x5f0| 00 00| ..| corr: 10 0x5fe-0x601.7 (4)
|
||||
0x600|00 0a |.. |
|
||||
| | | [10]{}: leap_second_record 0x602-0x60d.7 (12)
|
||||
0x600| 00 00 00 00 17 80 fe 0a | ........ | occur: "1982-07-01T00:00:10Z" (394329610) 0x602-0x609.7 (8)
|
||||
0x600| 00 00 00 0b | .... | corr: 11 0x60a-0x60d.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x60e-0x619.7 (12)
|
||||
0x600| 00 00| ..| occur: "1983-07-01T00:00:11Z" (425865611) 0x60e-0x615.7 (8)
|
||||
0x610|00 00 19 62 31 8b |...b1. |
|
||||
0x610| 00 00 00 0c | .... | corr: 12 0x616-0x619.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x61a-0x625.7 (12)
|
||||
0x610| 00 00 00 00 1d 25| .....%| occur: "1985-07-01T00:00:12Z" (489024012) 0x61a-0x621.7 (8)
|
||||
0x620|ea 0c |.. |
|
||||
0x620| 00 00 00 0d | .... | corr: 13 0x622-0x625.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x626-0x631.7 (12)
|
||||
0x620| 00 00 00 00 21 da e5 0d | ....!... | occur: "1988-01-01T00:00:13Z" (567993613) 0x626-0x62d.7 (8)
|
||||
0x620| 00 00| ..| corr: 14 0x62e-0x631.7 (4)
|
||||
0x630|00 0e |.. |
|
||||
| | | [14]{}: leap_second_record 0x632-0x63d.7 (12)
|
||||
0x630| 00 00 00 00 25 9e 9d 8e | ....%... | occur: "1990-01-01T00:00:14Z" (631152014) 0x632-0x639.7 (8)
|
||||
0x630| 00 00 00 0f | .... | corr: 15 0x63a-0x63d.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x63e-0x649.7 (12)
|
||||
0x630| 00 00| ..| occur: "1991-01-01T00:00:15Z" (662688015) 0x63e-0x645.7 (8)
|
||||
0x640|00 00 27 7f d1 0f |..'... |
|
||||
0x640| 00 00 00 10 | .... | corr: 16 0x646-0x649.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x64a-0x655.7 (12)
|
||||
0x640| 00 00 00 00 2a 50| ....*P| occur: "1992-07-01T00:00:16Z" (709948816) 0x64a-0x651.7 (8)
|
||||
0x650|f5 90 |.. |
|
||||
0x650| 00 00 00 11 | .... | corr: 17 0x652-0x655.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x656-0x661.7 (12)
|
||||
0x650| 00 00 00 00 2c 32 29 11 | ....,2). | occur: "1993-07-01T00:00:17Z" (741484817) 0x656-0x65d.7 (8)
|
||||
0x650| 00 00| ..| corr: 18 0x65e-0x661.7 (4)
|
||||
0x660|00 12 |.. |
|
||||
| | | [18]{}: leap_second_record 0x662-0x66d.7 (12)
|
||||
0x660| 00 00 00 00 2e 13 5c 92 | ......\. | occur: "1994-07-01T00:00:18Z" (773020818) 0x662-0x669.7 (8)
|
||||
0x660| 00 00 00 13 | .... | corr: 19 0x66a-0x66d.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x66e-0x679.7 (12)
|
||||
0x660| 00 00| ..| occur: "1996-01-01T00:00:19Z" (820454419) 0x66e-0x675.7 (8)
|
||||
0x670|00 00 30 e7 24 13 |..0.$. |
|
||||
0x670| 00 00 00 14 | .... | corr: 20 0x676-0x679.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x67a-0x685.7 (12)
|
||||
0x670| 00 00 00 00 33 b8| ....3.| occur: "1997-07-01T00:00:20Z" (867715220) 0x67a-0x681.7 (8)
|
||||
0x680|48 94 |H. |
|
||||
0x680| 00 00 00 15 | .... | corr: 21 0x682-0x685.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x686-0x691.7 (12)
|
||||
0x680| 00 00 00 00 36 8c 10 15 | ....6... | occur: "1999-01-01T00:00:21Z" (915148821) 0x686-0x68d.7 (8)
|
||||
0x680| 00 00| ..| corr: 22 0x68e-0x691.7 (4)
|
||||
0x690|00 16 |.. |
|
||||
| | | [22]{}: leap_second_record 0x692-0x69d.7 (12)
|
||||
0x690| 00 00 00 00 43 b7 1b 96 | ....C... | occur: "2006-01-01T00:00:22Z" (1136073622) 0x692-0x699.7 (8)
|
||||
0x690| 00 00 00 17 | .... | corr: 23 0x69a-0x69d.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x69e-0x6a9.7 (12)
|
||||
0x690| 00 00| ..| occur: "2009-01-01T00:00:23Z" (1230768023) 0x69e-0x6a5.7 (8)
|
||||
0x6a0|00 00 49 5c 07 97 |..I\.. |
|
||||
0x6a0| 00 00 00 18 | .... | corr: 24 0x6a6-0x6a9.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x6aa-0x6b5.7 (12)
|
||||
0x6a0| 00 00 00 00 4f ef| ....O.| occur: "2012-07-01T00:00:24Z" (1341100824) 0x6aa-0x6b1.7 (8)
|
||||
0x6b0|93 18 |.. |
|
||||
0x6b0| 00 00 00 19 | .... | corr: 25 0x6b2-0x6b5.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x6b6-0x6c1.7 (12)
|
||||
0x6b0| 00 00 00 00 55 93 2d 99 | ....U.-. | occur: "2015-07-01T00:00:25Z" (1435708825) 0x6b6-0x6bd.7 (8)
|
||||
0x6b0| 00 00| ..| corr: 26 0x6be-0x6c1.7 (4)
|
||||
0x6c0|00 1a |.. |
|
||||
| | | [26]{}: leap_second_record 0x6c2-0x6cd.7 (12)
|
||||
0x6c0| 00 00 00 00 58 68 46 9a | ....XhF. | occur: "2017-01-01T00:00:26Z" (1483228826) 0x6c2-0x6c9.7 (8)
|
||||
0x6c0| 00 00 00 1b | .... | corr: 27 0x6ca-0x6cd.7 (4)
|
||||
| | | standard_wall_indicators[0:10]: 0x6ce-0x6d7.7 (10)
|
||||
0x6c0| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x6ce-0x6ce.7 (1)
|
||||
0x6c0| 00| .| [1]: 0 standard_wall_indicator (valid) 0x6cf-0x6cf.7 (1)
|
||||
0x6d0|00 |. | [2]: 0 standard_wall_indicator (valid) 0x6d0-0x6d0.7 (1)
|
||||
0x6d0| 00 | . | [3]: 0 standard_wall_indicator (valid) 0x6d1-0x6d1.7 (1)
|
||||
0x6d0| 01 | . | [4]: 1 standard_wall_indicator (valid) 0x6d2-0x6d2.7 (1)
|
||||
0x6d0| 01 | . | [5]: 1 standard_wall_indicator (valid) 0x6d3-0x6d3.7 (1)
|
||||
0x6d0| 01 | . | [6]: 1 standard_wall_indicator (valid) 0x6d4-0x6d4.7 (1)
|
||||
0x6d0| 01 | . | [7]: 1 standard_wall_indicator (valid) 0x6d5-0x6d5.7 (1)
|
||||
0x6d0| 00 | . | [8]: 0 standard_wall_indicator (valid) 0x6d6-0x6d6.7 (1)
|
||||
0x6d0| 01 | . | [9]: 1 standard_wall_indicator (valid) 0x6d7-0x6d7.7 (1)
|
||||
| | | ut_local_indicators[0:0]: 0x6d8-NA (0)
|
||||
| | | footer{}: 0x6d8-0x6d9.7 (2)
|
||||
0x6d0| 0a | . | nl1: 10 (valid) 0x6d8-0x6d8.7 (1)
|
||||
| | | tz_string: "" 0x6d9-NA (0)
|
||||
0x6d0| 0a| | .| | nl2: 10 (valid) 0x6d9-0x6d9.7 (1)
|
BIN
format/tzif/testdata/Beirut
vendored
Normal file
BIN
format/tzif/testdata/Beirut
vendored
Normal file
Binary file not shown.
754
format/tzif/testdata/Beirut.fqtest
vendored
Normal file
754
format/tzif/testdata/Beirut.fqtest
vendored
Normal file
@ -0,0 +1,754 @@
|
||||
$ fq -d tzif dv Beirut
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: Beirut (tzif) 0x0-0x8e1.7 (2274)
|
||||
| | | v1header{}: 0x0-0x2b.7 (44)
|
||||
0x000|54 5a 69 66 |TZif | magic: 0x545a6966 (valid) 0x0-0x3.7 (4)
|
||||
0x000| 32 | 2 | ver: "2" (0x32) (valid) 0x4-0x4.7 (1)
|
||||
0x000| 00 00 00 00 00 00 00 00 00 00 00| ...........| reserved: raw bits 0x5-0x13.7 (15)
|
||||
0x010|00 00 00 00 |.... |
|
||||
0x010| 00 00 00 00 | .... | isutcnt: 0 0x14-0x17.7 (4)
|
||||
0x010| 00 00 00 00 | .... | isstdcnt: 0 0x18-0x1b.7 (4)
|
||||
0x010| 00 00 00 1b| ....| leapcnt: 27 0x1c-0x1f.7 (4)
|
||||
0x020|00 00 00 71 |...q | timecnt: 113 0x20-0x23.7 (4)
|
||||
0x020| 00 00 00 03 | .... | typecnt: 3 0x24-0x27.7 (4)
|
||||
0x020| 00 00 00 0d | .... | charcnt: 13 0x28-0x2b.7 (4)
|
||||
| | | v1datablock{}: 0x2c-0x357.7 (812)
|
||||
| | | transition_times[0:113]: 0x2c-0x1ef.7 (452)
|
||||
0x020| 80 00 00 00| ....| [0]: "1901-12-13T20:45:52Z" (-2147483648) transition_time 0x2c-0x2f.7 (4)
|
||||
0x030|a2 65 63 e0 |.ec. | [1]: "1920-03-27T22:00:00Z" (-1570413600) transition_time 0x30-0x33.7 (4)
|
||||
0x030| a3 7b 82 50 | .{.P | [2]: "1920-10-24T21:00:00Z" (-1552186800) transition_time 0x34-0x37.7 (4)
|
||||
0x030| a4 4e 80 60 | .N.` | [3]: "1921-04-02T22:00:00Z" (-1538359200) transition_time 0x38-0x3b.7 (4)
|
||||
0x030| a5 3f b4 d0| .?..| [4]: "1921-10-02T21:00:00Z" (-1522551600) transition_time 0x3c-0x3f.7 (4)
|
||||
0x040|a6 25 27 e0 |.%'. | [5]: "1922-03-25T22:00:00Z" (-1507514400) transition_time 0x40-0x43.7 (4)
|
||||
0x040| a7 27 7f d0 | .'.. | [6]: "1922-10-07T21:00:00Z" (-1490583600) transition_time 0x44-0x47.7 (4)
|
||||
0x040| a8 29 f3 e0 | .).. | [7]: "1923-04-21T22:00:00Z" (-1473645600) transition_time 0x48-0x4b.7 (4)
|
||||
0x040| a8 eb b2 50| ...P| [8]: "1923-09-15T21:00:00Z" (-1460948400) transition_time 0x4c-0x4f.7 (4)
|
||||
0x050|e8 2a 85 e0 |.*.. | [9]: "1957-04-30T22:00:00Z" (-399866400) transition_time 0x50-0x53.7 (4)
|
||||
0x050| e8 f4 2d 50 | ..-P | [10]: "1957-09-30T21:00:00Z" (-386650800) transition_time 0x54-0x57.7 (4)
|
||||
0x050| ea 0b b9 60 | ...` | [11]: "1958-04-30T22:00:00Z" (-368330400) transition_time 0x58-0x5b.7 (4)
|
||||
0x050| ea d5 60 d0| ..`.| [12]: "1958-09-30T21:00:00Z" (-355114800) transition_time 0x5c-0x5f.7 (4)
|
||||
0x060|eb ec ec e0 |.... | [13]: "1959-04-30T22:00:00Z" (-336794400) transition_time 0x60-0x63.7 (4)
|
||||
0x060| ec b6 94 50 | ...P | [14]: "1959-09-30T21:00:00Z" (-323578800) transition_time 0x64-0x67.7 (4)
|
||||
0x060| ed cf 71 e0 | ..q. | [15]: "1960-04-30T22:00:00Z" (-305172000) transition_time 0x68-0x6b.7 (4)
|
||||
0x060| ee 99 19 50| ...P| [16]: "1960-09-30T21:00:00Z" (-291956400) transition_time 0x6c-0x6f.7 (4)
|
||||
0x070|ef b0 a5 60 |...` | [17]: "1961-04-30T22:00:00Z" (-273636000) transition_time 0x70-0x73.7 (4)
|
||||
0x070| f0 7a 4c d0 | .zL. | [18]: "1961-09-30T21:00:00Z" (-260420400) transition_time 0x74-0x77.7 (4)
|
||||
0x070| 04 a6 5e 60 | ..^` | [19]: "1972-06-21T22:00:00Z" (78012000) transition_time 0x78-0x7b.7 (4)
|
||||
0x070| 05 2b 77 d1| .+w.| [20]: "1972-09-30T21:00:01Z" (86734801) transition_time 0x7c-0x7f.7 (4)
|
||||
0x080|06 43 03 e2 |.C.. | [21]: "1973-04-30T22:00:02Z" (105055202) transition_time 0x80-0x83.7 (4)
|
||||
0x080| 07 0c ab 52 | ...R | [22]: "1973-09-30T21:00:02Z" (118270802) transition_time 0x84-0x87.7 (4)
|
||||
0x080| 08 24 37 63 | .$7c | [23]: "1974-04-30T22:00:03Z" (136591203) transition_time 0x88-0x8b.7 (4)
|
||||
0x080| 08 ed de d3| ....| [24]: "1974-09-30T21:00:03Z" (149806803) transition_time 0x8c-0x8f.7 (4)
|
||||
0x090|0a 05 6a e4 |..j. | [25]: "1975-04-30T22:00:04Z" (168127204) transition_time 0x90-0x93.7 (4)
|
||||
0x090| 0a cf 12 54 | ...T | [26]: "1975-09-30T21:00:04Z" (181342804) transition_time 0x94-0x97.7 (4)
|
||||
0x090| 0b e7 ef e5 | .... | [27]: "1976-04-30T22:00:05Z" (199749605) transition_time 0x98-0x9b.7 (4)
|
||||
0x090| 0c b1 97 55| ...U| [28]: "1976-09-30T21:00:05Z" (212965205) transition_time 0x9c-0x9f.7 (4)
|
||||
0x0a0|0d c9 23 66 |..#f | [29]: "1977-04-30T22:00:06Z" (231285606) transition_time 0xa0-0xa3.7 (4)
|
||||
0x0a0| 0e 92 ca d6 | .... | [30]: "1977-09-30T21:00:06Z" (244501206) transition_time 0xa4-0xa7.7 (4)
|
||||
0x0a0| 0f a9 05 67 | ...g | [31]: "1978-04-29T22:00:07Z" (262735207) transition_time 0xa8-0xab.7 (4)
|
||||
0x0a0| 10 72 ac d7| .r..| [32]: "1978-09-29T21:00:07Z" (275950807) transition_time 0xac-0xaf.7 (4)
|
||||
0x0b0|1a f4 2e ec |.... | [33]: "1984-04-30T22:00:12Z" (452210412) transition_time 0xb0-0xb3.7 (4)
|
||||
0x0b0| 1b d1 9c dc | .... | [34]: "1984-10-15T21:00:12Z" (466722012) transition_time 0xb4-0xb7.7 (4)
|
||||
0x0b0| 1c d5 62 6c | ..bl | [35]: "1985-04-30T22:00:12Z" (483746412) transition_time 0xb8-0xbb.7 (4)
|
||||
0x0b0| 1d b2 d0 5d| ...]| [36]: "1985-10-15T21:00:13Z" (498258013) transition_time 0xbc-0xbf.7 (4)
|
||||
0x0c0|1e b6 95 ed |.... | [37]: "1986-04-30T22:00:13Z" (515282413) transition_time 0xc0-0xc3.7 (4)
|
||||
0x0c0| 1f 94 03 dd | .... | [38]: "1986-10-15T21:00:13Z" (529794013) transition_time 0xc4-0xc7.7 (4)
|
||||
0x0c0| 20 97 c9 6d | ..m | [39]: "1987-04-30T22:00:13Z" (546818413) transition_time 0xc8-0xcb.7 (4)
|
||||
0x0c0| 21 75 37 5d| !u7]| [40]: "1987-10-15T21:00:13Z" (561330013) transition_time 0xcc-0xcf.7 (4)
|
||||
0x0d0|22 a3 2c ee |".,. | [41]: "1988-05-31T22:00:14Z" (581119214) transition_time 0xd0-0xd3.7 (4)
|
||||
0x0d0| 23 57 bc 5e | #W.^ | [42]: "1988-10-15T21:00:14Z" (592952414) transition_time 0xd4-0xd7.7 (4)
|
||||
0x0d0| 24 67 5f 6e | $g_n | [43]: "1989-05-09T22:00:14Z" (610754414) transition_time 0xd8-0xdb.7 (4)
|
||||
0x0d0| 25 38 ef de| %8..| [44]: "1989-10-15T21:00:14Z" (624488414) transition_time 0xdc-0xdf.7 (4)
|
||||
0x0e0|26 3c b5 6f |&<.o | [45]: "1990-04-30T22:00:15Z" (641512815) transition_time 0xe0-0xe3.7 (4)
|
||||
0x0e0| 27 1a 23 5f | '.#_ | [46]: "1990-10-15T21:00:15Z" (656024415) transition_time 0xe4-0xe7.7 (4)
|
||||
0x0e0| 28 1d e8 f0 | (... | [47]: "1991-04-30T22:00:16Z" (673048816) transition_time 0xe8-0xeb.7 (4)
|
||||
0x0e0| 28 fb 56 e0| (.V.| [48]: "1991-10-15T21:00:16Z" (687560416) transition_time 0xec-0xef.7 (4)
|
||||
0x0f0|2a 00 6d f0 |*.m. | [49]: "1992-04-30T22:00:16Z" (704671216) transition_time 0xf0-0xf3.7 (4)
|
||||
0x0f0| 2a ce 09 e1 | *... | [50]: "1992-10-03T21:00:17Z" (718146017) transition_time 0xf4-0xf7.7 (4)
|
||||
0x0f0| 2b b4 ce 71 | +..q | [51]: "1993-03-27T22:00:17Z" (733269617) transition_time 0xf8-0xfb.7 (4)
|
||||
0x0f0| 2c a4 b1 62| ,..b| [52]: "1993-09-25T21:00:18Z" (748990818) transition_time 0xfc-0xff.7 (4)
|
||||
0x100|2d 94 b0 72 |-..r | [53]: "1994-03-26T22:00:18Z" (764719218) transition_time 0x100-0x103.7 (4)
|
||||
0x100| 2e 84 93 63 | ...c | [54]: "1994-09-24T21:00:19Z" (780440419) transition_time 0x104-0x107.7 (4)
|
||||
0x100| 2f 74 92 73 | /t.s | [55]: "1995-03-25T22:00:19Z" (796168819) transition_time 0x108-0x10b.7 (4)
|
||||
0x100| 30 64 75 63| 0duc| [56]: "1995-09-23T21:00:19Z" (811890019) transition_time 0x10c-0x10f.7 (4)
|
||||
0x110|31 5d ae f4 |1].. | [57]: "1996-03-30T22:00:20Z" (828223220) transition_time 0x110-0x113.7 (4)
|
||||
0x110| 32 4d 91 e4 | 2M.. | [58]: "1996-09-28T21:00:20Z" (843944420) transition_time 0x114-0x117.7 (4)
|
||||
0x110| 33 3d 90 f4 | 3=.. | [59]: "1997-03-29T22:00:20Z" (859672820) transition_time 0x118-0x11b.7 (4)
|
||||
0x110| 34 2d 73 e5| 4-s.| [60]: "1997-09-27T21:00:21Z" (875394021) transition_time 0x11c-0x11f.7 (4)
|
||||
0x120|35 1d 72 f5 |5.r. | [61]: "1998-03-28T22:00:21Z" (891122421) transition_time 0x120-0x123.7 (4)
|
||||
0x120| 36 0d 55 e5 | 6.U. | [62]: "1998-09-26T21:00:21Z" (906843621) transition_time 0x124-0x127.7 (4)
|
||||
0x120| 36 fd 54 f6 | 6.T. | [63]: "1999-03-27T22:00:22Z" (922572022) transition_time 0x128-0x12b.7 (4)
|
||||
0x120| 38 1b 5c 66| 8.\f| [64]: "1999-10-30T21:00:22Z" (941317222) transition_time 0x12c-0x12f.7 (4)
|
||||
0x130|38 dd 36 f6 |8.6. | [65]: "2000-03-25T22:00:22Z" (954021622) transition_time 0x130-0x133.7 (4)
|
||||
0x130| 39 fb 3e 66 | 9.>f | [66]: "2000-10-28T21:00:22Z" (972766822) transition_time 0x134-0x137.7 (4)
|
||||
0x130| 3a bd 18 f6 | :... | [67]: "2001-03-24T22:00:22Z" (985471222) transition_time 0x138-0x13b.7 (4)
|
||||
0x130| 3b db 20 66| ;. f| [68]: "2001-10-27T21:00:22Z" (1004216422) transition_time 0x13c-0x13f.7 (4)
|
||||
0x140|3c a6 35 76 |<.5v | [69]: "2002-03-30T22:00:22Z" (1017525622) transition_time 0x140-0x143.7 (4)
|
||||
0x140| 3d bb 02 66 | =..f | [70]: "2002-10-26T21:00:22Z" (1035666022) transition_time 0x144-0x147.7 (4)
|
||||
0x140| 3e 86 17 76 | >..v | [71]: "2003-03-29T22:00:22Z" (1048975222) transition_time 0x148-0x14b.7 (4)
|
||||
0x140| 3f 9a e4 66| ?..f| [72]: "2003-10-25T21:00:22Z" (1067115622) transition_time 0x14c-0x14f.7 (4)
|
||||
0x150|40 65 f9 76 |@e.v | [73]: "2004-03-27T22:00:22Z" (1080424822) transition_time 0x150-0x153.7 (4)
|
||||
0x150| 41 84 00 e6 | A... | [74]: "2004-10-30T21:00:22Z" (1099170022) transition_time 0x154-0x157.7 (4)
|
||||
0x150| 42 45 db 76 | BE.v | [75]: "2005-03-26T22:00:22Z" (1111874422) transition_time 0x158-0x15b.7 (4)
|
||||
0x150| 43 63 e2 e6| Cc..| [76]: "2005-10-29T21:00:22Z" (1130619622) transition_time 0x15c-0x15f.7 (4)
|
||||
0x160|44 25 bd 77 |D%.w | [77]: "2006-03-25T22:00:23Z" (1143324023) transition_time 0x160-0x163.7 (4)
|
||||
0x160| 45 43 c4 e7 | EC.. | [78]: "2006-10-28T21:00:23Z" (1162069223) transition_time 0x164-0x167.7 (4)
|
||||
0x160| 46 05 9f 77 | F..w | [79]: "2007-03-24T22:00:23Z" (1174773623) transition_time 0x168-0x16b.7 (4)
|
||||
0x160| 47 23 a6 e7| G#..| [80]: "2007-10-27T21:00:23Z" (1193518823) transition_time 0x16c-0x16f.7 (4)
|
||||
0x170|47 ee bb f7 |G... | [81]: "2008-03-29T22:00:23Z" (1206828023) transition_time 0x170-0x173.7 (4)
|
||||
0x170| 49 03 88 e7 | I... | [82]: "2008-10-25T21:00:23Z" (1224968423) transition_time 0x174-0x177.7 (4)
|
||||
0x170| 49 ce 9d f8 | I... | [83]: "2009-03-28T22:00:24Z" (1238277624) transition_time 0x178-0x17b.7 (4)
|
||||
0x170| 4a e3 6a e8| J.j.| [84]: "2009-10-24T21:00:24Z" (1256418024) transition_time 0x17c-0x17f.7 (4)
|
||||
0x180|4b ae 7f f8 |K... | [85]: "2010-03-27T22:00:24Z" (1269727224) transition_time 0x180-0x183.7 (4)
|
||||
0x180| 4c cc 87 68 | L..h | [86]: "2010-10-30T21:00:24Z" (1288472424) transition_time 0x184-0x187.7 (4)
|
||||
0x180| 4d 8e 61 f8 | M.a. | [87]: "2011-03-26T22:00:24Z" (1301176824) transition_time 0x188-0x18b.7 (4)
|
||||
0x180| 4e ac 69 68| N.ih| [88]: "2011-10-29T21:00:24Z" (1319922024) transition_time 0x18c-0x18f.7 (4)
|
||||
0x190|4f 6e 43 f8 |OnC. | [89]: "2012-03-24T22:00:24Z" (1332626424) transition_time 0x190-0x193.7 (4)
|
||||
0x190| 50 8c 4b 69 | P.Ki | [90]: "2012-10-27T21:00:25Z" (1351371625) transition_time 0x194-0x197.7 (4)
|
||||
0x190| 51 57 60 79 | QW`y | [91]: "2013-03-30T22:00:25Z" (1364680825) transition_time 0x198-0x19b.7 (4)
|
||||
0x190| 52 6c 2d 69| Rl-i| [92]: "2013-10-26T21:00:25Z" (1382821225) transition_time 0x19c-0x19f.7 (4)
|
||||
0x1a0|53 37 42 79 |S7By | [93]: "2014-03-29T22:00:25Z" (1396130425) transition_time 0x1a0-0x1a3.7 (4)
|
||||
0x1a0| 54 4c 0f 69 | TL.i | [94]: "2014-10-25T21:00:25Z" (1414270825) transition_time 0x1a4-0x1a7.7 (4)
|
||||
0x1a0| 55 17 24 79 | U.$y | [95]: "2015-03-28T22:00:25Z" (1427580025) transition_time 0x1a8-0x1ab.7 (4)
|
||||
0x1a0| 56 2b f1 6a| V+.j| [96]: "2015-10-24T21:00:26Z" (1445720426) transition_time 0x1ac-0x1af.7 (4)
|
||||
0x1b0|56 f7 06 7a |V..z | [97]: "2016-03-26T22:00:26Z" (1459029626) transition_time 0x1b0-0x1b3.7 (4)
|
||||
0x1b0| 58 15 0d ea | X... | [98]: "2016-10-29T21:00:26Z" (1477774826) transition_time 0x1b4-0x1b7.7 (4)
|
||||
0x1b0| 58 d6 e8 7b | X..{ | [99]: "2017-03-25T22:00:27Z" (1490479227) transition_time 0x1b8-0x1bb.7 (4)
|
||||
0x1b0| 59 f4 ef eb| Y...| [100]: "2017-10-28T21:00:27Z" (1509224427) transition_time 0x1bc-0x1bf.7 (4)
|
||||
0x1c0|5a b6 ca 7b |Z..{ | [101]: "2018-03-24T22:00:27Z" (1521928827) transition_time 0x1c0-0x1c3.7 (4)
|
||||
0x1c0| 5b d4 d1 eb | [... | [102]: "2018-10-27T21:00:27Z" (1540674027) transition_time 0x1c4-0x1c7.7 (4)
|
||||
0x1c0| 5c 9f e6 fb | \... | [103]: "2019-03-30T22:00:27Z" (1553983227) transition_time 0x1c8-0x1cb.7 (4)
|
||||
0x1c0| 5d b4 b3 eb| ]...| [104]: "2019-10-26T21:00:27Z" (1572123627) transition_time 0x1cc-0x1cf.7 (4)
|
||||
0x1d0|5e 7f c8 fb |^... | [105]: "2020-03-28T22:00:27Z" (1585432827) transition_time 0x1d0-0x1d3.7 (4)
|
||||
0x1d0| 5f 94 95 eb | _... | [106]: "2020-10-24T21:00:27Z" (1603573227) transition_time 0x1d4-0x1d7.7 (4)
|
||||
0x1d0| 60 5f aa fb | `_.. | [107]: "2021-03-27T22:00:27Z" (1616882427) transition_time 0x1d8-0x1db.7 (4)
|
||||
0x1d0| 61 7d b2 6b| a}.k| [108]: "2021-10-30T21:00:27Z" (1635627627) transition_time 0x1dc-0x1df.7 (4)
|
||||
0x1e0|62 3f 8c fb |b?.. | [109]: "2022-03-26T22:00:27Z" (1648332027) transition_time 0x1e0-0x1e3.7 (4)
|
||||
0x1e0| 63 5d 94 6b | c].k | [110]: "2022-10-29T21:00:27Z" (1667077227) transition_time 0x1e4-0x1e7.7 (4)
|
||||
0x1e0| 64 1f 6e fb | d.n. | [111]: "2023-03-25T22:00:27Z" (1679781627) transition_time 0x1e8-0x1eb.7 (4)
|
||||
0x1e0| 64 9b 78 1b| d.x.| [112]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x1ec-0x1ef.7 (4)
|
||||
| | | transition_types[0:113]: 0x1f0-0x260.7 (113)
|
||||
0x1f0|02 |. | [0]: 2 transition_type 0x1f0-0x1f0.7 (1)
|
||||
0x1f0| 01 | . | [1]: 1 transition_type 0x1f1-0x1f1.7 (1)
|
||||
0x1f0| 02 | . | [2]: 2 transition_type 0x1f2-0x1f2.7 (1)
|
||||
0x1f0| 01 | . | [3]: 1 transition_type 0x1f3-0x1f3.7 (1)
|
||||
0x1f0| 02 | . | [4]: 2 transition_type 0x1f4-0x1f4.7 (1)
|
||||
0x1f0| 01 | . | [5]: 1 transition_type 0x1f5-0x1f5.7 (1)
|
||||
0x1f0| 02 | . | [6]: 2 transition_type 0x1f6-0x1f6.7 (1)
|
||||
0x1f0| 01 | . | [7]: 1 transition_type 0x1f7-0x1f7.7 (1)
|
||||
0x1f0| 02 | . | [8]: 2 transition_type 0x1f8-0x1f8.7 (1)
|
||||
0x1f0| 01 | . | [9]: 1 transition_type 0x1f9-0x1f9.7 (1)
|
||||
0x1f0| 02 | . | [10]: 2 transition_type 0x1fa-0x1fa.7 (1)
|
||||
0x1f0| 01 | . | [11]: 1 transition_type 0x1fb-0x1fb.7 (1)
|
||||
0x1f0| 02 | . | [12]: 2 transition_type 0x1fc-0x1fc.7 (1)
|
||||
0x1f0| 01 | . | [13]: 1 transition_type 0x1fd-0x1fd.7 (1)
|
||||
0x1f0| 02 | . | [14]: 2 transition_type 0x1fe-0x1fe.7 (1)
|
||||
0x1f0| 01| .| [15]: 1 transition_type 0x1ff-0x1ff.7 (1)
|
||||
0x200|02 |. | [16]: 2 transition_type 0x200-0x200.7 (1)
|
||||
0x200| 01 | . | [17]: 1 transition_type 0x201-0x201.7 (1)
|
||||
0x200| 02 | . | [18]: 2 transition_type 0x202-0x202.7 (1)
|
||||
0x200| 01 | . | [19]: 1 transition_type 0x203-0x203.7 (1)
|
||||
0x200| 02 | . | [20]: 2 transition_type 0x204-0x204.7 (1)
|
||||
0x200| 01 | . | [21]: 1 transition_type 0x205-0x205.7 (1)
|
||||
0x200| 02 | . | [22]: 2 transition_type 0x206-0x206.7 (1)
|
||||
0x200| 01 | . | [23]: 1 transition_type 0x207-0x207.7 (1)
|
||||
0x200| 02 | . | [24]: 2 transition_type 0x208-0x208.7 (1)
|
||||
0x200| 01 | . | [25]: 1 transition_type 0x209-0x209.7 (1)
|
||||
0x200| 02 | . | [26]: 2 transition_type 0x20a-0x20a.7 (1)
|
||||
0x200| 01 | . | [27]: 1 transition_type 0x20b-0x20b.7 (1)
|
||||
0x200| 02 | . | [28]: 2 transition_type 0x20c-0x20c.7 (1)
|
||||
0x200| 01 | . | [29]: 1 transition_type 0x20d-0x20d.7 (1)
|
||||
0x200| 02 | . | [30]: 2 transition_type 0x20e-0x20e.7 (1)
|
||||
0x200| 01| .| [31]: 1 transition_type 0x20f-0x20f.7 (1)
|
||||
0x210|02 |. | [32]: 2 transition_type 0x210-0x210.7 (1)
|
||||
0x210| 01 | . | [33]: 1 transition_type 0x211-0x211.7 (1)
|
||||
0x210| 02 | . | [34]: 2 transition_type 0x212-0x212.7 (1)
|
||||
0x210| 01 | . | [35]: 1 transition_type 0x213-0x213.7 (1)
|
||||
0x210| 02 | . | [36]: 2 transition_type 0x214-0x214.7 (1)
|
||||
0x210| 01 | . | [37]: 1 transition_type 0x215-0x215.7 (1)
|
||||
0x210| 02 | . | [38]: 2 transition_type 0x216-0x216.7 (1)
|
||||
0x210| 01 | . | [39]: 1 transition_type 0x217-0x217.7 (1)
|
||||
0x210| 02 | . | [40]: 2 transition_type 0x218-0x218.7 (1)
|
||||
0x210| 01 | . | [41]: 1 transition_type 0x219-0x219.7 (1)
|
||||
0x210| 02 | . | [42]: 2 transition_type 0x21a-0x21a.7 (1)
|
||||
0x210| 01 | . | [43]: 1 transition_type 0x21b-0x21b.7 (1)
|
||||
0x210| 02 | . | [44]: 2 transition_type 0x21c-0x21c.7 (1)
|
||||
0x210| 01 | . | [45]: 1 transition_type 0x21d-0x21d.7 (1)
|
||||
0x210| 02 | . | [46]: 2 transition_type 0x21e-0x21e.7 (1)
|
||||
0x210| 01| .| [47]: 1 transition_type 0x21f-0x21f.7 (1)
|
||||
0x220|02 |. | [48]: 2 transition_type 0x220-0x220.7 (1)
|
||||
0x220| 01 | . | [49]: 1 transition_type 0x221-0x221.7 (1)
|
||||
0x220| 02 | . | [50]: 2 transition_type 0x222-0x222.7 (1)
|
||||
0x220| 01 | . | [51]: 1 transition_type 0x223-0x223.7 (1)
|
||||
0x220| 02 | . | [52]: 2 transition_type 0x224-0x224.7 (1)
|
||||
0x220| 01 | . | [53]: 1 transition_type 0x225-0x225.7 (1)
|
||||
0x220| 02 | . | [54]: 2 transition_type 0x226-0x226.7 (1)
|
||||
0x220| 01 | . | [55]: 1 transition_type 0x227-0x227.7 (1)
|
||||
0x220| 02 | . | [56]: 2 transition_type 0x228-0x228.7 (1)
|
||||
0x220| 01 | . | [57]: 1 transition_type 0x229-0x229.7 (1)
|
||||
0x220| 02 | . | [58]: 2 transition_type 0x22a-0x22a.7 (1)
|
||||
0x220| 01 | . | [59]: 1 transition_type 0x22b-0x22b.7 (1)
|
||||
0x220| 02 | . | [60]: 2 transition_type 0x22c-0x22c.7 (1)
|
||||
0x220| 01 | . | [61]: 1 transition_type 0x22d-0x22d.7 (1)
|
||||
0x220| 02 | . | [62]: 2 transition_type 0x22e-0x22e.7 (1)
|
||||
0x220| 01| .| [63]: 1 transition_type 0x22f-0x22f.7 (1)
|
||||
0x230|02 |. | [64]: 2 transition_type 0x230-0x230.7 (1)
|
||||
0x230| 01 | . | [65]: 1 transition_type 0x231-0x231.7 (1)
|
||||
0x230| 02 | . | [66]: 2 transition_type 0x232-0x232.7 (1)
|
||||
0x230| 01 | . | [67]: 1 transition_type 0x233-0x233.7 (1)
|
||||
0x230| 02 | . | [68]: 2 transition_type 0x234-0x234.7 (1)
|
||||
0x230| 01 | . | [69]: 1 transition_type 0x235-0x235.7 (1)
|
||||
0x230| 02 | . | [70]: 2 transition_type 0x236-0x236.7 (1)
|
||||
0x230| 01 | . | [71]: 1 transition_type 0x237-0x237.7 (1)
|
||||
0x230| 02 | . | [72]: 2 transition_type 0x238-0x238.7 (1)
|
||||
0x230| 01 | . | [73]: 1 transition_type 0x239-0x239.7 (1)
|
||||
0x230| 02 | . | [74]: 2 transition_type 0x23a-0x23a.7 (1)
|
||||
0x230| 01 | . | [75]: 1 transition_type 0x23b-0x23b.7 (1)
|
||||
0x230| 02 | . | [76]: 2 transition_type 0x23c-0x23c.7 (1)
|
||||
0x230| 01 | . | [77]: 1 transition_type 0x23d-0x23d.7 (1)
|
||||
0x230| 02 | . | [78]: 2 transition_type 0x23e-0x23e.7 (1)
|
||||
0x230| 01| .| [79]: 1 transition_type 0x23f-0x23f.7 (1)
|
||||
0x240|02 |. | [80]: 2 transition_type 0x240-0x240.7 (1)
|
||||
0x240| 01 | . | [81]: 1 transition_type 0x241-0x241.7 (1)
|
||||
0x240| 02 | . | [82]: 2 transition_type 0x242-0x242.7 (1)
|
||||
0x240| 01 | . | [83]: 1 transition_type 0x243-0x243.7 (1)
|
||||
0x240| 02 | . | [84]: 2 transition_type 0x244-0x244.7 (1)
|
||||
0x240| 01 | . | [85]: 1 transition_type 0x245-0x245.7 (1)
|
||||
0x240| 02 | . | [86]: 2 transition_type 0x246-0x246.7 (1)
|
||||
0x240| 01 | . | [87]: 1 transition_type 0x247-0x247.7 (1)
|
||||
0x240| 02 | . | [88]: 2 transition_type 0x248-0x248.7 (1)
|
||||
0x240| 01 | . | [89]: 1 transition_type 0x249-0x249.7 (1)
|
||||
0x240| 02 | . | [90]: 2 transition_type 0x24a-0x24a.7 (1)
|
||||
0x240| 01 | . | [91]: 1 transition_type 0x24b-0x24b.7 (1)
|
||||
0x240| 02 | . | [92]: 2 transition_type 0x24c-0x24c.7 (1)
|
||||
0x240| 01 | . | [93]: 1 transition_type 0x24d-0x24d.7 (1)
|
||||
0x240| 02 | . | [94]: 2 transition_type 0x24e-0x24e.7 (1)
|
||||
0x240| 01| .| [95]: 1 transition_type 0x24f-0x24f.7 (1)
|
||||
0x250|02 |. | [96]: 2 transition_type 0x250-0x250.7 (1)
|
||||
0x250| 01 | . | [97]: 1 transition_type 0x251-0x251.7 (1)
|
||||
0x250| 02 | . | [98]: 2 transition_type 0x252-0x252.7 (1)
|
||||
0x250| 01 | . | [99]: 1 transition_type 0x253-0x253.7 (1)
|
||||
0x250| 02 | . | [100]: 2 transition_type 0x254-0x254.7 (1)
|
||||
0x250| 01 | . | [101]: 1 transition_type 0x255-0x255.7 (1)
|
||||
0x250| 02 | . | [102]: 2 transition_type 0x256-0x256.7 (1)
|
||||
0x250| 01 | . | [103]: 1 transition_type 0x257-0x257.7 (1)
|
||||
0x250| 02 | . | [104]: 2 transition_type 0x258-0x258.7 (1)
|
||||
0x250| 01 | . | [105]: 1 transition_type 0x259-0x259.7 (1)
|
||||
0x250| 02 | . | [106]: 2 transition_type 0x25a-0x25a.7 (1)
|
||||
0x250| 01 | . | [107]: 1 transition_type 0x25b-0x25b.7 (1)
|
||||
0x250| 02 | . | [108]: 2 transition_type 0x25c-0x25c.7 (1)
|
||||
0x250| 01 | . | [109]: 1 transition_type 0x25d-0x25d.7 (1)
|
||||
0x250| 02 | . | [110]: 2 transition_type 0x25e-0x25e.7 (1)
|
||||
0x250| 01| .| [111]: 1 transition_type 0x25f-0x25f.7 (1)
|
||||
0x260|01 |. | [112]: 1 transition_type 0x260-0x260.7 (1)
|
||||
| | | local_time_type_records[0:3]: 0x261-0x272.7 (18)
|
||||
| | | [0]{}: local_time_type 0x261-0x266.7 (6)
|
||||
0x260| 00 00 21 48 | ..!H | utoff: 8520 (valid) 0x261-0x264.7 (4)
|
||||
0x260| 00 | . | dst: 0 (valid) 0x265-0x265.7 (1)
|
||||
0x260| 00 | . | idx: 0 (valid) 0x266-0x266.7 (1)
|
||||
| | | [1]{}: local_time_type 0x267-0x26c.7 (6)
|
||||
0x260| 00 00 2a 30 | ..*0 | utoff: 10800 (valid) 0x267-0x26a.7 (4)
|
||||
0x260| 01 | . | dst: 1 (valid) 0x26b-0x26b.7 (1)
|
||||
0x260| 04 | . | idx: 4 (valid) 0x26c-0x26c.7 (1)
|
||||
| | | [2]{}: local_time_type 0x26d-0x272.7 (6)
|
||||
0x260| 00 00 1c| ...| utoff: 7200 (valid) 0x26d-0x270.7 (4)
|
||||
0x270|20 | |
|
||||
0x270| 00 | . | dst: 0 (valid) 0x271-0x271.7 (1)
|
||||
0x270| 09 | . | idx: 9 (valid) 0x272-0x272.7 (1)
|
||||
| | | time_zone_designations[0:3]: 0x273-0x27f.7 (13)
|
||||
0x270| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x273-0x276.7 (4)
|
||||
0x270| 45 45 53 54 00 | EEST. | [1]: "EEST" time_zone_designation 0x277-0x27b.7 (5)
|
||||
0x270| 45 45 54 00| EET.| [2]: "EET" time_zone_designation 0x27c-0x27f.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x280-0x357.7 (216)
|
||||
| | | [0]{}: leap_second_record 0x280-0x287.7 (8)
|
||||
0x280|04 b2 58 00 |..X. | occur: "1972-07-01T00:00:00Z" (78796800) 0x280-0x283.7 (4)
|
||||
0x280| 00 00 00 01 | .... | corr: 1 0x284-0x287.7 (4)
|
||||
| | | [1]{}: leap_second_record 0x288-0x28f.7 (8)
|
||||
0x280| 05 a4 ec 01 | .... | occur: "1973-01-01T00:00:01Z" (94694401) 0x288-0x28b.7 (4)
|
||||
0x280| 00 00 00 02| ....| corr: 2 0x28c-0x28f.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x290-0x297.7 (8)
|
||||
0x290|07 86 1f 82 |.... | occur: "1974-01-01T00:00:02Z" (126230402) 0x290-0x293.7 (4)
|
||||
0x290| 00 00 00 03 | .... | corr: 3 0x294-0x297.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x298-0x29f.7 (8)
|
||||
0x290| 09 67 53 03 | .gS. | occur: "1975-01-01T00:00:03Z" (157766403) 0x298-0x29b.7 (4)
|
||||
0x290| 00 00 00 04| ....| corr: 4 0x29c-0x29f.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x2a0-0x2a7.7 (8)
|
||||
0x2a0|0b 48 86 84 |.H.. | occur: "1976-01-01T00:00:04Z" (189302404) 0x2a0-0x2a3.7 (4)
|
||||
0x2a0| 00 00 00 05 | .... | corr: 5 0x2a4-0x2a7.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x2a8-0x2af.7 (8)
|
||||
0x2a0| 0d 2b 0b 85 | .+.. | occur: "1977-01-01T00:00:05Z" (220924805) 0x2a8-0x2ab.7 (4)
|
||||
0x2a0| 00 00 00 06| ....| corr: 6 0x2ac-0x2af.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x2b0-0x2b7.7 (8)
|
||||
0x2b0|0f 0c 3f 06 |..?. | occur: "1978-01-01T00:00:06Z" (252460806) 0x2b0-0x2b3.7 (4)
|
||||
0x2b0| 00 00 00 07 | .... | corr: 7 0x2b4-0x2b7.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x2b8-0x2bf.7 (8)
|
||||
0x2b0| 10 ed 72 87 | ..r. | occur: "1979-01-01T00:00:07Z" (283996807) 0x2b8-0x2bb.7 (4)
|
||||
0x2b0| 00 00 00 08| ....| corr: 8 0x2bc-0x2bf.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x2c0-0x2c7.7 (8)
|
||||
0x2c0|12 ce a6 08 |.... | occur: "1980-01-01T00:00:08Z" (315532808) 0x2c0-0x2c3.7 (4)
|
||||
0x2c0| 00 00 00 09 | .... | corr: 9 0x2c4-0x2c7.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x2c8-0x2cf.7 (8)
|
||||
0x2c0| 15 9f ca 89 | .... | occur: "1981-07-01T00:00:09Z" (362793609) 0x2c8-0x2cb.7 (4)
|
||||
0x2c0| 00 00 00 0a| ....| corr: 10 0x2cc-0x2cf.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x2d0-0x2d7.7 (8)
|
||||
0x2d0|17 80 fe 0a |.... | occur: "1982-07-01T00:00:10Z" (394329610) 0x2d0-0x2d3.7 (4)
|
||||
0x2d0| 00 00 00 0b | .... | corr: 11 0x2d4-0x2d7.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x2d8-0x2df.7 (8)
|
||||
0x2d0| 19 62 31 8b | .b1. | occur: "1983-07-01T00:00:11Z" (425865611) 0x2d8-0x2db.7 (4)
|
||||
0x2d0| 00 00 00 0c| ....| corr: 12 0x2dc-0x2df.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x2e0-0x2e7.7 (8)
|
||||
0x2e0|1d 25 ea 0c |.%.. | occur: "1985-07-01T00:00:12Z" (489024012) 0x2e0-0x2e3.7 (4)
|
||||
0x2e0| 00 00 00 0d | .... | corr: 13 0x2e4-0x2e7.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x2e8-0x2ef.7 (8)
|
||||
0x2e0| 21 da e5 0d | !... | occur: "1988-01-01T00:00:13Z" (567993613) 0x2e8-0x2eb.7 (4)
|
||||
0x2e0| 00 00 00 0e| ....| corr: 14 0x2ec-0x2ef.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x2f0-0x2f7.7 (8)
|
||||
0x2f0|25 9e 9d 8e |%... | occur: "1990-01-01T00:00:14Z" (631152014) 0x2f0-0x2f3.7 (4)
|
||||
0x2f0| 00 00 00 0f | .... | corr: 15 0x2f4-0x2f7.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x2f8-0x2ff.7 (8)
|
||||
0x2f0| 27 7f d1 0f | '... | occur: "1991-01-01T00:00:15Z" (662688015) 0x2f8-0x2fb.7 (4)
|
||||
0x2f0| 00 00 00 10| ....| corr: 16 0x2fc-0x2ff.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x300-0x307.7 (8)
|
||||
0x300|2a 50 f5 90 |*P.. | occur: "1992-07-01T00:00:16Z" (709948816) 0x300-0x303.7 (4)
|
||||
0x300| 00 00 00 11 | .... | corr: 17 0x304-0x307.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x308-0x30f.7 (8)
|
||||
0x300| 2c 32 29 11 | ,2). | occur: "1993-07-01T00:00:17Z" (741484817) 0x308-0x30b.7 (4)
|
||||
0x300| 00 00 00 12| ....| corr: 18 0x30c-0x30f.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x310-0x317.7 (8)
|
||||
0x310|2e 13 5c 92 |..\. | occur: "1994-07-01T00:00:18Z" (773020818) 0x310-0x313.7 (4)
|
||||
0x310| 00 00 00 13 | .... | corr: 19 0x314-0x317.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x318-0x31f.7 (8)
|
||||
0x310| 30 e7 24 13 | 0.$. | occur: "1996-01-01T00:00:19Z" (820454419) 0x318-0x31b.7 (4)
|
||||
0x310| 00 00 00 14| ....| corr: 20 0x31c-0x31f.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x320-0x327.7 (8)
|
||||
0x320|33 b8 48 94 |3.H. | occur: "1997-07-01T00:00:20Z" (867715220) 0x320-0x323.7 (4)
|
||||
0x320| 00 00 00 15 | .... | corr: 21 0x324-0x327.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x328-0x32f.7 (8)
|
||||
0x320| 36 8c 10 15 | 6... | occur: "1999-01-01T00:00:21Z" (915148821) 0x328-0x32b.7 (4)
|
||||
0x320| 00 00 00 16| ....| corr: 22 0x32c-0x32f.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x330-0x337.7 (8)
|
||||
0x330|43 b7 1b 96 |C... | occur: "2006-01-01T00:00:22Z" (1136073622) 0x330-0x333.7 (4)
|
||||
0x330| 00 00 00 17 | .... | corr: 23 0x334-0x337.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x338-0x33f.7 (8)
|
||||
0x330| 49 5c 07 97 | I\.. | occur: "2009-01-01T00:00:23Z" (1230768023) 0x338-0x33b.7 (4)
|
||||
0x330| 00 00 00 18| ....| corr: 24 0x33c-0x33f.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x340-0x347.7 (8)
|
||||
0x340|4f ef 93 18 |O... | occur: "2012-07-01T00:00:24Z" (1341100824) 0x340-0x343.7 (4)
|
||||
0x340| 00 00 00 19 | .... | corr: 25 0x344-0x347.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x348-0x34f.7 (8)
|
||||
0x340| 55 93 2d 99 | U.-. | occur: "2015-07-01T00:00:25Z" (1435708825) 0x348-0x34b.7 (4)
|
||||
0x340| 00 00 00 1a| ....| corr: 26 0x34c-0x34f.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x350-0x357.7 (8)
|
||||
0x350|58 68 46 9a |XhF. | occur: "2017-01-01T00:00:26Z" (1483228826) 0x350-0x353.7 (4)
|
||||
0x350| 00 00 00 1b | .... | corr: 27 0x354-0x357.7 (4)
|
||||
| | | standard_wall_indicators[0:0]: 0x358-NA (0)
|
||||
| | | ut_local_indicators[0:0]: 0x358-NA (0)
|
||||
| | | v2plusheader{}: 0x358-0x383.7 (44)
|
||||
0x350| 54 5a 69 66 | TZif | magic: 0x545a6966 (valid) 0x358-0x35b.7 (4)
|
||||
0x350| 32 | 2 | ver: "2" (0x32) (valid) 0x35c-0x35c.7 (1)
|
||||
0x350| 00 00 00| ...| reserved: raw bits 0x35d-0x36b.7 (15)
|
||||
0x360|00 00 00 00 00 00 00 00 00 00 00 00 |............ |
|
||||
0x360| 00 00 00 00| ....| isutcnt: 0 0x36c-0x36f.7 (4)
|
||||
0x370|00 00 00 00 |.... | isstdcnt: 0 0x370-0x373.7 (4)
|
||||
0x370| 00 00 00 1b | .... | leapcnt: 27 0x374-0x377.7 (4)
|
||||
0x370| 00 00 00 71 | ...q | timecnt: 113 0x378-0x37b.7 (4)
|
||||
0x370| 00 00 00 03| ....| typecnt: 3 0x37c-0x37f.7 (4)
|
||||
0x380|00 00 00 0d |.... | charcnt: 13 0x380-0x383.7 (4)
|
||||
| | | v2plusdatablock{}: 0x384-0x8df.7 (1372)
|
||||
| | | transition_times[0:113]: 0x384-0x70b.7 (904)
|
||||
0x380| ff ff ff ff 56 b6 c2 b8 | ....V... | [0]: "1879-12-31T21:38:00Z" (-2840149320) transition_time 0x384-0x38b.7 (8)
|
||||
0x380| ff ff ff ff| ....| [1]: "1920-03-27T22:00:00Z" (-1570413600) transition_time 0x38c-0x393.7 (8)
|
||||
0x390|a2 65 63 e0 |.ec. |
|
||||
0x390| ff ff ff ff a3 7b 82 50 | .....{.P | [2]: "1920-10-24T21:00:00Z" (-1552186800) transition_time 0x394-0x39b.7 (8)
|
||||
0x390| ff ff ff ff| ....| [3]: "1921-04-02T22:00:00Z" (-1538359200) transition_time 0x39c-0x3a3.7 (8)
|
||||
0x3a0|a4 4e 80 60 |.N.` |
|
||||
0x3a0| ff ff ff ff a5 3f b4 d0 | .....?.. | [4]: "1921-10-02T21:00:00Z" (-1522551600) transition_time 0x3a4-0x3ab.7 (8)
|
||||
0x3a0| ff ff ff ff| ....| [5]: "1922-03-25T22:00:00Z" (-1507514400) transition_time 0x3ac-0x3b3.7 (8)
|
||||
0x3b0|a6 25 27 e0 |.%'. |
|
||||
0x3b0| ff ff ff ff a7 27 7f d0 | .....'.. | [6]: "1922-10-07T21:00:00Z" (-1490583600) transition_time 0x3b4-0x3bb.7 (8)
|
||||
0x3b0| ff ff ff ff| ....| [7]: "1923-04-21T22:00:00Z" (-1473645600) transition_time 0x3bc-0x3c3.7 (8)
|
||||
0x3c0|a8 29 f3 e0 |.).. |
|
||||
0x3c0| ff ff ff ff a8 eb b2 50 | .......P | [8]: "1923-09-15T21:00:00Z" (-1460948400) transition_time 0x3c4-0x3cb.7 (8)
|
||||
0x3c0| ff ff ff ff| ....| [9]: "1957-04-30T22:00:00Z" (-399866400) transition_time 0x3cc-0x3d3.7 (8)
|
||||
0x3d0|e8 2a 85 e0 |.*.. |
|
||||
0x3d0| ff ff ff ff e8 f4 2d 50 | ......-P | [10]: "1957-09-30T21:00:00Z" (-386650800) transition_time 0x3d4-0x3db.7 (8)
|
||||
0x3d0| ff ff ff ff| ....| [11]: "1958-04-30T22:00:00Z" (-368330400) transition_time 0x3dc-0x3e3.7 (8)
|
||||
0x3e0|ea 0b b9 60 |...` |
|
||||
0x3e0| ff ff ff ff ea d5 60 d0 | ......`. | [12]: "1958-09-30T21:00:00Z" (-355114800) transition_time 0x3e4-0x3eb.7 (8)
|
||||
0x3e0| ff ff ff ff| ....| [13]: "1959-04-30T22:00:00Z" (-336794400) transition_time 0x3ec-0x3f3.7 (8)
|
||||
0x3f0|eb ec ec e0 |.... |
|
||||
0x3f0| ff ff ff ff ec b6 94 50 | .......P | [14]: "1959-09-30T21:00:00Z" (-323578800) transition_time 0x3f4-0x3fb.7 (8)
|
||||
0x3f0| ff ff ff ff| ....| [15]: "1960-04-30T22:00:00Z" (-305172000) transition_time 0x3fc-0x403.7 (8)
|
||||
0x400|ed cf 71 e0 |..q. |
|
||||
0x400| ff ff ff ff ee 99 19 50 | .......P | [16]: "1960-09-30T21:00:00Z" (-291956400) transition_time 0x404-0x40b.7 (8)
|
||||
0x400| ff ff ff ff| ....| [17]: "1961-04-30T22:00:00Z" (-273636000) transition_time 0x40c-0x413.7 (8)
|
||||
0x410|ef b0 a5 60 |...` |
|
||||
0x410| ff ff ff ff f0 7a 4c d0 | .....zL. | [18]: "1961-09-30T21:00:00Z" (-260420400) transition_time 0x414-0x41b.7 (8)
|
||||
0x410| 00 00 00 00| ....| [19]: "1972-06-21T22:00:00Z" (78012000) transition_time 0x41c-0x423.7 (8)
|
||||
0x420|04 a6 5e 60 |..^` |
|
||||
0x420| 00 00 00 00 05 2b 77 d1 | .....+w. | [20]: "1972-09-30T21:00:01Z" (86734801) transition_time 0x424-0x42b.7 (8)
|
||||
0x420| 00 00 00 00| ....| [21]: "1973-04-30T22:00:02Z" (105055202) transition_time 0x42c-0x433.7 (8)
|
||||
0x430|06 43 03 e2 |.C.. |
|
||||
0x430| 00 00 00 00 07 0c ab 52 | .......R | [22]: "1973-09-30T21:00:02Z" (118270802) transition_time 0x434-0x43b.7 (8)
|
||||
0x430| 00 00 00 00| ....| [23]: "1974-04-30T22:00:03Z" (136591203) transition_time 0x43c-0x443.7 (8)
|
||||
0x440|08 24 37 63 |.$7c |
|
||||
0x440| 00 00 00 00 08 ed de d3 | ........ | [24]: "1974-09-30T21:00:03Z" (149806803) transition_time 0x444-0x44b.7 (8)
|
||||
0x440| 00 00 00 00| ....| [25]: "1975-04-30T22:00:04Z" (168127204) transition_time 0x44c-0x453.7 (8)
|
||||
0x450|0a 05 6a e4 |..j. |
|
||||
0x450| 00 00 00 00 0a cf 12 54 | .......T | [26]: "1975-09-30T21:00:04Z" (181342804) transition_time 0x454-0x45b.7 (8)
|
||||
0x450| 00 00 00 00| ....| [27]: "1976-04-30T22:00:05Z" (199749605) transition_time 0x45c-0x463.7 (8)
|
||||
0x460|0b e7 ef e5 |.... |
|
||||
0x460| 00 00 00 00 0c b1 97 55 | .......U | [28]: "1976-09-30T21:00:05Z" (212965205) transition_time 0x464-0x46b.7 (8)
|
||||
0x460| 00 00 00 00| ....| [29]: "1977-04-30T22:00:06Z" (231285606) transition_time 0x46c-0x473.7 (8)
|
||||
0x470|0d c9 23 66 |..#f |
|
||||
0x470| 00 00 00 00 0e 92 ca d6 | ........ | [30]: "1977-09-30T21:00:06Z" (244501206) transition_time 0x474-0x47b.7 (8)
|
||||
0x470| 00 00 00 00| ....| [31]: "1978-04-29T22:00:07Z" (262735207) transition_time 0x47c-0x483.7 (8)
|
||||
0x480|0f a9 05 67 |...g |
|
||||
0x480| 00 00 00 00 10 72 ac d7 | .....r.. | [32]: "1978-09-29T21:00:07Z" (275950807) transition_time 0x484-0x48b.7 (8)
|
||||
0x480| 00 00 00 00| ....| [33]: "1984-04-30T22:00:12Z" (452210412) transition_time 0x48c-0x493.7 (8)
|
||||
0x490|1a f4 2e ec |.... |
|
||||
0x490| 00 00 00 00 1b d1 9c dc | ........ | [34]: "1984-10-15T21:00:12Z" (466722012) transition_time 0x494-0x49b.7 (8)
|
||||
0x490| 00 00 00 00| ....| [35]: "1985-04-30T22:00:12Z" (483746412) transition_time 0x49c-0x4a3.7 (8)
|
||||
0x4a0|1c d5 62 6c |..bl |
|
||||
0x4a0| 00 00 00 00 1d b2 d0 5d | .......] | [36]: "1985-10-15T21:00:13Z" (498258013) transition_time 0x4a4-0x4ab.7 (8)
|
||||
0x4a0| 00 00 00 00| ....| [37]: "1986-04-30T22:00:13Z" (515282413) transition_time 0x4ac-0x4b3.7 (8)
|
||||
0x4b0|1e b6 95 ed |.... |
|
||||
0x4b0| 00 00 00 00 1f 94 03 dd | ........ | [38]: "1986-10-15T21:00:13Z" (529794013) transition_time 0x4b4-0x4bb.7 (8)
|
||||
0x4b0| 00 00 00 00| ....| [39]: "1987-04-30T22:00:13Z" (546818413) transition_time 0x4bc-0x4c3.7 (8)
|
||||
0x4c0|20 97 c9 6d | ..m |
|
||||
0x4c0| 00 00 00 00 21 75 37 5d | ....!u7] | [40]: "1987-10-15T21:00:13Z" (561330013) transition_time 0x4c4-0x4cb.7 (8)
|
||||
0x4c0| 00 00 00 00| ....| [41]: "1988-05-31T22:00:14Z" (581119214) transition_time 0x4cc-0x4d3.7 (8)
|
||||
0x4d0|22 a3 2c ee |".,. |
|
||||
0x4d0| 00 00 00 00 23 57 bc 5e | ....#W.^ | [42]: "1988-10-15T21:00:14Z" (592952414) transition_time 0x4d4-0x4db.7 (8)
|
||||
0x4d0| 00 00 00 00| ....| [43]: "1989-05-09T22:00:14Z" (610754414) transition_time 0x4dc-0x4e3.7 (8)
|
||||
0x4e0|24 67 5f 6e |$g_n |
|
||||
0x4e0| 00 00 00 00 25 38 ef de | ....%8.. | [44]: "1989-10-15T21:00:14Z" (624488414) transition_time 0x4e4-0x4eb.7 (8)
|
||||
0x4e0| 00 00 00 00| ....| [45]: "1990-04-30T22:00:15Z" (641512815) transition_time 0x4ec-0x4f3.7 (8)
|
||||
0x4f0|26 3c b5 6f |&<.o |
|
||||
0x4f0| 00 00 00 00 27 1a 23 5f | ....'.#_ | [46]: "1990-10-15T21:00:15Z" (656024415) transition_time 0x4f4-0x4fb.7 (8)
|
||||
0x4f0| 00 00 00 00| ....| [47]: "1991-04-30T22:00:16Z" (673048816) transition_time 0x4fc-0x503.7 (8)
|
||||
0x500|28 1d e8 f0 |(... |
|
||||
0x500| 00 00 00 00 28 fb 56 e0 | ....(.V. | [48]: "1991-10-15T21:00:16Z" (687560416) transition_time 0x504-0x50b.7 (8)
|
||||
0x500| 00 00 00 00| ....| [49]: "1992-04-30T22:00:16Z" (704671216) transition_time 0x50c-0x513.7 (8)
|
||||
0x510|2a 00 6d f0 |*.m. |
|
||||
0x510| 00 00 00 00 2a ce 09 e1 | ....*... | [50]: "1992-10-03T21:00:17Z" (718146017) transition_time 0x514-0x51b.7 (8)
|
||||
0x510| 00 00 00 00| ....| [51]: "1993-03-27T22:00:17Z" (733269617) transition_time 0x51c-0x523.7 (8)
|
||||
0x520|2b b4 ce 71 |+..q |
|
||||
0x520| 00 00 00 00 2c a4 b1 62 | ....,..b | [52]: "1993-09-25T21:00:18Z" (748990818) transition_time 0x524-0x52b.7 (8)
|
||||
0x520| 00 00 00 00| ....| [53]: "1994-03-26T22:00:18Z" (764719218) transition_time 0x52c-0x533.7 (8)
|
||||
0x530|2d 94 b0 72 |-..r |
|
||||
0x530| 00 00 00 00 2e 84 93 63 | .......c | [54]: "1994-09-24T21:00:19Z" (780440419) transition_time 0x534-0x53b.7 (8)
|
||||
0x530| 00 00 00 00| ....| [55]: "1995-03-25T22:00:19Z" (796168819) transition_time 0x53c-0x543.7 (8)
|
||||
0x540|2f 74 92 73 |/t.s |
|
||||
0x540| 00 00 00 00 30 64 75 63 | ....0duc | [56]: "1995-09-23T21:00:19Z" (811890019) transition_time 0x544-0x54b.7 (8)
|
||||
0x540| 00 00 00 00| ....| [57]: "1996-03-30T22:00:20Z" (828223220) transition_time 0x54c-0x553.7 (8)
|
||||
0x550|31 5d ae f4 |1].. |
|
||||
0x550| 00 00 00 00 32 4d 91 e4 | ....2M.. | [58]: "1996-09-28T21:00:20Z" (843944420) transition_time 0x554-0x55b.7 (8)
|
||||
0x550| 00 00 00 00| ....| [59]: "1997-03-29T22:00:20Z" (859672820) transition_time 0x55c-0x563.7 (8)
|
||||
0x560|33 3d 90 f4 |3=.. |
|
||||
0x560| 00 00 00 00 34 2d 73 e5 | ....4-s. | [60]: "1997-09-27T21:00:21Z" (875394021) transition_time 0x564-0x56b.7 (8)
|
||||
0x560| 00 00 00 00| ....| [61]: "1998-03-28T22:00:21Z" (891122421) transition_time 0x56c-0x573.7 (8)
|
||||
0x570|35 1d 72 f5 |5.r. |
|
||||
0x570| 00 00 00 00 36 0d 55 e5 | ....6.U. | [62]: "1998-09-26T21:00:21Z" (906843621) transition_time 0x574-0x57b.7 (8)
|
||||
0x570| 00 00 00 00| ....| [63]: "1999-03-27T22:00:22Z" (922572022) transition_time 0x57c-0x583.7 (8)
|
||||
0x580|36 fd 54 f6 |6.T. |
|
||||
0x580| 00 00 00 00 38 1b 5c 66 | ....8.\f | [64]: "1999-10-30T21:00:22Z" (941317222) transition_time 0x584-0x58b.7 (8)
|
||||
0x580| 00 00 00 00| ....| [65]: "2000-03-25T22:00:22Z" (954021622) transition_time 0x58c-0x593.7 (8)
|
||||
0x590|38 dd 36 f6 |8.6. |
|
||||
0x590| 00 00 00 00 39 fb 3e 66 | ....9.>f | [66]: "2000-10-28T21:00:22Z" (972766822) transition_time 0x594-0x59b.7 (8)
|
||||
0x590| 00 00 00 00| ....| [67]: "2001-03-24T22:00:22Z" (985471222) transition_time 0x59c-0x5a3.7 (8)
|
||||
0x5a0|3a bd 18 f6 |:... |
|
||||
0x5a0| 00 00 00 00 3b db 20 66 | ....;. f | [68]: "2001-10-27T21:00:22Z" (1004216422) transition_time 0x5a4-0x5ab.7 (8)
|
||||
0x5a0| 00 00 00 00| ....| [69]: "2002-03-30T22:00:22Z" (1017525622) transition_time 0x5ac-0x5b3.7 (8)
|
||||
0x5b0|3c a6 35 76 |<.5v |
|
||||
0x5b0| 00 00 00 00 3d bb 02 66 | ....=..f | [70]: "2002-10-26T21:00:22Z" (1035666022) transition_time 0x5b4-0x5bb.7 (8)
|
||||
0x5b0| 00 00 00 00| ....| [71]: "2003-03-29T22:00:22Z" (1048975222) transition_time 0x5bc-0x5c3.7 (8)
|
||||
0x5c0|3e 86 17 76 |>..v |
|
||||
0x5c0| 00 00 00 00 3f 9a e4 66 | ....?..f | [72]: "2003-10-25T21:00:22Z" (1067115622) transition_time 0x5c4-0x5cb.7 (8)
|
||||
0x5c0| 00 00 00 00| ....| [73]: "2004-03-27T22:00:22Z" (1080424822) transition_time 0x5cc-0x5d3.7 (8)
|
||||
0x5d0|40 65 f9 76 |@e.v |
|
||||
0x5d0| 00 00 00 00 41 84 00 e6 | ....A... | [74]: "2004-10-30T21:00:22Z" (1099170022) transition_time 0x5d4-0x5db.7 (8)
|
||||
0x5d0| 00 00 00 00| ....| [75]: "2005-03-26T22:00:22Z" (1111874422) transition_time 0x5dc-0x5e3.7 (8)
|
||||
0x5e0|42 45 db 76 |BE.v |
|
||||
0x5e0| 00 00 00 00 43 63 e2 e6 | ....Cc.. | [76]: "2005-10-29T21:00:22Z" (1130619622) transition_time 0x5e4-0x5eb.7 (8)
|
||||
0x5e0| 00 00 00 00| ....| [77]: "2006-03-25T22:00:23Z" (1143324023) transition_time 0x5ec-0x5f3.7 (8)
|
||||
0x5f0|44 25 bd 77 |D%.w |
|
||||
0x5f0| 00 00 00 00 45 43 c4 e7 | ....EC.. | [78]: "2006-10-28T21:00:23Z" (1162069223) transition_time 0x5f4-0x5fb.7 (8)
|
||||
0x5f0| 00 00 00 00| ....| [79]: "2007-03-24T22:00:23Z" (1174773623) transition_time 0x5fc-0x603.7 (8)
|
||||
0x600|46 05 9f 77 |F..w |
|
||||
0x600| 00 00 00 00 47 23 a6 e7 | ....G#.. | [80]: "2007-10-27T21:00:23Z" (1193518823) transition_time 0x604-0x60b.7 (8)
|
||||
0x600| 00 00 00 00| ....| [81]: "2008-03-29T22:00:23Z" (1206828023) transition_time 0x60c-0x613.7 (8)
|
||||
0x610|47 ee bb f7 |G... |
|
||||
0x610| 00 00 00 00 49 03 88 e7 | ....I... | [82]: "2008-10-25T21:00:23Z" (1224968423) transition_time 0x614-0x61b.7 (8)
|
||||
0x610| 00 00 00 00| ....| [83]: "2009-03-28T22:00:24Z" (1238277624) transition_time 0x61c-0x623.7 (8)
|
||||
0x620|49 ce 9d f8 |I... |
|
||||
0x620| 00 00 00 00 4a e3 6a e8 | ....J.j. | [84]: "2009-10-24T21:00:24Z" (1256418024) transition_time 0x624-0x62b.7 (8)
|
||||
0x620| 00 00 00 00| ....| [85]: "2010-03-27T22:00:24Z" (1269727224) transition_time 0x62c-0x633.7 (8)
|
||||
0x630|4b ae 7f f8 |K... |
|
||||
0x630| 00 00 00 00 4c cc 87 68 | ....L..h | [86]: "2010-10-30T21:00:24Z" (1288472424) transition_time 0x634-0x63b.7 (8)
|
||||
0x630| 00 00 00 00| ....| [87]: "2011-03-26T22:00:24Z" (1301176824) transition_time 0x63c-0x643.7 (8)
|
||||
0x640|4d 8e 61 f8 |M.a. |
|
||||
0x640| 00 00 00 00 4e ac 69 68 | ....N.ih | [88]: "2011-10-29T21:00:24Z" (1319922024) transition_time 0x644-0x64b.7 (8)
|
||||
0x640| 00 00 00 00| ....| [89]: "2012-03-24T22:00:24Z" (1332626424) transition_time 0x64c-0x653.7 (8)
|
||||
0x650|4f 6e 43 f8 |OnC. |
|
||||
0x650| 00 00 00 00 50 8c 4b 69 | ....P.Ki | [90]: "2012-10-27T21:00:25Z" (1351371625) transition_time 0x654-0x65b.7 (8)
|
||||
0x650| 00 00 00 00| ....| [91]: "2013-03-30T22:00:25Z" (1364680825) transition_time 0x65c-0x663.7 (8)
|
||||
0x660|51 57 60 79 |QW`y |
|
||||
0x660| 00 00 00 00 52 6c 2d 69 | ....Rl-i | [92]: "2013-10-26T21:00:25Z" (1382821225) transition_time 0x664-0x66b.7 (8)
|
||||
0x660| 00 00 00 00| ....| [93]: "2014-03-29T22:00:25Z" (1396130425) transition_time 0x66c-0x673.7 (8)
|
||||
0x670|53 37 42 79 |S7By |
|
||||
0x670| 00 00 00 00 54 4c 0f 69 | ....TL.i | [94]: "2014-10-25T21:00:25Z" (1414270825) transition_time 0x674-0x67b.7 (8)
|
||||
0x670| 00 00 00 00| ....| [95]: "2015-03-28T22:00:25Z" (1427580025) transition_time 0x67c-0x683.7 (8)
|
||||
0x680|55 17 24 79 |U.$y |
|
||||
0x680| 00 00 00 00 56 2b f1 6a | ....V+.j | [96]: "2015-10-24T21:00:26Z" (1445720426) transition_time 0x684-0x68b.7 (8)
|
||||
0x680| 00 00 00 00| ....| [97]: "2016-03-26T22:00:26Z" (1459029626) transition_time 0x68c-0x693.7 (8)
|
||||
0x690|56 f7 06 7a |V..z |
|
||||
0x690| 00 00 00 00 58 15 0d ea | ....X... | [98]: "2016-10-29T21:00:26Z" (1477774826) transition_time 0x694-0x69b.7 (8)
|
||||
0x690| 00 00 00 00| ....| [99]: "2017-03-25T22:00:27Z" (1490479227) transition_time 0x69c-0x6a3.7 (8)
|
||||
0x6a0|58 d6 e8 7b |X..{ |
|
||||
0x6a0| 00 00 00 00 59 f4 ef eb | ....Y... | [100]: "2017-10-28T21:00:27Z" (1509224427) transition_time 0x6a4-0x6ab.7 (8)
|
||||
0x6a0| 00 00 00 00| ....| [101]: "2018-03-24T22:00:27Z" (1521928827) transition_time 0x6ac-0x6b3.7 (8)
|
||||
0x6b0|5a b6 ca 7b |Z..{ |
|
||||
0x6b0| 00 00 00 00 5b d4 d1 eb | ....[... | [102]: "2018-10-27T21:00:27Z" (1540674027) transition_time 0x6b4-0x6bb.7 (8)
|
||||
0x6b0| 00 00 00 00| ....| [103]: "2019-03-30T22:00:27Z" (1553983227) transition_time 0x6bc-0x6c3.7 (8)
|
||||
0x6c0|5c 9f e6 fb |\... |
|
||||
0x6c0| 00 00 00 00 5d b4 b3 eb | ....]... | [104]: "2019-10-26T21:00:27Z" (1572123627) transition_time 0x6c4-0x6cb.7 (8)
|
||||
0x6c0| 00 00 00 00| ....| [105]: "2020-03-28T22:00:27Z" (1585432827) transition_time 0x6cc-0x6d3.7 (8)
|
||||
0x6d0|5e 7f c8 fb |^... |
|
||||
0x6d0| 00 00 00 00 5f 94 95 eb | ...._... | [106]: "2020-10-24T21:00:27Z" (1603573227) transition_time 0x6d4-0x6db.7 (8)
|
||||
0x6d0| 00 00 00 00| ....| [107]: "2021-03-27T22:00:27Z" (1616882427) transition_time 0x6dc-0x6e3.7 (8)
|
||||
0x6e0|60 5f aa fb |`_.. |
|
||||
0x6e0| 00 00 00 00 61 7d b2 6b | ....a}.k | [108]: "2021-10-30T21:00:27Z" (1635627627) transition_time 0x6e4-0x6eb.7 (8)
|
||||
0x6e0| 00 00 00 00| ....| [109]: "2022-03-26T22:00:27Z" (1648332027) transition_time 0x6ec-0x6f3.7 (8)
|
||||
0x6f0|62 3f 8c fb |b?.. |
|
||||
0x6f0| 00 00 00 00 63 5d 94 6b | ....c].k | [110]: "2022-10-29T21:00:27Z" (1667077227) transition_time 0x6f4-0x6fb.7 (8)
|
||||
0x6f0| 00 00 00 00| ....| [111]: "2023-03-25T22:00:27Z" (1679781627) transition_time 0x6fc-0x703.7 (8)
|
||||
0x700|64 1f 6e fb |d.n. |
|
||||
0x700| 00 00 00 00 64 9b 78 1b | ....d.x. | [112]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x704-0x70b.7 (8)
|
||||
| | | transition_types[0:113]: 0x70c-0x77c.7 (113)
|
||||
0x700| 02 | . | [0]: 2 transition_type 0x70c-0x70c.7 (1)
|
||||
0x700| 01 | . | [1]: 1 transition_type 0x70d-0x70d.7 (1)
|
||||
0x700| 02 | . | [2]: 2 transition_type 0x70e-0x70e.7 (1)
|
||||
0x700| 01| .| [3]: 1 transition_type 0x70f-0x70f.7 (1)
|
||||
0x710|02 |. | [4]: 2 transition_type 0x710-0x710.7 (1)
|
||||
0x710| 01 | . | [5]: 1 transition_type 0x711-0x711.7 (1)
|
||||
0x710| 02 | . | [6]: 2 transition_type 0x712-0x712.7 (1)
|
||||
0x710| 01 | . | [7]: 1 transition_type 0x713-0x713.7 (1)
|
||||
0x710| 02 | . | [8]: 2 transition_type 0x714-0x714.7 (1)
|
||||
0x710| 01 | . | [9]: 1 transition_type 0x715-0x715.7 (1)
|
||||
0x710| 02 | . | [10]: 2 transition_type 0x716-0x716.7 (1)
|
||||
0x710| 01 | . | [11]: 1 transition_type 0x717-0x717.7 (1)
|
||||
0x710| 02 | . | [12]: 2 transition_type 0x718-0x718.7 (1)
|
||||
0x710| 01 | . | [13]: 1 transition_type 0x719-0x719.7 (1)
|
||||
0x710| 02 | . | [14]: 2 transition_type 0x71a-0x71a.7 (1)
|
||||
0x710| 01 | . | [15]: 1 transition_type 0x71b-0x71b.7 (1)
|
||||
0x710| 02 | . | [16]: 2 transition_type 0x71c-0x71c.7 (1)
|
||||
0x710| 01 | . | [17]: 1 transition_type 0x71d-0x71d.7 (1)
|
||||
0x710| 02 | . | [18]: 2 transition_type 0x71e-0x71e.7 (1)
|
||||
0x710| 01| .| [19]: 1 transition_type 0x71f-0x71f.7 (1)
|
||||
0x720|02 |. | [20]: 2 transition_type 0x720-0x720.7 (1)
|
||||
0x720| 01 | . | [21]: 1 transition_type 0x721-0x721.7 (1)
|
||||
0x720| 02 | . | [22]: 2 transition_type 0x722-0x722.7 (1)
|
||||
0x720| 01 | . | [23]: 1 transition_type 0x723-0x723.7 (1)
|
||||
0x720| 02 | . | [24]: 2 transition_type 0x724-0x724.7 (1)
|
||||
0x720| 01 | . | [25]: 1 transition_type 0x725-0x725.7 (1)
|
||||
0x720| 02 | . | [26]: 2 transition_type 0x726-0x726.7 (1)
|
||||
0x720| 01 | . | [27]: 1 transition_type 0x727-0x727.7 (1)
|
||||
0x720| 02 | . | [28]: 2 transition_type 0x728-0x728.7 (1)
|
||||
0x720| 01 | . | [29]: 1 transition_type 0x729-0x729.7 (1)
|
||||
0x720| 02 | . | [30]: 2 transition_type 0x72a-0x72a.7 (1)
|
||||
0x720| 01 | . | [31]: 1 transition_type 0x72b-0x72b.7 (1)
|
||||
0x720| 02 | . | [32]: 2 transition_type 0x72c-0x72c.7 (1)
|
||||
0x720| 01 | . | [33]: 1 transition_type 0x72d-0x72d.7 (1)
|
||||
0x720| 02 | . | [34]: 2 transition_type 0x72e-0x72e.7 (1)
|
||||
0x720| 01| .| [35]: 1 transition_type 0x72f-0x72f.7 (1)
|
||||
0x730|02 |. | [36]: 2 transition_type 0x730-0x730.7 (1)
|
||||
0x730| 01 | . | [37]: 1 transition_type 0x731-0x731.7 (1)
|
||||
0x730| 02 | . | [38]: 2 transition_type 0x732-0x732.7 (1)
|
||||
0x730| 01 | . | [39]: 1 transition_type 0x733-0x733.7 (1)
|
||||
0x730| 02 | . | [40]: 2 transition_type 0x734-0x734.7 (1)
|
||||
0x730| 01 | . | [41]: 1 transition_type 0x735-0x735.7 (1)
|
||||
0x730| 02 | . | [42]: 2 transition_type 0x736-0x736.7 (1)
|
||||
0x730| 01 | . | [43]: 1 transition_type 0x737-0x737.7 (1)
|
||||
0x730| 02 | . | [44]: 2 transition_type 0x738-0x738.7 (1)
|
||||
0x730| 01 | . | [45]: 1 transition_type 0x739-0x739.7 (1)
|
||||
0x730| 02 | . | [46]: 2 transition_type 0x73a-0x73a.7 (1)
|
||||
0x730| 01 | . | [47]: 1 transition_type 0x73b-0x73b.7 (1)
|
||||
0x730| 02 | . | [48]: 2 transition_type 0x73c-0x73c.7 (1)
|
||||
0x730| 01 | . | [49]: 1 transition_type 0x73d-0x73d.7 (1)
|
||||
0x730| 02 | . | [50]: 2 transition_type 0x73e-0x73e.7 (1)
|
||||
0x730| 01| .| [51]: 1 transition_type 0x73f-0x73f.7 (1)
|
||||
0x740|02 |. | [52]: 2 transition_type 0x740-0x740.7 (1)
|
||||
0x740| 01 | . | [53]: 1 transition_type 0x741-0x741.7 (1)
|
||||
0x740| 02 | . | [54]: 2 transition_type 0x742-0x742.7 (1)
|
||||
0x740| 01 | . | [55]: 1 transition_type 0x743-0x743.7 (1)
|
||||
0x740| 02 | . | [56]: 2 transition_type 0x744-0x744.7 (1)
|
||||
0x740| 01 | . | [57]: 1 transition_type 0x745-0x745.7 (1)
|
||||
0x740| 02 | . | [58]: 2 transition_type 0x746-0x746.7 (1)
|
||||
0x740| 01 | . | [59]: 1 transition_type 0x747-0x747.7 (1)
|
||||
0x740| 02 | . | [60]: 2 transition_type 0x748-0x748.7 (1)
|
||||
0x740| 01 | . | [61]: 1 transition_type 0x749-0x749.7 (1)
|
||||
0x740| 02 | . | [62]: 2 transition_type 0x74a-0x74a.7 (1)
|
||||
0x740| 01 | . | [63]: 1 transition_type 0x74b-0x74b.7 (1)
|
||||
0x740| 02 | . | [64]: 2 transition_type 0x74c-0x74c.7 (1)
|
||||
0x740| 01 | . | [65]: 1 transition_type 0x74d-0x74d.7 (1)
|
||||
0x740| 02 | . | [66]: 2 transition_type 0x74e-0x74e.7 (1)
|
||||
0x740| 01| .| [67]: 1 transition_type 0x74f-0x74f.7 (1)
|
||||
0x750|02 |. | [68]: 2 transition_type 0x750-0x750.7 (1)
|
||||
0x750| 01 | . | [69]: 1 transition_type 0x751-0x751.7 (1)
|
||||
0x750| 02 | . | [70]: 2 transition_type 0x752-0x752.7 (1)
|
||||
0x750| 01 | . | [71]: 1 transition_type 0x753-0x753.7 (1)
|
||||
0x750| 02 | . | [72]: 2 transition_type 0x754-0x754.7 (1)
|
||||
0x750| 01 | . | [73]: 1 transition_type 0x755-0x755.7 (1)
|
||||
0x750| 02 | . | [74]: 2 transition_type 0x756-0x756.7 (1)
|
||||
0x750| 01 | . | [75]: 1 transition_type 0x757-0x757.7 (1)
|
||||
0x750| 02 | . | [76]: 2 transition_type 0x758-0x758.7 (1)
|
||||
0x750| 01 | . | [77]: 1 transition_type 0x759-0x759.7 (1)
|
||||
0x750| 02 | . | [78]: 2 transition_type 0x75a-0x75a.7 (1)
|
||||
0x750| 01 | . | [79]: 1 transition_type 0x75b-0x75b.7 (1)
|
||||
0x750| 02 | . | [80]: 2 transition_type 0x75c-0x75c.7 (1)
|
||||
0x750| 01 | . | [81]: 1 transition_type 0x75d-0x75d.7 (1)
|
||||
0x750| 02 | . | [82]: 2 transition_type 0x75e-0x75e.7 (1)
|
||||
0x750| 01| .| [83]: 1 transition_type 0x75f-0x75f.7 (1)
|
||||
0x760|02 |. | [84]: 2 transition_type 0x760-0x760.7 (1)
|
||||
0x760| 01 | . | [85]: 1 transition_type 0x761-0x761.7 (1)
|
||||
0x760| 02 | . | [86]: 2 transition_type 0x762-0x762.7 (1)
|
||||
0x760| 01 | . | [87]: 1 transition_type 0x763-0x763.7 (1)
|
||||
0x760| 02 | . | [88]: 2 transition_type 0x764-0x764.7 (1)
|
||||
0x760| 01 | . | [89]: 1 transition_type 0x765-0x765.7 (1)
|
||||
0x760| 02 | . | [90]: 2 transition_type 0x766-0x766.7 (1)
|
||||
0x760| 01 | . | [91]: 1 transition_type 0x767-0x767.7 (1)
|
||||
0x760| 02 | . | [92]: 2 transition_type 0x768-0x768.7 (1)
|
||||
0x760| 01 | . | [93]: 1 transition_type 0x769-0x769.7 (1)
|
||||
0x760| 02 | . | [94]: 2 transition_type 0x76a-0x76a.7 (1)
|
||||
0x760| 01 | . | [95]: 1 transition_type 0x76b-0x76b.7 (1)
|
||||
0x760| 02 | . | [96]: 2 transition_type 0x76c-0x76c.7 (1)
|
||||
0x760| 01 | . | [97]: 1 transition_type 0x76d-0x76d.7 (1)
|
||||
0x760| 02 | . | [98]: 2 transition_type 0x76e-0x76e.7 (1)
|
||||
0x760| 01| .| [99]: 1 transition_type 0x76f-0x76f.7 (1)
|
||||
0x770|02 |. | [100]: 2 transition_type 0x770-0x770.7 (1)
|
||||
0x770| 01 | . | [101]: 1 transition_type 0x771-0x771.7 (1)
|
||||
0x770| 02 | . | [102]: 2 transition_type 0x772-0x772.7 (1)
|
||||
0x770| 01 | . | [103]: 1 transition_type 0x773-0x773.7 (1)
|
||||
0x770| 02 | . | [104]: 2 transition_type 0x774-0x774.7 (1)
|
||||
0x770| 01 | . | [105]: 1 transition_type 0x775-0x775.7 (1)
|
||||
0x770| 02 | . | [106]: 2 transition_type 0x776-0x776.7 (1)
|
||||
0x770| 01 | . | [107]: 1 transition_type 0x777-0x777.7 (1)
|
||||
0x770| 02 | . | [108]: 2 transition_type 0x778-0x778.7 (1)
|
||||
0x770| 01 | . | [109]: 1 transition_type 0x779-0x779.7 (1)
|
||||
0x770| 02 | . | [110]: 2 transition_type 0x77a-0x77a.7 (1)
|
||||
0x770| 01 | . | [111]: 1 transition_type 0x77b-0x77b.7 (1)
|
||||
0x770| 01 | . | [112]: 1 transition_type 0x77c-0x77c.7 (1)
|
||||
| | | local_time_type_records[0:3]: 0x77d-0x78e.7 (18)
|
||||
| | | [0]{}: local_time_type 0x77d-0x782.7 (6)
|
||||
0x770| 00 00 21| ..!| utoff: 8520 (valid) 0x77d-0x780.7 (4)
|
||||
0x780|48 |H |
|
||||
0x780| 00 | . | dst: 0 (valid) 0x781-0x781.7 (1)
|
||||
0x780| 00 | . | idx: 0 (valid) 0x782-0x782.7 (1)
|
||||
| | | [1]{}: local_time_type 0x783-0x788.7 (6)
|
||||
0x780| 00 00 2a 30 | ..*0 | utoff: 10800 (valid) 0x783-0x786.7 (4)
|
||||
0x780| 01 | . | dst: 1 (valid) 0x787-0x787.7 (1)
|
||||
0x780| 04 | . | idx: 4 (valid) 0x788-0x788.7 (1)
|
||||
| | | [2]{}: local_time_type 0x789-0x78e.7 (6)
|
||||
0x780| 00 00 1c 20 | ... | utoff: 7200 (valid) 0x789-0x78c.7 (4)
|
||||
0x780| 00 | . | dst: 0 (valid) 0x78d-0x78d.7 (1)
|
||||
0x780| 09 | . | idx: 9 (valid) 0x78e-0x78e.7 (1)
|
||||
| | | time_zone_designations[0:3]: 0x78f-0x79b.7 (13)
|
||||
0x780| 4c| L| [0]: "LMT" time_zone_designation 0x78f-0x792.7 (4)
|
||||
0x790|4d 54 00 |MT. |
|
||||
0x790| 45 45 53 54 00 | EEST. | [1]: "EEST" time_zone_designation 0x793-0x797.7 (5)
|
||||
0x790| 45 45 54 00 | EET. | [2]: "EET" time_zone_designation 0x798-0x79b.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x79c-0x8df.7 (324)
|
||||
| | | [0]{}: leap_second_record 0x79c-0x7a7.7 (12)
|
||||
0x790| 00 00 00 00| ....| occur: "1972-07-01T00:00:00Z" (78796800) 0x79c-0x7a3.7 (8)
|
||||
0x7a0|04 b2 58 00 |..X. |
|
||||
0x7a0| 00 00 00 01 | .... | corr: 1 0x7a4-0x7a7.7 (4)
|
||||
| | | [1]{}: leap_second_record 0x7a8-0x7b3.7 (12)
|
||||
0x7a0| 00 00 00 00 05 a4 ec 01| ........| occur: "1973-01-01T00:00:01Z" (94694401) 0x7a8-0x7af.7 (8)
|
||||
0x7b0|00 00 00 02 |.... | corr: 2 0x7b0-0x7b3.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x7b4-0x7bf.7 (12)
|
||||
0x7b0| 00 00 00 00 07 86 1f 82 | ........ | occur: "1974-01-01T00:00:02Z" (126230402) 0x7b4-0x7bb.7 (8)
|
||||
0x7b0| 00 00 00 03| ....| corr: 3 0x7bc-0x7bf.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x7c0-0x7cb.7 (12)
|
||||
0x7c0|00 00 00 00 09 67 53 03 |.....gS. | occur: "1975-01-01T00:00:03Z" (157766403) 0x7c0-0x7c7.7 (8)
|
||||
0x7c0| 00 00 00 04 | .... | corr: 4 0x7c8-0x7cb.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x7cc-0x7d7.7 (12)
|
||||
0x7c0| 00 00 00 00| ....| occur: "1976-01-01T00:00:04Z" (189302404) 0x7cc-0x7d3.7 (8)
|
||||
0x7d0|0b 48 86 84 |.H.. |
|
||||
0x7d0| 00 00 00 05 | .... | corr: 5 0x7d4-0x7d7.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x7d8-0x7e3.7 (12)
|
||||
0x7d0| 00 00 00 00 0d 2b 0b 85| .....+..| occur: "1977-01-01T00:00:05Z" (220924805) 0x7d8-0x7df.7 (8)
|
||||
0x7e0|00 00 00 06 |.... | corr: 6 0x7e0-0x7e3.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x7e4-0x7ef.7 (12)
|
||||
0x7e0| 00 00 00 00 0f 0c 3f 06 | ......?. | occur: "1978-01-01T00:00:06Z" (252460806) 0x7e4-0x7eb.7 (8)
|
||||
0x7e0| 00 00 00 07| ....| corr: 7 0x7ec-0x7ef.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x7f0-0x7fb.7 (12)
|
||||
0x7f0|00 00 00 00 10 ed 72 87 |......r. | occur: "1979-01-01T00:00:07Z" (283996807) 0x7f0-0x7f7.7 (8)
|
||||
0x7f0| 00 00 00 08 | .... | corr: 8 0x7f8-0x7fb.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x7fc-0x807.7 (12)
|
||||
0x7f0| 00 00 00 00| ....| occur: "1980-01-01T00:00:08Z" (315532808) 0x7fc-0x803.7 (8)
|
||||
0x800|12 ce a6 08 |.... |
|
||||
0x800| 00 00 00 09 | .... | corr: 9 0x804-0x807.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x808-0x813.7 (12)
|
||||
0x800| 00 00 00 00 15 9f ca 89| ........| occur: "1981-07-01T00:00:09Z" (362793609) 0x808-0x80f.7 (8)
|
||||
0x810|00 00 00 0a |.... | corr: 10 0x810-0x813.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x814-0x81f.7 (12)
|
||||
0x810| 00 00 00 00 17 80 fe 0a | ........ | occur: "1982-07-01T00:00:10Z" (394329610) 0x814-0x81b.7 (8)
|
||||
0x810| 00 00 00 0b| ....| corr: 11 0x81c-0x81f.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x820-0x82b.7 (12)
|
||||
0x820|00 00 00 00 19 62 31 8b |.....b1. | occur: "1983-07-01T00:00:11Z" (425865611) 0x820-0x827.7 (8)
|
||||
0x820| 00 00 00 0c | .... | corr: 12 0x828-0x82b.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x82c-0x837.7 (12)
|
||||
0x820| 00 00 00 00| ....| occur: "1985-07-01T00:00:12Z" (489024012) 0x82c-0x833.7 (8)
|
||||
0x830|1d 25 ea 0c |.%.. |
|
||||
0x830| 00 00 00 0d | .... | corr: 13 0x834-0x837.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x838-0x843.7 (12)
|
||||
0x830| 00 00 00 00 21 da e5 0d| ....!...| occur: "1988-01-01T00:00:13Z" (567993613) 0x838-0x83f.7 (8)
|
||||
0x840|00 00 00 0e |.... | corr: 14 0x840-0x843.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x844-0x84f.7 (12)
|
||||
0x840| 00 00 00 00 25 9e 9d 8e | ....%... | occur: "1990-01-01T00:00:14Z" (631152014) 0x844-0x84b.7 (8)
|
||||
0x840| 00 00 00 0f| ....| corr: 15 0x84c-0x84f.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x850-0x85b.7 (12)
|
||||
0x850|00 00 00 00 27 7f d1 0f |....'... | occur: "1991-01-01T00:00:15Z" (662688015) 0x850-0x857.7 (8)
|
||||
0x850| 00 00 00 10 | .... | corr: 16 0x858-0x85b.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x85c-0x867.7 (12)
|
||||
0x850| 00 00 00 00| ....| occur: "1992-07-01T00:00:16Z" (709948816) 0x85c-0x863.7 (8)
|
||||
0x860|2a 50 f5 90 |*P.. |
|
||||
0x860| 00 00 00 11 | .... | corr: 17 0x864-0x867.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x868-0x873.7 (12)
|
||||
0x860| 00 00 00 00 2c 32 29 11| ....,2).| occur: "1993-07-01T00:00:17Z" (741484817) 0x868-0x86f.7 (8)
|
||||
0x870|00 00 00 12 |.... | corr: 18 0x870-0x873.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x874-0x87f.7 (12)
|
||||
0x870| 00 00 00 00 2e 13 5c 92 | ......\. | occur: "1994-07-01T00:00:18Z" (773020818) 0x874-0x87b.7 (8)
|
||||
0x870| 00 00 00 13| ....| corr: 19 0x87c-0x87f.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x880-0x88b.7 (12)
|
||||
0x880|00 00 00 00 30 e7 24 13 |....0.$. | occur: "1996-01-01T00:00:19Z" (820454419) 0x880-0x887.7 (8)
|
||||
0x880| 00 00 00 14 | .... | corr: 20 0x888-0x88b.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x88c-0x897.7 (12)
|
||||
0x880| 00 00 00 00| ....| occur: "1997-07-01T00:00:20Z" (867715220) 0x88c-0x893.7 (8)
|
||||
0x890|33 b8 48 94 |3.H. |
|
||||
0x890| 00 00 00 15 | .... | corr: 21 0x894-0x897.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x898-0x8a3.7 (12)
|
||||
0x890| 00 00 00 00 36 8c 10 15| ....6...| occur: "1999-01-01T00:00:21Z" (915148821) 0x898-0x89f.7 (8)
|
||||
0x8a0|00 00 00 16 |.... | corr: 22 0x8a0-0x8a3.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x8a4-0x8af.7 (12)
|
||||
0x8a0| 00 00 00 00 43 b7 1b 96 | ....C... | occur: "2006-01-01T00:00:22Z" (1136073622) 0x8a4-0x8ab.7 (8)
|
||||
0x8a0| 00 00 00 17| ....| corr: 23 0x8ac-0x8af.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x8b0-0x8bb.7 (12)
|
||||
0x8b0|00 00 00 00 49 5c 07 97 |....I\.. | occur: "2009-01-01T00:00:23Z" (1230768023) 0x8b0-0x8b7.7 (8)
|
||||
0x8b0| 00 00 00 18 | .... | corr: 24 0x8b8-0x8bb.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x8bc-0x8c7.7 (12)
|
||||
0x8b0| 00 00 00 00| ....| occur: "2012-07-01T00:00:24Z" (1341100824) 0x8bc-0x8c3.7 (8)
|
||||
0x8c0|4f ef 93 18 |O... |
|
||||
0x8c0| 00 00 00 19 | .... | corr: 25 0x8c4-0x8c7.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x8c8-0x8d3.7 (12)
|
||||
0x8c0| 00 00 00 00 55 93 2d 99| ....U.-.| occur: "2015-07-01T00:00:25Z" (1435708825) 0x8c8-0x8cf.7 (8)
|
||||
0x8d0|00 00 00 1a |.... | corr: 26 0x8d0-0x8d3.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x8d4-0x8df.7 (12)
|
||||
0x8d0| 00 00 00 00 58 68 46 9a | ....XhF. | occur: "2017-01-01T00:00:26Z" (1483228826) 0x8d4-0x8db.7 (8)
|
||||
0x8d0| 00 00 00 1b| ....| corr: 27 0x8dc-0x8df.7 (4)
|
||||
| | | standard_wall_indicators[0:0]: 0x8e0-NA (0)
|
||||
| | | ut_local_indicators[0:0]: 0x8e0-NA (0)
|
||||
| | | footer{}: 0x8e0-0x8e1.7 (2)
|
||||
0x8e0|0a |. | nl1: 10 (valid) 0x8e0-0x8e0.7 (1)
|
||||
| | | tz_string: "" 0x8e1-NA (0)
|
||||
0x8e0| 0a| | .| | nl2: 10 (valid) 0x8e1-0x8e1.7 (1)
|
BIN
format/tzif/testdata/Belem
vendored
Normal file
BIN
format/tzif/testdata/Belem
vendored
Normal file
Binary file not shown.
380
format/tzif/testdata/Belem.fqtest
vendored
Normal file
380
format/tzif/testdata/Belem.fqtest
vendored
Normal file
@ -0,0 +1,380 @@
|
||||
$ fq -d tzif dv Belem
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: Belem (tzif) 0x0-0x455.7 (1110)
|
||||
| | | v1header{}: 0x0-0x2b.7 (44)
|
||||
0x000|54 5a 69 66 |TZif | magic: 0x545a6966 (valid) 0x0-0x3.7 (4)
|
||||
0x000| 32 | 2 | ver: "2" (0x32) (valid) 0x4-0x4.7 (1)
|
||||
0x000| 00 00 00 00 00 00 00 00 00 00 00| ...........| reserved: raw bits 0x5-0x13.7 (15)
|
||||
0x010|00 00 00 00 |.... |
|
||||
0x010| 00 00 00 00 | .... | isutcnt: 0 0x14-0x17.7 (4)
|
||||
0x010| 00 00 00 00 | .... | isstdcnt: 0 0x18-0x1b.7 (4)
|
||||
0x010| 00 00 00 1b| ....| leapcnt: 27 0x1c-0x1f.7 (4)
|
||||
0x020|00 00 00 1e |.... | timecnt: 30 0x20-0x23.7 (4)
|
||||
0x020| 00 00 00 03 | .... | typecnt: 3 0x24-0x27.7 (4)
|
||||
0x020| 00 00 00 0c | .... | charcnt: 12 0x28-0x2b.7 (4)
|
||||
| | | v1datablock{}: 0x2c-0x1b7.7 (396)
|
||||
| | | transition_times[0:30]: 0x2c-0xa3.7 (120)
|
||||
0x020| 96 aa 74 74| ..tt| [0]: "1914-01-01T03:13:56Z" (-1767213964) transition_time 0x2c-0x2f.7 (4)
|
||||
0x030|b8 0f 49 e0 |..I. | [1]: "1931-10-03T14:00:00Z" (-1206957600) transition_time 0x30-0x33.7 (4)
|
||||
0x030| b8 fd 40 a0 | ..@. | [2]: "1932-04-01T02:00:00Z" (-1191362400) transition_time 0x34-0x37.7 (4)
|
||||
0x030| b9 f1 34 30 | ..40 | [3]: "1932-10-03T03:00:00Z" (-1175374800) transition_time 0x38-0x3b.7 (4)
|
||||
0x030| ba de 74 20| ..t | [4]: "1933-04-01T02:00:00Z" (-1159826400) transition_time 0x3c-0x3f.7 (4)
|
||||
0x040|da 38 ae 30 |.8.0 | [5]: "1949-12-01T03:00:00Z" (-633819600) transition_time 0x40-0x43.7 (4)
|
||||
0x040| da eb fa 30 | ...0 | [6]: "1950-04-16T03:00:00Z" (-622069200) transition_time 0x44-0x47.7 (4)
|
||||
0x040| dc 19 e1 b0 | .... | [7]: "1950-12-01T03:00:00Z" (-602283600) transition_time 0x48-0x4b.7 (4)
|
||||
0x040| dc b9 59 20| ..Y | [8]: "1951-04-01T02:00:00Z" (-591832800) transition_time 0x4c-0x4f.7 (4)
|
||||
0x050|dd fb 15 30 |...0 | [9]: "1951-12-01T03:00:00Z" (-570747600) transition_time 0x50-0x53.7 (4)
|
||||
0x050| de 9b de 20 | ... | [10]: "1952-04-01T02:00:00Z" (-560210400) transition_time 0x54-0x57.7 (4)
|
||||
0x050| df dd 9a 30 | ...0 | [11]: "1952-12-01T03:00:00Z" (-539125200) transition_time 0x58-0x5b.7 (4)
|
||||
0x050| e0 54 33 20| .T3 | [12]: "1953-03-01T02:00:00Z" (-531352800) transition_time 0x5c-0x5f.7 (4)
|
||||
0x060|f4 97 ff b0 |.... | [13]: "1963-12-09T03:00:00Z" (-191365200) transition_time 0x60-0x63.7 (4)
|
||||
0x060| f5 05 5e 20 | ..^ | [14]: "1964-03-01T02:00:00Z" (-184197600) transition_time 0x64-0x67.7 (4)
|
||||
0x060| f6 c0 64 30 | ..d0 | [15]: "1965-01-31T03:00:00Z" (-155163600) transition_time 0x68-0x6b.7 (4)
|
||||
0x060| f7 0e 1e a0| ....| [16]: "1965-03-31T02:00:00Z" (-150069600) transition_time 0x6c-0x6f.7 (4)
|
||||
0x070|f8 51 2c 30 |.Q,0 | [17]: "1965-12-01T03:00:00Z" (-128898000) transition_time 0x70-0x73.7 (4)
|
||||
0x070| f8 c7 c5 20 | ... | [18]: "1966-03-01T02:00:00Z" (-121125600) transition_time 0x74-0x77.7 (4)
|
||||
0x070| fa 0a d2 b0 | .... | [19]: "1966-11-01T03:00:00Z" (-99954000) transition_time 0x78-0x7b.7 (4)
|
||||
0x070| fa a8 f8 a0| ....| [20]: "1967-03-01T02:00:00Z" (-89589600) transition_time 0x7c-0x7f.7 (4)
|
||||
0x080|fb ec 06 30 |...0 | [21]: "1967-11-01T03:00:00Z" (-68418000) transition_time 0x80-0x83.7 (4)
|
||||
0x080| fc 8b 7d a0 | ..}. | [22]: "1968-03-01T02:00:00Z" (-57967200) transition_time 0x84-0x87.7 (4)
|
||||
0x080| 1d c9 8e 3d | ...= | [23]: "1985-11-02T03:00:13Z" (499748413) transition_time 0x88-0x8b.7 (4)
|
||||
0x080| 1e 78 d7 ad| .x..| [24]: "1986-03-15T02:00:13Z" (511236013) transition_time 0x8c-0x8f.7 (4)
|
||||
0x090|1f a0 35 bd |..5. | [25]: "1986-10-25T03:00:13Z" (530593213) transition_time 0x90-0x93.7 (4)
|
||||
0x090| 20 33 cf ad | 3.. | [26]: "1987-02-14T02:00:13Z" (540266413) transition_time 0x94-0x97.7 (4)
|
||||
0x090| 21 81 69 3d | !.i= | [27]: "1987-10-25T03:00:13Z" (562129213) transition_time 0x98-0x9b.7 (4)
|
||||
0x090| 22 0b c8 ae| "...| [28]: "1988-02-07T02:00:14Z" (571197614) transition_time 0x9c-0x9f.7 (4)
|
||||
0x0a0|64 9b 78 1b |d.x. | [29]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0xa0-0xa3.7 (4)
|
||||
| | | transition_types[0:30]: 0xa4-0xc1.7 (30)
|
||||
0x0a0| 02 | . | [0]: 2 transition_type 0xa4-0xa4.7 (1)
|
||||
0x0a0| 01 | . | [1]: 1 transition_type 0xa5-0xa5.7 (1)
|
||||
0x0a0| 02 | . | [2]: 2 transition_type 0xa6-0xa6.7 (1)
|
||||
0x0a0| 01 | . | [3]: 1 transition_type 0xa7-0xa7.7 (1)
|
||||
0x0a0| 02 | . | [4]: 2 transition_type 0xa8-0xa8.7 (1)
|
||||
0x0a0| 01 | . | [5]: 1 transition_type 0xa9-0xa9.7 (1)
|
||||
0x0a0| 02 | . | [6]: 2 transition_type 0xaa-0xaa.7 (1)
|
||||
0x0a0| 01 | . | [7]: 1 transition_type 0xab-0xab.7 (1)
|
||||
0x0a0| 02 | . | [8]: 2 transition_type 0xac-0xac.7 (1)
|
||||
0x0a0| 01 | . | [9]: 1 transition_type 0xad-0xad.7 (1)
|
||||
0x0a0| 02 | . | [10]: 2 transition_type 0xae-0xae.7 (1)
|
||||
0x0a0| 01| .| [11]: 1 transition_type 0xaf-0xaf.7 (1)
|
||||
0x0b0|02 |. | [12]: 2 transition_type 0xb0-0xb0.7 (1)
|
||||
0x0b0| 01 | . | [13]: 1 transition_type 0xb1-0xb1.7 (1)
|
||||
0x0b0| 02 | . | [14]: 2 transition_type 0xb2-0xb2.7 (1)
|
||||
0x0b0| 01 | . | [15]: 1 transition_type 0xb3-0xb3.7 (1)
|
||||
0x0b0| 02 | . | [16]: 2 transition_type 0xb4-0xb4.7 (1)
|
||||
0x0b0| 01 | . | [17]: 1 transition_type 0xb5-0xb5.7 (1)
|
||||
0x0b0| 02 | . | [18]: 2 transition_type 0xb6-0xb6.7 (1)
|
||||
0x0b0| 01 | . | [19]: 1 transition_type 0xb7-0xb7.7 (1)
|
||||
0x0b0| 02 | . | [20]: 2 transition_type 0xb8-0xb8.7 (1)
|
||||
0x0b0| 01 | . | [21]: 1 transition_type 0xb9-0xb9.7 (1)
|
||||
0x0b0| 02 | . | [22]: 2 transition_type 0xba-0xba.7 (1)
|
||||
0x0b0| 01 | . | [23]: 1 transition_type 0xbb-0xbb.7 (1)
|
||||
0x0b0| 02 | . | [24]: 2 transition_type 0xbc-0xbc.7 (1)
|
||||
0x0b0| 01 | . | [25]: 1 transition_type 0xbd-0xbd.7 (1)
|
||||
0x0b0| 02 | . | [26]: 2 transition_type 0xbe-0xbe.7 (1)
|
||||
0x0b0| 01| .| [27]: 1 transition_type 0xbf-0xbf.7 (1)
|
||||
0x0c0|02 |. | [28]: 2 transition_type 0xc0-0xc0.7 (1)
|
||||
0x0c0| 02 | . | [29]: 2 transition_type 0xc1-0xc1.7 (1)
|
||||
| | | local_time_type_records[0:3]: 0xc2-0xd3.7 (18)
|
||||
| | | [0]{}: local_time_type 0xc2-0xc7.7 (6)
|
||||
0x0c0| ff ff d2 8c | .... | utoff: -11636 (valid) 0xc2-0xc5.7 (4)
|
||||
0x0c0| 00 | . | dst: 0 (valid) 0xc6-0xc6.7 (1)
|
||||
0x0c0| 00 | . | idx: 0 (valid) 0xc7-0xc7.7 (1)
|
||||
| | | [1]{}: local_time_type 0xc8-0xcd.7 (6)
|
||||
0x0c0| ff ff e3 e0 | .... | utoff: -7200 (valid) 0xc8-0xcb.7 (4)
|
||||
0x0c0| 01 | . | dst: 1 (valid) 0xcc-0xcc.7 (1)
|
||||
0x0c0| 04 | . | idx: 4 (valid) 0xcd-0xcd.7 (1)
|
||||
| | | [2]{}: local_time_type 0xce-0xd3.7 (6)
|
||||
0x0c0| ff ff| ..| utoff: -10800 (valid) 0xce-0xd1.7 (4)
|
||||
0x0d0|d5 d0 |.. |
|
||||
0x0d0| 00 | . | dst: 0 (valid) 0xd2-0xd2.7 (1)
|
||||
0x0d0| 08 | . | idx: 8 (valid) 0xd3-0xd3.7 (1)
|
||||
| | | time_zone_designations[0:3]: 0xd4-0xdf.7 (12)
|
||||
0x0d0| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0xd4-0xd7.7 (4)
|
||||
0x0d0| 2d 30 32 00 | -02. | [1]: "-02" time_zone_designation 0xd8-0xdb.7 (4)
|
||||
0x0d0| 2d 30 33 00| -03.| [2]: "-03" time_zone_designation 0xdc-0xdf.7 (4)
|
||||
| | | leap_second_records[0:27]: 0xe0-0x1b7.7 (216)
|
||||
| | | [0]{}: leap_second_record 0xe0-0xe7.7 (8)
|
||||
0x0e0|04 b2 58 00 |..X. | occur: "1972-07-01T00:00:00Z" (78796800) 0xe0-0xe3.7 (4)
|
||||
0x0e0| 00 00 00 01 | .... | corr: 1 0xe4-0xe7.7 (4)
|
||||
| | | [1]{}: leap_second_record 0xe8-0xef.7 (8)
|
||||
0x0e0| 05 a4 ec 01 | .... | occur: "1973-01-01T00:00:01Z" (94694401) 0xe8-0xeb.7 (4)
|
||||
0x0e0| 00 00 00 02| ....| corr: 2 0xec-0xef.7 (4)
|
||||
| | | [2]{}: leap_second_record 0xf0-0xf7.7 (8)
|
||||
0x0f0|07 86 1f 82 |.... | occur: "1974-01-01T00:00:02Z" (126230402) 0xf0-0xf3.7 (4)
|
||||
0x0f0| 00 00 00 03 | .... | corr: 3 0xf4-0xf7.7 (4)
|
||||
| | | [3]{}: leap_second_record 0xf8-0xff.7 (8)
|
||||
0x0f0| 09 67 53 03 | .gS. | occur: "1975-01-01T00:00:03Z" (157766403) 0xf8-0xfb.7 (4)
|
||||
0x0f0| 00 00 00 04| ....| corr: 4 0xfc-0xff.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x100-0x107.7 (8)
|
||||
0x100|0b 48 86 84 |.H.. | occur: "1976-01-01T00:00:04Z" (189302404) 0x100-0x103.7 (4)
|
||||
0x100| 00 00 00 05 | .... | corr: 5 0x104-0x107.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x108-0x10f.7 (8)
|
||||
0x100| 0d 2b 0b 85 | .+.. | occur: "1977-01-01T00:00:05Z" (220924805) 0x108-0x10b.7 (4)
|
||||
0x100| 00 00 00 06| ....| corr: 6 0x10c-0x10f.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x110-0x117.7 (8)
|
||||
0x110|0f 0c 3f 06 |..?. | occur: "1978-01-01T00:00:06Z" (252460806) 0x110-0x113.7 (4)
|
||||
0x110| 00 00 00 07 | .... | corr: 7 0x114-0x117.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x118-0x11f.7 (8)
|
||||
0x110| 10 ed 72 87 | ..r. | occur: "1979-01-01T00:00:07Z" (283996807) 0x118-0x11b.7 (4)
|
||||
0x110| 00 00 00 08| ....| corr: 8 0x11c-0x11f.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x120-0x127.7 (8)
|
||||
0x120|12 ce a6 08 |.... | occur: "1980-01-01T00:00:08Z" (315532808) 0x120-0x123.7 (4)
|
||||
0x120| 00 00 00 09 | .... | corr: 9 0x124-0x127.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x128-0x12f.7 (8)
|
||||
0x120| 15 9f ca 89 | .... | occur: "1981-07-01T00:00:09Z" (362793609) 0x128-0x12b.7 (4)
|
||||
0x120| 00 00 00 0a| ....| corr: 10 0x12c-0x12f.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x130-0x137.7 (8)
|
||||
0x130|17 80 fe 0a |.... | occur: "1982-07-01T00:00:10Z" (394329610) 0x130-0x133.7 (4)
|
||||
0x130| 00 00 00 0b | .... | corr: 11 0x134-0x137.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x138-0x13f.7 (8)
|
||||
0x130| 19 62 31 8b | .b1. | occur: "1983-07-01T00:00:11Z" (425865611) 0x138-0x13b.7 (4)
|
||||
0x130| 00 00 00 0c| ....| corr: 12 0x13c-0x13f.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x140-0x147.7 (8)
|
||||
0x140|1d 25 ea 0c |.%.. | occur: "1985-07-01T00:00:12Z" (489024012) 0x140-0x143.7 (4)
|
||||
0x140| 00 00 00 0d | .... | corr: 13 0x144-0x147.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x148-0x14f.7 (8)
|
||||
0x140| 21 da e5 0d | !... | occur: "1988-01-01T00:00:13Z" (567993613) 0x148-0x14b.7 (4)
|
||||
0x140| 00 00 00 0e| ....| corr: 14 0x14c-0x14f.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x150-0x157.7 (8)
|
||||
0x150|25 9e 9d 8e |%... | occur: "1990-01-01T00:00:14Z" (631152014) 0x150-0x153.7 (4)
|
||||
0x150| 00 00 00 0f | .... | corr: 15 0x154-0x157.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x158-0x15f.7 (8)
|
||||
0x150| 27 7f d1 0f | '... | occur: "1991-01-01T00:00:15Z" (662688015) 0x158-0x15b.7 (4)
|
||||
0x150| 00 00 00 10| ....| corr: 16 0x15c-0x15f.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x160-0x167.7 (8)
|
||||
0x160|2a 50 f5 90 |*P.. | occur: "1992-07-01T00:00:16Z" (709948816) 0x160-0x163.7 (4)
|
||||
0x160| 00 00 00 11 | .... | corr: 17 0x164-0x167.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x168-0x16f.7 (8)
|
||||
0x160| 2c 32 29 11 | ,2). | occur: "1993-07-01T00:00:17Z" (741484817) 0x168-0x16b.7 (4)
|
||||
0x160| 00 00 00 12| ....| corr: 18 0x16c-0x16f.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x170-0x177.7 (8)
|
||||
0x170|2e 13 5c 92 |..\. | occur: "1994-07-01T00:00:18Z" (773020818) 0x170-0x173.7 (4)
|
||||
0x170| 00 00 00 13 | .... | corr: 19 0x174-0x177.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x178-0x17f.7 (8)
|
||||
0x170| 30 e7 24 13 | 0.$. | occur: "1996-01-01T00:00:19Z" (820454419) 0x178-0x17b.7 (4)
|
||||
0x170| 00 00 00 14| ....| corr: 20 0x17c-0x17f.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x180-0x187.7 (8)
|
||||
0x180|33 b8 48 94 |3.H. | occur: "1997-07-01T00:00:20Z" (867715220) 0x180-0x183.7 (4)
|
||||
0x180| 00 00 00 15 | .... | corr: 21 0x184-0x187.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x188-0x18f.7 (8)
|
||||
0x180| 36 8c 10 15 | 6... | occur: "1999-01-01T00:00:21Z" (915148821) 0x188-0x18b.7 (4)
|
||||
0x180| 00 00 00 16| ....| corr: 22 0x18c-0x18f.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x190-0x197.7 (8)
|
||||
0x190|43 b7 1b 96 |C... | occur: "2006-01-01T00:00:22Z" (1136073622) 0x190-0x193.7 (4)
|
||||
0x190| 00 00 00 17 | .... | corr: 23 0x194-0x197.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x198-0x19f.7 (8)
|
||||
0x190| 49 5c 07 97 | I\.. | occur: "2009-01-01T00:00:23Z" (1230768023) 0x198-0x19b.7 (4)
|
||||
0x190| 00 00 00 18| ....| corr: 24 0x19c-0x19f.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x1a0-0x1a7.7 (8)
|
||||
0x1a0|4f ef 93 18 |O... | occur: "2012-07-01T00:00:24Z" (1341100824) 0x1a0-0x1a3.7 (4)
|
||||
0x1a0| 00 00 00 19 | .... | corr: 25 0x1a4-0x1a7.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x1a8-0x1af.7 (8)
|
||||
0x1a0| 55 93 2d 99 | U.-. | occur: "2015-07-01T00:00:25Z" (1435708825) 0x1a8-0x1ab.7 (4)
|
||||
0x1a0| 00 00 00 1a| ....| corr: 26 0x1ac-0x1af.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x1b0-0x1b7.7 (8)
|
||||
0x1b0|58 68 46 9a |XhF. | occur: "2017-01-01T00:00:26Z" (1483228826) 0x1b0-0x1b3.7 (4)
|
||||
0x1b0| 00 00 00 1b | .... | corr: 27 0x1b4-0x1b7.7 (4)
|
||||
| | | standard_wall_indicators[0:0]: 0x1b8-NA (0)
|
||||
| | | ut_local_indicators[0:0]: 0x1b8-NA (0)
|
||||
| | | v2plusheader{}: 0x1b8-0x1e3.7 (44)
|
||||
0x1b0| 54 5a 69 66 | TZif | magic: 0x545a6966 (valid) 0x1b8-0x1bb.7 (4)
|
||||
0x1b0| 32 | 2 | ver: "2" (0x32) (valid) 0x1bc-0x1bc.7 (1)
|
||||
0x1b0| 00 00 00| ...| reserved: raw bits 0x1bd-0x1cb.7 (15)
|
||||
0x1c0|00 00 00 00 00 00 00 00 00 00 00 00 |............ |
|
||||
0x1c0| 00 00 00 00| ....| isutcnt: 0 0x1cc-0x1cf.7 (4)
|
||||
0x1d0|00 00 00 00 |.... | isstdcnt: 0 0x1d0-0x1d3.7 (4)
|
||||
0x1d0| 00 00 00 1b | .... | leapcnt: 27 0x1d4-0x1d7.7 (4)
|
||||
0x1d0| 00 00 00 1e | .... | timecnt: 30 0x1d8-0x1db.7 (4)
|
||||
0x1d0| 00 00 00 03| ....| typecnt: 3 0x1dc-0x1df.7 (4)
|
||||
0x1e0|00 00 00 0c |.... | charcnt: 12 0x1e0-0x1e3.7 (4)
|
||||
| | | v2plusdatablock{}: 0x1e4-0x453.7 (624)
|
||||
| | | transition_times[0:30]: 0x1e4-0x2d3.7 (240)
|
||||
0x1e0| ff ff ff ff 96 aa 74 74 | ......tt | [0]: "1914-01-01T03:13:56Z" (-1767213964) transition_time 0x1e4-0x1eb.7 (8)
|
||||
0x1e0| ff ff ff ff| ....| [1]: "1931-10-03T14:00:00Z" (-1206957600) transition_time 0x1ec-0x1f3.7 (8)
|
||||
0x1f0|b8 0f 49 e0 |..I. |
|
||||
0x1f0| ff ff ff ff b8 fd 40 a0 | ......@. | [2]: "1932-04-01T02:00:00Z" (-1191362400) transition_time 0x1f4-0x1fb.7 (8)
|
||||
0x1f0| ff ff ff ff| ....| [3]: "1932-10-03T03:00:00Z" (-1175374800) transition_time 0x1fc-0x203.7 (8)
|
||||
0x200|b9 f1 34 30 |..40 |
|
||||
0x200| ff ff ff ff ba de 74 20 | ......t | [4]: "1933-04-01T02:00:00Z" (-1159826400) transition_time 0x204-0x20b.7 (8)
|
||||
0x200| ff ff ff ff| ....| [5]: "1949-12-01T03:00:00Z" (-633819600) transition_time 0x20c-0x213.7 (8)
|
||||
0x210|da 38 ae 30 |.8.0 |
|
||||
0x210| ff ff ff ff da eb fa 30 | .......0 | [6]: "1950-04-16T03:00:00Z" (-622069200) transition_time 0x214-0x21b.7 (8)
|
||||
0x210| ff ff ff ff| ....| [7]: "1950-12-01T03:00:00Z" (-602283600) transition_time 0x21c-0x223.7 (8)
|
||||
0x220|dc 19 e1 b0 |.... |
|
||||
0x220| ff ff ff ff dc b9 59 20 | ......Y | [8]: "1951-04-01T02:00:00Z" (-591832800) transition_time 0x224-0x22b.7 (8)
|
||||
0x220| ff ff ff ff| ....| [9]: "1951-12-01T03:00:00Z" (-570747600) transition_time 0x22c-0x233.7 (8)
|
||||
0x230|dd fb 15 30 |...0 |
|
||||
0x230| ff ff ff ff de 9b de 20 | ....... | [10]: "1952-04-01T02:00:00Z" (-560210400) transition_time 0x234-0x23b.7 (8)
|
||||
0x230| ff ff ff ff| ....| [11]: "1952-12-01T03:00:00Z" (-539125200) transition_time 0x23c-0x243.7 (8)
|
||||
0x240|df dd 9a 30 |...0 |
|
||||
0x240| ff ff ff ff e0 54 33 20 | .....T3 | [12]: "1953-03-01T02:00:00Z" (-531352800) transition_time 0x244-0x24b.7 (8)
|
||||
0x240| ff ff ff ff| ....| [13]: "1963-12-09T03:00:00Z" (-191365200) transition_time 0x24c-0x253.7 (8)
|
||||
0x250|f4 97 ff b0 |.... |
|
||||
0x250| ff ff ff ff f5 05 5e 20 | ......^ | [14]: "1964-03-01T02:00:00Z" (-184197600) transition_time 0x254-0x25b.7 (8)
|
||||
0x250| ff ff ff ff| ....| [15]: "1965-01-31T03:00:00Z" (-155163600) transition_time 0x25c-0x263.7 (8)
|
||||
0x260|f6 c0 64 30 |..d0 |
|
||||
0x260| ff ff ff ff f7 0e 1e a0 | ........ | [16]: "1965-03-31T02:00:00Z" (-150069600) transition_time 0x264-0x26b.7 (8)
|
||||
0x260| ff ff ff ff| ....| [17]: "1965-12-01T03:00:00Z" (-128898000) transition_time 0x26c-0x273.7 (8)
|
||||
0x270|f8 51 2c 30 |.Q,0 |
|
||||
0x270| ff ff ff ff f8 c7 c5 20 | ....... | [18]: "1966-03-01T02:00:00Z" (-121125600) transition_time 0x274-0x27b.7 (8)
|
||||
0x270| ff ff ff ff| ....| [19]: "1966-11-01T03:00:00Z" (-99954000) transition_time 0x27c-0x283.7 (8)
|
||||
0x280|fa 0a d2 b0 |.... |
|
||||
0x280| ff ff ff ff fa a8 f8 a0 | ........ | [20]: "1967-03-01T02:00:00Z" (-89589600) transition_time 0x284-0x28b.7 (8)
|
||||
0x280| ff ff ff ff| ....| [21]: "1967-11-01T03:00:00Z" (-68418000) transition_time 0x28c-0x293.7 (8)
|
||||
0x290|fb ec 06 30 |...0 |
|
||||
0x290| ff ff ff ff fc 8b 7d a0 | ......}. | [22]: "1968-03-01T02:00:00Z" (-57967200) transition_time 0x294-0x29b.7 (8)
|
||||
0x290| 00 00 00 00| ....| [23]: "1985-11-02T03:00:13Z" (499748413) transition_time 0x29c-0x2a3.7 (8)
|
||||
0x2a0|1d c9 8e 3d |...= |
|
||||
0x2a0| 00 00 00 00 1e 78 d7 ad | .....x.. | [24]: "1986-03-15T02:00:13Z" (511236013) transition_time 0x2a4-0x2ab.7 (8)
|
||||
0x2a0| 00 00 00 00| ....| [25]: "1986-10-25T03:00:13Z" (530593213) transition_time 0x2ac-0x2b3.7 (8)
|
||||
0x2b0|1f a0 35 bd |..5. |
|
||||
0x2b0| 00 00 00 00 20 33 cf ad | .... 3.. | [26]: "1987-02-14T02:00:13Z" (540266413) transition_time 0x2b4-0x2bb.7 (8)
|
||||
0x2b0| 00 00 00 00| ....| [27]: "1987-10-25T03:00:13Z" (562129213) transition_time 0x2bc-0x2c3.7 (8)
|
||||
0x2c0|21 81 69 3d |!.i= |
|
||||
0x2c0| 00 00 00 00 22 0b c8 ae | ...."... | [28]: "1988-02-07T02:00:14Z" (571197614) transition_time 0x2c4-0x2cb.7 (8)
|
||||
0x2c0| 00 00 00 00| ....| [29]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x2cc-0x2d3.7 (8)
|
||||
0x2d0|64 9b 78 1b |d.x. |
|
||||
| | | transition_types[0:30]: 0x2d4-0x2f1.7 (30)
|
||||
0x2d0| 02 | . | [0]: 2 transition_type 0x2d4-0x2d4.7 (1)
|
||||
0x2d0| 01 | . | [1]: 1 transition_type 0x2d5-0x2d5.7 (1)
|
||||
0x2d0| 02 | . | [2]: 2 transition_type 0x2d6-0x2d6.7 (1)
|
||||
0x2d0| 01 | . | [3]: 1 transition_type 0x2d7-0x2d7.7 (1)
|
||||
0x2d0| 02 | . | [4]: 2 transition_type 0x2d8-0x2d8.7 (1)
|
||||
0x2d0| 01 | . | [5]: 1 transition_type 0x2d9-0x2d9.7 (1)
|
||||
0x2d0| 02 | . | [6]: 2 transition_type 0x2da-0x2da.7 (1)
|
||||
0x2d0| 01 | . | [7]: 1 transition_type 0x2db-0x2db.7 (1)
|
||||
0x2d0| 02 | . | [8]: 2 transition_type 0x2dc-0x2dc.7 (1)
|
||||
0x2d0| 01 | . | [9]: 1 transition_type 0x2dd-0x2dd.7 (1)
|
||||
0x2d0| 02 | . | [10]: 2 transition_type 0x2de-0x2de.7 (1)
|
||||
0x2d0| 01| .| [11]: 1 transition_type 0x2df-0x2df.7 (1)
|
||||
0x2e0|02 |. | [12]: 2 transition_type 0x2e0-0x2e0.7 (1)
|
||||
0x2e0| 01 | . | [13]: 1 transition_type 0x2e1-0x2e1.7 (1)
|
||||
0x2e0| 02 | . | [14]: 2 transition_type 0x2e2-0x2e2.7 (1)
|
||||
0x2e0| 01 | . | [15]: 1 transition_type 0x2e3-0x2e3.7 (1)
|
||||
0x2e0| 02 | . | [16]: 2 transition_type 0x2e4-0x2e4.7 (1)
|
||||
0x2e0| 01 | . | [17]: 1 transition_type 0x2e5-0x2e5.7 (1)
|
||||
0x2e0| 02 | . | [18]: 2 transition_type 0x2e6-0x2e6.7 (1)
|
||||
0x2e0| 01 | . | [19]: 1 transition_type 0x2e7-0x2e7.7 (1)
|
||||
0x2e0| 02 | . | [20]: 2 transition_type 0x2e8-0x2e8.7 (1)
|
||||
0x2e0| 01 | . | [21]: 1 transition_type 0x2e9-0x2e9.7 (1)
|
||||
0x2e0| 02 | . | [22]: 2 transition_type 0x2ea-0x2ea.7 (1)
|
||||
0x2e0| 01 | . | [23]: 1 transition_type 0x2eb-0x2eb.7 (1)
|
||||
0x2e0| 02 | . | [24]: 2 transition_type 0x2ec-0x2ec.7 (1)
|
||||
0x2e0| 01 | . | [25]: 1 transition_type 0x2ed-0x2ed.7 (1)
|
||||
0x2e0| 02 | . | [26]: 2 transition_type 0x2ee-0x2ee.7 (1)
|
||||
0x2e0| 01| .| [27]: 1 transition_type 0x2ef-0x2ef.7 (1)
|
||||
0x2f0|02 |. | [28]: 2 transition_type 0x2f0-0x2f0.7 (1)
|
||||
0x2f0| 02 | . | [29]: 2 transition_type 0x2f1-0x2f1.7 (1)
|
||||
| | | local_time_type_records[0:3]: 0x2f2-0x303.7 (18)
|
||||
| | | [0]{}: local_time_type 0x2f2-0x2f7.7 (6)
|
||||
0x2f0| ff ff d2 8c | .... | utoff: -11636 (valid) 0x2f2-0x2f5.7 (4)
|
||||
0x2f0| 00 | . | dst: 0 (valid) 0x2f6-0x2f6.7 (1)
|
||||
0x2f0| 00 | . | idx: 0 (valid) 0x2f7-0x2f7.7 (1)
|
||||
| | | [1]{}: local_time_type 0x2f8-0x2fd.7 (6)
|
||||
0x2f0| ff ff e3 e0 | .... | utoff: -7200 (valid) 0x2f8-0x2fb.7 (4)
|
||||
0x2f0| 01 | . | dst: 1 (valid) 0x2fc-0x2fc.7 (1)
|
||||
0x2f0| 04 | . | idx: 4 (valid) 0x2fd-0x2fd.7 (1)
|
||||
| | | [2]{}: local_time_type 0x2fe-0x303.7 (6)
|
||||
0x2f0| ff ff| ..| utoff: -10800 (valid) 0x2fe-0x301.7 (4)
|
||||
0x300|d5 d0 |.. |
|
||||
0x300| 00 | . | dst: 0 (valid) 0x302-0x302.7 (1)
|
||||
0x300| 08 | . | idx: 8 (valid) 0x303-0x303.7 (1)
|
||||
| | | time_zone_designations[0:3]: 0x304-0x30f.7 (12)
|
||||
0x300| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x304-0x307.7 (4)
|
||||
0x300| 2d 30 32 00 | -02. | [1]: "-02" time_zone_designation 0x308-0x30b.7 (4)
|
||||
0x300| 2d 30 33 00| -03.| [2]: "-03" time_zone_designation 0x30c-0x30f.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x310-0x453.7 (324)
|
||||
| | | [0]{}: leap_second_record 0x310-0x31b.7 (12)
|
||||
0x310|00 00 00 00 04 b2 58 00 |......X. | occur: "1972-07-01T00:00:00Z" (78796800) 0x310-0x317.7 (8)
|
||||
0x310| 00 00 00 01 | .... | corr: 1 0x318-0x31b.7 (4)
|
||||
| | | [1]{}: leap_second_record 0x31c-0x327.7 (12)
|
||||
0x310| 00 00 00 00| ....| occur: "1973-01-01T00:00:01Z" (94694401) 0x31c-0x323.7 (8)
|
||||
0x320|05 a4 ec 01 |.... |
|
||||
0x320| 00 00 00 02 | .... | corr: 2 0x324-0x327.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x328-0x333.7 (12)
|
||||
0x320| 00 00 00 00 07 86 1f 82| ........| occur: "1974-01-01T00:00:02Z" (126230402) 0x328-0x32f.7 (8)
|
||||
0x330|00 00 00 03 |.... | corr: 3 0x330-0x333.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x334-0x33f.7 (12)
|
||||
0x330| 00 00 00 00 09 67 53 03 | .....gS. | occur: "1975-01-01T00:00:03Z" (157766403) 0x334-0x33b.7 (8)
|
||||
0x330| 00 00 00 04| ....| corr: 4 0x33c-0x33f.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x340-0x34b.7 (12)
|
||||
0x340|00 00 00 00 0b 48 86 84 |.....H.. | occur: "1976-01-01T00:00:04Z" (189302404) 0x340-0x347.7 (8)
|
||||
0x340| 00 00 00 05 | .... | corr: 5 0x348-0x34b.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x34c-0x357.7 (12)
|
||||
0x340| 00 00 00 00| ....| occur: "1977-01-01T00:00:05Z" (220924805) 0x34c-0x353.7 (8)
|
||||
0x350|0d 2b 0b 85 |.+.. |
|
||||
0x350| 00 00 00 06 | .... | corr: 6 0x354-0x357.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x358-0x363.7 (12)
|
||||
0x350| 00 00 00 00 0f 0c 3f 06| ......?.| occur: "1978-01-01T00:00:06Z" (252460806) 0x358-0x35f.7 (8)
|
||||
0x360|00 00 00 07 |.... | corr: 7 0x360-0x363.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x364-0x36f.7 (12)
|
||||
0x360| 00 00 00 00 10 ed 72 87 | ......r. | occur: "1979-01-01T00:00:07Z" (283996807) 0x364-0x36b.7 (8)
|
||||
0x360| 00 00 00 08| ....| corr: 8 0x36c-0x36f.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x370-0x37b.7 (12)
|
||||
0x370|00 00 00 00 12 ce a6 08 |........ | occur: "1980-01-01T00:00:08Z" (315532808) 0x370-0x377.7 (8)
|
||||
0x370| 00 00 00 09 | .... | corr: 9 0x378-0x37b.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x37c-0x387.7 (12)
|
||||
0x370| 00 00 00 00| ....| occur: "1981-07-01T00:00:09Z" (362793609) 0x37c-0x383.7 (8)
|
||||
0x380|15 9f ca 89 |.... |
|
||||
0x380| 00 00 00 0a | .... | corr: 10 0x384-0x387.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x388-0x393.7 (12)
|
||||
0x380| 00 00 00 00 17 80 fe 0a| ........| occur: "1982-07-01T00:00:10Z" (394329610) 0x388-0x38f.7 (8)
|
||||
0x390|00 00 00 0b |.... | corr: 11 0x390-0x393.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x394-0x39f.7 (12)
|
||||
0x390| 00 00 00 00 19 62 31 8b | .....b1. | occur: "1983-07-01T00:00:11Z" (425865611) 0x394-0x39b.7 (8)
|
||||
0x390| 00 00 00 0c| ....| corr: 12 0x39c-0x39f.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x3a0-0x3ab.7 (12)
|
||||
0x3a0|00 00 00 00 1d 25 ea 0c |.....%.. | occur: "1985-07-01T00:00:12Z" (489024012) 0x3a0-0x3a7.7 (8)
|
||||
0x3a0| 00 00 00 0d | .... | corr: 13 0x3a8-0x3ab.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x3ac-0x3b7.7 (12)
|
||||
0x3a0| 00 00 00 00| ....| occur: "1988-01-01T00:00:13Z" (567993613) 0x3ac-0x3b3.7 (8)
|
||||
0x3b0|21 da e5 0d |!... |
|
||||
0x3b0| 00 00 00 0e | .... | corr: 14 0x3b4-0x3b7.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x3b8-0x3c3.7 (12)
|
||||
0x3b0| 00 00 00 00 25 9e 9d 8e| ....%...| occur: "1990-01-01T00:00:14Z" (631152014) 0x3b8-0x3bf.7 (8)
|
||||
0x3c0|00 00 00 0f |.... | corr: 15 0x3c0-0x3c3.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x3c4-0x3cf.7 (12)
|
||||
0x3c0| 00 00 00 00 27 7f d1 0f | ....'... | occur: "1991-01-01T00:00:15Z" (662688015) 0x3c4-0x3cb.7 (8)
|
||||
0x3c0| 00 00 00 10| ....| corr: 16 0x3cc-0x3cf.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x3d0-0x3db.7 (12)
|
||||
0x3d0|00 00 00 00 2a 50 f5 90 |....*P.. | occur: "1992-07-01T00:00:16Z" (709948816) 0x3d0-0x3d7.7 (8)
|
||||
0x3d0| 00 00 00 11 | .... | corr: 17 0x3d8-0x3db.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x3dc-0x3e7.7 (12)
|
||||
0x3d0| 00 00 00 00| ....| occur: "1993-07-01T00:00:17Z" (741484817) 0x3dc-0x3e3.7 (8)
|
||||
0x3e0|2c 32 29 11 |,2). |
|
||||
0x3e0| 00 00 00 12 | .... | corr: 18 0x3e4-0x3e7.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x3e8-0x3f3.7 (12)
|
||||
0x3e0| 00 00 00 00 2e 13 5c 92| ......\.| occur: "1994-07-01T00:00:18Z" (773020818) 0x3e8-0x3ef.7 (8)
|
||||
0x3f0|00 00 00 13 |.... | corr: 19 0x3f0-0x3f3.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x3f4-0x3ff.7 (12)
|
||||
0x3f0| 00 00 00 00 30 e7 24 13 | ....0.$. | occur: "1996-01-01T00:00:19Z" (820454419) 0x3f4-0x3fb.7 (8)
|
||||
0x3f0| 00 00 00 14| ....| corr: 20 0x3fc-0x3ff.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x400-0x40b.7 (12)
|
||||
0x400|00 00 00 00 33 b8 48 94 |....3.H. | occur: "1997-07-01T00:00:20Z" (867715220) 0x400-0x407.7 (8)
|
||||
0x400| 00 00 00 15 | .... | corr: 21 0x408-0x40b.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x40c-0x417.7 (12)
|
||||
0x400| 00 00 00 00| ....| occur: "1999-01-01T00:00:21Z" (915148821) 0x40c-0x413.7 (8)
|
||||
0x410|36 8c 10 15 |6... |
|
||||
0x410| 00 00 00 16 | .... | corr: 22 0x414-0x417.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x418-0x423.7 (12)
|
||||
0x410| 00 00 00 00 43 b7 1b 96| ....C...| occur: "2006-01-01T00:00:22Z" (1136073622) 0x418-0x41f.7 (8)
|
||||
0x420|00 00 00 17 |.... | corr: 23 0x420-0x423.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x424-0x42f.7 (12)
|
||||
0x420| 00 00 00 00 49 5c 07 97 | ....I\.. | occur: "2009-01-01T00:00:23Z" (1230768023) 0x424-0x42b.7 (8)
|
||||
0x420| 00 00 00 18| ....| corr: 24 0x42c-0x42f.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x430-0x43b.7 (12)
|
||||
0x430|00 00 00 00 4f ef 93 18 |....O... | occur: "2012-07-01T00:00:24Z" (1341100824) 0x430-0x437.7 (8)
|
||||
0x430| 00 00 00 19 | .... | corr: 25 0x438-0x43b.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x43c-0x447.7 (12)
|
||||
0x430| 00 00 00 00| ....| occur: "2015-07-01T00:00:25Z" (1435708825) 0x43c-0x443.7 (8)
|
||||
0x440|55 93 2d 99 |U.-. |
|
||||
0x440| 00 00 00 1a | .... | corr: 26 0x444-0x447.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x448-0x453.7 (12)
|
||||
0x440| 00 00 00 00 58 68 46 9a| ....XhF.| occur: "2017-01-01T00:00:26Z" (1483228826) 0x448-0x44f.7 (8)
|
||||
0x450|00 00 00 1b |.... | corr: 27 0x450-0x453.7 (4)
|
||||
| | | standard_wall_indicators[0:0]: 0x454-NA (0)
|
||||
| | | ut_local_indicators[0:0]: 0x454-NA (0)
|
||||
| | | footer{}: 0x454-0x455.7 (2)
|
||||
0x450| 0a | . | nl1: 10 (valid) 0x454-0x454.7 (1)
|
||||
| | | tz_string: "" 0x455-NA (0)
|
||||
0x450| 0a| | .| | nl2: 10 (valid) 0x455-0x455.7 (1)
|
BIN
format/tzif/testdata/Belgrade
vendored
Normal file
BIN
format/tzif/testdata/Belgrade
vendored
Normal file
Binary file not shown.
617
format/tzif/testdata/Belgrade.fqtest
vendored
Normal file
617
format/tzif/testdata/Belgrade.fqtest
vendored
Normal file
@ -0,0 +1,617 @@
|
||||
$ fq -d tzif dv Belgrade
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: Belgrade (tzif) 0x0-0x77f.7 (1920)
|
||||
| | | v1header{}: 0x0-0x2b.7 (44)
|
||||
0x000|54 5a 69 66 |TZif | magic: 0x545a6966 (valid) 0x0-0x3.7 (4)
|
||||
0x000| 32 | 2 | ver: "2" (0x32) (valid) 0x4-0x4.7 (1)
|
||||
0x000| 00 00 00 00 00 00 00 00 00 00 00| ...........| reserved: raw bits 0x5-0x13.7 (15)
|
||||
0x010|00 00 00 00 |.... |
|
||||
0x010| 00 00 00 07 | .... | isutcnt: 7 0x14-0x17.7 (4)
|
||||
0x010| 00 00 00 07 | .... | isstdcnt: 7 0x18-0x1b.7 (4)
|
||||
0x010| 00 00 00 00| ....| leapcnt: 0 0x1c-0x1f.7 (4)
|
||||
0x020|00 00 00 77 |...w | timecnt: 119 0x20-0x23.7 (4)
|
||||
0x020| 00 00 00 07 | .... | typecnt: 7 0x24-0x27.7 (4)
|
||||
0x020| 00 00 00 0d | .... | charcnt: 13 0x28-0x2b.7 (4)
|
||||
| | | v1datablock{}: 0x2c-0x2c3.7 (664)
|
||||
| | | transition_times[0:119]: 0x2c-0x207.7 (476)
|
||||
0x020| 80 00 00 00| ....| [0]: "1901-12-13T20:45:52Z" (-2147483648) transition_time 0x2c-0x2f.7 (4)
|
||||
0x030|ca 02 35 e0 |..5. | [1]: "1941-04-18T22:00:00Z" (-905824800) transition_time 0x30-0x33.7 (4)
|
||||
0x030| cc e7 4b 10 | ..K. | [2]: "1942-11-02T01:00:00Z" (-857257200) transition_time 0x34-0x37.7 (4)
|
||||
0x030| cd a9 17 90 | .... | [3]: "1943-03-29T01:00:00Z" (-844556400) transition_time 0x38-0x3b.7 (4)
|
||||
0x030| ce a2 43 10| ..C.| [4]: "1943-10-04T01:00:00Z" (-828226800) transition_time 0x3c-0x3f.7 (4)
|
||||
0x040|cf 92 34 10 |..4. | [5]: "1944-04-03T01:00:00Z" (-812502000) transition_time 0x40-0x43.7 (4)
|
||||
0x040| d0 82 25 10 | ..%. | [6]: "1944-10-02T01:00:00Z" (-796777200) transition_time 0x44-0x47.7 (4)
|
||||
0x040| d1 a1 8c 10 | .... | [7]: "1945-05-08T01:00:00Z" (-777942000) transition_time 0x48-0x4b.7 (4)
|
||||
0x040| d2 4e 40 90| .N@.| [8]: "1945-09-16T01:00:00Z" (-766623600) transition_time 0x4c-0x4f.7 (4)
|
||||
0x050|18 e3 af 90 |.... | [9]: "1983-03-27T01:00:00Z" (417574800) transition_time 0x50-0x53.7 (4)
|
||||
0x050| 19 d3 a0 90 | .... | [10]: "1983-09-25T01:00:00Z" (433299600) transition_time 0x54-0x57.7 (4)
|
||||
0x050| 1a c3 91 90 | .... | [11]: "1984-03-25T01:00:00Z" (449024400) transition_time 0x58-0x5b.7 (4)
|
||||
0x050| 1b bc bd 10| ....| [12]: "1984-09-30T01:00:00Z" (465354000) transition_time 0x5c-0x5f.7 (4)
|
||||
0x060|1c ac ae 10 |.... | [13]: "1985-03-31T01:00:00Z" (481078800) transition_time 0x60-0x63.7 (4)
|
||||
0x060| 1d 9c 9f 10 | .... | [14]: "1985-09-29T01:00:00Z" (496803600) transition_time 0x64-0x67.7 (4)
|
||||
0x060| 1e 8c 90 10 | .... | [15]: "1986-03-30T01:00:00Z" (512528400) transition_time 0x68-0x6b.7 (4)
|
||||
0x060| 1f 7c 81 10| .|..| [16]: "1986-09-28T01:00:00Z" (528253200) transition_time 0x6c-0x6f.7 (4)
|
||||
0x070|20 6c 72 10 | lr. | [17]: "1987-03-29T01:00:00Z" (543978000) transition_time 0x70-0x73.7 (4)
|
||||
0x070| 21 5c 63 10 | !\c. | [18]: "1987-09-27T01:00:00Z" (559702800) transition_time 0x74-0x77.7 (4)
|
||||
0x070| 22 4c 54 10 | "LT. | [19]: "1988-03-27T01:00:00Z" (575427600) transition_time 0x78-0x7b.7 (4)
|
||||
0x070| 23 3c 45 10| #<E.| [20]: "1988-09-25T01:00:00Z" (591152400) transition_time 0x7c-0x7f.7 (4)
|
||||
0x080|24 2c 36 10 |$,6. | [21]: "1989-03-26T01:00:00Z" (606877200) transition_time 0x80-0x83.7 (4)
|
||||
0x080| 25 1c 27 10 | %.'. | [22]: "1989-09-24T01:00:00Z" (622602000) transition_time 0x84-0x87.7 (4)
|
||||
0x080| 26 0c 18 10 | &... | [23]: "1990-03-25T01:00:00Z" (638326800) transition_time 0x88-0x8b.7 (4)
|
||||
0x080| 27 05 43 90| '.C.| [24]: "1990-09-30T01:00:00Z" (654656400) transition_time 0x8c-0x8f.7 (4)
|
||||
0x090|27 f5 34 90 |'.4. | [25]: "1991-03-31T01:00:00Z" (670381200) transition_time 0x90-0x93.7 (4)
|
||||
0x090| 28 e5 25 90 | (.%. | [26]: "1991-09-29T01:00:00Z" (686106000) transition_time 0x94-0x97.7 (4)
|
||||
0x090| 29 d5 16 90 | )... | [27]: "1992-03-29T01:00:00Z" (701830800) transition_time 0x98-0x9b.7 (4)
|
||||
0x090| 2a c5 07 90| *...| [28]: "1992-09-27T01:00:00Z" (717555600) transition_time 0x9c-0x9f.7 (4)
|
||||
0x0a0|2b b4 f8 90 |+... | [29]: "1993-03-28T01:00:00Z" (733280400) transition_time 0xa0-0xa3.7 (4)
|
||||
0x0a0| 2c a4 e9 90 | ,... | [30]: "1993-09-26T01:00:00Z" (749005200) transition_time 0xa4-0xa7.7 (4)
|
||||
0x0a0| 2d 94 da 90 | -... | [31]: "1994-03-27T01:00:00Z" (764730000) transition_time 0xa8-0xab.7 (4)
|
||||
0x0a0| 2e 84 cb 90| ....| [32]: "1994-09-25T01:00:00Z" (780454800) transition_time 0xac-0xaf.7 (4)
|
||||
0x0b0|2f 74 bc 90 |/t.. | [33]: "1995-03-26T01:00:00Z" (796179600) transition_time 0xb0-0xb3.7 (4)
|
||||
0x0b0| 30 64 ad 90 | 0d.. | [34]: "1995-09-24T01:00:00Z" (811904400) transition_time 0xb4-0xb7.7 (4)
|
||||
0x0b0| 31 5d d9 10 | 1].. | [35]: "1996-03-31T01:00:00Z" (828234000) transition_time 0xb8-0xbb.7 (4)
|
||||
0x0b0| 32 72 b4 10| 2r..| [36]: "1996-10-27T01:00:00Z" (846378000) transition_time 0xbc-0xbf.7 (4)
|
||||
0x0c0|33 3d bb 10 |3=.. | [37]: "1997-03-30T01:00:00Z" (859683600) transition_time 0xc0-0xc3.7 (4)
|
||||
0x0c0| 34 52 96 10 | 4R.. | [38]: "1997-10-26T01:00:00Z" (877827600) transition_time 0xc4-0xc7.7 (4)
|
||||
0x0c0| 35 1d 9d 10 | 5... | [39]: "1998-03-29T01:00:00Z" (891133200) transition_time 0xc8-0xcb.7 (4)
|
||||
0x0c0| 36 32 78 10| 62x.| [40]: "1998-10-25T01:00:00Z" (909277200) transition_time 0xcc-0xcf.7 (4)
|
||||
0x0d0|36 fd 7f 10 |6... | [41]: "1999-03-28T01:00:00Z" (922582800) transition_time 0xd0-0xd3.7 (4)
|
||||
0x0d0| 38 1b 94 90 | 8... | [42]: "1999-10-31T01:00:00Z" (941331600) transition_time 0xd4-0xd7.7 (4)
|
||||
0x0d0| 38 dd 61 10 | 8.a. | [43]: "2000-03-26T01:00:00Z" (954032400) transition_time 0xd8-0xdb.7 (4)
|
||||
0x0d0| 39 fb 76 90| 9.v.| [44]: "2000-10-29T01:00:00Z" (972781200) transition_time 0xdc-0xdf.7 (4)
|
||||
0x0e0|3a bd 43 10 |:.C. | [45]: "2001-03-25T01:00:00Z" (985482000) transition_time 0xe0-0xe3.7 (4)
|
||||
0x0e0| 3b db 58 90 | ;.X. | [46]: "2001-10-28T01:00:00Z" (1004230800) transition_time 0xe4-0xe7.7 (4)
|
||||
0x0e0| 3c a6 5f 90 | <._. | [47]: "2002-03-31T01:00:00Z" (1017536400) transition_time 0xe8-0xeb.7 (4)
|
||||
0x0e0| 3d bb 3a 90| =.:.| [48]: "2002-10-27T01:00:00Z" (1035680400) transition_time 0xec-0xef.7 (4)
|
||||
0x0f0|3e 86 41 90 |>.A. | [49]: "2003-03-30T01:00:00Z" (1048986000) transition_time 0xf0-0xf3.7 (4)
|
||||
0x0f0| 3f 9b 1c 90 | ?... | [50]: "2003-10-26T01:00:00Z" (1067130000) transition_time 0xf4-0xf7.7 (4)
|
||||
0x0f0| 40 66 23 90 | @f#. | [51]: "2004-03-28T01:00:00Z" (1080435600) transition_time 0xf8-0xfb.7 (4)
|
||||
0x0f0| 41 84 39 10| A.9.| [52]: "2004-10-31T01:00:00Z" (1099184400) transition_time 0xfc-0xff.7 (4)
|
||||
0x100|42 46 05 90 |BF.. | [53]: "2005-03-27T01:00:00Z" (1111885200) transition_time 0x100-0x103.7 (4)
|
||||
0x100| 43 64 1b 10 | Cd.. | [54]: "2005-10-30T01:00:00Z" (1130634000) transition_time 0x104-0x107.7 (4)
|
||||
0x100| 44 25 e7 90 | D%.. | [55]: "2006-03-26T01:00:00Z" (1143334800) transition_time 0x108-0x10b.7 (4)
|
||||
0x100| 45 43 fd 10| EC..| [56]: "2006-10-29T01:00:00Z" (1162083600) transition_time 0x10c-0x10f.7 (4)
|
||||
0x110|46 05 c9 90 |F... | [57]: "2007-03-25T01:00:00Z" (1174784400) transition_time 0x110-0x113.7 (4)
|
||||
0x110| 47 23 df 10 | G#.. | [58]: "2007-10-28T01:00:00Z" (1193533200) transition_time 0x114-0x117.7 (4)
|
||||
0x110| 47 ee e6 10 | G... | [59]: "2008-03-30T01:00:00Z" (1206838800) transition_time 0x118-0x11b.7 (4)
|
||||
0x110| 49 03 c1 10| I...| [60]: "2008-10-26T01:00:00Z" (1224982800) transition_time 0x11c-0x11f.7 (4)
|
||||
0x120|49 ce c8 10 |I... | [61]: "2009-03-29T01:00:00Z" (1238288400) transition_time 0x120-0x123.7 (4)
|
||||
0x120| 4a e3 a3 10 | J... | [62]: "2009-10-25T01:00:00Z" (1256432400) transition_time 0x124-0x127.7 (4)
|
||||
0x120| 4b ae aa 10 | K... | [63]: "2010-03-28T01:00:00Z" (1269738000) transition_time 0x128-0x12b.7 (4)
|
||||
0x120| 4c cc bf 90| L...| [64]: "2010-10-31T01:00:00Z" (1288486800) transition_time 0x12c-0x12f.7 (4)
|
||||
0x130|4d 8e 8c 10 |M... | [65]: "2011-03-27T01:00:00Z" (1301187600) transition_time 0x130-0x133.7 (4)
|
||||
0x130| 4e ac a1 90 | N... | [66]: "2011-10-30T01:00:00Z" (1319936400) transition_time 0x134-0x137.7 (4)
|
||||
0x130| 4f 6e 6e 10 | Onn. | [67]: "2012-03-25T01:00:00Z" (1332637200) transition_time 0x138-0x13b.7 (4)
|
||||
0x130| 50 8c 83 90| P...| [68]: "2012-10-28T01:00:00Z" (1351386000) transition_time 0x13c-0x13f.7 (4)
|
||||
0x140|51 57 8a 90 |QW.. | [69]: "2013-03-31T01:00:00Z" (1364691600) transition_time 0x140-0x143.7 (4)
|
||||
0x140| 52 6c 65 90 | Rle. | [70]: "2013-10-27T01:00:00Z" (1382835600) transition_time 0x144-0x147.7 (4)
|
||||
0x140| 53 37 6c 90 | S7l. | [71]: "2014-03-30T01:00:00Z" (1396141200) transition_time 0x148-0x14b.7 (4)
|
||||
0x140| 54 4c 47 90| TLG.| [72]: "2014-10-26T01:00:00Z" (1414285200) transition_time 0x14c-0x14f.7 (4)
|
||||
0x150|55 17 4e 90 |U.N. | [73]: "2015-03-29T01:00:00Z" (1427590800) transition_time 0x150-0x153.7 (4)
|
||||
0x150| 56 2c 29 90 | V,). | [74]: "2015-10-25T01:00:00Z" (1445734800) transition_time 0x154-0x157.7 (4)
|
||||
0x150| 56 f7 30 90 | V.0. | [75]: "2016-03-27T01:00:00Z" (1459040400) transition_time 0x158-0x15b.7 (4)
|
||||
0x150| 58 15 46 10| X.F.| [76]: "2016-10-30T01:00:00Z" (1477789200) transition_time 0x15c-0x15f.7 (4)
|
||||
0x160|58 d7 12 90 |X... | [77]: "2017-03-26T01:00:00Z" (1490490000) transition_time 0x160-0x163.7 (4)
|
||||
0x160| 59 f5 28 10 | Y.(. | [78]: "2017-10-29T01:00:00Z" (1509238800) transition_time 0x164-0x167.7 (4)
|
||||
0x160| 5a b6 f4 90 | Z... | [79]: "2018-03-25T01:00:00Z" (1521939600) transition_time 0x168-0x16b.7 (4)
|
||||
0x160| 5b d5 0a 10| [...| [80]: "2018-10-28T01:00:00Z" (1540688400) transition_time 0x16c-0x16f.7 (4)
|
||||
0x170|5c a0 11 10 |\... | [81]: "2019-03-31T01:00:00Z" (1553994000) transition_time 0x170-0x173.7 (4)
|
||||
0x170| 5d b4 ec 10 | ]... | [82]: "2019-10-27T01:00:00Z" (1572138000) transition_time 0x174-0x177.7 (4)
|
||||
0x170| 5e 7f f3 10 | ^... | [83]: "2020-03-29T01:00:00Z" (1585443600) transition_time 0x178-0x17b.7 (4)
|
||||
0x170| 5f 94 ce 10| _...| [84]: "2020-10-25T01:00:00Z" (1603587600) transition_time 0x17c-0x17f.7 (4)
|
||||
0x180|60 5f d5 10 |`_.. | [85]: "2021-03-28T01:00:00Z" (1616893200) transition_time 0x180-0x183.7 (4)
|
||||
0x180| 61 7d ea 90 | a}.. | [86]: "2021-10-31T01:00:00Z" (1635642000) transition_time 0x184-0x187.7 (4)
|
||||
0x180| 62 3f b7 10 | b?.. | [87]: "2022-03-27T01:00:00Z" (1648342800) transition_time 0x188-0x18b.7 (4)
|
||||
0x180| 63 5d cc 90| c]..| [88]: "2022-10-30T01:00:00Z" (1667091600) transition_time 0x18c-0x18f.7 (4)
|
||||
0x190|64 1f 99 10 |d... | [89]: "2023-03-26T01:00:00Z" (1679792400) transition_time 0x190-0x193.7 (4)
|
||||
0x190| 65 3d ae 90 | e=.. | [90]: "2023-10-29T01:00:00Z" (1698541200) transition_time 0x194-0x197.7 (4)
|
||||
0x190| 66 08 b5 90 | f... | [91]: "2024-03-31T01:00:00Z" (1711846800) transition_time 0x198-0x19b.7 (4)
|
||||
0x190| 67 1d 90 90| g...| [92]: "2024-10-27T01:00:00Z" (1729990800) transition_time 0x19c-0x19f.7 (4)
|
||||
0x1a0|67 e8 97 90 |g... | [93]: "2025-03-30T01:00:00Z" (1743296400) transition_time 0x1a0-0x1a3.7 (4)
|
||||
0x1a0| 68 fd 72 90 | h.r. | [94]: "2025-10-26T01:00:00Z" (1761440400) transition_time 0x1a4-0x1a7.7 (4)
|
||||
0x1a0| 69 c8 79 90 | i.y. | [95]: "2026-03-29T01:00:00Z" (1774746000) transition_time 0x1a8-0x1ab.7 (4)
|
||||
0x1a0| 6a dd 54 90| j.T.| [96]: "2026-10-25T01:00:00Z" (1792890000) transition_time 0x1ac-0x1af.7 (4)
|
||||
0x1b0|6b a8 5b 90 |k.[. | [97]: "2027-03-28T01:00:00Z" (1806195600) transition_time 0x1b0-0x1b3.7 (4)
|
||||
0x1b0| 6c c6 71 10 | l.q. | [98]: "2027-10-31T01:00:00Z" (1824944400) transition_time 0x1b4-0x1b7.7 (4)
|
||||
0x1b0| 6d 88 3d 90 | m.=. | [99]: "2028-03-26T01:00:00Z" (1837645200) transition_time 0x1b8-0x1bb.7 (4)
|
||||
0x1b0| 6e a6 53 10| n.S.| [100]: "2028-10-29T01:00:00Z" (1856394000) transition_time 0x1bc-0x1bf.7 (4)
|
||||
0x1c0|6f 68 1f 90 |oh.. | [101]: "2029-03-25T01:00:00Z" (1869094800) transition_time 0x1c0-0x1c3.7 (4)
|
||||
0x1c0| 70 86 35 10 | p.5. | [102]: "2029-10-28T01:00:00Z" (1887843600) transition_time 0x1c4-0x1c7.7 (4)
|
||||
0x1c0| 71 51 3c 10 | qQ<. | [103]: "2030-03-31T01:00:00Z" (1901149200) transition_time 0x1c8-0x1cb.7 (4)
|
||||
0x1c0| 72 66 17 10| rf..| [104]: "2030-10-27T01:00:00Z" (1919293200) transition_time 0x1cc-0x1cf.7 (4)
|
||||
0x1d0|73 31 1e 10 |s1.. | [105]: "2031-03-30T01:00:00Z" (1932598800) transition_time 0x1d0-0x1d3.7 (4)
|
||||
0x1d0| 74 45 f9 10 | tE.. | [106]: "2031-10-26T01:00:00Z" (1950742800) transition_time 0x1d4-0x1d7.7 (4)
|
||||
0x1d0| 75 11 00 10 | u... | [107]: "2032-03-28T01:00:00Z" (1964048400) transition_time 0x1d8-0x1db.7 (4)
|
||||
0x1d0| 76 2f 15 90| v/..| [108]: "2032-10-31T01:00:00Z" (1982797200) transition_time 0x1dc-0x1df.7 (4)
|
||||
0x1e0|76 f0 e2 10 |v... | [109]: "2033-03-27T01:00:00Z" (1995498000) transition_time 0x1e0-0x1e3.7 (4)
|
||||
0x1e0| 78 0e f7 90 | x... | [110]: "2033-10-30T01:00:00Z" (2014246800) transition_time 0x1e4-0x1e7.7 (4)
|
||||
0x1e0| 78 d0 c4 10 | x... | [111]: "2034-03-26T01:00:00Z" (2026947600) transition_time 0x1e8-0x1eb.7 (4)
|
||||
0x1e0| 79 ee d9 90| y...| [112]: "2034-10-29T01:00:00Z" (2045696400) transition_time 0x1ec-0x1ef.7 (4)
|
||||
0x1f0|7a b0 a6 10 |z... | [113]: "2035-03-25T01:00:00Z" (2058397200) transition_time 0x1f0-0x1f3.7 (4)
|
||||
0x1f0| 7b ce bb 90 | {... | [114]: "2035-10-28T01:00:00Z" (2077146000) transition_time 0x1f4-0x1f7.7 (4)
|
||||
0x1f0| 7c 99 c2 90 | |... | [115]: "2036-03-30T01:00:00Z" (2090451600) transition_time 0x1f8-0x1fb.7 (4)
|
||||
0x1f0| 7d ae 9d 90| }...| [116]: "2036-10-26T01:00:00Z" (2108595600) transition_time 0x1fc-0x1ff.7 (4)
|
||||
0x200|7e 79 a4 90 |~y.. | [117]: "2037-03-29T01:00:00Z" (2121901200) transition_time 0x200-0x203.7 (4)
|
||||
0x200| 7f 8e 7f 90 | .... | [118]: "2037-10-25T01:00:00Z" (2140045200) transition_time 0x204-0x207.7 (4)
|
||||
| | | transition_types[0:119]: 0x208-0x27e.7 (119)
|
||||
0x200| 01 | . | [0]: 1 transition_type 0x208-0x208.7 (1)
|
||||
0x200| 04 | . | [1]: 4 transition_type 0x209-0x209.7 (1)
|
||||
0x200| 02 | . | [2]: 2 transition_type 0x20a-0x20a.7 (1)
|
||||
0x200| 03 | . | [3]: 3 transition_type 0x20b-0x20b.7 (1)
|
||||
0x200| 02 | . | [4]: 2 transition_type 0x20c-0x20c.7 (1)
|
||||
0x200| 03 | . | [5]: 3 transition_type 0x20d-0x20d.7 (1)
|
||||
0x200| 02 | . | [6]: 2 transition_type 0x20e-0x20e.7 (1)
|
||||
0x200| 03| .| [7]: 3 transition_type 0x20f-0x20f.7 (1)
|
||||
0x210|02 |. | [8]: 2 transition_type 0x210-0x210.7 (1)
|
||||
0x210| 05 | . | [9]: 5 transition_type 0x211-0x211.7 (1)
|
||||
0x210| 06 | . | [10]: 6 transition_type 0x212-0x212.7 (1)
|
||||
0x210| 05 | . | [11]: 5 transition_type 0x213-0x213.7 (1)
|
||||
0x210| 06 | . | [12]: 6 transition_type 0x214-0x214.7 (1)
|
||||
0x210| 05 | . | [13]: 5 transition_type 0x215-0x215.7 (1)
|
||||
0x210| 06 | . | [14]: 6 transition_type 0x216-0x216.7 (1)
|
||||
0x210| 05 | . | [15]: 5 transition_type 0x217-0x217.7 (1)
|
||||
0x210| 06 | . | [16]: 6 transition_type 0x218-0x218.7 (1)
|
||||
0x210| 05 | . | [17]: 5 transition_type 0x219-0x219.7 (1)
|
||||
0x210| 06 | . | [18]: 6 transition_type 0x21a-0x21a.7 (1)
|
||||
0x210| 05 | . | [19]: 5 transition_type 0x21b-0x21b.7 (1)
|
||||
0x210| 06 | . | [20]: 6 transition_type 0x21c-0x21c.7 (1)
|
||||
0x210| 05 | . | [21]: 5 transition_type 0x21d-0x21d.7 (1)
|
||||
0x210| 06 | . | [22]: 6 transition_type 0x21e-0x21e.7 (1)
|
||||
0x210| 05| .| [23]: 5 transition_type 0x21f-0x21f.7 (1)
|
||||
0x220|06 |. | [24]: 6 transition_type 0x220-0x220.7 (1)
|
||||
0x220| 05 | . | [25]: 5 transition_type 0x221-0x221.7 (1)
|
||||
0x220| 06 | . | [26]: 6 transition_type 0x222-0x222.7 (1)
|
||||
0x220| 05 | . | [27]: 5 transition_type 0x223-0x223.7 (1)
|
||||
0x220| 06 | . | [28]: 6 transition_type 0x224-0x224.7 (1)
|
||||
0x220| 05 | . | [29]: 5 transition_type 0x225-0x225.7 (1)
|
||||
0x220| 06 | . | [30]: 6 transition_type 0x226-0x226.7 (1)
|
||||
0x220| 05 | . | [31]: 5 transition_type 0x227-0x227.7 (1)
|
||||
0x220| 06 | . | [32]: 6 transition_type 0x228-0x228.7 (1)
|
||||
0x220| 05 | . | [33]: 5 transition_type 0x229-0x229.7 (1)
|
||||
0x220| 06 | . | [34]: 6 transition_type 0x22a-0x22a.7 (1)
|
||||
0x220| 05 | . | [35]: 5 transition_type 0x22b-0x22b.7 (1)
|
||||
0x220| 06 | . | [36]: 6 transition_type 0x22c-0x22c.7 (1)
|
||||
0x220| 05 | . | [37]: 5 transition_type 0x22d-0x22d.7 (1)
|
||||
0x220| 06 | . | [38]: 6 transition_type 0x22e-0x22e.7 (1)
|
||||
0x220| 05| .| [39]: 5 transition_type 0x22f-0x22f.7 (1)
|
||||
0x230|06 |. | [40]: 6 transition_type 0x230-0x230.7 (1)
|
||||
0x230| 05 | . | [41]: 5 transition_type 0x231-0x231.7 (1)
|
||||
0x230| 06 | . | [42]: 6 transition_type 0x232-0x232.7 (1)
|
||||
0x230| 05 | . | [43]: 5 transition_type 0x233-0x233.7 (1)
|
||||
0x230| 06 | . | [44]: 6 transition_type 0x234-0x234.7 (1)
|
||||
0x230| 05 | . | [45]: 5 transition_type 0x235-0x235.7 (1)
|
||||
0x230| 06 | . | [46]: 6 transition_type 0x236-0x236.7 (1)
|
||||
0x230| 05 | . | [47]: 5 transition_type 0x237-0x237.7 (1)
|
||||
0x230| 06 | . | [48]: 6 transition_type 0x238-0x238.7 (1)
|
||||
0x230| 05 | . | [49]: 5 transition_type 0x239-0x239.7 (1)
|
||||
0x230| 06 | . | [50]: 6 transition_type 0x23a-0x23a.7 (1)
|
||||
0x230| 05 | . | [51]: 5 transition_type 0x23b-0x23b.7 (1)
|
||||
0x230| 06 | . | [52]: 6 transition_type 0x23c-0x23c.7 (1)
|
||||
0x230| 05 | . | [53]: 5 transition_type 0x23d-0x23d.7 (1)
|
||||
0x230| 06 | . | [54]: 6 transition_type 0x23e-0x23e.7 (1)
|
||||
0x230| 05| .| [55]: 5 transition_type 0x23f-0x23f.7 (1)
|
||||
0x240|06 |. | [56]: 6 transition_type 0x240-0x240.7 (1)
|
||||
0x240| 05 | . | [57]: 5 transition_type 0x241-0x241.7 (1)
|
||||
0x240| 06 | . | [58]: 6 transition_type 0x242-0x242.7 (1)
|
||||
0x240| 05 | . | [59]: 5 transition_type 0x243-0x243.7 (1)
|
||||
0x240| 06 | . | [60]: 6 transition_type 0x244-0x244.7 (1)
|
||||
0x240| 05 | . | [61]: 5 transition_type 0x245-0x245.7 (1)
|
||||
0x240| 06 | . | [62]: 6 transition_type 0x246-0x246.7 (1)
|
||||
0x240| 05 | . | [63]: 5 transition_type 0x247-0x247.7 (1)
|
||||
0x240| 06 | . | [64]: 6 transition_type 0x248-0x248.7 (1)
|
||||
0x240| 05 | . | [65]: 5 transition_type 0x249-0x249.7 (1)
|
||||
0x240| 06 | . | [66]: 6 transition_type 0x24a-0x24a.7 (1)
|
||||
0x240| 05 | . | [67]: 5 transition_type 0x24b-0x24b.7 (1)
|
||||
0x240| 06 | . | [68]: 6 transition_type 0x24c-0x24c.7 (1)
|
||||
0x240| 05 | . | [69]: 5 transition_type 0x24d-0x24d.7 (1)
|
||||
0x240| 06 | . | [70]: 6 transition_type 0x24e-0x24e.7 (1)
|
||||
0x240| 05| .| [71]: 5 transition_type 0x24f-0x24f.7 (1)
|
||||
0x250|06 |. | [72]: 6 transition_type 0x250-0x250.7 (1)
|
||||
0x250| 05 | . | [73]: 5 transition_type 0x251-0x251.7 (1)
|
||||
0x250| 06 | . | [74]: 6 transition_type 0x252-0x252.7 (1)
|
||||
0x250| 05 | . | [75]: 5 transition_type 0x253-0x253.7 (1)
|
||||
0x250| 06 | . | [76]: 6 transition_type 0x254-0x254.7 (1)
|
||||
0x250| 05 | . | [77]: 5 transition_type 0x255-0x255.7 (1)
|
||||
0x250| 06 | . | [78]: 6 transition_type 0x256-0x256.7 (1)
|
||||
0x250| 05 | . | [79]: 5 transition_type 0x257-0x257.7 (1)
|
||||
0x250| 06 | . | [80]: 6 transition_type 0x258-0x258.7 (1)
|
||||
0x250| 05 | . | [81]: 5 transition_type 0x259-0x259.7 (1)
|
||||
0x250| 06 | . | [82]: 6 transition_type 0x25a-0x25a.7 (1)
|
||||
0x250| 05 | . | [83]: 5 transition_type 0x25b-0x25b.7 (1)
|
||||
0x250| 06 | . | [84]: 6 transition_type 0x25c-0x25c.7 (1)
|
||||
0x250| 05 | . | [85]: 5 transition_type 0x25d-0x25d.7 (1)
|
||||
0x250| 06 | . | [86]: 6 transition_type 0x25e-0x25e.7 (1)
|
||||
0x250| 05| .| [87]: 5 transition_type 0x25f-0x25f.7 (1)
|
||||
0x260|06 |. | [88]: 6 transition_type 0x260-0x260.7 (1)
|
||||
0x260| 05 | . | [89]: 5 transition_type 0x261-0x261.7 (1)
|
||||
0x260| 06 | . | [90]: 6 transition_type 0x262-0x262.7 (1)
|
||||
0x260| 05 | . | [91]: 5 transition_type 0x263-0x263.7 (1)
|
||||
0x260| 06 | . | [92]: 6 transition_type 0x264-0x264.7 (1)
|
||||
0x260| 05 | . | [93]: 5 transition_type 0x265-0x265.7 (1)
|
||||
0x260| 06 | . | [94]: 6 transition_type 0x266-0x266.7 (1)
|
||||
0x260| 05 | . | [95]: 5 transition_type 0x267-0x267.7 (1)
|
||||
0x260| 06 | . | [96]: 6 transition_type 0x268-0x268.7 (1)
|
||||
0x260| 05 | . | [97]: 5 transition_type 0x269-0x269.7 (1)
|
||||
0x260| 06 | . | [98]: 6 transition_type 0x26a-0x26a.7 (1)
|
||||
0x260| 05 | . | [99]: 5 transition_type 0x26b-0x26b.7 (1)
|
||||
0x260| 06 | . | [100]: 6 transition_type 0x26c-0x26c.7 (1)
|
||||
0x260| 05 | . | [101]: 5 transition_type 0x26d-0x26d.7 (1)
|
||||
0x260| 06 | . | [102]: 6 transition_type 0x26e-0x26e.7 (1)
|
||||
0x260| 05| .| [103]: 5 transition_type 0x26f-0x26f.7 (1)
|
||||
0x270|06 |. | [104]: 6 transition_type 0x270-0x270.7 (1)
|
||||
0x270| 05 | . | [105]: 5 transition_type 0x271-0x271.7 (1)
|
||||
0x270| 06 | . | [106]: 6 transition_type 0x272-0x272.7 (1)
|
||||
0x270| 05 | . | [107]: 5 transition_type 0x273-0x273.7 (1)
|
||||
0x270| 06 | . | [108]: 6 transition_type 0x274-0x274.7 (1)
|
||||
0x270| 05 | . | [109]: 5 transition_type 0x275-0x275.7 (1)
|
||||
0x270| 06 | . | [110]: 6 transition_type 0x276-0x276.7 (1)
|
||||
0x270| 05 | . | [111]: 5 transition_type 0x277-0x277.7 (1)
|
||||
0x270| 06 | . | [112]: 6 transition_type 0x278-0x278.7 (1)
|
||||
0x270| 05 | . | [113]: 5 transition_type 0x279-0x279.7 (1)
|
||||
0x270| 06 | . | [114]: 6 transition_type 0x27a-0x27a.7 (1)
|
||||
0x270| 05 | . | [115]: 5 transition_type 0x27b-0x27b.7 (1)
|
||||
0x270| 06 | . | [116]: 6 transition_type 0x27c-0x27c.7 (1)
|
||||
0x270| 05 | . | [117]: 5 transition_type 0x27d-0x27d.7 (1)
|
||||
0x270| 06 | . | [118]: 6 transition_type 0x27e-0x27e.7 (1)
|
||||
| | | local_time_type_records[0:7]: 0x27f-0x2a8.7 (42)
|
||||
| | | [0]{}: local_time_type 0x27f-0x284.7 (6)
|
||||
0x270| 00| .| utoff: 4920 (valid) 0x27f-0x282.7 (4)
|
||||
0x280|00 13 38 |..8 |
|
||||
0x280| 00 | . | dst: 0 (valid) 0x283-0x283.7 (1)
|
||||
0x280| 00 | . | idx: 0 (valid) 0x284-0x284.7 (1)
|
||||
| | | [1]{}: local_time_type 0x285-0x28a.7 (6)
|
||||
0x280| 00 00 0e 10 | .... | utoff: 3600 (valid) 0x285-0x288.7 (4)
|
||||
0x280| 00 | . | dst: 0 (valid) 0x289-0x289.7 (1)
|
||||
0x280| 04 | . | idx: 4 (valid) 0x28a-0x28a.7 (1)
|
||||
| | | [2]{}: local_time_type 0x28b-0x290.7 (6)
|
||||
0x280| 00 00 0e 10 | .... | utoff: 3600 (valid) 0x28b-0x28e.7 (4)
|
||||
0x280| 00| .| dst: 0 (valid) 0x28f-0x28f.7 (1)
|
||||
0x290|04 |. | idx: 4 (valid) 0x290-0x290.7 (1)
|
||||
| | | [3]{}: local_time_type 0x291-0x296.7 (6)
|
||||
0x290| 00 00 1c 20 | ... | utoff: 7200 (valid) 0x291-0x294.7 (4)
|
||||
0x290| 01 | . | dst: 1 (valid) 0x295-0x295.7 (1)
|
||||
0x290| 08 | . | idx: 8 (valid) 0x296-0x296.7 (1)
|
||||
| | | [4]{}: local_time_type 0x297-0x29c.7 (6)
|
||||
0x290| 00 00 1c 20 | ... | utoff: 7200 (valid) 0x297-0x29a.7 (4)
|
||||
0x290| 01 | . | dst: 1 (valid) 0x29b-0x29b.7 (1)
|
||||
0x290| 08 | . | idx: 8 (valid) 0x29c-0x29c.7 (1)
|
||||
| | | [5]{}: local_time_type 0x29d-0x2a2.7 (6)
|
||||
0x290| 00 00 1c| ...| utoff: 7200 (valid) 0x29d-0x2a0.7 (4)
|
||||
0x2a0|20 | |
|
||||
0x2a0| 01 | . | dst: 1 (valid) 0x2a1-0x2a1.7 (1)
|
||||
0x2a0| 08 | . | idx: 8 (valid) 0x2a2-0x2a2.7 (1)
|
||||
| | | [6]{}: local_time_type 0x2a3-0x2a8.7 (6)
|
||||
0x2a0| 00 00 0e 10 | .... | utoff: 3600 (valid) 0x2a3-0x2a6.7 (4)
|
||||
0x2a0| 00 | . | dst: 0 (valid) 0x2a7-0x2a7.7 (1)
|
||||
0x2a0| 04 | . | idx: 4 (valid) 0x2a8-0x2a8.7 (1)
|
||||
| | | time_zone_designations[0:3]: 0x2a9-0x2b5.7 (13)
|
||||
0x2a0| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x2a9-0x2ac.7 (4)
|
||||
0x2a0| 43 45 54| CET| [1]: "CET" time_zone_designation 0x2ad-0x2b0.7 (4)
|
||||
0x2b0|00 |. |
|
||||
0x2b0| 43 45 53 54 00 | CEST. | [2]: "CEST" time_zone_designation 0x2b1-0x2b5.7 (5)
|
||||
| | | leap_second_records[0:0]: 0x2b6-NA (0)
|
||||
| | | standard_wall_indicators[0:7]: 0x2b6-0x2bc.7 (7)
|
||||
0x2b0| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x2b6-0x2b6.7 (1)
|
||||
0x2b0| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x2b7-0x2b7.7 (1)
|
||||
0x2b0| 01 | . | [2]: 1 standard_wall_indicator (valid) 0x2b8-0x2b8.7 (1)
|
||||
0x2b0| 01 | . | [3]: 1 standard_wall_indicator (valid) 0x2b9-0x2b9.7 (1)
|
||||
0x2b0| 00 | . | [4]: 0 standard_wall_indicator (valid) 0x2ba-0x2ba.7 (1)
|
||||
0x2b0| 01 | . | [5]: 1 standard_wall_indicator (valid) 0x2bb-0x2bb.7 (1)
|
||||
0x2b0| 01 | . | [6]: 1 standard_wall_indicator (valid) 0x2bc-0x2bc.7 (1)
|
||||
| | | ut_local_indicators[0:7]: 0x2bd-0x2c3.7 (7)
|
||||
0x2b0| 00 | . | [0]: 0 ut_local_indicator (valid) 0x2bd-0x2bd.7 (1)
|
||||
0x2b0| 00 | . | [1]: 0 ut_local_indicator (valid) 0x2be-0x2be.7 (1)
|
||||
0x2b0| 00| .| [2]: 0 ut_local_indicator (valid) 0x2bf-0x2bf.7 (1)
|
||||
0x2c0|00 |. | [3]: 0 ut_local_indicator (valid) 0x2c0-0x2c0.7 (1)
|
||||
0x2c0| 00 | . | [4]: 0 ut_local_indicator (valid) 0x2c1-0x2c1.7 (1)
|
||||
0x2c0| 01 | . | [5]: 1 ut_local_indicator (valid) 0x2c2-0x2c2.7 (1)
|
||||
0x2c0| 01 | . | [6]: 1 ut_local_indicator (valid) 0x2c3-0x2c3.7 (1)
|
||||
| | | v2plusheader{}: 0x2c4-0x2ef.7 (44)
|
||||
0x2c0| 54 5a 69 66 | TZif | magic: 0x545a6966 (valid) 0x2c4-0x2c7.7 (4)
|
||||
0x2c0| 32 | 2 | ver: "2" (0x32) (valid) 0x2c8-0x2c8.7 (1)
|
||||
0x2c0| 00 00 00 00 00 00 00| .......| reserved: raw bits 0x2c9-0x2d7.7 (15)
|
||||
0x2d0|00 00 00 00 00 00 00 00 |........ |
|
||||
0x2d0| 00 00 00 07 | .... | isutcnt: 7 0x2d8-0x2db.7 (4)
|
||||
0x2d0| 00 00 00 07| ....| isstdcnt: 7 0x2dc-0x2df.7 (4)
|
||||
0x2e0|00 00 00 00 |.... | leapcnt: 0 0x2e0-0x2e3.7 (4)
|
||||
0x2e0| 00 00 00 77 | ...w | timecnt: 119 0x2e4-0x2e7.7 (4)
|
||||
0x2e0| 00 00 00 07 | .... | typecnt: 7 0x2e8-0x2eb.7 (4)
|
||||
0x2e0| 00 00 00 0d| ....| charcnt: 13 0x2ec-0x2ef.7 (4)
|
||||
| | | v2plusdatablock{}: 0x2f0-0x763.7 (1140)
|
||||
| | | transition_times[0:119]: 0x2f0-0x6a7.7 (952)
|
||||
0x2f0|ff ff ff ff 5e 3c f0 48 |....^<.H | [0]: "1883-12-31T22:38:00Z" (-2713915320) transition_time 0x2f0-0x2f7.7 (8)
|
||||
0x2f0| ff ff ff ff ca 02 35 e0| ......5.| [1]: "1941-04-18T22:00:00Z" (-905824800) transition_time 0x2f8-0x2ff.7 (8)
|
||||
0x300|ff ff ff ff cc e7 4b 10 |......K. | [2]: "1942-11-02T01:00:00Z" (-857257200) transition_time 0x300-0x307.7 (8)
|
||||
0x300| ff ff ff ff cd a9 17 90| ........| [3]: "1943-03-29T01:00:00Z" (-844556400) transition_time 0x308-0x30f.7 (8)
|
||||
0x310|ff ff ff ff ce a2 43 10 |......C. | [4]: "1943-10-04T01:00:00Z" (-828226800) transition_time 0x310-0x317.7 (8)
|
||||
0x310| ff ff ff ff cf 92 34 10| ......4.| [5]: "1944-04-03T01:00:00Z" (-812502000) transition_time 0x318-0x31f.7 (8)
|
||||
0x320|ff ff ff ff d0 82 25 10 |......%. | [6]: "1944-10-02T01:00:00Z" (-796777200) transition_time 0x320-0x327.7 (8)
|
||||
0x320| ff ff ff ff d1 a1 8c 10| ........| [7]: "1945-05-08T01:00:00Z" (-777942000) transition_time 0x328-0x32f.7 (8)
|
||||
0x330|ff ff ff ff d2 4e 40 90 |.....N@. | [8]: "1945-09-16T01:00:00Z" (-766623600) transition_time 0x330-0x337.7 (8)
|
||||
0x330| 00 00 00 00 18 e3 af 90| ........| [9]: "1983-03-27T01:00:00Z" (417574800) transition_time 0x338-0x33f.7 (8)
|
||||
0x340|00 00 00 00 19 d3 a0 90 |........ | [10]: "1983-09-25T01:00:00Z" (433299600) transition_time 0x340-0x347.7 (8)
|
||||
0x340| 00 00 00 00 1a c3 91 90| ........| [11]: "1984-03-25T01:00:00Z" (449024400) transition_time 0x348-0x34f.7 (8)
|
||||
0x350|00 00 00 00 1b bc bd 10 |........ | [12]: "1984-09-30T01:00:00Z" (465354000) transition_time 0x350-0x357.7 (8)
|
||||
0x350| 00 00 00 00 1c ac ae 10| ........| [13]: "1985-03-31T01:00:00Z" (481078800) transition_time 0x358-0x35f.7 (8)
|
||||
0x360|00 00 00 00 1d 9c 9f 10 |........ | [14]: "1985-09-29T01:00:00Z" (496803600) transition_time 0x360-0x367.7 (8)
|
||||
0x360| 00 00 00 00 1e 8c 90 10| ........| [15]: "1986-03-30T01:00:00Z" (512528400) transition_time 0x368-0x36f.7 (8)
|
||||
0x370|00 00 00 00 1f 7c 81 10 |.....|.. | [16]: "1986-09-28T01:00:00Z" (528253200) transition_time 0x370-0x377.7 (8)
|
||||
0x370| 00 00 00 00 20 6c 72 10| .... lr.| [17]: "1987-03-29T01:00:00Z" (543978000) transition_time 0x378-0x37f.7 (8)
|
||||
0x380|00 00 00 00 21 5c 63 10 |....!\c. | [18]: "1987-09-27T01:00:00Z" (559702800) transition_time 0x380-0x387.7 (8)
|
||||
0x380| 00 00 00 00 22 4c 54 10| ...."LT.| [19]: "1988-03-27T01:00:00Z" (575427600) transition_time 0x388-0x38f.7 (8)
|
||||
0x390|00 00 00 00 23 3c 45 10 |....#<E. | [20]: "1988-09-25T01:00:00Z" (591152400) transition_time 0x390-0x397.7 (8)
|
||||
0x390| 00 00 00 00 24 2c 36 10| ....$,6.| [21]: "1989-03-26T01:00:00Z" (606877200) transition_time 0x398-0x39f.7 (8)
|
||||
0x3a0|00 00 00 00 25 1c 27 10 |....%.'. | [22]: "1989-09-24T01:00:00Z" (622602000) transition_time 0x3a0-0x3a7.7 (8)
|
||||
0x3a0| 00 00 00 00 26 0c 18 10| ....&...| [23]: "1990-03-25T01:00:00Z" (638326800) transition_time 0x3a8-0x3af.7 (8)
|
||||
0x3b0|00 00 00 00 27 05 43 90 |....'.C. | [24]: "1990-09-30T01:00:00Z" (654656400) transition_time 0x3b0-0x3b7.7 (8)
|
||||
0x3b0| 00 00 00 00 27 f5 34 90| ....'.4.| [25]: "1991-03-31T01:00:00Z" (670381200) transition_time 0x3b8-0x3bf.7 (8)
|
||||
0x3c0|00 00 00 00 28 e5 25 90 |....(.%. | [26]: "1991-09-29T01:00:00Z" (686106000) transition_time 0x3c0-0x3c7.7 (8)
|
||||
0x3c0| 00 00 00 00 29 d5 16 90| ....)...| [27]: "1992-03-29T01:00:00Z" (701830800) transition_time 0x3c8-0x3cf.7 (8)
|
||||
0x3d0|00 00 00 00 2a c5 07 90 |....*... | [28]: "1992-09-27T01:00:00Z" (717555600) transition_time 0x3d0-0x3d7.7 (8)
|
||||
0x3d0| 00 00 00 00 2b b4 f8 90| ....+...| [29]: "1993-03-28T01:00:00Z" (733280400) transition_time 0x3d8-0x3df.7 (8)
|
||||
0x3e0|00 00 00 00 2c a4 e9 90 |....,... | [30]: "1993-09-26T01:00:00Z" (749005200) transition_time 0x3e0-0x3e7.7 (8)
|
||||
0x3e0| 00 00 00 00 2d 94 da 90| ....-...| [31]: "1994-03-27T01:00:00Z" (764730000) transition_time 0x3e8-0x3ef.7 (8)
|
||||
0x3f0|00 00 00 00 2e 84 cb 90 |........ | [32]: "1994-09-25T01:00:00Z" (780454800) transition_time 0x3f0-0x3f7.7 (8)
|
||||
0x3f0| 00 00 00 00 2f 74 bc 90| ..../t..| [33]: "1995-03-26T01:00:00Z" (796179600) transition_time 0x3f8-0x3ff.7 (8)
|
||||
0x400|00 00 00 00 30 64 ad 90 |....0d.. | [34]: "1995-09-24T01:00:00Z" (811904400) transition_time 0x400-0x407.7 (8)
|
||||
0x400| 00 00 00 00 31 5d d9 10| ....1]..| [35]: "1996-03-31T01:00:00Z" (828234000) transition_time 0x408-0x40f.7 (8)
|
||||
0x410|00 00 00 00 32 72 b4 10 |....2r.. | [36]: "1996-10-27T01:00:00Z" (846378000) transition_time 0x410-0x417.7 (8)
|
||||
0x410| 00 00 00 00 33 3d bb 10| ....3=..| [37]: "1997-03-30T01:00:00Z" (859683600) transition_time 0x418-0x41f.7 (8)
|
||||
0x420|00 00 00 00 34 52 96 10 |....4R.. | [38]: "1997-10-26T01:00:00Z" (877827600) transition_time 0x420-0x427.7 (8)
|
||||
0x420| 00 00 00 00 35 1d 9d 10| ....5...| [39]: "1998-03-29T01:00:00Z" (891133200) transition_time 0x428-0x42f.7 (8)
|
||||
0x430|00 00 00 00 36 32 78 10 |....62x. | [40]: "1998-10-25T01:00:00Z" (909277200) transition_time 0x430-0x437.7 (8)
|
||||
0x430| 00 00 00 00 36 fd 7f 10| ....6...| [41]: "1999-03-28T01:00:00Z" (922582800) transition_time 0x438-0x43f.7 (8)
|
||||
0x440|00 00 00 00 38 1b 94 90 |....8... | [42]: "1999-10-31T01:00:00Z" (941331600) transition_time 0x440-0x447.7 (8)
|
||||
0x440| 00 00 00 00 38 dd 61 10| ....8.a.| [43]: "2000-03-26T01:00:00Z" (954032400) transition_time 0x448-0x44f.7 (8)
|
||||
0x450|00 00 00 00 39 fb 76 90 |....9.v. | [44]: "2000-10-29T01:00:00Z" (972781200) transition_time 0x450-0x457.7 (8)
|
||||
0x450| 00 00 00 00 3a bd 43 10| ....:.C.| [45]: "2001-03-25T01:00:00Z" (985482000) transition_time 0x458-0x45f.7 (8)
|
||||
0x460|00 00 00 00 3b db 58 90 |....;.X. | [46]: "2001-10-28T01:00:00Z" (1004230800) transition_time 0x460-0x467.7 (8)
|
||||
0x460| 00 00 00 00 3c a6 5f 90| ....<._.| [47]: "2002-03-31T01:00:00Z" (1017536400) transition_time 0x468-0x46f.7 (8)
|
||||
0x470|00 00 00 00 3d bb 3a 90 |....=.:. | [48]: "2002-10-27T01:00:00Z" (1035680400) transition_time 0x470-0x477.7 (8)
|
||||
0x470| 00 00 00 00 3e 86 41 90| ....>.A.| [49]: "2003-03-30T01:00:00Z" (1048986000) transition_time 0x478-0x47f.7 (8)
|
||||
0x480|00 00 00 00 3f 9b 1c 90 |....?... | [50]: "2003-10-26T01:00:00Z" (1067130000) transition_time 0x480-0x487.7 (8)
|
||||
0x480| 00 00 00 00 40 66 23 90| ....@f#.| [51]: "2004-03-28T01:00:00Z" (1080435600) transition_time 0x488-0x48f.7 (8)
|
||||
0x490|00 00 00 00 41 84 39 10 |....A.9. | [52]: "2004-10-31T01:00:00Z" (1099184400) transition_time 0x490-0x497.7 (8)
|
||||
0x490| 00 00 00 00 42 46 05 90| ....BF..| [53]: "2005-03-27T01:00:00Z" (1111885200) transition_time 0x498-0x49f.7 (8)
|
||||
0x4a0|00 00 00 00 43 64 1b 10 |....Cd.. | [54]: "2005-10-30T01:00:00Z" (1130634000) transition_time 0x4a0-0x4a7.7 (8)
|
||||
0x4a0| 00 00 00 00 44 25 e7 90| ....D%..| [55]: "2006-03-26T01:00:00Z" (1143334800) transition_time 0x4a8-0x4af.7 (8)
|
||||
0x4b0|00 00 00 00 45 43 fd 10 |....EC.. | [56]: "2006-10-29T01:00:00Z" (1162083600) transition_time 0x4b0-0x4b7.7 (8)
|
||||
0x4b0| 00 00 00 00 46 05 c9 90| ....F...| [57]: "2007-03-25T01:00:00Z" (1174784400) transition_time 0x4b8-0x4bf.7 (8)
|
||||
0x4c0|00 00 00 00 47 23 df 10 |....G#.. | [58]: "2007-10-28T01:00:00Z" (1193533200) transition_time 0x4c0-0x4c7.7 (8)
|
||||
0x4c0| 00 00 00 00 47 ee e6 10| ....G...| [59]: "2008-03-30T01:00:00Z" (1206838800) transition_time 0x4c8-0x4cf.7 (8)
|
||||
0x4d0|00 00 00 00 49 03 c1 10 |....I... | [60]: "2008-10-26T01:00:00Z" (1224982800) transition_time 0x4d0-0x4d7.7 (8)
|
||||
0x4d0| 00 00 00 00 49 ce c8 10| ....I...| [61]: "2009-03-29T01:00:00Z" (1238288400) transition_time 0x4d8-0x4df.7 (8)
|
||||
0x4e0|00 00 00 00 4a e3 a3 10 |....J... | [62]: "2009-10-25T01:00:00Z" (1256432400) transition_time 0x4e0-0x4e7.7 (8)
|
||||
0x4e0| 00 00 00 00 4b ae aa 10| ....K...| [63]: "2010-03-28T01:00:00Z" (1269738000) transition_time 0x4e8-0x4ef.7 (8)
|
||||
0x4f0|00 00 00 00 4c cc bf 90 |....L... | [64]: "2010-10-31T01:00:00Z" (1288486800) transition_time 0x4f0-0x4f7.7 (8)
|
||||
0x4f0| 00 00 00 00 4d 8e 8c 10| ....M...| [65]: "2011-03-27T01:00:00Z" (1301187600) transition_time 0x4f8-0x4ff.7 (8)
|
||||
0x500|00 00 00 00 4e ac a1 90 |....N... | [66]: "2011-10-30T01:00:00Z" (1319936400) transition_time 0x500-0x507.7 (8)
|
||||
0x500| 00 00 00 00 4f 6e 6e 10| ....Onn.| [67]: "2012-03-25T01:00:00Z" (1332637200) transition_time 0x508-0x50f.7 (8)
|
||||
0x510|00 00 00 00 50 8c 83 90 |....P... | [68]: "2012-10-28T01:00:00Z" (1351386000) transition_time 0x510-0x517.7 (8)
|
||||
0x510| 00 00 00 00 51 57 8a 90| ....QW..| [69]: "2013-03-31T01:00:00Z" (1364691600) transition_time 0x518-0x51f.7 (8)
|
||||
0x520|00 00 00 00 52 6c 65 90 |....Rle. | [70]: "2013-10-27T01:00:00Z" (1382835600) transition_time 0x520-0x527.7 (8)
|
||||
0x520| 00 00 00 00 53 37 6c 90| ....S7l.| [71]: "2014-03-30T01:00:00Z" (1396141200) transition_time 0x528-0x52f.7 (8)
|
||||
0x530|00 00 00 00 54 4c 47 90 |....TLG. | [72]: "2014-10-26T01:00:00Z" (1414285200) transition_time 0x530-0x537.7 (8)
|
||||
0x530| 00 00 00 00 55 17 4e 90| ....U.N.| [73]: "2015-03-29T01:00:00Z" (1427590800) transition_time 0x538-0x53f.7 (8)
|
||||
0x540|00 00 00 00 56 2c 29 90 |....V,). | [74]: "2015-10-25T01:00:00Z" (1445734800) transition_time 0x540-0x547.7 (8)
|
||||
0x540| 00 00 00 00 56 f7 30 90| ....V.0.| [75]: "2016-03-27T01:00:00Z" (1459040400) transition_time 0x548-0x54f.7 (8)
|
||||
0x550|00 00 00 00 58 15 46 10 |....X.F. | [76]: "2016-10-30T01:00:00Z" (1477789200) transition_time 0x550-0x557.7 (8)
|
||||
0x550| 00 00 00 00 58 d7 12 90| ....X...| [77]: "2017-03-26T01:00:00Z" (1490490000) transition_time 0x558-0x55f.7 (8)
|
||||
0x560|00 00 00 00 59 f5 28 10 |....Y.(. | [78]: "2017-10-29T01:00:00Z" (1509238800) transition_time 0x560-0x567.7 (8)
|
||||
0x560| 00 00 00 00 5a b6 f4 90| ....Z...| [79]: "2018-03-25T01:00:00Z" (1521939600) transition_time 0x568-0x56f.7 (8)
|
||||
0x570|00 00 00 00 5b d5 0a 10 |....[... | [80]: "2018-10-28T01:00:00Z" (1540688400) transition_time 0x570-0x577.7 (8)
|
||||
0x570| 00 00 00 00 5c a0 11 10| ....\...| [81]: "2019-03-31T01:00:00Z" (1553994000) transition_time 0x578-0x57f.7 (8)
|
||||
0x580|00 00 00 00 5d b4 ec 10 |....]... | [82]: "2019-10-27T01:00:00Z" (1572138000) transition_time 0x580-0x587.7 (8)
|
||||
0x580| 00 00 00 00 5e 7f f3 10| ....^...| [83]: "2020-03-29T01:00:00Z" (1585443600) transition_time 0x588-0x58f.7 (8)
|
||||
0x590|00 00 00 00 5f 94 ce 10 |...._... | [84]: "2020-10-25T01:00:00Z" (1603587600) transition_time 0x590-0x597.7 (8)
|
||||
0x590| 00 00 00 00 60 5f d5 10| ....`_..| [85]: "2021-03-28T01:00:00Z" (1616893200) transition_time 0x598-0x59f.7 (8)
|
||||
0x5a0|00 00 00 00 61 7d ea 90 |....a}.. | [86]: "2021-10-31T01:00:00Z" (1635642000) transition_time 0x5a0-0x5a7.7 (8)
|
||||
0x5a0| 00 00 00 00 62 3f b7 10| ....b?..| [87]: "2022-03-27T01:00:00Z" (1648342800) transition_time 0x5a8-0x5af.7 (8)
|
||||
0x5b0|00 00 00 00 63 5d cc 90 |....c].. | [88]: "2022-10-30T01:00:00Z" (1667091600) transition_time 0x5b0-0x5b7.7 (8)
|
||||
0x5b0| 00 00 00 00 64 1f 99 10| ....d...| [89]: "2023-03-26T01:00:00Z" (1679792400) transition_time 0x5b8-0x5bf.7 (8)
|
||||
0x5c0|00 00 00 00 65 3d ae 90 |....e=.. | [90]: "2023-10-29T01:00:00Z" (1698541200) transition_time 0x5c0-0x5c7.7 (8)
|
||||
0x5c0| 00 00 00 00 66 08 b5 90| ....f...| [91]: "2024-03-31T01:00:00Z" (1711846800) transition_time 0x5c8-0x5cf.7 (8)
|
||||
0x5d0|00 00 00 00 67 1d 90 90 |....g... | [92]: "2024-10-27T01:00:00Z" (1729990800) transition_time 0x5d0-0x5d7.7 (8)
|
||||
0x5d0| 00 00 00 00 67 e8 97 90| ....g...| [93]: "2025-03-30T01:00:00Z" (1743296400) transition_time 0x5d8-0x5df.7 (8)
|
||||
0x5e0|00 00 00 00 68 fd 72 90 |....h.r. | [94]: "2025-10-26T01:00:00Z" (1761440400) transition_time 0x5e0-0x5e7.7 (8)
|
||||
0x5e0| 00 00 00 00 69 c8 79 90| ....i.y.| [95]: "2026-03-29T01:00:00Z" (1774746000) transition_time 0x5e8-0x5ef.7 (8)
|
||||
0x5f0|00 00 00 00 6a dd 54 90 |....j.T. | [96]: "2026-10-25T01:00:00Z" (1792890000) transition_time 0x5f0-0x5f7.7 (8)
|
||||
0x5f0| 00 00 00 00 6b a8 5b 90| ....k.[.| [97]: "2027-03-28T01:00:00Z" (1806195600) transition_time 0x5f8-0x5ff.7 (8)
|
||||
0x600|00 00 00 00 6c c6 71 10 |....l.q. | [98]: "2027-10-31T01:00:00Z" (1824944400) transition_time 0x600-0x607.7 (8)
|
||||
0x600| 00 00 00 00 6d 88 3d 90| ....m.=.| [99]: "2028-03-26T01:00:00Z" (1837645200) transition_time 0x608-0x60f.7 (8)
|
||||
0x610|00 00 00 00 6e a6 53 10 |....n.S. | [100]: "2028-10-29T01:00:00Z" (1856394000) transition_time 0x610-0x617.7 (8)
|
||||
0x610| 00 00 00 00 6f 68 1f 90| ....oh..| [101]: "2029-03-25T01:00:00Z" (1869094800) transition_time 0x618-0x61f.7 (8)
|
||||
0x620|00 00 00 00 70 86 35 10 |....p.5. | [102]: "2029-10-28T01:00:00Z" (1887843600) transition_time 0x620-0x627.7 (8)
|
||||
0x620| 00 00 00 00 71 51 3c 10| ....qQ<.| [103]: "2030-03-31T01:00:00Z" (1901149200) transition_time 0x628-0x62f.7 (8)
|
||||
0x630|00 00 00 00 72 66 17 10 |....rf.. | [104]: "2030-10-27T01:00:00Z" (1919293200) transition_time 0x630-0x637.7 (8)
|
||||
0x630| 00 00 00 00 73 31 1e 10| ....s1..| [105]: "2031-03-30T01:00:00Z" (1932598800) transition_time 0x638-0x63f.7 (8)
|
||||
0x640|00 00 00 00 74 45 f9 10 |....tE.. | [106]: "2031-10-26T01:00:00Z" (1950742800) transition_time 0x640-0x647.7 (8)
|
||||
0x640| 00 00 00 00 75 11 00 10| ....u...| [107]: "2032-03-28T01:00:00Z" (1964048400) transition_time 0x648-0x64f.7 (8)
|
||||
0x650|00 00 00 00 76 2f 15 90 |....v/.. | [108]: "2032-10-31T01:00:00Z" (1982797200) transition_time 0x650-0x657.7 (8)
|
||||
0x650| 00 00 00 00 76 f0 e2 10| ....v...| [109]: "2033-03-27T01:00:00Z" (1995498000) transition_time 0x658-0x65f.7 (8)
|
||||
0x660|00 00 00 00 78 0e f7 90 |....x... | [110]: "2033-10-30T01:00:00Z" (2014246800) transition_time 0x660-0x667.7 (8)
|
||||
0x660| 00 00 00 00 78 d0 c4 10| ....x...| [111]: "2034-03-26T01:00:00Z" (2026947600) transition_time 0x668-0x66f.7 (8)
|
||||
0x670|00 00 00 00 79 ee d9 90 |....y... | [112]: "2034-10-29T01:00:00Z" (2045696400) transition_time 0x670-0x677.7 (8)
|
||||
0x670| 00 00 00 00 7a b0 a6 10| ....z...| [113]: "2035-03-25T01:00:00Z" (2058397200) transition_time 0x678-0x67f.7 (8)
|
||||
0x680|00 00 00 00 7b ce bb 90 |....{... | [114]: "2035-10-28T01:00:00Z" (2077146000) transition_time 0x680-0x687.7 (8)
|
||||
0x680| 00 00 00 00 7c 99 c2 90| ....|...| [115]: "2036-03-30T01:00:00Z" (2090451600) transition_time 0x688-0x68f.7 (8)
|
||||
0x690|00 00 00 00 7d ae 9d 90 |....}... | [116]: "2036-10-26T01:00:00Z" (2108595600) transition_time 0x690-0x697.7 (8)
|
||||
0x690| 00 00 00 00 7e 79 a4 90| ....~y..| [117]: "2037-03-29T01:00:00Z" (2121901200) transition_time 0x698-0x69f.7 (8)
|
||||
0x6a0|00 00 00 00 7f 8e 7f 90 |........ | [118]: "2037-10-25T01:00:00Z" (2140045200) transition_time 0x6a0-0x6a7.7 (8)
|
||||
| | | transition_types[0:119]: 0x6a8-0x71e.7 (119)
|
||||
0x6a0| 01 | . | [0]: 1 transition_type 0x6a8-0x6a8.7 (1)
|
||||
0x6a0| 04 | . | [1]: 4 transition_type 0x6a9-0x6a9.7 (1)
|
||||
0x6a0| 02 | . | [2]: 2 transition_type 0x6aa-0x6aa.7 (1)
|
||||
0x6a0| 03 | . | [3]: 3 transition_type 0x6ab-0x6ab.7 (1)
|
||||
0x6a0| 02 | . | [4]: 2 transition_type 0x6ac-0x6ac.7 (1)
|
||||
0x6a0| 03 | . | [5]: 3 transition_type 0x6ad-0x6ad.7 (1)
|
||||
0x6a0| 02 | . | [6]: 2 transition_type 0x6ae-0x6ae.7 (1)
|
||||
0x6a0| 03| .| [7]: 3 transition_type 0x6af-0x6af.7 (1)
|
||||
0x6b0|02 |. | [8]: 2 transition_type 0x6b0-0x6b0.7 (1)
|
||||
0x6b0| 05 | . | [9]: 5 transition_type 0x6b1-0x6b1.7 (1)
|
||||
0x6b0| 06 | . | [10]: 6 transition_type 0x6b2-0x6b2.7 (1)
|
||||
0x6b0| 05 | . | [11]: 5 transition_type 0x6b3-0x6b3.7 (1)
|
||||
0x6b0| 06 | . | [12]: 6 transition_type 0x6b4-0x6b4.7 (1)
|
||||
0x6b0| 05 | . | [13]: 5 transition_type 0x6b5-0x6b5.7 (1)
|
||||
0x6b0| 06 | . | [14]: 6 transition_type 0x6b6-0x6b6.7 (1)
|
||||
0x6b0| 05 | . | [15]: 5 transition_type 0x6b7-0x6b7.7 (1)
|
||||
0x6b0| 06 | . | [16]: 6 transition_type 0x6b8-0x6b8.7 (1)
|
||||
0x6b0| 05 | . | [17]: 5 transition_type 0x6b9-0x6b9.7 (1)
|
||||
0x6b0| 06 | . | [18]: 6 transition_type 0x6ba-0x6ba.7 (1)
|
||||
0x6b0| 05 | . | [19]: 5 transition_type 0x6bb-0x6bb.7 (1)
|
||||
0x6b0| 06 | . | [20]: 6 transition_type 0x6bc-0x6bc.7 (1)
|
||||
0x6b0| 05 | . | [21]: 5 transition_type 0x6bd-0x6bd.7 (1)
|
||||
0x6b0| 06 | . | [22]: 6 transition_type 0x6be-0x6be.7 (1)
|
||||
0x6b0| 05| .| [23]: 5 transition_type 0x6bf-0x6bf.7 (1)
|
||||
0x6c0|06 |. | [24]: 6 transition_type 0x6c0-0x6c0.7 (1)
|
||||
0x6c0| 05 | . | [25]: 5 transition_type 0x6c1-0x6c1.7 (1)
|
||||
0x6c0| 06 | . | [26]: 6 transition_type 0x6c2-0x6c2.7 (1)
|
||||
0x6c0| 05 | . | [27]: 5 transition_type 0x6c3-0x6c3.7 (1)
|
||||
0x6c0| 06 | . | [28]: 6 transition_type 0x6c4-0x6c4.7 (1)
|
||||
0x6c0| 05 | . | [29]: 5 transition_type 0x6c5-0x6c5.7 (1)
|
||||
0x6c0| 06 | . | [30]: 6 transition_type 0x6c6-0x6c6.7 (1)
|
||||
0x6c0| 05 | . | [31]: 5 transition_type 0x6c7-0x6c7.7 (1)
|
||||
0x6c0| 06 | . | [32]: 6 transition_type 0x6c8-0x6c8.7 (1)
|
||||
0x6c0| 05 | . | [33]: 5 transition_type 0x6c9-0x6c9.7 (1)
|
||||
0x6c0| 06 | . | [34]: 6 transition_type 0x6ca-0x6ca.7 (1)
|
||||
0x6c0| 05 | . | [35]: 5 transition_type 0x6cb-0x6cb.7 (1)
|
||||
0x6c0| 06 | . | [36]: 6 transition_type 0x6cc-0x6cc.7 (1)
|
||||
0x6c0| 05 | . | [37]: 5 transition_type 0x6cd-0x6cd.7 (1)
|
||||
0x6c0| 06 | . | [38]: 6 transition_type 0x6ce-0x6ce.7 (1)
|
||||
0x6c0| 05| .| [39]: 5 transition_type 0x6cf-0x6cf.7 (1)
|
||||
0x6d0|06 |. | [40]: 6 transition_type 0x6d0-0x6d0.7 (1)
|
||||
0x6d0| 05 | . | [41]: 5 transition_type 0x6d1-0x6d1.7 (1)
|
||||
0x6d0| 06 | . | [42]: 6 transition_type 0x6d2-0x6d2.7 (1)
|
||||
0x6d0| 05 | . | [43]: 5 transition_type 0x6d3-0x6d3.7 (1)
|
||||
0x6d0| 06 | . | [44]: 6 transition_type 0x6d4-0x6d4.7 (1)
|
||||
0x6d0| 05 | . | [45]: 5 transition_type 0x6d5-0x6d5.7 (1)
|
||||
0x6d0| 06 | . | [46]: 6 transition_type 0x6d6-0x6d6.7 (1)
|
||||
0x6d0| 05 | . | [47]: 5 transition_type 0x6d7-0x6d7.7 (1)
|
||||
0x6d0| 06 | . | [48]: 6 transition_type 0x6d8-0x6d8.7 (1)
|
||||
0x6d0| 05 | . | [49]: 5 transition_type 0x6d9-0x6d9.7 (1)
|
||||
0x6d0| 06 | . | [50]: 6 transition_type 0x6da-0x6da.7 (1)
|
||||
0x6d0| 05 | . | [51]: 5 transition_type 0x6db-0x6db.7 (1)
|
||||
0x6d0| 06 | . | [52]: 6 transition_type 0x6dc-0x6dc.7 (1)
|
||||
0x6d0| 05 | . | [53]: 5 transition_type 0x6dd-0x6dd.7 (1)
|
||||
0x6d0| 06 | . | [54]: 6 transition_type 0x6de-0x6de.7 (1)
|
||||
0x6d0| 05| .| [55]: 5 transition_type 0x6df-0x6df.7 (1)
|
||||
0x6e0|06 |. | [56]: 6 transition_type 0x6e0-0x6e0.7 (1)
|
||||
0x6e0| 05 | . | [57]: 5 transition_type 0x6e1-0x6e1.7 (1)
|
||||
0x6e0| 06 | . | [58]: 6 transition_type 0x6e2-0x6e2.7 (1)
|
||||
0x6e0| 05 | . | [59]: 5 transition_type 0x6e3-0x6e3.7 (1)
|
||||
0x6e0| 06 | . | [60]: 6 transition_type 0x6e4-0x6e4.7 (1)
|
||||
0x6e0| 05 | . | [61]: 5 transition_type 0x6e5-0x6e5.7 (1)
|
||||
0x6e0| 06 | . | [62]: 6 transition_type 0x6e6-0x6e6.7 (1)
|
||||
0x6e0| 05 | . | [63]: 5 transition_type 0x6e7-0x6e7.7 (1)
|
||||
0x6e0| 06 | . | [64]: 6 transition_type 0x6e8-0x6e8.7 (1)
|
||||
0x6e0| 05 | . | [65]: 5 transition_type 0x6e9-0x6e9.7 (1)
|
||||
0x6e0| 06 | . | [66]: 6 transition_type 0x6ea-0x6ea.7 (1)
|
||||
0x6e0| 05 | . | [67]: 5 transition_type 0x6eb-0x6eb.7 (1)
|
||||
0x6e0| 06 | . | [68]: 6 transition_type 0x6ec-0x6ec.7 (1)
|
||||
0x6e0| 05 | . | [69]: 5 transition_type 0x6ed-0x6ed.7 (1)
|
||||
0x6e0| 06 | . | [70]: 6 transition_type 0x6ee-0x6ee.7 (1)
|
||||
0x6e0| 05| .| [71]: 5 transition_type 0x6ef-0x6ef.7 (1)
|
||||
0x6f0|06 |. | [72]: 6 transition_type 0x6f0-0x6f0.7 (1)
|
||||
0x6f0| 05 | . | [73]: 5 transition_type 0x6f1-0x6f1.7 (1)
|
||||
0x6f0| 06 | . | [74]: 6 transition_type 0x6f2-0x6f2.7 (1)
|
||||
0x6f0| 05 | . | [75]: 5 transition_type 0x6f3-0x6f3.7 (1)
|
||||
0x6f0| 06 | . | [76]: 6 transition_type 0x6f4-0x6f4.7 (1)
|
||||
0x6f0| 05 | . | [77]: 5 transition_type 0x6f5-0x6f5.7 (1)
|
||||
0x6f0| 06 | . | [78]: 6 transition_type 0x6f6-0x6f6.7 (1)
|
||||
0x6f0| 05 | . | [79]: 5 transition_type 0x6f7-0x6f7.7 (1)
|
||||
0x6f0| 06 | . | [80]: 6 transition_type 0x6f8-0x6f8.7 (1)
|
||||
0x6f0| 05 | . | [81]: 5 transition_type 0x6f9-0x6f9.7 (1)
|
||||
0x6f0| 06 | . | [82]: 6 transition_type 0x6fa-0x6fa.7 (1)
|
||||
0x6f0| 05 | . | [83]: 5 transition_type 0x6fb-0x6fb.7 (1)
|
||||
0x6f0| 06 | . | [84]: 6 transition_type 0x6fc-0x6fc.7 (1)
|
||||
0x6f0| 05 | . | [85]: 5 transition_type 0x6fd-0x6fd.7 (1)
|
||||
0x6f0| 06 | . | [86]: 6 transition_type 0x6fe-0x6fe.7 (1)
|
||||
0x6f0| 05| .| [87]: 5 transition_type 0x6ff-0x6ff.7 (1)
|
||||
0x700|06 |. | [88]: 6 transition_type 0x700-0x700.7 (1)
|
||||
0x700| 05 | . | [89]: 5 transition_type 0x701-0x701.7 (1)
|
||||
0x700| 06 | . | [90]: 6 transition_type 0x702-0x702.7 (1)
|
||||
0x700| 05 | . | [91]: 5 transition_type 0x703-0x703.7 (1)
|
||||
0x700| 06 | . | [92]: 6 transition_type 0x704-0x704.7 (1)
|
||||
0x700| 05 | . | [93]: 5 transition_type 0x705-0x705.7 (1)
|
||||
0x700| 06 | . | [94]: 6 transition_type 0x706-0x706.7 (1)
|
||||
0x700| 05 | . | [95]: 5 transition_type 0x707-0x707.7 (1)
|
||||
0x700| 06 | . | [96]: 6 transition_type 0x708-0x708.7 (1)
|
||||
0x700| 05 | . | [97]: 5 transition_type 0x709-0x709.7 (1)
|
||||
0x700| 06 | . | [98]: 6 transition_type 0x70a-0x70a.7 (1)
|
||||
0x700| 05 | . | [99]: 5 transition_type 0x70b-0x70b.7 (1)
|
||||
0x700| 06 | . | [100]: 6 transition_type 0x70c-0x70c.7 (1)
|
||||
0x700| 05 | . | [101]: 5 transition_type 0x70d-0x70d.7 (1)
|
||||
0x700| 06 | . | [102]: 6 transition_type 0x70e-0x70e.7 (1)
|
||||
0x700| 05| .| [103]: 5 transition_type 0x70f-0x70f.7 (1)
|
||||
0x710|06 |. | [104]: 6 transition_type 0x710-0x710.7 (1)
|
||||
0x710| 05 | . | [105]: 5 transition_type 0x711-0x711.7 (1)
|
||||
0x710| 06 | . | [106]: 6 transition_type 0x712-0x712.7 (1)
|
||||
0x710| 05 | . | [107]: 5 transition_type 0x713-0x713.7 (1)
|
||||
0x710| 06 | . | [108]: 6 transition_type 0x714-0x714.7 (1)
|
||||
0x710| 05 | . | [109]: 5 transition_type 0x715-0x715.7 (1)
|
||||
0x710| 06 | . | [110]: 6 transition_type 0x716-0x716.7 (1)
|
||||
0x710| 05 | . | [111]: 5 transition_type 0x717-0x717.7 (1)
|
||||
0x710| 06 | . | [112]: 6 transition_type 0x718-0x718.7 (1)
|
||||
0x710| 05 | . | [113]: 5 transition_type 0x719-0x719.7 (1)
|
||||
0x710| 06 | . | [114]: 6 transition_type 0x71a-0x71a.7 (1)
|
||||
0x710| 05 | . | [115]: 5 transition_type 0x71b-0x71b.7 (1)
|
||||
0x710| 06 | . | [116]: 6 transition_type 0x71c-0x71c.7 (1)
|
||||
0x710| 05 | . | [117]: 5 transition_type 0x71d-0x71d.7 (1)
|
||||
0x710| 06 | . | [118]: 6 transition_type 0x71e-0x71e.7 (1)
|
||||
| | | local_time_type_records[0:7]: 0x71f-0x748.7 (42)
|
||||
| | | [0]{}: local_time_type 0x71f-0x724.7 (6)
|
||||
0x710| 00| .| utoff: 4920 (valid) 0x71f-0x722.7 (4)
|
||||
0x720|00 13 38 |..8 |
|
||||
0x720| 00 | . | dst: 0 (valid) 0x723-0x723.7 (1)
|
||||
0x720| 00 | . | idx: 0 (valid) 0x724-0x724.7 (1)
|
||||
| | | [1]{}: local_time_type 0x725-0x72a.7 (6)
|
||||
0x720| 00 00 0e 10 | .... | utoff: 3600 (valid) 0x725-0x728.7 (4)
|
||||
0x720| 00 | . | dst: 0 (valid) 0x729-0x729.7 (1)
|
||||
0x720| 04 | . | idx: 4 (valid) 0x72a-0x72a.7 (1)
|
||||
| | | [2]{}: local_time_type 0x72b-0x730.7 (6)
|
||||
0x720| 00 00 0e 10 | .... | utoff: 3600 (valid) 0x72b-0x72e.7 (4)
|
||||
0x720| 00| .| dst: 0 (valid) 0x72f-0x72f.7 (1)
|
||||
0x730|04 |. | idx: 4 (valid) 0x730-0x730.7 (1)
|
||||
| | | [3]{}: local_time_type 0x731-0x736.7 (6)
|
||||
0x730| 00 00 1c 20 | ... | utoff: 7200 (valid) 0x731-0x734.7 (4)
|
||||
0x730| 01 | . | dst: 1 (valid) 0x735-0x735.7 (1)
|
||||
0x730| 08 | . | idx: 8 (valid) 0x736-0x736.7 (1)
|
||||
| | | [4]{}: local_time_type 0x737-0x73c.7 (6)
|
||||
0x730| 00 00 1c 20 | ... | utoff: 7200 (valid) 0x737-0x73a.7 (4)
|
||||
0x730| 01 | . | dst: 1 (valid) 0x73b-0x73b.7 (1)
|
||||
0x730| 08 | . | idx: 8 (valid) 0x73c-0x73c.7 (1)
|
||||
| | | [5]{}: local_time_type 0x73d-0x742.7 (6)
|
||||
0x730| 00 00 1c| ...| utoff: 7200 (valid) 0x73d-0x740.7 (4)
|
||||
0x740|20 | |
|
||||
0x740| 01 | . | dst: 1 (valid) 0x741-0x741.7 (1)
|
||||
0x740| 08 | . | idx: 8 (valid) 0x742-0x742.7 (1)
|
||||
| | | [6]{}: local_time_type 0x743-0x748.7 (6)
|
||||
0x740| 00 00 0e 10 | .... | utoff: 3600 (valid) 0x743-0x746.7 (4)
|
||||
0x740| 00 | . | dst: 0 (valid) 0x747-0x747.7 (1)
|
||||
0x740| 04 | . | idx: 4 (valid) 0x748-0x748.7 (1)
|
||||
| | | time_zone_designations[0:3]: 0x749-0x755.7 (13)
|
||||
0x740| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x749-0x74c.7 (4)
|
||||
0x740| 43 45 54| CET| [1]: "CET" time_zone_designation 0x74d-0x750.7 (4)
|
||||
0x750|00 |. |
|
||||
0x750| 43 45 53 54 00 | CEST. | [2]: "CEST" time_zone_designation 0x751-0x755.7 (5)
|
||||
| | | leap_second_records[0:0]: 0x756-NA (0)
|
||||
| | | standard_wall_indicators[0:7]: 0x756-0x75c.7 (7)
|
||||
0x750| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x756-0x756.7 (1)
|
||||
0x750| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x757-0x757.7 (1)
|
||||
0x750| 01 | . | [2]: 1 standard_wall_indicator (valid) 0x758-0x758.7 (1)
|
||||
0x750| 01 | . | [3]: 1 standard_wall_indicator (valid) 0x759-0x759.7 (1)
|
||||
0x750| 00 | . | [4]: 0 standard_wall_indicator (valid) 0x75a-0x75a.7 (1)
|
||||
0x750| 01 | . | [5]: 1 standard_wall_indicator (valid) 0x75b-0x75b.7 (1)
|
||||
0x750| 01 | . | [6]: 1 standard_wall_indicator (valid) 0x75c-0x75c.7 (1)
|
||||
| | | ut_local_indicators[0:7]: 0x75d-0x763.7 (7)
|
||||
0x750| 00 | . | [0]: 0 ut_local_indicator (valid) 0x75d-0x75d.7 (1)
|
||||
0x750| 00 | . | [1]: 0 ut_local_indicator (valid) 0x75e-0x75e.7 (1)
|
||||
0x750| 00| .| [2]: 0 ut_local_indicator (valid) 0x75f-0x75f.7 (1)
|
||||
0x760|00 |. | [3]: 0 ut_local_indicator (valid) 0x760-0x760.7 (1)
|
||||
0x760| 00 | . | [4]: 0 ut_local_indicator (valid) 0x761-0x761.7 (1)
|
||||
0x760| 01 | . | [5]: 1 ut_local_indicator (valid) 0x762-0x762.7 (1)
|
||||
0x760| 01 | . | [6]: 1 ut_local_indicator (valid) 0x763-0x763.7 (1)
|
||||
| | | footer{}: 0x764-0x77f.7 (28)
|
||||
0x760| 0a | . | nl1: 10 (valid) 0x764-0x764.7 (1)
|
||||
0x760| 43 45 54 2d 31 43 45 53 54 2c 4d| CET-1CEST,M| tz_string: "CET-1CEST,M3.5.0,M10.5.0/3" 0x765-0x77e.7 (26)
|
||||
0x770|33 2e 35 2e 30 2c 4d 31 30 2e 35 2e 30 2f 33 |3.5.0,M10.5.0/3 |
|
||||
0x770| 0a| .| nl2: 10 (valid) 0x77f-0x77f.7 (1)
|
BIN
format/tzif/testdata/Belize
vendored
Normal file
BIN
format/tzif/testdata/Belize
vendored
Normal file
Binary file not shown.
777
format/tzif/testdata/Belize.fqtest
vendored
Normal file
777
format/tzif/testdata/Belize.fqtest
vendored
Normal file
@ -0,0 +1,777 @@
|
||||
$ fq -d tzif dv Belize
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: Belize (tzif) 0x0-0x873.7 (2164)
|
||||
| | | v1header{}: 0x0-0x2b.7 (44)
|
||||
0x000|54 5a 69 66 |TZif | magic: 0x545a6966 (valid) 0x0-0x3.7 (4)
|
||||
0x000| 32 | 2 | ver: "2" (0x32) (valid) 0x4-0x4.7 (1)
|
||||
0x000| 00 00 00 00 00 00 00 00 00 00 00| ...........| reserved: raw bits 0x5-0x13.7 (15)
|
||||
0x010|00 00 00 00 |.... |
|
||||
0x010| 00 00 00 06 | .... | isutcnt: 6 0x14-0x17.7 (4)
|
||||
0x010| 00 00 00 06 | .... | isstdcnt: 6 0x18-0x1b.7 (4)
|
||||
0x010| 00 00 00 1b| ....| leapcnt: 27 0x1c-0x1f.7 (4)
|
||||
0x020|00 00 00 63 |...c | timecnt: 99 0x20-0x23.7 (4)
|
||||
0x020| 00 00 00 06 | .... | typecnt: 6 0x24-0x27.7 (4)
|
||||
0x020| 00 00 00 1a | .... | charcnt: 26 0x28-0x2b.7 (4)
|
||||
| | | v1datablock{}: 0x2c-0x33c.7 (785)
|
||||
| | | transition_times[0:99]: 0x2c-0x1b7.7 (396)
|
||||
0x020| 93 5e d9 b0| .^..| [0]: "1912-04-01T05:52:48Z" (-1822500432) transition_time 0x2c-0x2f.7 (4)
|
||||
0x030|9f 9f 3b e0 |..;. | [1]: "1918-10-06T06:00:00Z" (-1616954400) transition_time 0x30-0x33.7 (4)
|
||||
0x030| a0 45 51 d8 | .EQ. | [2]: "1919-02-09T05:30:00Z" (-1606069800) transition_time 0x34-0x37.7 (4)
|
||||
0x030| a1 7f 1d e0 | .... | [3]: "1919-10-05T06:00:00Z" (-1585504800) transition_time 0x38-0x3b.7 (4)
|
||||
0x030| a2 2e 6e 58| ..nX| [4]: "1920-02-15T05:30:00Z" (-1574015400) transition_time 0x3c-0x3f.7 (4)
|
||||
0x040|a3 5e ff e0 |.^.. | [5]: "1920-10-03T06:00:00Z" (-1554055200) transition_time 0x40-0x43.7 (4)
|
||||
0x040| a4 0e 50 58 | ..PX | [6]: "1921-02-13T05:30:00Z" (-1542565800) transition_time 0x44-0x47.7 (4)
|
||||
0x040| a5 3e e1 e0 | .>.. | [7]: "1921-10-02T06:00:00Z" (-1522605600) transition_time 0x48-0x4b.7 (4)
|
||||
0x040| a5 ee 32 58| ..2X| [8]: "1922-02-12T05:30:00Z" (-1511116200) transition_time 0x4c-0x4f.7 (4)
|
||||
0x050|a7 27 fe 60 |.'.` | [9]: "1922-10-08T06:00:00Z" (-1490551200) transition_time 0x50-0x53.7 (4)
|
||||
0x050| a7 ce 14 58 | ...X | [10]: "1923-02-11T05:30:00Z" (-1479666600) transition_time 0x54-0x57.7 (4)
|
||||
0x050| a9 07 e0 60 | ...` | [11]: "1923-10-07T06:00:00Z" (-1459101600) transition_time 0x58-0x5b.7 (4)
|
||||
0x050| a9 ad f6 58| ...X| [12]: "1924-02-10T05:30:00Z" (-1448217000) transition_time 0x5c-0x5f.7 (4)
|
||||
0x060|aa e7 c2 60 |...` | [13]: "1924-10-05T06:00:00Z" (-1427652000) transition_time 0x60-0x63.7 (4)
|
||||
0x060| ab 97 12 d8 | .... | [14]: "1925-02-15T05:30:00Z" (-1416162600) transition_time 0x64-0x67.7 (4)
|
||||
0x060| ac c7 a4 60 | ...` | [15]: "1925-10-04T06:00:00Z" (-1396202400) transition_time 0x68-0x6b.7 (4)
|
||||
0x060| ad 76 f4 d8| .v..| [16]: "1926-02-14T05:30:00Z" (-1384713000) transition_time 0x6c-0x6f.7 (4)
|
||||
0x070|ae a7 86 60 |...` | [17]: "1926-10-03T06:00:00Z" (-1364752800) transition_time 0x70-0x73.7 (4)
|
||||
0x070| af 56 d6 d8 | .V.. | [18]: "1927-02-13T05:30:00Z" (-1353263400) transition_time 0x74-0x77.7 (4)
|
||||
0x070| b0 87 68 60 | ..h` | [19]: "1927-10-02T06:00:00Z" (-1333303200) transition_time 0x78-0x7b.7 (4)
|
||||
0x070| b1 36 b8 d8| .6..| [20]: "1928-02-12T05:30:00Z" (-1321813800) transition_time 0x7c-0x7f.7 (4)
|
||||
0x080|b2 70 84 e0 |.p.. | [21]: "1928-10-07T06:00:00Z" (-1301248800) transition_time 0x80-0x83.7 (4)
|
||||
0x080| b3 16 9a d8 | .... | [22]: "1929-02-10T05:30:00Z" (-1290364200) transition_time 0x84-0x87.7 (4)
|
||||
0x080| b4 50 66 e0 | .Pf. | [23]: "1929-10-06T06:00:00Z" (-1269799200) transition_time 0x88-0x8b.7 (4)
|
||||
0x080| b4 f6 7c d8| ..|.| [24]: "1930-02-09T05:30:00Z" (-1258914600) transition_time 0x8c-0x8f.7 (4)
|
||||
0x090|b6 30 48 e0 |.0H. | [25]: "1930-10-05T06:00:00Z" (-1238349600) transition_time 0x90-0x93.7 (4)
|
||||
0x090| b6 df 99 58 | ...X | [26]: "1931-02-15T05:30:00Z" (-1226860200) transition_time 0x94-0x97.7 (4)
|
||||
0x090| b8 10 2a e0 | ..*. | [27]: "1931-10-04T06:00:00Z" (-1206900000) transition_time 0x98-0x9b.7 (4)
|
||||
0x090| b8 bf 7b 58| ..{X| [28]: "1932-02-14T05:30:00Z" (-1195410600) transition_time 0x9c-0x9f.7 (4)
|
||||
0x0a0|b9 f0 0c e0 |.... | [29]: "1932-10-02T06:00:00Z" (-1175450400) transition_time 0xa0-0xa3.7 (4)
|
||||
0x0a0| ba 9f 5d 58 | ..]X | [30]: "1933-02-12T05:30:00Z" (-1163961000) transition_time 0xa4-0xa7.7 (4)
|
||||
0x0a0| bb d9 29 60 | ..)` | [31]: "1933-10-08T06:00:00Z" (-1143396000) transition_time 0xa8-0xab.7 (4)
|
||||
0x0a0| bc 7f 3f 58| ..?X| [32]: "1934-02-11T05:30:00Z" (-1132511400) transition_time 0xac-0xaf.7 (4)
|
||||
0x0b0|bd b9 0b 60 |...` | [33]: "1934-10-07T06:00:00Z" (-1111946400) transition_time 0xb0-0xb3.7 (4)
|
||||
0x0b0| be 5f 21 58 | ._!X | [34]: "1935-02-10T05:30:00Z" (-1101061800) transition_time 0xb4-0xb7.7 (4)
|
||||
0x0b0| bf 98 ed 60 | ...` | [35]: "1935-10-06T06:00:00Z" (-1080496800) transition_time 0xb8-0xbb.7 (4)
|
||||
0x0b0| c0 3f 03 58| .?.X| [36]: "1936-02-09T05:30:00Z" (-1069612200) transition_time 0xbc-0xbf.7 (4)
|
||||
0x0c0|c1 78 cf 60 |.x.` | [37]: "1936-10-04T06:00:00Z" (-1049047200) transition_time 0xc0-0xc3.7 (4)
|
||||
0x0c0| c2 28 1f d8 | .(.. | [38]: "1937-02-14T05:30:00Z" (-1037557800) transition_time 0xc4-0xc7.7 (4)
|
||||
0x0c0| c3 58 b1 60 | .X.` | [39]: "1937-10-03T06:00:00Z" (-1017597600) transition_time 0xc8-0xcb.7 (4)
|
||||
0x0c0| c4 08 01 d8| ....| [40]: "1938-02-13T05:30:00Z" (-1006108200) transition_time 0xcc-0xcf.7 (4)
|
||||
0x0d0|c5 38 93 60 |.8.` | [41]: "1938-10-02T06:00:00Z" (-986148000) transition_time 0xd0-0xd3.7 (4)
|
||||
0x0d0| c5 e7 e3 d8 | .... | [42]: "1939-02-12T05:30:00Z" (-974658600) transition_time 0xd4-0xd7.7 (4)
|
||||
0x0d0| c7 21 af e0 | .!.. | [43]: "1939-10-08T06:00:00Z" (-954093600) transition_time 0xd8-0xdb.7 (4)
|
||||
0x0d0| c7 c7 c5 d8| ....| [44]: "1940-02-11T05:30:00Z" (-943209000) transition_time 0xdc-0xdf.7 (4)
|
||||
0x0e0|c9 01 91 e0 |.... | [45]: "1940-10-06T06:00:00Z" (-922644000) transition_time 0xe0-0xe3.7 (4)
|
||||
0x0e0| c9 a7 a7 d8 | .... | [46]: "1941-02-09T05:30:00Z" (-911759400) transition_time 0xe4-0xe7.7 (4)
|
||||
0x0e0| ca e1 73 e0 | ..s. | [47]: "1941-10-05T06:00:00Z" (-891194400) transition_time 0xe8-0xeb.7 (4)
|
||||
0x0e0| cb 90 c4 58| ...X| [48]: "1942-02-15T05:30:00Z" (-879705000) transition_time 0xec-0xef.7 (4)
|
||||
0x0f0|cc 40 22 e0 |.@". | [49]: "1942-06-28T06:00:00Z" (-868212000) transition_time 0xf0-0xf3.7 (4)
|
||||
0x0f0| d2 23 f4 70 | .#.p | [50]: "1945-08-14T23:00:00Z" (-769395600) transition_time 0xf4-0xf7.7 (4)
|
||||
0x0f0| d2 c6 71 50 | ..qP | [51]: "1945-12-16T05:00:00Z" (-758746800) transition_time 0xf8-0xfb.7 (4)
|
||||
0x0f0| d6 29 fa 60| .).`| [52]: "1947-10-05T06:00:00Z" (-701892000) transition_time 0xfc-0xff.7 (4)
|
||||
0x100|d6 d9 4a d8 |..J. | [53]: "1948-02-15T05:30:00Z" (-690402600) transition_time 0x100-0x103.7 (4)
|
||||
0x100| d8 09 dc 60 | ...` | [54]: "1948-10-03T06:00:00Z" (-670442400) transition_time 0x104-0x107.7 (4)
|
||||
0x100| d8 b9 2c d8 | ..,. | [55]: "1949-02-13T05:30:00Z" (-658953000) transition_time 0x108-0x10b.7 (4)
|
||||
0x100| d9 e9 be 60| ...`| [56]: "1949-10-02T06:00:00Z" (-638992800) transition_time 0x10c-0x10f.7 (4)
|
||||
0x110|da 99 0e d8 |.... | [57]: "1950-02-12T05:30:00Z" (-627503400) transition_time 0x110-0x113.7 (4)
|
||||
0x110| db d2 da e0 | .... | [58]: "1950-10-08T06:00:00Z" (-606938400) transition_time 0x114-0x117.7 (4)
|
||||
0x110| dc 78 f0 d8 | .x.. | [59]: "1951-02-11T05:30:00Z" (-596053800) transition_time 0x118-0x11b.7 (4)
|
||||
0x110| dd b2 bc e0| ....| [60]: "1951-10-07T06:00:00Z" (-575488800) transition_time 0x11c-0x11f.7 (4)
|
||||
0x120|de 58 d2 d8 |.X.. | [61]: "1952-02-10T05:30:00Z" (-564604200) transition_time 0x120-0x123.7 (4)
|
||||
0x120| df 92 9e e0 | .... | [62]: "1952-10-05T06:00:00Z" (-544039200) transition_time 0x124-0x127.7 (4)
|
||||
0x120| e0 41 ef 58 | .A.X | [63]: "1953-02-15T05:30:00Z" (-532549800) transition_time 0x128-0x12b.7 (4)
|
||||
0x120| e1 72 80 e0| .r..| [64]: "1953-10-04T06:00:00Z" (-512589600) transition_time 0x12c-0x12f.7 (4)
|
||||
0x130|e2 21 d1 58 |.!.X | [65]: "1954-02-14T05:30:00Z" (-501100200) transition_time 0x130-0x133.7 (4)
|
||||
0x130| e3 52 62 e0 | .Rb. | [66]: "1954-10-03T06:00:00Z" (-481140000) transition_time 0x134-0x137.7 (4)
|
||||
0x130| e4 01 b3 58 | ...X | [67]: "1955-02-13T05:30:00Z" (-469650600) transition_time 0x138-0x13b.7 (4)
|
||||
0x130| e5 32 44 e0| .2D.| [68]: "1955-10-02T06:00:00Z" (-449690400) transition_time 0x13c-0x13f.7 (4)
|
||||
0x140|e5 e1 95 58 |...X | [69]: "1956-02-12T05:30:00Z" (-438201000) transition_time 0x140-0x143.7 (4)
|
||||
0x140| e7 1b 61 60 | ..a` | [70]: "1956-10-07T06:00:00Z" (-417636000) transition_time 0x144-0x147.7 (4)
|
||||
0x140| e7 c1 77 58 | ..wX | [71]: "1957-02-10T05:30:00Z" (-406751400) transition_time 0x148-0x14b.7 (4)
|
||||
0x140| e8 fb 43 60| ..C`| [72]: "1957-10-06T06:00:00Z" (-386186400) transition_time 0x14c-0x14f.7 (4)
|
||||
0x150|e9 a1 59 58 |..YX | [73]: "1958-02-09T05:30:00Z" (-375301800) transition_time 0x150-0x153.7 (4)
|
||||
0x150| ea db 25 60 | ..%` | [74]: "1958-10-05T06:00:00Z" (-354736800) transition_time 0x154-0x157.7 (4)
|
||||
0x150| eb 8a 75 d8 | ..u. | [75]: "1959-02-15T05:30:00Z" (-343247400) transition_time 0x158-0x15b.7 (4)
|
||||
0x150| ec bb 07 60| ...`| [76]: "1959-10-04T06:00:00Z" (-323287200) transition_time 0x15c-0x15f.7 (4)
|
||||
0x160|ed 6a 57 d8 |.jW. | [77]: "1960-02-14T05:30:00Z" (-311797800) transition_time 0x160-0x163.7 (4)
|
||||
0x160| ee 9a e9 60 | ...` | [78]: "1960-10-02T06:00:00Z" (-291837600) transition_time 0x164-0x167.7 (4)
|
||||
0x160| ef 4a 39 d8 | .J9. | [79]: "1961-02-12T05:30:00Z" (-280348200) transition_time 0x168-0x16b.7 (4)
|
||||
0x160| f0 84 05 e0| ....| [80]: "1961-10-08T06:00:00Z" (-259783200) transition_time 0x16c-0x16f.7 (4)
|
||||
0x170|f1 2a 1b d8 |.*.. | [81]: "1962-02-11T05:30:00Z" (-248898600) transition_time 0x170-0x173.7 (4)
|
||||
0x170| f2 63 e7 e0 | .c.. | [82]: "1962-10-07T06:00:00Z" (-228333600) transition_time 0x174-0x177.7 (4)
|
||||
0x170| f3 09 fd d8 | .... | [83]: "1963-02-10T05:30:00Z" (-217449000) transition_time 0x178-0x17b.7 (4)
|
||||
0x170| f4 43 c9 e0| .C..| [84]: "1963-10-06T06:00:00Z" (-196884000) transition_time 0x17c-0x17f.7 (4)
|
||||
0x180|f4 e9 df d8 |.... | [85]: "1964-02-09T05:30:00Z" (-185999400) transition_time 0x180-0x183.7 (4)
|
||||
0x180| f6 23 ab e0 | .#.. | [86]: "1964-10-04T06:00:00Z" (-165434400) transition_time 0x184-0x187.7 (4)
|
||||
0x180| f6 d2 fc 58 | ...X | [87]: "1965-02-14T05:30:00Z" (-153945000) transition_time 0x188-0x18b.7 (4)
|
||||
0x180| f8 03 8d e0| ....| [88]: "1965-10-03T06:00:00Z" (-133984800) transition_time 0x18c-0x18f.7 (4)
|
||||
0x190|f8 b2 de 58 |...X | [89]: "1966-02-13T05:30:00Z" (-122495400) transition_time 0x190-0x193.7 (4)
|
||||
0x190| f9 e3 6f e0 | ..o. | [90]: "1966-10-02T06:00:00Z" (-102535200) transition_time 0x194-0x197.7 (4)
|
||||
0x190| fa 92 c0 58 | ...X | [91]: "1967-02-12T05:30:00Z" (-91045800) transition_time 0x198-0x19b.7 (4)
|
||||
0x190| fb cc 8c 60| ...`| [92]: "1967-10-08T06:00:00Z" (-70480800) transition_time 0x19c-0x19f.7 (4)
|
||||
0x1a0|fc 72 a2 58 |.r.X | [93]: "1968-02-11T05:30:00Z" (-59596200) transition_time 0x1a0-0x1a3.7 (4)
|
||||
0x1a0| 07 62 db 62 | .b.b | [94]: "1973-12-05T06:00:02Z" (123919202) transition_time 0x1a4-0x1a7.7 (4)
|
||||
0x1a0| 07 b9 d0 53 | ...S | [95]: "1974-02-09T05:00:03Z" (129618003) transition_time 0x1a8-0x1ab.7 (4)
|
||||
0x1a0| 18 61 71 6b| .aqk| [96]: "1982-12-18T06:00:11Z" (409039211) transition_time 0x1ac-0x1af.7 (4)
|
||||
0x1b0|18 ab 37 5b |..7[ | [97]: "1983-02-12T05:00:11Z" (413874011) transition_time 0x1b0-0x1b3.7 (4)
|
||||
0x1b0| 64 9b 78 1b | d.x. | [98]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x1b4-0x1b7.7 (4)
|
||||
| | | transition_types[0:99]: 0x1b8-0x21a.7 (99)
|
||||
0x1b0| 02 | . | [0]: 2 transition_type 0x1b8-0x1b8.7 (1)
|
||||
0x1b0| 01 | . | [1]: 1 transition_type 0x1b9-0x1b9.7 (1)
|
||||
0x1b0| 02 | . | [2]: 2 transition_type 0x1ba-0x1ba.7 (1)
|
||||
0x1b0| 01 | . | [3]: 1 transition_type 0x1bb-0x1bb.7 (1)
|
||||
0x1b0| 02 | . | [4]: 2 transition_type 0x1bc-0x1bc.7 (1)
|
||||
0x1b0| 01 | . | [5]: 1 transition_type 0x1bd-0x1bd.7 (1)
|
||||
0x1b0| 02 | . | [6]: 2 transition_type 0x1be-0x1be.7 (1)
|
||||
0x1b0| 01| .| [7]: 1 transition_type 0x1bf-0x1bf.7 (1)
|
||||
0x1c0|02 |. | [8]: 2 transition_type 0x1c0-0x1c0.7 (1)
|
||||
0x1c0| 01 | . | [9]: 1 transition_type 0x1c1-0x1c1.7 (1)
|
||||
0x1c0| 02 | . | [10]: 2 transition_type 0x1c2-0x1c2.7 (1)
|
||||
0x1c0| 01 | . | [11]: 1 transition_type 0x1c3-0x1c3.7 (1)
|
||||
0x1c0| 02 | . | [12]: 2 transition_type 0x1c4-0x1c4.7 (1)
|
||||
0x1c0| 01 | . | [13]: 1 transition_type 0x1c5-0x1c5.7 (1)
|
||||
0x1c0| 02 | . | [14]: 2 transition_type 0x1c6-0x1c6.7 (1)
|
||||
0x1c0| 01 | . | [15]: 1 transition_type 0x1c7-0x1c7.7 (1)
|
||||
0x1c0| 02 | . | [16]: 2 transition_type 0x1c8-0x1c8.7 (1)
|
||||
0x1c0| 01 | . | [17]: 1 transition_type 0x1c9-0x1c9.7 (1)
|
||||
0x1c0| 02 | . | [18]: 2 transition_type 0x1ca-0x1ca.7 (1)
|
||||
0x1c0| 01 | . | [19]: 1 transition_type 0x1cb-0x1cb.7 (1)
|
||||
0x1c0| 02 | . | [20]: 2 transition_type 0x1cc-0x1cc.7 (1)
|
||||
0x1c0| 01 | . | [21]: 1 transition_type 0x1cd-0x1cd.7 (1)
|
||||
0x1c0| 02 | . | [22]: 2 transition_type 0x1ce-0x1ce.7 (1)
|
||||
0x1c0| 01| .| [23]: 1 transition_type 0x1cf-0x1cf.7 (1)
|
||||
0x1d0|02 |. | [24]: 2 transition_type 0x1d0-0x1d0.7 (1)
|
||||
0x1d0| 01 | . | [25]: 1 transition_type 0x1d1-0x1d1.7 (1)
|
||||
0x1d0| 02 | . | [26]: 2 transition_type 0x1d2-0x1d2.7 (1)
|
||||
0x1d0| 01 | . | [27]: 1 transition_type 0x1d3-0x1d3.7 (1)
|
||||
0x1d0| 02 | . | [28]: 2 transition_type 0x1d4-0x1d4.7 (1)
|
||||
0x1d0| 01 | . | [29]: 1 transition_type 0x1d5-0x1d5.7 (1)
|
||||
0x1d0| 02 | . | [30]: 2 transition_type 0x1d6-0x1d6.7 (1)
|
||||
0x1d0| 01 | . | [31]: 1 transition_type 0x1d7-0x1d7.7 (1)
|
||||
0x1d0| 02 | . | [32]: 2 transition_type 0x1d8-0x1d8.7 (1)
|
||||
0x1d0| 01 | . | [33]: 1 transition_type 0x1d9-0x1d9.7 (1)
|
||||
0x1d0| 02 | . | [34]: 2 transition_type 0x1da-0x1da.7 (1)
|
||||
0x1d0| 01 | . | [35]: 1 transition_type 0x1db-0x1db.7 (1)
|
||||
0x1d0| 02 | . | [36]: 2 transition_type 0x1dc-0x1dc.7 (1)
|
||||
0x1d0| 01 | . | [37]: 1 transition_type 0x1dd-0x1dd.7 (1)
|
||||
0x1d0| 02 | . | [38]: 2 transition_type 0x1de-0x1de.7 (1)
|
||||
0x1d0| 01| .| [39]: 1 transition_type 0x1df-0x1df.7 (1)
|
||||
0x1e0|02 |. | [40]: 2 transition_type 0x1e0-0x1e0.7 (1)
|
||||
0x1e0| 01 | . | [41]: 1 transition_type 0x1e1-0x1e1.7 (1)
|
||||
0x1e0| 02 | . | [42]: 2 transition_type 0x1e2-0x1e2.7 (1)
|
||||
0x1e0| 01 | . | [43]: 1 transition_type 0x1e3-0x1e3.7 (1)
|
||||
0x1e0| 02 | . | [44]: 2 transition_type 0x1e4-0x1e4.7 (1)
|
||||
0x1e0| 01 | . | [45]: 1 transition_type 0x1e5-0x1e5.7 (1)
|
||||
0x1e0| 02 | . | [46]: 2 transition_type 0x1e6-0x1e6.7 (1)
|
||||
0x1e0| 01 | . | [47]: 1 transition_type 0x1e7-0x1e7.7 (1)
|
||||
0x1e0| 02 | . | [48]: 2 transition_type 0x1e8-0x1e8.7 (1)
|
||||
0x1e0| 03 | . | [49]: 3 transition_type 0x1e9-0x1e9.7 (1)
|
||||
0x1e0| 04 | . | [50]: 4 transition_type 0x1ea-0x1ea.7 (1)
|
||||
0x1e0| 02 | . | [51]: 2 transition_type 0x1eb-0x1eb.7 (1)
|
||||
0x1e0| 01 | . | [52]: 1 transition_type 0x1ec-0x1ec.7 (1)
|
||||
0x1e0| 02 | . | [53]: 2 transition_type 0x1ed-0x1ed.7 (1)
|
||||
0x1e0| 01 | . | [54]: 1 transition_type 0x1ee-0x1ee.7 (1)
|
||||
0x1e0| 02| .| [55]: 2 transition_type 0x1ef-0x1ef.7 (1)
|
||||
0x1f0|01 |. | [56]: 1 transition_type 0x1f0-0x1f0.7 (1)
|
||||
0x1f0| 02 | . | [57]: 2 transition_type 0x1f1-0x1f1.7 (1)
|
||||
0x1f0| 01 | . | [58]: 1 transition_type 0x1f2-0x1f2.7 (1)
|
||||
0x1f0| 02 | . | [59]: 2 transition_type 0x1f3-0x1f3.7 (1)
|
||||
0x1f0| 01 | . | [60]: 1 transition_type 0x1f4-0x1f4.7 (1)
|
||||
0x1f0| 02 | . | [61]: 2 transition_type 0x1f5-0x1f5.7 (1)
|
||||
0x1f0| 01 | . | [62]: 1 transition_type 0x1f6-0x1f6.7 (1)
|
||||
0x1f0| 02 | . | [63]: 2 transition_type 0x1f7-0x1f7.7 (1)
|
||||
0x1f0| 01 | . | [64]: 1 transition_type 0x1f8-0x1f8.7 (1)
|
||||
0x1f0| 02 | . | [65]: 2 transition_type 0x1f9-0x1f9.7 (1)
|
||||
0x1f0| 01 | . | [66]: 1 transition_type 0x1fa-0x1fa.7 (1)
|
||||
0x1f0| 02 | . | [67]: 2 transition_type 0x1fb-0x1fb.7 (1)
|
||||
0x1f0| 01 | . | [68]: 1 transition_type 0x1fc-0x1fc.7 (1)
|
||||
0x1f0| 02 | . | [69]: 2 transition_type 0x1fd-0x1fd.7 (1)
|
||||
0x1f0| 01 | . | [70]: 1 transition_type 0x1fe-0x1fe.7 (1)
|
||||
0x1f0| 02| .| [71]: 2 transition_type 0x1ff-0x1ff.7 (1)
|
||||
0x200|01 |. | [72]: 1 transition_type 0x200-0x200.7 (1)
|
||||
0x200| 02 | . | [73]: 2 transition_type 0x201-0x201.7 (1)
|
||||
0x200| 01 | . | [74]: 1 transition_type 0x202-0x202.7 (1)
|
||||
0x200| 02 | . | [75]: 2 transition_type 0x203-0x203.7 (1)
|
||||
0x200| 01 | . | [76]: 1 transition_type 0x204-0x204.7 (1)
|
||||
0x200| 02 | . | [77]: 2 transition_type 0x205-0x205.7 (1)
|
||||
0x200| 01 | . | [78]: 1 transition_type 0x206-0x206.7 (1)
|
||||
0x200| 02 | . | [79]: 2 transition_type 0x207-0x207.7 (1)
|
||||
0x200| 01 | . | [80]: 1 transition_type 0x208-0x208.7 (1)
|
||||
0x200| 02 | . | [81]: 2 transition_type 0x209-0x209.7 (1)
|
||||
0x200| 01 | . | [82]: 1 transition_type 0x20a-0x20a.7 (1)
|
||||
0x200| 02 | . | [83]: 2 transition_type 0x20b-0x20b.7 (1)
|
||||
0x200| 01 | . | [84]: 1 transition_type 0x20c-0x20c.7 (1)
|
||||
0x200| 02 | . | [85]: 2 transition_type 0x20d-0x20d.7 (1)
|
||||
0x200| 01 | . | [86]: 1 transition_type 0x20e-0x20e.7 (1)
|
||||
0x200| 02| .| [87]: 2 transition_type 0x20f-0x20f.7 (1)
|
||||
0x210|01 |. | [88]: 1 transition_type 0x210-0x210.7 (1)
|
||||
0x210| 02 | . | [89]: 2 transition_type 0x211-0x211.7 (1)
|
||||
0x210| 01 | . | [90]: 1 transition_type 0x212-0x212.7 (1)
|
||||
0x210| 02 | . | [91]: 2 transition_type 0x213-0x213.7 (1)
|
||||
0x210| 01 | . | [92]: 1 transition_type 0x214-0x214.7 (1)
|
||||
0x210| 02 | . | [93]: 2 transition_type 0x215-0x215.7 (1)
|
||||
0x210| 05 | . | [94]: 5 transition_type 0x216-0x216.7 (1)
|
||||
0x210| 02 | . | [95]: 2 transition_type 0x217-0x217.7 (1)
|
||||
0x210| 05 | . | [96]: 5 transition_type 0x218-0x218.7 (1)
|
||||
0x210| 02 | . | [97]: 2 transition_type 0x219-0x219.7 (1)
|
||||
0x210| 02 | . | [98]: 2 transition_type 0x21a-0x21a.7 (1)
|
||||
| | | local_time_type_records[0:6]: 0x21b-0x23e.7 (36)
|
||||
| | | [0]{}: local_time_type 0x21b-0x220.7 (6)
|
||||
0x210| ff ff ad 50 | ...P | utoff: -21168 (valid) 0x21b-0x21e.7 (4)
|
||||
0x210| 00| .| dst: 0 (valid) 0x21f-0x21f.7 (1)
|
||||
0x220|00 |. | idx: 0 (valid) 0x220-0x220.7 (1)
|
||||
| | | [1]{}: local_time_type 0x221-0x226.7 (6)
|
||||
0x220| ff ff b2 a8 | .... | utoff: -19800 (valid) 0x221-0x224.7 (4)
|
||||
0x220| 01 | . | dst: 1 (valid) 0x225-0x225.7 (1)
|
||||
0x220| 04 | . | idx: 4 (valid) 0x226-0x226.7 (1)
|
||||
| | | [2]{}: local_time_type 0x227-0x22c.7 (6)
|
||||
0x220| ff ff ab a0 | .... | utoff: -21600 (valid) 0x227-0x22a.7 (4)
|
||||
0x220| 00 | . | dst: 0 (valid) 0x22b-0x22b.7 (1)
|
||||
0x220| 0a | . | idx: 10 (valid) 0x22c-0x22c.7 (1)
|
||||
| | | [3]{}: local_time_type 0x22d-0x232.7 (6)
|
||||
0x220| ff ff b9| ...| utoff: -18000 (valid) 0x22d-0x230.7 (4)
|
||||
0x230|b0 |. |
|
||||
0x230| 01 | . | dst: 1 (valid) 0x231-0x231.7 (1)
|
||||
0x230| 0e | . | idx: 14 (valid) 0x232-0x232.7 (1)
|
||||
| | | [4]{}: local_time_type 0x233-0x238.7 (6)
|
||||
0x230| ff ff b9 b0 | .... | utoff: -18000 (valid) 0x233-0x236.7 (4)
|
||||
0x230| 01 | . | dst: 1 (valid) 0x237-0x237.7 (1)
|
||||
0x230| 12 | . | idx: 18 (valid) 0x238-0x238.7 (1)
|
||||
| | | [5]{}: local_time_type 0x239-0x23e.7 (6)
|
||||
0x230| ff ff b9 b0 | .... | utoff: -18000 (valid) 0x239-0x23c.7 (4)
|
||||
0x230| 01 | . | dst: 1 (valid) 0x23d-0x23d.7 (1)
|
||||
0x230| 16 | . | idx: 22 (valid) 0x23e-0x23e.7 (1)
|
||||
| | | time_zone_designations[0:6]: 0x23f-0x258.7 (26)
|
||||
0x230| 4c| L| [0]: "LMT" time_zone_designation 0x23f-0x242.7 (4)
|
||||
0x240|4d 54 00 |MT. |
|
||||
0x240| 2d 30 35 33 30 00 | -0530. | [1]: "-0530" time_zone_designation 0x243-0x248.7 (6)
|
||||
0x240| 43 53 54 00 | CST. | [2]: "CST" time_zone_designation 0x249-0x24c.7 (4)
|
||||
0x240| 43 57 54| CWT| [3]: "CWT" time_zone_designation 0x24d-0x250.7 (4)
|
||||
0x250|00 |. |
|
||||
0x250| 43 50 54 00 | CPT. | [4]: "CPT" time_zone_designation 0x251-0x254.7 (4)
|
||||
0x250| 43 44 54 00 | CDT. | [5]: "CDT" time_zone_designation 0x255-0x258.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x259-0x330.7 (216)
|
||||
| | | [0]{}: leap_second_record 0x259-0x260.7 (8)
|
||||
0x250| 04 b2 58 00 | ..X. | occur: "1972-07-01T00:00:00Z" (78796800) 0x259-0x25c.7 (4)
|
||||
0x250| 00 00 00| ...| corr: 1 0x25d-0x260.7 (4)
|
||||
0x260|01 |. |
|
||||
| | | [1]{}: leap_second_record 0x261-0x268.7 (8)
|
||||
0x260| 05 a4 ec 01 | .... | occur: "1973-01-01T00:00:01Z" (94694401) 0x261-0x264.7 (4)
|
||||
0x260| 00 00 00 02 | .... | corr: 2 0x265-0x268.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x269-0x270.7 (8)
|
||||
0x260| 07 86 1f 82 | .... | occur: "1974-01-01T00:00:02Z" (126230402) 0x269-0x26c.7 (4)
|
||||
0x260| 00 00 00| ...| corr: 3 0x26d-0x270.7 (4)
|
||||
0x270|03 |. |
|
||||
| | | [3]{}: leap_second_record 0x271-0x278.7 (8)
|
||||
0x270| 09 67 53 03 | .gS. | occur: "1975-01-01T00:00:03Z" (157766403) 0x271-0x274.7 (4)
|
||||
0x270| 00 00 00 04 | .... | corr: 4 0x275-0x278.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x279-0x280.7 (8)
|
||||
0x270| 0b 48 86 84 | .H.. | occur: "1976-01-01T00:00:04Z" (189302404) 0x279-0x27c.7 (4)
|
||||
0x270| 00 00 00| ...| corr: 5 0x27d-0x280.7 (4)
|
||||
0x280|05 |. |
|
||||
| | | [5]{}: leap_second_record 0x281-0x288.7 (8)
|
||||
0x280| 0d 2b 0b 85 | .+.. | occur: "1977-01-01T00:00:05Z" (220924805) 0x281-0x284.7 (4)
|
||||
0x280| 00 00 00 06 | .... | corr: 6 0x285-0x288.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x289-0x290.7 (8)
|
||||
0x280| 0f 0c 3f 06 | ..?. | occur: "1978-01-01T00:00:06Z" (252460806) 0x289-0x28c.7 (4)
|
||||
0x280| 00 00 00| ...| corr: 7 0x28d-0x290.7 (4)
|
||||
0x290|07 |. |
|
||||
| | | [7]{}: leap_second_record 0x291-0x298.7 (8)
|
||||
0x290| 10 ed 72 87 | ..r. | occur: "1979-01-01T00:00:07Z" (283996807) 0x291-0x294.7 (4)
|
||||
0x290| 00 00 00 08 | .... | corr: 8 0x295-0x298.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x299-0x2a0.7 (8)
|
||||
0x290| 12 ce a6 08 | .... | occur: "1980-01-01T00:00:08Z" (315532808) 0x299-0x29c.7 (4)
|
||||
0x290| 00 00 00| ...| corr: 9 0x29d-0x2a0.7 (4)
|
||||
0x2a0|09 |. |
|
||||
| | | [9]{}: leap_second_record 0x2a1-0x2a8.7 (8)
|
||||
0x2a0| 15 9f ca 89 | .... | occur: "1981-07-01T00:00:09Z" (362793609) 0x2a1-0x2a4.7 (4)
|
||||
0x2a0| 00 00 00 0a | .... | corr: 10 0x2a5-0x2a8.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x2a9-0x2b0.7 (8)
|
||||
0x2a0| 17 80 fe 0a | .... | occur: "1982-07-01T00:00:10Z" (394329610) 0x2a9-0x2ac.7 (4)
|
||||
0x2a0| 00 00 00| ...| corr: 11 0x2ad-0x2b0.7 (4)
|
||||
0x2b0|0b |. |
|
||||
| | | [11]{}: leap_second_record 0x2b1-0x2b8.7 (8)
|
||||
0x2b0| 19 62 31 8b | .b1. | occur: "1983-07-01T00:00:11Z" (425865611) 0x2b1-0x2b4.7 (4)
|
||||
0x2b0| 00 00 00 0c | .... | corr: 12 0x2b5-0x2b8.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x2b9-0x2c0.7 (8)
|
||||
0x2b0| 1d 25 ea 0c | .%.. | occur: "1985-07-01T00:00:12Z" (489024012) 0x2b9-0x2bc.7 (4)
|
||||
0x2b0| 00 00 00| ...| corr: 13 0x2bd-0x2c0.7 (4)
|
||||
0x2c0|0d |. |
|
||||
| | | [13]{}: leap_second_record 0x2c1-0x2c8.7 (8)
|
||||
0x2c0| 21 da e5 0d | !... | occur: "1988-01-01T00:00:13Z" (567993613) 0x2c1-0x2c4.7 (4)
|
||||
0x2c0| 00 00 00 0e | .... | corr: 14 0x2c5-0x2c8.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x2c9-0x2d0.7 (8)
|
||||
0x2c0| 25 9e 9d 8e | %... | occur: "1990-01-01T00:00:14Z" (631152014) 0x2c9-0x2cc.7 (4)
|
||||
0x2c0| 00 00 00| ...| corr: 15 0x2cd-0x2d0.7 (4)
|
||||
0x2d0|0f |. |
|
||||
| | | [15]{}: leap_second_record 0x2d1-0x2d8.7 (8)
|
||||
0x2d0| 27 7f d1 0f | '... | occur: "1991-01-01T00:00:15Z" (662688015) 0x2d1-0x2d4.7 (4)
|
||||
0x2d0| 00 00 00 10 | .... | corr: 16 0x2d5-0x2d8.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x2d9-0x2e0.7 (8)
|
||||
0x2d0| 2a 50 f5 90 | *P.. | occur: "1992-07-01T00:00:16Z" (709948816) 0x2d9-0x2dc.7 (4)
|
||||
0x2d0| 00 00 00| ...| corr: 17 0x2dd-0x2e0.7 (4)
|
||||
0x2e0|11 |. |
|
||||
| | | [17]{}: leap_second_record 0x2e1-0x2e8.7 (8)
|
||||
0x2e0| 2c 32 29 11 | ,2). | occur: "1993-07-01T00:00:17Z" (741484817) 0x2e1-0x2e4.7 (4)
|
||||
0x2e0| 00 00 00 12 | .... | corr: 18 0x2e5-0x2e8.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x2e9-0x2f0.7 (8)
|
||||
0x2e0| 2e 13 5c 92 | ..\. | occur: "1994-07-01T00:00:18Z" (773020818) 0x2e9-0x2ec.7 (4)
|
||||
0x2e0| 00 00 00| ...| corr: 19 0x2ed-0x2f0.7 (4)
|
||||
0x2f0|13 |. |
|
||||
| | | [19]{}: leap_second_record 0x2f1-0x2f8.7 (8)
|
||||
0x2f0| 30 e7 24 13 | 0.$. | occur: "1996-01-01T00:00:19Z" (820454419) 0x2f1-0x2f4.7 (4)
|
||||
0x2f0| 00 00 00 14 | .... | corr: 20 0x2f5-0x2f8.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x2f9-0x300.7 (8)
|
||||
0x2f0| 33 b8 48 94 | 3.H. | occur: "1997-07-01T00:00:20Z" (867715220) 0x2f9-0x2fc.7 (4)
|
||||
0x2f0| 00 00 00| ...| corr: 21 0x2fd-0x300.7 (4)
|
||||
0x300|15 |. |
|
||||
| | | [21]{}: leap_second_record 0x301-0x308.7 (8)
|
||||
0x300| 36 8c 10 15 | 6... | occur: "1999-01-01T00:00:21Z" (915148821) 0x301-0x304.7 (4)
|
||||
0x300| 00 00 00 16 | .... | corr: 22 0x305-0x308.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x309-0x310.7 (8)
|
||||
0x300| 43 b7 1b 96 | C... | occur: "2006-01-01T00:00:22Z" (1136073622) 0x309-0x30c.7 (4)
|
||||
0x300| 00 00 00| ...| corr: 23 0x30d-0x310.7 (4)
|
||||
0x310|17 |. |
|
||||
| | | [23]{}: leap_second_record 0x311-0x318.7 (8)
|
||||
0x310| 49 5c 07 97 | I\.. | occur: "2009-01-01T00:00:23Z" (1230768023) 0x311-0x314.7 (4)
|
||||
0x310| 00 00 00 18 | .... | corr: 24 0x315-0x318.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x319-0x320.7 (8)
|
||||
0x310| 4f ef 93 18 | O... | occur: "2012-07-01T00:00:24Z" (1341100824) 0x319-0x31c.7 (4)
|
||||
0x310| 00 00 00| ...| corr: 25 0x31d-0x320.7 (4)
|
||||
0x320|19 |. |
|
||||
| | | [25]{}: leap_second_record 0x321-0x328.7 (8)
|
||||
0x320| 55 93 2d 99 | U.-. | occur: "2015-07-01T00:00:25Z" (1435708825) 0x321-0x324.7 (4)
|
||||
0x320| 00 00 00 1a | .... | corr: 26 0x325-0x328.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x329-0x330.7 (8)
|
||||
0x320| 58 68 46 9a | XhF. | occur: "2017-01-01T00:00:26Z" (1483228826) 0x329-0x32c.7 (4)
|
||||
0x320| 00 00 00| ...| corr: 27 0x32d-0x330.7 (4)
|
||||
0x330|1b |. |
|
||||
| | | standard_wall_indicators[0:6]: 0x331-0x336.7 (6)
|
||||
0x330| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x331-0x331.7 (1)
|
||||
0x330| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x332-0x332.7 (1)
|
||||
0x330| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x333-0x333.7 (1)
|
||||
0x330| 00 | . | [3]: 0 standard_wall_indicator (valid) 0x334-0x334.7 (1)
|
||||
0x330| 01 | . | [4]: 1 standard_wall_indicator (valid) 0x335-0x335.7 (1)
|
||||
0x330| 00 | . | [5]: 0 standard_wall_indicator (valid) 0x336-0x336.7 (1)
|
||||
| | | ut_local_indicators[0:6]: 0x337-0x33c.7 (6)
|
||||
0x330| 00 | . | [0]: 0 ut_local_indicator (valid) 0x337-0x337.7 (1)
|
||||
0x330| 00 | . | [1]: 0 ut_local_indicator (valid) 0x338-0x338.7 (1)
|
||||
0x330| 00 | . | [2]: 0 ut_local_indicator (valid) 0x339-0x339.7 (1)
|
||||
0x330| 00 | . | [3]: 0 ut_local_indicator (valid) 0x33a-0x33a.7 (1)
|
||||
0x330| 01 | . | [4]: 1 ut_local_indicator (valid) 0x33b-0x33b.7 (1)
|
||||
0x330| 00 | . | [5]: 0 ut_local_indicator (valid) 0x33c-0x33c.7 (1)
|
||||
| | | v2plusheader{}: 0x33d-0x368.7 (44)
|
||||
0x330| 54 5a 69| TZi| magic: 0x545a6966 (valid) 0x33d-0x340.7 (4)
|
||||
0x340|66 |f |
|
||||
0x340| 32 | 2 | ver: "2" (0x32) (valid) 0x341-0x341.7 (1)
|
||||
0x340| 00 00 00 00 00 00 00 00 00 00 00 00 00 00| ..............| reserved: raw bits 0x342-0x350.7 (15)
|
||||
0x350|00 |. |
|
||||
0x350| 00 00 00 06 | .... | isutcnt: 6 0x351-0x354.7 (4)
|
||||
0x350| 00 00 00 06 | .... | isstdcnt: 6 0x355-0x358.7 (4)
|
||||
0x350| 00 00 00 1b | .... | leapcnt: 27 0x359-0x35c.7 (4)
|
||||
0x350| 00 00 00| ...| timecnt: 99 0x35d-0x360.7 (4)
|
||||
0x360|63 |c |
|
||||
0x360| 00 00 00 06 | .... | typecnt: 6 0x361-0x364.7 (4)
|
||||
0x360| 00 00 00 1a | .... | charcnt: 26 0x365-0x368.7 (4)
|
||||
| | | v2plusdatablock{}: 0x369-0x871.7 (1289)
|
||||
| | | transition_times[0:99]: 0x369-0x680.7 (792)
|
||||
0x360| ff ff ff ff 93 5e d9| .....^.| [0]: "1912-04-01T05:52:48Z" (-1822500432) transition_time 0x369-0x370.7 (8)
|
||||
0x370|b0 |. |
|
||||
0x370| ff ff ff ff 9f 9f 3b e0 | ......;. | [1]: "1918-10-06T06:00:00Z" (-1616954400) transition_time 0x371-0x378.7 (8)
|
||||
0x370| ff ff ff ff a0 45 51| .....EQ| [2]: "1919-02-09T05:30:00Z" (-1606069800) transition_time 0x379-0x380.7 (8)
|
||||
0x380|d8 |. |
|
||||
0x380| ff ff ff ff a1 7f 1d e0 | ........ | [3]: "1919-10-05T06:00:00Z" (-1585504800) transition_time 0x381-0x388.7 (8)
|
||||
0x380| ff ff ff ff a2 2e 6e| ......n| [4]: "1920-02-15T05:30:00Z" (-1574015400) transition_time 0x389-0x390.7 (8)
|
||||
0x390|58 |X |
|
||||
0x390| ff ff ff ff a3 5e ff e0 | .....^.. | [5]: "1920-10-03T06:00:00Z" (-1554055200) transition_time 0x391-0x398.7 (8)
|
||||
0x390| ff ff ff ff a4 0e 50| ......P| [6]: "1921-02-13T05:30:00Z" (-1542565800) transition_time 0x399-0x3a0.7 (8)
|
||||
0x3a0|58 |X |
|
||||
0x3a0| ff ff ff ff a5 3e e1 e0 | .....>.. | [7]: "1921-10-02T06:00:00Z" (-1522605600) transition_time 0x3a1-0x3a8.7 (8)
|
||||
0x3a0| ff ff ff ff a5 ee 32| ......2| [8]: "1922-02-12T05:30:00Z" (-1511116200) transition_time 0x3a9-0x3b0.7 (8)
|
||||
0x3b0|58 |X |
|
||||
0x3b0| ff ff ff ff a7 27 fe 60 | .....'.` | [9]: "1922-10-08T06:00:00Z" (-1490551200) transition_time 0x3b1-0x3b8.7 (8)
|
||||
0x3b0| ff ff ff ff a7 ce 14| .......| [10]: "1923-02-11T05:30:00Z" (-1479666600) transition_time 0x3b9-0x3c0.7 (8)
|
||||
0x3c0|58 |X |
|
||||
0x3c0| ff ff ff ff a9 07 e0 60 | .......` | [11]: "1923-10-07T06:00:00Z" (-1459101600) transition_time 0x3c1-0x3c8.7 (8)
|
||||
0x3c0| ff ff ff ff a9 ad f6| .......| [12]: "1924-02-10T05:30:00Z" (-1448217000) transition_time 0x3c9-0x3d0.7 (8)
|
||||
0x3d0|58 |X |
|
||||
0x3d0| ff ff ff ff aa e7 c2 60 | .......` | [13]: "1924-10-05T06:00:00Z" (-1427652000) transition_time 0x3d1-0x3d8.7 (8)
|
||||
0x3d0| ff ff ff ff ab 97 12| .......| [14]: "1925-02-15T05:30:00Z" (-1416162600) transition_time 0x3d9-0x3e0.7 (8)
|
||||
0x3e0|d8 |. |
|
||||
0x3e0| ff ff ff ff ac c7 a4 60 | .......` | [15]: "1925-10-04T06:00:00Z" (-1396202400) transition_time 0x3e1-0x3e8.7 (8)
|
||||
0x3e0| ff ff ff ff ad 76 f4| .....v.| [16]: "1926-02-14T05:30:00Z" (-1384713000) transition_time 0x3e9-0x3f0.7 (8)
|
||||
0x3f0|d8 |. |
|
||||
0x3f0| ff ff ff ff ae a7 86 60 | .......` | [17]: "1926-10-03T06:00:00Z" (-1364752800) transition_time 0x3f1-0x3f8.7 (8)
|
||||
0x3f0| ff ff ff ff af 56 d6| .....V.| [18]: "1927-02-13T05:30:00Z" (-1353263400) transition_time 0x3f9-0x400.7 (8)
|
||||
0x400|d8 |. |
|
||||
0x400| ff ff ff ff b0 87 68 60 | ......h` | [19]: "1927-10-02T06:00:00Z" (-1333303200) transition_time 0x401-0x408.7 (8)
|
||||
0x400| ff ff ff ff b1 36 b8| .....6.| [20]: "1928-02-12T05:30:00Z" (-1321813800) transition_time 0x409-0x410.7 (8)
|
||||
0x410|d8 |. |
|
||||
0x410| ff ff ff ff b2 70 84 e0 | .....p.. | [21]: "1928-10-07T06:00:00Z" (-1301248800) transition_time 0x411-0x418.7 (8)
|
||||
0x410| ff ff ff ff b3 16 9a| .......| [22]: "1929-02-10T05:30:00Z" (-1290364200) transition_time 0x419-0x420.7 (8)
|
||||
0x420|d8 |. |
|
||||
0x420| ff ff ff ff b4 50 66 e0 | .....Pf. | [23]: "1929-10-06T06:00:00Z" (-1269799200) transition_time 0x421-0x428.7 (8)
|
||||
0x420| ff ff ff ff b4 f6 7c| ......|| [24]: "1930-02-09T05:30:00Z" (-1258914600) transition_time 0x429-0x430.7 (8)
|
||||
0x430|d8 |. |
|
||||
0x430| ff ff ff ff b6 30 48 e0 | .....0H. | [25]: "1930-10-05T06:00:00Z" (-1238349600) transition_time 0x431-0x438.7 (8)
|
||||
0x430| ff ff ff ff b6 df 99| .......| [26]: "1931-02-15T05:30:00Z" (-1226860200) transition_time 0x439-0x440.7 (8)
|
||||
0x440|58 |X |
|
||||
0x440| ff ff ff ff b8 10 2a e0 | ......*. | [27]: "1931-10-04T06:00:00Z" (-1206900000) transition_time 0x441-0x448.7 (8)
|
||||
0x440| ff ff ff ff b8 bf 7b| ......{| [28]: "1932-02-14T05:30:00Z" (-1195410600) transition_time 0x449-0x450.7 (8)
|
||||
0x450|58 |X |
|
||||
0x450| ff ff ff ff b9 f0 0c e0 | ........ | [29]: "1932-10-02T06:00:00Z" (-1175450400) transition_time 0x451-0x458.7 (8)
|
||||
0x450| ff ff ff ff ba 9f 5d| ......]| [30]: "1933-02-12T05:30:00Z" (-1163961000) transition_time 0x459-0x460.7 (8)
|
||||
0x460|58 |X |
|
||||
0x460| ff ff ff ff bb d9 29 60 | ......)` | [31]: "1933-10-08T06:00:00Z" (-1143396000) transition_time 0x461-0x468.7 (8)
|
||||
0x460| ff ff ff ff bc 7f 3f| ......?| [32]: "1934-02-11T05:30:00Z" (-1132511400) transition_time 0x469-0x470.7 (8)
|
||||
0x470|58 |X |
|
||||
0x470| ff ff ff ff bd b9 0b 60 | .......` | [33]: "1934-10-07T06:00:00Z" (-1111946400) transition_time 0x471-0x478.7 (8)
|
||||
0x470| ff ff ff ff be 5f 21| ....._!| [34]: "1935-02-10T05:30:00Z" (-1101061800) transition_time 0x479-0x480.7 (8)
|
||||
0x480|58 |X |
|
||||
0x480| ff ff ff ff bf 98 ed 60 | .......` | [35]: "1935-10-06T06:00:00Z" (-1080496800) transition_time 0x481-0x488.7 (8)
|
||||
0x480| ff ff ff ff c0 3f 03| .....?.| [36]: "1936-02-09T05:30:00Z" (-1069612200) transition_time 0x489-0x490.7 (8)
|
||||
0x490|58 |X |
|
||||
0x490| ff ff ff ff c1 78 cf 60 | .....x.` | [37]: "1936-10-04T06:00:00Z" (-1049047200) transition_time 0x491-0x498.7 (8)
|
||||
0x490| ff ff ff ff c2 28 1f| .....(.| [38]: "1937-02-14T05:30:00Z" (-1037557800) transition_time 0x499-0x4a0.7 (8)
|
||||
0x4a0|d8 |. |
|
||||
0x4a0| ff ff ff ff c3 58 b1 60 | .....X.` | [39]: "1937-10-03T06:00:00Z" (-1017597600) transition_time 0x4a1-0x4a8.7 (8)
|
||||
0x4a0| ff ff ff ff c4 08 01| .......| [40]: "1938-02-13T05:30:00Z" (-1006108200) transition_time 0x4a9-0x4b0.7 (8)
|
||||
0x4b0|d8 |. |
|
||||
0x4b0| ff ff ff ff c5 38 93 60 | .....8.` | [41]: "1938-10-02T06:00:00Z" (-986148000) transition_time 0x4b1-0x4b8.7 (8)
|
||||
0x4b0| ff ff ff ff c5 e7 e3| .......| [42]: "1939-02-12T05:30:00Z" (-974658600) transition_time 0x4b9-0x4c0.7 (8)
|
||||
0x4c0|d8 |. |
|
||||
0x4c0| ff ff ff ff c7 21 af e0 | .....!.. | [43]: "1939-10-08T06:00:00Z" (-954093600) transition_time 0x4c1-0x4c8.7 (8)
|
||||
0x4c0| ff ff ff ff c7 c7 c5| .......| [44]: "1940-02-11T05:30:00Z" (-943209000) transition_time 0x4c9-0x4d0.7 (8)
|
||||
0x4d0|d8 |. |
|
||||
0x4d0| ff ff ff ff c9 01 91 e0 | ........ | [45]: "1940-10-06T06:00:00Z" (-922644000) transition_time 0x4d1-0x4d8.7 (8)
|
||||
0x4d0| ff ff ff ff c9 a7 a7| .......| [46]: "1941-02-09T05:30:00Z" (-911759400) transition_time 0x4d9-0x4e0.7 (8)
|
||||
0x4e0|d8 |. |
|
||||
0x4e0| ff ff ff ff ca e1 73 e0 | ......s. | [47]: "1941-10-05T06:00:00Z" (-891194400) transition_time 0x4e1-0x4e8.7 (8)
|
||||
0x4e0| ff ff ff ff cb 90 c4| .......| [48]: "1942-02-15T05:30:00Z" (-879705000) transition_time 0x4e9-0x4f0.7 (8)
|
||||
0x4f0|58 |X |
|
||||
0x4f0| ff ff ff ff cc 40 22 e0 | .....@". | [49]: "1942-06-28T06:00:00Z" (-868212000) transition_time 0x4f1-0x4f8.7 (8)
|
||||
0x4f0| ff ff ff ff d2 23 f4| .....#.| [50]: "1945-08-14T23:00:00Z" (-769395600) transition_time 0x4f9-0x500.7 (8)
|
||||
0x500|70 |p |
|
||||
0x500| ff ff ff ff d2 c6 71 50 | ......qP | [51]: "1945-12-16T05:00:00Z" (-758746800) transition_time 0x501-0x508.7 (8)
|
||||
0x500| ff ff ff ff d6 29 fa| .....).| [52]: "1947-10-05T06:00:00Z" (-701892000) transition_time 0x509-0x510.7 (8)
|
||||
0x510|60 |` |
|
||||
0x510| ff ff ff ff d6 d9 4a d8 | ......J. | [53]: "1948-02-15T05:30:00Z" (-690402600) transition_time 0x511-0x518.7 (8)
|
||||
0x510| ff ff ff ff d8 09 dc| .......| [54]: "1948-10-03T06:00:00Z" (-670442400) transition_time 0x519-0x520.7 (8)
|
||||
0x520|60 |` |
|
||||
0x520| ff ff ff ff d8 b9 2c d8 | ......,. | [55]: "1949-02-13T05:30:00Z" (-658953000) transition_time 0x521-0x528.7 (8)
|
||||
0x520| ff ff ff ff d9 e9 be| .......| [56]: "1949-10-02T06:00:00Z" (-638992800) transition_time 0x529-0x530.7 (8)
|
||||
0x530|60 |` |
|
||||
0x530| ff ff ff ff da 99 0e d8 | ........ | [57]: "1950-02-12T05:30:00Z" (-627503400) transition_time 0x531-0x538.7 (8)
|
||||
0x530| ff ff ff ff db d2 da| .......| [58]: "1950-10-08T06:00:00Z" (-606938400) transition_time 0x539-0x540.7 (8)
|
||||
0x540|e0 |. |
|
||||
0x540| ff ff ff ff dc 78 f0 d8 | .....x.. | [59]: "1951-02-11T05:30:00Z" (-596053800) transition_time 0x541-0x548.7 (8)
|
||||
0x540| ff ff ff ff dd b2 bc| .......| [60]: "1951-10-07T06:00:00Z" (-575488800) transition_time 0x549-0x550.7 (8)
|
||||
0x550|e0 |. |
|
||||
0x550| ff ff ff ff de 58 d2 d8 | .....X.. | [61]: "1952-02-10T05:30:00Z" (-564604200) transition_time 0x551-0x558.7 (8)
|
||||
0x550| ff ff ff ff df 92 9e| .......| [62]: "1952-10-05T06:00:00Z" (-544039200) transition_time 0x559-0x560.7 (8)
|
||||
0x560|e0 |. |
|
||||
0x560| ff ff ff ff e0 41 ef 58 | .....A.X | [63]: "1953-02-15T05:30:00Z" (-532549800) transition_time 0x561-0x568.7 (8)
|
||||
0x560| ff ff ff ff e1 72 80| .....r.| [64]: "1953-10-04T06:00:00Z" (-512589600) transition_time 0x569-0x570.7 (8)
|
||||
0x570|e0 |. |
|
||||
0x570| ff ff ff ff e2 21 d1 58 | .....!.X | [65]: "1954-02-14T05:30:00Z" (-501100200) transition_time 0x571-0x578.7 (8)
|
||||
0x570| ff ff ff ff e3 52 62| .....Rb| [66]: "1954-10-03T06:00:00Z" (-481140000) transition_time 0x579-0x580.7 (8)
|
||||
0x580|e0 |. |
|
||||
0x580| ff ff ff ff e4 01 b3 58 | .......X | [67]: "1955-02-13T05:30:00Z" (-469650600) transition_time 0x581-0x588.7 (8)
|
||||
0x580| ff ff ff ff e5 32 44| .....2D| [68]: "1955-10-02T06:00:00Z" (-449690400) transition_time 0x589-0x590.7 (8)
|
||||
0x590|e0 |. |
|
||||
0x590| ff ff ff ff e5 e1 95 58 | .......X | [69]: "1956-02-12T05:30:00Z" (-438201000) transition_time 0x591-0x598.7 (8)
|
||||
0x590| ff ff ff ff e7 1b 61| ......a| [70]: "1956-10-07T06:00:00Z" (-417636000) transition_time 0x599-0x5a0.7 (8)
|
||||
0x5a0|60 |` |
|
||||
0x5a0| ff ff ff ff e7 c1 77 58 | ......wX | [71]: "1957-02-10T05:30:00Z" (-406751400) transition_time 0x5a1-0x5a8.7 (8)
|
||||
0x5a0| ff ff ff ff e8 fb 43| ......C| [72]: "1957-10-06T06:00:00Z" (-386186400) transition_time 0x5a9-0x5b0.7 (8)
|
||||
0x5b0|60 |` |
|
||||
0x5b0| ff ff ff ff e9 a1 59 58 | ......YX | [73]: "1958-02-09T05:30:00Z" (-375301800) transition_time 0x5b1-0x5b8.7 (8)
|
||||
0x5b0| ff ff ff ff ea db 25| ......%| [74]: "1958-10-05T06:00:00Z" (-354736800) transition_time 0x5b9-0x5c0.7 (8)
|
||||
0x5c0|60 |` |
|
||||
0x5c0| ff ff ff ff eb 8a 75 d8 | ......u. | [75]: "1959-02-15T05:30:00Z" (-343247400) transition_time 0x5c1-0x5c8.7 (8)
|
||||
0x5c0| ff ff ff ff ec bb 07| .......| [76]: "1959-10-04T06:00:00Z" (-323287200) transition_time 0x5c9-0x5d0.7 (8)
|
||||
0x5d0|60 |` |
|
||||
0x5d0| ff ff ff ff ed 6a 57 d8 | .....jW. | [77]: "1960-02-14T05:30:00Z" (-311797800) transition_time 0x5d1-0x5d8.7 (8)
|
||||
0x5d0| ff ff ff ff ee 9a e9| .......| [78]: "1960-10-02T06:00:00Z" (-291837600) transition_time 0x5d9-0x5e0.7 (8)
|
||||
0x5e0|60 |` |
|
||||
0x5e0| ff ff ff ff ef 4a 39 d8 | .....J9. | [79]: "1961-02-12T05:30:00Z" (-280348200) transition_time 0x5e1-0x5e8.7 (8)
|
||||
0x5e0| ff ff ff ff f0 84 05| .......| [80]: "1961-10-08T06:00:00Z" (-259783200) transition_time 0x5e9-0x5f0.7 (8)
|
||||
0x5f0|e0 |. |
|
||||
0x5f0| ff ff ff ff f1 2a 1b d8 | .....*.. | [81]: "1962-02-11T05:30:00Z" (-248898600) transition_time 0x5f1-0x5f8.7 (8)
|
||||
0x5f0| ff ff ff ff f2 63 e7| .....c.| [82]: "1962-10-07T06:00:00Z" (-228333600) transition_time 0x5f9-0x600.7 (8)
|
||||
0x600|e0 |. |
|
||||
0x600| ff ff ff ff f3 09 fd d8 | ........ | [83]: "1963-02-10T05:30:00Z" (-217449000) transition_time 0x601-0x608.7 (8)
|
||||
0x600| ff ff ff ff f4 43 c9| .....C.| [84]: "1963-10-06T06:00:00Z" (-196884000) transition_time 0x609-0x610.7 (8)
|
||||
0x610|e0 |. |
|
||||
0x610| ff ff ff ff f4 e9 df d8 | ........ | [85]: "1964-02-09T05:30:00Z" (-185999400) transition_time 0x611-0x618.7 (8)
|
||||
0x610| ff ff ff ff f6 23 ab| .....#.| [86]: "1964-10-04T06:00:00Z" (-165434400) transition_time 0x619-0x620.7 (8)
|
||||
0x620|e0 |. |
|
||||
0x620| ff ff ff ff f6 d2 fc 58 | .......X | [87]: "1965-02-14T05:30:00Z" (-153945000) transition_time 0x621-0x628.7 (8)
|
||||
0x620| ff ff ff ff f8 03 8d| .......| [88]: "1965-10-03T06:00:00Z" (-133984800) transition_time 0x629-0x630.7 (8)
|
||||
0x630|e0 |. |
|
||||
0x630| ff ff ff ff f8 b2 de 58 | .......X | [89]: "1966-02-13T05:30:00Z" (-122495400) transition_time 0x631-0x638.7 (8)
|
||||
0x630| ff ff ff ff f9 e3 6f| ......o| [90]: "1966-10-02T06:00:00Z" (-102535200) transition_time 0x639-0x640.7 (8)
|
||||
0x640|e0 |. |
|
||||
0x640| ff ff ff ff fa 92 c0 58 | .......X | [91]: "1967-02-12T05:30:00Z" (-91045800) transition_time 0x641-0x648.7 (8)
|
||||
0x640| ff ff ff ff fb cc 8c| .......| [92]: "1967-10-08T06:00:00Z" (-70480800) transition_time 0x649-0x650.7 (8)
|
||||
0x650|60 |` |
|
||||
0x650| ff ff ff ff fc 72 a2 58 | .....r.X | [93]: "1968-02-11T05:30:00Z" (-59596200) transition_time 0x651-0x658.7 (8)
|
||||
0x650| 00 00 00 00 07 62 db| .....b.| [94]: "1973-12-05T06:00:02Z" (123919202) transition_time 0x659-0x660.7 (8)
|
||||
0x660|62 |b |
|
||||
0x660| 00 00 00 00 07 b9 d0 53 | .......S | [95]: "1974-02-09T05:00:03Z" (129618003) transition_time 0x661-0x668.7 (8)
|
||||
0x660| 00 00 00 00 18 61 71| .....aq| [96]: "1982-12-18T06:00:11Z" (409039211) transition_time 0x669-0x670.7 (8)
|
||||
0x670|6b |k |
|
||||
0x670| 00 00 00 00 18 ab 37 5b | ......7[ | [97]: "1983-02-12T05:00:11Z" (413874011) transition_time 0x671-0x678.7 (8)
|
||||
0x670| 00 00 00 00 64 9b 78| ....d.x| [98]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x679-0x680.7 (8)
|
||||
0x680|1b |. |
|
||||
| | | transition_types[0:99]: 0x681-0x6e3.7 (99)
|
||||
0x680| 02 | . | [0]: 2 transition_type 0x681-0x681.7 (1)
|
||||
0x680| 01 | . | [1]: 1 transition_type 0x682-0x682.7 (1)
|
||||
0x680| 02 | . | [2]: 2 transition_type 0x683-0x683.7 (1)
|
||||
0x680| 01 | . | [3]: 1 transition_type 0x684-0x684.7 (1)
|
||||
0x680| 02 | . | [4]: 2 transition_type 0x685-0x685.7 (1)
|
||||
0x680| 01 | . | [5]: 1 transition_type 0x686-0x686.7 (1)
|
||||
0x680| 02 | . | [6]: 2 transition_type 0x687-0x687.7 (1)
|
||||
0x680| 01 | . | [7]: 1 transition_type 0x688-0x688.7 (1)
|
||||
0x680| 02 | . | [8]: 2 transition_type 0x689-0x689.7 (1)
|
||||
0x680| 01 | . | [9]: 1 transition_type 0x68a-0x68a.7 (1)
|
||||
0x680| 02 | . | [10]: 2 transition_type 0x68b-0x68b.7 (1)
|
||||
0x680| 01 | . | [11]: 1 transition_type 0x68c-0x68c.7 (1)
|
||||
0x680| 02 | . | [12]: 2 transition_type 0x68d-0x68d.7 (1)
|
||||
0x680| 01 | . | [13]: 1 transition_type 0x68e-0x68e.7 (1)
|
||||
0x680| 02| .| [14]: 2 transition_type 0x68f-0x68f.7 (1)
|
||||
0x690|01 |. | [15]: 1 transition_type 0x690-0x690.7 (1)
|
||||
0x690| 02 | . | [16]: 2 transition_type 0x691-0x691.7 (1)
|
||||
0x690| 01 | . | [17]: 1 transition_type 0x692-0x692.7 (1)
|
||||
0x690| 02 | . | [18]: 2 transition_type 0x693-0x693.7 (1)
|
||||
0x690| 01 | . | [19]: 1 transition_type 0x694-0x694.7 (1)
|
||||
0x690| 02 | . | [20]: 2 transition_type 0x695-0x695.7 (1)
|
||||
0x690| 01 | . | [21]: 1 transition_type 0x696-0x696.7 (1)
|
||||
0x690| 02 | . | [22]: 2 transition_type 0x697-0x697.7 (1)
|
||||
0x690| 01 | . | [23]: 1 transition_type 0x698-0x698.7 (1)
|
||||
0x690| 02 | . | [24]: 2 transition_type 0x699-0x699.7 (1)
|
||||
0x690| 01 | . | [25]: 1 transition_type 0x69a-0x69a.7 (1)
|
||||
0x690| 02 | . | [26]: 2 transition_type 0x69b-0x69b.7 (1)
|
||||
0x690| 01 | . | [27]: 1 transition_type 0x69c-0x69c.7 (1)
|
||||
0x690| 02 | . | [28]: 2 transition_type 0x69d-0x69d.7 (1)
|
||||
0x690| 01 | . | [29]: 1 transition_type 0x69e-0x69e.7 (1)
|
||||
0x690| 02| .| [30]: 2 transition_type 0x69f-0x69f.7 (1)
|
||||
0x6a0|01 |. | [31]: 1 transition_type 0x6a0-0x6a0.7 (1)
|
||||
0x6a0| 02 | . | [32]: 2 transition_type 0x6a1-0x6a1.7 (1)
|
||||
0x6a0| 01 | . | [33]: 1 transition_type 0x6a2-0x6a2.7 (1)
|
||||
0x6a0| 02 | . | [34]: 2 transition_type 0x6a3-0x6a3.7 (1)
|
||||
0x6a0| 01 | . | [35]: 1 transition_type 0x6a4-0x6a4.7 (1)
|
||||
0x6a0| 02 | . | [36]: 2 transition_type 0x6a5-0x6a5.7 (1)
|
||||
0x6a0| 01 | . | [37]: 1 transition_type 0x6a6-0x6a6.7 (1)
|
||||
0x6a0| 02 | . | [38]: 2 transition_type 0x6a7-0x6a7.7 (1)
|
||||
0x6a0| 01 | . | [39]: 1 transition_type 0x6a8-0x6a8.7 (1)
|
||||
0x6a0| 02 | . | [40]: 2 transition_type 0x6a9-0x6a9.7 (1)
|
||||
0x6a0| 01 | . | [41]: 1 transition_type 0x6aa-0x6aa.7 (1)
|
||||
0x6a0| 02 | . | [42]: 2 transition_type 0x6ab-0x6ab.7 (1)
|
||||
0x6a0| 01 | . | [43]: 1 transition_type 0x6ac-0x6ac.7 (1)
|
||||
0x6a0| 02 | . | [44]: 2 transition_type 0x6ad-0x6ad.7 (1)
|
||||
0x6a0| 01 | . | [45]: 1 transition_type 0x6ae-0x6ae.7 (1)
|
||||
0x6a0| 02| .| [46]: 2 transition_type 0x6af-0x6af.7 (1)
|
||||
0x6b0|01 |. | [47]: 1 transition_type 0x6b0-0x6b0.7 (1)
|
||||
0x6b0| 02 | . | [48]: 2 transition_type 0x6b1-0x6b1.7 (1)
|
||||
0x6b0| 03 | . | [49]: 3 transition_type 0x6b2-0x6b2.7 (1)
|
||||
0x6b0| 04 | . | [50]: 4 transition_type 0x6b3-0x6b3.7 (1)
|
||||
0x6b0| 02 | . | [51]: 2 transition_type 0x6b4-0x6b4.7 (1)
|
||||
0x6b0| 01 | . | [52]: 1 transition_type 0x6b5-0x6b5.7 (1)
|
||||
0x6b0| 02 | . | [53]: 2 transition_type 0x6b6-0x6b6.7 (1)
|
||||
0x6b0| 01 | . | [54]: 1 transition_type 0x6b7-0x6b7.7 (1)
|
||||
0x6b0| 02 | . | [55]: 2 transition_type 0x6b8-0x6b8.7 (1)
|
||||
0x6b0| 01 | . | [56]: 1 transition_type 0x6b9-0x6b9.7 (1)
|
||||
0x6b0| 02 | . | [57]: 2 transition_type 0x6ba-0x6ba.7 (1)
|
||||
0x6b0| 01 | . | [58]: 1 transition_type 0x6bb-0x6bb.7 (1)
|
||||
0x6b0| 02 | . | [59]: 2 transition_type 0x6bc-0x6bc.7 (1)
|
||||
0x6b0| 01 | . | [60]: 1 transition_type 0x6bd-0x6bd.7 (1)
|
||||
0x6b0| 02 | . | [61]: 2 transition_type 0x6be-0x6be.7 (1)
|
||||
0x6b0| 01| .| [62]: 1 transition_type 0x6bf-0x6bf.7 (1)
|
||||
0x6c0|02 |. | [63]: 2 transition_type 0x6c0-0x6c0.7 (1)
|
||||
0x6c0| 01 | . | [64]: 1 transition_type 0x6c1-0x6c1.7 (1)
|
||||
0x6c0| 02 | . | [65]: 2 transition_type 0x6c2-0x6c2.7 (1)
|
||||
0x6c0| 01 | . | [66]: 1 transition_type 0x6c3-0x6c3.7 (1)
|
||||
0x6c0| 02 | . | [67]: 2 transition_type 0x6c4-0x6c4.7 (1)
|
||||
0x6c0| 01 | . | [68]: 1 transition_type 0x6c5-0x6c5.7 (1)
|
||||
0x6c0| 02 | . | [69]: 2 transition_type 0x6c6-0x6c6.7 (1)
|
||||
0x6c0| 01 | . | [70]: 1 transition_type 0x6c7-0x6c7.7 (1)
|
||||
0x6c0| 02 | . | [71]: 2 transition_type 0x6c8-0x6c8.7 (1)
|
||||
0x6c0| 01 | . | [72]: 1 transition_type 0x6c9-0x6c9.7 (1)
|
||||
0x6c0| 02 | . | [73]: 2 transition_type 0x6ca-0x6ca.7 (1)
|
||||
0x6c0| 01 | . | [74]: 1 transition_type 0x6cb-0x6cb.7 (1)
|
||||
0x6c0| 02 | . | [75]: 2 transition_type 0x6cc-0x6cc.7 (1)
|
||||
0x6c0| 01 | . | [76]: 1 transition_type 0x6cd-0x6cd.7 (1)
|
||||
0x6c0| 02 | . | [77]: 2 transition_type 0x6ce-0x6ce.7 (1)
|
||||
0x6c0| 01| .| [78]: 1 transition_type 0x6cf-0x6cf.7 (1)
|
||||
0x6d0|02 |. | [79]: 2 transition_type 0x6d0-0x6d0.7 (1)
|
||||
0x6d0| 01 | . | [80]: 1 transition_type 0x6d1-0x6d1.7 (1)
|
||||
0x6d0| 02 | . | [81]: 2 transition_type 0x6d2-0x6d2.7 (1)
|
||||
0x6d0| 01 | . | [82]: 1 transition_type 0x6d3-0x6d3.7 (1)
|
||||
0x6d0| 02 | . | [83]: 2 transition_type 0x6d4-0x6d4.7 (1)
|
||||
0x6d0| 01 | . | [84]: 1 transition_type 0x6d5-0x6d5.7 (1)
|
||||
0x6d0| 02 | . | [85]: 2 transition_type 0x6d6-0x6d6.7 (1)
|
||||
0x6d0| 01 | . | [86]: 1 transition_type 0x6d7-0x6d7.7 (1)
|
||||
0x6d0| 02 | . | [87]: 2 transition_type 0x6d8-0x6d8.7 (1)
|
||||
0x6d0| 01 | . | [88]: 1 transition_type 0x6d9-0x6d9.7 (1)
|
||||
0x6d0| 02 | . | [89]: 2 transition_type 0x6da-0x6da.7 (1)
|
||||
0x6d0| 01 | . | [90]: 1 transition_type 0x6db-0x6db.7 (1)
|
||||
0x6d0| 02 | . | [91]: 2 transition_type 0x6dc-0x6dc.7 (1)
|
||||
0x6d0| 01 | . | [92]: 1 transition_type 0x6dd-0x6dd.7 (1)
|
||||
0x6d0| 02 | . | [93]: 2 transition_type 0x6de-0x6de.7 (1)
|
||||
0x6d0| 05| .| [94]: 5 transition_type 0x6df-0x6df.7 (1)
|
||||
0x6e0|02 |. | [95]: 2 transition_type 0x6e0-0x6e0.7 (1)
|
||||
0x6e0| 05 | . | [96]: 5 transition_type 0x6e1-0x6e1.7 (1)
|
||||
0x6e0| 02 | . | [97]: 2 transition_type 0x6e2-0x6e2.7 (1)
|
||||
0x6e0| 02 | . | [98]: 2 transition_type 0x6e3-0x6e3.7 (1)
|
||||
| | | local_time_type_records[0:6]: 0x6e4-0x707.7 (36)
|
||||
| | | [0]{}: local_time_type 0x6e4-0x6e9.7 (6)
|
||||
0x6e0| ff ff ad 50 | ...P | utoff: -21168 (valid) 0x6e4-0x6e7.7 (4)
|
||||
0x6e0| 00 | . | dst: 0 (valid) 0x6e8-0x6e8.7 (1)
|
||||
0x6e0| 00 | . | idx: 0 (valid) 0x6e9-0x6e9.7 (1)
|
||||
| | | [1]{}: local_time_type 0x6ea-0x6ef.7 (6)
|
||||
0x6e0| ff ff b2 a8 | .... | utoff: -19800 (valid) 0x6ea-0x6ed.7 (4)
|
||||
0x6e0| 01 | . | dst: 1 (valid) 0x6ee-0x6ee.7 (1)
|
||||
0x6e0| 04| .| idx: 4 (valid) 0x6ef-0x6ef.7 (1)
|
||||
| | | [2]{}: local_time_type 0x6f0-0x6f5.7 (6)
|
||||
0x6f0|ff ff ab a0 |.... | utoff: -21600 (valid) 0x6f0-0x6f3.7 (4)
|
||||
0x6f0| 00 | . | dst: 0 (valid) 0x6f4-0x6f4.7 (1)
|
||||
0x6f0| 0a | . | idx: 10 (valid) 0x6f5-0x6f5.7 (1)
|
||||
| | | [3]{}: local_time_type 0x6f6-0x6fb.7 (6)
|
||||
0x6f0| ff ff b9 b0 | .... | utoff: -18000 (valid) 0x6f6-0x6f9.7 (4)
|
||||
0x6f0| 01 | . | dst: 1 (valid) 0x6fa-0x6fa.7 (1)
|
||||
0x6f0| 0e | . | idx: 14 (valid) 0x6fb-0x6fb.7 (1)
|
||||
| | | [4]{}: local_time_type 0x6fc-0x701.7 (6)
|
||||
0x6f0| ff ff b9 b0| ....| utoff: -18000 (valid) 0x6fc-0x6ff.7 (4)
|
||||
0x700|01 |. | dst: 1 (valid) 0x700-0x700.7 (1)
|
||||
0x700| 12 | . | idx: 18 (valid) 0x701-0x701.7 (1)
|
||||
| | | [5]{}: local_time_type 0x702-0x707.7 (6)
|
||||
0x700| ff ff b9 b0 | .... | utoff: -18000 (valid) 0x702-0x705.7 (4)
|
||||
0x700| 01 | . | dst: 1 (valid) 0x706-0x706.7 (1)
|
||||
0x700| 16 | . | idx: 22 (valid) 0x707-0x707.7 (1)
|
||||
| | | time_zone_designations[0:6]: 0x708-0x721.7 (26)
|
||||
0x700| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x708-0x70b.7 (4)
|
||||
0x700| 2d 30 35 33| -053| [1]: "-0530" time_zone_designation 0x70c-0x711.7 (6)
|
||||
0x710|30 00 |0. |
|
||||
0x710| 43 53 54 00 | CST. | [2]: "CST" time_zone_designation 0x712-0x715.7 (4)
|
||||
0x710| 43 57 54 00 | CWT. | [3]: "CWT" time_zone_designation 0x716-0x719.7 (4)
|
||||
0x710| 43 50 54 00 | CPT. | [4]: "CPT" time_zone_designation 0x71a-0x71d.7 (4)
|
||||
0x710| 43 44| CD| [5]: "CDT" time_zone_designation 0x71e-0x721.7 (4)
|
||||
0x720|54 00 |T. |
|
||||
| | | leap_second_records[0:27]: 0x722-0x865.7 (324)
|
||||
| | | [0]{}: leap_second_record 0x722-0x72d.7 (12)
|
||||
0x720| 00 00 00 00 04 b2 58 00 | ......X. | occur: "1972-07-01T00:00:00Z" (78796800) 0x722-0x729.7 (8)
|
||||
0x720| 00 00 00 01 | .... | corr: 1 0x72a-0x72d.7 (4)
|
||||
| | | [1]{}: leap_second_record 0x72e-0x739.7 (12)
|
||||
0x720| 00 00| ..| occur: "1973-01-01T00:00:01Z" (94694401) 0x72e-0x735.7 (8)
|
||||
0x730|00 00 05 a4 ec 01 |...... |
|
||||
0x730| 00 00 00 02 | .... | corr: 2 0x736-0x739.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x73a-0x745.7 (12)
|
||||
0x730| 00 00 00 00 07 86| ......| occur: "1974-01-01T00:00:02Z" (126230402) 0x73a-0x741.7 (8)
|
||||
0x740|1f 82 |.. |
|
||||
0x740| 00 00 00 03 | .... | corr: 3 0x742-0x745.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x746-0x751.7 (12)
|
||||
0x740| 00 00 00 00 09 67 53 03 | .....gS. | occur: "1975-01-01T00:00:03Z" (157766403) 0x746-0x74d.7 (8)
|
||||
0x740| 00 00| ..| corr: 4 0x74e-0x751.7 (4)
|
||||
0x750|00 04 |.. |
|
||||
| | | [4]{}: leap_second_record 0x752-0x75d.7 (12)
|
||||
0x750| 00 00 00 00 0b 48 86 84 | .....H.. | occur: "1976-01-01T00:00:04Z" (189302404) 0x752-0x759.7 (8)
|
||||
0x750| 00 00 00 05 | .... | corr: 5 0x75a-0x75d.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x75e-0x769.7 (12)
|
||||
0x750| 00 00| ..| occur: "1977-01-01T00:00:05Z" (220924805) 0x75e-0x765.7 (8)
|
||||
0x760|00 00 0d 2b 0b 85 |...+.. |
|
||||
0x760| 00 00 00 06 | .... | corr: 6 0x766-0x769.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x76a-0x775.7 (12)
|
||||
0x760| 00 00 00 00 0f 0c| ......| occur: "1978-01-01T00:00:06Z" (252460806) 0x76a-0x771.7 (8)
|
||||
0x770|3f 06 |?. |
|
||||
0x770| 00 00 00 07 | .... | corr: 7 0x772-0x775.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x776-0x781.7 (12)
|
||||
0x770| 00 00 00 00 10 ed 72 87 | ......r. | occur: "1979-01-01T00:00:07Z" (283996807) 0x776-0x77d.7 (8)
|
||||
0x770| 00 00| ..| corr: 8 0x77e-0x781.7 (4)
|
||||
0x780|00 08 |.. |
|
||||
| | | [8]{}: leap_second_record 0x782-0x78d.7 (12)
|
||||
0x780| 00 00 00 00 12 ce a6 08 | ........ | occur: "1980-01-01T00:00:08Z" (315532808) 0x782-0x789.7 (8)
|
||||
0x780| 00 00 00 09 | .... | corr: 9 0x78a-0x78d.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x78e-0x799.7 (12)
|
||||
0x780| 00 00| ..| occur: "1981-07-01T00:00:09Z" (362793609) 0x78e-0x795.7 (8)
|
||||
0x790|00 00 15 9f ca 89 |...... |
|
||||
0x790| 00 00 00 0a | .... | corr: 10 0x796-0x799.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x79a-0x7a5.7 (12)
|
||||
0x790| 00 00 00 00 17 80| ......| occur: "1982-07-01T00:00:10Z" (394329610) 0x79a-0x7a1.7 (8)
|
||||
0x7a0|fe 0a |.. |
|
||||
0x7a0| 00 00 00 0b | .... | corr: 11 0x7a2-0x7a5.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x7a6-0x7b1.7 (12)
|
||||
0x7a0| 00 00 00 00 19 62 31 8b | .....b1. | occur: "1983-07-01T00:00:11Z" (425865611) 0x7a6-0x7ad.7 (8)
|
||||
0x7a0| 00 00| ..| corr: 12 0x7ae-0x7b1.7 (4)
|
||||
0x7b0|00 0c |.. |
|
||||
| | | [12]{}: leap_second_record 0x7b2-0x7bd.7 (12)
|
||||
0x7b0| 00 00 00 00 1d 25 ea 0c | .....%.. | occur: "1985-07-01T00:00:12Z" (489024012) 0x7b2-0x7b9.7 (8)
|
||||
0x7b0| 00 00 00 0d | .... | corr: 13 0x7ba-0x7bd.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x7be-0x7c9.7 (12)
|
||||
0x7b0| 00 00| ..| occur: "1988-01-01T00:00:13Z" (567993613) 0x7be-0x7c5.7 (8)
|
||||
0x7c0|00 00 21 da e5 0d |..!... |
|
||||
0x7c0| 00 00 00 0e | .... | corr: 14 0x7c6-0x7c9.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x7ca-0x7d5.7 (12)
|
||||
0x7c0| 00 00 00 00 25 9e| ....%.| occur: "1990-01-01T00:00:14Z" (631152014) 0x7ca-0x7d1.7 (8)
|
||||
0x7d0|9d 8e |.. |
|
||||
0x7d0| 00 00 00 0f | .... | corr: 15 0x7d2-0x7d5.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x7d6-0x7e1.7 (12)
|
||||
0x7d0| 00 00 00 00 27 7f d1 0f | ....'... | occur: "1991-01-01T00:00:15Z" (662688015) 0x7d6-0x7dd.7 (8)
|
||||
0x7d0| 00 00| ..| corr: 16 0x7de-0x7e1.7 (4)
|
||||
0x7e0|00 10 |.. |
|
||||
| | | [16]{}: leap_second_record 0x7e2-0x7ed.7 (12)
|
||||
0x7e0| 00 00 00 00 2a 50 f5 90 | ....*P.. | occur: "1992-07-01T00:00:16Z" (709948816) 0x7e2-0x7e9.7 (8)
|
||||
0x7e0| 00 00 00 11 | .... | corr: 17 0x7ea-0x7ed.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x7ee-0x7f9.7 (12)
|
||||
0x7e0| 00 00| ..| occur: "1993-07-01T00:00:17Z" (741484817) 0x7ee-0x7f5.7 (8)
|
||||
0x7f0|00 00 2c 32 29 11 |..,2). |
|
||||
0x7f0| 00 00 00 12 | .... | corr: 18 0x7f6-0x7f9.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x7fa-0x805.7 (12)
|
||||
0x7f0| 00 00 00 00 2e 13| ......| occur: "1994-07-01T00:00:18Z" (773020818) 0x7fa-0x801.7 (8)
|
||||
0x800|5c 92 |\. |
|
||||
0x800| 00 00 00 13 | .... | corr: 19 0x802-0x805.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x806-0x811.7 (12)
|
||||
0x800| 00 00 00 00 30 e7 24 13 | ....0.$. | occur: "1996-01-01T00:00:19Z" (820454419) 0x806-0x80d.7 (8)
|
||||
0x800| 00 00| ..| corr: 20 0x80e-0x811.7 (4)
|
||||
0x810|00 14 |.. |
|
||||
| | | [20]{}: leap_second_record 0x812-0x81d.7 (12)
|
||||
0x810| 00 00 00 00 33 b8 48 94 | ....3.H. | occur: "1997-07-01T00:00:20Z" (867715220) 0x812-0x819.7 (8)
|
||||
0x810| 00 00 00 15 | .... | corr: 21 0x81a-0x81d.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x81e-0x829.7 (12)
|
||||
0x810| 00 00| ..| occur: "1999-01-01T00:00:21Z" (915148821) 0x81e-0x825.7 (8)
|
||||
0x820|00 00 36 8c 10 15 |..6... |
|
||||
0x820| 00 00 00 16 | .... | corr: 22 0x826-0x829.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x82a-0x835.7 (12)
|
||||
0x820| 00 00 00 00 43 b7| ....C.| occur: "2006-01-01T00:00:22Z" (1136073622) 0x82a-0x831.7 (8)
|
||||
0x830|1b 96 |.. |
|
||||
0x830| 00 00 00 17 | .... | corr: 23 0x832-0x835.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x836-0x841.7 (12)
|
||||
0x830| 00 00 00 00 49 5c 07 97 | ....I\.. | occur: "2009-01-01T00:00:23Z" (1230768023) 0x836-0x83d.7 (8)
|
||||
0x830| 00 00| ..| corr: 24 0x83e-0x841.7 (4)
|
||||
0x840|00 18 |.. |
|
||||
| | | [24]{}: leap_second_record 0x842-0x84d.7 (12)
|
||||
0x840| 00 00 00 00 4f ef 93 18 | ....O... | occur: "2012-07-01T00:00:24Z" (1341100824) 0x842-0x849.7 (8)
|
||||
0x840| 00 00 00 19 | .... | corr: 25 0x84a-0x84d.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x84e-0x859.7 (12)
|
||||
0x840| 00 00| ..| occur: "2015-07-01T00:00:25Z" (1435708825) 0x84e-0x855.7 (8)
|
||||
0x850|00 00 55 93 2d 99 |..U.-. |
|
||||
0x850| 00 00 00 1a | .... | corr: 26 0x856-0x859.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x85a-0x865.7 (12)
|
||||
0x850| 00 00 00 00 58 68| ....Xh| occur: "2017-01-01T00:00:26Z" (1483228826) 0x85a-0x861.7 (8)
|
||||
0x860|46 9a |F. |
|
||||
0x860| 00 00 00 1b | .... | corr: 27 0x862-0x865.7 (4)
|
||||
| | | standard_wall_indicators[0:6]: 0x866-0x86b.7 (6)
|
||||
0x860| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x866-0x866.7 (1)
|
||||
0x860| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x867-0x867.7 (1)
|
||||
0x860| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x868-0x868.7 (1)
|
||||
0x860| 00 | . | [3]: 0 standard_wall_indicator (valid) 0x869-0x869.7 (1)
|
||||
0x860| 01 | . | [4]: 1 standard_wall_indicator (valid) 0x86a-0x86a.7 (1)
|
||||
0x860| 00 | . | [5]: 0 standard_wall_indicator (valid) 0x86b-0x86b.7 (1)
|
||||
| | | ut_local_indicators[0:6]: 0x86c-0x871.7 (6)
|
||||
0x860| 00 | . | [0]: 0 ut_local_indicator (valid) 0x86c-0x86c.7 (1)
|
||||
0x860| 00 | . | [1]: 0 ut_local_indicator (valid) 0x86d-0x86d.7 (1)
|
||||
0x860| 00 | . | [2]: 0 ut_local_indicator (valid) 0x86e-0x86e.7 (1)
|
||||
0x860| 00| .| [3]: 0 ut_local_indicator (valid) 0x86f-0x86f.7 (1)
|
||||
0x870|01 |. | [4]: 1 ut_local_indicator (valid) 0x870-0x870.7 (1)
|
||||
0x870| 00 | . | [5]: 0 ut_local_indicator (valid) 0x871-0x871.7 (1)
|
||||
| | | footer{}: 0x872-0x873.7 (2)
|
||||
0x870| 0a | . | nl1: 10 (valid) 0x872-0x872.7 (1)
|
||||
| | | tz_string: "" 0x873-NA (0)
|
||||
0x870| 0a| | .| | nl2: 10 (valid) 0x873-0x873.7 (1)
|
BIN
format/tzif/testdata/Berlin
vendored
Normal file
BIN
format/tzif/testdata/Berlin
vendored
Normal file
Binary file not shown.
812
format/tzif/testdata/Berlin.fqtest
vendored
Normal file
812
format/tzif/testdata/Berlin.fqtest
vendored
Normal file
@ -0,0 +1,812 @@
|
||||
$ fq -d tzif dv Berlin
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: Berlin (tzif) 0x0-0x8f9.7 (2298)
|
||||
| | | v1header{}: 0x0-0x2b.7 (44)
|
||||
0x000|54 5a 69 66 |TZif | magic: 0x545a6966 (valid) 0x0-0x3.7 (4)
|
||||
0x000| 32 | 2 | ver: "2" (0x32) (valid) 0x4-0x4.7 (1)
|
||||
0x000| 00 00 00 00 00 00 00 00 00 00 00| ...........| reserved: raw bits 0x5-0x13.7 (15)
|
||||
0x010|00 00 00 00 |.... |
|
||||
0x010| 00 00 00 09 | .... | isutcnt: 9 0x14-0x17.7 (4)
|
||||
0x010| 00 00 00 09 | .... | isstdcnt: 9 0x18-0x1b.7 (4)
|
||||
0x010| 00 00 00 00| ....| leapcnt: 0 0x1c-0x1f.7 (4)
|
||||
0x020|00 00 00 8f |.... | timecnt: 143 0x20-0x23.7 (4)
|
||||
0x020| 00 00 00 09 | .... | typecnt: 9 0x24-0x27.7 (4)
|
||||
0x020| 00 00 00 12 | .... | charcnt: 18 0x28-0x2b.7 (4)
|
||||
| | | v1datablock{}: 0x2c-0x350.7 (805)
|
||||
| | | transition_times[0:143]: 0x2c-0x267.7 (572)
|
||||
0x020| 80 00 00 00| ....| [0]: "1901-12-13T20:45:52Z" (-2147483648) transition_time 0x2c-0x2f.7 (4)
|
||||
0x030|9b 0c 17 60 |...` | [1]: "1916-04-30T22:00:00Z" (-1693706400) transition_time 0x30-0x33.7 (4)
|
||||
0x030| 9b d5 da f0 | .... | [2]: "1916-09-30T23:00:00Z" (-1680483600) transition_time 0x34-0x37.7 (4)
|
||||
0x030| 9c d9 ae 90 | .... | [3]: "1917-04-16T01:00:00Z" (-1663455600) transition_time 0x38-0x3b.7 (4)
|
||||
0x030| 9d a4 b5 90| ....| [4]: "1917-09-17T01:00:00Z" (-1650150000) transition_time 0x3c-0x3f.7 (4)
|
||||
0x040|9e b9 90 90 |.... | [5]: "1918-04-15T01:00:00Z" (-1632006000) transition_time 0x40-0x43.7 (4)
|
||||
0x040| 9f 84 97 90 | .... | [6]: "1918-09-16T01:00:00Z" (-1618700400) transition_time 0x44-0x47.7 (4)
|
||||
0x040| c8 09 71 90 | ..q. | [7]: "1940-04-01T01:00:00Z" (-938905200) transition_time 0x48-0x4b.7 (4)
|
||||
0x040| cc e7 4b 10| ..K.| [8]: "1942-11-02T01:00:00Z" (-857257200) transition_time 0x4c-0x4f.7 (4)
|
||||
0x050|cd a9 17 90 |.... | [9]: "1943-03-29T01:00:00Z" (-844556400) transition_time 0x50-0x53.7 (4)
|
||||
0x050| ce a2 43 10 | ..C. | [10]: "1943-10-04T01:00:00Z" (-828226800) transition_time 0x54-0x57.7 (4)
|
||||
0x050| cf 92 34 10 | ..4. | [11]: "1944-04-03T01:00:00Z" (-812502000) transition_time 0x58-0x5b.7 (4)
|
||||
0x050| d0 82 25 10| ..%.| [12]: "1944-10-02T01:00:00Z" (-796777200) transition_time 0x5c-0x5f.7 (4)
|
||||
0x060|d1 72 16 10 |.r.. | [13]: "1945-04-02T01:00:00Z" (-781052400) transition_time 0x60-0x63.7 (4)
|
||||
0x060| d1 b6 96 00 | .... | [14]: "1945-05-24T00:00:00Z" (-776563200) transition_time 0x64-0x67.7 (4)
|
||||
0x060| d2 58 be 80 | .X.. | [15]: "1945-09-24T00:00:00Z" (-765936000) transition_time 0x68-0x6b.7 (4)
|
||||
0x060| d2 a1 4f 10| ..O.| [16]: "1945-11-18T01:00:00Z" (-761180400) transition_time 0x6c-0x6f.7 (4)
|
||||
0x070|d3 63 1b 90 |.c.. | [17]: "1946-04-14T01:00:00Z" (-748479600) transition_time 0x70-0x73.7 (4)
|
||||
0x070| d4 4b 23 90 | .K#. | [18]: "1946-10-07T01:00:00Z" (-733273200) transition_time 0x74-0x77.7 (4)
|
||||
0x070| d5 39 d1 20 | .9. | [19]: "1947-04-06T02:00:00Z" (-717631200) transition_time 0x78-0x7b.7 (4)
|
||||
0x070| d5 67 e7 90| .g..| [20]: "1947-05-11T01:00:00Z" (-714610800) transition_time 0x7c-0x7f.7 (4)
|
||||
0x080|d5 a8 73 00 |..s. | [21]: "1947-06-29T00:00:00Z" (-710380800) transition_time 0x80-0x83.7 (4)
|
||||
0x080| d6 29 b4 10 | .).. | [22]: "1947-10-05T01:00:00Z" (-701910000) transition_time 0x84-0x87.7 (4)
|
||||
0x080| d7 2c 1a 10 | .,.. | [23]: "1948-04-18T01:00:00Z" (-684975600) transition_time 0x88-0x8b.7 (4)
|
||||
0x080| d8 09 96 10| ....| [24]: "1948-10-03T01:00:00Z" (-670460400) transition_time 0x8c-0x8f.7 (4)
|
||||
0x090|d9 02 c1 90 |.... | [25]: "1949-04-10T01:00:00Z" (-654130800) transition_time 0x90-0x93.7 (4)
|
||||
0x090| d9 e9 78 10 | ..x. | [26]: "1949-10-02T01:00:00Z" (-639010800) transition_time 0x94-0x97.7 (4)
|
||||
0x090| 13 4d 44 10 | .MD. | [27]: "1980-04-06T01:00:00Z" (323830800) transition_time 0x98-0x9b.7 (4)
|
||||
0x090| 14 33 fa 90| .3..| [28]: "1980-09-28T01:00:00Z" (338950800) transition_time 0x9c-0x9f.7 (4)
|
||||
0x0a0|15 23 eb 90 |.#.. | [29]: "1981-03-29T01:00:00Z" (354675600) transition_time 0xa0-0xa3.7 (4)
|
||||
0x0a0| 16 13 dc 90 | .... | [30]: "1981-09-27T01:00:00Z" (370400400) transition_time 0xa4-0xa7.7 (4)
|
||||
0x0a0| 17 03 cd 90 | .... | [31]: "1982-03-28T01:00:00Z" (386125200) transition_time 0xa8-0xab.7 (4)
|
||||
0x0a0| 17 f3 be 90| ....| [32]: "1982-09-26T01:00:00Z" (401850000) transition_time 0xac-0xaf.7 (4)
|
||||
0x0b0|18 e3 af 90 |.... | [33]: "1983-03-27T01:00:00Z" (417574800) transition_time 0xb0-0xb3.7 (4)
|
||||
0x0b0| 19 d3 a0 90 | .... | [34]: "1983-09-25T01:00:00Z" (433299600) transition_time 0xb4-0xb7.7 (4)
|
||||
0x0b0| 1a c3 91 90 | .... | [35]: "1984-03-25T01:00:00Z" (449024400) transition_time 0xb8-0xbb.7 (4)
|
||||
0x0b0| 1b bc bd 10| ....| [36]: "1984-09-30T01:00:00Z" (465354000) transition_time 0xbc-0xbf.7 (4)
|
||||
0x0c0|1c ac ae 10 |.... | [37]: "1985-03-31T01:00:00Z" (481078800) transition_time 0xc0-0xc3.7 (4)
|
||||
0x0c0| 1d 9c 9f 10 | .... | [38]: "1985-09-29T01:00:00Z" (496803600) transition_time 0xc4-0xc7.7 (4)
|
||||
0x0c0| 1e 8c 90 10 | .... | [39]: "1986-03-30T01:00:00Z" (512528400) transition_time 0xc8-0xcb.7 (4)
|
||||
0x0c0| 1f 7c 81 10| .|..| [40]: "1986-09-28T01:00:00Z" (528253200) transition_time 0xcc-0xcf.7 (4)
|
||||
0x0d0|20 6c 72 10 | lr. | [41]: "1987-03-29T01:00:00Z" (543978000) transition_time 0xd0-0xd3.7 (4)
|
||||
0x0d0| 21 5c 63 10 | !\c. | [42]: "1987-09-27T01:00:00Z" (559702800) transition_time 0xd4-0xd7.7 (4)
|
||||
0x0d0| 22 4c 54 10 | "LT. | [43]: "1988-03-27T01:00:00Z" (575427600) transition_time 0xd8-0xdb.7 (4)
|
||||
0x0d0| 23 3c 45 10| #<E.| [44]: "1988-09-25T01:00:00Z" (591152400) transition_time 0xdc-0xdf.7 (4)
|
||||
0x0e0|24 2c 36 10 |$,6. | [45]: "1989-03-26T01:00:00Z" (606877200) transition_time 0xe0-0xe3.7 (4)
|
||||
0x0e0| 25 1c 27 10 | %.'. | [46]: "1989-09-24T01:00:00Z" (622602000) transition_time 0xe4-0xe7.7 (4)
|
||||
0x0e0| 26 0c 18 10 | &... | [47]: "1990-03-25T01:00:00Z" (638326800) transition_time 0xe8-0xeb.7 (4)
|
||||
0x0e0| 27 05 43 90| '.C.| [48]: "1990-09-30T01:00:00Z" (654656400) transition_time 0xec-0xef.7 (4)
|
||||
0x0f0|27 f5 34 90 |'.4. | [49]: "1991-03-31T01:00:00Z" (670381200) transition_time 0xf0-0xf3.7 (4)
|
||||
0x0f0| 28 e5 25 90 | (.%. | [50]: "1991-09-29T01:00:00Z" (686106000) transition_time 0xf4-0xf7.7 (4)
|
||||
0x0f0| 29 d5 16 90 | )... | [51]: "1992-03-29T01:00:00Z" (701830800) transition_time 0xf8-0xfb.7 (4)
|
||||
0x0f0| 2a c5 07 90| *...| [52]: "1992-09-27T01:00:00Z" (717555600) transition_time 0xfc-0xff.7 (4)
|
||||
0x100|2b b4 f8 90 |+... | [53]: "1993-03-28T01:00:00Z" (733280400) transition_time 0x100-0x103.7 (4)
|
||||
0x100| 2c a4 e9 90 | ,... | [54]: "1993-09-26T01:00:00Z" (749005200) transition_time 0x104-0x107.7 (4)
|
||||
0x100| 2d 94 da 90 | -... | [55]: "1994-03-27T01:00:00Z" (764730000) transition_time 0x108-0x10b.7 (4)
|
||||
0x100| 2e 84 cb 90| ....| [56]: "1994-09-25T01:00:00Z" (780454800) transition_time 0x10c-0x10f.7 (4)
|
||||
0x110|2f 74 bc 90 |/t.. | [57]: "1995-03-26T01:00:00Z" (796179600) transition_time 0x110-0x113.7 (4)
|
||||
0x110| 30 64 ad 90 | 0d.. | [58]: "1995-09-24T01:00:00Z" (811904400) transition_time 0x114-0x117.7 (4)
|
||||
0x110| 31 5d d9 10 | 1].. | [59]: "1996-03-31T01:00:00Z" (828234000) transition_time 0x118-0x11b.7 (4)
|
||||
0x110| 32 72 b4 10| 2r..| [60]: "1996-10-27T01:00:00Z" (846378000) transition_time 0x11c-0x11f.7 (4)
|
||||
0x120|33 3d bb 10 |3=.. | [61]: "1997-03-30T01:00:00Z" (859683600) transition_time 0x120-0x123.7 (4)
|
||||
0x120| 34 52 96 10 | 4R.. | [62]: "1997-10-26T01:00:00Z" (877827600) transition_time 0x124-0x127.7 (4)
|
||||
0x120| 35 1d 9d 10 | 5... | [63]: "1998-03-29T01:00:00Z" (891133200) transition_time 0x128-0x12b.7 (4)
|
||||
0x120| 36 32 78 10| 62x.| [64]: "1998-10-25T01:00:00Z" (909277200) transition_time 0x12c-0x12f.7 (4)
|
||||
0x130|36 fd 7f 10 |6... | [65]: "1999-03-28T01:00:00Z" (922582800) transition_time 0x130-0x133.7 (4)
|
||||
0x130| 38 1b 94 90 | 8... | [66]: "1999-10-31T01:00:00Z" (941331600) transition_time 0x134-0x137.7 (4)
|
||||
0x130| 38 dd 61 10 | 8.a. | [67]: "2000-03-26T01:00:00Z" (954032400) transition_time 0x138-0x13b.7 (4)
|
||||
0x130| 39 fb 76 90| 9.v.| [68]: "2000-10-29T01:00:00Z" (972781200) transition_time 0x13c-0x13f.7 (4)
|
||||
0x140|3a bd 43 10 |:.C. | [69]: "2001-03-25T01:00:00Z" (985482000) transition_time 0x140-0x143.7 (4)
|
||||
0x140| 3b db 58 90 | ;.X. | [70]: "2001-10-28T01:00:00Z" (1004230800) transition_time 0x144-0x147.7 (4)
|
||||
0x140| 3c a6 5f 90 | <._. | [71]: "2002-03-31T01:00:00Z" (1017536400) transition_time 0x148-0x14b.7 (4)
|
||||
0x140| 3d bb 3a 90| =.:.| [72]: "2002-10-27T01:00:00Z" (1035680400) transition_time 0x14c-0x14f.7 (4)
|
||||
0x150|3e 86 41 90 |>.A. | [73]: "2003-03-30T01:00:00Z" (1048986000) transition_time 0x150-0x153.7 (4)
|
||||
0x150| 3f 9b 1c 90 | ?... | [74]: "2003-10-26T01:00:00Z" (1067130000) transition_time 0x154-0x157.7 (4)
|
||||
0x150| 40 66 23 90 | @f#. | [75]: "2004-03-28T01:00:00Z" (1080435600) transition_time 0x158-0x15b.7 (4)
|
||||
0x150| 41 84 39 10| A.9.| [76]: "2004-10-31T01:00:00Z" (1099184400) transition_time 0x15c-0x15f.7 (4)
|
||||
0x160|42 46 05 90 |BF.. | [77]: "2005-03-27T01:00:00Z" (1111885200) transition_time 0x160-0x163.7 (4)
|
||||
0x160| 43 64 1b 10 | Cd.. | [78]: "2005-10-30T01:00:00Z" (1130634000) transition_time 0x164-0x167.7 (4)
|
||||
0x160| 44 25 e7 90 | D%.. | [79]: "2006-03-26T01:00:00Z" (1143334800) transition_time 0x168-0x16b.7 (4)
|
||||
0x160| 45 43 fd 10| EC..| [80]: "2006-10-29T01:00:00Z" (1162083600) transition_time 0x16c-0x16f.7 (4)
|
||||
0x170|46 05 c9 90 |F... | [81]: "2007-03-25T01:00:00Z" (1174784400) transition_time 0x170-0x173.7 (4)
|
||||
0x170| 47 23 df 10 | G#.. | [82]: "2007-10-28T01:00:00Z" (1193533200) transition_time 0x174-0x177.7 (4)
|
||||
0x170| 47 ee e6 10 | G... | [83]: "2008-03-30T01:00:00Z" (1206838800) transition_time 0x178-0x17b.7 (4)
|
||||
0x170| 49 03 c1 10| I...| [84]: "2008-10-26T01:00:00Z" (1224982800) transition_time 0x17c-0x17f.7 (4)
|
||||
0x180|49 ce c8 10 |I... | [85]: "2009-03-29T01:00:00Z" (1238288400) transition_time 0x180-0x183.7 (4)
|
||||
0x180| 4a e3 a3 10 | J... | [86]: "2009-10-25T01:00:00Z" (1256432400) transition_time 0x184-0x187.7 (4)
|
||||
0x180| 4b ae aa 10 | K... | [87]: "2010-03-28T01:00:00Z" (1269738000) transition_time 0x188-0x18b.7 (4)
|
||||
0x180| 4c cc bf 90| L...| [88]: "2010-10-31T01:00:00Z" (1288486800) transition_time 0x18c-0x18f.7 (4)
|
||||
0x190|4d 8e 8c 10 |M... | [89]: "2011-03-27T01:00:00Z" (1301187600) transition_time 0x190-0x193.7 (4)
|
||||
0x190| 4e ac a1 90 | N... | [90]: "2011-10-30T01:00:00Z" (1319936400) transition_time 0x194-0x197.7 (4)
|
||||
0x190| 4f 6e 6e 10 | Onn. | [91]: "2012-03-25T01:00:00Z" (1332637200) transition_time 0x198-0x19b.7 (4)
|
||||
0x190| 50 8c 83 90| P...| [92]: "2012-10-28T01:00:00Z" (1351386000) transition_time 0x19c-0x19f.7 (4)
|
||||
0x1a0|51 57 8a 90 |QW.. | [93]: "2013-03-31T01:00:00Z" (1364691600) transition_time 0x1a0-0x1a3.7 (4)
|
||||
0x1a0| 52 6c 65 90 | Rle. | [94]: "2013-10-27T01:00:00Z" (1382835600) transition_time 0x1a4-0x1a7.7 (4)
|
||||
0x1a0| 53 37 6c 90 | S7l. | [95]: "2014-03-30T01:00:00Z" (1396141200) transition_time 0x1a8-0x1ab.7 (4)
|
||||
0x1a0| 54 4c 47 90| TLG.| [96]: "2014-10-26T01:00:00Z" (1414285200) transition_time 0x1ac-0x1af.7 (4)
|
||||
0x1b0|55 17 4e 90 |U.N. | [97]: "2015-03-29T01:00:00Z" (1427590800) transition_time 0x1b0-0x1b3.7 (4)
|
||||
0x1b0| 56 2c 29 90 | V,). | [98]: "2015-10-25T01:00:00Z" (1445734800) transition_time 0x1b4-0x1b7.7 (4)
|
||||
0x1b0| 56 f7 30 90 | V.0. | [99]: "2016-03-27T01:00:00Z" (1459040400) transition_time 0x1b8-0x1bb.7 (4)
|
||||
0x1b0| 58 15 46 10| X.F.| [100]: "2016-10-30T01:00:00Z" (1477789200) transition_time 0x1bc-0x1bf.7 (4)
|
||||
0x1c0|58 d7 12 90 |X... | [101]: "2017-03-26T01:00:00Z" (1490490000) transition_time 0x1c0-0x1c3.7 (4)
|
||||
0x1c0| 59 f5 28 10 | Y.(. | [102]: "2017-10-29T01:00:00Z" (1509238800) transition_time 0x1c4-0x1c7.7 (4)
|
||||
0x1c0| 5a b6 f4 90 | Z... | [103]: "2018-03-25T01:00:00Z" (1521939600) transition_time 0x1c8-0x1cb.7 (4)
|
||||
0x1c0| 5b d5 0a 10| [...| [104]: "2018-10-28T01:00:00Z" (1540688400) transition_time 0x1cc-0x1cf.7 (4)
|
||||
0x1d0|5c a0 11 10 |\... | [105]: "2019-03-31T01:00:00Z" (1553994000) transition_time 0x1d0-0x1d3.7 (4)
|
||||
0x1d0| 5d b4 ec 10 | ]... | [106]: "2019-10-27T01:00:00Z" (1572138000) transition_time 0x1d4-0x1d7.7 (4)
|
||||
0x1d0| 5e 7f f3 10 | ^... | [107]: "2020-03-29T01:00:00Z" (1585443600) transition_time 0x1d8-0x1db.7 (4)
|
||||
0x1d0| 5f 94 ce 10| _...| [108]: "2020-10-25T01:00:00Z" (1603587600) transition_time 0x1dc-0x1df.7 (4)
|
||||
0x1e0|60 5f d5 10 |`_.. | [109]: "2021-03-28T01:00:00Z" (1616893200) transition_time 0x1e0-0x1e3.7 (4)
|
||||
0x1e0| 61 7d ea 90 | a}.. | [110]: "2021-10-31T01:00:00Z" (1635642000) transition_time 0x1e4-0x1e7.7 (4)
|
||||
0x1e0| 62 3f b7 10 | b?.. | [111]: "2022-03-27T01:00:00Z" (1648342800) transition_time 0x1e8-0x1eb.7 (4)
|
||||
0x1e0| 63 5d cc 90| c]..| [112]: "2022-10-30T01:00:00Z" (1667091600) transition_time 0x1ec-0x1ef.7 (4)
|
||||
0x1f0|64 1f 99 10 |d... | [113]: "2023-03-26T01:00:00Z" (1679792400) transition_time 0x1f0-0x1f3.7 (4)
|
||||
0x1f0| 65 3d ae 90 | e=.. | [114]: "2023-10-29T01:00:00Z" (1698541200) transition_time 0x1f4-0x1f7.7 (4)
|
||||
0x1f0| 66 08 b5 90 | f... | [115]: "2024-03-31T01:00:00Z" (1711846800) transition_time 0x1f8-0x1fb.7 (4)
|
||||
0x1f0| 67 1d 90 90| g...| [116]: "2024-10-27T01:00:00Z" (1729990800) transition_time 0x1fc-0x1ff.7 (4)
|
||||
0x200|67 e8 97 90 |g... | [117]: "2025-03-30T01:00:00Z" (1743296400) transition_time 0x200-0x203.7 (4)
|
||||
0x200| 68 fd 72 90 | h.r. | [118]: "2025-10-26T01:00:00Z" (1761440400) transition_time 0x204-0x207.7 (4)
|
||||
0x200| 69 c8 79 90 | i.y. | [119]: "2026-03-29T01:00:00Z" (1774746000) transition_time 0x208-0x20b.7 (4)
|
||||
0x200| 6a dd 54 90| j.T.| [120]: "2026-10-25T01:00:00Z" (1792890000) transition_time 0x20c-0x20f.7 (4)
|
||||
0x210|6b a8 5b 90 |k.[. | [121]: "2027-03-28T01:00:00Z" (1806195600) transition_time 0x210-0x213.7 (4)
|
||||
0x210| 6c c6 71 10 | l.q. | [122]: "2027-10-31T01:00:00Z" (1824944400) transition_time 0x214-0x217.7 (4)
|
||||
0x210| 6d 88 3d 90 | m.=. | [123]: "2028-03-26T01:00:00Z" (1837645200) transition_time 0x218-0x21b.7 (4)
|
||||
0x210| 6e a6 53 10| n.S.| [124]: "2028-10-29T01:00:00Z" (1856394000) transition_time 0x21c-0x21f.7 (4)
|
||||
0x220|6f 68 1f 90 |oh.. | [125]: "2029-03-25T01:00:00Z" (1869094800) transition_time 0x220-0x223.7 (4)
|
||||
0x220| 70 86 35 10 | p.5. | [126]: "2029-10-28T01:00:00Z" (1887843600) transition_time 0x224-0x227.7 (4)
|
||||
0x220| 71 51 3c 10 | qQ<. | [127]: "2030-03-31T01:00:00Z" (1901149200) transition_time 0x228-0x22b.7 (4)
|
||||
0x220| 72 66 17 10| rf..| [128]: "2030-10-27T01:00:00Z" (1919293200) transition_time 0x22c-0x22f.7 (4)
|
||||
0x230|73 31 1e 10 |s1.. | [129]: "2031-03-30T01:00:00Z" (1932598800) transition_time 0x230-0x233.7 (4)
|
||||
0x230| 74 45 f9 10 | tE.. | [130]: "2031-10-26T01:00:00Z" (1950742800) transition_time 0x234-0x237.7 (4)
|
||||
0x230| 75 11 00 10 | u... | [131]: "2032-03-28T01:00:00Z" (1964048400) transition_time 0x238-0x23b.7 (4)
|
||||
0x230| 76 2f 15 90| v/..| [132]: "2032-10-31T01:00:00Z" (1982797200) transition_time 0x23c-0x23f.7 (4)
|
||||
0x240|76 f0 e2 10 |v... | [133]: "2033-03-27T01:00:00Z" (1995498000) transition_time 0x240-0x243.7 (4)
|
||||
0x240| 78 0e f7 90 | x... | [134]: "2033-10-30T01:00:00Z" (2014246800) transition_time 0x244-0x247.7 (4)
|
||||
0x240| 78 d0 c4 10 | x... | [135]: "2034-03-26T01:00:00Z" (2026947600) transition_time 0x248-0x24b.7 (4)
|
||||
0x240| 79 ee d9 90| y...| [136]: "2034-10-29T01:00:00Z" (2045696400) transition_time 0x24c-0x24f.7 (4)
|
||||
0x250|7a b0 a6 10 |z... | [137]: "2035-03-25T01:00:00Z" (2058397200) transition_time 0x250-0x253.7 (4)
|
||||
0x250| 7b ce bb 90 | {... | [138]: "2035-10-28T01:00:00Z" (2077146000) transition_time 0x254-0x257.7 (4)
|
||||
0x250| 7c 99 c2 90 | |... | [139]: "2036-03-30T01:00:00Z" (2090451600) transition_time 0x258-0x25b.7 (4)
|
||||
0x250| 7d ae 9d 90| }...| [140]: "2036-10-26T01:00:00Z" (2108595600) transition_time 0x25c-0x25f.7 (4)
|
||||
0x260|7e 79 a4 90 |~y.. | [141]: "2037-03-29T01:00:00Z" (2121901200) transition_time 0x260-0x263.7 (4)
|
||||
0x260| 7f 8e 7f 90 | .... | [142]: "2037-10-25T01:00:00Z" (2140045200) transition_time 0x264-0x267.7 (4)
|
||||
| | | transition_types[0:143]: 0x268-0x2f6.7 (143)
|
||||
0x260| 02 | . | [0]: 2 transition_type 0x268-0x268.7 (1)
|
||||
0x260| 01 | . | [1]: 1 transition_type 0x269-0x269.7 (1)
|
||||
0x260| 02 | . | [2]: 2 transition_type 0x26a-0x26a.7 (1)
|
||||
0x260| 03 | . | [3]: 3 transition_type 0x26b-0x26b.7 (1)
|
||||
0x260| 04 | . | [4]: 4 transition_type 0x26c-0x26c.7 (1)
|
||||
0x260| 03 | . | [5]: 3 transition_type 0x26d-0x26d.7 (1)
|
||||
0x260| 04 | . | [6]: 4 transition_type 0x26e-0x26e.7 (1)
|
||||
0x260| 03| .| [7]: 3 transition_type 0x26f-0x26f.7 (1)
|
||||
0x270|04 |. | [8]: 4 transition_type 0x270-0x270.7 (1)
|
||||
0x270| 03 | . | [9]: 3 transition_type 0x271-0x271.7 (1)
|
||||
0x270| 04 | . | [10]: 4 transition_type 0x272-0x272.7 (1)
|
||||
0x270| 03 | . | [11]: 3 transition_type 0x273-0x273.7 (1)
|
||||
0x270| 04 | . | [12]: 4 transition_type 0x274-0x274.7 (1)
|
||||
0x270| 03 | . | [13]: 3 transition_type 0x275-0x275.7 (1)
|
||||
0x270| 05 | . | [14]: 5 transition_type 0x276-0x276.7 (1)
|
||||
0x270| 01 | . | [15]: 1 transition_type 0x277-0x277.7 (1)
|
||||
0x270| 04 | . | [16]: 4 transition_type 0x278-0x278.7 (1)
|
||||
0x270| 03 | . | [17]: 3 transition_type 0x279-0x279.7 (1)
|
||||
0x270| 04 | . | [18]: 4 transition_type 0x27a-0x27a.7 (1)
|
||||
0x270| 03 | . | [19]: 3 transition_type 0x27b-0x27b.7 (1)
|
||||
0x270| 06 | . | [20]: 6 transition_type 0x27c-0x27c.7 (1)
|
||||
0x270| 01 | . | [21]: 1 transition_type 0x27d-0x27d.7 (1)
|
||||
0x270| 04 | . | [22]: 4 transition_type 0x27e-0x27e.7 (1)
|
||||
0x270| 03| .| [23]: 3 transition_type 0x27f-0x27f.7 (1)
|
||||
0x280|04 |. | [24]: 4 transition_type 0x280-0x280.7 (1)
|
||||
0x280| 03 | . | [25]: 3 transition_type 0x281-0x281.7 (1)
|
||||
0x280| 04 | . | [26]: 4 transition_type 0x282-0x282.7 (1)
|
||||
0x280| 07 | . | [27]: 7 transition_type 0x283-0x283.7 (1)
|
||||
0x280| 08 | . | [28]: 8 transition_type 0x284-0x284.7 (1)
|
||||
0x280| 07 | . | [29]: 7 transition_type 0x285-0x285.7 (1)
|
||||
0x280| 08 | . | [30]: 8 transition_type 0x286-0x286.7 (1)
|
||||
0x280| 07 | . | [31]: 7 transition_type 0x287-0x287.7 (1)
|
||||
0x280| 08 | . | [32]: 8 transition_type 0x288-0x288.7 (1)
|
||||
0x280| 07 | . | [33]: 7 transition_type 0x289-0x289.7 (1)
|
||||
0x280| 08 | . | [34]: 8 transition_type 0x28a-0x28a.7 (1)
|
||||
0x280| 07 | . | [35]: 7 transition_type 0x28b-0x28b.7 (1)
|
||||
0x280| 08 | . | [36]: 8 transition_type 0x28c-0x28c.7 (1)
|
||||
0x280| 07 | . | [37]: 7 transition_type 0x28d-0x28d.7 (1)
|
||||
0x280| 08 | . | [38]: 8 transition_type 0x28e-0x28e.7 (1)
|
||||
0x280| 07| .| [39]: 7 transition_type 0x28f-0x28f.7 (1)
|
||||
0x290|08 |. | [40]: 8 transition_type 0x290-0x290.7 (1)
|
||||
0x290| 07 | . | [41]: 7 transition_type 0x291-0x291.7 (1)
|
||||
0x290| 08 | . | [42]: 8 transition_type 0x292-0x292.7 (1)
|
||||
0x290| 07 | . | [43]: 7 transition_type 0x293-0x293.7 (1)
|
||||
0x290| 08 | . | [44]: 8 transition_type 0x294-0x294.7 (1)
|
||||
0x290| 07 | . | [45]: 7 transition_type 0x295-0x295.7 (1)
|
||||
0x290| 08 | . | [46]: 8 transition_type 0x296-0x296.7 (1)
|
||||
0x290| 07 | . | [47]: 7 transition_type 0x297-0x297.7 (1)
|
||||
0x290| 08 | . | [48]: 8 transition_type 0x298-0x298.7 (1)
|
||||
0x290| 07 | . | [49]: 7 transition_type 0x299-0x299.7 (1)
|
||||
0x290| 08 | . | [50]: 8 transition_type 0x29a-0x29a.7 (1)
|
||||
0x290| 07 | . | [51]: 7 transition_type 0x29b-0x29b.7 (1)
|
||||
0x290| 08 | . | [52]: 8 transition_type 0x29c-0x29c.7 (1)
|
||||
0x290| 07 | . | [53]: 7 transition_type 0x29d-0x29d.7 (1)
|
||||
0x290| 08 | . | [54]: 8 transition_type 0x29e-0x29e.7 (1)
|
||||
0x290| 07| .| [55]: 7 transition_type 0x29f-0x29f.7 (1)
|
||||
0x2a0|08 |. | [56]: 8 transition_type 0x2a0-0x2a0.7 (1)
|
||||
0x2a0| 07 | . | [57]: 7 transition_type 0x2a1-0x2a1.7 (1)
|
||||
0x2a0| 08 | . | [58]: 8 transition_type 0x2a2-0x2a2.7 (1)
|
||||
0x2a0| 07 | . | [59]: 7 transition_type 0x2a3-0x2a3.7 (1)
|
||||
0x2a0| 08 | . | [60]: 8 transition_type 0x2a4-0x2a4.7 (1)
|
||||
0x2a0| 07 | . | [61]: 7 transition_type 0x2a5-0x2a5.7 (1)
|
||||
0x2a0| 08 | . | [62]: 8 transition_type 0x2a6-0x2a6.7 (1)
|
||||
0x2a0| 07 | . | [63]: 7 transition_type 0x2a7-0x2a7.7 (1)
|
||||
0x2a0| 08 | . | [64]: 8 transition_type 0x2a8-0x2a8.7 (1)
|
||||
0x2a0| 07 | . | [65]: 7 transition_type 0x2a9-0x2a9.7 (1)
|
||||
0x2a0| 08 | . | [66]: 8 transition_type 0x2aa-0x2aa.7 (1)
|
||||
0x2a0| 07 | . | [67]: 7 transition_type 0x2ab-0x2ab.7 (1)
|
||||
0x2a0| 08 | . | [68]: 8 transition_type 0x2ac-0x2ac.7 (1)
|
||||
0x2a0| 07 | . | [69]: 7 transition_type 0x2ad-0x2ad.7 (1)
|
||||
0x2a0| 08 | . | [70]: 8 transition_type 0x2ae-0x2ae.7 (1)
|
||||
0x2a0| 07| .| [71]: 7 transition_type 0x2af-0x2af.7 (1)
|
||||
0x2b0|08 |. | [72]: 8 transition_type 0x2b0-0x2b0.7 (1)
|
||||
0x2b0| 07 | . | [73]: 7 transition_type 0x2b1-0x2b1.7 (1)
|
||||
0x2b0| 08 | . | [74]: 8 transition_type 0x2b2-0x2b2.7 (1)
|
||||
0x2b0| 07 | . | [75]: 7 transition_type 0x2b3-0x2b3.7 (1)
|
||||
0x2b0| 08 | . | [76]: 8 transition_type 0x2b4-0x2b4.7 (1)
|
||||
0x2b0| 07 | . | [77]: 7 transition_type 0x2b5-0x2b5.7 (1)
|
||||
0x2b0| 08 | . | [78]: 8 transition_type 0x2b6-0x2b6.7 (1)
|
||||
0x2b0| 07 | . | [79]: 7 transition_type 0x2b7-0x2b7.7 (1)
|
||||
0x2b0| 08 | . | [80]: 8 transition_type 0x2b8-0x2b8.7 (1)
|
||||
0x2b0| 07 | . | [81]: 7 transition_type 0x2b9-0x2b9.7 (1)
|
||||
0x2b0| 08 | . | [82]: 8 transition_type 0x2ba-0x2ba.7 (1)
|
||||
0x2b0| 07 | . | [83]: 7 transition_type 0x2bb-0x2bb.7 (1)
|
||||
0x2b0| 08 | . | [84]: 8 transition_type 0x2bc-0x2bc.7 (1)
|
||||
0x2b0| 07 | . | [85]: 7 transition_type 0x2bd-0x2bd.7 (1)
|
||||
0x2b0| 08 | . | [86]: 8 transition_type 0x2be-0x2be.7 (1)
|
||||
0x2b0| 07| .| [87]: 7 transition_type 0x2bf-0x2bf.7 (1)
|
||||
0x2c0|08 |. | [88]: 8 transition_type 0x2c0-0x2c0.7 (1)
|
||||
0x2c0| 07 | . | [89]: 7 transition_type 0x2c1-0x2c1.7 (1)
|
||||
0x2c0| 08 | . | [90]: 8 transition_type 0x2c2-0x2c2.7 (1)
|
||||
0x2c0| 07 | . | [91]: 7 transition_type 0x2c3-0x2c3.7 (1)
|
||||
0x2c0| 08 | . | [92]: 8 transition_type 0x2c4-0x2c4.7 (1)
|
||||
0x2c0| 07 | . | [93]: 7 transition_type 0x2c5-0x2c5.7 (1)
|
||||
0x2c0| 08 | . | [94]: 8 transition_type 0x2c6-0x2c6.7 (1)
|
||||
0x2c0| 07 | . | [95]: 7 transition_type 0x2c7-0x2c7.7 (1)
|
||||
0x2c0| 08 | . | [96]: 8 transition_type 0x2c8-0x2c8.7 (1)
|
||||
0x2c0| 07 | . | [97]: 7 transition_type 0x2c9-0x2c9.7 (1)
|
||||
0x2c0| 08 | . | [98]: 8 transition_type 0x2ca-0x2ca.7 (1)
|
||||
0x2c0| 07 | . | [99]: 7 transition_type 0x2cb-0x2cb.7 (1)
|
||||
0x2c0| 08 | . | [100]: 8 transition_type 0x2cc-0x2cc.7 (1)
|
||||
0x2c0| 07 | . | [101]: 7 transition_type 0x2cd-0x2cd.7 (1)
|
||||
0x2c0| 08 | . | [102]: 8 transition_type 0x2ce-0x2ce.7 (1)
|
||||
0x2c0| 07| .| [103]: 7 transition_type 0x2cf-0x2cf.7 (1)
|
||||
0x2d0|08 |. | [104]: 8 transition_type 0x2d0-0x2d0.7 (1)
|
||||
0x2d0| 07 | . | [105]: 7 transition_type 0x2d1-0x2d1.7 (1)
|
||||
0x2d0| 08 | . | [106]: 8 transition_type 0x2d2-0x2d2.7 (1)
|
||||
0x2d0| 07 | . | [107]: 7 transition_type 0x2d3-0x2d3.7 (1)
|
||||
0x2d0| 08 | . | [108]: 8 transition_type 0x2d4-0x2d4.7 (1)
|
||||
0x2d0| 07 | . | [109]: 7 transition_type 0x2d5-0x2d5.7 (1)
|
||||
0x2d0| 08 | . | [110]: 8 transition_type 0x2d6-0x2d6.7 (1)
|
||||
0x2d0| 07 | . | [111]: 7 transition_type 0x2d7-0x2d7.7 (1)
|
||||
0x2d0| 08 | . | [112]: 8 transition_type 0x2d8-0x2d8.7 (1)
|
||||
0x2d0| 07 | . | [113]: 7 transition_type 0x2d9-0x2d9.7 (1)
|
||||
0x2d0| 08 | . | [114]: 8 transition_type 0x2da-0x2da.7 (1)
|
||||
0x2d0| 07 | . | [115]: 7 transition_type 0x2db-0x2db.7 (1)
|
||||
0x2d0| 08 | . | [116]: 8 transition_type 0x2dc-0x2dc.7 (1)
|
||||
0x2d0| 07 | . | [117]: 7 transition_type 0x2dd-0x2dd.7 (1)
|
||||
0x2d0| 08 | . | [118]: 8 transition_type 0x2de-0x2de.7 (1)
|
||||
0x2d0| 07| .| [119]: 7 transition_type 0x2df-0x2df.7 (1)
|
||||
0x2e0|08 |. | [120]: 8 transition_type 0x2e0-0x2e0.7 (1)
|
||||
0x2e0| 07 | . | [121]: 7 transition_type 0x2e1-0x2e1.7 (1)
|
||||
0x2e0| 08 | . | [122]: 8 transition_type 0x2e2-0x2e2.7 (1)
|
||||
0x2e0| 07 | . | [123]: 7 transition_type 0x2e3-0x2e3.7 (1)
|
||||
0x2e0| 08 | . | [124]: 8 transition_type 0x2e4-0x2e4.7 (1)
|
||||
0x2e0| 07 | . | [125]: 7 transition_type 0x2e5-0x2e5.7 (1)
|
||||
0x2e0| 08 | . | [126]: 8 transition_type 0x2e6-0x2e6.7 (1)
|
||||
0x2e0| 07 | . | [127]: 7 transition_type 0x2e7-0x2e7.7 (1)
|
||||
0x2e0| 08 | . | [128]: 8 transition_type 0x2e8-0x2e8.7 (1)
|
||||
0x2e0| 07 | . | [129]: 7 transition_type 0x2e9-0x2e9.7 (1)
|
||||
0x2e0| 08 | . | [130]: 8 transition_type 0x2ea-0x2ea.7 (1)
|
||||
0x2e0| 07 | . | [131]: 7 transition_type 0x2eb-0x2eb.7 (1)
|
||||
0x2e0| 08 | . | [132]: 8 transition_type 0x2ec-0x2ec.7 (1)
|
||||
0x2e0| 07 | . | [133]: 7 transition_type 0x2ed-0x2ed.7 (1)
|
||||
0x2e0| 08 | . | [134]: 8 transition_type 0x2ee-0x2ee.7 (1)
|
||||
0x2e0| 07| .| [135]: 7 transition_type 0x2ef-0x2ef.7 (1)
|
||||
0x2f0|08 |. | [136]: 8 transition_type 0x2f0-0x2f0.7 (1)
|
||||
0x2f0| 07 | . | [137]: 7 transition_type 0x2f1-0x2f1.7 (1)
|
||||
0x2f0| 08 | . | [138]: 8 transition_type 0x2f2-0x2f2.7 (1)
|
||||
0x2f0| 07 | . | [139]: 7 transition_type 0x2f3-0x2f3.7 (1)
|
||||
0x2f0| 08 | . | [140]: 8 transition_type 0x2f4-0x2f4.7 (1)
|
||||
0x2f0| 07 | . | [141]: 7 transition_type 0x2f5-0x2f5.7 (1)
|
||||
0x2f0| 08 | . | [142]: 8 transition_type 0x2f6-0x2f6.7 (1)
|
||||
| | | local_time_type_records[0:9]: 0x2f7-0x32c.7 (54)
|
||||
| | | [0]{}: local_time_type 0x2f7-0x2fc.7 (6)
|
||||
0x2f0| 00 00 0c 88 | .... | utoff: 3208 (valid) 0x2f7-0x2fa.7 (4)
|
||||
0x2f0| 00 | . | dst: 0 (valid) 0x2fb-0x2fb.7 (1)
|
||||
0x2f0| 00 | . | idx: 0 (valid) 0x2fc-0x2fc.7 (1)
|
||||
| | | [1]{}: local_time_type 0x2fd-0x302.7 (6)
|
||||
0x2f0| 00 00 1c| ...| utoff: 7200 (valid) 0x2fd-0x300.7 (4)
|
||||
0x300|20 | |
|
||||
0x300| 01 | . | dst: 1 (valid) 0x301-0x301.7 (1)
|
||||
0x300| 04 | . | idx: 4 (valid) 0x302-0x302.7 (1)
|
||||
| | | [2]{}: local_time_type 0x303-0x308.7 (6)
|
||||
0x300| 00 00 0e 10 | .... | utoff: 3600 (valid) 0x303-0x306.7 (4)
|
||||
0x300| 00 | . | dst: 0 (valid) 0x307-0x307.7 (1)
|
||||
0x300| 09 | . | idx: 9 (valid) 0x308-0x308.7 (1)
|
||||
| | | [3]{}: local_time_type 0x309-0x30e.7 (6)
|
||||
0x300| 00 00 1c 20 | ... | utoff: 7200 (valid) 0x309-0x30c.7 (4)
|
||||
0x300| 01 | . | dst: 1 (valid) 0x30d-0x30d.7 (1)
|
||||
0x300| 04 | . | idx: 4 (valid) 0x30e-0x30e.7 (1)
|
||||
| | | [4]{}: local_time_type 0x30f-0x314.7 (6)
|
||||
0x300| 00| .| utoff: 3600 (valid) 0x30f-0x312.7 (4)
|
||||
0x310|00 0e 10 |... |
|
||||
0x310| 00 | . | dst: 0 (valid) 0x313-0x313.7 (1)
|
||||
0x310| 09 | . | idx: 9 (valid) 0x314-0x314.7 (1)
|
||||
| | | [5]{}: local_time_type 0x315-0x31a.7 (6)
|
||||
0x310| 00 00 2a 30 | ..*0 | utoff: 10800 (valid) 0x315-0x318.7 (4)
|
||||
0x310| 01 | . | dst: 1 (valid) 0x319-0x319.7 (1)
|
||||
0x310| 0d | . | idx: 13 (valid) 0x31a-0x31a.7 (1)
|
||||
| | | [6]{}: local_time_type 0x31b-0x320.7 (6)
|
||||
0x310| 00 00 2a 30 | ..*0 | utoff: 10800 (valid) 0x31b-0x31e.7 (4)
|
||||
0x310| 01| .| dst: 1 (valid) 0x31f-0x31f.7 (1)
|
||||
0x320|0d |. | idx: 13 (valid) 0x320-0x320.7 (1)
|
||||
| | | [7]{}: local_time_type 0x321-0x326.7 (6)
|
||||
0x320| 00 00 1c 20 | ... | utoff: 7200 (valid) 0x321-0x324.7 (4)
|
||||
0x320| 01 | . | dst: 1 (valid) 0x325-0x325.7 (1)
|
||||
0x320| 04 | . | idx: 4 (valid) 0x326-0x326.7 (1)
|
||||
| | | [8]{}: local_time_type 0x327-0x32c.7 (6)
|
||||
0x320| 00 00 0e 10 | .... | utoff: 3600 (valid) 0x327-0x32a.7 (4)
|
||||
0x320| 00 | . | dst: 0 (valid) 0x32b-0x32b.7 (1)
|
||||
0x320| 09 | . | idx: 9 (valid) 0x32c-0x32c.7 (1)
|
||||
| | | time_zone_designations[0:4]: 0x32d-0x33e.7 (18)
|
||||
0x320| 4c 4d 54| LMT| [0]: "LMT" time_zone_designation 0x32d-0x330.7 (4)
|
||||
0x330|00 |. |
|
||||
0x330| 43 45 53 54 00 | CEST. | [1]: "CEST" time_zone_designation 0x331-0x335.7 (5)
|
||||
0x330| 43 45 54 00 | CET. | [2]: "CET" time_zone_designation 0x336-0x339.7 (4)
|
||||
0x330| 43 45 4d 54 00 | CEMT. | [3]: "CEMT" time_zone_designation 0x33a-0x33e.7 (5)
|
||||
| | | leap_second_records[0:0]: 0x33f-NA (0)
|
||||
| | | standard_wall_indicators[0:9]: 0x33f-0x347.7 (9)
|
||||
0x330| 00| .| [0]: 0 standard_wall_indicator (valid) 0x33f-0x33f.7 (1)
|
||||
0x340|00 |. | [1]: 0 standard_wall_indicator (valid) 0x340-0x340.7 (1)
|
||||
0x340| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x341-0x341.7 (1)
|
||||
0x340| 01 | . | [3]: 1 standard_wall_indicator (valid) 0x342-0x342.7 (1)
|
||||
0x340| 01 | . | [4]: 1 standard_wall_indicator (valid) 0x343-0x343.7 (1)
|
||||
0x340| 00 | . | [5]: 0 standard_wall_indicator (valid) 0x344-0x344.7 (1)
|
||||
0x340| 01 | . | [6]: 1 standard_wall_indicator (valid) 0x345-0x345.7 (1)
|
||||
0x340| 01 | . | [7]: 1 standard_wall_indicator (valid) 0x346-0x346.7 (1)
|
||||
0x340| 01 | . | [8]: 1 standard_wall_indicator (valid) 0x347-0x347.7 (1)
|
||||
| | | ut_local_indicators[0:9]: 0x348-0x350.7 (9)
|
||||
0x340| 00 | . | [0]: 0 ut_local_indicator (valid) 0x348-0x348.7 (1)
|
||||
0x340| 00 | . | [1]: 0 ut_local_indicator (valid) 0x349-0x349.7 (1)
|
||||
0x340| 00 | . | [2]: 0 ut_local_indicator (valid) 0x34a-0x34a.7 (1)
|
||||
0x340| 00 | . | [3]: 0 ut_local_indicator (valid) 0x34b-0x34b.7 (1)
|
||||
0x340| 00 | . | [4]: 0 ut_local_indicator (valid) 0x34c-0x34c.7 (1)
|
||||
0x340| 00 | . | [5]: 0 ut_local_indicator (valid) 0x34d-0x34d.7 (1)
|
||||
0x340| 00 | . | [6]: 0 ut_local_indicator (valid) 0x34e-0x34e.7 (1)
|
||||
0x340| 01| .| [7]: 1 ut_local_indicator (valid) 0x34f-0x34f.7 (1)
|
||||
0x350|01 |. | [8]: 1 ut_local_indicator (valid) 0x350-0x350.7 (1)
|
||||
| | | v2plusheader{}: 0x351-0x37c.7 (44)
|
||||
0x350| 54 5a 69 66 | TZif | magic: 0x545a6966 (valid) 0x351-0x354.7 (4)
|
||||
0x350| 32 | 2 | ver: "2" (0x32) (valid) 0x355-0x355.7 (1)
|
||||
0x350| 00 00 00 00 00 00 00 00 00 00| ..........| reserved: raw bits 0x356-0x364.7 (15)
|
||||
0x360|00 00 00 00 00 |..... |
|
||||
0x360| 00 00 00 09 | .... | isutcnt: 9 0x365-0x368.7 (4)
|
||||
0x360| 00 00 00 09 | .... | isstdcnt: 9 0x369-0x36c.7 (4)
|
||||
0x360| 00 00 00| ...| leapcnt: 0 0x36d-0x370.7 (4)
|
||||
0x370|00 |. |
|
||||
0x370| 00 00 00 8f | .... | timecnt: 143 0x371-0x374.7 (4)
|
||||
0x370| 00 00 00 09 | .... | typecnt: 9 0x375-0x378.7 (4)
|
||||
0x370| 00 00 00 12 | .... | charcnt: 18 0x379-0x37c.7 (4)
|
||||
| | | v2plusdatablock{}: 0x37d-0x8dd.7 (1377)
|
||||
| | | transition_times[0:143]: 0x37d-0x7f4.7 (1144)
|
||||
0x370| ff ff ff| ...| [0]: "1893-03-31T23:06:32Z" (-2422054408) transition_time 0x37d-0x384.7 (8)
|
||||
0x380|ff 6f a2 61 f8 |.o.a. |
|
||||
0x380| ff ff ff ff 9b 0c 17 60 | .......` | [1]: "1916-04-30T22:00:00Z" (-1693706400) transition_time 0x385-0x38c.7 (8)
|
||||
0x380| ff ff ff| ...| [2]: "1916-09-30T23:00:00Z" (-1680483600) transition_time 0x38d-0x394.7 (8)
|
||||
0x390|ff 9b d5 da f0 |..... |
|
||||
0x390| ff ff ff ff 9c d9 ae 90 | ........ | [3]: "1917-04-16T01:00:00Z" (-1663455600) transition_time 0x395-0x39c.7 (8)
|
||||
0x390| ff ff ff| ...| [4]: "1917-09-17T01:00:00Z" (-1650150000) transition_time 0x39d-0x3a4.7 (8)
|
||||
0x3a0|ff 9d a4 b5 90 |..... |
|
||||
0x3a0| ff ff ff ff 9e b9 90 90 | ........ | [5]: "1918-04-15T01:00:00Z" (-1632006000) transition_time 0x3a5-0x3ac.7 (8)
|
||||
0x3a0| ff ff ff| ...| [6]: "1918-09-16T01:00:00Z" (-1618700400) transition_time 0x3ad-0x3b4.7 (8)
|
||||
0x3b0|ff 9f 84 97 90 |..... |
|
||||
0x3b0| ff ff ff ff c8 09 71 90 | ......q. | [7]: "1940-04-01T01:00:00Z" (-938905200) transition_time 0x3b5-0x3bc.7 (8)
|
||||
0x3b0| ff ff ff| ...| [8]: "1942-11-02T01:00:00Z" (-857257200) transition_time 0x3bd-0x3c4.7 (8)
|
||||
0x3c0|ff cc e7 4b 10 |...K. |
|
||||
0x3c0| ff ff ff ff cd a9 17 90 | ........ | [9]: "1943-03-29T01:00:00Z" (-844556400) transition_time 0x3c5-0x3cc.7 (8)
|
||||
0x3c0| ff ff ff| ...| [10]: "1943-10-04T01:00:00Z" (-828226800) transition_time 0x3cd-0x3d4.7 (8)
|
||||
0x3d0|ff ce a2 43 10 |...C. |
|
||||
0x3d0| ff ff ff ff cf 92 34 10 | ......4. | [11]: "1944-04-03T01:00:00Z" (-812502000) transition_time 0x3d5-0x3dc.7 (8)
|
||||
0x3d0| ff ff ff| ...| [12]: "1944-10-02T01:00:00Z" (-796777200) transition_time 0x3dd-0x3e4.7 (8)
|
||||
0x3e0|ff d0 82 25 10 |...%. |
|
||||
0x3e0| ff ff ff ff d1 72 16 10 | .....r.. | [13]: "1945-04-02T01:00:00Z" (-781052400) transition_time 0x3e5-0x3ec.7 (8)
|
||||
0x3e0| ff ff ff| ...| [14]: "1945-05-24T00:00:00Z" (-776563200) transition_time 0x3ed-0x3f4.7 (8)
|
||||
0x3f0|ff d1 b6 96 00 |..... |
|
||||
0x3f0| ff ff ff ff d2 58 be 80 | .....X.. | [15]: "1945-09-24T00:00:00Z" (-765936000) transition_time 0x3f5-0x3fc.7 (8)
|
||||
0x3f0| ff ff ff| ...| [16]: "1945-11-18T01:00:00Z" (-761180400) transition_time 0x3fd-0x404.7 (8)
|
||||
0x400|ff d2 a1 4f 10 |...O. |
|
||||
0x400| ff ff ff ff d3 63 1b 90 | .....c.. | [17]: "1946-04-14T01:00:00Z" (-748479600) transition_time 0x405-0x40c.7 (8)
|
||||
0x400| ff ff ff| ...| [18]: "1946-10-07T01:00:00Z" (-733273200) transition_time 0x40d-0x414.7 (8)
|
||||
0x410|ff d4 4b 23 90 |..K#. |
|
||||
0x410| ff ff ff ff d5 39 d1 20 | .....9. | [19]: "1947-04-06T02:00:00Z" (-717631200) transition_time 0x415-0x41c.7 (8)
|
||||
0x410| ff ff ff| ...| [20]: "1947-05-11T01:00:00Z" (-714610800) transition_time 0x41d-0x424.7 (8)
|
||||
0x420|ff d5 67 e7 90 |..g.. |
|
||||
0x420| ff ff ff ff d5 a8 73 00 | ......s. | [21]: "1947-06-29T00:00:00Z" (-710380800) transition_time 0x425-0x42c.7 (8)
|
||||
0x420| ff ff ff| ...| [22]: "1947-10-05T01:00:00Z" (-701910000) transition_time 0x42d-0x434.7 (8)
|
||||
0x430|ff d6 29 b4 10 |..).. |
|
||||
0x430| ff ff ff ff d7 2c 1a 10 | .....,.. | [23]: "1948-04-18T01:00:00Z" (-684975600) transition_time 0x435-0x43c.7 (8)
|
||||
0x430| ff ff ff| ...| [24]: "1948-10-03T01:00:00Z" (-670460400) transition_time 0x43d-0x444.7 (8)
|
||||
0x440|ff d8 09 96 10 |..... |
|
||||
0x440| ff ff ff ff d9 02 c1 90 | ........ | [25]: "1949-04-10T01:00:00Z" (-654130800) transition_time 0x445-0x44c.7 (8)
|
||||
0x440| ff ff ff| ...| [26]: "1949-10-02T01:00:00Z" (-639010800) transition_time 0x44d-0x454.7 (8)
|
||||
0x450|ff d9 e9 78 10 |...x. |
|
||||
0x450| 00 00 00 00 13 4d 44 10 | .....MD. | [27]: "1980-04-06T01:00:00Z" (323830800) transition_time 0x455-0x45c.7 (8)
|
||||
0x450| 00 00 00| ...| [28]: "1980-09-28T01:00:00Z" (338950800) transition_time 0x45d-0x464.7 (8)
|
||||
0x460|00 14 33 fa 90 |..3.. |
|
||||
0x460| 00 00 00 00 15 23 eb 90 | .....#.. | [29]: "1981-03-29T01:00:00Z" (354675600) transition_time 0x465-0x46c.7 (8)
|
||||
0x460| 00 00 00| ...| [30]: "1981-09-27T01:00:00Z" (370400400) transition_time 0x46d-0x474.7 (8)
|
||||
0x470|00 16 13 dc 90 |..... |
|
||||
0x470| 00 00 00 00 17 03 cd 90 | ........ | [31]: "1982-03-28T01:00:00Z" (386125200) transition_time 0x475-0x47c.7 (8)
|
||||
0x470| 00 00 00| ...| [32]: "1982-09-26T01:00:00Z" (401850000) transition_time 0x47d-0x484.7 (8)
|
||||
0x480|00 17 f3 be 90 |..... |
|
||||
0x480| 00 00 00 00 18 e3 af 90 | ........ | [33]: "1983-03-27T01:00:00Z" (417574800) transition_time 0x485-0x48c.7 (8)
|
||||
0x480| 00 00 00| ...| [34]: "1983-09-25T01:00:00Z" (433299600) transition_time 0x48d-0x494.7 (8)
|
||||
0x490|00 19 d3 a0 90 |..... |
|
||||
0x490| 00 00 00 00 1a c3 91 90 | ........ | [35]: "1984-03-25T01:00:00Z" (449024400) transition_time 0x495-0x49c.7 (8)
|
||||
0x490| 00 00 00| ...| [36]: "1984-09-30T01:00:00Z" (465354000) transition_time 0x49d-0x4a4.7 (8)
|
||||
0x4a0|00 1b bc bd 10 |..... |
|
||||
0x4a0| 00 00 00 00 1c ac ae 10 | ........ | [37]: "1985-03-31T01:00:00Z" (481078800) transition_time 0x4a5-0x4ac.7 (8)
|
||||
0x4a0| 00 00 00| ...| [38]: "1985-09-29T01:00:00Z" (496803600) transition_time 0x4ad-0x4b4.7 (8)
|
||||
0x4b0|00 1d 9c 9f 10 |..... |
|
||||
0x4b0| 00 00 00 00 1e 8c 90 10 | ........ | [39]: "1986-03-30T01:00:00Z" (512528400) transition_time 0x4b5-0x4bc.7 (8)
|
||||
0x4b0| 00 00 00| ...| [40]: "1986-09-28T01:00:00Z" (528253200) transition_time 0x4bd-0x4c4.7 (8)
|
||||
0x4c0|00 1f 7c 81 10 |..|.. |
|
||||
0x4c0| 00 00 00 00 20 6c 72 10 | .... lr. | [41]: "1987-03-29T01:00:00Z" (543978000) transition_time 0x4c5-0x4cc.7 (8)
|
||||
0x4c0| 00 00 00| ...| [42]: "1987-09-27T01:00:00Z" (559702800) transition_time 0x4cd-0x4d4.7 (8)
|
||||
0x4d0|00 21 5c 63 10 |.!\c. |
|
||||
0x4d0| 00 00 00 00 22 4c 54 10 | ...."LT. | [43]: "1988-03-27T01:00:00Z" (575427600) transition_time 0x4d5-0x4dc.7 (8)
|
||||
0x4d0| 00 00 00| ...| [44]: "1988-09-25T01:00:00Z" (591152400) transition_time 0x4dd-0x4e4.7 (8)
|
||||
0x4e0|00 23 3c 45 10 |.#<E. |
|
||||
0x4e0| 00 00 00 00 24 2c 36 10 | ....$,6. | [45]: "1989-03-26T01:00:00Z" (606877200) transition_time 0x4e5-0x4ec.7 (8)
|
||||
0x4e0| 00 00 00| ...| [46]: "1989-09-24T01:00:00Z" (622602000) transition_time 0x4ed-0x4f4.7 (8)
|
||||
0x4f0|00 25 1c 27 10 |.%.'. |
|
||||
0x4f0| 00 00 00 00 26 0c 18 10 | ....&... | [47]: "1990-03-25T01:00:00Z" (638326800) transition_time 0x4f5-0x4fc.7 (8)
|
||||
0x4f0| 00 00 00| ...| [48]: "1990-09-30T01:00:00Z" (654656400) transition_time 0x4fd-0x504.7 (8)
|
||||
0x500|00 27 05 43 90 |.'.C. |
|
||||
0x500| 00 00 00 00 27 f5 34 90 | ....'.4. | [49]: "1991-03-31T01:00:00Z" (670381200) transition_time 0x505-0x50c.7 (8)
|
||||
0x500| 00 00 00| ...| [50]: "1991-09-29T01:00:00Z" (686106000) transition_time 0x50d-0x514.7 (8)
|
||||
0x510|00 28 e5 25 90 |.(.%. |
|
||||
0x510| 00 00 00 00 29 d5 16 90 | ....)... | [51]: "1992-03-29T01:00:00Z" (701830800) transition_time 0x515-0x51c.7 (8)
|
||||
0x510| 00 00 00| ...| [52]: "1992-09-27T01:00:00Z" (717555600) transition_time 0x51d-0x524.7 (8)
|
||||
0x520|00 2a c5 07 90 |.*... |
|
||||
0x520| 00 00 00 00 2b b4 f8 90 | ....+... | [53]: "1993-03-28T01:00:00Z" (733280400) transition_time 0x525-0x52c.7 (8)
|
||||
0x520| 00 00 00| ...| [54]: "1993-09-26T01:00:00Z" (749005200) transition_time 0x52d-0x534.7 (8)
|
||||
0x530|00 2c a4 e9 90 |.,... |
|
||||
0x530| 00 00 00 00 2d 94 da 90 | ....-... | [55]: "1994-03-27T01:00:00Z" (764730000) transition_time 0x535-0x53c.7 (8)
|
||||
0x530| 00 00 00| ...| [56]: "1994-09-25T01:00:00Z" (780454800) transition_time 0x53d-0x544.7 (8)
|
||||
0x540|00 2e 84 cb 90 |..... |
|
||||
0x540| 00 00 00 00 2f 74 bc 90 | ..../t.. | [57]: "1995-03-26T01:00:00Z" (796179600) transition_time 0x545-0x54c.7 (8)
|
||||
0x540| 00 00 00| ...| [58]: "1995-09-24T01:00:00Z" (811904400) transition_time 0x54d-0x554.7 (8)
|
||||
0x550|00 30 64 ad 90 |.0d.. |
|
||||
0x550| 00 00 00 00 31 5d d9 10 | ....1].. | [59]: "1996-03-31T01:00:00Z" (828234000) transition_time 0x555-0x55c.7 (8)
|
||||
0x550| 00 00 00| ...| [60]: "1996-10-27T01:00:00Z" (846378000) transition_time 0x55d-0x564.7 (8)
|
||||
0x560|00 32 72 b4 10 |.2r.. |
|
||||
0x560| 00 00 00 00 33 3d bb 10 | ....3=.. | [61]: "1997-03-30T01:00:00Z" (859683600) transition_time 0x565-0x56c.7 (8)
|
||||
0x560| 00 00 00| ...| [62]: "1997-10-26T01:00:00Z" (877827600) transition_time 0x56d-0x574.7 (8)
|
||||
0x570|00 34 52 96 10 |.4R.. |
|
||||
0x570| 00 00 00 00 35 1d 9d 10 | ....5... | [63]: "1998-03-29T01:00:00Z" (891133200) transition_time 0x575-0x57c.7 (8)
|
||||
0x570| 00 00 00| ...| [64]: "1998-10-25T01:00:00Z" (909277200) transition_time 0x57d-0x584.7 (8)
|
||||
0x580|00 36 32 78 10 |.62x. |
|
||||
0x580| 00 00 00 00 36 fd 7f 10 | ....6... | [65]: "1999-03-28T01:00:00Z" (922582800) transition_time 0x585-0x58c.7 (8)
|
||||
0x580| 00 00 00| ...| [66]: "1999-10-31T01:00:00Z" (941331600) transition_time 0x58d-0x594.7 (8)
|
||||
0x590|00 38 1b 94 90 |.8... |
|
||||
0x590| 00 00 00 00 38 dd 61 10 | ....8.a. | [67]: "2000-03-26T01:00:00Z" (954032400) transition_time 0x595-0x59c.7 (8)
|
||||
0x590| 00 00 00| ...| [68]: "2000-10-29T01:00:00Z" (972781200) transition_time 0x59d-0x5a4.7 (8)
|
||||
0x5a0|00 39 fb 76 90 |.9.v. |
|
||||
0x5a0| 00 00 00 00 3a bd 43 10 | ....:.C. | [69]: "2001-03-25T01:00:00Z" (985482000) transition_time 0x5a5-0x5ac.7 (8)
|
||||
0x5a0| 00 00 00| ...| [70]: "2001-10-28T01:00:00Z" (1004230800) transition_time 0x5ad-0x5b4.7 (8)
|
||||
0x5b0|00 3b db 58 90 |.;.X. |
|
||||
0x5b0| 00 00 00 00 3c a6 5f 90 | ....<._. | [71]: "2002-03-31T01:00:00Z" (1017536400) transition_time 0x5b5-0x5bc.7 (8)
|
||||
0x5b0| 00 00 00| ...| [72]: "2002-10-27T01:00:00Z" (1035680400) transition_time 0x5bd-0x5c4.7 (8)
|
||||
0x5c0|00 3d bb 3a 90 |.=.:. |
|
||||
0x5c0| 00 00 00 00 3e 86 41 90 | ....>.A. | [73]: "2003-03-30T01:00:00Z" (1048986000) transition_time 0x5c5-0x5cc.7 (8)
|
||||
0x5c0| 00 00 00| ...| [74]: "2003-10-26T01:00:00Z" (1067130000) transition_time 0x5cd-0x5d4.7 (8)
|
||||
0x5d0|00 3f 9b 1c 90 |.?... |
|
||||
0x5d0| 00 00 00 00 40 66 23 90 | ....@f#. | [75]: "2004-03-28T01:00:00Z" (1080435600) transition_time 0x5d5-0x5dc.7 (8)
|
||||
0x5d0| 00 00 00| ...| [76]: "2004-10-31T01:00:00Z" (1099184400) transition_time 0x5dd-0x5e4.7 (8)
|
||||
0x5e0|00 41 84 39 10 |.A.9. |
|
||||
0x5e0| 00 00 00 00 42 46 05 90 | ....BF.. | [77]: "2005-03-27T01:00:00Z" (1111885200) transition_time 0x5e5-0x5ec.7 (8)
|
||||
0x5e0| 00 00 00| ...| [78]: "2005-10-30T01:00:00Z" (1130634000) transition_time 0x5ed-0x5f4.7 (8)
|
||||
0x5f0|00 43 64 1b 10 |.Cd.. |
|
||||
0x5f0| 00 00 00 00 44 25 e7 90 | ....D%.. | [79]: "2006-03-26T01:00:00Z" (1143334800) transition_time 0x5f5-0x5fc.7 (8)
|
||||
0x5f0| 00 00 00| ...| [80]: "2006-10-29T01:00:00Z" (1162083600) transition_time 0x5fd-0x604.7 (8)
|
||||
0x600|00 45 43 fd 10 |.EC.. |
|
||||
0x600| 00 00 00 00 46 05 c9 90 | ....F... | [81]: "2007-03-25T01:00:00Z" (1174784400) transition_time 0x605-0x60c.7 (8)
|
||||
0x600| 00 00 00| ...| [82]: "2007-10-28T01:00:00Z" (1193533200) transition_time 0x60d-0x614.7 (8)
|
||||
0x610|00 47 23 df 10 |.G#.. |
|
||||
0x610| 00 00 00 00 47 ee e6 10 | ....G... | [83]: "2008-03-30T01:00:00Z" (1206838800) transition_time 0x615-0x61c.7 (8)
|
||||
0x610| 00 00 00| ...| [84]: "2008-10-26T01:00:00Z" (1224982800) transition_time 0x61d-0x624.7 (8)
|
||||
0x620|00 49 03 c1 10 |.I... |
|
||||
0x620| 00 00 00 00 49 ce c8 10 | ....I... | [85]: "2009-03-29T01:00:00Z" (1238288400) transition_time 0x625-0x62c.7 (8)
|
||||
0x620| 00 00 00| ...| [86]: "2009-10-25T01:00:00Z" (1256432400) transition_time 0x62d-0x634.7 (8)
|
||||
0x630|00 4a e3 a3 10 |.J... |
|
||||
0x630| 00 00 00 00 4b ae aa 10 | ....K... | [87]: "2010-03-28T01:00:00Z" (1269738000) transition_time 0x635-0x63c.7 (8)
|
||||
0x630| 00 00 00| ...| [88]: "2010-10-31T01:00:00Z" (1288486800) transition_time 0x63d-0x644.7 (8)
|
||||
0x640|00 4c cc bf 90 |.L... |
|
||||
0x640| 00 00 00 00 4d 8e 8c 10 | ....M... | [89]: "2011-03-27T01:00:00Z" (1301187600) transition_time 0x645-0x64c.7 (8)
|
||||
0x640| 00 00 00| ...| [90]: "2011-10-30T01:00:00Z" (1319936400) transition_time 0x64d-0x654.7 (8)
|
||||
0x650|00 4e ac a1 90 |.N... |
|
||||
0x650| 00 00 00 00 4f 6e 6e 10 | ....Onn. | [91]: "2012-03-25T01:00:00Z" (1332637200) transition_time 0x655-0x65c.7 (8)
|
||||
0x650| 00 00 00| ...| [92]: "2012-10-28T01:00:00Z" (1351386000) transition_time 0x65d-0x664.7 (8)
|
||||
0x660|00 50 8c 83 90 |.P... |
|
||||
0x660| 00 00 00 00 51 57 8a 90 | ....QW.. | [93]: "2013-03-31T01:00:00Z" (1364691600) transition_time 0x665-0x66c.7 (8)
|
||||
0x660| 00 00 00| ...| [94]: "2013-10-27T01:00:00Z" (1382835600) transition_time 0x66d-0x674.7 (8)
|
||||
0x670|00 52 6c 65 90 |.Rle. |
|
||||
0x670| 00 00 00 00 53 37 6c 90 | ....S7l. | [95]: "2014-03-30T01:00:00Z" (1396141200) transition_time 0x675-0x67c.7 (8)
|
||||
0x670| 00 00 00| ...| [96]: "2014-10-26T01:00:00Z" (1414285200) transition_time 0x67d-0x684.7 (8)
|
||||
0x680|00 54 4c 47 90 |.TLG. |
|
||||
0x680| 00 00 00 00 55 17 4e 90 | ....U.N. | [97]: "2015-03-29T01:00:00Z" (1427590800) transition_time 0x685-0x68c.7 (8)
|
||||
0x680| 00 00 00| ...| [98]: "2015-10-25T01:00:00Z" (1445734800) transition_time 0x68d-0x694.7 (8)
|
||||
0x690|00 56 2c 29 90 |.V,). |
|
||||
0x690| 00 00 00 00 56 f7 30 90 | ....V.0. | [99]: "2016-03-27T01:00:00Z" (1459040400) transition_time 0x695-0x69c.7 (8)
|
||||
0x690| 00 00 00| ...| [100]: "2016-10-30T01:00:00Z" (1477789200) transition_time 0x69d-0x6a4.7 (8)
|
||||
0x6a0|00 58 15 46 10 |.X.F. |
|
||||
0x6a0| 00 00 00 00 58 d7 12 90 | ....X... | [101]: "2017-03-26T01:00:00Z" (1490490000) transition_time 0x6a5-0x6ac.7 (8)
|
||||
0x6a0| 00 00 00| ...| [102]: "2017-10-29T01:00:00Z" (1509238800) transition_time 0x6ad-0x6b4.7 (8)
|
||||
0x6b0|00 59 f5 28 10 |.Y.(. |
|
||||
0x6b0| 00 00 00 00 5a b6 f4 90 | ....Z... | [103]: "2018-03-25T01:00:00Z" (1521939600) transition_time 0x6b5-0x6bc.7 (8)
|
||||
0x6b0| 00 00 00| ...| [104]: "2018-10-28T01:00:00Z" (1540688400) transition_time 0x6bd-0x6c4.7 (8)
|
||||
0x6c0|00 5b d5 0a 10 |.[... |
|
||||
0x6c0| 00 00 00 00 5c a0 11 10 | ....\... | [105]: "2019-03-31T01:00:00Z" (1553994000) transition_time 0x6c5-0x6cc.7 (8)
|
||||
0x6c0| 00 00 00| ...| [106]: "2019-10-27T01:00:00Z" (1572138000) transition_time 0x6cd-0x6d4.7 (8)
|
||||
0x6d0|00 5d b4 ec 10 |.]... |
|
||||
0x6d0| 00 00 00 00 5e 7f f3 10 | ....^... | [107]: "2020-03-29T01:00:00Z" (1585443600) transition_time 0x6d5-0x6dc.7 (8)
|
||||
0x6d0| 00 00 00| ...| [108]: "2020-10-25T01:00:00Z" (1603587600) transition_time 0x6dd-0x6e4.7 (8)
|
||||
0x6e0|00 5f 94 ce 10 |._... |
|
||||
0x6e0| 00 00 00 00 60 5f d5 10 | ....`_.. | [109]: "2021-03-28T01:00:00Z" (1616893200) transition_time 0x6e5-0x6ec.7 (8)
|
||||
0x6e0| 00 00 00| ...| [110]: "2021-10-31T01:00:00Z" (1635642000) transition_time 0x6ed-0x6f4.7 (8)
|
||||
0x6f0|00 61 7d ea 90 |.a}.. |
|
||||
0x6f0| 00 00 00 00 62 3f b7 10 | ....b?.. | [111]: "2022-03-27T01:00:00Z" (1648342800) transition_time 0x6f5-0x6fc.7 (8)
|
||||
0x6f0| 00 00 00| ...| [112]: "2022-10-30T01:00:00Z" (1667091600) transition_time 0x6fd-0x704.7 (8)
|
||||
0x700|00 63 5d cc 90 |.c].. |
|
||||
0x700| 00 00 00 00 64 1f 99 10 | ....d... | [113]: "2023-03-26T01:00:00Z" (1679792400) transition_time 0x705-0x70c.7 (8)
|
||||
0x700| 00 00 00| ...| [114]: "2023-10-29T01:00:00Z" (1698541200) transition_time 0x70d-0x714.7 (8)
|
||||
0x710|00 65 3d ae 90 |.e=.. |
|
||||
0x710| 00 00 00 00 66 08 b5 90 | ....f... | [115]: "2024-03-31T01:00:00Z" (1711846800) transition_time 0x715-0x71c.7 (8)
|
||||
0x710| 00 00 00| ...| [116]: "2024-10-27T01:00:00Z" (1729990800) transition_time 0x71d-0x724.7 (8)
|
||||
0x720|00 67 1d 90 90 |.g... |
|
||||
0x720| 00 00 00 00 67 e8 97 90 | ....g... | [117]: "2025-03-30T01:00:00Z" (1743296400) transition_time 0x725-0x72c.7 (8)
|
||||
0x720| 00 00 00| ...| [118]: "2025-10-26T01:00:00Z" (1761440400) transition_time 0x72d-0x734.7 (8)
|
||||
0x730|00 68 fd 72 90 |.h.r. |
|
||||
0x730| 00 00 00 00 69 c8 79 90 | ....i.y. | [119]: "2026-03-29T01:00:00Z" (1774746000) transition_time 0x735-0x73c.7 (8)
|
||||
0x730| 00 00 00| ...| [120]: "2026-10-25T01:00:00Z" (1792890000) transition_time 0x73d-0x744.7 (8)
|
||||
0x740|00 6a dd 54 90 |.j.T. |
|
||||
0x740| 00 00 00 00 6b a8 5b 90 | ....k.[. | [121]: "2027-03-28T01:00:00Z" (1806195600) transition_time 0x745-0x74c.7 (8)
|
||||
0x740| 00 00 00| ...| [122]: "2027-10-31T01:00:00Z" (1824944400) transition_time 0x74d-0x754.7 (8)
|
||||
0x750|00 6c c6 71 10 |.l.q. |
|
||||
0x750| 00 00 00 00 6d 88 3d 90 | ....m.=. | [123]: "2028-03-26T01:00:00Z" (1837645200) transition_time 0x755-0x75c.7 (8)
|
||||
0x750| 00 00 00| ...| [124]: "2028-10-29T01:00:00Z" (1856394000) transition_time 0x75d-0x764.7 (8)
|
||||
0x760|00 6e a6 53 10 |.n.S. |
|
||||
0x760| 00 00 00 00 6f 68 1f 90 | ....oh.. | [125]: "2029-03-25T01:00:00Z" (1869094800) transition_time 0x765-0x76c.7 (8)
|
||||
0x760| 00 00 00| ...| [126]: "2029-10-28T01:00:00Z" (1887843600) transition_time 0x76d-0x774.7 (8)
|
||||
0x770|00 70 86 35 10 |.p.5. |
|
||||
0x770| 00 00 00 00 71 51 3c 10 | ....qQ<. | [127]: "2030-03-31T01:00:00Z" (1901149200) transition_time 0x775-0x77c.7 (8)
|
||||
0x770| 00 00 00| ...| [128]: "2030-10-27T01:00:00Z" (1919293200) transition_time 0x77d-0x784.7 (8)
|
||||
0x780|00 72 66 17 10 |.rf.. |
|
||||
0x780| 00 00 00 00 73 31 1e 10 | ....s1.. | [129]: "2031-03-30T01:00:00Z" (1932598800) transition_time 0x785-0x78c.7 (8)
|
||||
0x780| 00 00 00| ...| [130]: "2031-10-26T01:00:00Z" (1950742800) transition_time 0x78d-0x794.7 (8)
|
||||
0x790|00 74 45 f9 10 |.tE.. |
|
||||
0x790| 00 00 00 00 75 11 00 10 | ....u... | [131]: "2032-03-28T01:00:00Z" (1964048400) transition_time 0x795-0x79c.7 (8)
|
||||
0x790| 00 00 00| ...| [132]: "2032-10-31T01:00:00Z" (1982797200) transition_time 0x79d-0x7a4.7 (8)
|
||||
0x7a0|00 76 2f 15 90 |.v/.. |
|
||||
0x7a0| 00 00 00 00 76 f0 e2 10 | ....v... | [133]: "2033-03-27T01:00:00Z" (1995498000) transition_time 0x7a5-0x7ac.7 (8)
|
||||
0x7a0| 00 00 00| ...| [134]: "2033-10-30T01:00:00Z" (2014246800) transition_time 0x7ad-0x7b4.7 (8)
|
||||
0x7b0|00 78 0e f7 90 |.x... |
|
||||
0x7b0| 00 00 00 00 78 d0 c4 10 | ....x... | [135]: "2034-03-26T01:00:00Z" (2026947600) transition_time 0x7b5-0x7bc.7 (8)
|
||||
0x7b0| 00 00 00| ...| [136]: "2034-10-29T01:00:00Z" (2045696400) transition_time 0x7bd-0x7c4.7 (8)
|
||||
0x7c0|00 79 ee d9 90 |.y... |
|
||||
0x7c0| 00 00 00 00 7a b0 a6 10 | ....z... | [137]: "2035-03-25T01:00:00Z" (2058397200) transition_time 0x7c5-0x7cc.7 (8)
|
||||
0x7c0| 00 00 00| ...| [138]: "2035-10-28T01:00:00Z" (2077146000) transition_time 0x7cd-0x7d4.7 (8)
|
||||
0x7d0|00 7b ce bb 90 |.{... |
|
||||
0x7d0| 00 00 00 00 7c 99 c2 90 | ....|... | [139]: "2036-03-30T01:00:00Z" (2090451600) transition_time 0x7d5-0x7dc.7 (8)
|
||||
0x7d0| 00 00 00| ...| [140]: "2036-10-26T01:00:00Z" (2108595600) transition_time 0x7dd-0x7e4.7 (8)
|
||||
0x7e0|00 7d ae 9d 90 |.}... |
|
||||
0x7e0| 00 00 00 00 7e 79 a4 90 | ....~y.. | [141]: "2037-03-29T01:00:00Z" (2121901200) transition_time 0x7e5-0x7ec.7 (8)
|
||||
0x7e0| 00 00 00| ...| [142]: "2037-10-25T01:00:00Z" (2140045200) transition_time 0x7ed-0x7f4.7 (8)
|
||||
0x7f0|00 7f 8e 7f 90 |..... |
|
||||
| | | transition_types[0:143]: 0x7f5-0x883.7 (143)
|
||||
0x7f0| 02 | . | [0]: 2 transition_type 0x7f5-0x7f5.7 (1)
|
||||
0x7f0| 01 | . | [1]: 1 transition_type 0x7f6-0x7f6.7 (1)
|
||||
0x7f0| 02 | . | [2]: 2 transition_type 0x7f7-0x7f7.7 (1)
|
||||
0x7f0| 03 | . | [3]: 3 transition_type 0x7f8-0x7f8.7 (1)
|
||||
0x7f0| 04 | . | [4]: 4 transition_type 0x7f9-0x7f9.7 (1)
|
||||
0x7f0| 03 | . | [5]: 3 transition_type 0x7fa-0x7fa.7 (1)
|
||||
0x7f0| 04 | . | [6]: 4 transition_type 0x7fb-0x7fb.7 (1)
|
||||
0x7f0| 03 | . | [7]: 3 transition_type 0x7fc-0x7fc.7 (1)
|
||||
0x7f0| 04 | . | [8]: 4 transition_type 0x7fd-0x7fd.7 (1)
|
||||
0x7f0| 03 | . | [9]: 3 transition_type 0x7fe-0x7fe.7 (1)
|
||||
0x7f0| 04| .| [10]: 4 transition_type 0x7ff-0x7ff.7 (1)
|
||||
0x800|03 |. | [11]: 3 transition_type 0x800-0x800.7 (1)
|
||||
0x800| 04 | . | [12]: 4 transition_type 0x801-0x801.7 (1)
|
||||
0x800| 03 | . | [13]: 3 transition_type 0x802-0x802.7 (1)
|
||||
0x800| 05 | . | [14]: 5 transition_type 0x803-0x803.7 (1)
|
||||
0x800| 01 | . | [15]: 1 transition_type 0x804-0x804.7 (1)
|
||||
0x800| 04 | . | [16]: 4 transition_type 0x805-0x805.7 (1)
|
||||
0x800| 03 | . | [17]: 3 transition_type 0x806-0x806.7 (1)
|
||||
0x800| 04 | . | [18]: 4 transition_type 0x807-0x807.7 (1)
|
||||
0x800| 03 | . | [19]: 3 transition_type 0x808-0x808.7 (1)
|
||||
0x800| 06 | . | [20]: 6 transition_type 0x809-0x809.7 (1)
|
||||
0x800| 01 | . | [21]: 1 transition_type 0x80a-0x80a.7 (1)
|
||||
0x800| 04 | . | [22]: 4 transition_type 0x80b-0x80b.7 (1)
|
||||
0x800| 03 | . | [23]: 3 transition_type 0x80c-0x80c.7 (1)
|
||||
0x800| 04 | . | [24]: 4 transition_type 0x80d-0x80d.7 (1)
|
||||
0x800| 03 | . | [25]: 3 transition_type 0x80e-0x80e.7 (1)
|
||||
0x800| 04| .| [26]: 4 transition_type 0x80f-0x80f.7 (1)
|
||||
0x810|07 |. | [27]: 7 transition_type 0x810-0x810.7 (1)
|
||||
0x810| 08 | . | [28]: 8 transition_type 0x811-0x811.7 (1)
|
||||
0x810| 07 | . | [29]: 7 transition_type 0x812-0x812.7 (1)
|
||||
0x810| 08 | . | [30]: 8 transition_type 0x813-0x813.7 (1)
|
||||
0x810| 07 | . | [31]: 7 transition_type 0x814-0x814.7 (1)
|
||||
0x810| 08 | . | [32]: 8 transition_type 0x815-0x815.7 (1)
|
||||
0x810| 07 | . | [33]: 7 transition_type 0x816-0x816.7 (1)
|
||||
0x810| 08 | . | [34]: 8 transition_type 0x817-0x817.7 (1)
|
||||
0x810| 07 | . | [35]: 7 transition_type 0x818-0x818.7 (1)
|
||||
0x810| 08 | . | [36]: 8 transition_type 0x819-0x819.7 (1)
|
||||
0x810| 07 | . | [37]: 7 transition_type 0x81a-0x81a.7 (1)
|
||||
0x810| 08 | . | [38]: 8 transition_type 0x81b-0x81b.7 (1)
|
||||
0x810| 07 | . | [39]: 7 transition_type 0x81c-0x81c.7 (1)
|
||||
0x810| 08 | . | [40]: 8 transition_type 0x81d-0x81d.7 (1)
|
||||
0x810| 07 | . | [41]: 7 transition_type 0x81e-0x81e.7 (1)
|
||||
0x810| 08| .| [42]: 8 transition_type 0x81f-0x81f.7 (1)
|
||||
0x820|07 |. | [43]: 7 transition_type 0x820-0x820.7 (1)
|
||||
0x820| 08 | . | [44]: 8 transition_type 0x821-0x821.7 (1)
|
||||
0x820| 07 | . | [45]: 7 transition_type 0x822-0x822.7 (1)
|
||||
0x820| 08 | . | [46]: 8 transition_type 0x823-0x823.7 (1)
|
||||
0x820| 07 | . | [47]: 7 transition_type 0x824-0x824.7 (1)
|
||||
0x820| 08 | . | [48]: 8 transition_type 0x825-0x825.7 (1)
|
||||
0x820| 07 | . | [49]: 7 transition_type 0x826-0x826.7 (1)
|
||||
0x820| 08 | . | [50]: 8 transition_type 0x827-0x827.7 (1)
|
||||
0x820| 07 | . | [51]: 7 transition_type 0x828-0x828.7 (1)
|
||||
0x820| 08 | . | [52]: 8 transition_type 0x829-0x829.7 (1)
|
||||
0x820| 07 | . | [53]: 7 transition_type 0x82a-0x82a.7 (1)
|
||||
0x820| 08 | . | [54]: 8 transition_type 0x82b-0x82b.7 (1)
|
||||
0x820| 07 | . | [55]: 7 transition_type 0x82c-0x82c.7 (1)
|
||||
0x820| 08 | . | [56]: 8 transition_type 0x82d-0x82d.7 (1)
|
||||
0x820| 07 | . | [57]: 7 transition_type 0x82e-0x82e.7 (1)
|
||||
0x820| 08| .| [58]: 8 transition_type 0x82f-0x82f.7 (1)
|
||||
0x830|07 |. | [59]: 7 transition_type 0x830-0x830.7 (1)
|
||||
0x830| 08 | . | [60]: 8 transition_type 0x831-0x831.7 (1)
|
||||
0x830| 07 | . | [61]: 7 transition_type 0x832-0x832.7 (1)
|
||||
0x830| 08 | . | [62]: 8 transition_type 0x833-0x833.7 (1)
|
||||
0x830| 07 | . | [63]: 7 transition_type 0x834-0x834.7 (1)
|
||||
0x830| 08 | . | [64]: 8 transition_type 0x835-0x835.7 (1)
|
||||
0x830| 07 | . | [65]: 7 transition_type 0x836-0x836.7 (1)
|
||||
0x830| 08 | . | [66]: 8 transition_type 0x837-0x837.7 (1)
|
||||
0x830| 07 | . | [67]: 7 transition_type 0x838-0x838.7 (1)
|
||||
0x830| 08 | . | [68]: 8 transition_type 0x839-0x839.7 (1)
|
||||
0x830| 07 | . | [69]: 7 transition_type 0x83a-0x83a.7 (1)
|
||||
0x830| 08 | . | [70]: 8 transition_type 0x83b-0x83b.7 (1)
|
||||
0x830| 07 | . | [71]: 7 transition_type 0x83c-0x83c.7 (1)
|
||||
0x830| 08 | . | [72]: 8 transition_type 0x83d-0x83d.7 (1)
|
||||
0x830| 07 | . | [73]: 7 transition_type 0x83e-0x83e.7 (1)
|
||||
0x830| 08| .| [74]: 8 transition_type 0x83f-0x83f.7 (1)
|
||||
0x840|07 |. | [75]: 7 transition_type 0x840-0x840.7 (1)
|
||||
0x840| 08 | . | [76]: 8 transition_type 0x841-0x841.7 (1)
|
||||
0x840| 07 | . | [77]: 7 transition_type 0x842-0x842.7 (1)
|
||||
0x840| 08 | . | [78]: 8 transition_type 0x843-0x843.7 (1)
|
||||
0x840| 07 | . | [79]: 7 transition_type 0x844-0x844.7 (1)
|
||||
0x840| 08 | . | [80]: 8 transition_type 0x845-0x845.7 (1)
|
||||
0x840| 07 | . | [81]: 7 transition_type 0x846-0x846.7 (1)
|
||||
0x840| 08 | . | [82]: 8 transition_type 0x847-0x847.7 (1)
|
||||
0x840| 07 | . | [83]: 7 transition_type 0x848-0x848.7 (1)
|
||||
0x840| 08 | . | [84]: 8 transition_type 0x849-0x849.7 (1)
|
||||
0x840| 07 | . | [85]: 7 transition_type 0x84a-0x84a.7 (1)
|
||||
0x840| 08 | . | [86]: 8 transition_type 0x84b-0x84b.7 (1)
|
||||
0x840| 07 | . | [87]: 7 transition_type 0x84c-0x84c.7 (1)
|
||||
0x840| 08 | . | [88]: 8 transition_type 0x84d-0x84d.7 (1)
|
||||
0x840| 07 | . | [89]: 7 transition_type 0x84e-0x84e.7 (1)
|
||||
0x840| 08| .| [90]: 8 transition_type 0x84f-0x84f.7 (1)
|
||||
0x850|07 |. | [91]: 7 transition_type 0x850-0x850.7 (1)
|
||||
0x850| 08 | . | [92]: 8 transition_type 0x851-0x851.7 (1)
|
||||
0x850| 07 | . | [93]: 7 transition_type 0x852-0x852.7 (1)
|
||||
0x850| 08 | . | [94]: 8 transition_type 0x853-0x853.7 (1)
|
||||
0x850| 07 | . | [95]: 7 transition_type 0x854-0x854.7 (1)
|
||||
0x850| 08 | . | [96]: 8 transition_type 0x855-0x855.7 (1)
|
||||
0x850| 07 | . | [97]: 7 transition_type 0x856-0x856.7 (1)
|
||||
0x850| 08 | . | [98]: 8 transition_type 0x857-0x857.7 (1)
|
||||
0x850| 07 | . | [99]: 7 transition_type 0x858-0x858.7 (1)
|
||||
0x850| 08 | . | [100]: 8 transition_type 0x859-0x859.7 (1)
|
||||
0x850| 07 | . | [101]: 7 transition_type 0x85a-0x85a.7 (1)
|
||||
0x850| 08 | . | [102]: 8 transition_type 0x85b-0x85b.7 (1)
|
||||
0x850| 07 | . | [103]: 7 transition_type 0x85c-0x85c.7 (1)
|
||||
0x850| 08 | . | [104]: 8 transition_type 0x85d-0x85d.7 (1)
|
||||
0x850| 07 | . | [105]: 7 transition_type 0x85e-0x85e.7 (1)
|
||||
0x850| 08| .| [106]: 8 transition_type 0x85f-0x85f.7 (1)
|
||||
0x860|07 |. | [107]: 7 transition_type 0x860-0x860.7 (1)
|
||||
0x860| 08 | . | [108]: 8 transition_type 0x861-0x861.7 (1)
|
||||
0x860| 07 | . | [109]: 7 transition_type 0x862-0x862.7 (1)
|
||||
0x860| 08 | . | [110]: 8 transition_type 0x863-0x863.7 (1)
|
||||
0x860| 07 | . | [111]: 7 transition_type 0x864-0x864.7 (1)
|
||||
0x860| 08 | . | [112]: 8 transition_type 0x865-0x865.7 (1)
|
||||
0x860| 07 | . | [113]: 7 transition_type 0x866-0x866.7 (1)
|
||||
0x860| 08 | . | [114]: 8 transition_type 0x867-0x867.7 (1)
|
||||
0x860| 07 | . | [115]: 7 transition_type 0x868-0x868.7 (1)
|
||||
0x860| 08 | . | [116]: 8 transition_type 0x869-0x869.7 (1)
|
||||
0x860| 07 | . | [117]: 7 transition_type 0x86a-0x86a.7 (1)
|
||||
0x860| 08 | . | [118]: 8 transition_type 0x86b-0x86b.7 (1)
|
||||
0x860| 07 | . | [119]: 7 transition_type 0x86c-0x86c.7 (1)
|
||||
0x860| 08 | . | [120]: 8 transition_type 0x86d-0x86d.7 (1)
|
||||
0x860| 07 | . | [121]: 7 transition_type 0x86e-0x86e.7 (1)
|
||||
0x860| 08| .| [122]: 8 transition_type 0x86f-0x86f.7 (1)
|
||||
0x870|07 |. | [123]: 7 transition_type 0x870-0x870.7 (1)
|
||||
0x870| 08 | . | [124]: 8 transition_type 0x871-0x871.7 (1)
|
||||
0x870| 07 | . | [125]: 7 transition_type 0x872-0x872.7 (1)
|
||||
0x870| 08 | . | [126]: 8 transition_type 0x873-0x873.7 (1)
|
||||
0x870| 07 | . | [127]: 7 transition_type 0x874-0x874.7 (1)
|
||||
0x870| 08 | . | [128]: 8 transition_type 0x875-0x875.7 (1)
|
||||
0x870| 07 | . | [129]: 7 transition_type 0x876-0x876.7 (1)
|
||||
0x870| 08 | . | [130]: 8 transition_type 0x877-0x877.7 (1)
|
||||
0x870| 07 | . | [131]: 7 transition_type 0x878-0x878.7 (1)
|
||||
0x870| 08 | . | [132]: 8 transition_type 0x879-0x879.7 (1)
|
||||
0x870| 07 | . | [133]: 7 transition_type 0x87a-0x87a.7 (1)
|
||||
0x870| 08 | . | [134]: 8 transition_type 0x87b-0x87b.7 (1)
|
||||
0x870| 07 | . | [135]: 7 transition_type 0x87c-0x87c.7 (1)
|
||||
0x870| 08 | . | [136]: 8 transition_type 0x87d-0x87d.7 (1)
|
||||
0x870| 07 | . | [137]: 7 transition_type 0x87e-0x87e.7 (1)
|
||||
0x870| 08| .| [138]: 8 transition_type 0x87f-0x87f.7 (1)
|
||||
0x880|07 |. | [139]: 7 transition_type 0x880-0x880.7 (1)
|
||||
0x880| 08 | . | [140]: 8 transition_type 0x881-0x881.7 (1)
|
||||
0x880| 07 | . | [141]: 7 transition_type 0x882-0x882.7 (1)
|
||||
0x880| 08 | . | [142]: 8 transition_type 0x883-0x883.7 (1)
|
||||
| | | local_time_type_records[0:9]: 0x884-0x8b9.7 (54)
|
||||
| | | [0]{}: local_time_type 0x884-0x889.7 (6)
|
||||
0x880| 00 00 0c 88 | .... | utoff: 3208 (valid) 0x884-0x887.7 (4)
|
||||
0x880| 00 | . | dst: 0 (valid) 0x888-0x888.7 (1)
|
||||
0x880| 00 | . | idx: 0 (valid) 0x889-0x889.7 (1)
|
||||
| | | [1]{}: local_time_type 0x88a-0x88f.7 (6)
|
||||
0x880| 00 00 1c 20 | ... | utoff: 7200 (valid) 0x88a-0x88d.7 (4)
|
||||
0x880| 01 | . | dst: 1 (valid) 0x88e-0x88e.7 (1)
|
||||
0x880| 04| .| idx: 4 (valid) 0x88f-0x88f.7 (1)
|
||||
| | | [2]{}: local_time_type 0x890-0x895.7 (6)
|
||||
0x890|00 00 0e 10 |.... | utoff: 3600 (valid) 0x890-0x893.7 (4)
|
||||
0x890| 00 | . | dst: 0 (valid) 0x894-0x894.7 (1)
|
||||
0x890| 09 | . | idx: 9 (valid) 0x895-0x895.7 (1)
|
||||
| | | [3]{}: local_time_type 0x896-0x89b.7 (6)
|
||||
0x890| 00 00 1c 20 | ... | utoff: 7200 (valid) 0x896-0x899.7 (4)
|
||||
0x890| 01 | . | dst: 1 (valid) 0x89a-0x89a.7 (1)
|
||||
0x890| 04 | . | idx: 4 (valid) 0x89b-0x89b.7 (1)
|
||||
| | | [4]{}: local_time_type 0x89c-0x8a1.7 (6)
|
||||
0x890| 00 00 0e 10| ....| utoff: 3600 (valid) 0x89c-0x89f.7 (4)
|
||||
0x8a0|00 |. | dst: 0 (valid) 0x8a0-0x8a0.7 (1)
|
||||
0x8a0| 09 | . | idx: 9 (valid) 0x8a1-0x8a1.7 (1)
|
||||
| | | [5]{}: local_time_type 0x8a2-0x8a7.7 (6)
|
||||
0x8a0| 00 00 2a 30 | ..*0 | utoff: 10800 (valid) 0x8a2-0x8a5.7 (4)
|
||||
0x8a0| 01 | . | dst: 1 (valid) 0x8a6-0x8a6.7 (1)
|
||||
0x8a0| 0d | . | idx: 13 (valid) 0x8a7-0x8a7.7 (1)
|
||||
| | | [6]{}: local_time_type 0x8a8-0x8ad.7 (6)
|
||||
0x8a0| 00 00 2a 30 | ..*0 | utoff: 10800 (valid) 0x8a8-0x8ab.7 (4)
|
||||
0x8a0| 01 | . | dst: 1 (valid) 0x8ac-0x8ac.7 (1)
|
||||
0x8a0| 0d | . | idx: 13 (valid) 0x8ad-0x8ad.7 (1)
|
||||
| | | [7]{}: local_time_type 0x8ae-0x8b3.7 (6)
|
||||
0x8a0| 00 00| ..| utoff: 7200 (valid) 0x8ae-0x8b1.7 (4)
|
||||
0x8b0|1c 20 |. |
|
||||
0x8b0| 01 | . | dst: 1 (valid) 0x8b2-0x8b2.7 (1)
|
||||
0x8b0| 04 | . | idx: 4 (valid) 0x8b3-0x8b3.7 (1)
|
||||
| | | [8]{}: local_time_type 0x8b4-0x8b9.7 (6)
|
||||
0x8b0| 00 00 0e 10 | .... | utoff: 3600 (valid) 0x8b4-0x8b7.7 (4)
|
||||
0x8b0| 00 | . | dst: 0 (valid) 0x8b8-0x8b8.7 (1)
|
||||
0x8b0| 09 | . | idx: 9 (valid) 0x8b9-0x8b9.7 (1)
|
||||
| | | time_zone_designations[0:4]: 0x8ba-0x8cb.7 (18)
|
||||
0x8b0| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x8ba-0x8bd.7 (4)
|
||||
0x8b0| 43 45| CE| [1]: "CEST" time_zone_designation 0x8be-0x8c2.7 (5)
|
||||
0x8c0|53 54 00 |ST. |
|
||||
0x8c0| 43 45 54 00 | CET. | [2]: "CET" time_zone_designation 0x8c3-0x8c6.7 (4)
|
||||
0x8c0| 43 45 4d 54 00 | CEMT. | [3]: "CEMT" time_zone_designation 0x8c7-0x8cb.7 (5)
|
||||
| | | leap_second_records[0:0]: 0x8cc-NA (0)
|
||||
| | | standard_wall_indicators[0:9]: 0x8cc-0x8d4.7 (9)
|
||||
0x8c0| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x8cc-0x8cc.7 (1)
|
||||
0x8c0| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x8cd-0x8cd.7 (1)
|
||||
0x8c0| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x8ce-0x8ce.7 (1)
|
||||
0x8c0| 01| .| [3]: 1 standard_wall_indicator (valid) 0x8cf-0x8cf.7 (1)
|
||||
0x8d0|01 |. | [4]: 1 standard_wall_indicator (valid) 0x8d0-0x8d0.7 (1)
|
||||
0x8d0| 00 | . | [5]: 0 standard_wall_indicator (valid) 0x8d1-0x8d1.7 (1)
|
||||
0x8d0| 01 | . | [6]: 1 standard_wall_indicator (valid) 0x8d2-0x8d2.7 (1)
|
||||
0x8d0| 01 | . | [7]: 1 standard_wall_indicator (valid) 0x8d3-0x8d3.7 (1)
|
||||
0x8d0| 01 | . | [8]: 1 standard_wall_indicator (valid) 0x8d4-0x8d4.7 (1)
|
||||
| | | ut_local_indicators[0:9]: 0x8d5-0x8dd.7 (9)
|
||||
0x8d0| 00 | . | [0]: 0 ut_local_indicator (valid) 0x8d5-0x8d5.7 (1)
|
||||
0x8d0| 00 | . | [1]: 0 ut_local_indicator (valid) 0x8d6-0x8d6.7 (1)
|
||||
0x8d0| 00 | . | [2]: 0 ut_local_indicator (valid) 0x8d7-0x8d7.7 (1)
|
||||
0x8d0| 00 | . | [3]: 0 ut_local_indicator (valid) 0x8d8-0x8d8.7 (1)
|
||||
0x8d0| 00 | . | [4]: 0 ut_local_indicator (valid) 0x8d9-0x8d9.7 (1)
|
||||
0x8d0| 00 | . | [5]: 0 ut_local_indicator (valid) 0x8da-0x8da.7 (1)
|
||||
0x8d0| 00 | . | [6]: 0 ut_local_indicator (valid) 0x8db-0x8db.7 (1)
|
||||
0x8d0| 01 | . | [7]: 1 ut_local_indicator (valid) 0x8dc-0x8dc.7 (1)
|
||||
0x8d0| 01 | . | [8]: 1 ut_local_indicator (valid) 0x8dd-0x8dd.7 (1)
|
||||
| | | footer{}: 0x8de-0x8f9.7 (28)
|
||||
0x8d0| 0a | . | nl1: 10 (valid) 0x8de-0x8de.7 (1)
|
||||
0x8d0| 43| C| tz_string: "CET-1CEST,M3.5.0,M10.5.0/3" 0x8df-0x8f8.7 (26)
|
||||
0x8e0|45 54 2d 31 43 45 53 54 2c 4d 33 2e 35 2e 30 2c|ET-1CEST,M3.5.0,|
|
||||
0x8f0|4d 31 30 2e 35 2e 30 2f 33 |M10.5.0/3 |
|
||||
0x8f0| 0a| | .| | nl2: 10 (valid) 0x8f9-0x8f9.7 (1)
|
BIN
format/tzif/testdata/Bermuda
vendored
Normal file
BIN
format/tzif/testdata/Bermuda
vendored
Normal file
Binary file not shown.
858
format/tzif/testdata/Bermuda.fqtest
vendored
Normal file
858
format/tzif/testdata/Bermuda.fqtest
vendored
Normal file
@ -0,0 +1,858 @@
|
||||
$ fq -d tzif dv Bermuda
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: Bermuda (tzif) 0x0-0x9d9.7 (2522)
|
||||
| | | v1header{}: 0x0-0x2b.7 (44)
|
||||
0x000|54 5a 69 66 |TZif | magic: 0x545a6966 (valid) 0x0-0x3.7 (4)
|
||||
0x000| 32 | 2 | ver: "2" (0x32) (valid) 0x4-0x4.7 (1)
|
||||
0x000| 00 00 00 00 00 00 00 00 00 00 00| ...........| reserved: raw bits 0x5-0x13.7 (15)
|
||||
0x010|00 00 00 00 |.... |
|
||||
0x010| 00 00 00 00 | .... | isutcnt: 0 0x14-0x17.7 (4)
|
||||
0x010| 00 00 00 00 | .... | isstdcnt: 0 0x18-0x1b.7 (4)
|
||||
0x010| 00 00 00 1b| ....| leapcnt: 27 0x1c-0x1f.7 (4)
|
||||
0x020|00 00 00 80 |.... | timecnt: 128 0x20-0x23.7 (4)
|
||||
0x020| 00 00 00 05 | .... | typecnt: 5 0x24-0x27.7 (4)
|
||||
0x020| 00 00 00 14 | .... | charcnt: 20 0x28-0x2b.7 (4)
|
||||
| | | v1datablock{}: 0x2c-0x3b5.7 (906)
|
||||
| | | transition_times[0:128]: 0x2c-0x22b.7 (512)
|
||||
0x020| 80 00 00 00| ....| [0]: "1901-12-13T20:45:52Z" (-2147483648) transition_time 0x2c-0x2f.7 (4)
|
||||
0x030|9c cc ae 46 |...F | [1]: "1917-04-06T04:19:18Z" (-1664307642) transition_time 0x30-0x33.7 (4)
|
||||
0x030| 9d b7 4b 36 | ..K6 | [2]: "1917-10-01T03:19:18Z" (-1648932042) transition_time 0x34-0x37.7 (4)
|
||||
0x030| 9e b8 6d c6 | ..m. | [3]: "1918-04-14T04:19:18Z" (-1632080442) transition_time 0x38-0x3b.7 (4)
|
||||
0x030| 9f 84 b8 36| ...6| [4]: "1918-09-16T03:19:18Z" (-1618692042) transition_time 0x3c-0x3f.7 (4)
|
||||
0x040|b4 c3 1d e6 |.... | [5]: "1930-01-01T06:19:18Z" (-1262281242) transition_time 0x40-0x43.7 (4)
|
||||
0x040| cb 62 a6 e0 | .b.. | [6]: "1942-01-11T06:00:00Z" (-882727200) transition_time 0x44-0x47.7 (4)
|
||||
0x040| cc d3 bc d0 | .... | [7]: "1942-10-18T05:00:00Z" (-858538800) transition_time 0x48-0x4b.7 (4)
|
||||
0x040| cd 9e d1 e0| ....| [8]: "1943-03-21T06:00:00Z" (-845229600) transition_time 0x4c-0x4f.7 (4)
|
||||
0x050|ce c6 13 d0 |.... | [9]: "1943-10-31T05:00:00Z" (-825879600) transition_time 0x50-0x53.7 (4)
|
||||
0x050| cf 75 79 60 | .uy` | [10]: "1944-03-12T06:00:00Z" (-814384800) transition_time 0x54-0x57.7 (4)
|
||||
0x050| d0 af 30 50 | ..0P | [11]: "1944-11-05T05:00:00Z" (-793825200) transition_time 0x58-0x5b.7 (4)
|
||||
0x050| d1 55 5b 60| .U[`| [12]: "1945-03-11T06:00:00Z" (-782935200) transition_time 0x5c-0x5f.7 (4)
|
||||
0x060|d2 8f 12 50 |...P | [13]: "1945-11-04T05:00:00Z" (-762375600) transition_time 0x60-0x63.7 (4)
|
||||
0x060| d5 71 68 60 | .qh` | [14]: "1947-05-18T06:00:00Z" (-713988000) transition_time 0x64-0x67.7 (4)
|
||||
0x060| d6 0e 3c d0 | ..<. | [15]: "1947-09-14T05:00:00Z" (-703710000) transition_time 0x68-0x6b.7 (4)
|
||||
0x060| d7 5a 84 e0| .Z..| [16]: "1948-05-23T06:00:00Z" (-681933600) transition_time 0x6c-0x6f.7 (4)
|
||||
0x070|d7 e4 e4 50 |...P | [17]: "1948-09-05T05:00:00Z" (-672865200) transition_time 0x70-0x73.7 (4)
|
||||
0x070| d9 3a 66 e0 | .:f. | [18]: "1949-05-22T06:00:00Z" (-650484000) transition_time 0x74-0x77.7 (4)
|
||||
0x070| d9 c4 c6 50 | ...P | [19]: "1949-09-04T05:00:00Z" (-641415600) transition_time 0x78-0x7b.7 (4)
|
||||
0x070| db 23 83 60| .#.`| [20]: "1950-05-28T06:00:00Z" (-618429600) transition_time 0x7c-0x7f.7 (4)
|
||||
0x080|db a4 a8 50 |...P | [21]: "1950-09-03T05:00:00Z" (-609966000) transition_time 0x80-0x83.7 (4)
|
||||
0x080| dd 03 65 60 | ..e` | [22]: "1951-05-27T06:00:00Z" (-586980000) transition_time 0x84-0x87.7 (4)
|
||||
0x080| dd 84 8a 50 | ...P | [23]: "1951-09-02T05:00:00Z" (-578516400) transition_time 0x88-0x8b.7 (4)
|
||||
0x080| de e3 47 60| ..G`| [24]: "1952-05-25T06:00:00Z" (-555530400) transition_time 0x8c-0x8f.7 (4)
|
||||
0x090|df 6d a6 d0 |.m.. | [25]: "1952-09-07T05:00:00Z" (-546462000) transition_time 0x90-0x93.7 (4)
|
||||
0x090| e6 6c 09 e0 | .l.. | [26]: "1956-05-27T06:00:00Z" (-429127200) transition_time 0x94-0x97.7 (4)
|
||||
0x090| e7 37 02 d0 | .7.. | [27]: "1956-10-28T05:00:00Z" (-415825200) transition_time 0x98-0x9b.7 (4)
|
||||
0x090| 08 20 b3 63| . .c| [28]: "1974-04-28T06:00:03Z" (136360803) transition_time 0x9c-0x9f.7 (4)
|
||||
0x0a0|09 10 96 53 |...S | [29]: "1974-10-27T05:00:03Z" (152082003) transition_time 0xa0-0xa3.7 (4)
|
||||
0x0a0| 0a 00 95 64 | ...d | [30]: "1975-04-27T06:00:04Z" (167810404) transition_time 0xa4-0xa7.7 (4)
|
||||
0x0a0| 0a f0 78 54 | ..xT | [31]: "1975-10-26T05:00:04Z" (183531604) transition_time 0xa8-0xab.7 (4)
|
||||
0x0a0| 0b e0 77 65| ..we| [32]: "1976-04-25T06:00:05Z" (199260005) transition_time 0xac-0xaf.7 (4)
|
||||
0x0b0|0c d9 94 d5 |.... | [33]: "1976-10-31T05:00:05Z" (215586005) transition_time 0xb0-0xb3.7 (4)
|
||||
0x0b0| 0d c0 59 66 | ..Yf | [34]: "1977-04-24T06:00:06Z" (230709606) transition_time 0xb4-0xb7.7 (4)
|
||||
0x0b0| 0e b9 76 d6 | ..v. | [35]: "1977-10-30T05:00:06Z" (247035606) transition_time 0xb8-0xbb.7 (4)
|
||||
0x0b0| 0f a9 75 e7| ..u.| [36]: "1978-04-30T06:00:07Z" (262764007) transition_time 0xbc-0xbf.7 (4)
|
||||
0x0c0|10 99 58 d7 |..X. | [37]: "1978-10-29T05:00:07Z" (278485207) transition_time 0xc0-0xc3.7 (4)
|
||||
0x0c0| 11 89 57 e8 | ..W. | [38]: "1979-04-29T06:00:08Z" (294213608) transition_time 0xc4-0xc7.7 (4)
|
||||
0x0c0| 12 79 3a d8 | .y:. | [39]: "1979-10-28T05:00:08Z" (309934808) transition_time 0xc8-0xcb.7 (4)
|
||||
0x0c0| 13 69 39 e9| .i9.| [40]: "1980-04-27T06:00:09Z" (325663209) transition_time 0xcc-0xcf.7 (4)
|
||||
0x0d0|14 59 1c d9 |.Y.. | [41]: "1980-10-26T05:00:09Z" (341384409) transition_time 0xd0-0xd3.7 (4)
|
||||
0x0d0| 15 49 1b e9 | .I.. | [42]: "1981-04-26T06:00:09Z" (357112809) transition_time 0xd4-0xd7.7 (4)
|
||||
0x0d0| 16 38 fe da | .8.. | [43]: "1981-10-25T05:00:10Z" (372834010) transition_time 0xd8-0xdb.7 (4)
|
||||
0x0d0| 17 28 fd ea| .(..| [44]: "1982-04-25T06:00:10Z" (388562410) transition_time 0xdc-0xdf.7 (4)
|
||||
0x0e0|18 22 1b 5b |.".[ | [45]: "1982-10-31T05:00:11Z" (404888411) transition_time 0xe0-0xe3.7 (4)
|
||||
0x0e0| 19 08 df eb | .... | [46]: "1983-04-24T06:00:11Z" (420012011) transition_time 0xe4-0xe7.7 (4)
|
||||
0x0e0| 1a 01 fd 5c | ...\ | [47]: "1983-10-30T05:00:12Z" (436338012) transition_time 0xe8-0xeb.7 (4)
|
||||
0x0e0| 1a f1 fc 6c| ...l| [48]: "1984-04-29T06:00:12Z" (452066412) transition_time 0xec-0xef.7 (4)
|
||||
0x0f0|1b e1 df 5c |...\ | [49]: "1984-10-28T05:00:12Z" (467787612) transition_time 0xf0-0xf3.7 (4)
|
||||
0x0f0| 1c d1 de 6c | ...l | [50]: "1985-04-28T06:00:12Z" (483516012) transition_time 0xf4-0xf7.7 (4)
|
||||
0x0f0| 1d c1 c1 5d | ...] | [51]: "1985-10-27T05:00:13Z" (499237213) transition_time 0xf8-0xfb.7 (4)
|
||||
0x0f0| 1e b1 c0 6d| ...m| [52]: "1986-04-27T06:00:13Z" (514965613) transition_time 0xfc-0xff.7 (4)
|
||||
0x100|1f a1 a3 5d |...] | [53]: "1986-10-26T05:00:13Z" (530686813) transition_time 0x100-0x103.7 (4)
|
||||
0x100| 20 75 f2 ed | u.. | [54]: "1987-04-05T06:00:13Z" (544600813) transition_time 0x104-0x107.7 (4)
|
||||
0x100| 21 81 85 5d | !..] | [55]: "1987-10-25T05:00:13Z" (562136413) transition_time 0x108-0x10b.7 (4)
|
||||
0x100| 22 55 d4 ee| "U..| [56]: "1988-04-03T06:00:14Z" (576050414) transition_time 0x10c-0x10f.7 (4)
|
||||
0x110|23 6a a1 de |#j.. | [57]: "1988-10-30T05:00:14Z" (594190814) transition_time 0x110-0x113.7 (4)
|
||||
0x110| 24 35 b6 ee | $5.. | [58]: "1989-04-02T06:00:14Z" (607500014) transition_time 0x114-0x117.7 (4)
|
||||
0x110| 25 4a 83 de | %J.. | [59]: "1989-10-29T05:00:14Z" (625640414) transition_time 0x118-0x11b.7 (4)
|
||||
0x110| 26 15 98 ef| &...| [60]: "1990-04-01T06:00:15Z" (638949615) transition_time 0x11c-0x11f.7 (4)
|
||||
0x120|27 2a 65 df |'*e. | [61]: "1990-10-28T05:00:15Z" (657090015) transition_time 0x120-0x123.7 (4)
|
||||
0x120| 27 fe b5 70 | '..p | [62]: "1991-04-07T06:00:16Z" (671004016) transition_time 0x124-0x127.7 (4)
|
||||
0x120| 29 0a 47 e0 | ).G. | [63]: "1991-10-27T05:00:16Z" (688539616) transition_time 0x128-0x12b.7 (4)
|
||||
0x120| 29 de 97 70| )..p| [64]: "1992-04-05T06:00:16Z" (702453616) transition_time 0x12c-0x12f.7 (4)
|
||||
0x130|2a ea 29 e1 |*.). | [65]: "1992-10-25T05:00:17Z" (719989217) transition_time 0x130-0x133.7 (4)
|
||||
0x130| 2b be 79 71 | +.yq | [66]: "1993-04-04T06:00:17Z" (733903217) transition_time 0x134-0x137.7 (4)
|
||||
0x130| 2c d3 46 62 | ,.Fb | [67]: "1993-10-31T05:00:18Z" (752043618) transition_time 0x138-0x13b.7 (4)
|
||||
0x130| 2d 9e 5b 72| -.[r| [68]: "1994-04-03T06:00:18Z" (765352818) transition_time 0x13c-0x13f.7 (4)
|
||||
0x140|2e b3 28 63 |..(c | [69]: "1994-10-30T05:00:19Z" (783493219) transition_time 0x140-0x143.7 (4)
|
||||
0x140| 2f 7e 3d 73 | /~=s | [70]: "1995-04-02T06:00:19Z" (796802419) transition_time 0x144-0x147.7 (4)
|
||||
0x140| 30 93 0a 63 | 0..c | [71]: "1995-10-29T05:00:19Z" (814942819) transition_time 0x148-0x14b.7 (4)
|
||||
0x140| 31 67 59 f4| 1gY.| [72]: "1996-04-07T06:00:20Z" (828856820) transition_time 0x14c-0x14f.7 (4)
|
||||
0x150|32 72 ec 64 |2r.d | [73]: "1996-10-27T05:00:20Z" (846392420) transition_time 0x150-0x153.7 (4)
|
||||
0x150| 33 47 3b f4 | 3G;. | [74]: "1997-04-06T06:00:20Z" (860306420) transition_time 0x154-0x157.7 (4)
|
||||
0x150| 34 52 ce 65 | 4R.e | [75]: "1997-10-26T05:00:21Z" (877842021) transition_time 0x158-0x15b.7 (4)
|
||||
0x150| 35 27 1d f5| 5'..| [76]: "1998-04-05T06:00:21Z" (891756021) transition_time 0x15c-0x15f.7 (4)
|
||||
0x160|36 32 b0 65 |62.e | [77]: "1998-10-25T05:00:21Z" (909291621) transition_time 0x160-0x163.7 (4)
|
||||
0x160| 37 06 ff f6 | 7... | [78]: "1999-04-04T06:00:22Z" (923205622) transition_time 0x164-0x167.7 (4)
|
||||
0x160| 38 1b cc e6 | 8... | [79]: "1999-10-31T05:00:22Z" (941346022) transition_time 0x168-0x16b.7 (4)
|
||||
0x160| 38 e6 e1 f6| 8...| [80]: "2000-04-02T06:00:22Z" (954655222) transition_time 0x16c-0x16f.7 (4)
|
||||
0x170|39 fb ae e6 |9... | [81]: "2000-10-29T05:00:22Z" (972795622) transition_time 0x170-0x173.7 (4)
|
||||
0x170| 3a c6 c3 f6 | :... | [82]: "2001-04-01T06:00:22Z" (986104822) transition_time 0x174-0x177.7 (4)
|
||||
0x170| 3b db 90 e6 | ;... | [83]: "2001-10-28T05:00:22Z" (1004245222) transition_time 0x178-0x17b.7 (4)
|
||||
0x170| 3c af e0 76| <..v| [84]: "2002-04-07T06:00:22Z" (1018159222) transition_time 0x17c-0x17f.7 (4)
|
||||
0x180|3d bb 72 e6 |=.r. | [85]: "2002-10-27T05:00:22Z" (1035694822) transition_time 0x180-0x183.7 (4)
|
||||
0x180| 3e 8f c2 76 | >..v | [86]: "2003-04-06T06:00:22Z" (1049608822) transition_time 0x184-0x187.7 (4)
|
||||
0x180| 3f 9b 54 e6 | ?.T. | [87]: "2003-10-26T05:00:22Z" (1067144422) transition_time 0x188-0x18b.7 (4)
|
||||
0x180| 40 6f a4 76| @o.v| [88]: "2004-04-04T06:00:22Z" (1081058422) transition_time 0x18c-0x18f.7 (4)
|
||||
0x190|41 84 71 66 |A.qf | [89]: "2004-10-31T05:00:22Z" (1099198822) transition_time 0x190-0x193.7 (4)
|
||||
0x190| 42 4f 86 76 | BO.v | [90]: "2005-04-03T06:00:22Z" (1112508022) transition_time 0x194-0x197.7 (4)
|
||||
0x190| 43 64 53 66 | CdSf | [91]: "2005-10-30T05:00:22Z" (1130648422) transition_time 0x198-0x19b.7 (4)
|
||||
0x190| 44 2f 68 77| D/hw| [92]: "2006-04-02T06:00:23Z" (1143957623) transition_time 0x19c-0x19f.7 (4)
|
||||
0x1a0|45 44 35 67 |ED5g | [93]: "2006-10-29T05:00:23Z" (1162098023) transition_time 0x1a0-0x1a3.7 (4)
|
||||
0x1a0| 45 f3 9a f7 | E... | [94]: "2007-03-11T06:00:23Z" (1173592823) transition_time 0x1a4-0x1a7.7 (4)
|
||||
0x1a0| 47 2d 51 e7 | G-Q. | [95]: "2007-11-04T05:00:23Z" (1194152423) transition_time 0x1a8-0x1ab.7 (4)
|
||||
0x1a0| 47 d3 7c f7| G.|.| [96]: "2008-03-09T06:00:23Z" (1205042423) transition_time 0x1ac-0x1af.7 (4)
|
||||
0x1b0|49 0d 33 e7 |I.3. | [97]: "2008-11-02T05:00:23Z" (1225602023) transition_time 0x1b0-0x1b3.7 (4)
|
||||
0x1b0| 49 b3 5e f8 | I.^. | [98]: "2009-03-08T06:00:24Z" (1236492024) transition_time 0x1b4-0x1b7.7 (4)
|
||||
0x1b0| 4a ed 15 e8 | J... | [99]: "2009-11-01T05:00:24Z" (1257051624) transition_time 0x1b8-0x1bb.7 (4)
|
||||
0x1b0| 4b 9c 7b 78| K.{x| [100]: "2010-03-14T06:00:24Z" (1268546424) transition_time 0x1bc-0x1bf.7 (4)
|
||||
0x1c0|4c d6 32 68 |L.2h | [101]: "2010-11-07T05:00:24Z" (1289106024) transition_time 0x1c0-0x1c3.7 (4)
|
||||
0x1c0| 4d 7c 5d 78 | M|]x | [102]: "2011-03-13T06:00:24Z" (1299996024) transition_time 0x1c4-0x1c7.7 (4)
|
||||
0x1c0| 4e b6 14 68 | N..h | [103]: "2011-11-06T05:00:24Z" (1320555624) transition_time 0x1c8-0x1cb.7 (4)
|
||||
0x1c0| 4f 5c 3f 78| O\?x| [104]: "2012-03-11T06:00:24Z" (1331445624) transition_time 0x1cc-0x1cf.7 (4)
|
||||
0x1d0|50 95 f6 69 |P..i | [105]: "2012-11-04T05:00:25Z" (1352005225) transition_time 0x1d0-0x1d3.7 (4)
|
||||
0x1d0| 51 3c 21 79 | Q<!y | [106]: "2013-03-10T06:00:25Z" (1362895225) transition_time 0x1d4-0x1d7.7 (4)
|
||||
0x1d0| 52 75 d8 69 | Ru.i | [107]: "2013-11-03T05:00:25Z" (1383454825) transition_time 0x1d8-0x1db.7 (4)
|
||||
0x1d0| 53 1c 03 79| S..y| [108]: "2014-03-09T06:00:25Z" (1394344825) transition_time 0x1dc-0x1df.7 (4)
|
||||
0x1e0|54 55 ba 69 |TU.i | [109]: "2014-11-02T05:00:25Z" (1414904425) transition_time 0x1e0-0x1e3.7 (4)
|
||||
0x1e0| 54 fb e5 79 | T..y | [110]: "2015-03-08T06:00:25Z" (1425794425) transition_time 0x1e4-0x1e7.7 (4)
|
||||
0x1e0| 56 35 9c 6a | V5.j | [111]: "2015-11-01T05:00:26Z" (1446354026) transition_time 0x1e8-0x1eb.7 (4)
|
||||
0x1e0| 56 e5 01 fa| V...| [112]: "2016-03-13T06:00:26Z" (1457848826) transition_time 0x1ec-0x1ef.7 (4)
|
||||
0x1f0|58 1e b8 ea |X... | [113]: "2016-11-06T05:00:26Z" (1478408426) transition_time 0x1f0-0x1f3.7 (4)
|
||||
0x1f0| 58 c4 e3 fb | X... | [114]: "2017-03-12T06:00:27Z" (1489298427) transition_time 0x1f4-0x1f7.7 (4)
|
||||
0x1f0| 59 fe 9a eb | Y... | [115]: "2017-11-05T05:00:27Z" (1509858027) transition_time 0x1f8-0x1fb.7 (4)
|
||||
0x1f0| 5a a4 c5 fb| Z...| [116]: "2018-03-11T06:00:27Z" (1520748027) transition_time 0x1fc-0x1ff.7 (4)
|
||||
0x200|5b de 7c eb |[.|. | [117]: "2018-11-04T05:00:27Z" (1541307627) transition_time 0x200-0x203.7 (4)
|
||||
0x200| 5c 84 a7 fb | \... | [118]: "2019-03-10T06:00:27Z" (1552197627) transition_time 0x204-0x207.7 (4)
|
||||
0x200| 5d be 5e eb | ].^. | [119]: "2019-11-03T05:00:27Z" (1572757227) transition_time 0x208-0x20b.7 (4)
|
||||
0x200| 5e 64 89 fb| ^d..| [120]: "2020-03-08T06:00:27Z" (1583647227) transition_time 0x20c-0x20f.7 (4)
|
||||
0x210|5f 9e 40 eb |_.@. | [121]: "2020-11-01T05:00:27Z" (1604206827) transition_time 0x210-0x213.7 (4)
|
||||
0x210| 60 4d a6 7b | `M.{ | [122]: "2021-03-14T06:00:27Z" (1615701627) transition_time 0x214-0x217.7 (4)
|
||||
0x210| 61 87 5d 6b | a.]k | [123]: "2021-11-07T05:00:27Z" (1636261227) transition_time 0x218-0x21b.7 (4)
|
||||
0x210| 62 2d 88 7b| b-.{| [124]: "2022-03-13T06:00:27Z" (1647151227) transition_time 0x21c-0x21f.7 (4)
|
||||
0x220|63 67 3f 6b |cg?k | [125]: "2022-11-06T05:00:27Z" (1667710827) transition_time 0x220-0x223.7 (4)
|
||||
0x220| 64 0d 6a 7b | d.j{ | [126]: "2023-03-12T06:00:27Z" (1678600827) transition_time 0x224-0x227.7 (4)
|
||||
0x220| 64 9b 78 1b | d.x. | [127]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x228-0x22b.7 (4)
|
||||
| | | transition_types[0:128]: 0x22c-0x2ab.7 (128)
|
||||
0x220| 02 | . | [0]: 2 transition_type 0x22c-0x22c.7 (1)
|
||||
0x220| 01 | . | [1]: 1 transition_type 0x22d-0x22d.7 (1)
|
||||
0x220| 02 | . | [2]: 2 transition_type 0x22e-0x22e.7 (1)
|
||||
0x220| 01| .| [3]: 1 transition_type 0x22f-0x22f.7 (1)
|
||||
0x230|02 |. | [4]: 2 transition_type 0x230-0x230.7 (1)
|
||||
0x230| 04 | . | [5]: 4 transition_type 0x231-0x231.7 (1)
|
||||
0x230| 03 | . | [6]: 3 transition_type 0x232-0x232.7 (1)
|
||||
0x230| 04 | . | [7]: 4 transition_type 0x233-0x233.7 (1)
|
||||
0x230| 03 | . | [8]: 3 transition_type 0x234-0x234.7 (1)
|
||||
0x230| 04 | . | [9]: 4 transition_type 0x235-0x235.7 (1)
|
||||
0x230| 03 | . | [10]: 3 transition_type 0x236-0x236.7 (1)
|
||||
0x230| 04 | . | [11]: 4 transition_type 0x237-0x237.7 (1)
|
||||
0x230| 03 | . | [12]: 3 transition_type 0x238-0x238.7 (1)
|
||||
0x230| 04 | . | [13]: 4 transition_type 0x239-0x239.7 (1)
|
||||
0x230| 03 | . | [14]: 3 transition_type 0x23a-0x23a.7 (1)
|
||||
0x230| 04 | . | [15]: 4 transition_type 0x23b-0x23b.7 (1)
|
||||
0x230| 03 | . | [16]: 3 transition_type 0x23c-0x23c.7 (1)
|
||||
0x230| 04 | . | [17]: 4 transition_type 0x23d-0x23d.7 (1)
|
||||
0x230| 03 | . | [18]: 3 transition_type 0x23e-0x23e.7 (1)
|
||||
0x230| 04| .| [19]: 4 transition_type 0x23f-0x23f.7 (1)
|
||||
0x240|03 |. | [20]: 3 transition_type 0x240-0x240.7 (1)
|
||||
0x240| 04 | . | [21]: 4 transition_type 0x241-0x241.7 (1)
|
||||
0x240| 03 | . | [22]: 3 transition_type 0x242-0x242.7 (1)
|
||||
0x240| 04 | . | [23]: 4 transition_type 0x243-0x243.7 (1)
|
||||
0x240| 03 | . | [24]: 3 transition_type 0x244-0x244.7 (1)
|
||||
0x240| 04 | . | [25]: 4 transition_type 0x245-0x245.7 (1)
|
||||
0x240| 03 | . | [26]: 3 transition_type 0x246-0x246.7 (1)
|
||||
0x240| 04 | . | [27]: 4 transition_type 0x247-0x247.7 (1)
|
||||
0x240| 03 | . | [28]: 3 transition_type 0x248-0x248.7 (1)
|
||||
0x240| 04 | . | [29]: 4 transition_type 0x249-0x249.7 (1)
|
||||
0x240| 03 | . | [30]: 3 transition_type 0x24a-0x24a.7 (1)
|
||||
0x240| 04 | . | [31]: 4 transition_type 0x24b-0x24b.7 (1)
|
||||
0x240| 03 | . | [32]: 3 transition_type 0x24c-0x24c.7 (1)
|
||||
0x240| 04 | . | [33]: 4 transition_type 0x24d-0x24d.7 (1)
|
||||
0x240| 03 | . | [34]: 3 transition_type 0x24e-0x24e.7 (1)
|
||||
0x240| 04| .| [35]: 4 transition_type 0x24f-0x24f.7 (1)
|
||||
0x250|03 |. | [36]: 3 transition_type 0x250-0x250.7 (1)
|
||||
0x250| 04 | . | [37]: 4 transition_type 0x251-0x251.7 (1)
|
||||
0x250| 03 | . | [38]: 3 transition_type 0x252-0x252.7 (1)
|
||||
0x250| 04 | . | [39]: 4 transition_type 0x253-0x253.7 (1)
|
||||
0x250| 03 | . | [40]: 3 transition_type 0x254-0x254.7 (1)
|
||||
0x250| 04 | . | [41]: 4 transition_type 0x255-0x255.7 (1)
|
||||
0x250| 03 | . | [42]: 3 transition_type 0x256-0x256.7 (1)
|
||||
0x250| 04 | . | [43]: 4 transition_type 0x257-0x257.7 (1)
|
||||
0x250| 03 | . | [44]: 3 transition_type 0x258-0x258.7 (1)
|
||||
0x250| 04 | . | [45]: 4 transition_type 0x259-0x259.7 (1)
|
||||
0x250| 03 | . | [46]: 3 transition_type 0x25a-0x25a.7 (1)
|
||||
0x250| 04 | . | [47]: 4 transition_type 0x25b-0x25b.7 (1)
|
||||
0x250| 03 | . | [48]: 3 transition_type 0x25c-0x25c.7 (1)
|
||||
0x250| 04 | . | [49]: 4 transition_type 0x25d-0x25d.7 (1)
|
||||
0x250| 03 | . | [50]: 3 transition_type 0x25e-0x25e.7 (1)
|
||||
0x250| 04| .| [51]: 4 transition_type 0x25f-0x25f.7 (1)
|
||||
0x260|03 |. | [52]: 3 transition_type 0x260-0x260.7 (1)
|
||||
0x260| 04 | . | [53]: 4 transition_type 0x261-0x261.7 (1)
|
||||
0x260| 03 | . | [54]: 3 transition_type 0x262-0x262.7 (1)
|
||||
0x260| 04 | . | [55]: 4 transition_type 0x263-0x263.7 (1)
|
||||
0x260| 03 | . | [56]: 3 transition_type 0x264-0x264.7 (1)
|
||||
0x260| 04 | . | [57]: 4 transition_type 0x265-0x265.7 (1)
|
||||
0x260| 03 | . | [58]: 3 transition_type 0x266-0x266.7 (1)
|
||||
0x260| 04 | . | [59]: 4 transition_type 0x267-0x267.7 (1)
|
||||
0x260| 03 | . | [60]: 3 transition_type 0x268-0x268.7 (1)
|
||||
0x260| 04 | . | [61]: 4 transition_type 0x269-0x269.7 (1)
|
||||
0x260| 03 | . | [62]: 3 transition_type 0x26a-0x26a.7 (1)
|
||||
0x260| 04 | . | [63]: 4 transition_type 0x26b-0x26b.7 (1)
|
||||
0x260| 03 | . | [64]: 3 transition_type 0x26c-0x26c.7 (1)
|
||||
0x260| 04 | . | [65]: 4 transition_type 0x26d-0x26d.7 (1)
|
||||
0x260| 03 | . | [66]: 3 transition_type 0x26e-0x26e.7 (1)
|
||||
0x260| 04| .| [67]: 4 transition_type 0x26f-0x26f.7 (1)
|
||||
0x270|03 |. | [68]: 3 transition_type 0x270-0x270.7 (1)
|
||||
0x270| 04 | . | [69]: 4 transition_type 0x271-0x271.7 (1)
|
||||
0x270| 03 | . | [70]: 3 transition_type 0x272-0x272.7 (1)
|
||||
0x270| 04 | . | [71]: 4 transition_type 0x273-0x273.7 (1)
|
||||
0x270| 03 | . | [72]: 3 transition_type 0x274-0x274.7 (1)
|
||||
0x270| 04 | . | [73]: 4 transition_type 0x275-0x275.7 (1)
|
||||
0x270| 03 | . | [74]: 3 transition_type 0x276-0x276.7 (1)
|
||||
0x270| 04 | . | [75]: 4 transition_type 0x277-0x277.7 (1)
|
||||
0x270| 03 | . | [76]: 3 transition_type 0x278-0x278.7 (1)
|
||||
0x270| 04 | . | [77]: 4 transition_type 0x279-0x279.7 (1)
|
||||
0x270| 03 | . | [78]: 3 transition_type 0x27a-0x27a.7 (1)
|
||||
0x270| 04 | . | [79]: 4 transition_type 0x27b-0x27b.7 (1)
|
||||
0x270| 03 | . | [80]: 3 transition_type 0x27c-0x27c.7 (1)
|
||||
0x270| 04 | . | [81]: 4 transition_type 0x27d-0x27d.7 (1)
|
||||
0x270| 03 | . | [82]: 3 transition_type 0x27e-0x27e.7 (1)
|
||||
0x270| 04| .| [83]: 4 transition_type 0x27f-0x27f.7 (1)
|
||||
0x280|03 |. | [84]: 3 transition_type 0x280-0x280.7 (1)
|
||||
0x280| 04 | . | [85]: 4 transition_type 0x281-0x281.7 (1)
|
||||
0x280| 03 | . | [86]: 3 transition_type 0x282-0x282.7 (1)
|
||||
0x280| 04 | . | [87]: 4 transition_type 0x283-0x283.7 (1)
|
||||
0x280| 03 | . | [88]: 3 transition_type 0x284-0x284.7 (1)
|
||||
0x280| 04 | . | [89]: 4 transition_type 0x285-0x285.7 (1)
|
||||
0x280| 03 | . | [90]: 3 transition_type 0x286-0x286.7 (1)
|
||||
0x280| 04 | . | [91]: 4 transition_type 0x287-0x287.7 (1)
|
||||
0x280| 03 | . | [92]: 3 transition_type 0x288-0x288.7 (1)
|
||||
0x280| 04 | . | [93]: 4 transition_type 0x289-0x289.7 (1)
|
||||
0x280| 03 | . | [94]: 3 transition_type 0x28a-0x28a.7 (1)
|
||||
0x280| 04 | . | [95]: 4 transition_type 0x28b-0x28b.7 (1)
|
||||
0x280| 03 | . | [96]: 3 transition_type 0x28c-0x28c.7 (1)
|
||||
0x280| 04 | . | [97]: 4 transition_type 0x28d-0x28d.7 (1)
|
||||
0x280| 03 | . | [98]: 3 transition_type 0x28e-0x28e.7 (1)
|
||||
0x280| 04| .| [99]: 4 transition_type 0x28f-0x28f.7 (1)
|
||||
0x290|03 |. | [100]: 3 transition_type 0x290-0x290.7 (1)
|
||||
0x290| 04 | . | [101]: 4 transition_type 0x291-0x291.7 (1)
|
||||
0x290| 03 | . | [102]: 3 transition_type 0x292-0x292.7 (1)
|
||||
0x290| 04 | . | [103]: 4 transition_type 0x293-0x293.7 (1)
|
||||
0x290| 03 | . | [104]: 3 transition_type 0x294-0x294.7 (1)
|
||||
0x290| 04 | . | [105]: 4 transition_type 0x295-0x295.7 (1)
|
||||
0x290| 03 | . | [106]: 3 transition_type 0x296-0x296.7 (1)
|
||||
0x290| 04 | . | [107]: 4 transition_type 0x297-0x297.7 (1)
|
||||
0x290| 03 | . | [108]: 3 transition_type 0x298-0x298.7 (1)
|
||||
0x290| 04 | . | [109]: 4 transition_type 0x299-0x299.7 (1)
|
||||
0x290| 03 | . | [110]: 3 transition_type 0x29a-0x29a.7 (1)
|
||||
0x290| 04 | . | [111]: 4 transition_type 0x29b-0x29b.7 (1)
|
||||
0x290| 03 | . | [112]: 3 transition_type 0x29c-0x29c.7 (1)
|
||||
0x290| 04 | . | [113]: 4 transition_type 0x29d-0x29d.7 (1)
|
||||
0x290| 03 | . | [114]: 3 transition_type 0x29e-0x29e.7 (1)
|
||||
0x290| 04| .| [115]: 4 transition_type 0x29f-0x29f.7 (1)
|
||||
0x2a0|03 |. | [116]: 3 transition_type 0x2a0-0x2a0.7 (1)
|
||||
0x2a0| 04 | . | [117]: 4 transition_type 0x2a1-0x2a1.7 (1)
|
||||
0x2a0| 03 | . | [118]: 3 transition_type 0x2a2-0x2a2.7 (1)
|
||||
0x2a0| 04 | . | [119]: 4 transition_type 0x2a3-0x2a3.7 (1)
|
||||
0x2a0| 03 | . | [120]: 3 transition_type 0x2a4-0x2a4.7 (1)
|
||||
0x2a0| 04 | . | [121]: 4 transition_type 0x2a5-0x2a5.7 (1)
|
||||
0x2a0| 03 | . | [122]: 3 transition_type 0x2a6-0x2a6.7 (1)
|
||||
0x2a0| 04 | . | [123]: 4 transition_type 0x2a7-0x2a7.7 (1)
|
||||
0x2a0| 03 | . | [124]: 3 transition_type 0x2a8-0x2a8.7 (1)
|
||||
0x2a0| 04 | . | [125]: 4 transition_type 0x2a9-0x2a9.7 (1)
|
||||
0x2a0| 03 | . | [126]: 3 transition_type 0x2aa-0x2aa.7 (1)
|
||||
0x2a0| 03 | . | [127]: 3 transition_type 0x2ab-0x2ab.7 (1)
|
||||
| | | local_time_type_records[0:5]: 0x2ac-0x2c9.7 (30)
|
||||
| | | [0]{}: local_time_type 0x2ac-0x2b1.7 (6)
|
||||
0x2a0| ff ff c3 3a| ...:| utoff: -15558 (valid) 0x2ac-0x2af.7 (4)
|
||||
0x2b0|00 |. | dst: 0 (valid) 0x2b0-0x2b0.7 (1)
|
||||
0x2b0| 00 | . | idx: 0 (valid) 0x2b1-0x2b1.7 (1)
|
||||
| | | [1]{}: local_time_type 0x2b2-0x2b7.7 (6)
|
||||
0x2b0| ff ff d1 4a | ...J | utoff: -11958 (valid) 0x2b2-0x2b5.7 (4)
|
||||
0x2b0| 01 | . | dst: 1 (valid) 0x2b6-0x2b6.7 (1)
|
||||
0x2b0| 04 | . | idx: 4 (valid) 0x2b7-0x2b7.7 (1)
|
||||
| | | [2]{}: local_time_type 0x2b8-0x2bd.7 (6)
|
||||
0x2b0| ff ff c3 3a | ...: | utoff: -15558 (valid) 0x2b8-0x2bb.7 (4)
|
||||
0x2b0| 00 | . | dst: 0 (valid) 0x2bc-0x2bc.7 (1)
|
||||
0x2b0| 08 | . | idx: 8 (valid) 0x2bd-0x2bd.7 (1)
|
||||
| | | [3]{}: local_time_type 0x2be-0x2c3.7 (6)
|
||||
0x2b0| ff ff| ..| utoff: -10800 (valid) 0x2be-0x2c1.7 (4)
|
||||
0x2c0|d5 d0 |.. |
|
||||
0x2c0| 01 | . | dst: 1 (valid) 0x2c2-0x2c2.7 (1)
|
||||
0x2c0| 0c | . | idx: 12 (valid) 0x2c3-0x2c3.7 (1)
|
||||
| | | [4]{}: local_time_type 0x2c4-0x2c9.7 (6)
|
||||
0x2c0| ff ff c7 c0 | .... | utoff: -14400 (valid) 0x2c4-0x2c7.7 (4)
|
||||
0x2c0| 00 | . | dst: 0 (valid) 0x2c8-0x2c8.7 (1)
|
||||
0x2c0| 10 | . | idx: 16 (valid) 0x2c9-0x2c9.7 (1)
|
||||
| | | time_zone_designations[0:5]: 0x2ca-0x2dd.7 (20)
|
||||
0x2c0| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x2ca-0x2cd.7 (4)
|
||||
0x2c0| 42 53| BS| [1]: "BST" time_zone_designation 0x2ce-0x2d1.7 (4)
|
||||
0x2d0|54 00 |T. |
|
||||
0x2d0| 42 4d 54 00 | BMT. | [2]: "BMT" time_zone_designation 0x2d2-0x2d5.7 (4)
|
||||
0x2d0| 41 44 54 00 | ADT. | [3]: "ADT" time_zone_designation 0x2d6-0x2d9.7 (4)
|
||||
0x2d0| 41 53 54 00 | AST. | [4]: "AST" time_zone_designation 0x2da-0x2dd.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x2de-0x3b5.7 (216)
|
||||
| | | [0]{}: leap_second_record 0x2de-0x2e5.7 (8)
|
||||
0x2d0| 04 b2| ..| occur: "1972-07-01T00:00:00Z" (78796800) 0x2de-0x2e1.7 (4)
|
||||
0x2e0|58 00 |X. |
|
||||
0x2e0| 00 00 00 01 | .... | corr: 1 0x2e2-0x2e5.7 (4)
|
||||
| | | [1]{}: leap_second_record 0x2e6-0x2ed.7 (8)
|
||||
0x2e0| 05 a4 ec 01 | .... | occur: "1973-01-01T00:00:01Z" (94694401) 0x2e6-0x2e9.7 (4)
|
||||
0x2e0| 00 00 00 02 | .... | corr: 2 0x2ea-0x2ed.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x2ee-0x2f5.7 (8)
|
||||
0x2e0| 07 86| ..| occur: "1974-01-01T00:00:02Z" (126230402) 0x2ee-0x2f1.7 (4)
|
||||
0x2f0|1f 82 |.. |
|
||||
0x2f0| 00 00 00 03 | .... | corr: 3 0x2f2-0x2f5.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x2f6-0x2fd.7 (8)
|
||||
0x2f0| 09 67 53 03 | .gS. | occur: "1975-01-01T00:00:03Z" (157766403) 0x2f6-0x2f9.7 (4)
|
||||
0x2f0| 00 00 00 04 | .... | corr: 4 0x2fa-0x2fd.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x2fe-0x305.7 (8)
|
||||
0x2f0| 0b 48| .H| occur: "1976-01-01T00:00:04Z" (189302404) 0x2fe-0x301.7 (4)
|
||||
0x300|86 84 |.. |
|
||||
0x300| 00 00 00 05 | .... | corr: 5 0x302-0x305.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x306-0x30d.7 (8)
|
||||
0x300| 0d 2b 0b 85 | .+.. | occur: "1977-01-01T00:00:05Z" (220924805) 0x306-0x309.7 (4)
|
||||
0x300| 00 00 00 06 | .... | corr: 6 0x30a-0x30d.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x30e-0x315.7 (8)
|
||||
0x300| 0f 0c| ..| occur: "1978-01-01T00:00:06Z" (252460806) 0x30e-0x311.7 (4)
|
||||
0x310|3f 06 |?. |
|
||||
0x310| 00 00 00 07 | .... | corr: 7 0x312-0x315.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x316-0x31d.7 (8)
|
||||
0x310| 10 ed 72 87 | ..r. | occur: "1979-01-01T00:00:07Z" (283996807) 0x316-0x319.7 (4)
|
||||
0x310| 00 00 00 08 | .... | corr: 8 0x31a-0x31d.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x31e-0x325.7 (8)
|
||||
0x310| 12 ce| ..| occur: "1980-01-01T00:00:08Z" (315532808) 0x31e-0x321.7 (4)
|
||||
0x320|a6 08 |.. |
|
||||
0x320| 00 00 00 09 | .... | corr: 9 0x322-0x325.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x326-0x32d.7 (8)
|
||||
0x320| 15 9f ca 89 | .... | occur: "1981-07-01T00:00:09Z" (362793609) 0x326-0x329.7 (4)
|
||||
0x320| 00 00 00 0a | .... | corr: 10 0x32a-0x32d.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x32e-0x335.7 (8)
|
||||
0x320| 17 80| ..| occur: "1982-07-01T00:00:10Z" (394329610) 0x32e-0x331.7 (4)
|
||||
0x330|fe 0a |.. |
|
||||
0x330| 00 00 00 0b | .... | corr: 11 0x332-0x335.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x336-0x33d.7 (8)
|
||||
0x330| 19 62 31 8b | .b1. | occur: "1983-07-01T00:00:11Z" (425865611) 0x336-0x339.7 (4)
|
||||
0x330| 00 00 00 0c | .... | corr: 12 0x33a-0x33d.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x33e-0x345.7 (8)
|
||||
0x330| 1d 25| .%| occur: "1985-07-01T00:00:12Z" (489024012) 0x33e-0x341.7 (4)
|
||||
0x340|ea 0c |.. |
|
||||
0x340| 00 00 00 0d | .... | corr: 13 0x342-0x345.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x346-0x34d.7 (8)
|
||||
0x340| 21 da e5 0d | !... | occur: "1988-01-01T00:00:13Z" (567993613) 0x346-0x349.7 (4)
|
||||
0x340| 00 00 00 0e | .... | corr: 14 0x34a-0x34d.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x34e-0x355.7 (8)
|
||||
0x340| 25 9e| %.| occur: "1990-01-01T00:00:14Z" (631152014) 0x34e-0x351.7 (4)
|
||||
0x350|9d 8e |.. |
|
||||
0x350| 00 00 00 0f | .... | corr: 15 0x352-0x355.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x356-0x35d.7 (8)
|
||||
0x350| 27 7f d1 0f | '... | occur: "1991-01-01T00:00:15Z" (662688015) 0x356-0x359.7 (4)
|
||||
0x350| 00 00 00 10 | .... | corr: 16 0x35a-0x35d.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x35e-0x365.7 (8)
|
||||
0x350| 2a 50| *P| occur: "1992-07-01T00:00:16Z" (709948816) 0x35e-0x361.7 (4)
|
||||
0x360|f5 90 |.. |
|
||||
0x360| 00 00 00 11 | .... | corr: 17 0x362-0x365.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x366-0x36d.7 (8)
|
||||
0x360| 2c 32 29 11 | ,2). | occur: "1993-07-01T00:00:17Z" (741484817) 0x366-0x369.7 (4)
|
||||
0x360| 00 00 00 12 | .... | corr: 18 0x36a-0x36d.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x36e-0x375.7 (8)
|
||||
0x360| 2e 13| ..| occur: "1994-07-01T00:00:18Z" (773020818) 0x36e-0x371.7 (4)
|
||||
0x370|5c 92 |\. |
|
||||
0x370| 00 00 00 13 | .... | corr: 19 0x372-0x375.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x376-0x37d.7 (8)
|
||||
0x370| 30 e7 24 13 | 0.$. | occur: "1996-01-01T00:00:19Z" (820454419) 0x376-0x379.7 (4)
|
||||
0x370| 00 00 00 14 | .... | corr: 20 0x37a-0x37d.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x37e-0x385.7 (8)
|
||||
0x370| 33 b8| 3.| occur: "1997-07-01T00:00:20Z" (867715220) 0x37e-0x381.7 (4)
|
||||
0x380|48 94 |H. |
|
||||
0x380| 00 00 00 15 | .... | corr: 21 0x382-0x385.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x386-0x38d.7 (8)
|
||||
0x380| 36 8c 10 15 | 6... | occur: "1999-01-01T00:00:21Z" (915148821) 0x386-0x389.7 (4)
|
||||
0x380| 00 00 00 16 | .... | corr: 22 0x38a-0x38d.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x38e-0x395.7 (8)
|
||||
0x380| 43 b7| C.| occur: "2006-01-01T00:00:22Z" (1136073622) 0x38e-0x391.7 (4)
|
||||
0x390|1b 96 |.. |
|
||||
0x390| 00 00 00 17 | .... | corr: 23 0x392-0x395.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x396-0x39d.7 (8)
|
||||
0x390| 49 5c 07 97 | I\.. | occur: "2009-01-01T00:00:23Z" (1230768023) 0x396-0x399.7 (4)
|
||||
0x390| 00 00 00 18 | .... | corr: 24 0x39a-0x39d.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x39e-0x3a5.7 (8)
|
||||
0x390| 4f ef| O.| occur: "2012-07-01T00:00:24Z" (1341100824) 0x39e-0x3a1.7 (4)
|
||||
0x3a0|93 18 |.. |
|
||||
0x3a0| 00 00 00 19 | .... | corr: 25 0x3a2-0x3a5.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x3a6-0x3ad.7 (8)
|
||||
0x3a0| 55 93 2d 99 | U.-. | occur: "2015-07-01T00:00:25Z" (1435708825) 0x3a6-0x3a9.7 (4)
|
||||
0x3a0| 00 00 00 1a | .... | corr: 26 0x3aa-0x3ad.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x3ae-0x3b5.7 (8)
|
||||
0x3a0| 58 68| Xh| occur: "2017-01-01T00:00:26Z" (1483228826) 0x3ae-0x3b1.7 (4)
|
||||
0x3b0|46 9a |F. |
|
||||
0x3b0| 00 00 00 1b | .... | corr: 27 0x3b2-0x3b5.7 (4)
|
||||
| | | standard_wall_indicators[0:0]: 0x3b6-NA (0)
|
||||
| | | ut_local_indicators[0:0]: 0x3b6-NA (0)
|
||||
| | | v2plusheader{}: 0x3b6-0x3e1.7 (44)
|
||||
0x3b0| 54 5a 69 66 | TZif | magic: 0x545a6966 (valid) 0x3b6-0x3b9.7 (4)
|
||||
0x3b0| 32 | 2 | ver: "2" (0x32) (valid) 0x3ba-0x3ba.7 (1)
|
||||
0x3b0| 00 00 00 00 00| .....| reserved: raw bits 0x3bb-0x3c9.7 (15)
|
||||
0x3c0|00 00 00 00 00 00 00 00 00 00 |.......... |
|
||||
0x3c0| 00 00 00 00 | .... | isutcnt: 0 0x3ca-0x3cd.7 (4)
|
||||
0x3c0| 00 00| ..| isstdcnt: 0 0x3ce-0x3d1.7 (4)
|
||||
0x3d0|00 00 |.. |
|
||||
0x3d0| 00 00 00 1b | .... | leapcnt: 27 0x3d2-0x3d5.7 (4)
|
||||
0x3d0| 00 00 00 80 | .... | timecnt: 128 0x3d6-0x3d9.7 (4)
|
||||
0x3d0| 00 00 00 05 | .... | typecnt: 5 0x3da-0x3dd.7 (4)
|
||||
0x3d0| 00 00| ..| charcnt: 20 0x3de-0x3e1.7 (4)
|
||||
0x3e0|00 14 |.. |
|
||||
| | | v2plusdatablock{}: 0x3e2-0x9d7.7 (1526)
|
||||
| | | transition_times[0:128]: 0x3e2-0x7e1.7 (1024)
|
||||
0x3e0| ff ff ff ff 69 87 18 46 | ....i..F | [0]: "1890-01-01T04:19:18Z" (-2524506042) transition_time 0x3e2-0x3e9.7 (8)
|
||||
0x3e0| ff ff ff ff 9c cc| ......| [1]: "1917-04-06T04:19:18Z" (-1664307642) transition_time 0x3ea-0x3f1.7 (8)
|
||||
0x3f0|ae 46 |.F |
|
||||
0x3f0| ff ff ff ff 9d b7 4b 36 | ......K6 | [2]: "1917-10-01T03:19:18Z" (-1648932042) transition_time 0x3f2-0x3f9.7 (8)
|
||||
0x3f0| ff ff ff ff 9e b8| ......| [3]: "1918-04-14T04:19:18Z" (-1632080442) transition_time 0x3fa-0x401.7 (8)
|
||||
0x400|6d c6 |m. |
|
||||
0x400| ff ff ff ff 9f 84 b8 36 | .......6 | [4]: "1918-09-16T03:19:18Z" (-1618692042) transition_time 0x402-0x409.7 (8)
|
||||
0x400| ff ff ff ff b4 c3| ......| [5]: "1930-01-01T06:19:18Z" (-1262281242) transition_time 0x40a-0x411.7 (8)
|
||||
0x410|1d e6 |.. |
|
||||
0x410| ff ff ff ff cb 62 a6 e0 | .....b.. | [6]: "1942-01-11T06:00:00Z" (-882727200) transition_time 0x412-0x419.7 (8)
|
||||
0x410| ff ff ff ff cc d3| ......| [7]: "1942-10-18T05:00:00Z" (-858538800) transition_time 0x41a-0x421.7 (8)
|
||||
0x420|bc d0 |.. |
|
||||
0x420| ff ff ff ff cd 9e d1 e0 | ........ | [8]: "1943-03-21T06:00:00Z" (-845229600) transition_time 0x422-0x429.7 (8)
|
||||
0x420| ff ff ff ff ce c6| ......| [9]: "1943-10-31T05:00:00Z" (-825879600) transition_time 0x42a-0x431.7 (8)
|
||||
0x430|13 d0 |.. |
|
||||
0x430| ff ff ff ff cf 75 79 60 | .....uy` | [10]: "1944-03-12T06:00:00Z" (-814384800) transition_time 0x432-0x439.7 (8)
|
||||
0x430| ff ff ff ff d0 af| ......| [11]: "1944-11-05T05:00:00Z" (-793825200) transition_time 0x43a-0x441.7 (8)
|
||||
0x440|30 50 |0P |
|
||||
0x440| ff ff ff ff d1 55 5b 60 | .....U[` | [12]: "1945-03-11T06:00:00Z" (-782935200) transition_time 0x442-0x449.7 (8)
|
||||
0x440| ff ff ff ff d2 8f| ......| [13]: "1945-11-04T05:00:00Z" (-762375600) transition_time 0x44a-0x451.7 (8)
|
||||
0x450|12 50 |.P |
|
||||
0x450| ff ff ff ff d5 71 68 60 | .....qh` | [14]: "1947-05-18T06:00:00Z" (-713988000) transition_time 0x452-0x459.7 (8)
|
||||
0x450| ff ff ff ff d6 0e| ......| [15]: "1947-09-14T05:00:00Z" (-703710000) transition_time 0x45a-0x461.7 (8)
|
||||
0x460|3c d0 |<. |
|
||||
0x460| ff ff ff ff d7 5a 84 e0 | .....Z.. | [16]: "1948-05-23T06:00:00Z" (-681933600) transition_time 0x462-0x469.7 (8)
|
||||
0x460| ff ff ff ff d7 e4| ......| [17]: "1948-09-05T05:00:00Z" (-672865200) transition_time 0x46a-0x471.7 (8)
|
||||
0x470|e4 50 |.P |
|
||||
0x470| ff ff ff ff d9 3a 66 e0 | .....:f. | [18]: "1949-05-22T06:00:00Z" (-650484000) transition_time 0x472-0x479.7 (8)
|
||||
0x470| ff ff ff ff d9 c4| ......| [19]: "1949-09-04T05:00:00Z" (-641415600) transition_time 0x47a-0x481.7 (8)
|
||||
0x480|c6 50 |.P |
|
||||
0x480| ff ff ff ff db 23 83 60 | .....#.` | [20]: "1950-05-28T06:00:00Z" (-618429600) transition_time 0x482-0x489.7 (8)
|
||||
0x480| ff ff ff ff db a4| ......| [21]: "1950-09-03T05:00:00Z" (-609966000) transition_time 0x48a-0x491.7 (8)
|
||||
0x490|a8 50 |.P |
|
||||
0x490| ff ff ff ff dd 03 65 60 | ......e` | [22]: "1951-05-27T06:00:00Z" (-586980000) transition_time 0x492-0x499.7 (8)
|
||||
0x490| ff ff ff ff dd 84| ......| [23]: "1951-09-02T05:00:00Z" (-578516400) transition_time 0x49a-0x4a1.7 (8)
|
||||
0x4a0|8a 50 |.P |
|
||||
0x4a0| ff ff ff ff de e3 47 60 | ......G` | [24]: "1952-05-25T06:00:00Z" (-555530400) transition_time 0x4a2-0x4a9.7 (8)
|
||||
0x4a0| ff ff ff ff df 6d| .....m| [25]: "1952-09-07T05:00:00Z" (-546462000) transition_time 0x4aa-0x4b1.7 (8)
|
||||
0x4b0|a6 d0 |.. |
|
||||
0x4b0| ff ff ff ff e6 6c 09 e0 | .....l.. | [26]: "1956-05-27T06:00:00Z" (-429127200) transition_time 0x4b2-0x4b9.7 (8)
|
||||
0x4b0| ff ff ff ff e7 37| .....7| [27]: "1956-10-28T05:00:00Z" (-415825200) transition_time 0x4ba-0x4c1.7 (8)
|
||||
0x4c0|02 d0 |.. |
|
||||
0x4c0| 00 00 00 00 08 20 b3 63 | ..... .c | [28]: "1974-04-28T06:00:03Z" (136360803) transition_time 0x4c2-0x4c9.7 (8)
|
||||
0x4c0| 00 00 00 00 09 10| ......| [29]: "1974-10-27T05:00:03Z" (152082003) transition_time 0x4ca-0x4d1.7 (8)
|
||||
0x4d0|96 53 |.S |
|
||||
0x4d0| 00 00 00 00 0a 00 95 64 | .......d | [30]: "1975-04-27T06:00:04Z" (167810404) transition_time 0x4d2-0x4d9.7 (8)
|
||||
0x4d0| 00 00 00 00 0a f0| ......| [31]: "1975-10-26T05:00:04Z" (183531604) transition_time 0x4da-0x4e1.7 (8)
|
||||
0x4e0|78 54 |xT |
|
||||
0x4e0| 00 00 00 00 0b e0 77 65 | ......we | [32]: "1976-04-25T06:00:05Z" (199260005) transition_time 0x4e2-0x4e9.7 (8)
|
||||
0x4e0| 00 00 00 00 0c d9| ......| [33]: "1976-10-31T05:00:05Z" (215586005) transition_time 0x4ea-0x4f1.7 (8)
|
||||
0x4f0|94 d5 |.. |
|
||||
0x4f0| 00 00 00 00 0d c0 59 66 | ......Yf | [34]: "1977-04-24T06:00:06Z" (230709606) transition_time 0x4f2-0x4f9.7 (8)
|
||||
0x4f0| 00 00 00 00 0e b9| ......| [35]: "1977-10-30T05:00:06Z" (247035606) transition_time 0x4fa-0x501.7 (8)
|
||||
0x500|76 d6 |v. |
|
||||
0x500| 00 00 00 00 0f a9 75 e7 | ......u. | [36]: "1978-04-30T06:00:07Z" (262764007) transition_time 0x502-0x509.7 (8)
|
||||
0x500| 00 00 00 00 10 99| ......| [37]: "1978-10-29T05:00:07Z" (278485207) transition_time 0x50a-0x511.7 (8)
|
||||
0x510|58 d7 |X. |
|
||||
0x510| 00 00 00 00 11 89 57 e8 | ......W. | [38]: "1979-04-29T06:00:08Z" (294213608) transition_time 0x512-0x519.7 (8)
|
||||
0x510| 00 00 00 00 12 79| .....y| [39]: "1979-10-28T05:00:08Z" (309934808) transition_time 0x51a-0x521.7 (8)
|
||||
0x520|3a d8 |:. |
|
||||
0x520| 00 00 00 00 13 69 39 e9 | .....i9. | [40]: "1980-04-27T06:00:09Z" (325663209) transition_time 0x522-0x529.7 (8)
|
||||
0x520| 00 00 00 00 14 59| .....Y| [41]: "1980-10-26T05:00:09Z" (341384409) transition_time 0x52a-0x531.7 (8)
|
||||
0x530|1c d9 |.. |
|
||||
0x530| 00 00 00 00 15 49 1b e9 | .....I.. | [42]: "1981-04-26T06:00:09Z" (357112809) transition_time 0x532-0x539.7 (8)
|
||||
0x530| 00 00 00 00 16 38| .....8| [43]: "1981-10-25T05:00:10Z" (372834010) transition_time 0x53a-0x541.7 (8)
|
||||
0x540|fe da |.. |
|
||||
0x540| 00 00 00 00 17 28 fd ea | .....(.. | [44]: "1982-04-25T06:00:10Z" (388562410) transition_time 0x542-0x549.7 (8)
|
||||
0x540| 00 00 00 00 18 22| ....."| [45]: "1982-10-31T05:00:11Z" (404888411) transition_time 0x54a-0x551.7 (8)
|
||||
0x550|1b 5b |.[ |
|
||||
0x550| 00 00 00 00 19 08 df eb | ........ | [46]: "1983-04-24T06:00:11Z" (420012011) transition_time 0x552-0x559.7 (8)
|
||||
0x550| 00 00 00 00 1a 01| ......| [47]: "1983-10-30T05:00:12Z" (436338012) transition_time 0x55a-0x561.7 (8)
|
||||
0x560|fd 5c |.\ |
|
||||
0x560| 00 00 00 00 1a f1 fc 6c | .......l | [48]: "1984-04-29T06:00:12Z" (452066412) transition_time 0x562-0x569.7 (8)
|
||||
0x560| 00 00 00 00 1b e1| ......| [49]: "1984-10-28T05:00:12Z" (467787612) transition_time 0x56a-0x571.7 (8)
|
||||
0x570|df 5c |.\ |
|
||||
0x570| 00 00 00 00 1c d1 de 6c | .......l | [50]: "1985-04-28T06:00:12Z" (483516012) transition_time 0x572-0x579.7 (8)
|
||||
0x570| 00 00 00 00 1d c1| ......| [51]: "1985-10-27T05:00:13Z" (499237213) transition_time 0x57a-0x581.7 (8)
|
||||
0x580|c1 5d |.] |
|
||||
0x580| 00 00 00 00 1e b1 c0 6d | .......m | [52]: "1986-04-27T06:00:13Z" (514965613) transition_time 0x582-0x589.7 (8)
|
||||
0x580| 00 00 00 00 1f a1| ......| [53]: "1986-10-26T05:00:13Z" (530686813) transition_time 0x58a-0x591.7 (8)
|
||||
0x590|a3 5d |.] |
|
||||
0x590| 00 00 00 00 20 75 f2 ed | .... u.. | [54]: "1987-04-05T06:00:13Z" (544600813) transition_time 0x592-0x599.7 (8)
|
||||
0x590| 00 00 00 00 21 81| ....!.| [55]: "1987-10-25T05:00:13Z" (562136413) transition_time 0x59a-0x5a1.7 (8)
|
||||
0x5a0|85 5d |.] |
|
||||
0x5a0| 00 00 00 00 22 55 d4 ee | ...."U.. | [56]: "1988-04-03T06:00:14Z" (576050414) transition_time 0x5a2-0x5a9.7 (8)
|
||||
0x5a0| 00 00 00 00 23 6a| ....#j| [57]: "1988-10-30T05:00:14Z" (594190814) transition_time 0x5aa-0x5b1.7 (8)
|
||||
0x5b0|a1 de |.. |
|
||||
0x5b0| 00 00 00 00 24 35 b6 ee | ....$5.. | [58]: "1989-04-02T06:00:14Z" (607500014) transition_time 0x5b2-0x5b9.7 (8)
|
||||
0x5b0| 00 00 00 00 25 4a| ....%J| [59]: "1989-10-29T05:00:14Z" (625640414) transition_time 0x5ba-0x5c1.7 (8)
|
||||
0x5c0|83 de |.. |
|
||||
0x5c0| 00 00 00 00 26 15 98 ef | ....&... | [60]: "1990-04-01T06:00:15Z" (638949615) transition_time 0x5c2-0x5c9.7 (8)
|
||||
0x5c0| 00 00 00 00 27 2a| ....'*| [61]: "1990-10-28T05:00:15Z" (657090015) transition_time 0x5ca-0x5d1.7 (8)
|
||||
0x5d0|65 df |e. |
|
||||
0x5d0| 00 00 00 00 27 fe b5 70 | ....'..p | [62]: "1991-04-07T06:00:16Z" (671004016) transition_time 0x5d2-0x5d9.7 (8)
|
||||
0x5d0| 00 00 00 00 29 0a| ....).| [63]: "1991-10-27T05:00:16Z" (688539616) transition_time 0x5da-0x5e1.7 (8)
|
||||
0x5e0|47 e0 |G. |
|
||||
0x5e0| 00 00 00 00 29 de 97 70 | ....)..p | [64]: "1992-04-05T06:00:16Z" (702453616) transition_time 0x5e2-0x5e9.7 (8)
|
||||
0x5e0| 00 00 00 00 2a ea| ....*.| [65]: "1992-10-25T05:00:17Z" (719989217) transition_time 0x5ea-0x5f1.7 (8)
|
||||
0x5f0|29 e1 |). |
|
||||
0x5f0| 00 00 00 00 2b be 79 71 | ....+.yq | [66]: "1993-04-04T06:00:17Z" (733903217) transition_time 0x5f2-0x5f9.7 (8)
|
||||
0x5f0| 00 00 00 00 2c d3| ....,.| [67]: "1993-10-31T05:00:18Z" (752043618) transition_time 0x5fa-0x601.7 (8)
|
||||
0x600|46 62 |Fb |
|
||||
0x600| 00 00 00 00 2d 9e 5b 72 | ....-.[r | [68]: "1994-04-03T06:00:18Z" (765352818) transition_time 0x602-0x609.7 (8)
|
||||
0x600| 00 00 00 00 2e b3| ......| [69]: "1994-10-30T05:00:19Z" (783493219) transition_time 0x60a-0x611.7 (8)
|
||||
0x610|28 63 |(c |
|
||||
0x610| 00 00 00 00 2f 7e 3d 73 | ..../~=s | [70]: "1995-04-02T06:00:19Z" (796802419) transition_time 0x612-0x619.7 (8)
|
||||
0x610| 00 00 00 00 30 93| ....0.| [71]: "1995-10-29T05:00:19Z" (814942819) transition_time 0x61a-0x621.7 (8)
|
||||
0x620|0a 63 |.c |
|
||||
0x620| 00 00 00 00 31 67 59 f4 | ....1gY. | [72]: "1996-04-07T06:00:20Z" (828856820) transition_time 0x622-0x629.7 (8)
|
||||
0x620| 00 00 00 00 32 72| ....2r| [73]: "1996-10-27T05:00:20Z" (846392420) transition_time 0x62a-0x631.7 (8)
|
||||
0x630|ec 64 |.d |
|
||||
0x630| 00 00 00 00 33 47 3b f4 | ....3G;. | [74]: "1997-04-06T06:00:20Z" (860306420) transition_time 0x632-0x639.7 (8)
|
||||
0x630| 00 00 00 00 34 52| ....4R| [75]: "1997-10-26T05:00:21Z" (877842021) transition_time 0x63a-0x641.7 (8)
|
||||
0x640|ce 65 |.e |
|
||||
0x640| 00 00 00 00 35 27 1d f5 | ....5'.. | [76]: "1998-04-05T06:00:21Z" (891756021) transition_time 0x642-0x649.7 (8)
|
||||
0x640| 00 00 00 00 36 32| ....62| [77]: "1998-10-25T05:00:21Z" (909291621) transition_time 0x64a-0x651.7 (8)
|
||||
0x650|b0 65 |.e |
|
||||
0x650| 00 00 00 00 37 06 ff f6 | ....7... | [78]: "1999-04-04T06:00:22Z" (923205622) transition_time 0x652-0x659.7 (8)
|
||||
0x650| 00 00 00 00 38 1b| ....8.| [79]: "1999-10-31T05:00:22Z" (941346022) transition_time 0x65a-0x661.7 (8)
|
||||
0x660|cc e6 |.. |
|
||||
0x660| 00 00 00 00 38 e6 e1 f6 | ....8... | [80]: "2000-04-02T06:00:22Z" (954655222) transition_time 0x662-0x669.7 (8)
|
||||
0x660| 00 00 00 00 39 fb| ....9.| [81]: "2000-10-29T05:00:22Z" (972795622) transition_time 0x66a-0x671.7 (8)
|
||||
0x670|ae e6 |.. |
|
||||
0x670| 00 00 00 00 3a c6 c3 f6 | ....:... | [82]: "2001-04-01T06:00:22Z" (986104822) transition_time 0x672-0x679.7 (8)
|
||||
0x670| 00 00 00 00 3b db| ....;.| [83]: "2001-10-28T05:00:22Z" (1004245222) transition_time 0x67a-0x681.7 (8)
|
||||
0x680|90 e6 |.. |
|
||||
0x680| 00 00 00 00 3c af e0 76 | ....<..v | [84]: "2002-04-07T06:00:22Z" (1018159222) transition_time 0x682-0x689.7 (8)
|
||||
0x680| 00 00 00 00 3d bb| ....=.| [85]: "2002-10-27T05:00:22Z" (1035694822) transition_time 0x68a-0x691.7 (8)
|
||||
0x690|72 e6 |r. |
|
||||
0x690| 00 00 00 00 3e 8f c2 76 | ....>..v | [86]: "2003-04-06T06:00:22Z" (1049608822) transition_time 0x692-0x699.7 (8)
|
||||
0x690| 00 00 00 00 3f 9b| ....?.| [87]: "2003-10-26T05:00:22Z" (1067144422) transition_time 0x69a-0x6a1.7 (8)
|
||||
0x6a0|54 e6 |T. |
|
||||
0x6a0| 00 00 00 00 40 6f a4 76 | ....@o.v | [88]: "2004-04-04T06:00:22Z" (1081058422) transition_time 0x6a2-0x6a9.7 (8)
|
||||
0x6a0| 00 00 00 00 41 84| ....A.| [89]: "2004-10-31T05:00:22Z" (1099198822) transition_time 0x6aa-0x6b1.7 (8)
|
||||
0x6b0|71 66 |qf |
|
||||
0x6b0| 00 00 00 00 42 4f 86 76 | ....BO.v | [90]: "2005-04-03T06:00:22Z" (1112508022) transition_time 0x6b2-0x6b9.7 (8)
|
||||
0x6b0| 00 00 00 00 43 64| ....Cd| [91]: "2005-10-30T05:00:22Z" (1130648422) transition_time 0x6ba-0x6c1.7 (8)
|
||||
0x6c0|53 66 |Sf |
|
||||
0x6c0| 00 00 00 00 44 2f 68 77 | ....D/hw | [92]: "2006-04-02T06:00:23Z" (1143957623) transition_time 0x6c2-0x6c9.7 (8)
|
||||
0x6c0| 00 00 00 00 45 44| ....ED| [93]: "2006-10-29T05:00:23Z" (1162098023) transition_time 0x6ca-0x6d1.7 (8)
|
||||
0x6d0|35 67 |5g |
|
||||
0x6d0| 00 00 00 00 45 f3 9a f7 | ....E... | [94]: "2007-03-11T06:00:23Z" (1173592823) transition_time 0x6d2-0x6d9.7 (8)
|
||||
0x6d0| 00 00 00 00 47 2d| ....G-| [95]: "2007-11-04T05:00:23Z" (1194152423) transition_time 0x6da-0x6e1.7 (8)
|
||||
0x6e0|51 e7 |Q. |
|
||||
0x6e0| 00 00 00 00 47 d3 7c f7 | ....G.|. | [96]: "2008-03-09T06:00:23Z" (1205042423) transition_time 0x6e2-0x6e9.7 (8)
|
||||
0x6e0| 00 00 00 00 49 0d| ....I.| [97]: "2008-11-02T05:00:23Z" (1225602023) transition_time 0x6ea-0x6f1.7 (8)
|
||||
0x6f0|33 e7 |3. |
|
||||
0x6f0| 00 00 00 00 49 b3 5e f8 | ....I.^. | [98]: "2009-03-08T06:00:24Z" (1236492024) transition_time 0x6f2-0x6f9.7 (8)
|
||||
0x6f0| 00 00 00 00 4a ed| ....J.| [99]: "2009-11-01T05:00:24Z" (1257051624) transition_time 0x6fa-0x701.7 (8)
|
||||
0x700|15 e8 |.. |
|
||||
0x700| 00 00 00 00 4b 9c 7b 78 | ....K.{x | [100]: "2010-03-14T06:00:24Z" (1268546424) transition_time 0x702-0x709.7 (8)
|
||||
0x700| 00 00 00 00 4c d6| ....L.| [101]: "2010-11-07T05:00:24Z" (1289106024) transition_time 0x70a-0x711.7 (8)
|
||||
0x710|32 68 |2h |
|
||||
0x710| 00 00 00 00 4d 7c 5d 78 | ....M|]x | [102]: "2011-03-13T06:00:24Z" (1299996024) transition_time 0x712-0x719.7 (8)
|
||||
0x710| 00 00 00 00 4e b6| ....N.| [103]: "2011-11-06T05:00:24Z" (1320555624) transition_time 0x71a-0x721.7 (8)
|
||||
0x720|14 68 |.h |
|
||||
0x720| 00 00 00 00 4f 5c 3f 78 | ....O\?x | [104]: "2012-03-11T06:00:24Z" (1331445624) transition_time 0x722-0x729.7 (8)
|
||||
0x720| 00 00 00 00 50 95| ....P.| [105]: "2012-11-04T05:00:25Z" (1352005225) transition_time 0x72a-0x731.7 (8)
|
||||
0x730|f6 69 |.i |
|
||||
0x730| 00 00 00 00 51 3c 21 79 | ....Q<!y | [106]: "2013-03-10T06:00:25Z" (1362895225) transition_time 0x732-0x739.7 (8)
|
||||
0x730| 00 00 00 00 52 75| ....Ru| [107]: "2013-11-03T05:00:25Z" (1383454825) transition_time 0x73a-0x741.7 (8)
|
||||
0x740|d8 69 |.i |
|
||||
0x740| 00 00 00 00 53 1c 03 79 | ....S..y | [108]: "2014-03-09T06:00:25Z" (1394344825) transition_time 0x742-0x749.7 (8)
|
||||
0x740| 00 00 00 00 54 55| ....TU| [109]: "2014-11-02T05:00:25Z" (1414904425) transition_time 0x74a-0x751.7 (8)
|
||||
0x750|ba 69 |.i |
|
||||
0x750| 00 00 00 00 54 fb e5 79 | ....T..y | [110]: "2015-03-08T06:00:25Z" (1425794425) transition_time 0x752-0x759.7 (8)
|
||||
0x750| 00 00 00 00 56 35| ....V5| [111]: "2015-11-01T05:00:26Z" (1446354026) transition_time 0x75a-0x761.7 (8)
|
||||
0x760|9c 6a |.j |
|
||||
0x760| 00 00 00 00 56 e5 01 fa | ....V... | [112]: "2016-03-13T06:00:26Z" (1457848826) transition_time 0x762-0x769.7 (8)
|
||||
0x760| 00 00 00 00 58 1e| ....X.| [113]: "2016-11-06T05:00:26Z" (1478408426) transition_time 0x76a-0x771.7 (8)
|
||||
0x770|b8 ea |.. |
|
||||
0x770| 00 00 00 00 58 c4 e3 fb | ....X... | [114]: "2017-03-12T06:00:27Z" (1489298427) transition_time 0x772-0x779.7 (8)
|
||||
0x770| 00 00 00 00 59 fe| ....Y.| [115]: "2017-11-05T05:00:27Z" (1509858027) transition_time 0x77a-0x781.7 (8)
|
||||
0x780|9a eb |.. |
|
||||
0x780| 00 00 00 00 5a a4 c5 fb | ....Z... | [116]: "2018-03-11T06:00:27Z" (1520748027) transition_time 0x782-0x789.7 (8)
|
||||
0x780| 00 00 00 00 5b de| ....[.| [117]: "2018-11-04T05:00:27Z" (1541307627) transition_time 0x78a-0x791.7 (8)
|
||||
0x790|7c eb ||. |
|
||||
0x790| 00 00 00 00 5c 84 a7 fb | ....\... | [118]: "2019-03-10T06:00:27Z" (1552197627) transition_time 0x792-0x799.7 (8)
|
||||
0x790| 00 00 00 00 5d be| ....].| [119]: "2019-11-03T05:00:27Z" (1572757227) transition_time 0x79a-0x7a1.7 (8)
|
||||
0x7a0|5e eb |^. |
|
||||
0x7a0| 00 00 00 00 5e 64 89 fb | ....^d.. | [120]: "2020-03-08T06:00:27Z" (1583647227) transition_time 0x7a2-0x7a9.7 (8)
|
||||
0x7a0| 00 00 00 00 5f 9e| ...._.| [121]: "2020-11-01T05:00:27Z" (1604206827) transition_time 0x7aa-0x7b1.7 (8)
|
||||
0x7b0|40 eb |@. |
|
||||
0x7b0| 00 00 00 00 60 4d a6 7b | ....`M.{ | [122]: "2021-03-14T06:00:27Z" (1615701627) transition_time 0x7b2-0x7b9.7 (8)
|
||||
0x7b0| 00 00 00 00 61 87| ....a.| [123]: "2021-11-07T05:00:27Z" (1636261227) transition_time 0x7ba-0x7c1.7 (8)
|
||||
0x7c0|5d 6b |]k |
|
||||
0x7c0| 00 00 00 00 62 2d 88 7b | ....b-.{ | [124]: "2022-03-13T06:00:27Z" (1647151227) transition_time 0x7c2-0x7c9.7 (8)
|
||||
0x7c0| 00 00 00 00 63 67| ....cg| [125]: "2022-11-06T05:00:27Z" (1667710827) transition_time 0x7ca-0x7d1.7 (8)
|
||||
0x7d0|3f 6b |?k |
|
||||
0x7d0| 00 00 00 00 64 0d 6a 7b | ....d.j{ | [126]: "2023-03-12T06:00:27Z" (1678600827) transition_time 0x7d2-0x7d9.7 (8)
|
||||
0x7d0| 00 00 00 00 64 9b| ....d.| [127]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x7da-0x7e1.7 (8)
|
||||
0x7e0|78 1b |x. |
|
||||
| | | transition_types[0:128]: 0x7e2-0x861.7 (128)
|
||||
0x7e0| 02 | . | [0]: 2 transition_type 0x7e2-0x7e2.7 (1)
|
||||
0x7e0| 01 | . | [1]: 1 transition_type 0x7e3-0x7e3.7 (1)
|
||||
0x7e0| 02 | . | [2]: 2 transition_type 0x7e4-0x7e4.7 (1)
|
||||
0x7e0| 01 | . | [3]: 1 transition_type 0x7e5-0x7e5.7 (1)
|
||||
0x7e0| 02 | . | [4]: 2 transition_type 0x7e6-0x7e6.7 (1)
|
||||
0x7e0| 04 | . | [5]: 4 transition_type 0x7e7-0x7e7.7 (1)
|
||||
0x7e0| 03 | . | [6]: 3 transition_type 0x7e8-0x7e8.7 (1)
|
||||
0x7e0| 04 | . | [7]: 4 transition_type 0x7e9-0x7e9.7 (1)
|
||||
0x7e0| 03 | . | [8]: 3 transition_type 0x7ea-0x7ea.7 (1)
|
||||
0x7e0| 04 | . | [9]: 4 transition_type 0x7eb-0x7eb.7 (1)
|
||||
0x7e0| 03 | . | [10]: 3 transition_type 0x7ec-0x7ec.7 (1)
|
||||
0x7e0| 04 | . | [11]: 4 transition_type 0x7ed-0x7ed.7 (1)
|
||||
0x7e0| 03 | . | [12]: 3 transition_type 0x7ee-0x7ee.7 (1)
|
||||
0x7e0| 04| .| [13]: 4 transition_type 0x7ef-0x7ef.7 (1)
|
||||
0x7f0|03 |. | [14]: 3 transition_type 0x7f0-0x7f0.7 (1)
|
||||
0x7f0| 04 | . | [15]: 4 transition_type 0x7f1-0x7f1.7 (1)
|
||||
0x7f0| 03 | . | [16]: 3 transition_type 0x7f2-0x7f2.7 (1)
|
||||
0x7f0| 04 | . | [17]: 4 transition_type 0x7f3-0x7f3.7 (1)
|
||||
0x7f0| 03 | . | [18]: 3 transition_type 0x7f4-0x7f4.7 (1)
|
||||
0x7f0| 04 | . | [19]: 4 transition_type 0x7f5-0x7f5.7 (1)
|
||||
0x7f0| 03 | . | [20]: 3 transition_type 0x7f6-0x7f6.7 (1)
|
||||
0x7f0| 04 | . | [21]: 4 transition_type 0x7f7-0x7f7.7 (1)
|
||||
0x7f0| 03 | . | [22]: 3 transition_type 0x7f8-0x7f8.7 (1)
|
||||
0x7f0| 04 | . | [23]: 4 transition_type 0x7f9-0x7f9.7 (1)
|
||||
0x7f0| 03 | . | [24]: 3 transition_type 0x7fa-0x7fa.7 (1)
|
||||
0x7f0| 04 | . | [25]: 4 transition_type 0x7fb-0x7fb.7 (1)
|
||||
0x7f0| 03 | . | [26]: 3 transition_type 0x7fc-0x7fc.7 (1)
|
||||
0x7f0| 04 | . | [27]: 4 transition_type 0x7fd-0x7fd.7 (1)
|
||||
0x7f0| 03 | . | [28]: 3 transition_type 0x7fe-0x7fe.7 (1)
|
||||
0x7f0| 04| .| [29]: 4 transition_type 0x7ff-0x7ff.7 (1)
|
||||
0x800|03 |. | [30]: 3 transition_type 0x800-0x800.7 (1)
|
||||
0x800| 04 | . | [31]: 4 transition_type 0x801-0x801.7 (1)
|
||||
0x800| 03 | . | [32]: 3 transition_type 0x802-0x802.7 (1)
|
||||
0x800| 04 | . | [33]: 4 transition_type 0x803-0x803.7 (1)
|
||||
0x800| 03 | . | [34]: 3 transition_type 0x804-0x804.7 (1)
|
||||
0x800| 04 | . | [35]: 4 transition_type 0x805-0x805.7 (1)
|
||||
0x800| 03 | . | [36]: 3 transition_type 0x806-0x806.7 (1)
|
||||
0x800| 04 | . | [37]: 4 transition_type 0x807-0x807.7 (1)
|
||||
0x800| 03 | . | [38]: 3 transition_type 0x808-0x808.7 (1)
|
||||
0x800| 04 | . | [39]: 4 transition_type 0x809-0x809.7 (1)
|
||||
0x800| 03 | . | [40]: 3 transition_type 0x80a-0x80a.7 (1)
|
||||
0x800| 04 | . | [41]: 4 transition_type 0x80b-0x80b.7 (1)
|
||||
0x800| 03 | . | [42]: 3 transition_type 0x80c-0x80c.7 (1)
|
||||
0x800| 04 | . | [43]: 4 transition_type 0x80d-0x80d.7 (1)
|
||||
0x800| 03 | . | [44]: 3 transition_type 0x80e-0x80e.7 (1)
|
||||
0x800| 04| .| [45]: 4 transition_type 0x80f-0x80f.7 (1)
|
||||
0x810|03 |. | [46]: 3 transition_type 0x810-0x810.7 (1)
|
||||
0x810| 04 | . | [47]: 4 transition_type 0x811-0x811.7 (1)
|
||||
0x810| 03 | . | [48]: 3 transition_type 0x812-0x812.7 (1)
|
||||
0x810| 04 | . | [49]: 4 transition_type 0x813-0x813.7 (1)
|
||||
0x810| 03 | . | [50]: 3 transition_type 0x814-0x814.7 (1)
|
||||
0x810| 04 | . | [51]: 4 transition_type 0x815-0x815.7 (1)
|
||||
0x810| 03 | . | [52]: 3 transition_type 0x816-0x816.7 (1)
|
||||
0x810| 04 | . | [53]: 4 transition_type 0x817-0x817.7 (1)
|
||||
0x810| 03 | . | [54]: 3 transition_type 0x818-0x818.7 (1)
|
||||
0x810| 04 | . | [55]: 4 transition_type 0x819-0x819.7 (1)
|
||||
0x810| 03 | . | [56]: 3 transition_type 0x81a-0x81a.7 (1)
|
||||
0x810| 04 | . | [57]: 4 transition_type 0x81b-0x81b.7 (1)
|
||||
0x810| 03 | . | [58]: 3 transition_type 0x81c-0x81c.7 (1)
|
||||
0x810| 04 | . | [59]: 4 transition_type 0x81d-0x81d.7 (1)
|
||||
0x810| 03 | . | [60]: 3 transition_type 0x81e-0x81e.7 (1)
|
||||
0x810| 04| .| [61]: 4 transition_type 0x81f-0x81f.7 (1)
|
||||
0x820|03 |. | [62]: 3 transition_type 0x820-0x820.7 (1)
|
||||
0x820| 04 | . | [63]: 4 transition_type 0x821-0x821.7 (1)
|
||||
0x820| 03 | . | [64]: 3 transition_type 0x822-0x822.7 (1)
|
||||
0x820| 04 | . | [65]: 4 transition_type 0x823-0x823.7 (1)
|
||||
0x820| 03 | . | [66]: 3 transition_type 0x824-0x824.7 (1)
|
||||
0x820| 04 | . | [67]: 4 transition_type 0x825-0x825.7 (1)
|
||||
0x820| 03 | . | [68]: 3 transition_type 0x826-0x826.7 (1)
|
||||
0x820| 04 | . | [69]: 4 transition_type 0x827-0x827.7 (1)
|
||||
0x820| 03 | . | [70]: 3 transition_type 0x828-0x828.7 (1)
|
||||
0x820| 04 | . | [71]: 4 transition_type 0x829-0x829.7 (1)
|
||||
0x820| 03 | . | [72]: 3 transition_type 0x82a-0x82a.7 (1)
|
||||
0x820| 04 | . | [73]: 4 transition_type 0x82b-0x82b.7 (1)
|
||||
0x820| 03 | . | [74]: 3 transition_type 0x82c-0x82c.7 (1)
|
||||
0x820| 04 | . | [75]: 4 transition_type 0x82d-0x82d.7 (1)
|
||||
0x820| 03 | . | [76]: 3 transition_type 0x82e-0x82e.7 (1)
|
||||
0x820| 04| .| [77]: 4 transition_type 0x82f-0x82f.7 (1)
|
||||
0x830|03 |. | [78]: 3 transition_type 0x830-0x830.7 (1)
|
||||
0x830| 04 | . | [79]: 4 transition_type 0x831-0x831.7 (1)
|
||||
0x830| 03 | . | [80]: 3 transition_type 0x832-0x832.7 (1)
|
||||
0x830| 04 | . | [81]: 4 transition_type 0x833-0x833.7 (1)
|
||||
0x830| 03 | . | [82]: 3 transition_type 0x834-0x834.7 (1)
|
||||
0x830| 04 | . | [83]: 4 transition_type 0x835-0x835.7 (1)
|
||||
0x830| 03 | . | [84]: 3 transition_type 0x836-0x836.7 (1)
|
||||
0x830| 04 | . | [85]: 4 transition_type 0x837-0x837.7 (1)
|
||||
0x830| 03 | . | [86]: 3 transition_type 0x838-0x838.7 (1)
|
||||
0x830| 04 | . | [87]: 4 transition_type 0x839-0x839.7 (1)
|
||||
0x830| 03 | . | [88]: 3 transition_type 0x83a-0x83a.7 (1)
|
||||
0x830| 04 | . | [89]: 4 transition_type 0x83b-0x83b.7 (1)
|
||||
0x830| 03 | . | [90]: 3 transition_type 0x83c-0x83c.7 (1)
|
||||
0x830| 04 | . | [91]: 4 transition_type 0x83d-0x83d.7 (1)
|
||||
0x830| 03 | . | [92]: 3 transition_type 0x83e-0x83e.7 (1)
|
||||
0x830| 04| .| [93]: 4 transition_type 0x83f-0x83f.7 (1)
|
||||
0x840|03 |. | [94]: 3 transition_type 0x840-0x840.7 (1)
|
||||
0x840| 04 | . | [95]: 4 transition_type 0x841-0x841.7 (1)
|
||||
0x840| 03 | . | [96]: 3 transition_type 0x842-0x842.7 (1)
|
||||
0x840| 04 | . | [97]: 4 transition_type 0x843-0x843.7 (1)
|
||||
0x840| 03 | . | [98]: 3 transition_type 0x844-0x844.7 (1)
|
||||
0x840| 04 | . | [99]: 4 transition_type 0x845-0x845.7 (1)
|
||||
0x840| 03 | . | [100]: 3 transition_type 0x846-0x846.7 (1)
|
||||
0x840| 04 | . | [101]: 4 transition_type 0x847-0x847.7 (1)
|
||||
0x840| 03 | . | [102]: 3 transition_type 0x848-0x848.7 (1)
|
||||
0x840| 04 | . | [103]: 4 transition_type 0x849-0x849.7 (1)
|
||||
0x840| 03 | . | [104]: 3 transition_type 0x84a-0x84a.7 (1)
|
||||
0x840| 04 | . | [105]: 4 transition_type 0x84b-0x84b.7 (1)
|
||||
0x840| 03 | . | [106]: 3 transition_type 0x84c-0x84c.7 (1)
|
||||
0x840| 04 | . | [107]: 4 transition_type 0x84d-0x84d.7 (1)
|
||||
0x840| 03 | . | [108]: 3 transition_type 0x84e-0x84e.7 (1)
|
||||
0x840| 04| .| [109]: 4 transition_type 0x84f-0x84f.7 (1)
|
||||
0x850|03 |. | [110]: 3 transition_type 0x850-0x850.7 (1)
|
||||
0x850| 04 | . | [111]: 4 transition_type 0x851-0x851.7 (1)
|
||||
0x850| 03 | . | [112]: 3 transition_type 0x852-0x852.7 (1)
|
||||
0x850| 04 | . | [113]: 4 transition_type 0x853-0x853.7 (1)
|
||||
0x850| 03 | . | [114]: 3 transition_type 0x854-0x854.7 (1)
|
||||
0x850| 04 | . | [115]: 4 transition_type 0x855-0x855.7 (1)
|
||||
0x850| 03 | . | [116]: 3 transition_type 0x856-0x856.7 (1)
|
||||
0x850| 04 | . | [117]: 4 transition_type 0x857-0x857.7 (1)
|
||||
0x850| 03 | . | [118]: 3 transition_type 0x858-0x858.7 (1)
|
||||
0x850| 04 | . | [119]: 4 transition_type 0x859-0x859.7 (1)
|
||||
0x850| 03 | . | [120]: 3 transition_type 0x85a-0x85a.7 (1)
|
||||
0x850| 04 | . | [121]: 4 transition_type 0x85b-0x85b.7 (1)
|
||||
0x850| 03 | . | [122]: 3 transition_type 0x85c-0x85c.7 (1)
|
||||
0x850| 04 | . | [123]: 4 transition_type 0x85d-0x85d.7 (1)
|
||||
0x850| 03 | . | [124]: 3 transition_type 0x85e-0x85e.7 (1)
|
||||
0x850| 04| .| [125]: 4 transition_type 0x85f-0x85f.7 (1)
|
||||
0x860|03 |. | [126]: 3 transition_type 0x860-0x860.7 (1)
|
||||
0x860| 03 | . | [127]: 3 transition_type 0x861-0x861.7 (1)
|
||||
| | | local_time_type_records[0:5]: 0x862-0x87f.7 (30)
|
||||
| | | [0]{}: local_time_type 0x862-0x867.7 (6)
|
||||
0x860| ff ff c3 3a | ...: | utoff: -15558 (valid) 0x862-0x865.7 (4)
|
||||
0x860| 00 | . | dst: 0 (valid) 0x866-0x866.7 (1)
|
||||
0x860| 00 | . | idx: 0 (valid) 0x867-0x867.7 (1)
|
||||
| | | [1]{}: local_time_type 0x868-0x86d.7 (6)
|
||||
0x860| ff ff d1 4a | ...J | utoff: -11958 (valid) 0x868-0x86b.7 (4)
|
||||
0x860| 01 | . | dst: 1 (valid) 0x86c-0x86c.7 (1)
|
||||
0x860| 04 | . | idx: 4 (valid) 0x86d-0x86d.7 (1)
|
||||
| | | [2]{}: local_time_type 0x86e-0x873.7 (6)
|
||||
0x860| ff ff| ..| utoff: -15558 (valid) 0x86e-0x871.7 (4)
|
||||
0x870|c3 3a |.: |
|
||||
0x870| 00 | . | dst: 0 (valid) 0x872-0x872.7 (1)
|
||||
0x870| 08 | . | idx: 8 (valid) 0x873-0x873.7 (1)
|
||||
| | | [3]{}: local_time_type 0x874-0x879.7 (6)
|
||||
0x870| ff ff d5 d0 | .... | utoff: -10800 (valid) 0x874-0x877.7 (4)
|
||||
0x870| 01 | . | dst: 1 (valid) 0x878-0x878.7 (1)
|
||||
0x870| 0c | . | idx: 12 (valid) 0x879-0x879.7 (1)
|
||||
| | | [4]{}: local_time_type 0x87a-0x87f.7 (6)
|
||||
0x870| ff ff c7 c0 | .... | utoff: -14400 (valid) 0x87a-0x87d.7 (4)
|
||||
0x870| 00 | . | dst: 0 (valid) 0x87e-0x87e.7 (1)
|
||||
0x870| 10| .| idx: 16 (valid) 0x87f-0x87f.7 (1)
|
||||
| | | time_zone_designations[0:5]: 0x880-0x893.7 (20)
|
||||
0x880|4c 4d 54 00 |LMT. | [0]: "LMT" time_zone_designation 0x880-0x883.7 (4)
|
||||
0x880| 42 53 54 00 | BST. | [1]: "BST" time_zone_designation 0x884-0x887.7 (4)
|
||||
0x880| 42 4d 54 00 | BMT. | [2]: "BMT" time_zone_designation 0x888-0x88b.7 (4)
|
||||
0x880| 41 44 54 00| ADT.| [3]: "ADT" time_zone_designation 0x88c-0x88f.7 (4)
|
||||
0x890|41 53 54 00 |AST. | [4]: "AST" time_zone_designation 0x890-0x893.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x894-0x9d7.7 (324)
|
||||
| | | [0]{}: leap_second_record 0x894-0x89f.7 (12)
|
||||
0x890| 00 00 00 00 04 b2 58 00 | ......X. | occur: "1972-07-01T00:00:00Z" (78796800) 0x894-0x89b.7 (8)
|
||||
0x890| 00 00 00 01| ....| corr: 1 0x89c-0x89f.7 (4)
|
||||
| | | [1]{}: leap_second_record 0x8a0-0x8ab.7 (12)
|
||||
0x8a0|00 00 00 00 05 a4 ec 01 |........ | occur: "1973-01-01T00:00:01Z" (94694401) 0x8a0-0x8a7.7 (8)
|
||||
0x8a0| 00 00 00 02 | .... | corr: 2 0x8a8-0x8ab.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x8ac-0x8b7.7 (12)
|
||||
0x8a0| 00 00 00 00| ....| occur: "1974-01-01T00:00:02Z" (126230402) 0x8ac-0x8b3.7 (8)
|
||||
0x8b0|07 86 1f 82 |.... |
|
||||
0x8b0| 00 00 00 03 | .... | corr: 3 0x8b4-0x8b7.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x8b8-0x8c3.7 (12)
|
||||
0x8b0| 00 00 00 00 09 67 53 03| .....gS.| occur: "1975-01-01T00:00:03Z" (157766403) 0x8b8-0x8bf.7 (8)
|
||||
0x8c0|00 00 00 04 |.... | corr: 4 0x8c0-0x8c3.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x8c4-0x8cf.7 (12)
|
||||
0x8c0| 00 00 00 00 0b 48 86 84 | .....H.. | occur: "1976-01-01T00:00:04Z" (189302404) 0x8c4-0x8cb.7 (8)
|
||||
0x8c0| 00 00 00 05| ....| corr: 5 0x8cc-0x8cf.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x8d0-0x8db.7 (12)
|
||||
0x8d0|00 00 00 00 0d 2b 0b 85 |.....+.. | occur: "1977-01-01T00:00:05Z" (220924805) 0x8d0-0x8d7.7 (8)
|
||||
0x8d0| 00 00 00 06 | .... | corr: 6 0x8d8-0x8db.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x8dc-0x8e7.7 (12)
|
||||
0x8d0| 00 00 00 00| ....| occur: "1978-01-01T00:00:06Z" (252460806) 0x8dc-0x8e3.7 (8)
|
||||
0x8e0|0f 0c 3f 06 |..?. |
|
||||
0x8e0| 00 00 00 07 | .... | corr: 7 0x8e4-0x8e7.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x8e8-0x8f3.7 (12)
|
||||
0x8e0| 00 00 00 00 10 ed 72 87| ......r.| occur: "1979-01-01T00:00:07Z" (283996807) 0x8e8-0x8ef.7 (8)
|
||||
0x8f0|00 00 00 08 |.... | corr: 8 0x8f0-0x8f3.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x8f4-0x8ff.7 (12)
|
||||
0x8f0| 00 00 00 00 12 ce a6 08 | ........ | occur: "1980-01-01T00:00:08Z" (315532808) 0x8f4-0x8fb.7 (8)
|
||||
0x8f0| 00 00 00 09| ....| corr: 9 0x8fc-0x8ff.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x900-0x90b.7 (12)
|
||||
0x900|00 00 00 00 15 9f ca 89 |........ | occur: "1981-07-01T00:00:09Z" (362793609) 0x900-0x907.7 (8)
|
||||
0x900| 00 00 00 0a | .... | corr: 10 0x908-0x90b.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x90c-0x917.7 (12)
|
||||
0x900| 00 00 00 00| ....| occur: "1982-07-01T00:00:10Z" (394329610) 0x90c-0x913.7 (8)
|
||||
0x910|17 80 fe 0a |.... |
|
||||
0x910| 00 00 00 0b | .... | corr: 11 0x914-0x917.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x918-0x923.7 (12)
|
||||
0x910| 00 00 00 00 19 62 31 8b| .....b1.| occur: "1983-07-01T00:00:11Z" (425865611) 0x918-0x91f.7 (8)
|
||||
0x920|00 00 00 0c |.... | corr: 12 0x920-0x923.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x924-0x92f.7 (12)
|
||||
0x920| 00 00 00 00 1d 25 ea 0c | .....%.. | occur: "1985-07-01T00:00:12Z" (489024012) 0x924-0x92b.7 (8)
|
||||
0x920| 00 00 00 0d| ....| corr: 13 0x92c-0x92f.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x930-0x93b.7 (12)
|
||||
0x930|00 00 00 00 21 da e5 0d |....!... | occur: "1988-01-01T00:00:13Z" (567993613) 0x930-0x937.7 (8)
|
||||
0x930| 00 00 00 0e | .... | corr: 14 0x938-0x93b.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x93c-0x947.7 (12)
|
||||
0x930| 00 00 00 00| ....| occur: "1990-01-01T00:00:14Z" (631152014) 0x93c-0x943.7 (8)
|
||||
0x940|25 9e 9d 8e |%... |
|
||||
0x940| 00 00 00 0f | .... | corr: 15 0x944-0x947.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x948-0x953.7 (12)
|
||||
0x940| 00 00 00 00 27 7f d1 0f| ....'...| occur: "1991-01-01T00:00:15Z" (662688015) 0x948-0x94f.7 (8)
|
||||
0x950|00 00 00 10 |.... | corr: 16 0x950-0x953.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x954-0x95f.7 (12)
|
||||
0x950| 00 00 00 00 2a 50 f5 90 | ....*P.. | occur: "1992-07-01T00:00:16Z" (709948816) 0x954-0x95b.7 (8)
|
||||
0x950| 00 00 00 11| ....| corr: 17 0x95c-0x95f.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x960-0x96b.7 (12)
|
||||
0x960|00 00 00 00 2c 32 29 11 |....,2). | occur: "1993-07-01T00:00:17Z" (741484817) 0x960-0x967.7 (8)
|
||||
0x960| 00 00 00 12 | .... | corr: 18 0x968-0x96b.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x96c-0x977.7 (12)
|
||||
0x960| 00 00 00 00| ....| occur: "1994-07-01T00:00:18Z" (773020818) 0x96c-0x973.7 (8)
|
||||
0x970|2e 13 5c 92 |..\. |
|
||||
0x970| 00 00 00 13 | .... | corr: 19 0x974-0x977.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x978-0x983.7 (12)
|
||||
0x970| 00 00 00 00 30 e7 24 13| ....0.$.| occur: "1996-01-01T00:00:19Z" (820454419) 0x978-0x97f.7 (8)
|
||||
0x980|00 00 00 14 |.... | corr: 20 0x980-0x983.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x984-0x98f.7 (12)
|
||||
0x980| 00 00 00 00 33 b8 48 94 | ....3.H. | occur: "1997-07-01T00:00:20Z" (867715220) 0x984-0x98b.7 (8)
|
||||
0x980| 00 00 00 15| ....| corr: 21 0x98c-0x98f.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x990-0x99b.7 (12)
|
||||
0x990|00 00 00 00 36 8c 10 15 |....6... | occur: "1999-01-01T00:00:21Z" (915148821) 0x990-0x997.7 (8)
|
||||
0x990| 00 00 00 16 | .... | corr: 22 0x998-0x99b.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x99c-0x9a7.7 (12)
|
||||
0x990| 00 00 00 00| ....| occur: "2006-01-01T00:00:22Z" (1136073622) 0x99c-0x9a3.7 (8)
|
||||
0x9a0|43 b7 1b 96 |C... |
|
||||
0x9a0| 00 00 00 17 | .... | corr: 23 0x9a4-0x9a7.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x9a8-0x9b3.7 (12)
|
||||
0x9a0| 00 00 00 00 49 5c 07 97| ....I\..| occur: "2009-01-01T00:00:23Z" (1230768023) 0x9a8-0x9af.7 (8)
|
||||
0x9b0|00 00 00 18 |.... | corr: 24 0x9b0-0x9b3.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x9b4-0x9bf.7 (12)
|
||||
0x9b0| 00 00 00 00 4f ef 93 18 | ....O... | occur: "2012-07-01T00:00:24Z" (1341100824) 0x9b4-0x9bb.7 (8)
|
||||
0x9b0| 00 00 00 19| ....| corr: 25 0x9bc-0x9bf.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x9c0-0x9cb.7 (12)
|
||||
0x9c0|00 00 00 00 55 93 2d 99 |....U.-. | occur: "2015-07-01T00:00:25Z" (1435708825) 0x9c0-0x9c7.7 (8)
|
||||
0x9c0| 00 00 00 1a | .... | corr: 26 0x9c8-0x9cb.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x9cc-0x9d7.7 (12)
|
||||
0x9c0| 00 00 00 00| ....| occur: "2017-01-01T00:00:26Z" (1483228826) 0x9cc-0x9d3.7 (8)
|
||||
0x9d0|58 68 46 9a |XhF. |
|
||||
0x9d0| 00 00 00 1b | .... | corr: 27 0x9d4-0x9d7.7 (4)
|
||||
| | | standard_wall_indicators[0:0]: 0x9d8-NA (0)
|
||||
| | | ut_local_indicators[0:0]: 0x9d8-NA (0)
|
||||
| | | footer{}: 0x9d8-0x9d9.7 (2)
|
||||
0x9d0| 0a | . | nl1: 10 (valid) 0x9d8-0x9d8.7 (1)
|
||||
| | | tz_string: "" 0x9d9-NA (0)
|
||||
0x9d0| 0a| | .| | nl2: 10 (valid) 0x9d9-0x9d9.7 (1)
|
BIN
format/tzif/testdata/Beulah
vendored
Normal file
BIN
format/tzif/testdata/Beulah
vendored
Normal file
Binary file not shown.
891
format/tzif/testdata/Beulah.fqtest
vendored
Normal file
891
format/tzif/testdata/Beulah.fqtest
vendored
Normal file
@ -0,0 +1,891 @@
|
||||
$ fq -d tzif dv Beulah
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: Beulah (tzif) 0x0-0x9d9.7 (2522)
|
||||
| | | v1header{}: 0x0-0x2b.7 (44)
|
||||
0x000|54 5a 69 66 |TZif | magic: 0x545a6966 (valid) 0x0-0x3.7 (4)
|
||||
0x000| 32 | 2 | ver: "2" (0x32) (valid) 0x4-0x4.7 (1)
|
||||
0x000| 00 00 00 00 00 00 00 00 00 00 00| ...........| reserved: raw bits 0x5-0x13.7 (15)
|
||||
0x010|00 00 00 00 |.... |
|
||||
0x010| 00 00 00 08 | .... | isutcnt: 8 0x14-0x17.7 (4)
|
||||
0x010| 00 00 00 08 | .... | isstdcnt: 8 0x18-0x1b.7 (4)
|
||||
0x010| 00 00 00 1b| ....| leapcnt: 27 0x1c-0x1f.7 (4)
|
||||
0x020|00 00 00 7a |...z | timecnt: 122 0x20-0x23.7 (4)
|
||||
0x020| 00 00 00 08 | .... | typecnt: 8 0x24-0x27.7 (4)
|
||||
0x020| 00 00 00 1c | .... | charcnt: 28 0x28-0x2b.7 (4)
|
||||
| | | v1datablock{}: 0x2c-0x3c1.7 (918)
|
||||
| | | transition_times[0:122]: 0x2c-0x213.7 (488)
|
||||
0x020| 80 00 00 00| ....| [0]: "1901-12-13T20:45:52Z" (-2147483648) transition_time 0x2c-0x2f.7 (4)
|
||||
0x030|9e a6 3a 90 |..:. | [1]: "1918-03-31T09:00:00Z" (-1633273200) transition_time 0x30-0x33.7 (4)
|
||||
0x030| 9f bb 07 80 | .... | [2]: "1918-10-27T08:00:00Z" (-1615132800) transition_time 0x34-0x37.7 (4)
|
||||
0x030| a0 86 1c 90 | .... | [3]: "1919-03-30T09:00:00Z" (-1601823600) transition_time 0x38-0x3b.7 (4)
|
||||
0x030| a1 9a e9 80| ....| [4]: "1919-10-26T08:00:00Z" (-1583683200) transition_time 0x3c-0x3f.7 (4)
|
||||
0x040|cb 89 0c 90 |.... | [5]: "1942-02-09T09:00:00Z" (-880210800) transition_time 0x40-0x43.7 (4)
|
||||
0x040| d2 23 f4 70 | .#.p | [6]: "1945-08-14T23:00:00Z" (-769395600) transition_time 0x44-0x47.7 (4)
|
||||
0x040| d2 61 18 00 | .a.. | [7]: "1945-09-30T08:00:00Z" (-765388800) transition_time 0x48-0x4b.7 (4)
|
||||
0x040| fa f8 75 10| ..u.| [8]: "1967-04-30T09:00:00Z" (-84380400) transition_time 0x4c-0x4f.7 (4)
|
||||
0x050|fb e8 58 00 |..X. | [9]: "1967-10-29T08:00:00Z" (-68659200) transition_time 0x50-0x53.7 (4)
|
||||
0x050| fc d8 57 10 | ..W. | [10]: "1968-04-28T09:00:00Z" (-52930800) transition_time 0x54-0x57.7 (4)
|
||||
0x050| fd c8 3a 00 | ..:. | [11]: "1968-10-27T08:00:00Z" (-37209600) transition_time 0x58-0x5b.7 (4)
|
||||
0x050| fe b8 39 10| ..9.| [12]: "1969-04-27T09:00:00Z" (-21481200) transition_time 0x5c-0x5f.7 (4)
|
||||
0x060|ff a8 1c 00 |.... | [13]: "1969-10-26T08:00:00Z" (-5760000) transition_time 0x60-0x63.7 (4)
|
||||
0x060| 00 98 1b 10 | .... | [14]: "1970-04-26T09:00:00Z" (9968400) transition_time 0x64-0x67.7 (4)
|
||||
0x060| 01 87 fe 00 | .... | [15]: "1970-10-25T08:00:00Z" (25689600) transition_time 0x68-0x6b.7 (4)
|
||||
0x060| 02 77 fd 10| .w..| [16]: "1971-04-25T09:00:00Z" (41418000) transition_time 0x6c-0x6f.7 (4)
|
||||
0x070|03 71 1a 80 |.q.. | [17]: "1971-10-31T08:00:00Z" (57744000) transition_time 0x70-0x73.7 (4)
|
||||
0x070| 04 61 19 90 | .a.. | [18]: "1972-04-30T09:00:00Z" (73472400) transition_time 0x74-0x77.7 (4)
|
||||
0x070| 05 50 fc 81 | .P.. | [19]: "1972-10-29T08:00:01Z" (89193601) transition_time 0x78-0x7b.7 (4)
|
||||
0x070| 06 40 fb 92| .@..| [20]: "1973-04-29T09:00:02Z" (104922002) transition_time 0x7c-0x7f.7 (4)
|
||||
0x080|07 30 de 82 |.0.. | [21]: "1973-10-28T08:00:02Z" (120643202) transition_time 0x80-0x83.7 (4)
|
||||
0x080| 07 8d 35 93 | ..5. | [22]: "1974-01-06T09:00:03Z" (126694803) transition_time 0x84-0x87.7 (4)
|
||||
0x080| 09 10 c0 83 | .... | [23]: "1974-10-27T08:00:03Z" (152092803) transition_time 0x88-0x8b.7 (4)
|
||||
0x080| 09 ad b1 14| ....| [24]: "1975-02-23T09:00:04Z" (162378004) transition_time 0x8c-0x8f.7 (4)
|
||||
0x090|0a f0 a2 84 |.... | [25]: "1975-10-26T08:00:04Z" (183542404) transition_time 0x90-0x93.7 (4)
|
||||
0x090| 0b e0 a1 95 | .... | [26]: "1976-04-25T09:00:05Z" (199270805) transition_time 0x94-0x97.7 (4)
|
||||
0x090| 0c d9 bf 05 | .... | [27]: "1976-10-31T08:00:05Z" (215596805) transition_time 0x98-0x9b.7 (4)
|
||||
0x090| 0d c0 83 96| ....| [28]: "1977-04-24T09:00:06Z" (230720406) transition_time 0x9c-0x9f.7 (4)
|
||||
0x0a0|0e b9 a1 06 |.... | [29]: "1977-10-30T08:00:06Z" (247046406) transition_time 0xa0-0xa3.7 (4)
|
||||
0x0a0| 0f a9 a0 17 | .... | [30]: "1978-04-30T09:00:07Z" (262774807) transition_time 0xa4-0xa7.7 (4)
|
||||
0x0a0| 10 99 83 07 | .... | [31]: "1978-10-29T08:00:07Z" (278496007) transition_time 0xa8-0xab.7 (4)
|
||||
0x0a0| 11 89 82 18| ....| [32]: "1979-04-29T09:00:08Z" (294224408) transition_time 0xac-0xaf.7 (4)
|
||||
0x0b0|12 79 65 08 |.ye. | [33]: "1979-10-28T08:00:08Z" (309945608) transition_time 0xb0-0xb3.7 (4)
|
||||
0x0b0| 13 69 64 19 | .id. | [34]: "1980-04-27T09:00:09Z" (325674009) transition_time 0xb4-0xb7.7 (4)
|
||||
0x0b0| 14 59 47 09 | .YG. | [35]: "1980-10-26T08:00:09Z" (341395209) transition_time 0xb8-0xbb.7 (4)
|
||||
0x0b0| 15 49 46 19| .IF.| [36]: "1981-04-26T09:00:09Z" (357123609) transition_time 0xbc-0xbf.7 (4)
|
||||
0x0c0|16 39 29 0a |.9). | [37]: "1981-10-25T08:00:10Z" (372844810) transition_time 0xc0-0xc3.7 (4)
|
||||
0x0c0| 17 29 28 1a | .)(. | [38]: "1982-04-25T09:00:10Z" (388573210) transition_time 0xc4-0xc7.7 (4)
|
||||
0x0c0| 18 22 45 8b | ."E. | [39]: "1982-10-31T08:00:11Z" (404899211) transition_time 0xc8-0xcb.7 (4)
|
||||
0x0c0| 19 09 0a 1b| ....| [40]: "1983-04-24T09:00:11Z" (420022811) transition_time 0xcc-0xcf.7 (4)
|
||||
0x0d0|1a 02 27 8c |..'. | [41]: "1983-10-30T08:00:12Z" (436348812) transition_time 0xd0-0xd3.7 (4)
|
||||
0x0d0| 1a f2 26 9c | ..&. | [42]: "1984-04-29T09:00:12Z" (452077212) transition_time 0xd4-0xd7.7 (4)
|
||||
0x0d0| 1b e2 09 8c | .... | [43]: "1984-10-28T08:00:12Z" (467798412) transition_time 0xd8-0xdb.7 (4)
|
||||
0x0d0| 1c d2 08 9c| ....| [44]: "1985-04-28T09:00:12Z" (483526812) transition_time 0xdc-0xdf.7 (4)
|
||||
0x0e0|1d c1 eb 8d |.... | [45]: "1985-10-27T08:00:13Z" (499248013) transition_time 0xe0-0xe3.7 (4)
|
||||
0x0e0| 1e b1 ea 9d | .... | [46]: "1986-04-27T09:00:13Z" (514976413) transition_time 0xe4-0xe7.7 (4)
|
||||
0x0e0| 1f a1 cd 8d | .... | [47]: "1986-10-26T08:00:13Z" (530697613) transition_time 0xe8-0xeb.7 (4)
|
||||
0x0e0| 20 76 1d 1d| v..| [48]: "1987-04-05T09:00:13Z" (544611613) transition_time 0xec-0xef.7 (4)
|
||||
0x0f0|21 81 af 8d |!... | [49]: "1987-10-25T08:00:13Z" (562147213) transition_time 0xf0-0xf3.7 (4)
|
||||
0x0f0| 22 55 ff 1e | "U.. | [50]: "1988-04-03T09:00:14Z" (576061214) transition_time 0xf4-0xf7.7 (4)
|
||||
0x0f0| 23 6a cc 0e | #j.. | [51]: "1988-10-30T08:00:14Z" (594201614) transition_time 0xf8-0xfb.7 (4)
|
||||
0x0f0| 24 35 e1 1e| $5..| [52]: "1989-04-02T09:00:14Z" (607510814) transition_time 0xfc-0xff.7 (4)
|
||||
0x100|25 4a ae 0e |%J.. | [53]: "1989-10-29T08:00:14Z" (625651214) transition_time 0x100-0x103.7 (4)
|
||||
0x100| 26 15 c3 1f | &... | [54]: "1990-04-01T09:00:15Z" (638960415) transition_time 0x104-0x107.7 (4)
|
||||
0x100| 27 2a 90 0f | '*.. | [55]: "1990-10-28T08:00:15Z" (657100815) transition_time 0x108-0x10b.7 (4)
|
||||
0x100| 27 fe df a0| '...| [56]: "1991-04-07T09:00:16Z" (671014816) transition_time 0x10c-0x10f.7 (4)
|
||||
0x110|29 0a 72 10 |).r. | [57]: "1991-10-27T08:00:16Z" (688550416) transition_time 0x110-0x113.7 (4)
|
||||
0x110| 29 de c1 a0 | )... | [58]: "1992-04-05T09:00:16Z" (702464416) transition_time 0x114-0x117.7 (4)
|
||||
0x110| 2a ea 54 11 | *.T. | [59]: "1992-10-25T08:00:17Z" (720000017) transition_time 0x118-0x11b.7 (4)
|
||||
0x110| 2b be a3 a1| +...| [60]: "1993-04-04T09:00:17Z" (733914017) transition_time 0x11c-0x11f.7 (4)
|
||||
0x120|2c d3 70 92 |,.p. | [61]: "1993-10-31T08:00:18Z" (752054418) transition_time 0x120-0x123.7 (4)
|
||||
0x120| 2d 9e 85 a2 | -... | [62]: "1994-04-03T09:00:18Z" (765363618) transition_time 0x124-0x127.7 (4)
|
||||
0x120| 2e b3 52 93 | ..R. | [63]: "1994-10-30T08:00:19Z" (783504019) transition_time 0x128-0x12b.7 (4)
|
||||
0x120| 2f 7e 67 a3| /~g.| [64]: "1995-04-02T09:00:19Z" (796813219) transition_time 0x12c-0x12f.7 (4)
|
||||
0x130|30 93 34 93 |0.4. | [65]: "1995-10-29T08:00:19Z" (814953619) transition_time 0x130-0x133.7 (4)
|
||||
0x130| 31 67 84 24 | 1g.$ | [66]: "1996-04-07T09:00:20Z" (828867620) transition_time 0x134-0x137.7 (4)
|
||||
0x130| 32 73 16 94 | 2s.. | [67]: "1996-10-27T08:00:20Z" (846403220) transition_time 0x138-0x13b.7 (4)
|
||||
0x130| 33 47 66 24| 3Gf$| [68]: "1997-04-06T09:00:20Z" (860317220) transition_time 0x13c-0x13f.7 (4)
|
||||
0x140|34 52 f8 95 |4R.. | [69]: "1997-10-26T08:00:21Z" (877852821) transition_time 0x140-0x143.7 (4)
|
||||
0x140| 35 27 48 25 | 5'H% | [70]: "1998-04-05T09:00:21Z" (891766821) transition_time 0x144-0x147.7 (4)
|
||||
0x140| 36 32 da 95 | 62.. | [71]: "1998-10-25T08:00:21Z" (909302421) transition_time 0x148-0x14b.7 (4)
|
||||
0x140| 37 07 2a 26| 7.*&| [72]: "1999-04-04T09:00:22Z" (923216422) transition_time 0x14c-0x14f.7 (4)
|
||||
0x150|38 1b f7 16 |8... | [73]: "1999-10-31T08:00:22Z" (941356822) transition_time 0x150-0x153.7 (4)
|
||||
0x150| 38 e7 0c 26 | 8..& | [74]: "2000-04-02T09:00:22Z" (954666022) transition_time 0x154-0x157.7 (4)
|
||||
0x150| 39 fb d9 16 | 9... | [75]: "2000-10-29T08:00:22Z" (972806422) transition_time 0x158-0x15b.7 (4)
|
||||
0x150| 3a c6 ee 26| :..&| [76]: "2001-04-01T09:00:22Z" (986115622) transition_time 0x15c-0x15f.7 (4)
|
||||
0x160|3b db bb 16 |;... | [77]: "2001-10-28T08:00:22Z" (1004256022) transition_time 0x160-0x163.7 (4)
|
||||
0x160| 3c b0 0a a6 | <... | [78]: "2002-04-07T09:00:22Z" (1018170022) transition_time 0x164-0x167.7 (4)
|
||||
0x160| 3d bb 9d 16 | =... | [79]: "2002-10-27T08:00:22Z" (1035705622) transition_time 0x168-0x16b.7 (4)
|
||||
0x160| 3e 8f ec a6| >...| [80]: "2003-04-06T09:00:22Z" (1049619622) transition_time 0x16c-0x16f.7 (4)
|
||||
0x170|3f 9b 7f 16 |?... | [81]: "2003-10-26T08:00:22Z" (1067155222) transition_time 0x170-0x173.7 (4)
|
||||
0x170| 40 6f ce a6 | @o.. | [82]: "2004-04-04T09:00:22Z" (1081069222) transition_time 0x174-0x177.7 (4)
|
||||
0x170| 41 84 9b 96 | A... | [83]: "2004-10-31T08:00:22Z" (1099209622) transition_time 0x178-0x17b.7 (4)
|
||||
0x170| 42 4f b0 a6| BO..| [84]: "2005-04-03T09:00:22Z" (1112518822) transition_time 0x17c-0x17f.7 (4)
|
||||
0x180|43 64 7d 96 |Cd}. | [85]: "2005-10-30T08:00:22Z" (1130659222) transition_time 0x180-0x183.7 (4)
|
||||
0x180| 44 2f 92 a7 | D/.. | [86]: "2006-04-02T09:00:23Z" (1143968423) transition_time 0x184-0x187.7 (4)
|
||||
0x180| 45 44 5f 97 | ED_. | [87]: "2006-10-29T08:00:23Z" (1162108823) transition_time 0x188-0x18b.7 (4)
|
||||
0x180| 45 f3 c5 27| E..'| [88]: "2007-03-11T09:00:23Z" (1173603623) transition_time 0x18c-0x18f.7 (4)
|
||||
0x190|47 2d 7c 17 |G-|. | [89]: "2007-11-04T08:00:23Z" (1194163223) transition_time 0x190-0x193.7 (4)
|
||||
0x190| 47 d3 a7 27 | G..' | [90]: "2008-03-09T09:00:23Z" (1205053223) transition_time 0x194-0x197.7 (4)
|
||||
0x190| 49 0d 5e 17 | I.^. | [91]: "2008-11-02T08:00:23Z" (1225612823) transition_time 0x198-0x19b.7 (4)
|
||||
0x190| 49 b3 89 28| I..(| [92]: "2009-03-08T09:00:24Z" (1236502824) transition_time 0x19c-0x19f.7 (4)
|
||||
0x1a0|4a ed 40 18 |J.@. | [93]: "2009-11-01T08:00:24Z" (1257062424) transition_time 0x1a0-0x1a3.7 (4)
|
||||
0x1a0| 4b 9c a5 a8 | K... | [94]: "2010-03-14T09:00:24Z" (1268557224) transition_time 0x1a4-0x1a7.7 (4)
|
||||
0x1a0| 4c d6 5c 98 | L.\. | [95]: "2010-11-07T08:00:24Z" (1289116824) transition_time 0x1a8-0x1ab.7 (4)
|
||||
0x1a0| 4d 7c 79 98| M|y.| [96]: "2011-03-13T08:00:24Z" (1300003224) transition_time 0x1ac-0x1af.7 (4)
|
||||
0x1b0|4e b6 30 88 |N.0. | [97]: "2011-11-06T07:00:24Z" (1320562824) transition_time 0x1b0-0x1b3.7 (4)
|
||||
0x1b0| 4f 5c 5b 98 | O\[. | [98]: "2012-03-11T08:00:24Z" (1331452824) transition_time 0x1b4-0x1b7.7 (4)
|
||||
0x1b0| 50 96 12 89 | P... | [99]: "2012-11-04T07:00:25Z" (1352012425) transition_time 0x1b8-0x1bb.7 (4)
|
||||
0x1b0| 51 3c 3d 99| Q<=.| [100]: "2013-03-10T08:00:25Z" (1362902425) transition_time 0x1bc-0x1bf.7 (4)
|
||||
0x1c0|52 75 f4 89 |Ru.. | [101]: "2013-11-03T07:00:25Z" (1383462025) transition_time 0x1c0-0x1c3.7 (4)
|
||||
0x1c0| 53 1c 1f 99 | S... | [102]: "2014-03-09T08:00:25Z" (1394352025) transition_time 0x1c4-0x1c7.7 (4)
|
||||
0x1c0| 54 55 d6 89 | TU.. | [103]: "2014-11-02T07:00:25Z" (1414911625) transition_time 0x1c8-0x1cb.7 (4)
|
||||
0x1c0| 54 fc 01 99| T...| [104]: "2015-03-08T08:00:25Z" (1425801625) transition_time 0x1cc-0x1cf.7 (4)
|
||||
0x1d0|56 35 b8 8a |V5.. | [105]: "2015-11-01T07:00:26Z" (1446361226) transition_time 0x1d0-0x1d3.7 (4)
|
||||
0x1d0| 56 e5 1e 1a | V... | [106]: "2016-03-13T08:00:26Z" (1457856026) transition_time 0x1d4-0x1d7.7 (4)
|
||||
0x1d0| 58 1e d5 0a | X... | [107]: "2016-11-06T07:00:26Z" (1478415626) transition_time 0x1d8-0x1db.7 (4)
|
||||
0x1d0| 58 c5 00 1b| X...| [108]: "2017-03-12T08:00:27Z" (1489305627) transition_time 0x1dc-0x1df.7 (4)
|
||||
0x1e0|59 fe b7 0b |Y... | [109]: "2017-11-05T07:00:27Z" (1509865227) transition_time 0x1e0-0x1e3.7 (4)
|
||||
0x1e0| 5a a4 e2 1b | Z... | [110]: "2018-03-11T08:00:27Z" (1520755227) transition_time 0x1e4-0x1e7.7 (4)
|
||||
0x1e0| 5b de 99 0b | [... | [111]: "2018-11-04T07:00:27Z" (1541314827) transition_time 0x1e8-0x1eb.7 (4)
|
||||
0x1e0| 5c 84 c4 1b| \...| [112]: "2019-03-10T08:00:27Z" (1552204827) transition_time 0x1ec-0x1ef.7 (4)
|
||||
0x1f0|5d be 7b 0b |].{. | [113]: "2019-11-03T07:00:27Z" (1572764427) transition_time 0x1f0-0x1f3.7 (4)
|
||||
0x1f0| 5e 64 a6 1b | ^d.. | [114]: "2020-03-08T08:00:27Z" (1583654427) transition_time 0x1f4-0x1f7.7 (4)
|
||||
0x1f0| 5f 9e 5d 0b | _.]. | [115]: "2020-11-01T07:00:27Z" (1604214027) transition_time 0x1f8-0x1fb.7 (4)
|
||||
0x1f0| 60 4d c2 9b| `M..| [116]: "2021-03-14T08:00:27Z" (1615708827) transition_time 0x1fc-0x1ff.7 (4)
|
||||
0x200|61 87 79 8b |a.y. | [117]: "2021-11-07T07:00:27Z" (1636268427) transition_time 0x200-0x203.7 (4)
|
||||
0x200| 62 2d a4 9b | b-.. | [118]: "2022-03-13T08:00:27Z" (1647158427) transition_time 0x204-0x207.7 (4)
|
||||
0x200| 63 67 5b 8b | cg[. | [119]: "2022-11-06T07:00:27Z" (1667718027) transition_time 0x208-0x20b.7 (4)
|
||||
0x200| 64 0d 86 9b| d...| [120]: "2023-03-12T08:00:27Z" (1678608027) transition_time 0x20c-0x20f.7 (4)
|
||||
0x210|64 9b 78 1b |d.x. | [121]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x210-0x213.7 (4)
|
||||
| | | transition_types[0:122]: 0x214-0x28d.7 (122)
|
||||
0x210| 05 | . | [0]: 5 transition_type 0x214-0x214.7 (1)
|
||||
0x210| 01 | . | [1]: 1 transition_type 0x215-0x215.7 (1)
|
||||
0x210| 02 | . | [2]: 2 transition_type 0x216-0x216.7 (1)
|
||||
0x210| 01 | . | [3]: 1 transition_type 0x217-0x217.7 (1)
|
||||
0x210| 02 | . | [4]: 2 transition_type 0x218-0x218.7 (1)
|
||||
0x210| 03 | . | [5]: 3 transition_type 0x219-0x219.7 (1)
|
||||
0x210| 04 | . | [6]: 4 transition_type 0x21a-0x21a.7 (1)
|
||||
0x210| 02 | . | [7]: 2 transition_type 0x21b-0x21b.7 (1)
|
||||
0x210| 01 | . | [8]: 1 transition_type 0x21c-0x21c.7 (1)
|
||||
0x210| 02 | . | [9]: 2 transition_type 0x21d-0x21d.7 (1)
|
||||
0x210| 01 | . | [10]: 1 transition_type 0x21e-0x21e.7 (1)
|
||||
0x210| 02| .| [11]: 2 transition_type 0x21f-0x21f.7 (1)
|
||||
0x220|01 |. | [12]: 1 transition_type 0x220-0x220.7 (1)
|
||||
0x220| 02 | . | [13]: 2 transition_type 0x221-0x221.7 (1)
|
||||
0x220| 01 | . | [14]: 1 transition_type 0x222-0x222.7 (1)
|
||||
0x220| 02 | . | [15]: 2 transition_type 0x223-0x223.7 (1)
|
||||
0x220| 01 | . | [16]: 1 transition_type 0x224-0x224.7 (1)
|
||||
0x220| 02 | . | [17]: 2 transition_type 0x225-0x225.7 (1)
|
||||
0x220| 01 | . | [18]: 1 transition_type 0x226-0x226.7 (1)
|
||||
0x220| 02 | . | [19]: 2 transition_type 0x227-0x227.7 (1)
|
||||
0x220| 01 | . | [20]: 1 transition_type 0x228-0x228.7 (1)
|
||||
0x220| 02 | . | [21]: 2 transition_type 0x229-0x229.7 (1)
|
||||
0x220| 01 | . | [22]: 1 transition_type 0x22a-0x22a.7 (1)
|
||||
0x220| 02 | . | [23]: 2 transition_type 0x22b-0x22b.7 (1)
|
||||
0x220| 01 | . | [24]: 1 transition_type 0x22c-0x22c.7 (1)
|
||||
0x220| 02 | . | [25]: 2 transition_type 0x22d-0x22d.7 (1)
|
||||
0x220| 01 | . | [26]: 1 transition_type 0x22e-0x22e.7 (1)
|
||||
0x220| 02| .| [27]: 2 transition_type 0x22f-0x22f.7 (1)
|
||||
0x230|01 |. | [28]: 1 transition_type 0x230-0x230.7 (1)
|
||||
0x230| 02 | . | [29]: 2 transition_type 0x231-0x231.7 (1)
|
||||
0x230| 01 | . | [30]: 1 transition_type 0x232-0x232.7 (1)
|
||||
0x230| 02 | . | [31]: 2 transition_type 0x233-0x233.7 (1)
|
||||
0x230| 01 | . | [32]: 1 transition_type 0x234-0x234.7 (1)
|
||||
0x230| 02 | . | [33]: 2 transition_type 0x235-0x235.7 (1)
|
||||
0x230| 01 | . | [34]: 1 transition_type 0x236-0x236.7 (1)
|
||||
0x230| 02 | . | [35]: 2 transition_type 0x237-0x237.7 (1)
|
||||
0x230| 01 | . | [36]: 1 transition_type 0x238-0x238.7 (1)
|
||||
0x230| 02 | . | [37]: 2 transition_type 0x239-0x239.7 (1)
|
||||
0x230| 01 | . | [38]: 1 transition_type 0x23a-0x23a.7 (1)
|
||||
0x230| 02 | . | [39]: 2 transition_type 0x23b-0x23b.7 (1)
|
||||
0x230| 01 | . | [40]: 1 transition_type 0x23c-0x23c.7 (1)
|
||||
0x230| 02 | . | [41]: 2 transition_type 0x23d-0x23d.7 (1)
|
||||
0x230| 01 | . | [42]: 1 transition_type 0x23e-0x23e.7 (1)
|
||||
0x230| 02| .| [43]: 2 transition_type 0x23f-0x23f.7 (1)
|
||||
0x240|01 |. | [44]: 1 transition_type 0x240-0x240.7 (1)
|
||||
0x240| 02 | . | [45]: 2 transition_type 0x241-0x241.7 (1)
|
||||
0x240| 01 | . | [46]: 1 transition_type 0x242-0x242.7 (1)
|
||||
0x240| 02 | . | [47]: 2 transition_type 0x243-0x243.7 (1)
|
||||
0x240| 01 | . | [48]: 1 transition_type 0x244-0x244.7 (1)
|
||||
0x240| 02 | . | [49]: 2 transition_type 0x245-0x245.7 (1)
|
||||
0x240| 01 | . | [50]: 1 transition_type 0x246-0x246.7 (1)
|
||||
0x240| 02 | . | [51]: 2 transition_type 0x247-0x247.7 (1)
|
||||
0x240| 01 | . | [52]: 1 transition_type 0x248-0x248.7 (1)
|
||||
0x240| 02 | . | [53]: 2 transition_type 0x249-0x249.7 (1)
|
||||
0x240| 01 | . | [54]: 1 transition_type 0x24a-0x24a.7 (1)
|
||||
0x240| 02 | . | [55]: 2 transition_type 0x24b-0x24b.7 (1)
|
||||
0x240| 01 | . | [56]: 1 transition_type 0x24c-0x24c.7 (1)
|
||||
0x240| 02 | . | [57]: 2 transition_type 0x24d-0x24d.7 (1)
|
||||
0x240| 01 | . | [58]: 1 transition_type 0x24e-0x24e.7 (1)
|
||||
0x240| 02| .| [59]: 2 transition_type 0x24f-0x24f.7 (1)
|
||||
0x250|01 |. | [60]: 1 transition_type 0x250-0x250.7 (1)
|
||||
0x250| 02 | . | [61]: 2 transition_type 0x251-0x251.7 (1)
|
||||
0x250| 01 | . | [62]: 1 transition_type 0x252-0x252.7 (1)
|
||||
0x250| 02 | . | [63]: 2 transition_type 0x253-0x253.7 (1)
|
||||
0x250| 01 | . | [64]: 1 transition_type 0x254-0x254.7 (1)
|
||||
0x250| 02 | . | [65]: 2 transition_type 0x255-0x255.7 (1)
|
||||
0x250| 01 | . | [66]: 1 transition_type 0x256-0x256.7 (1)
|
||||
0x250| 02 | . | [67]: 2 transition_type 0x257-0x257.7 (1)
|
||||
0x250| 01 | . | [68]: 1 transition_type 0x258-0x258.7 (1)
|
||||
0x250| 02 | . | [69]: 2 transition_type 0x259-0x259.7 (1)
|
||||
0x250| 01 | . | [70]: 1 transition_type 0x25a-0x25a.7 (1)
|
||||
0x250| 02 | . | [71]: 2 transition_type 0x25b-0x25b.7 (1)
|
||||
0x250| 01 | . | [72]: 1 transition_type 0x25c-0x25c.7 (1)
|
||||
0x250| 02 | . | [73]: 2 transition_type 0x25d-0x25d.7 (1)
|
||||
0x250| 01 | . | [74]: 1 transition_type 0x25e-0x25e.7 (1)
|
||||
0x250| 02| .| [75]: 2 transition_type 0x25f-0x25f.7 (1)
|
||||
0x260|01 |. | [76]: 1 transition_type 0x260-0x260.7 (1)
|
||||
0x260| 02 | . | [77]: 2 transition_type 0x261-0x261.7 (1)
|
||||
0x260| 01 | . | [78]: 1 transition_type 0x262-0x262.7 (1)
|
||||
0x260| 02 | . | [79]: 2 transition_type 0x263-0x263.7 (1)
|
||||
0x260| 01 | . | [80]: 1 transition_type 0x264-0x264.7 (1)
|
||||
0x260| 02 | . | [81]: 2 transition_type 0x265-0x265.7 (1)
|
||||
0x260| 01 | . | [82]: 1 transition_type 0x266-0x266.7 (1)
|
||||
0x260| 02 | . | [83]: 2 transition_type 0x267-0x267.7 (1)
|
||||
0x260| 01 | . | [84]: 1 transition_type 0x268-0x268.7 (1)
|
||||
0x260| 02 | . | [85]: 2 transition_type 0x269-0x269.7 (1)
|
||||
0x260| 01 | . | [86]: 1 transition_type 0x26a-0x26a.7 (1)
|
||||
0x260| 02 | . | [87]: 2 transition_type 0x26b-0x26b.7 (1)
|
||||
0x260| 01 | . | [88]: 1 transition_type 0x26c-0x26c.7 (1)
|
||||
0x260| 02 | . | [89]: 2 transition_type 0x26d-0x26d.7 (1)
|
||||
0x260| 01 | . | [90]: 1 transition_type 0x26e-0x26e.7 (1)
|
||||
0x260| 02| .| [91]: 2 transition_type 0x26f-0x26f.7 (1)
|
||||
0x270|01 |. | [92]: 1 transition_type 0x270-0x270.7 (1)
|
||||
0x270| 02 | . | [93]: 2 transition_type 0x271-0x271.7 (1)
|
||||
0x270| 01 | . | [94]: 1 transition_type 0x272-0x272.7 (1)
|
||||
0x270| 07 | . | [95]: 7 transition_type 0x273-0x273.7 (1)
|
||||
0x270| 06 | . | [96]: 6 transition_type 0x274-0x274.7 (1)
|
||||
0x270| 07 | . | [97]: 7 transition_type 0x275-0x275.7 (1)
|
||||
0x270| 06 | . | [98]: 6 transition_type 0x276-0x276.7 (1)
|
||||
0x270| 07 | . | [99]: 7 transition_type 0x277-0x277.7 (1)
|
||||
0x270| 06 | . | [100]: 6 transition_type 0x278-0x278.7 (1)
|
||||
0x270| 07 | . | [101]: 7 transition_type 0x279-0x279.7 (1)
|
||||
0x270| 06 | . | [102]: 6 transition_type 0x27a-0x27a.7 (1)
|
||||
0x270| 07 | . | [103]: 7 transition_type 0x27b-0x27b.7 (1)
|
||||
0x270| 06 | . | [104]: 6 transition_type 0x27c-0x27c.7 (1)
|
||||
0x270| 07 | . | [105]: 7 transition_type 0x27d-0x27d.7 (1)
|
||||
0x270| 06 | . | [106]: 6 transition_type 0x27e-0x27e.7 (1)
|
||||
0x270| 07| .| [107]: 7 transition_type 0x27f-0x27f.7 (1)
|
||||
0x280|06 |. | [108]: 6 transition_type 0x280-0x280.7 (1)
|
||||
0x280| 07 | . | [109]: 7 transition_type 0x281-0x281.7 (1)
|
||||
0x280| 06 | . | [110]: 6 transition_type 0x282-0x282.7 (1)
|
||||
0x280| 07 | . | [111]: 7 transition_type 0x283-0x283.7 (1)
|
||||
0x280| 06 | . | [112]: 6 transition_type 0x284-0x284.7 (1)
|
||||
0x280| 07 | . | [113]: 7 transition_type 0x285-0x285.7 (1)
|
||||
0x280| 06 | . | [114]: 6 transition_type 0x286-0x286.7 (1)
|
||||
0x280| 07 | . | [115]: 7 transition_type 0x287-0x287.7 (1)
|
||||
0x280| 06 | . | [116]: 6 transition_type 0x288-0x288.7 (1)
|
||||
0x280| 07 | . | [117]: 7 transition_type 0x289-0x289.7 (1)
|
||||
0x280| 06 | . | [118]: 6 transition_type 0x28a-0x28a.7 (1)
|
||||
0x280| 07 | . | [119]: 7 transition_type 0x28b-0x28b.7 (1)
|
||||
0x280| 06 | . | [120]: 6 transition_type 0x28c-0x28c.7 (1)
|
||||
0x280| 06 | . | [121]: 6 transition_type 0x28d-0x28d.7 (1)
|
||||
| | | local_time_type_records[0:8]: 0x28e-0x2bd.7 (48)
|
||||
| | | [0]{}: local_time_type 0x28e-0x293.7 (6)
|
||||
0x280| ff ff| ..| utoff: -24427 (valid) 0x28e-0x291.7 (4)
|
||||
0x290|a0 95 |.. |
|
||||
0x290| 00 | . | dst: 0 (valid) 0x292-0x292.7 (1)
|
||||
0x290| 00 | . | idx: 0 (valid) 0x293-0x293.7 (1)
|
||||
| | | [1]{}: local_time_type 0x294-0x299.7 (6)
|
||||
0x290| ff ff ab a0 | .... | utoff: -21600 (valid) 0x294-0x297.7 (4)
|
||||
0x290| 01 | . | dst: 1 (valid) 0x298-0x298.7 (1)
|
||||
0x290| 04 | . | idx: 4 (valid) 0x299-0x299.7 (1)
|
||||
| | | [2]{}: local_time_type 0x29a-0x29f.7 (6)
|
||||
0x290| ff ff 9d 90 | .... | utoff: -25200 (valid) 0x29a-0x29d.7 (4)
|
||||
0x290| 00 | . | dst: 0 (valid) 0x29e-0x29e.7 (1)
|
||||
0x290| 08| .| idx: 8 (valid) 0x29f-0x29f.7 (1)
|
||||
| | | [3]{}: local_time_type 0x2a0-0x2a5.7 (6)
|
||||
0x2a0|ff ff ab a0 |.... | utoff: -21600 (valid) 0x2a0-0x2a3.7 (4)
|
||||
0x2a0| 01 | . | dst: 1 (valid) 0x2a4-0x2a4.7 (1)
|
||||
0x2a0| 0c | . | idx: 12 (valid) 0x2a5-0x2a5.7 (1)
|
||||
| | | [4]{}: local_time_type 0x2a6-0x2ab.7 (6)
|
||||
0x2a0| ff ff ab a0 | .... | utoff: -21600 (valid) 0x2a6-0x2a9.7 (4)
|
||||
0x2a0| 01 | . | dst: 1 (valid) 0x2aa-0x2aa.7 (1)
|
||||
0x2a0| 10 | . | idx: 16 (valid) 0x2ab-0x2ab.7 (1)
|
||||
| | | [5]{}: local_time_type 0x2ac-0x2b1.7 (6)
|
||||
0x2a0| ff ff 9d 90| ....| utoff: -25200 (valid) 0x2ac-0x2af.7 (4)
|
||||
0x2b0|00 |. | dst: 0 (valid) 0x2b0-0x2b0.7 (1)
|
||||
0x2b0| 08 | . | idx: 8 (valid) 0x2b1-0x2b1.7 (1)
|
||||
| | | [6]{}: local_time_type 0x2b2-0x2b7.7 (6)
|
||||
0x2b0| ff ff b9 b0 | .... | utoff: -18000 (valid) 0x2b2-0x2b5.7 (4)
|
||||
0x2b0| 01 | . | dst: 1 (valid) 0x2b6-0x2b6.7 (1)
|
||||
0x2b0| 14 | . | idx: 20 (valid) 0x2b7-0x2b7.7 (1)
|
||||
| | | [7]{}: local_time_type 0x2b8-0x2bd.7 (6)
|
||||
0x2b0| ff ff ab a0 | .... | utoff: -21600 (valid) 0x2b8-0x2bb.7 (4)
|
||||
0x2b0| 00 | . | dst: 0 (valid) 0x2bc-0x2bc.7 (1)
|
||||
0x2b0| 18 | . | idx: 24 (valid) 0x2bd-0x2bd.7 (1)
|
||||
| | | time_zone_designations[0:7]: 0x2be-0x2d9.7 (28)
|
||||
0x2b0| 4c 4d| LM| [0]: "LMT" time_zone_designation 0x2be-0x2c1.7 (4)
|
||||
0x2c0|54 00 |T. |
|
||||
0x2c0| 4d 44 54 00 | MDT. | [1]: "MDT" time_zone_designation 0x2c2-0x2c5.7 (4)
|
||||
0x2c0| 4d 53 54 00 | MST. | [2]: "MST" time_zone_designation 0x2c6-0x2c9.7 (4)
|
||||
0x2c0| 4d 57 54 00 | MWT. | [3]: "MWT" time_zone_designation 0x2ca-0x2cd.7 (4)
|
||||
0x2c0| 4d 50| MP| [4]: "MPT" time_zone_designation 0x2ce-0x2d1.7 (4)
|
||||
0x2d0|54 00 |T. |
|
||||
0x2d0| 43 44 54 00 | CDT. | [5]: "CDT" time_zone_designation 0x2d2-0x2d5.7 (4)
|
||||
0x2d0| 43 53 54 00 | CST. | [6]: "CST" time_zone_designation 0x2d6-0x2d9.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x2da-0x3b1.7 (216)
|
||||
| | | [0]{}: leap_second_record 0x2da-0x2e1.7 (8)
|
||||
0x2d0| 04 b2 58 00 | ..X. | occur: "1972-07-01T00:00:00Z" (78796800) 0x2da-0x2dd.7 (4)
|
||||
0x2d0| 00 00| ..| corr: 1 0x2de-0x2e1.7 (4)
|
||||
0x2e0|00 01 |.. |
|
||||
| | | [1]{}: leap_second_record 0x2e2-0x2e9.7 (8)
|
||||
0x2e0| 05 a4 ec 01 | .... | occur: "1973-01-01T00:00:01Z" (94694401) 0x2e2-0x2e5.7 (4)
|
||||
0x2e0| 00 00 00 02 | .... | corr: 2 0x2e6-0x2e9.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x2ea-0x2f1.7 (8)
|
||||
0x2e0| 07 86 1f 82 | .... | occur: "1974-01-01T00:00:02Z" (126230402) 0x2ea-0x2ed.7 (4)
|
||||
0x2e0| 00 00| ..| corr: 3 0x2ee-0x2f1.7 (4)
|
||||
0x2f0|00 03 |.. |
|
||||
| | | [3]{}: leap_second_record 0x2f2-0x2f9.7 (8)
|
||||
0x2f0| 09 67 53 03 | .gS. | occur: "1975-01-01T00:00:03Z" (157766403) 0x2f2-0x2f5.7 (4)
|
||||
0x2f0| 00 00 00 04 | .... | corr: 4 0x2f6-0x2f9.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x2fa-0x301.7 (8)
|
||||
0x2f0| 0b 48 86 84 | .H.. | occur: "1976-01-01T00:00:04Z" (189302404) 0x2fa-0x2fd.7 (4)
|
||||
0x2f0| 00 00| ..| corr: 5 0x2fe-0x301.7 (4)
|
||||
0x300|00 05 |.. |
|
||||
| | | [5]{}: leap_second_record 0x302-0x309.7 (8)
|
||||
0x300| 0d 2b 0b 85 | .+.. | occur: "1977-01-01T00:00:05Z" (220924805) 0x302-0x305.7 (4)
|
||||
0x300| 00 00 00 06 | .... | corr: 6 0x306-0x309.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x30a-0x311.7 (8)
|
||||
0x300| 0f 0c 3f 06 | ..?. | occur: "1978-01-01T00:00:06Z" (252460806) 0x30a-0x30d.7 (4)
|
||||
0x300| 00 00| ..| corr: 7 0x30e-0x311.7 (4)
|
||||
0x310|00 07 |.. |
|
||||
| | | [7]{}: leap_second_record 0x312-0x319.7 (8)
|
||||
0x310| 10 ed 72 87 | ..r. | occur: "1979-01-01T00:00:07Z" (283996807) 0x312-0x315.7 (4)
|
||||
0x310| 00 00 00 08 | .... | corr: 8 0x316-0x319.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x31a-0x321.7 (8)
|
||||
0x310| 12 ce a6 08 | .... | occur: "1980-01-01T00:00:08Z" (315532808) 0x31a-0x31d.7 (4)
|
||||
0x310| 00 00| ..| corr: 9 0x31e-0x321.7 (4)
|
||||
0x320|00 09 |.. |
|
||||
| | | [9]{}: leap_second_record 0x322-0x329.7 (8)
|
||||
0x320| 15 9f ca 89 | .... | occur: "1981-07-01T00:00:09Z" (362793609) 0x322-0x325.7 (4)
|
||||
0x320| 00 00 00 0a | .... | corr: 10 0x326-0x329.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x32a-0x331.7 (8)
|
||||
0x320| 17 80 fe 0a | .... | occur: "1982-07-01T00:00:10Z" (394329610) 0x32a-0x32d.7 (4)
|
||||
0x320| 00 00| ..| corr: 11 0x32e-0x331.7 (4)
|
||||
0x330|00 0b |.. |
|
||||
| | | [11]{}: leap_second_record 0x332-0x339.7 (8)
|
||||
0x330| 19 62 31 8b | .b1. | occur: "1983-07-01T00:00:11Z" (425865611) 0x332-0x335.7 (4)
|
||||
0x330| 00 00 00 0c | .... | corr: 12 0x336-0x339.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x33a-0x341.7 (8)
|
||||
0x330| 1d 25 ea 0c | .%.. | occur: "1985-07-01T00:00:12Z" (489024012) 0x33a-0x33d.7 (4)
|
||||
0x330| 00 00| ..| corr: 13 0x33e-0x341.7 (4)
|
||||
0x340|00 0d |.. |
|
||||
| | | [13]{}: leap_second_record 0x342-0x349.7 (8)
|
||||
0x340| 21 da e5 0d | !... | occur: "1988-01-01T00:00:13Z" (567993613) 0x342-0x345.7 (4)
|
||||
0x340| 00 00 00 0e | .... | corr: 14 0x346-0x349.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x34a-0x351.7 (8)
|
||||
0x340| 25 9e 9d 8e | %... | occur: "1990-01-01T00:00:14Z" (631152014) 0x34a-0x34d.7 (4)
|
||||
0x340| 00 00| ..| corr: 15 0x34e-0x351.7 (4)
|
||||
0x350|00 0f |.. |
|
||||
| | | [15]{}: leap_second_record 0x352-0x359.7 (8)
|
||||
0x350| 27 7f d1 0f | '... | occur: "1991-01-01T00:00:15Z" (662688015) 0x352-0x355.7 (4)
|
||||
0x350| 00 00 00 10 | .... | corr: 16 0x356-0x359.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x35a-0x361.7 (8)
|
||||
0x350| 2a 50 f5 90 | *P.. | occur: "1992-07-01T00:00:16Z" (709948816) 0x35a-0x35d.7 (4)
|
||||
0x350| 00 00| ..| corr: 17 0x35e-0x361.7 (4)
|
||||
0x360|00 11 |.. |
|
||||
| | | [17]{}: leap_second_record 0x362-0x369.7 (8)
|
||||
0x360| 2c 32 29 11 | ,2). | occur: "1993-07-01T00:00:17Z" (741484817) 0x362-0x365.7 (4)
|
||||
0x360| 00 00 00 12 | .... | corr: 18 0x366-0x369.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x36a-0x371.7 (8)
|
||||
0x360| 2e 13 5c 92 | ..\. | occur: "1994-07-01T00:00:18Z" (773020818) 0x36a-0x36d.7 (4)
|
||||
0x360| 00 00| ..| corr: 19 0x36e-0x371.7 (4)
|
||||
0x370|00 13 |.. |
|
||||
| | | [19]{}: leap_second_record 0x372-0x379.7 (8)
|
||||
0x370| 30 e7 24 13 | 0.$. | occur: "1996-01-01T00:00:19Z" (820454419) 0x372-0x375.7 (4)
|
||||
0x370| 00 00 00 14 | .... | corr: 20 0x376-0x379.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x37a-0x381.7 (8)
|
||||
0x370| 33 b8 48 94 | 3.H. | occur: "1997-07-01T00:00:20Z" (867715220) 0x37a-0x37d.7 (4)
|
||||
0x370| 00 00| ..| corr: 21 0x37e-0x381.7 (4)
|
||||
0x380|00 15 |.. |
|
||||
| | | [21]{}: leap_second_record 0x382-0x389.7 (8)
|
||||
0x380| 36 8c 10 15 | 6... | occur: "1999-01-01T00:00:21Z" (915148821) 0x382-0x385.7 (4)
|
||||
0x380| 00 00 00 16 | .... | corr: 22 0x386-0x389.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x38a-0x391.7 (8)
|
||||
0x380| 43 b7 1b 96 | C... | occur: "2006-01-01T00:00:22Z" (1136073622) 0x38a-0x38d.7 (4)
|
||||
0x380| 00 00| ..| corr: 23 0x38e-0x391.7 (4)
|
||||
0x390|00 17 |.. |
|
||||
| | | [23]{}: leap_second_record 0x392-0x399.7 (8)
|
||||
0x390| 49 5c 07 97 | I\.. | occur: "2009-01-01T00:00:23Z" (1230768023) 0x392-0x395.7 (4)
|
||||
0x390| 00 00 00 18 | .... | corr: 24 0x396-0x399.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x39a-0x3a1.7 (8)
|
||||
0x390| 4f ef 93 18 | O... | occur: "2012-07-01T00:00:24Z" (1341100824) 0x39a-0x39d.7 (4)
|
||||
0x390| 00 00| ..| corr: 25 0x39e-0x3a1.7 (4)
|
||||
0x3a0|00 19 |.. |
|
||||
| | | [25]{}: leap_second_record 0x3a2-0x3a9.7 (8)
|
||||
0x3a0| 55 93 2d 99 | U.-. | occur: "2015-07-01T00:00:25Z" (1435708825) 0x3a2-0x3a5.7 (4)
|
||||
0x3a0| 00 00 00 1a | .... | corr: 26 0x3a6-0x3a9.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x3aa-0x3b1.7 (8)
|
||||
0x3a0| 58 68 46 9a | XhF. | occur: "2017-01-01T00:00:26Z" (1483228826) 0x3aa-0x3ad.7 (4)
|
||||
0x3a0| 00 00| ..| corr: 27 0x3ae-0x3b1.7 (4)
|
||||
0x3b0|00 1b |.. |
|
||||
| | | standard_wall_indicators[0:8]: 0x3b2-0x3b9.7 (8)
|
||||
0x3b0| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x3b2-0x3b2.7 (1)
|
||||
0x3b0| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x3b3-0x3b3.7 (1)
|
||||
0x3b0| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x3b4-0x3b4.7 (1)
|
||||
0x3b0| 00 | . | [3]: 0 standard_wall_indicator (valid) 0x3b5-0x3b5.7 (1)
|
||||
0x3b0| 01 | . | [4]: 1 standard_wall_indicator (valid) 0x3b6-0x3b6.7 (1)
|
||||
0x3b0| 01 | . | [5]: 1 standard_wall_indicator (valid) 0x3b7-0x3b7.7 (1)
|
||||
0x3b0| 00 | . | [6]: 0 standard_wall_indicator (valid) 0x3b8-0x3b8.7 (1)
|
||||
0x3b0| 00 | . | [7]: 0 standard_wall_indicator (valid) 0x3b9-0x3b9.7 (1)
|
||||
| | | ut_local_indicators[0:8]: 0x3ba-0x3c1.7 (8)
|
||||
0x3b0| 00 | . | [0]: 0 ut_local_indicator (valid) 0x3ba-0x3ba.7 (1)
|
||||
0x3b0| 00 | . | [1]: 0 ut_local_indicator (valid) 0x3bb-0x3bb.7 (1)
|
||||
0x3b0| 00 | . | [2]: 0 ut_local_indicator (valid) 0x3bc-0x3bc.7 (1)
|
||||
0x3b0| 00 | . | [3]: 0 ut_local_indicator (valid) 0x3bd-0x3bd.7 (1)
|
||||
0x3b0| 01 | . | [4]: 1 ut_local_indicator (valid) 0x3be-0x3be.7 (1)
|
||||
0x3b0| 01| .| [5]: 1 ut_local_indicator (valid) 0x3bf-0x3bf.7 (1)
|
||||
0x3c0|00 |. | [6]: 0 ut_local_indicator (valid) 0x3c0-0x3c0.7 (1)
|
||||
0x3c0| 00 | . | [7]: 0 ut_local_indicator (valid) 0x3c1-0x3c1.7 (1)
|
||||
| | | v2plusheader{}: 0x3c2-0x3ed.7 (44)
|
||||
0x3c0| 54 5a 69 66 | TZif | magic: 0x545a6966 (valid) 0x3c2-0x3c5.7 (4)
|
||||
0x3c0| 32 | 2 | ver: "2" (0x32) (valid) 0x3c6-0x3c6.7 (1)
|
||||
0x3c0| 00 00 00 00 00 00 00 00 00| .........| reserved: raw bits 0x3c7-0x3d5.7 (15)
|
||||
0x3d0|00 00 00 00 00 00 |...... |
|
||||
0x3d0| 00 00 00 08 | .... | isutcnt: 8 0x3d6-0x3d9.7 (4)
|
||||
0x3d0| 00 00 00 08 | .... | isstdcnt: 8 0x3da-0x3dd.7 (4)
|
||||
0x3d0| 00 00| ..| leapcnt: 27 0x3de-0x3e1.7 (4)
|
||||
0x3e0|00 1b |.. |
|
||||
0x3e0| 00 00 00 7a | ...z | timecnt: 122 0x3e2-0x3e5.7 (4)
|
||||
0x3e0| 00 00 00 08 | .... | typecnt: 8 0x3e6-0x3e9.7 (4)
|
||||
0x3e0| 00 00 00 1c | .... | charcnt: 28 0x3ea-0x3ed.7 (4)
|
||||
| | | v2plusdatablock{}: 0x3ee-0x9d7.7 (1514)
|
||||
| | | transition_times[0:122]: 0x3ee-0x7bd.7 (976)
|
||||
0x3e0| ff ff| ..| [0]: "1883-11-18T19:00:00Z" (-2717643600) transition_time 0x3ee-0x3f5.7 (8)
|
||||
0x3f0|ff ff 5e 04 0c b0 |..^... |
|
||||
0x3f0| ff ff ff ff 9e a6 3a 90 | ......:. | [1]: "1918-03-31T09:00:00Z" (-1633273200) transition_time 0x3f6-0x3fd.7 (8)
|
||||
0x3f0| ff ff| ..| [2]: "1918-10-27T08:00:00Z" (-1615132800) transition_time 0x3fe-0x405.7 (8)
|
||||
0x400|ff ff 9f bb 07 80 |...... |
|
||||
0x400| ff ff ff ff a0 86 1c 90 | ........ | [3]: "1919-03-30T09:00:00Z" (-1601823600) transition_time 0x406-0x40d.7 (8)
|
||||
0x400| ff ff| ..| [4]: "1919-10-26T08:00:00Z" (-1583683200) transition_time 0x40e-0x415.7 (8)
|
||||
0x410|ff ff a1 9a e9 80 |...... |
|
||||
0x410| ff ff ff ff cb 89 0c 90 | ........ | [5]: "1942-02-09T09:00:00Z" (-880210800) transition_time 0x416-0x41d.7 (8)
|
||||
0x410| ff ff| ..| [6]: "1945-08-14T23:00:00Z" (-769395600) transition_time 0x41e-0x425.7 (8)
|
||||
0x420|ff ff d2 23 f4 70 |...#.p |
|
||||
0x420| ff ff ff ff d2 61 18 00 | .....a.. | [7]: "1945-09-30T08:00:00Z" (-765388800) transition_time 0x426-0x42d.7 (8)
|
||||
0x420| ff ff| ..| [8]: "1967-04-30T09:00:00Z" (-84380400) transition_time 0x42e-0x435.7 (8)
|
||||
0x430|ff ff fa f8 75 10 |....u. |
|
||||
0x430| ff ff ff ff fb e8 58 00 | ......X. | [9]: "1967-10-29T08:00:00Z" (-68659200) transition_time 0x436-0x43d.7 (8)
|
||||
0x430| ff ff| ..| [10]: "1968-04-28T09:00:00Z" (-52930800) transition_time 0x43e-0x445.7 (8)
|
||||
0x440|ff ff fc d8 57 10 |....W. |
|
||||
0x440| ff ff ff ff fd c8 3a 00 | ......:. | [11]: "1968-10-27T08:00:00Z" (-37209600) transition_time 0x446-0x44d.7 (8)
|
||||
0x440| ff ff| ..| [12]: "1969-04-27T09:00:00Z" (-21481200) transition_time 0x44e-0x455.7 (8)
|
||||
0x450|ff ff fe b8 39 10 |....9. |
|
||||
0x450| ff ff ff ff ff a8 1c 00 | ........ | [13]: "1969-10-26T08:00:00Z" (-5760000) transition_time 0x456-0x45d.7 (8)
|
||||
0x450| 00 00| ..| [14]: "1970-04-26T09:00:00Z" (9968400) transition_time 0x45e-0x465.7 (8)
|
||||
0x460|00 00 00 98 1b 10 |...... |
|
||||
0x460| 00 00 00 00 01 87 fe 00 | ........ | [15]: "1970-10-25T08:00:00Z" (25689600) transition_time 0x466-0x46d.7 (8)
|
||||
0x460| 00 00| ..| [16]: "1971-04-25T09:00:00Z" (41418000) transition_time 0x46e-0x475.7 (8)
|
||||
0x470|00 00 02 77 fd 10 |...w.. |
|
||||
0x470| 00 00 00 00 03 71 1a 80 | .....q.. | [17]: "1971-10-31T08:00:00Z" (57744000) transition_time 0x476-0x47d.7 (8)
|
||||
0x470| 00 00| ..| [18]: "1972-04-30T09:00:00Z" (73472400) transition_time 0x47e-0x485.7 (8)
|
||||
0x480|00 00 04 61 19 90 |...a.. |
|
||||
0x480| 00 00 00 00 05 50 fc 81 | .....P.. | [19]: "1972-10-29T08:00:01Z" (89193601) transition_time 0x486-0x48d.7 (8)
|
||||
0x480| 00 00| ..| [20]: "1973-04-29T09:00:02Z" (104922002) transition_time 0x48e-0x495.7 (8)
|
||||
0x490|00 00 06 40 fb 92 |...@.. |
|
||||
0x490| 00 00 00 00 07 30 de 82 | .....0.. | [21]: "1973-10-28T08:00:02Z" (120643202) transition_time 0x496-0x49d.7 (8)
|
||||
0x490| 00 00| ..| [22]: "1974-01-06T09:00:03Z" (126694803) transition_time 0x49e-0x4a5.7 (8)
|
||||
0x4a0|00 00 07 8d 35 93 |....5. |
|
||||
0x4a0| 00 00 00 00 09 10 c0 83 | ........ | [23]: "1974-10-27T08:00:03Z" (152092803) transition_time 0x4a6-0x4ad.7 (8)
|
||||
0x4a0| 00 00| ..| [24]: "1975-02-23T09:00:04Z" (162378004) transition_time 0x4ae-0x4b5.7 (8)
|
||||
0x4b0|00 00 09 ad b1 14 |...... |
|
||||
0x4b0| 00 00 00 00 0a f0 a2 84 | ........ | [25]: "1975-10-26T08:00:04Z" (183542404) transition_time 0x4b6-0x4bd.7 (8)
|
||||
0x4b0| 00 00| ..| [26]: "1976-04-25T09:00:05Z" (199270805) transition_time 0x4be-0x4c5.7 (8)
|
||||
0x4c0|00 00 0b e0 a1 95 |...... |
|
||||
0x4c0| 00 00 00 00 0c d9 bf 05 | ........ | [27]: "1976-10-31T08:00:05Z" (215596805) transition_time 0x4c6-0x4cd.7 (8)
|
||||
0x4c0| 00 00| ..| [28]: "1977-04-24T09:00:06Z" (230720406) transition_time 0x4ce-0x4d5.7 (8)
|
||||
0x4d0|00 00 0d c0 83 96 |...... |
|
||||
0x4d0| 00 00 00 00 0e b9 a1 06 | ........ | [29]: "1977-10-30T08:00:06Z" (247046406) transition_time 0x4d6-0x4dd.7 (8)
|
||||
0x4d0| 00 00| ..| [30]: "1978-04-30T09:00:07Z" (262774807) transition_time 0x4de-0x4e5.7 (8)
|
||||
0x4e0|00 00 0f a9 a0 17 |...... |
|
||||
0x4e0| 00 00 00 00 10 99 83 07 | ........ | [31]: "1978-10-29T08:00:07Z" (278496007) transition_time 0x4e6-0x4ed.7 (8)
|
||||
0x4e0| 00 00| ..| [32]: "1979-04-29T09:00:08Z" (294224408) transition_time 0x4ee-0x4f5.7 (8)
|
||||
0x4f0|00 00 11 89 82 18 |...... |
|
||||
0x4f0| 00 00 00 00 12 79 65 08 | .....ye. | [33]: "1979-10-28T08:00:08Z" (309945608) transition_time 0x4f6-0x4fd.7 (8)
|
||||
0x4f0| 00 00| ..| [34]: "1980-04-27T09:00:09Z" (325674009) transition_time 0x4fe-0x505.7 (8)
|
||||
0x500|00 00 13 69 64 19 |...id. |
|
||||
0x500| 00 00 00 00 14 59 47 09 | .....YG. | [35]: "1980-10-26T08:00:09Z" (341395209) transition_time 0x506-0x50d.7 (8)
|
||||
0x500| 00 00| ..| [36]: "1981-04-26T09:00:09Z" (357123609) transition_time 0x50e-0x515.7 (8)
|
||||
0x510|00 00 15 49 46 19 |...IF. |
|
||||
0x510| 00 00 00 00 16 39 29 0a | .....9). | [37]: "1981-10-25T08:00:10Z" (372844810) transition_time 0x516-0x51d.7 (8)
|
||||
0x510| 00 00| ..| [38]: "1982-04-25T09:00:10Z" (388573210) transition_time 0x51e-0x525.7 (8)
|
||||
0x520|00 00 17 29 28 1a |...)(. |
|
||||
0x520| 00 00 00 00 18 22 45 8b | ....."E. | [39]: "1982-10-31T08:00:11Z" (404899211) transition_time 0x526-0x52d.7 (8)
|
||||
0x520| 00 00| ..| [40]: "1983-04-24T09:00:11Z" (420022811) transition_time 0x52e-0x535.7 (8)
|
||||
0x530|00 00 19 09 0a 1b |...... |
|
||||
0x530| 00 00 00 00 1a 02 27 8c | ......'. | [41]: "1983-10-30T08:00:12Z" (436348812) transition_time 0x536-0x53d.7 (8)
|
||||
0x530| 00 00| ..| [42]: "1984-04-29T09:00:12Z" (452077212) transition_time 0x53e-0x545.7 (8)
|
||||
0x540|00 00 1a f2 26 9c |....&. |
|
||||
0x540| 00 00 00 00 1b e2 09 8c | ........ | [43]: "1984-10-28T08:00:12Z" (467798412) transition_time 0x546-0x54d.7 (8)
|
||||
0x540| 00 00| ..| [44]: "1985-04-28T09:00:12Z" (483526812) transition_time 0x54e-0x555.7 (8)
|
||||
0x550|00 00 1c d2 08 9c |...... |
|
||||
0x550| 00 00 00 00 1d c1 eb 8d | ........ | [45]: "1985-10-27T08:00:13Z" (499248013) transition_time 0x556-0x55d.7 (8)
|
||||
0x550| 00 00| ..| [46]: "1986-04-27T09:00:13Z" (514976413) transition_time 0x55e-0x565.7 (8)
|
||||
0x560|00 00 1e b1 ea 9d |...... |
|
||||
0x560| 00 00 00 00 1f a1 cd 8d | ........ | [47]: "1986-10-26T08:00:13Z" (530697613) transition_time 0x566-0x56d.7 (8)
|
||||
0x560| 00 00| ..| [48]: "1987-04-05T09:00:13Z" (544611613) transition_time 0x56e-0x575.7 (8)
|
||||
0x570|00 00 20 76 1d 1d |.. v.. |
|
||||
0x570| 00 00 00 00 21 81 af 8d | ....!... | [49]: "1987-10-25T08:00:13Z" (562147213) transition_time 0x576-0x57d.7 (8)
|
||||
0x570| 00 00| ..| [50]: "1988-04-03T09:00:14Z" (576061214) transition_time 0x57e-0x585.7 (8)
|
||||
0x580|00 00 22 55 ff 1e |.."U.. |
|
||||
0x580| 00 00 00 00 23 6a cc 0e | ....#j.. | [51]: "1988-10-30T08:00:14Z" (594201614) transition_time 0x586-0x58d.7 (8)
|
||||
0x580| 00 00| ..| [52]: "1989-04-02T09:00:14Z" (607510814) transition_time 0x58e-0x595.7 (8)
|
||||
0x590|00 00 24 35 e1 1e |..$5.. |
|
||||
0x590| 00 00 00 00 25 4a ae 0e | ....%J.. | [53]: "1989-10-29T08:00:14Z" (625651214) transition_time 0x596-0x59d.7 (8)
|
||||
0x590| 00 00| ..| [54]: "1990-04-01T09:00:15Z" (638960415) transition_time 0x59e-0x5a5.7 (8)
|
||||
0x5a0|00 00 26 15 c3 1f |..&... |
|
||||
0x5a0| 00 00 00 00 27 2a 90 0f | ....'*.. | [55]: "1990-10-28T08:00:15Z" (657100815) transition_time 0x5a6-0x5ad.7 (8)
|
||||
0x5a0| 00 00| ..| [56]: "1991-04-07T09:00:16Z" (671014816) transition_time 0x5ae-0x5b5.7 (8)
|
||||
0x5b0|00 00 27 fe df a0 |..'... |
|
||||
0x5b0| 00 00 00 00 29 0a 72 10 | ....).r. | [57]: "1991-10-27T08:00:16Z" (688550416) transition_time 0x5b6-0x5bd.7 (8)
|
||||
0x5b0| 00 00| ..| [58]: "1992-04-05T09:00:16Z" (702464416) transition_time 0x5be-0x5c5.7 (8)
|
||||
0x5c0|00 00 29 de c1 a0 |..)... |
|
||||
0x5c0| 00 00 00 00 2a ea 54 11 | ....*.T. | [59]: "1992-10-25T08:00:17Z" (720000017) transition_time 0x5c6-0x5cd.7 (8)
|
||||
0x5c0| 00 00| ..| [60]: "1993-04-04T09:00:17Z" (733914017) transition_time 0x5ce-0x5d5.7 (8)
|
||||
0x5d0|00 00 2b be a3 a1 |..+... |
|
||||
0x5d0| 00 00 00 00 2c d3 70 92 | ....,.p. | [61]: "1993-10-31T08:00:18Z" (752054418) transition_time 0x5d6-0x5dd.7 (8)
|
||||
0x5d0| 00 00| ..| [62]: "1994-04-03T09:00:18Z" (765363618) transition_time 0x5de-0x5e5.7 (8)
|
||||
0x5e0|00 00 2d 9e 85 a2 |..-... |
|
||||
0x5e0| 00 00 00 00 2e b3 52 93 | ......R. | [63]: "1994-10-30T08:00:19Z" (783504019) transition_time 0x5e6-0x5ed.7 (8)
|
||||
0x5e0| 00 00| ..| [64]: "1995-04-02T09:00:19Z" (796813219) transition_time 0x5ee-0x5f5.7 (8)
|
||||
0x5f0|00 00 2f 7e 67 a3 |../~g. |
|
||||
0x5f0| 00 00 00 00 30 93 34 93 | ....0.4. | [65]: "1995-10-29T08:00:19Z" (814953619) transition_time 0x5f6-0x5fd.7 (8)
|
||||
0x5f0| 00 00| ..| [66]: "1996-04-07T09:00:20Z" (828867620) transition_time 0x5fe-0x605.7 (8)
|
||||
0x600|00 00 31 67 84 24 |..1g.$ |
|
||||
0x600| 00 00 00 00 32 73 16 94 | ....2s.. | [67]: "1996-10-27T08:00:20Z" (846403220) transition_time 0x606-0x60d.7 (8)
|
||||
0x600| 00 00| ..| [68]: "1997-04-06T09:00:20Z" (860317220) transition_time 0x60e-0x615.7 (8)
|
||||
0x610|00 00 33 47 66 24 |..3Gf$ |
|
||||
0x610| 00 00 00 00 34 52 f8 95 | ....4R.. | [69]: "1997-10-26T08:00:21Z" (877852821) transition_time 0x616-0x61d.7 (8)
|
||||
0x610| 00 00| ..| [70]: "1998-04-05T09:00:21Z" (891766821) transition_time 0x61e-0x625.7 (8)
|
||||
0x620|00 00 35 27 48 25 |..5'H% |
|
||||
0x620| 00 00 00 00 36 32 da 95 | ....62.. | [71]: "1998-10-25T08:00:21Z" (909302421) transition_time 0x626-0x62d.7 (8)
|
||||
0x620| 00 00| ..| [72]: "1999-04-04T09:00:22Z" (923216422) transition_time 0x62e-0x635.7 (8)
|
||||
0x630|00 00 37 07 2a 26 |..7.*& |
|
||||
0x630| 00 00 00 00 38 1b f7 16 | ....8... | [73]: "1999-10-31T08:00:22Z" (941356822) transition_time 0x636-0x63d.7 (8)
|
||||
0x630| 00 00| ..| [74]: "2000-04-02T09:00:22Z" (954666022) transition_time 0x63e-0x645.7 (8)
|
||||
0x640|00 00 38 e7 0c 26 |..8..& |
|
||||
0x640| 00 00 00 00 39 fb d9 16 | ....9... | [75]: "2000-10-29T08:00:22Z" (972806422) transition_time 0x646-0x64d.7 (8)
|
||||
0x640| 00 00| ..| [76]: "2001-04-01T09:00:22Z" (986115622) transition_time 0x64e-0x655.7 (8)
|
||||
0x650|00 00 3a c6 ee 26 |..:..& |
|
||||
0x650| 00 00 00 00 3b db bb 16 | ....;... | [77]: "2001-10-28T08:00:22Z" (1004256022) transition_time 0x656-0x65d.7 (8)
|
||||
0x650| 00 00| ..| [78]: "2002-04-07T09:00:22Z" (1018170022) transition_time 0x65e-0x665.7 (8)
|
||||
0x660|00 00 3c b0 0a a6 |..<... |
|
||||
0x660| 00 00 00 00 3d bb 9d 16 | ....=... | [79]: "2002-10-27T08:00:22Z" (1035705622) transition_time 0x666-0x66d.7 (8)
|
||||
0x660| 00 00| ..| [80]: "2003-04-06T09:00:22Z" (1049619622) transition_time 0x66e-0x675.7 (8)
|
||||
0x670|00 00 3e 8f ec a6 |..>... |
|
||||
0x670| 00 00 00 00 3f 9b 7f 16 | ....?... | [81]: "2003-10-26T08:00:22Z" (1067155222) transition_time 0x676-0x67d.7 (8)
|
||||
0x670| 00 00| ..| [82]: "2004-04-04T09:00:22Z" (1081069222) transition_time 0x67e-0x685.7 (8)
|
||||
0x680|00 00 40 6f ce a6 |..@o.. |
|
||||
0x680| 00 00 00 00 41 84 9b 96 | ....A... | [83]: "2004-10-31T08:00:22Z" (1099209622) transition_time 0x686-0x68d.7 (8)
|
||||
0x680| 00 00| ..| [84]: "2005-04-03T09:00:22Z" (1112518822) transition_time 0x68e-0x695.7 (8)
|
||||
0x690|00 00 42 4f b0 a6 |..BO.. |
|
||||
0x690| 00 00 00 00 43 64 7d 96 | ....Cd}. | [85]: "2005-10-30T08:00:22Z" (1130659222) transition_time 0x696-0x69d.7 (8)
|
||||
0x690| 00 00| ..| [86]: "2006-04-02T09:00:23Z" (1143968423) transition_time 0x69e-0x6a5.7 (8)
|
||||
0x6a0|00 00 44 2f 92 a7 |..D/.. |
|
||||
0x6a0| 00 00 00 00 45 44 5f 97 | ....ED_. | [87]: "2006-10-29T08:00:23Z" (1162108823) transition_time 0x6a6-0x6ad.7 (8)
|
||||
0x6a0| 00 00| ..| [88]: "2007-03-11T09:00:23Z" (1173603623) transition_time 0x6ae-0x6b5.7 (8)
|
||||
0x6b0|00 00 45 f3 c5 27 |..E..' |
|
||||
0x6b0| 00 00 00 00 47 2d 7c 17 | ....G-|. | [89]: "2007-11-04T08:00:23Z" (1194163223) transition_time 0x6b6-0x6bd.7 (8)
|
||||
0x6b0| 00 00| ..| [90]: "2008-03-09T09:00:23Z" (1205053223) transition_time 0x6be-0x6c5.7 (8)
|
||||
0x6c0|00 00 47 d3 a7 27 |..G..' |
|
||||
0x6c0| 00 00 00 00 49 0d 5e 17 | ....I.^. | [91]: "2008-11-02T08:00:23Z" (1225612823) transition_time 0x6c6-0x6cd.7 (8)
|
||||
0x6c0| 00 00| ..| [92]: "2009-03-08T09:00:24Z" (1236502824) transition_time 0x6ce-0x6d5.7 (8)
|
||||
0x6d0|00 00 49 b3 89 28 |..I..( |
|
||||
0x6d0| 00 00 00 00 4a ed 40 18 | ....J.@. | [93]: "2009-11-01T08:00:24Z" (1257062424) transition_time 0x6d6-0x6dd.7 (8)
|
||||
0x6d0| 00 00| ..| [94]: "2010-03-14T09:00:24Z" (1268557224) transition_time 0x6de-0x6e5.7 (8)
|
||||
0x6e0|00 00 4b 9c a5 a8 |..K... |
|
||||
0x6e0| 00 00 00 00 4c d6 5c 98 | ....L.\. | [95]: "2010-11-07T08:00:24Z" (1289116824) transition_time 0x6e6-0x6ed.7 (8)
|
||||
0x6e0| 00 00| ..| [96]: "2011-03-13T08:00:24Z" (1300003224) transition_time 0x6ee-0x6f5.7 (8)
|
||||
0x6f0|00 00 4d 7c 79 98 |..M|y. |
|
||||
0x6f0| 00 00 00 00 4e b6 30 88 | ....N.0. | [97]: "2011-11-06T07:00:24Z" (1320562824) transition_time 0x6f6-0x6fd.7 (8)
|
||||
0x6f0| 00 00| ..| [98]: "2012-03-11T08:00:24Z" (1331452824) transition_time 0x6fe-0x705.7 (8)
|
||||
0x700|00 00 4f 5c 5b 98 |..O\[. |
|
||||
0x700| 00 00 00 00 50 96 12 89 | ....P... | [99]: "2012-11-04T07:00:25Z" (1352012425) transition_time 0x706-0x70d.7 (8)
|
||||
0x700| 00 00| ..| [100]: "2013-03-10T08:00:25Z" (1362902425) transition_time 0x70e-0x715.7 (8)
|
||||
0x710|00 00 51 3c 3d 99 |..Q<=. |
|
||||
0x710| 00 00 00 00 52 75 f4 89 | ....Ru.. | [101]: "2013-11-03T07:00:25Z" (1383462025) transition_time 0x716-0x71d.7 (8)
|
||||
0x710| 00 00| ..| [102]: "2014-03-09T08:00:25Z" (1394352025) transition_time 0x71e-0x725.7 (8)
|
||||
0x720|00 00 53 1c 1f 99 |..S... |
|
||||
0x720| 00 00 00 00 54 55 d6 89 | ....TU.. | [103]: "2014-11-02T07:00:25Z" (1414911625) transition_time 0x726-0x72d.7 (8)
|
||||
0x720| 00 00| ..| [104]: "2015-03-08T08:00:25Z" (1425801625) transition_time 0x72e-0x735.7 (8)
|
||||
0x730|00 00 54 fc 01 99 |..T... |
|
||||
0x730| 00 00 00 00 56 35 b8 8a | ....V5.. | [105]: "2015-11-01T07:00:26Z" (1446361226) transition_time 0x736-0x73d.7 (8)
|
||||
0x730| 00 00| ..| [106]: "2016-03-13T08:00:26Z" (1457856026) transition_time 0x73e-0x745.7 (8)
|
||||
0x740|00 00 56 e5 1e 1a |..V... |
|
||||
0x740| 00 00 00 00 58 1e d5 0a | ....X... | [107]: "2016-11-06T07:00:26Z" (1478415626) transition_time 0x746-0x74d.7 (8)
|
||||
0x740| 00 00| ..| [108]: "2017-03-12T08:00:27Z" (1489305627) transition_time 0x74e-0x755.7 (8)
|
||||
0x750|00 00 58 c5 00 1b |..X... |
|
||||
0x750| 00 00 00 00 59 fe b7 0b | ....Y... | [109]: "2017-11-05T07:00:27Z" (1509865227) transition_time 0x756-0x75d.7 (8)
|
||||
0x750| 00 00| ..| [110]: "2018-03-11T08:00:27Z" (1520755227) transition_time 0x75e-0x765.7 (8)
|
||||
0x760|00 00 5a a4 e2 1b |..Z... |
|
||||
0x760| 00 00 00 00 5b de 99 0b | ....[... | [111]: "2018-11-04T07:00:27Z" (1541314827) transition_time 0x766-0x76d.7 (8)
|
||||
0x760| 00 00| ..| [112]: "2019-03-10T08:00:27Z" (1552204827) transition_time 0x76e-0x775.7 (8)
|
||||
0x770|00 00 5c 84 c4 1b |..\... |
|
||||
0x770| 00 00 00 00 5d be 7b 0b | ....].{. | [113]: "2019-11-03T07:00:27Z" (1572764427) transition_time 0x776-0x77d.7 (8)
|
||||
0x770| 00 00| ..| [114]: "2020-03-08T08:00:27Z" (1583654427) transition_time 0x77e-0x785.7 (8)
|
||||
0x780|00 00 5e 64 a6 1b |..^d.. |
|
||||
0x780| 00 00 00 00 5f 9e 5d 0b | ...._.]. | [115]: "2020-11-01T07:00:27Z" (1604214027) transition_time 0x786-0x78d.7 (8)
|
||||
0x780| 00 00| ..| [116]: "2021-03-14T08:00:27Z" (1615708827) transition_time 0x78e-0x795.7 (8)
|
||||
0x790|00 00 60 4d c2 9b |..`M.. |
|
||||
0x790| 00 00 00 00 61 87 79 8b | ....a.y. | [117]: "2021-11-07T07:00:27Z" (1636268427) transition_time 0x796-0x79d.7 (8)
|
||||
0x790| 00 00| ..| [118]: "2022-03-13T08:00:27Z" (1647158427) transition_time 0x79e-0x7a5.7 (8)
|
||||
0x7a0|00 00 62 2d a4 9b |..b-.. |
|
||||
0x7a0| 00 00 00 00 63 67 5b 8b | ....cg[. | [119]: "2022-11-06T07:00:27Z" (1667718027) transition_time 0x7a6-0x7ad.7 (8)
|
||||
0x7a0| 00 00| ..| [120]: "2023-03-12T08:00:27Z" (1678608027) transition_time 0x7ae-0x7b5.7 (8)
|
||||
0x7b0|00 00 64 0d 86 9b |..d... |
|
||||
0x7b0| 00 00 00 00 64 9b 78 1b | ....d.x. | [121]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x7b6-0x7bd.7 (8)
|
||||
| | | transition_types[0:122]: 0x7be-0x837.7 (122)
|
||||
0x7b0| 05 | . | [0]: 5 transition_type 0x7be-0x7be.7 (1)
|
||||
0x7b0| 01| .| [1]: 1 transition_type 0x7bf-0x7bf.7 (1)
|
||||
0x7c0|02 |. | [2]: 2 transition_type 0x7c0-0x7c0.7 (1)
|
||||
0x7c0| 01 | . | [3]: 1 transition_type 0x7c1-0x7c1.7 (1)
|
||||
0x7c0| 02 | . | [4]: 2 transition_type 0x7c2-0x7c2.7 (1)
|
||||
0x7c0| 03 | . | [5]: 3 transition_type 0x7c3-0x7c3.7 (1)
|
||||
0x7c0| 04 | . | [6]: 4 transition_type 0x7c4-0x7c4.7 (1)
|
||||
0x7c0| 02 | . | [7]: 2 transition_type 0x7c5-0x7c5.7 (1)
|
||||
0x7c0| 01 | . | [8]: 1 transition_type 0x7c6-0x7c6.7 (1)
|
||||
0x7c0| 02 | . | [9]: 2 transition_type 0x7c7-0x7c7.7 (1)
|
||||
0x7c0| 01 | . | [10]: 1 transition_type 0x7c8-0x7c8.7 (1)
|
||||
0x7c0| 02 | . | [11]: 2 transition_type 0x7c9-0x7c9.7 (1)
|
||||
0x7c0| 01 | . | [12]: 1 transition_type 0x7ca-0x7ca.7 (1)
|
||||
0x7c0| 02 | . | [13]: 2 transition_type 0x7cb-0x7cb.7 (1)
|
||||
0x7c0| 01 | . | [14]: 1 transition_type 0x7cc-0x7cc.7 (1)
|
||||
0x7c0| 02 | . | [15]: 2 transition_type 0x7cd-0x7cd.7 (1)
|
||||
0x7c0| 01 | . | [16]: 1 transition_type 0x7ce-0x7ce.7 (1)
|
||||
0x7c0| 02| .| [17]: 2 transition_type 0x7cf-0x7cf.7 (1)
|
||||
0x7d0|01 |. | [18]: 1 transition_type 0x7d0-0x7d0.7 (1)
|
||||
0x7d0| 02 | . | [19]: 2 transition_type 0x7d1-0x7d1.7 (1)
|
||||
0x7d0| 01 | . | [20]: 1 transition_type 0x7d2-0x7d2.7 (1)
|
||||
0x7d0| 02 | . | [21]: 2 transition_type 0x7d3-0x7d3.7 (1)
|
||||
0x7d0| 01 | . | [22]: 1 transition_type 0x7d4-0x7d4.7 (1)
|
||||
0x7d0| 02 | . | [23]: 2 transition_type 0x7d5-0x7d5.7 (1)
|
||||
0x7d0| 01 | . | [24]: 1 transition_type 0x7d6-0x7d6.7 (1)
|
||||
0x7d0| 02 | . | [25]: 2 transition_type 0x7d7-0x7d7.7 (1)
|
||||
0x7d0| 01 | . | [26]: 1 transition_type 0x7d8-0x7d8.7 (1)
|
||||
0x7d0| 02 | . | [27]: 2 transition_type 0x7d9-0x7d9.7 (1)
|
||||
0x7d0| 01 | . | [28]: 1 transition_type 0x7da-0x7da.7 (1)
|
||||
0x7d0| 02 | . | [29]: 2 transition_type 0x7db-0x7db.7 (1)
|
||||
0x7d0| 01 | . | [30]: 1 transition_type 0x7dc-0x7dc.7 (1)
|
||||
0x7d0| 02 | . | [31]: 2 transition_type 0x7dd-0x7dd.7 (1)
|
||||
0x7d0| 01 | . | [32]: 1 transition_type 0x7de-0x7de.7 (1)
|
||||
0x7d0| 02| .| [33]: 2 transition_type 0x7df-0x7df.7 (1)
|
||||
0x7e0|01 |. | [34]: 1 transition_type 0x7e0-0x7e0.7 (1)
|
||||
0x7e0| 02 | . | [35]: 2 transition_type 0x7e1-0x7e1.7 (1)
|
||||
0x7e0| 01 | . | [36]: 1 transition_type 0x7e2-0x7e2.7 (1)
|
||||
0x7e0| 02 | . | [37]: 2 transition_type 0x7e3-0x7e3.7 (1)
|
||||
0x7e0| 01 | . | [38]: 1 transition_type 0x7e4-0x7e4.7 (1)
|
||||
0x7e0| 02 | . | [39]: 2 transition_type 0x7e5-0x7e5.7 (1)
|
||||
0x7e0| 01 | . | [40]: 1 transition_type 0x7e6-0x7e6.7 (1)
|
||||
0x7e0| 02 | . | [41]: 2 transition_type 0x7e7-0x7e7.7 (1)
|
||||
0x7e0| 01 | . | [42]: 1 transition_type 0x7e8-0x7e8.7 (1)
|
||||
0x7e0| 02 | . | [43]: 2 transition_type 0x7e9-0x7e9.7 (1)
|
||||
0x7e0| 01 | . | [44]: 1 transition_type 0x7ea-0x7ea.7 (1)
|
||||
0x7e0| 02 | . | [45]: 2 transition_type 0x7eb-0x7eb.7 (1)
|
||||
0x7e0| 01 | . | [46]: 1 transition_type 0x7ec-0x7ec.7 (1)
|
||||
0x7e0| 02 | . | [47]: 2 transition_type 0x7ed-0x7ed.7 (1)
|
||||
0x7e0| 01 | . | [48]: 1 transition_type 0x7ee-0x7ee.7 (1)
|
||||
0x7e0| 02| .| [49]: 2 transition_type 0x7ef-0x7ef.7 (1)
|
||||
0x7f0|01 |. | [50]: 1 transition_type 0x7f0-0x7f0.7 (1)
|
||||
0x7f0| 02 | . | [51]: 2 transition_type 0x7f1-0x7f1.7 (1)
|
||||
0x7f0| 01 | . | [52]: 1 transition_type 0x7f2-0x7f2.7 (1)
|
||||
0x7f0| 02 | . | [53]: 2 transition_type 0x7f3-0x7f3.7 (1)
|
||||
0x7f0| 01 | . | [54]: 1 transition_type 0x7f4-0x7f4.7 (1)
|
||||
0x7f0| 02 | . | [55]: 2 transition_type 0x7f5-0x7f5.7 (1)
|
||||
0x7f0| 01 | . | [56]: 1 transition_type 0x7f6-0x7f6.7 (1)
|
||||
0x7f0| 02 | . | [57]: 2 transition_type 0x7f7-0x7f7.7 (1)
|
||||
0x7f0| 01 | . | [58]: 1 transition_type 0x7f8-0x7f8.7 (1)
|
||||
0x7f0| 02 | . | [59]: 2 transition_type 0x7f9-0x7f9.7 (1)
|
||||
0x7f0| 01 | . | [60]: 1 transition_type 0x7fa-0x7fa.7 (1)
|
||||
0x7f0| 02 | . | [61]: 2 transition_type 0x7fb-0x7fb.7 (1)
|
||||
0x7f0| 01 | . | [62]: 1 transition_type 0x7fc-0x7fc.7 (1)
|
||||
0x7f0| 02 | . | [63]: 2 transition_type 0x7fd-0x7fd.7 (1)
|
||||
0x7f0| 01 | . | [64]: 1 transition_type 0x7fe-0x7fe.7 (1)
|
||||
0x7f0| 02| .| [65]: 2 transition_type 0x7ff-0x7ff.7 (1)
|
||||
0x800|01 |. | [66]: 1 transition_type 0x800-0x800.7 (1)
|
||||
0x800| 02 | . | [67]: 2 transition_type 0x801-0x801.7 (1)
|
||||
0x800| 01 | . | [68]: 1 transition_type 0x802-0x802.7 (1)
|
||||
0x800| 02 | . | [69]: 2 transition_type 0x803-0x803.7 (1)
|
||||
0x800| 01 | . | [70]: 1 transition_type 0x804-0x804.7 (1)
|
||||
0x800| 02 | . | [71]: 2 transition_type 0x805-0x805.7 (1)
|
||||
0x800| 01 | . | [72]: 1 transition_type 0x806-0x806.7 (1)
|
||||
0x800| 02 | . | [73]: 2 transition_type 0x807-0x807.7 (1)
|
||||
0x800| 01 | . | [74]: 1 transition_type 0x808-0x808.7 (1)
|
||||
0x800| 02 | . | [75]: 2 transition_type 0x809-0x809.7 (1)
|
||||
0x800| 01 | . | [76]: 1 transition_type 0x80a-0x80a.7 (1)
|
||||
0x800| 02 | . | [77]: 2 transition_type 0x80b-0x80b.7 (1)
|
||||
0x800| 01 | . | [78]: 1 transition_type 0x80c-0x80c.7 (1)
|
||||
0x800| 02 | . | [79]: 2 transition_type 0x80d-0x80d.7 (1)
|
||||
0x800| 01 | . | [80]: 1 transition_type 0x80e-0x80e.7 (1)
|
||||
0x800| 02| .| [81]: 2 transition_type 0x80f-0x80f.7 (1)
|
||||
0x810|01 |. | [82]: 1 transition_type 0x810-0x810.7 (1)
|
||||
0x810| 02 | . | [83]: 2 transition_type 0x811-0x811.7 (1)
|
||||
0x810| 01 | . | [84]: 1 transition_type 0x812-0x812.7 (1)
|
||||
0x810| 02 | . | [85]: 2 transition_type 0x813-0x813.7 (1)
|
||||
0x810| 01 | . | [86]: 1 transition_type 0x814-0x814.7 (1)
|
||||
0x810| 02 | . | [87]: 2 transition_type 0x815-0x815.7 (1)
|
||||
0x810| 01 | . | [88]: 1 transition_type 0x816-0x816.7 (1)
|
||||
0x810| 02 | . | [89]: 2 transition_type 0x817-0x817.7 (1)
|
||||
0x810| 01 | . | [90]: 1 transition_type 0x818-0x818.7 (1)
|
||||
0x810| 02 | . | [91]: 2 transition_type 0x819-0x819.7 (1)
|
||||
0x810| 01 | . | [92]: 1 transition_type 0x81a-0x81a.7 (1)
|
||||
0x810| 02 | . | [93]: 2 transition_type 0x81b-0x81b.7 (1)
|
||||
0x810| 01 | . | [94]: 1 transition_type 0x81c-0x81c.7 (1)
|
||||
0x810| 07 | . | [95]: 7 transition_type 0x81d-0x81d.7 (1)
|
||||
0x810| 06 | . | [96]: 6 transition_type 0x81e-0x81e.7 (1)
|
||||
0x810| 07| .| [97]: 7 transition_type 0x81f-0x81f.7 (1)
|
||||
0x820|06 |. | [98]: 6 transition_type 0x820-0x820.7 (1)
|
||||
0x820| 07 | . | [99]: 7 transition_type 0x821-0x821.7 (1)
|
||||
0x820| 06 | . | [100]: 6 transition_type 0x822-0x822.7 (1)
|
||||
0x820| 07 | . | [101]: 7 transition_type 0x823-0x823.7 (1)
|
||||
0x820| 06 | . | [102]: 6 transition_type 0x824-0x824.7 (1)
|
||||
0x820| 07 | . | [103]: 7 transition_type 0x825-0x825.7 (1)
|
||||
0x820| 06 | . | [104]: 6 transition_type 0x826-0x826.7 (1)
|
||||
0x820| 07 | . | [105]: 7 transition_type 0x827-0x827.7 (1)
|
||||
0x820| 06 | . | [106]: 6 transition_type 0x828-0x828.7 (1)
|
||||
0x820| 07 | . | [107]: 7 transition_type 0x829-0x829.7 (1)
|
||||
0x820| 06 | . | [108]: 6 transition_type 0x82a-0x82a.7 (1)
|
||||
0x820| 07 | . | [109]: 7 transition_type 0x82b-0x82b.7 (1)
|
||||
0x820| 06 | . | [110]: 6 transition_type 0x82c-0x82c.7 (1)
|
||||
0x820| 07 | . | [111]: 7 transition_type 0x82d-0x82d.7 (1)
|
||||
0x820| 06 | . | [112]: 6 transition_type 0x82e-0x82e.7 (1)
|
||||
0x820| 07| .| [113]: 7 transition_type 0x82f-0x82f.7 (1)
|
||||
0x830|06 |. | [114]: 6 transition_type 0x830-0x830.7 (1)
|
||||
0x830| 07 | . | [115]: 7 transition_type 0x831-0x831.7 (1)
|
||||
0x830| 06 | . | [116]: 6 transition_type 0x832-0x832.7 (1)
|
||||
0x830| 07 | . | [117]: 7 transition_type 0x833-0x833.7 (1)
|
||||
0x830| 06 | . | [118]: 6 transition_type 0x834-0x834.7 (1)
|
||||
0x830| 07 | . | [119]: 7 transition_type 0x835-0x835.7 (1)
|
||||
0x830| 06 | . | [120]: 6 transition_type 0x836-0x836.7 (1)
|
||||
0x830| 06 | . | [121]: 6 transition_type 0x837-0x837.7 (1)
|
||||
| | | local_time_type_records[0:8]: 0x838-0x867.7 (48)
|
||||
| | | [0]{}: local_time_type 0x838-0x83d.7 (6)
|
||||
0x830| ff ff a0 95 | .... | utoff: -24427 (valid) 0x838-0x83b.7 (4)
|
||||
0x830| 00 | . | dst: 0 (valid) 0x83c-0x83c.7 (1)
|
||||
0x830| 00 | . | idx: 0 (valid) 0x83d-0x83d.7 (1)
|
||||
| | | [1]{}: local_time_type 0x83e-0x843.7 (6)
|
||||
0x830| ff ff| ..| utoff: -21600 (valid) 0x83e-0x841.7 (4)
|
||||
0x840|ab a0 |.. |
|
||||
0x840| 01 | . | dst: 1 (valid) 0x842-0x842.7 (1)
|
||||
0x840| 04 | . | idx: 4 (valid) 0x843-0x843.7 (1)
|
||||
| | | [2]{}: local_time_type 0x844-0x849.7 (6)
|
||||
0x840| ff ff 9d 90 | .... | utoff: -25200 (valid) 0x844-0x847.7 (4)
|
||||
0x840| 00 | . | dst: 0 (valid) 0x848-0x848.7 (1)
|
||||
0x840| 08 | . | idx: 8 (valid) 0x849-0x849.7 (1)
|
||||
| | | [3]{}: local_time_type 0x84a-0x84f.7 (6)
|
||||
0x840| ff ff ab a0 | .... | utoff: -21600 (valid) 0x84a-0x84d.7 (4)
|
||||
0x840| 01 | . | dst: 1 (valid) 0x84e-0x84e.7 (1)
|
||||
0x840| 0c| .| idx: 12 (valid) 0x84f-0x84f.7 (1)
|
||||
| | | [4]{}: local_time_type 0x850-0x855.7 (6)
|
||||
0x850|ff ff ab a0 |.... | utoff: -21600 (valid) 0x850-0x853.7 (4)
|
||||
0x850| 01 | . | dst: 1 (valid) 0x854-0x854.7 (1)
|
||||
0x850| 10 | . | idx: 16 (valid) 0x855-0x855.7 (1)
|
||||
| | | [5]{}: local_time_type 0x856-0x85b.7 (6)
|
||||
0x850| ff ff 9d 90 | .... | utoff: -25200 (valid) 0x856-0x859.7 (4)
|
||||
0x850| 00 | . | dst: 0 (valid) 0x85a-0x85a.7 (1)
|
||||
0x850| 08 | . | idx: 8 (valid) 0x85b-0x85b.7 (1)
|
||||
| | | [6]{}: local_time_type 0x85c-0x861.7 (6)
|
||||
0x850| ff ff b9 b0| ....| utoff: -18000 (valid) 0x85c-0x85f.7 (4)
|
||||
0x860|01 |. | dst: 1 (valid) 0x860-0x860.7 (1)
|
||||
0x860| 14 | . | idx: 20 (valid) 0x861-0x861.7 (1)
|
||||
| | | [7]{}: local_time_type 0x862-0x867.7 (6)
|
||||
0x860| ff ff ab a0 | .... | utoff: -21600 (valid) 0x862-0x865.7 (4)
|
||||
0x860| 00 | . | dst: 0 (valid) 0x866-0x866.7 (1)
|
||||
0x860| 18 | . | idx: 24 (valid) 0x867-0x867.7 (1)
|
||||
| | | time_zone_designations[0:7]: 0x868-0x883.7 (28)
|
||||
0x860| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x868-0x86b.7 (4)
|
||||
0x860| 4d 44 54 00| MDT.| [1]: "MDT" time_zone_designation 0x86c-0x86f.7 (4)
|
||||
0x870|4d 53 54 00 |MST. | [2]: "MST" time_zone_designation 0x870-0x873.7 (4)
|
||||
0x870| 4d 57 54 00 | MWT. | [3]: "MWT" time_zone_designation 0x874-0x877.7 (4)
|
||||
0x870| 4d 50 54 00 | MPT. | [4]: "MPT" time_zone_designation 0x878-0x87b.7 (4)
|
||||
0x870| 43 44 54 00| CDT.| [5]: "CDT" time_zone_designation 0x87c-0x87f.7 (4)
|
||||
0x880|43 53 54 00 |CST. | [6]: "CST" time_zone_designation 0x880-0x883.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x884-0x9c7.7 (324)
|
||||
| | | [0]{}: leap_second_record 0x884-0x88f.7 (12)
|
||||
0x880| 00 00 00 00 04 b2 58 00 | ......X. | occur: "1972-07-01T00:00:00Z" (78796800) 0x884-0x88b.7 (8)
|
||||
0x880| 00 00 00 01| ....| corr: 1 0x88c-0x88f.7 (4)
|
||||
| | | [1]{}: leap_second_record 0x890-0x89b.7 (12)
|
||||
0x890|00 00 00 00 05 a4 ec 01 |........ | occur: "1973-01-01T00:00:01Z" (94694401) 0x890-0x897.7 (8)
|
||||
0x890| 00 00 00 02 | .... | corr: 2 0x898-0x89b.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x89c-0x8a7.7 (12)
|
||||
0x890| 00 00 00 00| ....| occur: "1974-01-01T00:00:02Z" (126230402) 0x89c-0x8a3.7 (8)
|
||||
0x8a0|07 86 1f 82 |.... |
|
||||
0x8a0| 00 00 00 03 | .... | corr: 3 0x8a4-0x8a7.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x8a8-0x8b3.7 (12)
|
||||
0x8a0| 00 00 00 00 09 67 53 03| .....gS.| occur: "1975-01-01T00:00:03Z" (157766403) 0x8a8-0x8af.7 (8)
|
||||
0x8b0|00 00 00 04 |.... | corr: 4 0x8b0-0x8b3.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x8b4-0x8bf.7 (12)
|
||||
0x8b0| 00 00 00 00 0b 48 86 84 | .....H.. | occur: "1976-01-01T00:00:04Z" (189302404) 0x8b4-0x8bb.7 (8)
|
||||
0x8b0| 00 00 00 05| ....| corr: 5 0x8bc-0x8bf.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x8c0-0x8cb.7 (12)
|
||||
0x8c0|00 00 00 00 0d 2b 0b 85 |.....+.. | occur: "1977-01-01T00:00:05Z" (220924805) 0x8c0-0x8c7.7 (8)
|
||||
0x8c0| 00 00 00 06 | .... | corr: 6 0x8c8-0x8cb.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x8cc-0x8d7.7 (12)
|
||||
0x8c0| 00 00 00 00| ....| occur: "1978-01-01T00:00:06Z" (252460806) 0x8cc-0x8d3.7 (8)
|
||||
0x8d0|0f 0c 3f 06 |..?. |
|
||||
0x8d0| 00 00 00 07 | .... | corr: 7 0x8d4-0x8d7.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x8d8-0x8e3.7 (12)
|
||||
0x8d0| 00 00 00 00 10 ed 72 87| ......r.| occur: "1979-01-01T00:00:07Z" (283996807) 0x8d8-0x8df.7 (8)
|
||||
0x8e0|00 00 00 08 |.... | corr: 8 0x8e0-0x8e3.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x8e4-0x8ef.7 (12)
|
||||
0x8e0| 00 00 00 00 12 ce a6 08 | ........ | occur: "1980-01-01T00:00:08Z" (315532808) 0x8e4-0x8eb.7 (8)
|
||||
0x8e0| 00 00 00 09| ....| corr: 9 0x8ec-0x8ef.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x8f0-0x8fb.7 (12)
|
||||
0x8f0|00 00 00 00 15 9f ca 89 |........ | occur: "1981-07-01T00:00:09Z" (362793609) 0x8f0-0x8f7.7 (8)
|
||||
0x8f0| 00 00 00 0a | .... | corr: 10 0x8f8-0x8fb.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x8fc-0x907.7 (12)
|
||||
0x8f0| 00 00 00 00| ....| occur: "1982-07-01T00:00:10Z" (394329610) 0x8fc-0x903.7 (8)
|
||||
0x900|17 80 fe 0a |.... |
|
||||
0x900| 00 00 00 0b | .... | corr: 11 0x904-0x907.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x908-0x913.7 (12)
|
||||
0x900| 00 00 00 00 19 62 31 8b| .....b1.| occur: "1983-07-01T00:00:11Z" (425865611) 0x908-0x90f.7 (8)
|
||||
0x910|00 00 00 0c |.... | corr: 12 0x910-0x913.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x914-0x91f.7 (12)
|
||||
0x910| 00 00 00 00 1d 25 ea 0c | .....%.. | occur: "1985-07-01T00:00:12Z" (489024012) 0x914-0x91b.7 (8)
|
||||
0x910| 00 00 00 0d| ....| corr: 13 0x91c-0x91f.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x920-0x92b.7 (12)
|
||||
0x920|00 00 00 00 21 da e5 0d |....!... | occur: "1988-01-01T00:00:13Z" (567993613) 0x920-0x927.7 (8)
|
||||
0x920| 00 00 00 0e | .... | corr: 14 0x928-0x92b.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x92c-0x937.7 (12)
|
||||
0x920| 00 00 00 00| ....| occur: "1990-01-01T00:00:14Z" (631152014) 0x92c-0x933.7 (8)
|
||||
0x930|25 9e 9d 8e |%... |
|
||||
0x930| 00 00 00 0f | .... | corr: 15 0x934-0x937.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x938-0x943.7 (12)
|
||||
0x930| 00 00 00 00 27 7f d1 0f| ....'...| occur: "1991-01-01T00:00:15Z" (662688015) 0x938-0x93f.7 (8)
|
||||
0x940|00 00 00 10 |.... | corr: 16 0x940-0x943.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x944-0x94f.7 (12)
|
||||
0x940| 00 00 00 00 2a 50 f5 90 | ....*P.. | occur: "1992-07-01T00:00:16Z" (709948816) 0x944-0x94b.7 (8)
|
||||
0x940| 00 00 00 11| ....| corr: 17 0x94c-0x94f.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x950-0x95b.7 (12)
|
||||
0x950|00 00 00 00 2c 32 29 11 |....,2). | occur: "1993-07-01T00:00:17Z" (741484817) 0x950-0x957.7 (8)
|
||||
0x950| 00 00 00 12 | .... | corr: 18 0x958-0x95b.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x95c-0x967.7 (12)
|
||||
0x950| 00 00 00 00| ....| occur: "1994-07-01T00:00:18Z" (773020818) 0x95c-0x963.7 (8)
|
||||
0x960|2e 13 5c 92 |..\. |
|
||||
0x960| 00 00 00 13 | .... | corr: 19 0x964-0x967.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x968-0x973.7 (12)
|
||||
0x960| 00 00 00 00 30 e7 24 13| ....0.$.| occur: "1996-01-01T00:00:19Z" (820454419) 0x968-0x96f.7 (8)
|
||||
0x970|00 00 00 14 |.... | corr: 20 0x970-0x973.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x974-0x97f.7 (12)
|
||||
0x970| 00 00 00 00 33 b8 48 94 | ....3.H. | occur: "1997-07-01T00:00:20Z" (867715220) 0x974-0x97b.7 (8)
|
||||
0x970| 00 00 00 15| ....| corr: 21 0x97c-0x97f.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x980-0x98b.7 (12)
|
||||
0x980|00 00 00 00 36 8c 10 15 |....6... | occur: "1999-01-01T00:00:21Z" (915148821) 0x980-0x987.7 (8)
|
||||
0x980| 00 00 00 16 | .... | corr: 22 0x988-0x98b.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x98c-0x997.7 (12)
|
||||
0x980| 00 00 00 00| ....| occur: "2006-01-01T00:00:22Z" (1136073622) 0x98c-0x993.7 (8)
|
||||
0x990|43 b7 1b 96 |C... |
|
||||
0x990| 00 00 00 17 | .... | corr: 23 0x994-0x997.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x998-0x9a3.7 (12)
|
||||
0x990| 00 00 00 00 49 5c 07 97| ....I\..| occur: "2009-01-01T00:00:23Z" (1230768023) 0x998-0x99f.7 (8)
|
||||
0x9a0|00 00 00 18 |.... | corr: 24 0x9a0-0x9a3.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x9a4-0x9af.7 (12)
|
||||
0x9a0| 00 00 00 00 4f ef 93 18 | ....O... | occur: "2012-07-01T00:00:24Z" (1341100824) 0x9a4-0x9ab.7 (8)
|
||||
0x9a0| 00 00 00 19| ....| corr: 25 0x9ac-0x9af.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x9b0-0x9bb.7 (12)
|
||||
0x9b0|00 00 00 00 55 93 2d 99 |....U.-. | occur: "2015-07-01T00:00:25Z" (1435708825) 0x9b0-0x9b7.7 (8)
|
||||
0x9b0| 00 00 00 1a | .... | corr: 26 0x9b8-0x9bb.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x9bc-0x9c7.7 (12)
|
||||
0x9b0| 00 00 00 00| ....| occur: "2017-01-01T00:00:26Z" (1483228826) 0x9bc-0x9c3.7 (8)
|
||||
0x9c0|58 68 46 9a |XhF. |
|
||||
0x9c0| 00 00 00 1b | .... | corr: 27 0x9c4-0x9c7.7 (4)
|
||||
| | | standard_wall_indicators[0:8]: 0x9c8-0x9cf.7 (8)
|
||||
0x9c0| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x9c8-0x9c8.7 (1)
|
||||
0x9c0| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x9c9-0x9c9.7 (1)
|
||||
0x9c0| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x9ca-0x9ca.7 (1)
|
||||
0x9c0| 00 | . | [3]: 0 standard_wall_indicator (valid) 0x9cb-0x9cb.7 (1)
|
||||
0x9c0| 01 | . | [4]: 1 standard_wall_indicator (valid) 0x9cc-0x9cc.7 (1)
|
||||
0x9c0| 01 | . | [5]: 1 standard_wall_indicator (valid) 0x9cd-0x9cd.7 (1)
|
||||
0x9c0| 00 | . | [6]: 0 standard_wall_indicator (valid) 0x9ce-0x9ce.7 (1)
|
||||
0x9c0| 00| .| [7]: 0 standard_wall_indicator (valid) 0x9cf-0x9cf.7 (1)
|
||||
| | | ut_local_indicators[0:8]: 0x9d0-0x9d7.7 (8)
|
||||
0x9d0|00 |. | [0]: 0 ut_local_indicator (valid) 0x9d0-0x9d0.7 (1)
|
||||
0x9d0| 00 | . | [1]: 0 ut_local_indicator (valid) 0x9d1-0x9d1.7 (1)
|
||||
0x9d0| 00 | . | [2]: 0 ut_local_indicator (valid) 0x9d2-0x9d2.7 (1)
|
||||
0x9d0| 00 | . | [3]: 0 ut_local_indicator (valid) 0x9d3-0x9d3.7 (1)
|
||||
0x9d0| 01 | . | [4]: 1 ut_local_indicator (valid) 0x9d4-0x9d4.7 (1)
|
||||
0x9d0| 01 | . | [5]: 1 ut_local_indicator (valid) 0x9d5-0x9d5.7 (1)
|
||||
0x9d0| 00 | . | [6]: 0 ut_local_indicator (valid) 0x9d6-0x9d6.7 (1)
|
||||
0x9d0| 00 | . | [7]: 0 ut_local_indicator (valid) 0x9d7-0x9d7.7 (1)
|
||||
| | | footer{}: 0x9d8-0x9d9.7 (2)
|
||||
0x9d0| 0a | . | nl1: 10 (valid) 0x9d8-0x9d8.7 (1)
|
||||
| | | tz_string: "" 0x9d9-NA (0)
|
||||
0x9d0| 0a| | .| | nl2: 10 (valid) 0x9d9-0x9d9.7 (1)
|
BIN
format/tzif/testdata/Bishkek
vendored
Normal file
BIN
format/tzif/testdata/Bishkek
vendored
Normal file
Binary file not shown.
573
format/tzif/testdata/Bishkek.fqtest
vendored
Normal file
573
format/tzif/testdata/Bishkek.fqtest
vendored
Normal file
@ -0,0 +1,573 @@
|
||||
$ fq -d tzif dv Bishkek
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: Bishkek (tzif) 0x0-0x5eb.7 (1516)
|
||||
| | | v1header{}: 0x0-0x2b.7 (44)
|
||||
0x000|54 5a 69 66 |TZif | magic: 0x545a6966 (valid) 0x0-0x3.7 (4)
|
||||
0x000| 32 | 2 | ver: "2" (0x32) (valid) 0x4-0x4.7 (1)
|
||||
0x000| 00 00 00 00 00 00 00 00 00 00 00| ...........| reserved: raw bits 0x5-0x13.7 (15)
|
||||
0x010|00 00 00 00 |.... |
|
||||
0x010| 00 00 00 00 | .... | isutcnt: 0 0x14-0x17.7 (4)
|
||||
0x010| 00 00 00 08 | .... | isstdcnt: 8 0x18-0x1b.7 (4)
|
||||
0x010| 00 00 00 1b| ....| leapcnt: 27 0x1c-0x1f.7 (4)
|
||||
0x020|00 00 00 35 |...5 | timecnt: 53 0x20-0x23.7 (4)
|
||||
0x020| 00 00 00 08 | .... | typecnt: 8 0x24-0x27.7 (4)
|
||||
0x020| 00 00 00 10 | .... | charcnt: 16 0x28-0x2b.7 (4)
|
||||
| | | v1datablock{}: 0x2c-0x254.7 (553)
|
||||
| | | transition_times[0:53]: 0x2c-0xff.7 (212)
|
||||
0x020| aa 19 7e 10| ..~.| [0]: "1924-05-01T19:01:36Z" (-1441169904) transition_time 0x2c-0x2f.7 (4)
|
||||
0x030|b5 a3 ef 30 |...0 | [1]: "1930-06-20T19:00:00Z" (-1247547600) transition_time 0x30-0x33.7 (4)
|
||||
0x030| 15 27 7d a9 | .'}. | [2]: "1981-03-31T18:00:09Z" (354909609) transition_time 0x34-0x37.7 (4)
|
||||
0x030| 16 18 b2 1a | .... | [3]: "1981-09-30T17:00:10Z" (370717210) transition_time 0x38-0x3b.7 (4)
|
||||
0x030| 17 08 b1 2a| ...*| [4]: "1982-03-31T18:00:10Z" (386445610) transition_time 0x3c-0x3f.7 (4)
|
||||
0x040|17 f9 e5 9b |.... | [5]: "1982-09-30T17:00:11Z" (402253211) transition_time 0x40-0x43.7 (4)
|
||||
0x040| 18 e9 e4 ab | .... | [6]: "1983-03-31T18:00:11Z" (417981611) transition_time 0x44-0x47.7 (4)
|
||||
0x040| 19 db 19 1c | .... | [7]: "1983-09-30T17:00:12Z" (433789212) transition_time 0x48-0x4b.7 (4)
|
||||
0x040| 1a cc 69 ac| ..i.| [8]: "1984-03-31T18:00:12Z" (449604012) transition_time 0x4c-0x4f.7 (4)
|
||||
0x050|1b bc 76 cc |..v. | [9]: "1984-09-29T20:00:12Z" (465336012) transition_time 0x50-0x53.7 (4)
|
||||
0x050| 1c ac 67 cc | ..g. | [10]: "1985-03-30T20:00:12Z" (481060812) transition_time 0x54-0x57.7 (4)
|
||||
0x050| 1d 9c 58 cd | ..X. | [11]: "1985-09-28T20:00:13Z" (496785613) transition_time 0x58-0x5b.7 (4)
|
||||
0x050| 1e 8c 49 cd| ..I.| [12]: "1986-03-29T20:00:13Z" (512510413) transition_time 0x5c-0x5f.7 (4)
|
||||
0x060|1f 7c 3a cd |.|:. | [13]: "1986-09-27T20:00:13Z" (528235213) transition_time 0x60-0x63.7 (4)
|
||||
0x060| 20 6c 2b cd | l+. | [14]: "1987-03-28T20:00:13Z" (543960013) transition_time 0x64-0x67.7 (4)
|
||||
0x060| 21 5c 1c cd | !\.. | [15]: "1987-09-26T20:00:13Z" (559684813) transition_time 0x68-0x6b.7 (4)
|
||||
0x060| 22 4c 0d ce| "L..| [16]: "1988-03-26T20:00:14Z" (575409614) transition_time 0x6c-0x6f.7 (4)
|
||||
0x070|23 3b fe ce |#;.. | [17]: "1988-09-24T20:00:14Z" (591134414) transition_time 0x70-0x73.7 (4)
|
||||
0x070| 24 2b ef ce | $+.. | [18]: "1989-03-25T20:00:14Z" (606859214) transition_time 0x74-0x77.7 (4)
|
||||
0x070| 25 1b e0 ce | %... | [19]: "1989-09-23T20:00:14Z" (622584014) transition_time 0x78-0x7b.7 (4)
|
||||
0x070| 26 0b d1 cf| &...| [20]: "1990-03-24T20:00:15Z" (638308815) transition_time 0x7c-0x7f.7 (4)
|
||||
0x080|27 04 fd 4f |'..O | [21]: "1990-09-29T20:00:15Z" (654638415) transition_time 0x80-0x83.7 (4)
|
||||
0x080| 27 f4 ee 50 | '..P | [22]: "1991-03-30T20:00:16Z" (670363216) transition_time 0x84-0x87.7 (4)
|
||||
0x080| 28 be a3 d0 | (... | [23]: "1991-08-30T20:00:16Z" (683582416) transition_time 0x88-0x8b.7 (4)
|
||||
0x080| 29 e7 37 40| ).7@| [24]: "1992-04-11T19:00:16Z" (703018816) transition_time 0x8c-0x8f.7 (4)
|
||||
0x090|2a c4 a5 31 |*..1 | [25]: "1992-09-26T18:00:17Z" (717530417) transition_time 0x90-0x93.7 (4)
|
||||
0x090| 2b c7 19 41 | +..A | [26]: "1993-04-10T19:00:17Z" (734468417) transition_time 0x94-0x97.7 (4)
|
||||
0x090| 2c a4 87 32 | ,..2 | [27]: "1993-09-25T18:00:18Z" (748980018) transition_time 0x98-0x9b.7 (4)
|
||||
0x090| 2d a6 fb 42| -..B| [28]: "1994-04-09T19:00:18Z" (765918018) transition_time 0x9c-0x9f.7 (4)
|
||||
0x0a0|2e 84 69 33 |..i3 | [29]: "1994-09-24T18:00:19Z" (780429619) transition_time 0xa0-0xa3.7 (4)
|
||||
0x0a0| 2f 86 dd 43 | /..C | [30]: "1995-04-08T19:00:19Z" (797367619) transition_time 0xa4-0xa7.7 (4)
|
||||
0x0a0| 30 64 4b 33 | 0dK3 | [31]: "1995-09-23T18:00:19Z" (811879219) transition_time 0xa8-0xab.7 (4)
|
||||
0x0a0| 31 66 bf 44| 1f.D| [32]: "1996-04-06T19:00:20Z" (828817220) transition_time 0xac-0xaf.7 (4)
|
||||
0x0b0|32 4d 67 b4 |2Mg. | [33]: "1996-09-28T18:00:20Z" (843933620) transition_time 0xb0-0xb3.7 (4)
|
||||
0x0b0| 33 3d 89 ec | 3=.. | [34]: "1997-03-29T21:30:20Z" (859671020) transition_time 0xb4-0xb7.7 (4)
|
||||
0x0b0| 34 52 56 dd | 4RV. | [35]: "1997-10-25T20:30:21Z" (877811421) transition_time 0xb8-0xbb.7 (4)
|
||||
0x0b0| 35 1d 6b ed| 5.k.| [36]: "1998-03-28T21:30:21Z" (891120621) transition_time 0xbc-0xbf.7 (4)
|
||||
0x0c0|36 32 38 dd |628. | [37]: "1998-10-24T20:30:21Z" (909261021) transition_time 0xc0-0xc3.7 (4)
|
||||
0x0c0| 36 fd 4d ee | 6.M. | [38]: "1999-03-27T21:30:22Z" (922570222) transition_time 0xc4-0xc7.7 (4)
|
||||
0x0c0| 38 1b 55 5e | 8.U^ | [39]: "1999-10-30T20:30:22Z" (941315422) transition_time 0xc8-0xcb.7 (4)
|
||||
0x0c0| 38 dd 2f ee| 8./.| [40]: "2000-03-25T21:30:22Z" (954019822) transition_time 0xcc-0xcf.7 (4)
|
||||
0x0d0|39 fb 37 5e |9.7^ | [41]: "2000-10-28T20:30:22Z" (972765022) transition_time 0xd0-0xd3.7 (4)
|
||||
0x0d0| 3a bd 11 ee | :... | [42]: "2001-03-24T21:30:22Z" (985469422) transition_time 0xd4-0xd7.7 (4)
|
||||
0x0d0| 3b db 19 5e | ;..^ | [43]: "2001-10-27T20:30:22Z" (1004214622) transition_time 0xd8-0xdb.7 (4)
|
||||
0x0d0| 3c a6 2e 6e| <..n| [44]: "2002-03-30T21:30:22Z" (1017523822) transition_time 0xdc-0xdf.7 (4)
|
||||
0x0e0|3d ba fb 5e |=..^ | [45]: "2002-10-26T20:30:22Z" (1035664222) transition_time 0xe0-0xe3.7 (4)
|
||||
0x0e0| 3e 86 10 6e | >..n | [46]: "2003-03-29T21:30:22Z" (1048973422) transition_time 0xe4-0xe7.7 (4)
|
||||
0x0e0| 3f 9a dd 5e | ?..^ | [47]: "2003-10-25T20:30:22Z" (1067113822) transition_time 0xe8-0xeb.7 (4)
|
||||
0x0e0| 40 65 f2 6e| @e.n| [48]: "2004-03-27T21:30:22Z" (1080423022) transition_time 0xec-0xef.7 (4)
|
||||
0x0f0|41 83 f9 de |A... | [49]: "2004-10-30T20:30:22Z" (1099168222) transition_time 0xf0-0xf3.7 (4)
|
||||
0x0f0| 42 45 d4 6e | BE.n | [50]: "2005-03-26T21:30:22Z" (1111872622) transition_time 0xf4-0xf7.7 (4)
|
||||
0x0f0| 42 fb 92 36 | B..6 | [51]: "2005-08-11T18:00:22Z" (1123783222) transition_time 0xf8-0xfb.7 (4)
|
||||
0x0f0| 64 9b 78 1b| d.x.| [52]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0xfc-0xff.7 (4)
|
||||
| | | transition_types[0:53]: 0x100-0x134.7 (53)
|
||||
0x100|01 |. | [0]: 1 transition_type 0x100-0x100.7 (1)
|
||||
0x100| 03 | . | [1]: 3 transition_type 0x101-0x101.7 (1)
|
||||
0x100| 02 | . | [2]: 2 transition_type 0x102-0x102.7 (1)
|
||||
0x100| 03 | . | [3]: 3 transition_type 0x103-0x103.7 (1)
|
||||
0x100| 02 | . | [4]: 2 transition_type 0x104-0x104.7 (1)
|
||||
0x100| 03 | . | [5]: 3 transition_type 0x105-0x105.7 (1)
|
||||
0x100| 02 | . | [6]: 2 transition_type 0x106-0x106.7 (1)
|
||||
0x100| 03 | . | [7]: 3 transition_type 0x107-0x107.7 (1)
|
||||
0x100| 02 | . | [8]: 2 transition_type 0x108-0x108.7 (1)
|
||||
0x100| 04 | . | [9]: 4 transition_type 0x109-0x109.7 (1)
|
||||
0x100| 05 | . | [10]: 5 transition_type 0x10a-0x10a.7 (1)
|
||||
0x100| 04 | . | [11]: 4 transition_type 0x10b-0x10b.7 (1)
|
||||
0x100| 05 | . | [12]: 5 transition_type 0x10c-0x10c.7 (1)
|
||||
0x100| 04 | . | [13]: 4 transition_type 0x10d-0x10d.7 (1)
|
||||
0x100| 05 | . | [14]: 5 transition_type 0x10e-0x10e.7 (1)
|
||||
0x100| 04| .| [15]: 4 transition_type 0x10f-0x10f.7 (1)
|
||||
0x110|05 |. | [16]: 5 transition_type 0x110-0x110.7 (1)
|
||||
0x110| 04 | . | [17]: 4 transition_type 0x111-0x111.7 (1)
|
||||
0x110| 05 | . | [18]: 5 transition_type 0x112-0x112.7 (1)
|
||||
0x110| 04 | . | [19]: 4 transition_type 0x113-0x113.7 (1)
|
||||
0x110| 05 | . | [20]: 5 transition_type 0x114-0x114.7 (1)
|
||||
0x110| 04 | . | [21]: 4 transition_type 0x115-0x115.7 (1)
|
||||
0x110| 06 | . | [22]: 6 transition_type 0x116-0x116.7 (1)
|
||||
0x110| 01 | . | [23]: 1 transition_type 0x117-0x117.7 (1)
|
||||
0x110| 06 | . | [24]: 6 transition_type 0x118-0x118.7 (1)
|
||||
0x110| 01 | . | [25]: 1 transition_type 0x119-0x119.7 (1)
|
||||
0x110| 06 | . | [26]: 6 transition_type 0x11a-0x11a.7 (1)
|
||||
0x110| 01 | . | [27]: 1 transition_type 0x11b-0x11b.7 (1)
|
||||
0x110| 06 | . | [28]: 6 transition_type 0x11c-0x11c.7 (1)
|
||||
0x110| 01 | . | [29]: 1 transition_type 0x11d-0x11d.7 (1)
|
||||
0x110| 06 | . | [30]: 6 transition_type 0x11e-0x11e.7 (1)
|
||||
0x110| 01| .| [31]: 1 transition_type 0x11f-0x11f.7 (1)
|
||||
0x120|06 |. | [32]: 6 transition_type 0x120-0x120.7 (1)
|
||||
0x120| 01 | . | [33]: 1 transition_type 0x121-0x121.7 (1)
|
||||
0x120| 07 | . | [34]: 7 transition_type 0x122-0x122.7 (1)
|
||||
0x120| 01 | . | [35]: 1 transition_type 0x123-0x123.7 (1)
|
||||
0x120| 07 | . | [36]: 7 transition_type 0x124-0x124.7 (1)
|
||||
0x120| 01 | . | [37]: 1 transition_type 0x125-0x125.7 (1)
|
||||
0x120| 07 | . | [38]: 7 transition_type 0x126-0x126.7 (1)
|
||||
0x120| 01 | . | [39]: 1 transition_type 0x127-0x127.7 (1)
|
||||
0x120| 07 | . | [40]: 7 transition_type 0x128-0x128.7 (1)
|
||||
0x120| 01 | . | [41]: 1 transition_type 0x129-0x129.7 (1)
|
||||
0x120| 07 | . | [42]: 7 transition_type 0x12a-0x12a.7 (1)
|
||||
0x120| 01 | . | [43]: 1 transition_type 0x12b-0x12b.7 (1)
|
||||
0x120| 07 | . | [44]: 7 transition_type 0x12c-0x12c.7 (1)
|
||||
0x120| 01 | . | [45]: 1 transition_type 0x12d-0x12d.7 (1)
|
||||
0x120| 07 | . | [46]: 7 transition_type 0x12e-0x12e.7 (1)
|
||||
0x120| 01| .| [47]: 1 transition_type 0x12f-0x12f.7 (1)
|
||||
0x130|07 |. | [48]: 7 transition_type 0x130-0x130.7 (1)
|
||||
0x130| 01 | . | [49]: 1 transition_type 0x131-0x131.7 (1)
|
||||
0x130| 07 | . | [50]: 7 transition_type 0x132-0x132.7 (1)
|
||||
0x130| 03 | . | [51]: 3 transition_type 0x133-0x133.7 (1)
|
||||
0x130| 03 | . | [52]: 3 transition_type 0x134-0x134.7 (1)
|
||||
| | | local_time_type_records[0:8]: 0x135-0x164.7 (48)
|
||||
| | | [0]{}: local_time_type 0x135-0x13a.7 (6)
|
||||
0x130| 00 00 45 f0 | ..E. | utoff: 17904 (valid) 0x135-0x138.7 (4)
|
||||
0x130| 00 | . | dst: 0 (valid) 0x139-0x139.7 (1)
|
||||
0x130| 00 | . | idx: 0 (valid) 0x13a-0x13a.7 (1)
|
||||
| | | [1]{}: local_time_type 0x13b-0x140.7 (6)
|
||||
0x130| 00 00 46 50 | ..FP | utoff: 18000 (valid) 0x13b-0x13e.7 (4)
|
||||
0x130| 00| .| dst: 0 (valid) 0x13f-0x13f.7 (1)
|
||||
0x140|04 |. | idx: 4 (valid) 0x140-0x140.7 (1)
|
||||
| | | [2]{}: local_time_type 0x141-0x146.7 (6)
|
||||
0x140| 00 00 62 70 | ..bp | utoff: 25200 (valid) 0x141-0x144.7 (4)
|
||||
0x140| 01 | . | dst: 1 (valid) 0x145-0x145.7 (1)
|
||||
0x140| 08 | . | idx: 8 (valid) 0x146-0x146.7 (1)
|
||||
| | | [3]{}: local_time_type 0x147-0x14c.7 (6)
|
||||
0x140| 00 00 54 60 | ..T` | utoff: 21600 (valid) 0x147-0x14a.7 (4)
|
||||
0x140| 00 | . | dst: 0 (valid) 0x14b-0x14b.7 (1)
|
||||
0x140| 0c | . | idx: 12 (valid) 0x14c-0x14c.7 (1)
|
||||
| | | [4]{}: local_time_type 0x14d-0x152.7 (6)
|
||||
0x140| 00 00 54| ..T| utoff: 21600 (valid) 0x14d-0x150.7 (4)
|
||||
0x150|60 |` |
|
||||
0x150| 00 | . | dst: 0 (valid) 0x151-0x151.7 (1)
|
||||
0x150| 0c | . | idx: 12 (valid) 0x152-0x152.7 (1)
|
||||
| | | [5]{}: local_time_type 0x153-0x158.7 (6)
|
||||
0x150| 00 00 62 70 | ..bp | utoff: 25200 (valid) 0x153-0x156.7 (4)
|
||||
0x150| 01 | . | dst: 1 (valid) 0x157-0x157.7 (1)
|
||||
0x150| 08 | . | idx: 8 (valid) 0x158-0x158.7 (1)
|
||||
| | | [6]{}: local_time_type 0x159-0x15e.7 (6)
|
||||
0x150| 00 00 54 60 | ..T` | utoff: 21600 (valid) 0x159-0x15c.7 (4)
|
||||
0x150| 01 | . | dst: 1 (valid) 0x15d-0x15d.7 (1)
|
||||
0x150| 0c | . | idx: 12 (valid) 0x15e-0x15e.7 (1)
|
||||
| | | [7]{}: local_time_type 0x15f-0x164.7 (6)
|
||||
0x150| 00| .| utoff: 21600 (valid) 0x15f-0x162.7 (4)
|
||||
0x160|00 54 60 |.T` |
|
||||
0x160| 01 | . | dst: 1 (valid) 0x163-0x163.7 (1)
|
||||
0x160| 0c | . | idx: 12 (valid) 0x164-0x164.7 (1)
|
||||
| | | time_zone_designations[0:4]: 0x165-0x174.7 (16)
|
||||
0x160| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x165-0x168.7 (4)
|
||||
0x160| 2b 30 35 00 | +05. | [1]: "+05" time_zone_designation 0x169-0x16c.7 (4)
|
||||
0x160| 2b 30 37| +07| [2]: "+07" time_zone_designation 0x16d-0x170.7 (4)
|
||||
0x170|00 |. |
|
||||
0x170| 2b 30 36 00 | +06. | [3]: "+06" time_zone_designation 0x171-0x174.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x175-0x24c.7 (216)
|
||||
| | | [0]{}: leap_second_record 0x175-0x17c.7 (8)
|
||||
0x170| 04 b2 58 00 | ..X. | occur: "1972-07-01T00:00:00Z" (78796800) 0x175-0x178.7 (4)
|
||||
0x170| 00 00 00 01 | .... | corr: 1 0x179-0x17c.7 (4)
|
||||
| | | [1]{}: leap_second_record 0x17d-0x184.7 (8)
|
||||
0x170| 05 a4 ec| ...| occur: "1973-01-01T00:00:01Z" (94694401) 0x17d-0x180.7 (4)
|
||||
0x180|01 |. |
|
||||
0x180| 00 00 00 02 | .... | corr: 2 0x181-0x184.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x185-0x18c.7 (8)
|
||||
0x180| 07 86 1f 82 | .... | occur: "1974-01-01T00:00:02Z" (126230402) 0x185-0x188.7 (4)
|
||||
0x180| 00 00 00 03 | .... | corr: 3 0x189-0x18c.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x18d-0x194.7 (8)
|
||||
0x180| 09 67 53| .gS| occur: "1975-01-01T00:00:03Z" (157766403) 0x18d-0x190.7 (4)
|
||||
0x190|03 |. |
|
||||
0x190| 00 00 00 04 | .... | corr: 4 0x191-0x194.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x195-0x19c.7 (8)
|
||||
0x190| 0b 48 86 84 | .H.. | occur: "1976-01-01T00:00:04Z" (189302404) 0x195-0x198.7 (4)
|
||||
0x190| 00 00 00 05 | .... | corr: 5 0x199-0x19c.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x19d-0x1a4.7 (8)
|
||||
0x190| 0d 2b 0b| .+.| occur: "1977-01-01T00:00:05Z" (220924805) 0x19d-0x1a0.7 (4)
|
||||
0x1a0|85 |. |
|
||||
0x1a0| 00 00 00 06 | .... | corr: 6 0x1a1-0x1a4.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x1a5-0x1ac.7 (8)
|
||||
0x1a0| 0f 0c 3f 06 | ..?. | occur: "1978-01-01T00:00:06Z" (252460806) 0x1a5-0x1a8.7 (4)
|
||||
0x1a0| 00 00 00 07 | .... | corr: 7 0x1a9-0x1ac.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x1ad-0x1b4.7 (8)
|
||||
0x1a0| 10 ed 72| ..r| occur: "1979-01-01T00:00:07Z" (283996807) 0x1ad-0x1b0.7 (4)
|
||||
0x1b0|87 |. |
|
||||
0x1b0| 00 00 00 08 | .... | corr: 8 0x1b1-0x1b4.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x1b5-0x1bc.7 (8)
|
||||
0x1b0| 12 ce a6 08 | .... | occur: "1980-01-01T00:00:08Z" (315532808) 0x1b5-0x1b8.7 (4)
|
||||
0x1b0| 00 00 00 09 | .... | corr: 9 0x1b9-0x1bc.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x1bd-0x1c4.7 (8)
|
||||
0x1b0| 15 9f ca| ...| occur: "1981-07-01T00:00:09Z" (362793609) 0x1bd-0x1c0.7 (4)
|
||||
0x1c0|89 |. |
|
||||
0x1c0| 00 00 00 0a | .... | corr: 10 0x1c1-0x1c4.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x1c5-0x1cc.7 (8)
|
||||
0x1c0| 17 80 fe 0a | .... | occur: "1982-07-01T00:00:10Z" (394329610) 0x1c5-0x1c8.7 (4)
|
||||
0x1c0| 00 00 00 0b | .... | corr: 11 0x1c9-0x1cc.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x1cd-0x1d4.7 (8)
|
||||
0x1c0| 19 62 31| .b1| occur: "1983-07-01T00:00:11Z" (425865611) 0x1cd-0x1d0.7 (4)
|
||||
0x1d0|8b |. |
|
||||
0x1d0| 00 00 00 0c | .... | corr: 12 0x1d1-0x1d4.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x1d5-0x1dc.7 (8)
|
||||
0x1d0| 1d 25 ea 0c | .%.. | occur: "1985-07-01T00:00:12Z" (489024012) 0x1d5-0x1d8.7 (4)
|
||||
0x1d0| 00 00 00 0d | .... | corr: 13 0x1d9-0x1dc.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x1dd-0x1e4.7 (8)
|
||||
0x1d0| 21 da e5| !..| occur: "1988-01-01T00:00:13Z" (567993613) 0x1dd-0x1e0.7 (4)
|
||||
0x1e0|0d |. |
|
||||
0x1e0| 00 00 00 0e | .... | corr: 14 0x1e1-0x1e4.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x1e5-0x1ec.7 (8)
|
||||
0x1e0| 25 9e 9d 8e | %... | occur: "1990-01-01T00:00:14Z" (631152014) 0x1e5-0x1e8.7 (4)
|
||||
0x1e0| 00 00 00 0f | .... | corr: 15 0x1e9-0x1ec.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x1ed-0x1f4.7 (8)
|
||||
0x1e0| 27 7f d1| '..| occur: "1991-01-01T00:00:15Z" (662688015) 0x1ed-0x1f0.7 (4)
|
||||
0x1f0|0f |. |
|
||||
0x1f0| 00 00 00 10 | .... | corr: 16 0x1f1-0x1f4.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x1f5-0x1fc.7 (8)
|
||||
0x1f0| 2a 50 f5 90 | *P.. | occur: "1992-07-01T00:00:16Z" (709948816) 0x1f5-0x1f8.7 (4)
|
||||
0x1f0| 00 00 00 11 | .... | corr: 17 0x1f9-0x1fc.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x1fd-0x204.7 (8)
|
||||
0x1f0| 2c 32 29| ,2)| occur: "1993-07-01T00:00:17Z" (741484817) 0x1fd-0x200.7 (4)
|
||||
0x200|11 |. |
|
||||
0x200| 00 00 00 12 | .... | corr: 18 0x201-0x204.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x205-0x20c.7 (8)
|
||||
0x200| 2e 13 5c 92 | ..\. | occur: "1994-07-01T00:00:18Z" (773020818) 0x205-0x208.7 (4)
|
||||
0x200| 00 00 00 13 | .... | corr: 19 0x209-0x20c.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x20d-0x214.7 (8)
|
||||
0x200| 30 e7 24| 0.$| occur: "1996-01-01T00:00:19Z" (820454419) 0x20d-0x210.7 (4)
|
||||
0x210|13 |. |
|
||||
0x210| 00 00 00 14 | .... | corr: 20 0x211-0x214.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x215-0x21c.7 (8)
|
||||
0x210| 33 b8 48 94 | 3.H. | occur: "1997-07-01T00:00:20Z" (867715220) 0x215-0x218.7 (4)
|
||||
0x210| 00 00 00 15 | .... | corr: 21 0x219-0x21c.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x21d-0x224.7 (8)
|
||||
0x210| 36 8c 10| 6..| occur: "1999-01-01T00:00:21Z" (915148821) 0x21d-0x220.7 (4)
|
||||
0x220|15 |. |
|
||||
0x220| 00 00 00 16 | .... | corr: 22 0x221-0x224.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x225-0x22c.7 (8)
|
||||
0x220| 43 b7 1b 96 | C... | occur: "2006-01-01T00:00:22Z" (1136073622) 0x225-0x228.7 (4)
|
||||
0x220| 00 00 00 17 | .... | corr: 23 0x229-0x22c.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x22d-0x234.7 (8)
|
||||
0x220| 49 5c 07| I\.| occur: "2009-01-01T00:00:23Z" (1230768023) 0x22d-0x230.7 (4)
|
||||
0x230|97 |. |
|
||||
0x230| 00 00 00 18 | .... | corr: 24 0x231-0x234.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x235-0x23c.7 (8)
|
||||
0x230| 4f ef 93 18 | O... | occur: "2012-07-01T00:00:24Z" (1341100824) 0x235-0x238.7 (4)
|
||||
0x230| 00 00 00 19 | .... | corr: 25 0x239-0x23c.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x23d-0x244.7 (8)
|
||||
0x230| 55 93 2d| U.-| occur: "2015-07-01T00:00:25Z" (1435708825) 0x23d-0x240.7 (4)
|
||||
0x240|99 |. |
|
||||
0x240| 00 00 00 1a | .... | corr: 26 0x241-0x244.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x245-0x24c.7 (8)
|
||||
0x240| 58 68 46 9a | XhF. | occur: "2017-01-01T00:00:26Z" (1483228826) 0x245-0x248.7 (4)
|
||||
0x240| 00 00 00 1b | .... | corr: 27 0x249-0x24c.7 (4)
|
||||
| | | standard_wall_indicators[0:8]: 0x24d-0x254.7 (8)
|
||||
0x240| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x24d-0x24d.7 (1)
|
||||
0x240| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x24e-0x24e.7 (1)
|
||||
0x240| 00| .| [2]: 0 standard_wall_indicator (valid) 0x24f-0x24f.7 (1)
|
||||
0x250|00 |. | [3]: 0 standard_wall_indicator (valid) 0x250-0x250.7 (1)
|
||||
0x250| 01 | . | [4]: 1 standard_wall_indicator (valid) 0x251-0x251.7 (1)
|
||||
0x250| 01 | . | [5]: 1 standard_wall_indicator (valid) 0x252-0x252.7 (1)
|
||||
0x250| 01 | . | [6]: 1 standard_wall_indicator (valid) 0x253-0x253.7 (1)
|
||||
0x250| 00 | . | [7]: 0 standard_wall_indicator (valid) 0x254-0x254.7 (1)
|
||||
| | | ut_local_indicators[0:0]: 0x255-NA (0)
|
||||
| | | v2plusheader{}: 0x255-0x280.7 (44)
|
||||
0x250| 54 5a 69 66 | TZif | magic: 0x545a6966 (valid) 0x255-0x258.7 (4)
|
||||
0x250| 32 | 2 | ver: "2" (0x32) (valid) 0x259-0x259.7 (1)
|
||||
0x250| 00 00 00 00 00 00| ......| reserved: raw bits 0x25a-0x268.7 (15)
|
||||
0x260|00 00 00 00 00 00 00 00 00 |......... |
|
||||
0x260| 00 00 00 00 | .... | isutcnt: 0 0x269-0x26c.7 (4)
|
||||
0x260| 00 00 00| ...| isstdcnt: 8 0x26d-0x270.7 (4)
|
||||
0x270|08 |. |
|
||||
0x270| 00 00 00 1b | .... | leapcnt: 27 0x271-0x274.7 (4)
|
||||
0x270| 00 00 00 35 | ...5 | timecnt: 53 0x275-0x278.7 (4)
|
||||
0x270| 00 00 00 08 | .... | typecnt: 8 0x279-0x27c.7 (4)
|
||||
0x270| 00 00 00| ...| charcnt: 16 0x27d-0x280.7 (4)
|
||||
0x280|10 |. |
|
||||
| | | v2plusdatablock{}: 0x281-0x5e9.7 (873)
|
||||
| | | transition_times[0:53]: 0x281-0x428.7 (424)
|
||||
0x280| ff ff ff ff aa 19 7e 10 | ......~. | [0]: "1924-05-01T19:01:36Z" (-1441169904) transition_time 0x281-0x288.7 (8)
|
||||
0x280| ff ff ff ff b5 a3 ef| .......| [1]: "1930-06-20T19:00:00Z" (-1247547600) transition_time 0x289-0x290.7 (8)
|
||||
0x290|30 |0 |
|
||||
0x290| 00 00 00 00 15 27 7d a9 | .....'}. | [2]: "1981-03-31T18:00:09Z" (354909609) transition_time 0x291-0x298.7 (8)
|
||||
0x290| 00 00 00 00 16 18 b2| .......| [3]: "1981-09-30T17:00:10Z" (370717210) transition_time 0x299-0x2a0.7 (8)
|
||||
0x2a0|1a |. |
|
||||
0x2a0| 00 00 00 00 17 08 b1 2a | .......* | [4]: "1982-03-31T18:00:10Z" (386445610) transition_time 0x2a1-0x2a8.7 (8)
|
||||
0x2a0| 00 00 00 00 17 f9 e5| .......| [5]: "1982-09-30T17:00:11Z" (402253211) transition_time 0x2a9-0x2b0.7 (8)
|
||||
0x2b0|9b |. |
|
||||
0x2b0| 00 00 00 00 18 e9 e4 ab | ........ | [6]: "1983-03-31T18:00:11Z" (417981611) transition_time 0x2b1-0x2b8.7 (8)
|
||||
0x2b0| 00 00 00 00 19 db 19| .......| [7]: "1983-09-30T17:00:12Z" (433789212) transition_time 0x2b9-0x2c0.7 (8)
|
||||
0x2c0|1c |. |
|
||||
0x2c0| 00 00 00 00 1a cc 69 ac | ......i. | [8]: "1984-03-31T18:00:12Z" (449604012) transition_time 0x2c1-0x2c8.7 (8)
|
||||
0x2c0| 00 00 00 00 1b bc 76| ......v| [9]: "1984-09-29T20:00:12Z" (465336012) transition_time 0x2c9-0x2d0.7 (8)
|
||||
0x2d0|cc |. |
|
||||
0x2d0| 00 00 00 00 1c ac 67 cc | ......g. | [10]: "1985-03-30T20:00:12Z" (481060812) transition_time 0x2d1-0x2d8.7 (8)
|
||||
0x2d0| 00 00 00 00 1d 9c 58| ......X| [11]: "1985-09-28T20:00:13Z" (496785613) transition_time 0x2d9-0x2e0.7 (8)
|
||||
0x2e0|cd |. |
|
||||
0x2e0| 00 00 00 00 1e 8c 49 cd | ......I. | [12]: "1986-03-29T20:00:13Z" (512510413) transition_time 0x2e1-0x2e8.7 (8)
|
||||
0x2e0| 00 00 00 00 1f 7c 3a| .....|:| [13]: "1986-09-27T20:00:13Z" (528235213) transition_time 0x2e9-0x2f0.7 (8)
|
||||
0x2f0|cd |. |
|
||||
0x2f0| 00 00 00 00 20 6c 2b cd | .... l+. | [14]: "1987-03-28T20:00:13Z" (543960013) transition_time 0x2f1-0x2f8.7 (8)
|
||||
0x2f0| 00 00 00 00 21 5c 1c| ....!\.| [15]: "1987-09-26T20:00:13Z" (559684813) transition_time 0x2f9-0x300.7 (8)
|
||||
0x300|cd |. |
|
||||
0x300| 00 00 00 00 22 4c 0d ce | ...."L.. | [16]: "1988-03-26T20:00:14Z" (575409614) transition_time 0x301-0x308.7 (8)
|
||||
0x300| 00 00 00 00 23 3b fe| ....#;.| [17]: "1988-09-24T20:00:14Z" (591134414) transition_time 0x309-0x310.7 (8)
|
||||
0x310|ce |. |
|
||||
0x310| 00 00 00 00 24 2b ef ce | ....$+.. | [18]: "1989-03-25T20:00:14Z" (606859214) transition_time 0x311-0x318.7 (8)
|
||||
0x310| 00 00 00 00 25 1b e0| ....%..| [19]: "1989-09-23T20:00:14Z" (622584014) transition_time 0x319-0x320.7 (8)
|
||||
0x320|ce |. |
|
||||
0x320| 00 00 00 00 26 0b d1 cf | ....&... | [20]: "1990-03-24T20:00:15Z" (638308815) transition_time 0x321-0x328.7 (8)
|
||||
0x320| 00 00 00 00 27 04 fd| ....'..| [21]: "1990-09-29T20:00:15Z" (654638415) transition_time 0x329-0x330.7 (8)
|
||||
0x330|4f |O |
|
||||
0x330| 00 00 00 00 27 f4 ee 50 | ....'..P | [22]: "1991-03-30T20:00:16Z" (670363216) transition_time 0x331-0x338.7 (8)
|
||||
0x330| 00 00 00 00 28 be a3| ....(..| [23]: "1991-08-30T20:00:16Z" (683582416) transition_time 0x339-0x340.7 (8)
|
||||
0x340|d0 |. |
|
||||
0x340| 00 00 00 00 29 e7 37 40 | ....).7@ | [24]: "1992-04-11T19:00:16Z" (703018816) transition_time 0x341-0x348.7 (8)
|
||||
0x340| 00 00 00 00 2a c4 a5| ....*..| [25]: "1992-09-26T18:00:17Z" (717530417) transition_time 0x349-0x350.7 (8)
|
||||
0x350|31 |1 |
|
||||
0x350| 00 00 00 00 2b c7 19 41 | ....+..A | [26]: "1993-04-10T19:00:17Z" (734468417) transition_time 0x351-0x358.7 (8)
|
||||
0x350| 00 00 00 00 2c a4 87| ....,..| [27]: "1993-09-25T18:00:18Z" (748980018) transition_time 0x359-0x360.7 (8)
|
||||
0x360|32 |2 |
|
||||
0x360| 00 00 00 00 2d a6 fb 42 | ....-..B | [28]: "1994-04-09T19:00:18Z" (765918018) transition_time 0x361-0x368.7 (8)
|
||||
0x360| 00 00 00 00 2e 84 69| ......i| [29]: "1994-09-24T18:00:19Z" (780429619) transition_time 0x369-0x370.7 (8)
|
||||
0x370|33 |3 |
|
||||
0x370| 00 00 00 00 2f 86 dd 43 | ..../..C | [30]: "1995-04-08T19:00:19Z" (797367619) transition_time 0x371-0x378.7 (8)
|
||||
0x370| 00 00 00 00 30 64 4b| ....0dK| [31]: "1995-09-23T18:00:19Z" (811879219) transition_time 0x379-0x380.7 (8)
|
||||
0x380|33 |3 |
|
||||
0x380| 00 00 00 00 31 66 bf 44 | ....1f.D | [32]: "1996-04-06T19:00:20Z" (828817220) transition_time 0x381-0x388.7 (8)
|
||||
0x380| 00 00 00 00 32 4d 67| ....2Mg| [33]: "1996-09-28T18:00:20Z" (843933620) transition_time 0x389-0x390.7 (8)
|
||||
0x390|b4 |. |
|
||||
0x390| 00 00 00 00 33 3d 89 ec | ....3=.. | [34]: "1997-03-29T21:30:20Z" (859671020) transition_time 0x391-0x398.7 (8)
|
||||
0x390| 00 00 00 00 34 52 56| ....4RV| [35]: "1997-10-25T20:30:21Z" (877811421) transition_time 0x399-0x3a0.7 (8)
|
||||
0x3a0|dd |. |
|
||||
0x3a0| 00 00 00 00 35 1d 6b ed | ....5.k. | [36]: "1998-03-28T21:30:21Z" (891120621) transition_time 0x3a1-0x3a8.7 (8)
|
||||
0x3a0| 00 00 00 00 36 32 38| ....628| [37]: "1998-10-24T20:30:21Z" (909261021) transition_time 0x3a9-0x3b0.7 (8)
|
||||
0x3b0|dd |. |
|
||||
0x3b0| 00 00 00 00 36 fd 4d ee | ....6.M. | [38]: "1999-03-27T21:30:22Z" (922570222) transition_time 0x3b1-0x3b8.7 (8)
|
||||
0x3b0| 00 00 00 00 38 1b 55| ....8.U| [39]: "1999-10-30T20:30:22Z" (941315422) transition_time 0x3b9-0x3c0.7 (8)
|
||||
0x3c0|5e |^ |
|
||||
0x3c0| 00 00 00 00 38 dd 2f ee | ....8./. | [40]: "2000-03-25T21:30:22Z" (954019822) transition_time 0x3c1-0x3c8.7 (8)
|
||||
0x3c0| 00 00 00 00 39 fb 37| ....9.7| [41]: "2000-10-28T20:30:22Z" (972765022) transition_time 0x3c9-0x3d0.7 (8)
|
||||
0x3d0|5e |^ |
|
||||
0x3d0| 00 00 00 00 3a bd 11 ee | ....:... | [42]: "2001-03-24T21:30:22Z" (985469422) transition_time 0x3d1-0x3d8.7 (8)
|
||||
0x3d0| 00 00 00 00 3b db 19| ....;..| [43]: "2001-10-27T20:30:22Z" (1004214622) transition_time 0x3d9-0x3e0.7 (8)
|
||||
0x3e0|5e |^ |
|
||||
0x3e0| 00 00 00 00 3c a6 2e 6e | ....<..n | [44]: "2002-03-30T21:30:22Z" (1017523822) transition_time 0x3e1-0x3e8.7 (8)
|
||||
0x3e0| 00 00 00 00 3d ba fb| ....=..| [45]: "2002-10-26T20:30:22Z" (1035664222) transition_time 0x3e9-0x3f0.7 (8)
|
||||
0x3f0|5e |^ |
|
||||
0x3f0| 00 00 00 00 3e 86 10 6e | ....>..n | [46]: "2003-03-29T21:30:22Z" (1048973422) transition_time 0x3f1-0x3f8.7 (8)
|
||||
0x3f0| 00 00 00 00 3f 9a dd| ....?..| [47]: "2003-10-25T20:30:22Z" (1067113822) transition_time 0x3f9-0x400.7 (8)
|
||||
0x400|5e |^ |
|
||||
0x400| 00 00 00 00 40 65 f2 6e | ....@e.n | [48]: "2004-03-27T21:30:22Z" (1080423022) transition_time 0x401-0x408.7 (8)
|
||||
0x400| 00 00 00 00 41 83 f9| ....A..| [49]: "2004-10-30T20:30:22Z" (1099168222) transition_time 0x409-0x410.7 (8)
|
||||
0x410|de |. |
|
||||
0x410| 00 00 00 00 42 45 d4 6e | ....BE.n | [50]: "2005-03-26T21:30:22Z" (1111872622) transition_time 0x411-0x418.7 (8)
|
||||
0x410| 00 00 00 00 42 fb 92| ....B..| [51]: "2005-08-11T18:00:22Z" (1123783222) transition_time 0x419-0x420.7 (8)
|
||||
0x420|36 |6 |
|
||||
0x420| 00 00 00 00 64 9b 78 1b | ....d.x. | [52]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x421-0x428.7 (8)
|
||||
| | | transition_types[0:53]: 0x429-0x45d.7 (53)
|
||||
0x420| 01 | . | [0]: 1 transition_type 0x429-0x429.7 (1)
|
||||
0x420| 03 | . | [1]: 3 transition_type 0x42a-0x42a.7 (1)
|
||||
0x420| 02 | . | [2]: 2 transition_type 0x42b-0x42b.7 (1)
|
||||
0x420| 03 | . | [3]: 3 transition_type 0x42c-0x42c.7 (1)
|
||||
0x420| 02 | . | [4]: 2 transition_type 0x42d-0x42d.7 (1)
|
||||
0x420| 03 | . | [5]: 3 transition_type 0x42e-0x42e.7 (1)
|
||||
0x420| 02| .| [6]: 2 transition_type 0x42f-0x42f.7 (1)
|
||||
0x430|03 |. | [7]: 3 transition_type 0x430-0x430.7 (1)
|
||||
0x430| 02 | . | [8]: 2 transition_type 0x431-0x431.7 (1)
|
||||
0x430| 04 | . | [9]: 4 transition_type 0x432-0x432.7 (1)
|
||||
0x430| 05 | . | [10]: 5 transition_type 0x433-0x433.7 (1)
|
||||
0x430| 04 | . | [11]: 4 transition_type 0x434-0x434.7 (1)
|
||||
0x430| 05 | . | [12]: 5 transition_type 0x435-0x435.7 (1)
|
||||
0x430| 04 | . | [13]: 4 transition_type 0x436-0x436.7 (1)
|
||||
0x430| 05 | . | [14]: 5 transition_type 0x437-0x437.7 (1)
|
||||
0x430| 04 | . | [15]: 4 transition_type 0x438-0x438.7 (1)
|
||||
0x430| 05 | . | [16]: 5 transition_type 0x439-0x439.7 (1)
|
||||
0x430| 04 | . | [17]: 4 transition_type 0x43a-0x43a.7 (1)
|
||||
0x430| 05 | . | [18]: 5 transition_type 0x43b-0x43b.7 (1)
|
||||
0x430| 04 | . | [19]: 4 transition_type 0x43c-0x43c.7 (1)
|
||||
0x430| 05 | . | [20]: 5 transition_type 0x43d-0x43d.7 (1)
|
||||
0x430| 04 | . | [21]: 4 transition_type 0x43e-0x43e.7 (1)
|
||||
0x430| 06| .| [22]: 6 transition_type 0x43f-0x43f.7 (1)
|
||||
0x440|01 |. | [23]: 1 transition_type 0x440-0x440.7 (1)
|
||||
0x440| 06 | . | [24]: 6 transition_type 0x441-0x441.7 (1)
|
||||
0x440| 01 | . | [25]: 1 transition_type 0x442-0x442.7 (1)
|
||||
0x440| 06 | . | [26]: 6 transition_type 0x443-0x443.7 (1)
|
||||
0x440| 01 | . | [27]: 1 transition_type 0x444-0x444.7 (1)
|
||||
0x440| 06 | . | [28]: 6 transition_type 0x445-0x445.7 (1)
|
||||
0x440| 01 | . | [29]: 1 transition_type 0x446-0x446.7 (1)
|
||||
0x440| 06 | . | [30]: 6 transition_type 0x447-0x447.7 (1)
|
||||
0x440| 01 | . | [31]: 1 transition_type 0x448-0x448.7 (1)
|
||||
0x440| 06 | . | [32]: 6 transition_type 0x449-0x449.7 (1)
|
||||
0x440| 01 | . | [33]: 1 transition_type 0x44a-0x44a.7 (1)
|
||||
0x440| 07 | . | [34]: 7 transition_type 0x44b-0x44b.7 (1)
|
||||
0x440| 01 | . | [35]: 1 transition_type 0x44c-0x44c.7 (1)
|
||||
0x440| 07 | . | [36]: 7 transition_type 0x44d-0x44d.7 (1)
|
||||
0x440| 01 | . | [37]: 1 transition_type 0x44e-0x44e.7 (1)
|
||||
0x440| 07| .| [38]: 7 transition_type 0x44f-0x44f.7 (1)
|
||||
0x450|01 |. | [39]: 1 transition_type 0x450-0x450.7 (1)
|
||||
0x450| 07 | . | [40]: 7 transition_type 0x451-0x451.7 (1)
|
||||
0x450| 01 | . | [41]: 1 transition_type 0x452-0x452.7 (1)
|
||||
0x450| 07 | . | [42]: 7 transition_type 0x453-0x453.7 (1)
|
||||
0x450| 01 | . | [43]: 1 transition_type 0x454-0x454.7 (1)
|
||||
0x450| 07 | . | [44]: 7 transition_type 0x455-0x455.7 (1)
|
||||
0x450| 01 | . | [45]: 1 transition_type 0x456-0x456.7 (1)
|
||||
0x450| 07 | . | [46]: 7 transition_type 0x457-0x457.7 (1)
|
||||
0x450| 01 | . | [47]: 1 transition_type 0x458-0x458.7 (1)
|
||||
0x450| 07 | . | [48]: 7 transition_type 0x459-0x459.7 (1)
|
||||
0x450| 01 | . | [49]: 1 transition_type 0x45a-0x45a.7 (1)
|
||||
0x450| 07 | . | [50]: 7 transition_type 0x45b-0x45b.7 (1)
|
||||
0x450| 03 | . | [51]: 3 transition_type 0x45c-0x45c.7 (1)
|
||||
0x450| 03 | . | [52]: 3 transition_type 0x45d-0x45d.7 (1)
|
||||
| | | local_time_type_records[0:8]: 0x45e-0x48d.7 (48)
|
||||
| | | [0]{}: local_time_type 0x45e-0x463.7 (6)
|
||||
0x450| 00 00| ..| utoff: 17904 (valid) 0x45e-0x461.7 (4)
|
||||
0x460|45 f0 |E. |
|
||||
0x460| 00 | . | dst: 0 (valid) 0x462-0x462.7 (1)
|
||||
0x460| 00 | . | idx: 0 (valid) 0x463-0x463.7 (1)
|
||||
| | | [1]{}: local_time_type 0x464-0x469.7 (6)
|
||||
0x460| 00 00 46 50 | ..FP | utoff: 18000 (valid) 0x464-0x467.7 (4)
|
||||
0x460| 00 | . | dst: 0 (valid) 0x468-0x468.7 (1)
|
||||
0x460| 04 | . | idx: 4 (valid) 0x469-0x469.7 (1)
|
||||
| | | [2]{}: local_time_type 0x46a-0x46f.7 (6)
|
||||
0x460| 00 00 62 70 | ..bp | utoff: 25200 (valid) 0x46a-0x46d.7 (4)
|
||||
0x460| 01 | . | dst: 1 (valid) 0x46e-0x46e.7 (1)
|
||||
0x460| 08| .| idx: 8 (valid) 0x46f-0x46f.7 (1)
|
||||
| | | [3]{}: local_time_type 0x470-0x475.7 (6)
|
||||
0x470|00 00 54 60 |..T` | utoff: 21600 (valid) 0x470-0x473.7 (4)
|
||||
0x470| 00 | . | dst: 0 (valid) 0x474-0x474.7 (1)
|
||||
0x470| 0c | . | idx: 12 (valid) 0x475-0x475.7 (1)
|
||||
| | | [4]{}: local_time_type 0x476-0x47b.7 (6)
|
||||
0x470| 00 00 54 60 | ..T` | utoff: 21600 (valid) 0x476-0x479.7 (4)
|
||||
0x470| 00 | . | dst: 0 (valid) 0x47a-0x47a.7 (1)
|
||||
0x470| 0c | . | idx: 12 (valid) 0x47b-0x47b.7 (1)
|
||||
| | | [5]{}: local_time_type 0x47c-0x481.7 (6)
|
||||
0x470| 00 00 62 70| ..bp| utoff: 25200 (valid) 0x47c-0x47f.7 (4)
|
||||
0x480|01 |. | dst: 1 (valid) 0x480-0x480.7 (1)
|
||||
0x480| 08 | . | idx: 8 (valid) 0x481-0x481.7 (1)
|
||||
| | | [6]{}: local_time_type 0x482-0x487.7 (6)
|
||||
0x480| 00 00 54 60 | ..T` | utoff: 21600 (valid) 0x482-0x485.7 (4)
|
||||
0x480| 01 | . | dst: 1 (valid) 0x486-0x486.7 (1)
|
||||
0x480| 0c | . | idx: 12 (valid) 0x487-0x487.7 (1)
|
||||
| | | [7]{}: local_time_type 0x488-0x48d.7 (6)
|
||||
0x480| 00 00 54 60 | ..T` | utoff: 21600 (valid) 0x488-0x48b.7 (4)
|
||||
0x480| 01 | . | dst: 1 (valid) 0x48c-0x48c.7 (1)
|
||||
0x480| 0c | . | idx: 12 (valid) 0x48d-0x48d.7 (1)
|
||||
| | | time_zone_designations[0:4]: 0x48e-0x49d.7 (16)
|
||||
0x480| 4c 4d| LM| [0]: "LMT" time_zone_designation 0x48e-0x491.7 (4)
|
||||
0x490|54 00 |T. |
|
||||
0x490| 2b 30 35 00 | +05. | [1]: "+05" time_zone_designation 0x492-0x495.7 (4)
|
||||
0x490| 2b 30 37 00 | +07. | [2]: "+07" time_zone_designation 0x496-0x499.7 (4)
|
||||
0x490| 2b 30 36 00 | +06. | [3]: "+06" time_zone_designation 0x49a-0x49d.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x49e-0x5e1.7 (324)
|
||||
| | | [0]{}: leap_second_record 0x49e-0x4a9.7 (12)
|
||||
0x490| 00 00| ..| occur: "1972-07-01T00:00:00Z" (78796800) 0x49e-0x4a5.7 (8)
|
||||
0x4a0|00 00 04 b2 58 00 |....X. |
|
||||
0x4a0| 00 00 00 01 | .... | corr: 1 0x4a6-0x4a9.7 (4)
|
||||
| | | [1]{}: leap_second_record 0x4aa-0x4b5.7 (12)
|
||||
0x4a0| 00 00 00 00 05 a4| ......| occur: "1973-01-01T00:00:01Z" (94694401) 0x4aa-0x4b1.7 (8)
|
||||
0x4b0|ec 01 |.. |
|
||||
0x4b0| 00 00 00 02 | .... | corr: 2 0x4b2-0x4b5.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x4b6-0x4c1.7 (12)
|
||||
0x4b0| 00 00 00 00 07 86 1f 82 | ........ | occur: "1974-01-01T00:00:02Z" (126230402) 0x4b6-0x4bd.7 (8)
|
||||
0x4b0| 00 00| ..| corr: 3 0x4be-0x4c1.7 (4)
|
||||
0x4c0|00 03 |.. |
|
||||
| | | [3]{}: leap_second_record 0x4c2-0x4cd.7 (12)
|
||||
0x4c0| 00 00 00 00 09 67 53 03 | .....gS. | occur: "1975-01-01T00:00:03Z" (157766403) 0x4c2-0x4c9.7 (8)
|
||||
0x4c0| 00 00 00 04 | .... | corr: 4 0x4ca-0x4cd.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x4ce-0x4d9.7 (12)
|
||||
0x4c0| 00 00| ..| occur: "1976-01-01T00:00:04Z" (189302404) 0x4ce-0x4d5.7 (8)
|
||||
0x4d0|00 00 0b 48 86 84 |...H.. |
|
||||
0x4d0| 00 00 00 05 | .... | corr: 5 0x4d6-0x4d9.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x4da-0x4e5.7 (12)
|
||||
0x4d0| 00 00 00 00 0d 2b| .....+| occur: "1977-01-01T00:00:05Z" (220924805) 0x4da-0x4e1.7 (8)
|
||||
0x4e0|0b 85 |.. |
|
||||
0x4e0| 00 00 00 06 | .... | corr: 6 0x4e2-0x4e5.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x4e6-0x4f1.7 (12)
|
||||
0x4e0| 00 00 00 00 0f 0c 3f 06 | ......?. | occur: "1978-01-01T00:00:06Z" (252460806) 0x4e6-0x4ed.7 (8)
|
||||
0x4e0| 00 00| ..| corr: 7 0x4ee-0x4f1.7 (4)
|
||||
0x4f0|00 07 |.. |
|
||||
| | | [7]{}: leap_second_record 0x4f2-0x4fd.7 (12)
|
||||
0x4f0| 00 00 00 00 10 ed 72 87 | ......r. | occur: "1979-01-01T00:00:07Z" (283996807) 0x4f2-0x4f9.7 (8)
|
||||
0x4f0| 00 00 00 08 | .... | corr: 8 0x4fa-0x4fd.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x4fe-0x509.7 (12)
|
||||
0x4f0| 00 00| ..| occur: "1980-01-01T00:00:08Z" (315532808) 0x4fe-0x505.7 (8)
|
||||
0x500|00 00 12 ce a6 08 |...... |
|
||||
0x500| 00 00 00 09 | .... | corr: 9 0x506-0x509.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x50a-0x515.7 (12)
|
||||
0x500| 00 00 00 00 15 9f| ......| occur: "1981-07-01T00:00:09Z" (362793609) 0x50a-0x511.7 (8)
|
||||
0x510|ca 89 |.. |
|
||||
0x510| 00 00 00 0a | .... | corr: 10 0x512-0x515.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x516-0x521.7 (12)
|
||||
0x510| 00 00 00 00 17 80 fe 0a | ........ | occur: "1982-07-01T00:00:10Z" (394329610) 0x516-0x51d.7 (8)
|
||||
0x510| 00 00| ..| corr: 11 0x51e-0x521.7 (4)
|
||||
0x520|00 0b |.. |
|
||||
| | | [11]{}: leap_second_record 0x522-0x52d.7 (12)
|
||||
0x520| 00 00 00 00 19 62 31 8b | .....b1. | occur: "1983-07-01T00:00:11Z" (425865611) 0x522-0x529.7 (8)
|
||||
0x520| 00 00 00 0c | .... | corr: 12 0x52a-0x52d.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x52e-0x539.7 (12)
|
||||
0x520| 00 00| ..| occur: "1985-07-01T00:00:12Z" (489024012) 0x52e-0x535.7 (8)
|
||||
0x530|00 00 1d 25 ea 0c |...%.. |
|
||||
0x530| 00 00 00 0d | .... | corr: 13 0x536-0x539.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x53a-0x545.7 (12)
|
||||
0x530| 00 00 00 00 21 da| ....!.| occur: "1988-01-01T00:00:13Z" (567993613) 0x53a-0x541.7 (8)
|
||||
0x540|e5 0d |.. |
|
||||
0x540| 00 00 00 0e | .... | corr: 14 0x542-0x545.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x546-0x551.7 (12)
|
||||
0x540| 00 00 00 00 25 9e 9d 8e | ....%... | occur: "1990-01-01T00:00:14Z" (631152014) 0x546-0x54d.7 (8)
|
||||
0x540| 00 00| ..| corr: 15 0x54e-0x551.7 (4)
|
||||
0x550|00 0f |.. |
|
||||
| | | [15]{}: leap_second_record 0x552-0x55d.7 (12)
|
||||
0x550| 00 00 00 00 27 7f d1 0f | ....'... | occur: "1991-01-01T00:00:15Z" (662688015) 0x552-0x559.7 (8)
|
||||
0x550| 00 00 00 10 | .... | corr: 16 0x55a-0x55d.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x55e-0x569.7 (12)
|
||||
0x550| 00 00| ..| occur: "1992-07-01T00:00:16Z" (709948816) 0x55e-0x565.7 (8)
|
||||
0x560|00 00 2a 50 f5 90 |..*P.. |
|
||||
0x560| 00 00 00 11 | .... | corr: 17 0x566-0x569.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x56a-0x575.7 (12)
|
||||
0x560| 00 00 00 00 2c 32| ....,2| occur: "1993-07-01T00:00:17Z" (741484817) 0x56a-0x571.7 (8)
|
||||
0x570|29 11 |). |
|
||||
0x570| 00 00 00 12 | .... | corr: 18 0x572-0x575.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x576-0x581.7 (12)
|
||||
0x570| 00 00 00 00 2e 13 5c 92 | ......\. | occur: "1994-07-01T00:00:18Z" (773020818) 0x576-0x57d.7 (8)
|
||||
0x570| 00 00| ..| corr: 19 0x57e-0x581.7 (4)
|
||||
0x580|00 13 |.. |
|
||||
| | | [19]{}: leap_second_record 0x582-0x58d.7 (12)
|
||||
0x580| 00 00 00 00 30 e7 24 13 | ....0.$. | occur: "1996-01-01T00:00:19Z" (820454419) 0x582-0x589.7 (8)
|
||||
0x580| 00 00 00 14 | .... | corr: 20 0x58a-0x58d.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x58e-0x599.7 (12)
|
||||
0x580| 00 00| ..| occur: "1997-07-01T00:00:20Z" (867715220) 0x58e-0x595.7 (8)
|
||||
0x590|00 00 33 b8 48 94 |..3.H. |
|
||||
0x590| 00 00 00 15 | .... | corr: 21 0x596-0x599.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x59a-0x5a5.7 (12)
|
||||
0x590| 00 00 00 00 36 8c| ....6.| occur: "1999-01-01T00:00:21Z" (915148821) 0x59a-0x5a1.7 (8)
|
||||
0x5a0|10 15 |.. |
|
||||
0x5a0| 00 00 00 16 | .... | corr: 22 0x5a2-0x5a5.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x5a6-0x5b1.7 (12)
|
||||
0x5a0| 00 00 00 00 43 b7 1b 96 | ....C... | occur: "2006-01-01T00:00:22Z" (1136073622) 0x5a6-0x5ad.7 (8)
|
||||
0x5a0| 00 00| ..| corr: 23 0x5ae-0x5b1.7 (4)
|
||||
0x5b0|00 17 |.. |
|
||||
| | | [23]{}: leap_second_record 0x5b2-0x5bd.7 (12)
|
||||
0x5b0| 00 00 00 00 49 5c 07 97 | ....I\.. | occur: "2009-01-01T00:00:23Z" (1230768023) 0x5b2-0x5b9.7 (8)
|
||||
0x5b0| 00 00 00 18 | .... | corr: 24 0x5ba-0x5bd.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x5be-0x5c9.7 (12)
|
||||
0x5b0| 00 00| ..| occur: "2012-07-01T00:00:24Z" (1341100824) 0x5be-0x5c5.7 (8)
|
||||
0x5c0|00 00 4f ef 93 18 |..O... |
|
||||
0x5c0| 00 00 00 19 | .... | corr: 25 0x5c6-0x5c9.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x5ca-0x5d5.7 (12)
|
||||
0x5c0| 00 00 00 00 55 93| ....U.| occur: "2015-07-01T00:00:25Z" (1435708825) 0x5ca-0x5d1.7 (8)
|
||||
0x5d0|2d 99 |-. |
|
||||
0x5d0| 00 00 00 1a | .... | corr: 26 0x5d2-0x5d5.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x5d6-0x5e1.7 (12)
|
||||
0x5d0| 00 00 00 00 58 68 46 9a | ....XhF. | occur: "2017-01-01T00:00:26Z" (1483228826) 0x5d6-0x5dd.7 (8)
|
||||
0x5d0| 00 00| ..| corr: 27 0x5de-0x5e1.7 (4)
|
||||
0x5e0|00 1b |.. |
|
||||
| | | standard_wall_indicators[0:8]: 0x5e2-0x5e9.7 (8)
|
||||
0x5e0| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x5e2-0x5e2.7 (1)
|
||||
0x5e0| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x5e3-0x5e3.7 (1)
|
||||
0x5e0| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x5e4-0x5e4.7 (1)
|
||||
0x5e0| 00 | . | [3]: 0 standard_wall_indicator (valid) 0x5e5-0x5e5.7 (1)
|
||||
0x5e0| 01 | . | [4]: 1 standard_wall_indicator (valid) 0x5e6-0x5e6.7 (1)
|
||||
0x5e0| 01 | . | [5]: 1 standard_wall_indicator (valid) 0x5e7-0x5e7.7 (1)
|
||||
0x5e0| 01 | . | [6]: 1 standard_wall_indicator (valid) 0x5e8-0x5e8.7 (1)
|
||||
0x5e0| 00 | . | [7]: 0 standard_wall_indicator (valid) 0x5e9-0x5e9.7 (1)
|
||||
| | | ut_local_indicators[0:0]: 0x5ea-NA (0)
|
||||
| | | footer{}: 0x5ea-0x5eb.7 (2)
|
||||
0x5e0| 0a | . | nl1: 10 (valid) 0x5ea-0x5ea.7 (1)
|
||||
| | | tz_string: "" 0x5eb-NA (0)
|
||||
0x5e0| 0a| | .| | nl2: 10 (valid) 0x5eb-0x5eb.7 (1)
|
BIN
format/tzif/testdata/Bissau
vendored
Normal file
BIN
format/tzif/testdata/Bissau
vendored
Normal file
Binary file not shown.
100
format/tzif/testdata/Bissau.fqtest
vendored
Normal file
100
format/tzif/testdata/Bissau.fqtest
vendored
Normal file
@ -0,0 +1,100 @@
|
||||
$ fq -d tzif dv Bissau
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: Bissau (tzif) 0x0-0xc1.7 (194)
|
||||
| | | v1header{}: 0x0-0x2b.7 (44)
|
||||
0x00|54 5a 69 66 |TZif | magic: 0x545a6966 (valid) 0x0-0x3.7 (4)
|
||||
0x00| 32 | 2 | ver: "2" (0x32) (valid) 0x4-0x4.7 (1)
|
||||
0x00| 00 00 00 00 00 00 00 00 00 00 00| ...........| reserved: raw bits 0x5-0x13.7 (15)
|
||||
0x10|00 00 00 00 |.... |
|
||||
0x10| 00 00 00 03 | .... | isutcnt: 3 0x14-0x17.7 (4)
|
||||
0x10| 00 00 00 03 | .... | isstdcnt: 3 0x18-0x1b.7 (4)
|
||||
0x10| 00 00 00 00| ....| leapcnt: 0 0x1c-0x1f.7 (4)
|
||||
0x20|00 00 00 02 |.... | timecnt: 2 0x20-0x23.7 (4)
|
||||
0x20| 00 00 00 03 | .... | typecnt: 3 0x24-0x27.7 (4)
|
||||
0x20| 00 00 00 0c | .... | charcnt: 12 0x28-0x2b.7 (4)
|
||||
| | | v1datablock{}: 0x2c-0x59.7 (46)
|
||||
| | | transition_times[0:2]: 0x2c-0x33.7 (8)
|
||||
0x20| 92 e6 9c 90| ....| [0]: "1912-01-01T01:00:00Z" (-1830380400) transition_time 0x2c-0x2f.7 (4)
|
||||
0x30|09 67 61 10 |.ga. | [1]: "1975-01-01T01:00:00Z" (157770000) transition_time 0x30-0x33.7 (4)
|
||||
| | | transition_types[0:2]: 0x34-0x35.7 (2)
|
||||
0x30| 01 | . | [0]: 1 transition_type 0x34-0x34.7 (1)
|
||||
0x30| 02 | . | [1]: 2 transition_type 0x35-0x35.7 (1)
|
||||
| | | local_time_type_records[0:3]: 0x36-0x47.7 (18)
|
||||
| | | [0]{}: local_time_type 0x36-0x3b.7 (6)
|
||||
0x30| ff ff f1 64 | ...d | utoff: -3740 (valid) 0x36-0x39.7 (4)
|
||||
0x30| 00 | . | dst: 0 (valid) 0x3a-0x3a.7 (1)
|
||||
0x30| 00 | . | idx: 0 (valid) 0x3b-0x3b.7 (1)
|
||||
| | | [1]{}: local_time_type 0x3c-0x41.7 (6)
|
||||
0x30| ff ff f1 f0| ....| utoff: -3600 (valid) 0x3c-0x3f.7 (4)
|
||||
0x40|00 |. | dst: 0 (valid) 0x40-0x40.7 (1)
|
||||
0x40| 04 | . | idx: 4 (valid) 0x41-0x41.7 (1)
|
||||
| | | [2]{}: local_time_type 0x42-0x47.7 (6)
|
||||
0x40| 00 00 00 00 | .... | utoff: 0 (valid) 0x42-0x45.7 (4)
|
||||
0x40| 00 | . | dst: 0 (valid) 0x46-0x46.7 (1)
|
||||
0x40| 08 | . | idx: 8 (valid) 0x47-0x47.7 (1)
|
||||
| | | time_zone_designations[0:3]: 0x48-0x53.7 (12)
|
||||
0x40| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x48-0x4b.7 (4)
|
||||
0x40| 2d 30 31 00| -01.| [1]: "-01" time_zone_designation 0x4c-0x4f.7 (4)
|
||||
0x50|47 4d 54 00 |GMT. | [2]: "GMT" time_zone_designation 0x50-0x53.7 (4)
|
||||
| | | leap_second_records[0:0]: 0x54-NA (0)
|
||||
| | | standard_wall_indicators[0:3]: 0x54-0x56.7 (3)
|
||||
0x50| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x54-0x54.7 (1)
|
||||
0x50| 01 | . | [1]: 1 standard_wall_indicator (valid) 0x55-0x55.7 (1)
|
||||
0x50| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x56-0x56.7 (1)
|
||||
| | | ut_local_indicators[0:3]: 0x57-0x59.7 (3)
|
||||
0x50| 00 | . | [0]: 0 ut_local_indicator (valid) 0x57-0x57.7 (1)
|
||||
0x50| 01 | . | [1]: 1 ut_local_indicator (valid) 0x58-0x58.7 (1)
|
||||
0x50| 00 | . | [2]: 0 ut_local_indicator (valid) 0x59-0x59.7 (1)
|
||||
| | | v2plusheader{}: 0x5a-0x85.7 (44)
|
||||
0x50| 54 5a 69 66 | TZif | magic: 0x545a6966 (valid) 0x5a-0x5d.7 (4)
|
||||
0x50| 32 | 2 | ver: "2" (0x32) (valid) 0x5e-0x5e.7 (1)
|
||||
0x50| 00| .| reserved: raw bits 0x5f-0x6d.7 (15)
|
||||
0x60|00 00 00 00 00 00 00 00 00 00 00 00 00 00 |.............. |
|
||||
0x60| 00 00| ..| isutcnt: 3 0x6e-0x71.7 (4)
|
||||
0x70|00 03 |.. |
|
||||
0x70| 00 00 00 03 | .... | isstdcnt: 3 0x72-0x75.7 (4)
|
||||
0x70| 00 00 00 00 | .... | leapcnt: 0 0x76-0x79.7 (4)
|
||||
0x70| 00 00 00 02 | .... | timecnt: 2 0x7a-0x7d.7 (4)
|
||||
0x70| 00 00| ..| typecnt: 3 0x7e-0x81.7 (4)
|
||||
0x80|00 03 |.. |
|
||||
0x80| 00 00 00 0c | .... | charcnt: 12 0x82-0x85.7 (4)
|
||||
| | | v2plusdatablock{}: 0x86-0xbb.7 (54)
|
||||
| | | transition_times[0:2]: 0x86-0x95.7 (16)
|
||||
0x80| ff ff ff ff 92 e6 9c 90 | ........ | [0]: "1912-01-01T01:00:00Z" (-1830380400) transition_time 0x86-0x8d.7 (8)
|
||||
0x80| 00 00| ..| [1]: "1975-01-01T01:00:00Z" (157770000) transition_time 0x8e-0x95.7 (8)
|
||||
0x90|00 00 09 67 61 10 |...ga. |
|
||||
| | | transition_types[0:2]: 0x96-0x97.7 (2)
|
||||
0x90| 01 | . | [0]: 1 transition_type 0x96-0x96.7 (1)
|
||||
0x90| 02 | . | [1]: 2 transition_type 0x97-0x97.7 (1)
|
||||
| | | local_time_type_records[0:3]: 0x98-0xa9.7 (18)
|
||||
| | | [0]{}: local_time_type 0x98-0x9d.7 (6)
|
||||
0x90| ff ff f1 64 | ...d | utoff: -3740 (valid) 0x98-0x9b.7 (4)
|
||||
0x90| 00 | . | dst: 0 (valid) 0x9c-0x9c.7 (1)
|
||||
0x90| 00 | . | idx: 0 (valid) 0x9d-0x9d.7 (1)
|
||||
| | | [1]{}: local_time_type 0x9e-0xa3.7 (6)
|
||||
0x90| ff ff| ..| utoff: -3600 (valid) 0x9e-0xa1.7 (4)
|
||||
0xa0|f1 f0 |.. |
|
||||
0xa0| 00 | . | dst: 0 (valid) 0xa2-0xa2.7 (1)
|
||||
0xa0| 04 | . | idx: 4 (valid) 0xa3-0xa3.7 (1)
|
||||
| | | [2]{}: local_time_type 0xa4-0xa9.7 (6)
|
||||
0xa0| 00 00 00 00 | .... | utoff: 0 (valid) 0xa4-0xa7.7 (4)
|
||||
0xa0| 00 | . | dst: 0 (valid) 0xa8-0xa8.7 (1)
|
||||
0xa0| 08 | . | idx: 8 (valid) 0xa9-0xa9.7 (1)
|
||||
| | | time_zone_designations[0:3]: 0xaa-0xb5.7 (12)
|
||||
0xa0| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0xaa-0xad.7 (4)
|
||||
0xa0| 2d 30| -0| [1]: "-01" time_zone_designation 0xae-0xb1.7 (4)
|
||||
0xb0|31 00 |1. |
|
||||
0xb0| 47 4d 54 00 | GMT. | [2]: "GMT" time_zone_designation 0xb2-0xb5.7 (4)
|
||||
| | | leap_second_records[0:0]: 0xb6-NA (0)
|
||||
| | | standard_wall_indicators[0:3]: 0xb6-0xb8.7 (3)
|
||||
0xb0| 00 | . | [0]: 0 standard_wall_indicator (valid) 0xb6-0xb6.7 (1)
|
||||
0xb0| 01 | . | [1]: 1 standard_wall_indicator (valid) 0xb7-0xb7.7 (1)
|
||||
0xb0| 00 | . | [2]: 0 standard_wall_indicator (valid) 0xb8-0xb8.7 (1)
|
||||
| | | ut_local_indicators[0:3]: 0xb9-0xbb.7 (3)
|
||||
0xb0| 00 | . | [0]: 0 ut_local_indicator (valid) 0xb9-0xb9.7 (1)
|
||||
0xb0| 01 | . | [1]: 1 ut_local_indicator (valid) 0xba-0xba.7 (1)
|
||||
0xb0| 00 | . | [2]: 0 ut_local_indicator (valid) 0xbb-0xbb.7 (1)
|
||||
| | | footer{}: 0xbc-0xc1.7 (6)
|
||||
0xb0| 0a | . | nl1: 10 (valid) 0xbc-0xbc.7 (1)
|
||||
0xb0| 47 4d 54| GMT| tz_string: "GMT0" 0xbd-0xc0.7 (4)
|
||||
0xc0|30 |0 |
|
||||
0xc0| 0a| | .| | nl2: 10 (valid) 0xc1-0xc1.7 (1)
|
BIN
format/tzif/testdata/Boa_Vista
vendored
Normal file
BIN
format/tzif/testdata/Boa_Vista
vendored
Normal file
Binary file not shown.
377
format/tzif/testdata/Boa_Vista.fqtest
vendored
Normal file
377
format/tzif/testdata/Boa_Vista.fqtest
vendored
Normal file
@ -0,0 +1,377 @@
|
||||
$ fq -d tzif dv Boa_Vista
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: Boa_Vista (tzif) 0x0-0x48d.7 (1166)
|
||||
| | | v1header{}: 0x0-0x2b.7 (44)
|
||||
0x000|54 5a 69 66 |TZif | magic: 0x545a6966 (valid) 0x0-0x3.7 (4)
|
||||
0x000| 32 | 2 | ver: "2" (0x32) (valid) 0x4-0x4.7 (1)
|
||||
0x000| 00 00 00 00 00 00 00 00 00 00 00| ...........| reserved: raw bits 0x5-0x13.7 (15)
|
||||
0x010|00 00 00 00 |.... |
|
||||
0x010| 00 00 00 00 | .... | isutcnt: 0 0x14-0x17.7 (4)
|
||||
0x010| 00 00 00 00 | .... | isstdcnt: 0 0x18-0x1b.7 (4)
|
||||
0x010| 00 00 00 1b| ....| leapcnt: 27 0x1c-0x1f.7 (4)
|
||||
0x020|00 00 00 22 |..." | timecnt: 34 0x20-0x23.7 (4)
|
||||
0x020| 00 00 00 03 | .... | typecnt: 3 0x24-0x27.7 (4)
|
||||
0x020| 00 00 00 0c | .... | charcnt: 12 0x28-0x2b.7 (4)
|
||||
| | | v1datablock{}: 0x2c-0x1cb.7 (416)
|
||||
| | | transition_times[0:34]: 0x2c-0xb3.7 (136)
|
||||
0x020| 96 aa 7f e0| ....| [0]: "1914-01-01T04:02:40Z" (-1767211040) transition_time 0x2c-0x2f.7 (4)
|
||||
0x030|b8 0f 57 f0 |..W. | [1]: "1931-10-03T15:00:00Z" (-1206954000) transition_time 0x30-0x33.7 (4)
|
||||
0x030| b8 fd 4e b0 | ..N. | [2]: "1932-04-01T03:00:00Z" (-1191358800) transition_time 0x34-0x37.7 (4)
|
||||
0x030| b9 f1 42 40 | ..B@ | [3]: "1932-10-03T04:00:00Z" (-1175371200) transition_time 0x38-0x3b.7 (4)
|
||||
0x030| ba de 82 30| ...0| [4]: "1933-04-01T03:00:00Z" (-1159822800) transition_time 0x3c-0x3f.7 (4)
|
||||
0x040|da 38 bc 40 |.8.@ | [5]: "1949-12-01T04:00:00Z" (-633816000) transition_time 0x40-0x43.7 (4)
|
||||
0x040| da ec 08 40 | ...@ | [6]: "1950-04-16T04:00:00Z" (-622065600) transition_time 0x44-0x47.7 (4)
|
||||
0x040| dc 19 ef c0 | .... | [7]: "1950-12-01T04:00:00Z" (-602280000) transition_time 0x48-0x4b.7 (4)
|
||||
0x040| dc b9 67 30| ..g0| [8]: "1951-04-01T03:00:00Z" (-591829200) transition_time 0x4c-0x4f.7 (4)
|
||||
0x050|dd fb 23 40 |..#@ | [9]: "1951-12-01T04:00:00Z" (-570744000) transition_time 0x50-0x53.7 (4)
|
||||
0x050| de 9b ec 30 | ...0 | [10]: "1952-04-01T03:00:00Z" (-560206800) transition_time 0x54-0x57.7 (4)
|
||||
0x050| df dd a8 40 | ...@ | [11]: "1952-12-01T04:00:00Z" (-539121600) transition_time 0x58-0x5b.7 (4)
|
||||
0x050| e0 54 41 30| .TA0| [12]: "1953-03-01T03:00:00Z" (-531349200) transition_time 0x5c-0x5f.7 (4)
|
||||
0x060|f4 98 0d c0 |.... | [13]: "1963-12-09T04:00:00Z" (-191361600) transition_time 0x60-0x63.7 (4)
|
||||
0x060| f5 05 6c 30 | ..l0 | [14]: "1964-03-01T03:00:00Z" (-184194000) transition_time 0x64-0x67.7 (4)
|
||||
0x060| f6 c0 72 40 | ..r@ | [15]: "1965-01-31T04:00:00Z" (-155160000) transition_time 0x68-0x6b.7 (4)
|
||||
0x060| f7 0e 2c b0| ..,.| [16]: "1965-03-31T03:00:00Z" (-150066000) transition_time 0x6c-0x6f.7 (4)
|
||||
0x070|f8 51 3a 40 |.Q:@ | [17]: "1965-12-01T04:00:00Z" (-128894400) transition_time 0x70-0x73.7 (4)
|
||||
0x070| f8 c7 d3 30 | ...0 | [18]: "1966-03-01T03:00:00Z" (-121122000) transition_time 0x74-0x77.7 (4)
|
||||
0x070| fa 0a e0 c0 | .... | [19]: "1966-11-01T04:00:00Z" (-99950400) transition_time 0x78-0x7b.7 (4)
|
||||
0x070| fa a9 06 b0| ....| [20]: "1967-03-01T03:00:00Z" (-89586000) transition_time 0x7c-0x7f.7 (4)
|
||||
0x080|fb ec 14 40 |...@ | [21]: "1967-11-01T04:00:00Z" (-68414400) transition_time 0x80-0x83.7 (4)
|
||||
0x080| fc 8b 8b b0 | .... | [22]: "1968-03-01T03:00:00Z" (-57963600) transition_time 0x84-0x87.7 (4)
|
||||
0x080| 1d c9 9c 4d | ...M | [23]: "1985-11-02T04:00:13Z" (499752013) transition_time 0x88-0x8b.7 (4)
|
||||
0x080| 1e 78 e5 bd| .x..| [24]: "1986-03-15T03:00:13Z" (511239613) transition_time 0x8c-0x8f.7 (4)
|
||||
0x090|1f a0 43 cd |..C. | [25]: "1986-10-25T04:00:13Z" (530596813) transition_time 0x90-0x93.7 (4)
|
||||
0x090| 20 33 dd bd | 3.. | [26]: "1987-02-14T03:00:13Z" (540270013) transition_time 0x94-0x97.7 (4)
|
||||
0x090| 21 81 77 4d | !.wM | [27]: "1987-10-25T04:00:13Z" (562132813) transition_time 0x98-0x9b.7 (4)
|
||||
0x090| 22 0b d6 be| "...| [28]: "1988-02-07T03:00:14Z" (571201214) transition_time 0x9c-0x9f.7 (4)
|
||||
0x0a0|37 f6 d4 d6 |7... | [29]: "1999-10-03T04:00:22Z" (938923222) transition_time 0xa0-0xa3.7 (4)
|
||||
0x0a0| 38 b8 93 46 | 8..F | [30]: "2000-02-27T03:00:22Z" (951620422) transition_time 0xa4-0xa7.7 (4)
|
||||
0x0a0| 39 df f1 56 | 9..V | [31]: "2000-10-08T04:00:22Z" (970977622) transition_time 0xa8-0xab.7 (4)
|
||||
0x0a0| 39 e9 1d c6| 9...| [32]: "2000-10-15T03:00:22Z" (971578822) transition_time 0xac-0xaf.7 (4)
|
||||
0x0b0|64 9b 78 1b |d.x. | [33]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0xb0-0xb3.7 (4)
|
||||
| | | transition_types[0:34]: 0xb4-0xd5.7 (34)
|
||||
0x0b0| 02 | . | [0]: 2 transition_type 0xb4-0xb4.7 (1)
|
||||
0x0b0| 01 | . | [1]: 1 transition_type 0xb5-0xb5.7 (1)
|
||||
0x0b0| 02 | . | [2]: 2 transition_type 0xb6-0xb6.7 (1)
|
||||
0x0b0| 01 | . | [3]: 1 transition_type 0xb7-0xb7.7 (1)
|
||||
0x0b0| 02 | . | [4]: 2 transition_type 0xb8-0xb8.7 (1)
|
||||
0x0b0| 01 | . | [5]: 1 transition_type 0xb9-0xb9.7 (1)
|
||||
0x0b0| 02 | . | [6]: 2 transition_type 0xba-0xba.7 (1)
|
||||
0x0b0| 01 | . | [7]: 1 transition_type 0xbb-0xbb.7 (1)
|
||||
0x0b0| 02 | . | [8]: 2 transition_type 0xbc-0xbc.7 (1)
|
||||
0x0b0| 01 | . | [9]: 1 transition_type 0xbd-0xbd.7 (1)
|
||||
0x0b0| 02 | . | [10]: 2 transition_type 0xbe-0xbe.7 (1)
|
||||
0x0b0| 01| .| [11]: 1 transition_type 0xbf-0xbf.7 (1)
|
||||
0x0c0|02 |. | [12]: 2 transition_type 0xc0-0xc0.7 (1)
|
||||
0x0c0| 01 | . | [13]: 1 transition_type 0xc1-0xc1.7 (1)
|
||||
0x0c0| 02 | . | [14]: 2 transition_type 0xc2-0xc2.7 (1)
|
||||
0x0c0| 01 | . | [15]: 1 transition_type 0xc3-0xc3.7 (1)
|
||||
0x0c0| 02 | . | [16]: 2 transition_type 0xc4-0xc4.7 (1)
|
||||
0x0c0| 01 | . | [17]: 1 transition_type 0xc5-0xc5.7 (1)
|
||||
0x0c0| 02 | . | [18]: 2 transition_type 0xc6-0xc6.7 (1)
|
||||
0x0c0| 01 | . | [19]: 1 transition_type 0xc7-0xc7.7 (1)
|
||||
0x0c0| 02 | . | [20]: 2 transition_type 0xc8-0xc8.7 (1)
|
||||
0x0c0| 01 | . | [21]: 1 transition_type 0xc9-0xc9.7 (1)
|
||||
0x0c0| 02 | . | [22]: 2 transition_type 0xca-0xca.7 (1)
|
||||
0x0c0| 01 | . | [23]: 1 transition_type 0xcb-0xcb.7 (1)
|
||||
0x0c0| 02 | . | [24]: 2 transition_type 0xcc-0xcc.7 (1)
|
||||
0x0c0| 01 | . | [25]: 1 transition_type 0xcd-0xcd.7 (1)
|
||||
0x0c0| 02 | . | [26]: 2 transition_type 0xce-0xce.7 (1)
|
||||
0x0c0| 01| .| [27]: 1 transition_type 0xcf-0xcf.7 (1)
|
||||
0x0d0|02 |. | [28]: 2 transition_type 0xd0-0xd0.7 (1)
|
||||
0x0d0| 01 | . | [29]: 1 transition_type 0xd1-0xd1.7 (1)
|
||||
0x0d0| 02 | . | [30]: 2 transition_type 0xd2-0xd2.7 (1)
|
||||
0x0d0| 01 | . | [31]: 1 transition_type 0xd3-0xd3.7 (1)
|
||||
0x0d0| 02 | . | [32]: 2 transition_type 0xd4-0xd4.7 (1)
|
||||
0x0d0| 02 | . | [33]: 2 transition_type 0xd5-0xd5.7 (1)
|
||||
| | | local_time_type_records[0:3]: 0xd6-0xe7.7 (18)
|
||||
| | | [0]{}: local_time_type 0xd6-0xdb.7 (6)
|
||||
0x0d0| ff ff c7 20 | ... | utoff: -14560 (valid) 0xd6-0xd9.7 (4)
|
||||
0x0d0| 00 | . | dst: 0 (valid) 0xda-0xda.7 (1)
|
||||
0x0d0| 00 | . | idx: 0 (valid) 0xdb-0xdb.7 (1)
|
||||
| | | [1]{}: local_time_type 0xdc-0xe1.7 (6)
|
||||
0x0d0| ff ff d5 d0| ....| utoff: -10800 (valid) 0xdc-0xdf.7 (4)
|
||||
0x0e0|01 |. | dst: 1 (valid) 0xe0-0xe0.7 (1)
|
||||
0x0e0| 04 | . | idx: 4 (valid) 0xe1-0xe1.7 (1)
|
||||
| | | [2]{}: local_time_type 0xe2-0xe7.7 (6)
|
||||
0x0e0| ff ff c7 c0 | .... | utoff: -14400 (valid) 0xe2-0xe5.7 (4)
|
||||
0x0e0| 00 | . | dst: 0 (valid) 0xe6-0xe6.7 (1)
|
||||
0x0e0| 08 | . | idx: 8 (valid) 0xe7-0xe7.7 (1)
|
||||
| | | time_zone_designations[0:3]: 0xe8-0xf3.7 (12)
|
||||
0x0e0| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0xe8-0xeb.7 (4)
|
||||
0x0e0| 2d 30 33 00| -03.| [1]: "-03" time_zone_designation 0xec-0xef.7 (4)
|
||||
0x0f0|2d 30 34 00 |-04. | [2]: "-04" time_zone_designation 0xf0-0xf3.7 (4)
|
||||
| | | leap_second_records[0:27]: 0xf4-0x1cb.7 (216)
|
||||
| | | [0]{}: leap_second_record 0xf4-0xfb.7 (8)
|
||||
0x0f0| 04 b2 58 00 | ..X. | occur: "1972-07-01T00:00:00Z" (78796800) 0xf4-0xf7.7 (4)
|
||||
0x0f0| 00 00 00 01 | .... | corr: 1 0xf8-0xfb.7 (4)
|
||||
| | | [1]{}: leap_second_record 0xfc-0x103.7 (8)
|
||||
0x0f0| 05 a4 ec 01| ....| occur: "1973-01-01T00:00:01Z" (94694401) 0xfc-0xff.7 (4)
|
||||
0x100|00 00 00 02 |.... | corr: 2 0x100-0x103.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x104-0x10b.7 (8)
|
||||
0x100| 07 86 1f 82 | .... | occur: "1974-01-01T00:00:02Z" (126230402) 0x104-0x107.7 (4)
|
||||
0x100| 00 00 00 03 | .... | corr: 3 0x108-0x10b.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x10c-0x113.7 (8)
|
||||
0x100| 09 67 53 03| .gS.| occur: "1975-01-01T00:00:03Z" (157766403) 0x10c-0x10f.7 (4)
|
||||
0x110|00 00 00 04 |.... | corr: 4 0x110-0x113.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x114-0x11b.7 (8)
|
||||
0x110| 0b 48 86 84 | .H.. | occur: "1976-01-01T00:00:04Z" (189302404) 0x114-0x117.7 (4)
|
||||
0x110| 00 00 00 05 | .... | corr: 5 0x118-0x11b.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x11c-0x123.7 (8)
|
||||
0x110| 0d 2b 0b 85| .+..| occur: "1977-01-01T00:00:05Z" (220924805) 0x11c-0x11f.7 (4)
|
||||
0x120|00 00 00 06 |.... | corr: 6 0x120-0x123.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x124-0x12b.7 (8)
|
||||
0x120| 0f 0c 3f 06 | ..?. | occur: "1978-01-01T00:00:06Z" (252460806) 0x124-0x127.7 (4)
|
||||
0x120| 00 00 00 07 | .... | corr: 7 0x128-0x12b.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x12c-0x133.7 (8)
|
||||
0x120| 10 ed 72 87| ..r.| occur: "1979-01-01T00:00:07Z" (283996807) 0x12c-0x12f.7 (4)
|
||||
0x130|00 00 00 08 |.... | corr: 8 0x130-0x133.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x134-0x13b.7 (8)
|
||||
0x130| 12 ce a6 08 | .... | occur: "1980-01-01T00:00:08Z" (315532808) 0x134-0x137.7 (4)
|
||||
0x130| 00 00 00 09 | .... | corr: 9 0x138-0x13b.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x13c-0x143.7 (8)
|
||||
0x130| 15 9f ca 89| ....| occur: "1981-07-01T00:00:09Z" (362793609) 0x13c-0x13f.7 (4)
|
||||
0x140|00 00 00 0a |.... | corr: 10 0x140-0x143.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x144-0x14b.7 (8)
|
||||
0x140| 17 80 fe 0a | .... | occur: "1982-07-01T00:00:10Z" (394329610) 0x144-0x147.7 (4)
|
||||
0x140| 00 00 00 0b | .... | corr: 11 0x148-0x14b.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x14c-0x153.7 (8)
|
||||
0x140| 19 62 31 8b| .b1.| occur: "1983-07-01T00:00:11Z" (425865611) 0x14c-0x14f.7 (4)
|
||||
0x150|00 00 00 0c |.... | corr: 12 0x150-0x153.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x154-0x15b.7 (8)
|
||||
0x150| 1d 25 ea 0c | .%.. | occur: "1985-07-01T00:00:12Z" (489024012) 0x154-0x157.7 (4)
|
||||
0x150| 00 00 00 0d | .... | corr: 13 0x158-0x15b.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x15c-0x163.7 (8)
|
||||
0x150| 21 da e5 0d| !...| occur: "1988-01-01T00:00:13Z" (567993613) 0x15c-0x15f.7 (4)
|
||||
0x160|00 00 00 0e |.... | corr: 14 0x160-0x163.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x164-0x16b.7 (8)
|
||||
0x160| 25 9e 9d 8e | %... | occur: "1990-01-01T00:00:14Z" (631152014) 0x164-0x167.7 (4)
|
||||
0x160| 00 00 00 0f | .... | corr: 15 0x168-0x16b.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x16c-0x173.7 (8)
|
||||
0x160| 27 7f d1 0f| '...| occur: "1991-01-01T00:00:15Z" (662688015) 0x16c-0x16f.7 (4)
|
||||
0x170|00 00 00 10 |.... | corr: 16 0x170-0x173.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x174-0x17b.7 (8)
|
||||
0x170| 2a 50 f5 90 | *P.. | occur: "1992-07-01T00:00:16Z" (709948816) 0x174-0x177.7 (4)
|
||||
0x170| 00 00 00 11 | .... | corr: 17 0x178-0x17b.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x17c-0x183.7 (8)
|
||||
0x170| 2c 32 29 11| ,2).| occur: "1993-07-01T00:00:17Z" (741484817) 0x17c-0x17f.7 (4)
|
||||
0x180|00 00 00 12 |.... | corr: 18 0x180-0x183.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x184-0x18b.7 (8)
|
||||
0x180| 2e 13 5c 92 | ..\. | occur: "1994-07-01T00:00:18Z" (773020818) 0x184-0x187.7 (4)
|
||||
0x180| 00 00 00 13 | .... | corr: 19 0x188-0x18b.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x18c-0x193.7 (8)
|
||||
0x180| 30 e7 24 13| 0.$.| occur: "1996-01-01T00:00:19Z" (820454419) 0x18c-0x18f.7 (4)
|
||||
0x190|00 00 00 14 |.... | corr: 20 0x190-0x193.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x194-0x19b.7 (8)
|
||||
0x190| 33 b8 48 94 | 3.H. | occur: "1997-07-01T00:00:20Z" (867715220) 0x194-0x197.7 (4)
|
||||
0x190| 00 00 00 15 | .... | corr: 21 0x198-0x19b.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x19c-0x1a3.7 (8)
|
||||
0x190| 36 8c 10 15| 6...| occur: "1999-01-01T00:00:21Z" (915148821) 0x19c-0x19f.7 (4)
|
||||
0x1a0|00 00 00 16 |.... | corr: 22 0x1a0-0x1a3.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x1a4-0x1ab.7 (8)
|
||||
0x1a0| 43 b7 1b 96 | C... | occur: "2006-01-01T00:00:22Z" (1136073622) 0x1a4-0x1a7.7 (4)
|
||||
0x1a0| 00 00 00 17 | .... | corr: 23 0x1a8-0x1ab.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x1ac-0x1b3.7 (8)
|
||||
0x1a0| 49 5c 07 97| I\..| occur: "2009-01-01T00:00:23Z" (1230768023) 0x1ac-0x1af.7 (4)
|
||||
0x1b0|00 00 00 18 |.... | corr: 24 0x1b0-0x1b3.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x1b4-0x1bb.7 (8)
|
||||
0x1b0| 4f ef 93 18 | O... | occur: "2012-07-01T00:00:24Z" (1341100824) 0x1b4-0x1b7.7 (4)
|
||||
0x1b0| 00 00 00 19 | .... | corr: 25 0x1b8-0x1bb.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x1bc-0x1c3.7 (8)
|
||||
0x1b0| 55 93 2d 99| U.-.| occur: "2015-07-01T00:00:25Z" (1435708825) 0x1bc-0x1bf.7 (4)
|
||||
0x1c0|00 00 00 1a |.... | corr: 26 0x1c0-0x1c3.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x1c4-0x1cb.7 (8)
|
||||
0x1c0| 58 68 46 9a | XhF. | occur: "2017-01-01T00:00:26Z" (1483228826) 0x1c4-0x1c7.7 (4)
|
||||
0x1c0| 00 00 00 1b | .... | corr: 27 0x1c8-0x1cb.7 (4)
|
||||
| | | standard_wall_indicators[0:0]: 0x1cc-NA (0)
|
||||
| | | ut_local_indicators[0:0]: 0x1cc-NA (0)
|
||||
| | | v2plusheader{}: 0x1cc-0x1f7.7 (44)
|
||||
0x1c0| 54 5a 69 66| TZif| magic: 0x545a6966 (valid) 0x1cc-0x1cf.7 (4)
|
||||
0x1d0|32 |2 | ver: "2" (0x32) (valid) 0x1d0-0x1d0.7 (1)
|
||||
0x1d0| 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00| ...............| reserved: raw bits 0x1d1-0x1df.7 (15)
|
||||
0x1e0|00 00 00 00 |.... | isutcnt: 0 0x1e0-0x1e3.7 (4)
|
||||
0x1e0| 00 00 00 00 | .... | isstdcnt: 0 0x1e4-0x1e7.7 (4)
|
||||
0x1e0| 00 00 00 1b | .... | leapcnt: 27 0x1e8-0x1eb.7 (4)
|
||||
0x1e0| 00 00 00 22| ..."| timecnt: 34 0x1ec-0x1ef.7 (4)
|
||||
0x1f0|00 00 00 03 |.... | typecnt: 3 0x1f0-0x1f3.7 (4)
|
||||
0x1f0| 00 00 00 0c | .... | charcnt: 12 0x1f4-0x1f7.7 (4)
|
||||
| | | v2plusdatablock{}: 0x1f8-0x48b.7 (660)
|
||||
| | | transition_times[0:34]: 0x1f8-0x307.7 (272)
|
||||
0x1f0| ff ff ff ff 96 aa 7f e0| ........| [0]: "1914-01-01T04:02:40Z" (-1767211040) transition_time 0x1f8-0x1ff.7 (8)
|
||||
0x200|ff ff ff ff b8 0f 57 f0 |......W. | [1]: "1931-10-03T15:00:00Z" (-1206954000) transition_time 0x200-0x207.7 (8)
|
||||
0x200| ff ff ff ff b8 fd 4e b0| ......N.| [2]: "1932-04-01T03:00:00Z" (-1191358800) transition_time 0x208-0x20f.7 (8)
|
||||
0x210|ff ff ff ff b9 f1 42 40 |......B@ | [3]: "1932-10-03T04:00:00Z" (-1175371200) transition_time 0x210-0x217.7 (8)
|
||||
0x210| ff ff ff ff ba de 82 30| .......0| [4]: "1933-04-01T03:00:00Z" (-1159822800) transition_time 0x218-0x21f.7 (8)
|
||||
0x220|ff ff ff ff da 38 bc 40 |.....8.@ | [5]: "1949-12-01T04:00:00Z" (-633816000) transition_time 0x220-0x227.7 (8)
|
||||
0x220| ff ff ff ff da ec 08 40| .......@| [6]: "1950-04-16T04:00:00Z" (-622065600) transition_time 0x228-0x22f.7 (8)
|
||||
0x230|ff ff ff ff dc 19 ef c0 |........ | [7]: "1950-12-01T04:00:00Z" (-602280000) transition_time 0x230-0x237.7 (8)
|
||||
0x230| ff ff ff ff dc b9 67 30| ......g0| [8]: "1951-04-01T03:00:00Z" (-591829200) transition_time 0x238-0x23f.7 (8)
|
||||
0x240|ff ff ff ff dd fb 23 40 |......#@ | [9]: "1951-12-01T04:00:00Z" (-570744000) transition_time 0x240-0x247.7 (8)
|
||||
0x240| ff ff ff ff de 9b ec 30| .......0| [10]: "1952-04-01T03:00:00Z" (-560206800) transition_time 0x248-0x24f.7 (8)
|
||||
0x250|ff ff ff ff df dd a8 40 |.......@ | [11]: "1952-12-01T04:00:00Z" (-539121600) transition_time 0x250-0x257.7 (8)
|
||||
0x250| ff ff ff ff e0 54 41 30| .....TA0| [12]: "1953-03-01T03:00:00Z" (-531349200) transition_time 0x258-0x25f.7 (8)
|
||||
0x260|ff ff ff ff f4 98 0d c0 |........ | [13]: "1963-12-09T04:00:00Z" (-191361600) transition_time 0x260-0x267.7 (8)
|
||||
0x260| ff ff ff ff f5 05 6c 30| ......l0| [14]: "1964-03-01T03:00:00Z" (-184194000) transition_time 0x268-0x26f.7 (8)
|
||||
0x270|ff ff ff ff f6 c0 72 40 |......r@ | [15]: "1965-01-31T04:00:00Z" (-155160000) transition_time 0x270-0x277.7 (8)
|
||||
0x270| ff ff ff ff f7 0e 2c b0| ......,.| [16]: "1965-03-31T03:00:00Z" (-150066000) transition_time 0x278-0x27f.7 (8)
|
||||
0x280|ff ff ff ff f8 51 3a 40 |.....Q:@ | [17]: "1965-12-01T04:00:00Z" (-128894400) transition_time 0x280-0x287.7 (8)
|
||||
0x280| ff ff ff ff f8 c7 d3 30| .......0| [18]: "1966-03-01T03:00:00Z" (-121122000) transition_time 0x288-0x28f.7 (8)
|
||||
0x290|ff ff ff ff fa 0a e0 c0 |........ | [19]: "1966-11-01T04:00:00Z" (-99950400) transition_time 0x290-0x297.7 (8)
|
||||
0x290| ff ff ff ff fa a9 06 b0| ........| [20]: "1967-03-01T03:00:00Z" (-89586000) transition_time 0x298-0x29f.7 (8)
|
||||
0x2a0|ff ff ff ff fb ec 14 40 |.......@ | [21]: "1967-11-01T04:00:00Z" (-68414400) transition_time 0x2a0-0x2a7.7 (8)
|
||||
0x2a0| ff ff ff ff fc 8b 8b b0| ........| [22]: "1968-03-01T03:00:00Z" (-57963600) transition_time 0x2a8-0x2af.7 (8)
|
||||
0x2b0|00 00 00 00 1d c9 9c 4d |.......M | [23]: "1985-11-02T04:00:13Z" (499752013) transition_time 0x2b0-0x2b7.7 (8)
|
||||
0x2b0| 00 00 00 00 1e 78 e5 bd| .....x..| [24]: "1986-03-15T03:00:13Z" (511239613) transition_time 0x2b8-0x2bf.7 (8)
|
||||
0x2c0|00 00 00 00 1f a0 43 cd |......C. | [25]: "1986-10-25T04:00:13Z" (530596813) transition_time 0x2c0-0x2c7.7 (8)
|
||||
0x2c0| 00 00 00 00 20 33 dd bd| .... 3..| [26]: "1987-02-14T03:00:13Z" (540270013) transition_time 0x2c8-0x2cf.7 (8)
|
||||
0x2d0|00 00 00 00 21 81 77 4d |....!.wM | [27]: "1987-10-25T04:00:13Z" (562132813) transition_time 0x2d0-0x2d7.7 (8)
|
||||
0x2d0| 00 00 00 00 22 0b d6 be| ...."...| [28]: "1988-02-07T03:00:14Z" (571201214) transition_time 0x2d8-0x2df.7 (8)
|
||||
0x2e0|00 00 00 00 37 f6 d4 d6 |....7... | [29]: "1999-10-03T04:00:22Z" (938923222) transition_time 0x2e0-0x2e7.7 (8)
|
||||
0x2e0| 00 00 00 00 38 b8 93 46| ....8..F| [30]: "2000-02-27T03:00:22Z" (951620422) transition_time 0x2e8-0x2ef.7 (8)
|
||||
0x2f0|00 00 00 00 39 df f1 56 |....9..V | [31]: "2000-10-08T04:00:22Z" (970977622) transition_time 0x2f0-0x2f7.7 (8)
|
||||
0x2f0| 00 00 00 00 39 e9 1d c6| ....9...| [32]: "2000-10-15T03:00:22Z" (971578822) transition_time 0x2f8-0x2ff.7 (8)
|
||||
0x300|00 00 00 00 64 9b 78 1b |....d.x. | [33]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x300-0x307.7 (8)
|
||||
| | | transition_types[0:34]: 0x308-0x329.7 (34)
|
||||
0x300| 02 | . | [0]: 2 transition_type 0x308-0x308.7 (1)
|
||||
0x300| 01 | . | [1]: 1 transition_type 0x309-0x309.7 (1)
|
||||
0x300| 02 | . | [2]: 2 transition_type 0x30a-0x30a.7 (1)
|
||||
0x300| 01 | . | [3]: 1 transition_type 0x30b-0x30b.7 (1)
|
||||
0x300| 02 | . | [4]: 2 transition_type 0x30c-0x30c.7 (1)
|
||||
0x300| 01 | . | [5]: 1 transition_type 0x30d-0x30d.7 (1)
|
||||
0x300| 02 | . | [6]: 2 transition_type 0x30e-0x30e.7 (1)
|
||||
0x300| 01| .| [7]: 1 transition_type 0x30f-0x30f.7 (1)
|
||||
0x310|02 |. | [8]: 2 transition_type 0x310-0x310.7 (1)
|
||||
0x310| 01 | . | [9]: 1 transition_type 0x311-0x311.7 (1)
|
||||
0x310| 02 | . | [10]: 2 transition_type 0x312-0x312.7 (1)
|
||||
0x310| 01 | . | [11]: 1 transition_type 0x313-0x313.7 (1)
|
||||
0x310| 02 | . | [12]: 2 transition_type 0x314-0x314.7 (1)
|
||||
0x310| 01 | . | [13]: 1 transition_type 0x315-0x315.7 (1)
|
||||
0x310| 02 | . | [14]: 2 transition_type 0x316-0x316.7 (1)
|
||||
0x310| 01 | . | [15]: 1 transition_type 0x317-0x317.7 (1)
|
||||
0x310| 02 | . | [16]: 2 transition_type 0x318-0x318.7 (1)
|
||||
0x310| 01 | . | [17]: 1 transition_type 0x319-0x319.7 (1)
|
||||
0x310| 02 | . | [18]: 2 transition_type 0x31a-0x31a.7 (1)
|
||||
0x310| 01 | . | [19]: 1 transition_type 0x31b-0x31b.7 (1)
|
||||
0x310| 02 | . | [20]: 2 transition_type 0x31c-0x31c.7 (1)
|
||||
0x310| 01 | . | [21]: 1 transition_type 0x31d-0x31d.7 (1)
|
||||
0x310| 02 | . | [22]: 2 transition_type 0x31e-0x31e.7 (1)
|
||||
0x310| 01| .| [23]: 1 transition_type 0x31f-0x31f.7 (1)
|
||||
0x320|02 |. | [24]: 2 transition_type 0x320-0x320.7 (1)
|
||||
0x320| 01 | . | [25]: 1 transition_type 0x321-0x321.7 (1)
|
||||
0x320| 02 | . | [26]: 2 transition_type 0x322-0x322.7 (1)
|
||||
0x320| 01 | . | [27]: 1 transition_type 0x323-0x323.7 (1)
|
||||
0x320| 02 | . | [28]: 2 transition_type 0x324-0x324.7 (1)
|
||||
0x320| 01 | . | [29]: 1 transition_type 0x325-0x325.7 (1)
|
||||
0x320| 02 | . | [30]: 2 transition_type 0x326-0x326.7 (1)
|
||||
0x320| 01 | . | [31]: 1 transition_type 0x327-0x327.7 (1)
|
||||
0x320| 02 | . | [32]: 2 transition_type 0x328-0x328.7 (1)
|
||||
0x320| 02 | . | [33]: 2 transition_type 0x329-0x329.7 (1)
|
||||
| | | local_time_type_records[0:3]: 0x32a-0x33b.7 (18)
|
||||
| | | [0]{}: local_time_type 0x32a-0x32f.7 (6)
|
||||
0x320| ff ff c7 20 | ... | utoff: -14560 (valid) 0x32a-0x32d.7 (4)
|
||||
0x320| 00 | . | dst: 0 (valid) 0x32e-0x32e.7 (1)
|
||||
0x320| 00| .| idx: 0 (valid) 0x32f-0x32f.7 (1)
|
||||
| | | [1]{}: local_time_type 0x330-0x335.7 (6)
|
||||
0x330|ff ff d5 d0 |.... | utoff: -10800 (valid) 0x330-0x333.7 (4)
|
||||
0x330| 01 | . | dst: 1 (valid) 0x334-0x334.7 (1)
|
||||
0x330| 04 | . | idx: 4 (valid) 0x335-0x335.7 (1)
|
||||
| | | [2]{}: local_time_type 0x336-0x33b.7 (6)
|
||||
0x330| ff ff c7 c0 | .... | utoff: -14400 (valid) 0x336-0x339.7 (4)
|
||||
0x330| 00 | . | dst: 0 (valid) 0x33a-0x33a.7 (1)
|
||||
0x330| 08 | . | idx: 8 (valid) 0x33b-0x33b.7 (1)
|
||||
| | | time_zone_designations[0:3]: 0x33c-0x347.7 (12)
|
||||
0x330| 4c 4d 54 00| LMT.| [0]: "LMT" time_zone_designation 0x33c-0x33f.7 (4)
|
||||
0x340|2d 30 33 00 |-03. | [1]: "-03" time_zone_designation 0x340-0x343.7 (4)
|
||||
0x340| 2d 30 34 00 | -04. | [2]: "-04" time_zone_designation 0x344-0x347.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x348-0x48b.7 (324)
|
||||
| | | [0]{}: leap_second_record 0x348-0x353.7 (12)
|
||||
0x340| 00 00 00 00 04 b2 58 00| ......X.| occur: "1972-07-01T00:00:00Z" (78796800) 0x348-0x34f.7 (8)
|
||||
0x350|00 00 00 01 |.... | corr: 1 0x350-0x353.7 (4)
|
||||
| | | [1]{}: leap_second_record 0x354-0x35f.7 (12)
|
||||
0x350| 00 00 00 00 05 a4 ec 01 | ........ | occur: "1973-01-01T00:00:01Z" (94694401) 0x354-0x35b.7 (8)
|
||||
0x350| 00 00 00 02| ....| corr: 2 0x35c-0x35f.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x360-0x36b.7 (12)
|
||||
0x360|00 00 00 00 07 86 1f 82 |........ | occur: "1974-01-01T00:00:02Z" (126230402) 0x360-0x367.7 (8)
|
||||
0x360| 00 00 00 03 | .... | corr: 3 0x368-0x36b.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x36c-0x377.7 (12)
|
||||
0x360| 00 00 00 00| ....| occur: "1975-01-01T00:00:03Z" (157766403) 0x36c-0x373.7 (8)
|
||||
0x370|09 67 53 03 |.gS. |
|
||||
0x370| 00 00 00 04 | .... | corr: 4 0x374-0x377.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x378-0x383.7 (12)
|
||||
0x370| 00 00 00 00 0b 48 86 84| .....H..| occur: "1976-01-01T00:00:04Z" (189302404) 0x378-0x37f.7 (8)
|
||||
0x380|00 00 00 05 |.... | corr: 5 0x380-0x383.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x384-0x38f.7 (12)
|
||||
0x380| 00 00 00 00 0d 2b 0b 85 | .....+.. | occur: "1977-01-01T00:00:05Z" (220924805) 0x384-0x38b.7 (8)
|
||||
0x380| 00 00 00 06| ....| corr: 6 0x38c-0x38f.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x390-0x39b.7 (12)
|
||||
0x390|00 00 00 00 0f 0c 3f 06 |......?. | occur: "1978-01-01T00:00:06Z" (252460806) 0x390-0x397.7 (8)
|
||||
0x390| 00 00 00 07 | .... | corr: 7 0x398-0x39b.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x39c-0x3a7.7 (12)
|
||||
0x390| 00 00 00 00| ....| occur: "1979-01-01T00:00:07Z" (283996807) 0x39c-0x3a3.7 (8)
|
||||
0x3a0|10 ed 72 87 |..r. |
|
||||
0x3a0| 00 00 00 08 | .... | corr: 8 0x3a4-0x3a7.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x3a8-0x3b3.7 (12)
|
||||
0x3a0| 00 00 00 00 12 ce a6 08| ........| occur: "1980-01-01T00:00:08Z" (315532808) 0x3a8-0x3af.7 (8)
|
||||
0x3b0|00 00 00 09 |.... | corr: 9 0x3b0-0x3b3.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x3b4-0x3bf.7 (12)
|
||||
0x3b0| 00 00 00 00 15 9f ca 89 | ........ | occur: "1981-07-01T00:00:09Z" (362793609) 0x3b4-0x3bb.7 (8)
|
||||
0x3b0| 00 00 00 0a| ....| corr: 10 0x3bc-0x3bf.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x3c0-0x3cb.7 (12)
|
||||
0x3c0|00 00 00 00 17 80 fe 0a |........ | occur: "1982-07-01T00:00:10Z" (394329610) 0x3c0-0x3c7.7 (8)
|
||||
0x3c0| 00 00 00 0b | .... | corr: 11 0x3c8-0x3cb.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x3cc-0x3d7.7 (12)
|
||||
0x3c0| 00 00 00 00| ....| occur: "1983-07-01T00:00:11Z" (425865611) 0x3cc-0x3d3.7 (8)
|
||||
0x3d0|19 62 31 8b |.b1. |
|
||||
0x3d0| 00 00 00 0c | .... | corr: 12 0x3d4-0x3d7.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x3d8-0x3e3.7 (12)
|
||||
0x3d0| 00 00 00 00 1d 25 ea 0c| .....%..| occur: "1985-07-01T00:00:12Z" (489024012) 0x3d8-0x3df.7 (8)
|
||||
0x3e0|00 00 00 0d |.... | corr: 13 0x3e0-0x3e3.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x3e4-0x3ef.7 (12)
|
||||
0x3e0| 00 00 00 00 21 da e5 0d | ....!... | occur: "1988-01-01T00:00:13Z" (567993613) 0x3e4-0x3eb.7 (8)
|
||||
0x3e0| 00 00 00 0e| ....| corr: 14 0x3ec-0x3ef.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x3f0-0x3fb.7 (12)
|
||||
0x3f0|00 00 00 00 25 9e 9d 8e |....%... | occur: "1990-01-01T00:00:14Z" (631152014) 0x3f0-0x3f7.7 (8)
|
||||
0x3f0| 00 00 00 0f | .... | corr: 15 0x3f8-0x3fb.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x3fc-0x407.7 (12)
|
||||
0x3f0| 00 00 00 00| ....| occur: "1991-01-01T00:00:15Z" (662688015) 0x3fc-0x403.7 (8)
|
||||
0x400|27 7f d1 0f |'... |
|
||||
0x400| 00 00 00 10 | .... | corr: 16 0x404-0x407.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x408-0x413.7 (12)
|
||||
0x400| 00 00 00 00 2a 50 f5 90| ....*P..| occur: "1992-07-01T00:00:16Z" (709948816) 0x408-0x40f.7 (8)
|
||||
0x410|00 00 00 11 |.... | corr: 17 0x410-0x413.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x414-0x41f.7 (12)
|
||||
0x410| 00 00 00 00 2c 32 29 11 | ....,2). | occur: "1993-07-01T00:00:17Z" (741484817) 0x414-0x41b.7 (8)
|
||||
0x410| 00 00 00 12| ....| corr: 18 0x41c-0x41f.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x420-0x42b.7 (12)
|
||||
0x420|00 00 00 00 2e 13 5c 92 |......\. | occur: "1994-07-01T00:00:18Z" (773020818) 0x420-0x427.7 (8)
|
||||
0x420| 00 00 00 13 | .... | corr: 19 0x428-0x42b.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x42c-0x437.7 (12)
|
||||
0x420| 00 00 00 00| ....| occur: "1996-01-01T00:00:19Z" (820454419) 0x42c-0x433.7 (8)
|
||||
0x430|30 e7 24 13 |0.$. |
|
||||
0x430| 00 00 00 14 | .... | corr: 20 0x434-0x437.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x438-0x443.7 (12)
|
||||
0x430| 00 00 00 00 33 b8 48 94| ....3.H.| occur: "1997-07-01T00:00:20Z" (867715220) 0x438-0x43f.7 (8)
|
||||
0x440|00 00 00 15 |.... | corr: 21 0x440-0x443.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x444-0x44f.7 (12)
|
||||
0x440| 00 00 00 00 36 8c 10 15 | ....6... | occur: "1999-01-01T00:00:21Z" (915148821) 0x444-0x44b.7 (8)
|
||||
0x440| 00 00 00 16| ....| corr: 22 0x44c-0x44f.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x450-0x45b.7 (12)
|
||||
0x450|00 00 00 00 43 b7 1b 96 |....C... | occur: "2006-01-01T00:00:22Z" (1136073622) 0x450-0x457.7 (8)
|
||||
0x450| 00 00 00 17 | .... | corr: 23 0x458-0x45b.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x45c-0x467.7 (12)
|
||||
0x450| 00 00 00 00| ....| occur: "2009-01-01T00:00:23Z" (1230768023) 0x45c-0x463.7 (8)
|
||||
0x460|49 5c 07 97 |I\.. |
|
||||
0x460| 00 00 00 18 | .... | corr: 24 0x464-0x467.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x468-0x473.7 (12)
|
||||
0x460| 00 00 00 00 4f ef 93 18| ....O...| occur: "2012-07-01T00:00:24Z" (1341100824) 0x468-0x46f.7 (8)
|
||||
0x470|00 00 00 19 |.... | corr: 25 0x470-0x473.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x474-0x47f.7 (12)
|
||||
0x470| 00 00 00 00 55 93 2d 99 | ....U.-. | occur: "2015-07-01T00:00:25Z" (1435708825) 0x474-0x47b.7 (8)
|
||||
0x470| 00 00 00 1a| ....| corr: 26 0x47c-0x47f.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x480-0x48b.7 (12)
|
||||
0x480|00 00 00 00 58 68 46 9a |....XhF. | occur: "2017-01-01T00:00:26Z" (1483228826) 0x480-0x487.7 (8)
|
||||
0x480| 00 00 00 1b | .... | corr: 27 0x488-0x48b.7 (4)
|
||||
| | | standard_wall_indicators[0:0]: 0x48c-NA (0)
|
||||
| | | ut_local_indicators[0:0]: 0x48c-NA (0)
|
||||
| | | footer{}: 0x48c-0x48d.7 (2)
|
||||
0x480| 0a | . | nl1: 10 (valid) 0x48c-0x48c.7 (1)
|
||||
| | | tz_string: "" 0x48d-NA (0)
|
||||
0x480| 0a| | .| | nl2: 10 (valid) 0x48d-0x48d.7 (1)
|
BIN
format/tzif/testdata/Bogota
vendored
Normal file
BIN
format/tzif/testdata/Bogota
vendored
Normal file
Binary file not shown.
307
format/tzif/testdata/Bogota.fqtest
vendored
Normal file
307
format/tzif/testdata/Bogota.fqtest
vendored
Normal file
@ -0,0 +1,307 @@
|
||||
$ fq -d tzif dv Bogota
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: Bogota (tzif) 0x0-0x30b.7 (780)
|
||||
| | | v1header{}: 0x0-0x2b.7 (44)
|
||||
0x000|54 5a 69 66 |TZif | magic: 0x545a6966 (valid) 0x0-0x3.7 (4)
|
||||
0x000| 32 | 2 | ver: "2" (0x32) (valid) 0x4-0x4.7 (1)
|
||||
0x000| 00 00 00 00 00 00 00 00 00 00 00| ...........| reserved: raw bits 0x5-0x13.7 (15)
|
||||
0x010|00 00 00 00 |.... |
|
||||
0x010| 00 00 00 00 | .... | isutcnt: 0 0x14-0x17.7 (4)
|
||||
0x010| 00 00 00 00 | .... | isstdcnt: 0 0x18-0x1b.7 (4)
|
||||
0x010| 00 00 00 1b| ....| leapcnt: 27 0x1c-0x1f.7 (4)
|
||||
0x020|00 00 00 05 |.... | timecnt: 5 0x20-0x23.7 (4)
|
||||
0x020| 00 00 00 04 | .... | typecnt: 4 0x24-0x27.7 (4)
|
||||
0x020| 00 00 00 10 | .... | charcnt: 16 0x28-0x2b.7 (4)
|
||||
| | | v1datablock{}: 0x2c-0x144.7 (281)
|
||||
| | | transition_times[0:5]: 0x2c-0x3f.7 (20)
|
||||
0x020| 80 00 00 00| ....| [0]: "1901-12-13T20:45:52Z" (-2147483648) transition_time 0x2c-0x2f.7 (4)
|
||||
0x030|98 58 55 70 |.XUp | [1]: "1914-11-23T04:56:16Z" (-1739041424) transition_time 0x30-0x33.7 (4)
|
||||
0x030| 2a 03 73 60 | *.s` | [2]: "1992-05-03T05:00:16Z" (704869216) transition_time 0x34-0x37.7 (4)
|
||||
0x030| 2b be 5d 51 | +.]Q | [3]: "1993-04-04T04:00:17Z" (733896017) transition_time 0x38-0x3b.7 (4)
|
||||
0x030| 64 9b 78 1b| d.x.| [4]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x3c-0x3f.7 (4)
|
||||
| | | transition_types[0:5]: 0x40-0x44.7 (5)
|
||||
0x040|01 |. | [0]: 1 transition_type 0x40-0x40.7 (1)
|
||||
0x040| 03 | . | [1]: 3 transition_type 0x41-0x41.7 (1)
|
||||
0x040| 02 | . | [2]: 2 transition_type 0x42-0x42.7 (1)
|
||||
0x040| 03 | . | [3]: 3 transition_type 0x43-0x43.7 (1)
|
||||
0x040| 03 | . | [4]: 3 transition_type 0x44-0x44.7 (1)
|
||||
| | | local_time_type_records[0:4]: 0x45-0x5c.7 (24)
|
||||
| | | [0]{}: local_time_type 0x45-0x4a.7 (6)
|
||||
0x040| ff ff ba 90 | .... | utoff: -17776 (valid) 0x45-0x48.7 (4)
|
||||
0x040| 00 | . | dst: 0 (valid) 0x49-0x49.7 (1)
|
||||
0x040| 00 | . | idx: 0 (valid) 0x4a-0x4a.7 (1)
|
||||
| | | [1]{}: local_time_type 0x4b-0x50.7 (6)
|
||||
0x040| ff ff ba 90 | .... | utoff: -17776 (valid) 0x4b-0x4e.7 (4)
|
||||
0x040| 00| .| dst: 0 (valid) 0x4f-0x4f.7 (1)
|
||||
0x050|04 |. | idx: 4 (valid) 0x50-0x50.7 (1)
|
||||
| | | [2]{}: local_time_type 0x51-0x56.7 (6)
|
||||
0x050| ff ff c7 c0 | .... | utoff: -14400 (valid) 0x51-0x54.7 (4)
|
||||
0x050| 01 | . | dst: 1 (valid) 0x55-0x55.7 (1)
|
||||
0x050| 08 | . | idx: 8 (valid) 0x56-0x56.7 (1)
|
||||
| | | [3]{}: local_time_type 0x57-0x5c.7 (6)
|
||||
0x050| ff ff b9 b0 | .... | utoff: -18000 (valid) 0x57-0x5a.7 (4)
|
||||
0x050| 00 | . | dst: 0 (valid) 0x5b-0x5b.7 (1)
|
||||
0x050| 0c | . | idx: 12 (valid) 0x5c-0x5c.7 (1)
|
||||
| | | time_zone_designations[0:4]: 0x5d-0x6c.7 (16)
|
||||
0x050| 4c 4d 54| LMT| [0]: "LMT" time_zone_designation 0x5d-0x60.7 (4)
|
||||
0x060|00 |. |
|
||||
0x060| 42 4d 54 00 | BMT. | [1]: "BMT" time_zone_designation 0x61-0x64.7 (4)
|
||||
0x060| 2d 30 34 00 | -04. | [2]: "-04" time_zone_designation 0x65-0x68.7 (4)
|
||||
0x060| 2d 30 35 00 | -05. | [3]: "-05" time_zone_designation 0x69-0x6c.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x6d-0x144.7 (216)
|
||||
| | | [0]{}: leap_second_record 0x6d-0x74.7 (8)
|
||||
0x060| 04 b2 58| ..X| occur: "1972-07-01T00:00:00Z" (78796800) 0x6d-0x70.7 (4)
|
||||
0x070|00 |. |
|
||||
0x070| 00 00 00 01 | .... | corr: 1 0x71-0x74.7 (4)
|
||||
| | | [1]{}: leap_second_record 0x75-0x7c.7 (8)
|
||||
0x070| 05 a4 ec 01 | .... | occur: "1973-01-01T00:00:01Z" (94694401) 0x75-0x78.7 (4)
|
||||
0x070| 00 00 00 02 | .... | corr: 2 0x79-0x7c.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x7d-0x84.7 (8)
|
||||
0x070| 07 86 1f| ...| occur: "1974-01-01T00:00:02Z" (126230402) 0x7d-0x80.7 (4)
|
||||
0x080|82 |. |
|
||||
0x080| 00 00 00 03 | .... | corr: 3 0x81-0x84.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x85-0x8c.7 (8)
|
||||
0x080| 09 67 53 03 | .gS. | occur: "1975-01-01T00:00:03Z" (157766403) 0x85-0x88.7 (4)
|
||||
0x080| 00 00 00 04 | .... | corr: 4 0x89-0x8c.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x8d-0x94.7 (8)
|
||||
0x080| 0b 48 86| .H.| occur: "1976-01-01T00:00:04Z" (189302404) 0x8d-0x90.7 (4)
|
||||
0x090|84 |. |
|
||||
0x090| 00 00 00 05 | .... | corr: 5 0x91-0x94.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x95-0x9c.7 (8)
|
||||
0x090| 0d 2b 0b 85 | .+.. | occur: "1977-01-01T00:00:05Z" (220924805) 0x95-0x98.7 (4)
|
||||
0x090| 00 00 00 06 | .... | corr: 6 0x99-0x9c.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x9d-0xa4.7 (8)
|
||||
0x090| 0f 0c 3f| ..?| occur: "1978-01-01T00:00:06Z" (252460806) 0x9d-0xa0.7 (4)
|
||||
0x0a0|06 |. |
|
||||
0x0a0| 00 00 00 07 | .... | corr: 7 0xa1-0xa4.7 (4)
|
||||
| | | [7]{}: leap_second_record 0xa5-0xac.7 (8)
|
||||
0x0a0| 10 ed 72 87 | ..r. | occur: "1979-01-01T00:00:07Z" (283996807) 0xa5-0xa8.7 (4)
|
||||
0x0a0| 00 00 00 08 | .... | corr: 8 0xa9-0xac.7 (4)
|
||||
| | | [8]{}: leap_second_record 0xad-0xb4.7 (8)
|
||||
0x0a0| 12 ce a6| ...| occur: "1980-01-01T00:00:08Z" (315532808) 0xad-0xb0.7 (4)
|
||||
0x0b0|08 |. |
|
||||
0x0b0| 00 00 00 09 | .... | corr: 9 0xb1-0xb4.7 (4)
|
||||
| | | [9]{}: leap_second_record 0xb5-0xbc.7 (8)
|
||||
0x0b0| 15 9f ca 89 | .... | occur: "1981-07-01T00:00:09Z" (362793609) 0xb5-0xb8.7 (4)
|
||||
0x0b0| 00 00 00 0a | .... | corr: 10 0xb9-0xbc.7 (4)
|
||||
| | | [10]{}: leap_second_record 0xbd-0xc4.7 (8)
|
||||
0x0b0| 17 80 fe| ...| occur: "1982-07-01T00:00:10Z" (394329610) 0xbd-0xc0.7 (4)
|
||||
0x0c0|0a |. |
|
||||
0x0c0| 00 00 00 0b | .... | corr: 11 0xc1-0xc4.7 (4)
|
||||
| | | [11]{}: leap_second_record 0xc5-0xcc.7 (8)
|
||||
0x0c0| 19 62 31 8b | .b1. | occur: "1983-07-01T00:00:11Z" (425865611) 0xc5-0xc8.7 (4)
|
||||
0x0c0| 00 00 00 0c | .... | corr: 12 0xc9-0xcc.7 (4)
|
||||
| | | [12]{}: leap_second_record 0xcd-0xd4.7 (8)
|
||||
0x0c0| 1d 25 ea| .%.| occur: "1985-07-01T00:00:12Z" (489024012) 0xcd-0xd0.7 (4)
|
||||
0x0d0|0c |. |
|
||||
0x0d0| 00 00 00 0d | .... | corr: 13 0xd1-0xd4.7 (4)
|
||||
| | | [13]{}: leap_second_record 0xd5-0xdc.7 (8)
|
||||
0x0d0| 21 da e5 0d | !... | occur: "1988-01-01T00:00:13Z" (567993613) 0xd5-0xd8.7 (4)
|
||||
0x0d0| 00 00 00 0e | .... | corr: 14 0xd9-0xdc.7 (4)
|
||||
| | | [14]{}: leap_second_record 0xdd-0xe4.7 (8)
|
||||
0x0d0| 25 9e 9d| %..| occur: "1990-01-01T00:00:14Z" (631152014) 0xdd-0xe0.7 (4)
|
||||
0x0e0|8e |. |
|
||||
0x0e0| 00 00 00 0f | .... | corr: 15 0xe1-0xe4.7 (4)
|
||||
| | | [15]{}: leap_second_record 0xe5-0xec.7 (8)
|
||||
0x0e0| 27 7f d1 0f | '... | occur: "1991-01-01T00:00:15Z" (662688015) 0xe5-0xe8.7 (4)
|
||||
0x0e0| 00 00 00 10 | .... | corr: 16 0xe9-0xec.7 (4)
|
||||
| | | [16]{}: leap_second_record 0xed-0xf4.7 (8)
|
||||
0x0e0| 2a 50 f5| *P.| occur: "1992-07-01T00:00:16Z" (709948816) 0xed-0xf0.7 (4)
|
||||
0x0f0|90 |. |
|
||||
0x0f0| 00 00 00 11 | .... | corr: 17 0xf1-0xf4.7 (4)
|
||||
| | | [17]{}: leap_second_record 0xf5-0xfc.7 (8)
|
||||
0x0f0| 2c 32 29 11 | ,2). | occur: "1993-07-01T00:00:17Z" (741484817) 0xf5-0xf8.7 (4)
|
||||
0x0f0| 00 00 00 12 | .... | corr: 18 0xf9-0xfc.7 (4)
|
||||
| | | [18]{}: leap_second_record 0xfd-0x104.7 (8)
|
||||
0x0f0| 2e 13 5c| ..\| occur: "1994-07-01T00:00:18Z" (773020818) 0xfd-0x100.7 (4)
|
||||
0x100|92 |. |
|
||||
0x100| 00 00 00 13 | .... | corr: 19 0x101-0x104.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x105-0x10c.7 (8)
|
||||
0x100| 30 e7 24 13 | 0.$. | occur: "1996-01-01T00:00:19Z" (820454419) 0x105-0x108.7 (4)
|
||||
0x100| 00 00 00 14 | .... | corr: 20 0x109-0x10c.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x10d-0x114.7 (8)
|
||||
0x100| 33 b8 48| 3.H| occur: "1997-07-01T00:00:20Z" (867715220) 0x10d-0x110.7 (4)
|
||||
0x110|94 |. |
|
||||
0x110| 00 00 00 15 | .... | corr: 21 0x111-0x114.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x115-0x11c.7 (8)
|
||||
0x110| 36 8c 10 15 | 6... | occur: "1999-01-01T00:00:21Z" (915148821) 0x115-0x118.7 (4)
|
||||
0x110| 00 00 00 16 | .... | corr: 22 0x119-0x11c.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x11d-0x124.7 (8)
|
||||
0x110| 43 b7 1b| C..| occur: "2006-01-01T00:00:22Z" (1136073622) 0x11d-0x120.7 (4)
|
||||
0x120|96 |. |
|
||||
0x120| 00 00 00 17 | .... | corr: 23 0x121-0x124.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x125-0x12c.7 (8)
|
||||
0x120| 49 5c 07 97 | I\.. | occur: "2009-01-01T00:00:23Z" (1230768023) 0x125-0x128.7 (4)
|
||||
0x120| 00 00 00 18 | .... | corr: 24 0x129-0x12c.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x12d-0x134.7 (8)
|
||||
0x120| 4f ef 93| O..| occur: "2012-07-01T00:00:24Z" (1341100824) 0x12d-0x130.7 (4)
|
||||
0x130|18 |. |
|
||||
0x130| 00 00 00 19 | .... | corr: 25 0x131-0x134.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x135-0x13c.7 (8)
|
||||
0x130| 55 93 2d 99 | U.-. | occur: "2015-07-01T00:00:25Z" (1435708825) 0x135-0x138.7 (4)
|
||||
0x130| 00 00 00 1a | .... | corr: 26 0x139-0x13c.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x13d-0x144.7 (8)
|
||||
0x130| 58 68 46| XhF| occur: "2017-01-01T00:00:26Z" (1483228826) 0x13d-0x140.7 (4)
|
||||
0x140|9a |. |
|
||||
0x140| 00 00 00 1b | .... | corr: 27 0x141-0x144.7 (4)
|
||||
| | | standard_wall_indicators[0:0]: 0x145-NA (0)
|
||||
| | | ut_local_indicators[0:0]: 0x145-NA (0)
|
||||
| | | v2plusheader{}: 0x145-0x170.7 (44)
|
||||
0x140| 54 5a 69 66 | TZif | magic: 0x545a6966 (valid) 0x145-0x148.7 (4)
|
||||
0x140| 32 | 2 | ver: "2" (0x32) (valid) 0x149-0x149.7 (1)
|
||||
0x140| 00 00 00 00 00 00| ......| reserved: raw bits 0x14a-0x158.7 (15)
|
||||
0x150|00 00 00 00 00 00 00 00 00 |......... |
|
||||
0x150| 00 00 00 00 | .... | isutcnt: 0 0x159-0x15c.7 (4)
|
||||
0x150| 00 00 00| ...| isstdcnt: 0 0x15d-0x160.7 (4)
|
||||
0x160|00 |. |
|
||||
0x160| 00 00 00 1b | .... | leapcnt: 27 0x161-0x164.7 (4)
|
||||
0x160| 00 00 00 05 | .... | timecnt: 5 0x165-0x168.7 (4)
|
||||
0x160| 00 00 00 04 | .... | typecnt: 4 0x169-0x16c.7 (4)
|
||||
0x160| 00 00 00| ...| charcnt: 16 0x16d-0x170.7 (4)
|
||||
0x170|10 |. |
|
||||
| | | v2plusdatablock{}: 0x171-0x309.7 (409)
|
||||
| | | transition_times[0:5]: 0x171-0x198.7 (40)
|
||||
0x170| ff ff ff ff 5e 9c 34 f0 | ....^.4. | [0]: "1884-03-13T04:56:16Z" (-2707671824) transition_time 0x171-0x178.7 (8)
|
||||
0x170| ff ff ff ff 98 58 55| .....XU| [1]: "1914-11-23T04:56:16Z" (-1739041424) transition_time 0x179-0x180.7 (8)
|
||||
0x180|70 |p |
|
||||
0x180| 00 00 00 00 2a 03 73 60 | ....*.s` | [2]: "1992-05-03T05:00:16Z" (704869216) transition_time 0x181-0x188.7 (8)
|
||||
0x180| 00 00 00 00 2b be 5d| ....+.]| [3]: "1993-04-04T04:00:17Z" (733896017) transition_time 0x189-0x190.7 (8)
|
||||
0x190|51 |Q |
|
||||
0x190| 00 00 00 00 64 9b 78 1b | ....d.x. | [4]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x191-0x198.7 (8)
|
||||
| | | transition_types[0:5]: 0x199-0x19d.7 (5)
|
||||
0x190| 01 | . | [0]: 1 transition_type 0x199-0x199.7 (1)
|
||||
0x190| 03 | . | [1]: 3 transition_type 0x19a-0x19a.7 (1)
|
||||
0x190| 02 | . | [2]: 2 transition_type 0x19b-0x19b.7 (1)
|
||||
0x190| 03 | . | [3]: 3 transition_type 0x19c-0x19c.7 (1)
|
||||
0x190| 03 | . | [4]: 3 transition_type 0x19d-0x19d.7 (1)
|
||||
| | | local_time_type_records[0:4]: 0x19e-0x1b5.7 (24)
|
||||
| | | [0]{}: local_time_type 0x19e-0x1a3.7 (6)
|
||||
0x190| ff ff| ..| utoff: -17776 (valid) 0x19e-0x1a1.7 (4)
|
||||
0x1a0|ba 90 |.. |
|
||||
0x1a0| 00 | . | dst: 0 (valid) 0x1a2-0x1a2.7 (1)
|
||||
0x1a0| 00 | . | idx: 0 (valid) 0x1a3-0x1a3.7 (1)
|
||||
| | | [1]{}: local_time_type 0x1a4-0x1a9.7 (6)
|
||||
0x1a0| ff ff ba 90 | .... | utoff: -17776 (valid) 0x1a4-0x1a7.7 (4)
|
||||
0x1a0| 00 | . | dst: 0 (valid) 0x1a8-0x1a8.7 (1)
|
||||
0x1a0| 04 | . | idx: 4 (valid) 0x1a9-0x1a9.7 (1)
|
||||
| | | [2]{}: local_time_type 0x1aa-0x1af.7 (6)
|
||||
0x1a0| ff ff c7 c0 | .... | utoff: -14400 (valid) 0x1aa-0x1ad.7 (4)
|
||||
0x1a0| 01 | . | dst: 1 (valid) 0x1ae-0x1ae.7 (1)
|
||||
0x1a0| 08| .| idx: 8 (valid) 0x1af-0x1af.7 (1)
|
||||
| | | [3]{}: local_time_type 0x1b0-0x1b5.7 (6)
|
||||
0x1b0|ff ff b9 b0 |.... | utoff: -18000 (valid) 0x1b0-0x1b3.7 (4)
|
||||
0x1b0| 00 | . | dst: 0 (valid) 0x1b4-0x1b4.7 (1)
|
||||
0x1b0| 0c | . | idx: 12 (valid) 0x1b5-0x1b5.7 (1)
|
||||
| | | time_zone_designations[0:4]: 0x1b6-0x1c5.7 (16)
|
||||
0x1b0| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x1b6-0x1b9.7 (4)
|
||||
0x1b0| 42 4d 54 00 | BMT. | [1]: "BMT" time_zone_designation 0x1ba-0x1bd.7 (4)
|
||||
0x1b0| 2d 30| -0| [2]: "-04" time_zone_designation 0x1be-0x1c1.7 (4)
|
||||
0x1c0|34 00 |4. |
|
||||
0x1c0| 2d 30 35 00 | -05. | [3]: "-05" time_zone_designation 0x1c2-0x1c5.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x1c6-0x309.7 (324)
|
||||
| | | [0]{}: leap_second_record 0x1c6-0x1d1.7 (12)
|
||||
0x1c0| 00 00 00 00 04 b2 58 00 | ......X. | occur: "1972-07-01T00:00:00Z" (78796800) 0x1c6-0x1cd.7 (8)
|
||||
0x1c0| 00 00| ..| corr: 1 0x1ce-0x1d1.7 (4)
|
||||
0x1d0|00 01 |.. |
|
||||
| | | [1]{}: leap_second_record 0x1d2-0x1dd.7 (12)
|
||||
0x1d0| 00 00 00 00 05 a4 ec 01 | ........ | occur: "1973-01-01T00:00:01Z" (94694401) 0x1d2-0x1d9.7 (8)
|
||||
0x1d0| 00 00 00 02 | .... | corr: 2 0x1da-0x1dd.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x1de-0x1e9.7 (12)
|
||||
0x1d0| 00 00| ..| occur: "1974-01-01T00:00:02Z" (126230402) 0x1de-0x1e5.7 (8)
|
||||
0x1e0|00 00 07 86 1f 82 |...... |
|
||||
0x1e0| 00 00 00 03 | .... | corr: 3 0x1e6-0x1e9.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x1ea-0x1f5.7 (12)
|
||||
0x1e0| 00 00 00 00 09 67| .....g| occur: "1975-01-01T00:00:03Z" (157766403) 0x1ea-0x1f1.7 (8)
|
||||
0x1f0|53 03 |S. |
|
||||
0x1f0| 00 00 00 04 | .... | corr: 4 0x1f2-0x1f5.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x1f6-0x201.7 (12)
|
||||
0x1f0| 00 00 00 00 0b 48 86 84 | .....H.. | occur: "1976-01-01T00:00:04Z" (189302404) 0x1f6-0x1fd.7 (8)
|
||||
0x1f0| 00 00| ..| corr: 5 0x1fe-0x201.7 (4)
|
||||
0x200|00 05 |.. |
|
||||
| | | [5]{}: leap_second_record 0x202-0x20d.7 (12)
|
||||
0x200| 00 00 00 00 0d 2b 0b 85 | .....+.. | occur: "1977-01-01T00:00:05Z" (220924805) 0x202-0x209.7 (8)
|
||||
0x200| 00 00 00 06 | .... | corr: 6 0x20a-0x20d.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x20e-0x219.7 (12)
|
||||
0x200| 00 00| ..| occur: "1978-01-01T00:00:06Z" (252460806) 0x20e-0x215.7 (8)
|
||||
0x210|00 00 0f 0c 3f 06 |....?. |
|
||||
0x210| 00 00 00 07 | .... | corr: 7 0x216-0x219.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x21a-0x225.7 (12)
|
||||
0x210| 00 00 00 00 10 ed| ......| occur: "1979-01-01T00:00:07Z" (283996807) 0x21a-0x221.7 (8)
|
||||
0x220|72 87 |r. |
|
||||
0x220| 00 00 00 08 | .... | corr: 8 0x222-0x225.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x226-0x231.7 (12)
|
||||
0x220| 00 00 00 00 12 ce a6 08 | ........ | occur: "1980-01-01T00:00:08Z" (315532808) 0x226-0x22d.7 (8)
|
||||
0x220| 00 00| ..| corr: 9 0x22e-0x231.7 (4)
|
||||
0x230|00 09 |.. |
|
||||
| | | [9]{}: leap_second_record 0x232-0x23d.7 (12)
|
||||
0x230| 00 00 00 00 15 9f ca 89 | ........ | occur: "1981-07-01T00:00:09Z" (362793609) 0x232-0x239.7 (8)
|
||||
0x230| 00 00 00 0a | .... | corr: 10 0x23a-0x23d.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x23e-0x249.7 (12)
|
||||
0x230| 00 00| ..| occur: "1982-07-01T00:00:10Z" (394329610) 0x23e-0x245.7 (8)
|
||||
0x240|00 00 17 80 fe 0a |...... |
|
||||
0x240| 00 00 00 0b | .... | corr: 11 0x246-0x249.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x24a-0x255.7 (12)
|
||||
0x240| 00 00 00 00 19 62| .....b| occur: "1983-07-01T00:00:11Z" (425865611) 0x24a-0x251.7 (8)
|
||||
0x250|31 8b |1. |
|
||||
0x250| 00 00 00 0c | .... | corr: 12 0x252-0x255.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x256-0x261.7 (12)
|
||||
0x250| 00 00 00 00 1d 25 ea 0c | .....%.. | occur: "1985-07-01T00:00:12Z" (489024012) 0x256-0x25d.7 (8)
|
||||
0x250| 00 00| ..| corr: 13 0x25e-0x261.7 (4)
|
||||
0x260|00 0d |.. |
|
||||
| | | [13]{}: leap_second_record 0x262-0x26d.7 (12)
|
||||
0x260| 00 00 00 00 21 da e5 0d | ....!... | occur: "1988-01-01T00:00:13Z" (567993613) 0x262-0x269.7 (8)
|
||||
0x260| 00 00 00 0e | .... | corr: 14 0x26a-0x26d.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x26e-0x279.7 (12)
|
||||
0x260| 00 00| ..| occur: "1990-01-01T00:00:14Z" (631152014) 0x26e-0x275.7 (8)
|
||||
0x270|00 00 25 9e 9d 8e |..%... |
|
||||
0x270| 00 00 00 0f | .... | corr: 15 0x276-0x279.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x27a-0x285.7 (12)
|
||||
0x270| 00 00 00 00 27 7f| ....'.| occur: "1991-01-01T00:00:15Z" (662688015) 0x27a-0x281.7 (8)
|
||||
0x280|d1 0f |.. |
|
||||
0x280| 00 00 00 10 | .... | corr: 16 0x282-0x285.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x286-0x291.7 (12)
|
||||
0x280| 00 00 00 00 2a 50 f5 90 | ....*P.. | occur: "1992-07-01T00:00:16Z" (709948816) 0x286-0x28d.7 (8)
|
||||
0x280| 00 00| ..| corr: 17 0x28e-0x291.7 (4)
|
||||
0x290|00 11 |.. |
|
||||
| | | [17]{}: leap_second_record 0x292-0x29d.7 (12)
|
||||
0x290| 00 00 00 00 2c 32 29 11 | ....,2). | occur: "1993-07-01T00:00:17Z" (741484817) 0x292-0x299.7 (8)
|
||||
0x290| 00 00 00 12 | .... | corr: 18 0x29a-0x29d.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x29e-0x2a9.7 (12)
|
||||
0x290| 00 00| ..| occur: "1994-07-01T00:00:18Z" (773020818) 0x29e-0x2a5.7 (8)
|
||||
0x2a0|00 00 2e 13 5c 92 |....\. |
|
||||
0x2a0| 00 00 00 13 | .... | corr: 19 0x2a6-0x2a9.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x2aa-0x2b5.7 (12)
|
||||
0x2a0| 00 00 00 00 30 e7| ....0.| occur: "1996-01-01T00:00:19Z" (820454419) 0x2aa-0x2b1.7 (8)
|
||||
0x2b0|24 13 |$. |
|
||||
0x2b0| 00 00 00 14 | .... | corr: 20 0x2b2-0x2b5.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x2b6-0x2c1.7 (12)
|
||||
0x2b0| 00 00 00 00 33 b8 48 94 | ....3.H. | occur: "1997-07-01T00:00:20Z" (867715220) 0x2b6-0x2bd.7 (8)
|
||||
0x2b0| 00 00| ..| corr: 21 0x2be-0x2c1.7 (4)
|
||||
0x2c0|00 15 |.. |
|
||||
| | | [21]{}: leap_second_record 0x2c2-0x2cd.7 (12)
|
||||
0x2c0| 00 00 00 00 36 8c 10 15 | ....6... | occur: "1999-01-01T00:00:21Z" (915148821) 0x2c2-0x2c9.7 (8)
|
||||
0x2c0| 00 00 00 16 | .... | corr: 22 0x2ca-0x2cd.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x2ce-0x2d9.7 (12)
|
||||
0x2c0| 00 00| ..| occur: "2006-01-01T00:00:22Z" (1136073622) 0x2ce-0x2d5.7 (8)
|
||||
0x2d0|00 00 43 b7 1b 96 |..C... |
|
||||
0x2d0| 00 00 00 17 | .... | corr: 23 0x2d6-0x2d9.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x2da-0x2e5.7 (12)
|
||||
0x2d0| 00 00 00 00 49 5c| ....I\| occur: "2009-01-01T00:00:23Z" (1230768023) 0x2da-0x2e1.7 (8)
|
||||
0x2e0|07 97 |.. |
|
||||
0x2e0| 00 00 00 18 | .... | corr: 24 0x2e2-0x2e5.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x2e6-0x2f1.7 (12)
|
||||
0x2e0| 00 00 00 00 4f ef 93 18 | ....O... | occur: "2012-07-01T00:00:24Z" (1341100824) 0x2e6-0x2ed.7 (8)
|
||||
0x2e0| 00 00| ..| corr: 25 0x2ee-0x2f1.7 (4)
|
||||
0x2f0|00 19 |.. |
|
||||
| | | [25]{}: leap_second_record 0x2f2-0x2fd.7 (12)
|
||||
0x2f0| 00 00 00 00 55 93 2d 99 | ....U.-. | occur: "2015-07-01T00:00:25Z" (1435708825) 0x2f2-0x2f9.7 (8)
|
||||
0x2f0| 00 00 00 1a | .... | corr: 26 0x2fa-0x2fd.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x2fe-0x309.7 (12)
|
||||
0x2f0| 00 00| ..| occur: "2017-01-01T00:00:26Z" (1483228826) 0x2fe-0x305.7 (8)
|
||||
0x300|00 00 58 68 46 9a |..XhF. |
|
||||
0x300| 00 00 00 1b | .... | corr: 27 0x306-0x309.7 (4)
|
||||
| | | standard_wall_indicators[0:0]: 0x30a-NA (0)
|
||||
| | | ut_local_indicators[0:0]: 0x30a-NA (0)
|
||||
| | | footer{}: 0x30a-0x30b.7 (2)
|
||||
0x300| 0a | . | nl1: 10 (valid) 0x30a-0x30a.7 (1)
|
||||
| | | tz_string: "" 0x30b-NA (0)
|
||||
0x300| 0a| | .| | nl2: 10 (valid) 0x30b-0x30b.7 (1)
|
BIN
format/tzif/testdata/Boise
vendored
Normal file
BIN
format/tzif/testdata/Boise
vendored
Normal file
Binary file not shown.
911
format/tzif/testdata/Boise.fqtest
vendored
Normal file
911
format/tzif/testdata/Boise.fqtest
vendored
Normal file
@ -0,0 +1,911 @@
|
||||
$ fq -d tzif dv Boise
|
||||
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: Boise (tzif) 0x0-0x9e7.7 (2536)
|
||||
| | | v1header{}: 0x0-0x2b.7 (44)
|
||||
0x000|54 5a 69 66 |TZif | magic: 0x545a6966 (valid) 0x0-0x3.7 (4)
|
||||
0x000| 32 | 2 | ver: "2" (0x32) (valid) 0x4-0x4.7 (1)
|
||||
0x000| 00 00 00 00 00 00 00 00 00 00 00| ...........| reserved: raw bits 0x5-0x13.7 (15)
|
||||
0x010|00 00 00 00 |.... |
|
||||
0x010| 00 00 00 08 | .... | isutcnt: 8 0x14-0x17.7 (4)
|
||||
0x010| 00 00 00 08 | .... | isstdcnt: 8 0x18-0x1b.7 (4)
|
||||
0x010| 00 00 00 1b| ....| leapcnt: 27 0x1c-0x1f.7 (4)
|
||||
0x020|00 00 00 7b |...{ | timecnt: 123 0x20-0x23.7 (4)
|
||||
0x020| 00 00 00 08 | .... | typecnt: 8 0x24-0x27.7 (4)
|
||||
0x020| 00 00 00 1c | .... | charcnt: 28 0x28-0x2b.7 (4)
|
||||
| | | v1datablock{}: 0x2c-0x3c6.7 (923)
|
||||
| | | transition_times[0:123]: 0x2c-0x217.7 (492)
|
||||
0x020| 80 00 00 00| ....| [0]: "1901-12-13T20:45:52Z" (-2147483648) transition_time 0x2c-0x2f.7 (4)
|
||||
0x030|9e a6 48 a0 |..H. | [1]: "1918-03-31T10:00:00Z" (-1633269600) transition_time 0x30-0x33.7 (4)
|
||||
0x030| 9f bb 15 90 | .... | [2]: "1918-10-27T09:00:00Z" (-1615129200) transition_time 0x34-0x37.7 (4)
|
||||
0x030| a0 86 2a a0 | ..*. | [3]: "1919-03-30T10:00:00Z" (-1601820000) transition_time 0x38-0x3b.7 (4)
|
||||
0x030| a1 9a f7 90| ....| [4]: "1919-10-26T09:00:00Z" (-1583679600) transition_time 0x3c-0x3f.7 (4)
|
||||
0x040|a8 46 4c 20 |.FL | [5]: "1923-05-13T10:00:00Z" (-1471788000) transition_time 0x40-0x43.7 (4)
|
||||
0x040| cb 89 0c 90 | .... | [6]: "1942-02-09T09:00:00Z" (-880210800) transition_time 0x44-0x47.7 (4)
|
||||
0x040| d2 23 f4 70 | .#.p | [7]: "1945-08-14T23:00:00Z" (-769395600) transition_time 0x48-0x4b.7 (4)
|
||||
0x040| d2 61 18 00| .a..| [8]: "1945-09-30T08:00:00Z" (-765388800) transition_time 0x4c-0x4f.7 (4)
|
||||
0x050|fa f8 75 10 |..u. | [9]: "1967-04-30T09:00:00Z" (-84380400) transition_time 0x50-0x53.7 (4)
|
||||
0x050| fb e8 58 00 | ..X. | [10]: "1967-10-29T08:00:00Z" (-68659200) transition_time 0x54-0x57.7 (4)
|
||||
0x050| fc d8 57 10 | ..W. | [11]: "1968-04-28T09:00:00Z" (-52930800) transition_time 0x58-0x5b.7 (4)
|
||||
0x050| fd c8 3a 00| ..:.| [12]: "1968-10-27T08:00:00Z" (-37209600) transition_time 0x5c-0x5f.7 (4)
|
||||
0x060|fe b8 39 10 |..9. | [13]: "1969-04-27T09:00:00Z" (-21481200) transition_time 0x60-0x63.7 (4)
|
||||
0x060| ff a8 1c 00 | .... | [14]: "1969-10-26T08:00:00Z" (-5760000) transition_time 0x64-0x67.7 (4)
|
||||
0x060| 00 98 1b 10 | .... | [15]: "1970-04-26T09:00:00Z" (9968400) transition_time 0x68-0x6b.7 (4)
|
||||
0x060| 01 87 fe 00| ....| [16]: "1970-10-25T08:00:00Z" (25689600) transition_time 0x6c-0x6f.7 (4)
|
||||
0x070|02 77 fd 10 |.w.. | [17]: "1971-04-25T09:00:00Z" (41418000) transition_time 0x70-0x73.7 (4)
|
||||
0x070| 03 71 1a 80 | .q.. | [18]: "1971-10-31T08:00:00Z" (57744000) transition_time 0x74-0x77.7 (4)
|
||||
0x070| 04 61 19 90 | .a.. | [19]: "1972-04-30T09:00:00Z" (73472400) transition_time 0x78-0x7b.7 (4)
|
||||
0x070| 05 50 fc 81| .P..| [20]: "1972-10-29T08:00:01Z" (89193601) transition_time 0x7c-0x7f.7 (4)
|
||||
0x080|06 40 fb 92 |.@.. | [21]: "1973-04-29T09:00:02Z" (104922002) transition_time 0x80-0x83.7 (4)
|
||||
0x080| 07 30 de 82 | .0.. | [22]: "1973-10-28T08:00:02Z" (120643202) transition_time 0x84-0x87.7 (4)
|
||||
0x080| 07 b2 1f 93 | .... | [23]: "1974-02-03T09:00:03Z" (129114003) transition_time 0x88-0x8b.7 (4)
|
||||
0x080| 09 10 c0 83| ....| [24]: "1974-10-27T08:00:03Z" (152092803) transition_time 0x8c-0x8f.7 (4)
|
||||
0x090|09 ad b1 14 |.... | [25]: "1975-02-23T09:00:04Z" (162378004) transition_time 0x90-0x93.7 (4)
|
||||
0x090| 0a f0 a2 84 | .... | [26]: "1975-10-26T08:00:04Z" (183542404) transition_time 0x94-0x97.7 (4)
|
||||
0x090| 0b e0 a1 95 | .... | [27]: "1976-04-25T09:00:05Z" (199270805) transition_time 0x98-0x9b.7 (4)
|
||||
0x090| 0c d9 bf 05| ....| [28]: "1976-10-31T08:00:05Z" (215596805) transition_time 0x9c-0x9f.7 (4)
|
||||
0x0a0|0d c0 83 96 |.... | [29]: "1977-04-24T09:00:06Z" (230720406) transition_time 0xa0-0xa3.7 (4)
|
||||
0x0a0| 0e b9 a1 06 | .... | [30]: "1977-10-30T08:00:06Z" (247046406) transition_time 0xa4-0xa7.7 (4)
|
||||
0x0a0| 0f a9 a0 17 | .... | [31]: "1978-04-30T09:00:07Z" (262774807) transition_time 0xa8-0xab.7 (4)
|
||||
0x0a0| 10 99 83 07| ....| [32]: "1978-10-29T08:00:07Z" (278496007) transition_time 0xac-0xaf.7 (4)
|
||||
0x0b0|11 89 82 18 |.... | [33]: "1979-04-29T09:00:08Z" (294224408) transition_time 0xb0-0xb3.7 (4)
|
||||
0x0b0| 12 79 65 08 | .ye. | [34]: "1979-10-28T08:00:08Z" (309945608) transition_time 0xb4-0xb7.7 (4)
|
||||
0x0b0| 13 69 64 19 | .id. | [35]: "1980-04-27T09:00:09Z" (325674009) transition_time 0xb8-0xbb.7 (4)
|
||||
0x0b0| 14 59 47 09| .YG.| [36]: "1980-10-26T08:00:09Z" (341395209) transition_time 0xbc-0xbf.7 (4)
|
||||
0x0c0|15 49 46 19 |.IF. | [37]: "1981-04-26T09:00:09Z" (357123609) transition_time 0xc0-0xc3.7 (4)
|
||||
0x0c0| 16 39 29 0a | .9). | [38]: "1981-10-25T08:00:10Z" (372844810) transition_time 0xc4-0xc7.7 (4)
|
||||
0x0c0| 17 29 28 1a | .)(. | [39]: "1982-04-25T09:00:10Z" (388573210) transition_time 0xc8-0xcb.7 (4)
|
||||
0x0c0| 18 22 45 8b| ."E.| [40]: "1982-10-31T08:00:11Z" (404899211) transition_time 0xcc-0xcf.7 (4)
|
||||
0x0d0|19 09 0a 1b |.... | [41]: "1983-04-24T09:00:11Z" (420022811) transition_time 0xd0-0xd3.7 (4)
|
||||
0x0d0| 1a 02 27 8c | ..'. | [42]: "1983-10-30T08:00:12Z" (436348812) transition_time 0xd4-0xd7.7 (4)
|
||||
0x0d0| 1a f2 26 9c | ..&. | [43]: "1984-04-29T09:00:12Z" (452077212) transition_time 0xd8-0xdb.7 (4)
|
||||
0x0d0| 1b e2 09 8c| ....| [44]: "1984-10-28T08:00:12Z" (467798412) transition_time 0xdc-0xdf.7 (4)
|
||||
0x0e0|1c d2 08 9c |.... | [45]: "1985-04-28T09:00:12Z" (483526812) transition_time 0xe0-0xe3.7 (4)
|
||||
0x0e0| 1d c1 eb 8d | .... | [46]: "1985-10-27T08:00:13Z" (499248013) transition_time 0xe4-0xe7.7 (4)
|
||||
0x0e0| 1e b1 ea 9d | .... | [47]: "1986-04-27T09:00:13Z" (514976413) transition_time 0xe8-0xeb.7 (4)
|
||||
0x0e0| 1f a1 cd 8d| ....| [48]: "1986-10-26T08:00:13Z" (530697613) transition_time 0xec-0xef.7 (4)
|
||||
0x0f0|20 76 1d 1d | v.. | [49]: "1987-04-05T09:00:13Z" (544611613) transition_time 0xf0-0xf3.7 (4)
|
||||
0x0f0| 21 81 af 8d | !... | [50]: "1987-10-25T08:00:13Z" (562147213) transition_time 0xf4-0xf7.7 (4)
|
||||
0x0f0| 22 55 ff 1e | "U.. | [51]: "1988-04-03T09:00:14Z" (576061214) transition_time 0xf8-0xfb.7 (4)
|
||||
0x0f0| 23 6a cc 0e| #j..| [52]: "1988-10-30T08:00:14Z" (594201614) transition_time 0xfc-0xff.7 (4)
|
||||
0x100|24 35 e1 1e |$5.. | [53]: "1989-04-02T09:00:14Z" (607510814) transition_time 0x100-0x103.7 (4)
|
||||
0x100| 25 4a ae 0e | %J.. | [54]: "1989-10-29T08:00:14Z" (625651214) transition_time 0x104-0x107.7 (4)
|
||||
0x100| 26 15 c3 1f | &... | [55]: "1990-04-01T09:00:15Z" (638960415) transition_time 0x108-0x10b.7 (4)
|
||||
0x100| 27 2a 90 0f| '*..| [56]: "1990-10-28T08:00:15Z" (657100815) transition_time 0x10c-0x10f.7 (4)
|
||||
0x110|27 fe df a0 |'... | [57]: "1991-04-07T09:00:16Z" (671014816) transition_time 0x110-0x113.7 (4)
|
||||
0x110| 29 0a 72 10 | ).r. | [58]: "1991-10-27T08:00:16Z" (688550416) transition_time 0x114-0x117.7 (4)
|
||||
0x110| 29 de c1 a0 | )... | [59]: "1992-04-05T09:00:16Z" (702464416) transition_time 0x118-0x11b.7 (4)
|
||||
0x110| 2a ea 54 11| *.T.| [60]: "1992-10-25T08:00:17Z" (720000017) transition_time 0x11c-0x11f.7 (4)
|
||||
0x120|2b be a3 a1 |+... | [61]: "1993-04-04T09:00:17Z" (733914017) transition_time 0x120-0x123.7 (4)
|
||||
0x120| 2c d3 70 92 | ,.p. | [62]: "1993-10-31T08:00:18Z" (752054418) transition_time 0x124-0x127.7 (4)
|
||||
0x120| 2d 9e 85 a2 | -... | [63]: "1994-04-03T09:00:18Z" (765363618) transition_time 0x128-0x12b.7 (4)
|
||||
0x120| 2e b3 52 93| ..R.| [64]: "1994-10-30T08:00:19Z" (783504019) transition_time 0x12c-0x12f.7 (4)
|
||||
0x130|2f 7e 67 a3 |/~g. | [65]: "1995-04-02T09:00:19Z" (796813219) transition_time 0x130-0x133.7 (4)
|
||||
0x130| 30 93 34 93 | 0.4. | [66]: "1995-10-29T08:00:19Z" (814953619) transition_time 0x134-0x137.7 (4)
|
||||
0x130| 31 67 84 24 | 1g.$ | [67]: "1996-04-07T09:00:20Z" (828867620) transition_time 0x138-0x13b.7 (4)
|
||||
0x130| 32 73 16 94| 2s..| [68]: "1996-10-27T08:00:20Z" (846403220) transition_time 0x13c-0x13f.7 (4)
|
||||
0x140|33 47 66 24 |3Gf$ | [69]: "1997-04-06T09:00:20Z" (860317220) transition_time 0x140-0x143.7 (4)
|
||||
0x140| 34 52 f8 95 | 4R.. | [70]: "1997-10-26T08:00:21Z" (877852821) transition_time 0x144-0x147.7 (4)
|
||||
0x140| 35 27 48 25 | 5'H% | [71]: "1998-04-05T09:00:21Z" (891766821) transition_time 0x148-0x14b.7 (4)
|
||||
0x140| 36 32 da 95| 62..| [72]: "1998-10-25T08:00:21Z" (909302421) transition_time 0x14c-0x14f.7 (4)
|
||||
0x150|37 07 2a 26 |7.*& | [73]: "1999-04-04T09:00:22Z" (923216422) transition_time 0x150-0x153.7 (4)
|
||||
0x150| 38 1b f7 16 | 8... | [74]: "1999-10-31T08:00:22Z" (941356822) transition_time 0x154-0x157.7 (4)
|
||||
0x150| 38 e7 0c 26 | 8..& | [75]: "2000-04-02T09:00:22Z" (954666022) transition_time 0x158-0x15b.7 (4)
|
||||
0x150| 39 fb d9 16| 9...| [76]: "2000-10-29T08:00:22Z" (972806422) transition_time 0x15c-0x15f.7 (4)
|
||||
0x160|3a c6 ee 26 |:..& | [77]: "2001-04-01T09:00:22Z" (986115622) transition_time 0x160-0x163.7 (4)
|
||||
0x160| 3b db bb 16 | ;... | [78]: "2001-10-28T08:00:22Z" (1004256022) transition_time 0x164-0x167.7 (4)
|
||||
0x160| 3c b0 0a a6 | <... | [79]: "2002-04-07T09:00:22Z" (1018170022) transition_time 0x168-0x16b.7 (4)
|
||||
0x160| 3d bb 9d 16| =...| [80]: "2002-10-27T08:00:22Z" (1035705622) transition_time 0x16c-0x16f.7 (4)
|
||||
0x170|3e 8f ec a6 |>... | [81]: "2003-04-06T09:00:22Z" (1049619622) transition_time 0x170-0x173.7 (4)
|
||||
0x170| 3f 9b 7f 16 | ?... | [82]: "2003-10-26T08:00:22Z" (1067155222) transition_time 0x174-0x177.7 (4)
|
||||
0x170| 40 6f ce a6 | @o.. | [83]: "2004-04-04T09:00:22Z" (1081069222) transition_time 0x178-0x17b.7 (4)
|
||||
0x170| 41 84 9b 96| A...| [84]: "2004-10-31T08:00:22Z" (1099209622) transition_time 0x17c-0x17f.7 (4)
|
||||
0x180|42 4f b0 a6 |BO.. | [85]: "2005-04-03T09:00:22Z" (1112518822) transition_time 0x180-0x183.7 (4)
|
||||
0x180| 43 64 7d 96 | Cd}. | [86]: "2005-10-30T08:00:22Z" (1130659222) transition_time 0x184-0x187.7 (4)
|
||||
0x180| 44 2f 92 a7 | D/.. | [87]: "2006-04-02T09:00:23Z" (1143968423) transition_time 0x188-0x18b.7 (4)
|
||||
0x180| 45 44 5f 97| ED_.| [88]: "2006-10-29T08:00:23Z" (1162108823) transition_time 0x18c-0x18f.7 (4)
|
||||
0x190|45 f3 c5 27 |E..' | [89]: "2007-03-11T09:00:23Z" (1173603623) transition_time 0x190-0x193.7 (4)
|
||||
0x190| 47 2d 7c 17 | G-|. | [90]: "2007-11-04T08:00:23Z" (1194163223) transition_time 0x194-0x197.7 (4)
|
||||
0x190| 47 d3 a7 27 | G..' | [91]: "2008-03-09T09:00:23Z" (1205053223) transition_time 0x198-0x19b.7 (4)
|
||||
0x190| 49 0d 5e 17| I.^.| [92]: "2008-11-02T08:00:23Z" (1225612823) transition_time 0x19c-0x19f.7 (4)
|
||||
0x1a0|49 b3 89 28 |I..( | [93]: "2009-03-08T09:00:24Z" (1236502824) transition_time 0x1a0-0x1a3.7 (4)
|
||||
0x1a0| 4a ed 40 18 | J.@. | [94]: "2009-11-01T08:00:24Z" (1257062424) transition_time 0x1a4-0x1a7.7 (4)
|
||||
0x1a0| 4b 9c a5 a8 | K... | [95]: "2010-03-14T09:00:24Z" (1268557224) transition_time 0x1a8-0x1ab.7 (4)
|
||||
0x1a0| 4c d6 5c 98| L.\.| [96]: "2010-11-07T08:00:24Z" (1289116824) transition_time 0x1ac-0x1af.7 (4)
|
||||
0x1b0|4d 7c 87 a8 |M|.. | [97]: "2011-03-13T09:00:24Z" (1300006824) transition_time 0x1b0-0x1b3.7 (4)
|
||||
0x1b0| 4e b6 3e 98 | N.>. | [98]: "2011-11-06T08:00:24Z" (1320566424) transition_time 0x1b4-0x1b7.7 (4)
|
||||
0x1b0| 4f 5c 69 a8 | O\i. | [99]: "2012-03-11T09:00:24Z" (1331456424) transition_time 0x1b8-0x1bb.7 (4)
|
||||
0x1b0| 50 96 20 99| P. .| [100]: "2012-11-04T08:00:25Z" (1352016025) transition_time 0x1bc-0x1bf.7 (4)
|
||||
0x1c0|51 3c 4b a9 |Q<K. | [101]: "2013-03-10T09:00:25Z" (1362906025) transition_time 0x1c0-0x1c3.7 (4)
|
||||
0x1c0| 52 76 02 99 | Rv.. | [102]: "2013-11-03T08:00:25Z" (1383465625) transition_time 0x1c4-0x1c7.7 (4)
|
||||
0x1c0| 53 1c 2d a9 | S.-. | [103]: "2014-03-09T09:00:25Z" (1394355625) transition_time 0x1c8-0x1cb.7 (4)
|
||||
0x1c0| 54 55 e4 99| TU..| [104]: "2014-11-02T08:00:25Z" (1414915225) transition_time 0x1cc-0x1cf.7 (4)
|
||||
0x1d0|54 fc 0f a9 |T... | [105]: "2015-03-08T09:00:25Z" (1425805225) transition_time 0x1d0-0x1d3.7 (4)
|
||||
0x1d0| 56 35 c6 9a | V5.. | [106]: "2015-11-01T08:00:26Z" (1446364826) transition_time 0x1d4-0x1d7.7 (4)
|
||||
0x1d0| 56 e5 2c 2a | V.,* | [107]: "2016-03-13T09:00:26Z" (1457859626) transition_time 0x1d8-0x1db.7 (4)
|
||||
0x1d0| 58 1e e3 1a| X...| [108]: "2016-11-06T08:00:26Z" (1478419226) transition_time 0x1dc-0x1df.7 (4)
|
||||
0x1e0|58 c5 0e 2b |X..+ | [109]: "2017-03-12T09:00:27Z" (1489309227) transition_time 0x1e0-0x1e3.7 (4)
|
||||
0x1e0| 59 fe c5 1b | Y... | [110]: "2017-11-05T08:00:27Z" (1509868827) transition_time 0x1e4-0x1e7.7 (4)
|
||||
0x1e0| 5a a4 f0 2b | Z..+ | [111]: "2018-03-11T09:00:27Z" (1520758827) transition_time 0x1e8-0x1eb.7 (4)
|
||||
0x1e0| 5b de a7 1b| [...| [112]: "2018-11-04T08:00:27Z" (1541318427) transition_time 0x1ec-0x1ef.7 (4)
|
||||
0x1f0|5c 84 d2 2b |\..+ | [113]: "2019-03-10T09:00:27Z" (1552208427) transition_time 0x1f0-0x1f3.7 (4)
|
||||
0x1f0| 5d be 89 1b | ]... | [114]: "2019-11-03T08:00:27Z" (1572768027) transition_time 0x1f4-0x1f7.7 (4)
|
||||
0x1f0| 5e 64 b4 2b | ^d.+ | [115]: "2020-03-08T09:00:27Z" (1583658027) transition_time 0x1f8-0x1fb.7 (4)
|
||||
0x1f0| 5f 9e 6b 1b| _.k.| [116]: "2020-11-01T08:00:27Z" (1604217627) transition_time 0x1fc-0x1ff.7 (4)
|
||||
0x200|60 4d d0 ab |`M.. | [117]: "2021-03-14T09:00:27Z" (1615712427) transition_time 0x200-0x203.7 (4)
|
||||
0x200| 61 87 87 9b | a... | [118]: "2021-11-07T08:00:27Z" (1636272027) transition_time 0x204-0x207.7 (4)
|
||||
0x200| 62 2d b2 ab | b-.. | [119]: "2022-03-13T09:00:27Z" (1647162027) transition_time 0x208-0x20b.7 (4)
|
||||
0x200| 63 67 69 9b| cgi.| [120]: "2022-11-06T08:00:27Z" (1667721627) transition_time 0x20c-0x20f.7 (4)
|
||||
0x210|64 0d 94 ab |d... | [121]: "2023-03-12T09:00:27Z" (1678611627) transition_time 0x210-0x213.7 (4)
|
||||
0x210| 64 9b 78 1b | d.x. | [122]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x214-0x217.7 (4)
|
||||
| | | transition_types[0:123]: 0x218-0x292.7 (123)
|
||||
0x210| 03 | . | [0]: 3 transition_type 0x218-0x218.7 (1)
|
||||
0x210| 01 | . | [1]: 1 transition_type 0x219-0x219.7 (1)
|
||||
0x210| 02 | . | [2]: 2 transition_type 0x21a-0x21a.7 (1)
|
||||
0x210| 01 | . | [3]: 1 transition_type 0x21b-0x21b.7 (1)
|
||||
0x210| 02 | . | [4]: 2 transition_type 0x21c-0x21c.7 (1)
|
||||
0x210| 06 | . | [5]: 6 transition_type 0x21d-0x21d.7 (1)
|
||||
0x210| 04 | . | [6]: 4 transition_type 0x21e-0x21e.7 (1)
|
||||
0x210| 05| .| [7]: 5 transition_type 0x21f-0x21f.7 (1)
|
||||
0x220|06 |. | [8]: 6 transition_type 0x220-0x220.7 (1)
|
||||
0x220| 07 | . | [9]: 7 transition_type 0x221-0x221.7 (1)
|
||||
0x220| 06 | . | [10]: 6 transition_type 0x222-0x222.7 (1)
|
||||
0x220| 07 | . | [11]: 7 transition_type 0x223-0x223.7 (1)
|
||||
0x220| 06 | . | [12]: 6 transition_type 0x224-0x224.7 (1)
|
||||
0x220| 07 | . | [13]: 7 transition_type 0x225-0x225.7 (1)
|
||||
0x220| 06 | . | [14]: 6 transition_type 0x226-0x226.7 (1)
|
||||
0x220| 07 | . | [15]: 7 transition_type 0x227-0x227.7 (1)
|
||||
0x220| 06 | . | [16]: 6 transition_type 0x228-0x228.7 (1)
|
||||
0x220| 07 | . | [17]: 7 transition_type 0x229-0x229.7 (1)
|
||||
0x220| 06 | . | [18]: 6 transition_type 0x22a-0x22a.7 (1)
|
||||
0x220| 07 | . | [19]: 7 transition_type 0x22b-0x22b.7 (1)
|
||||
0x220| 06 | . | [20]: 6 transition_type 0x22c-0x22c.7 (1)
|
||||
0x220| 07 | . | [21]: 7 transition_type 0x22d-0x22d.7 (1)
|
||||
0x220| 06 | . | [22]: 6 transition_type 0x22e-0x22e.7 (1)
|
||||
0x220| 07| .| [23]: 7 transition_type 0x22f-0x22f.7 (1)
|
||||
0x230|06 |. | [24]: 6 transition_type 0x230-0x230.7 (1)
|
||||
0x230| 07 | . | [25]: 7 transition_type 0x231-0x231.7 (1)
|
||||
0x230| 06 | . | [26]: 6 transition_type 0x232-0x232.7 (1)
|
||||
0x230| 07 | . | [27]: 7 transition_type 0x233-0x233.7 (1)
|
||||
0x230| 06 | . | [28]: 6 transition_type 0x234-0x234.7 (1)
|
||||
0x230| 07 | . | [29]: 7 transition_type 0x235-0x235.7 (1)
|
||||
0x230| 06 | . | [30]: 6 transition_type 0x236-0x236.7 (1)
|
||||
0x230| 07 | . | [31]: 7 transition_type 0x237-0x237.7 (1)
|
||||
0x230| 06 | . | [32]: 6 transition_type 0x238-0x238.7 (1)
|
||||
0x230| 07 | . | [33]: 7 transition_type 0x239-0x239.7 (1)
|
||||
0x230| 06 | . | [34]: 6 transition_type 0x23a-0x23a.7 (1)
|
||||
0x230| 07 | . | [35]: 7 transition_type 0x23b-0x23b.7 (1)
|
||||
0x230| 06 | . | [36]: 6 transition_type 0x23c-0x23c.7 (1)
|
||||
0x230| 07 | . | [37]: 7 transition_type 0x23d-0x23d.7 (1)
|
||||
0x230| 06 | . | [38]: 6 transition_type 0x23e-0x23e.7 (1)
|
||||
0x230| 07| .| [39]: 7 transition_type 0x23f-0x23f.7 (1)
|
||||
0x240|06 |. | [40]: 6 transition_type 0x240-0x240.7 (1)
|
||||
0x240| 07 | . | [41]: 7 transition_type 0x241-0x241.7 (1)
|
||||
0x240| 06 | . | [42]: 6 transition_type 0x242-0x242.7 (1)
|
||||
0x240| 07 | . | [43]: 7 transition_type 0x243-0x243.7 (1)
|
||||
0x240| 06 | . | [44]: 6 transition_type 0x244-0x244.7 (1)
|
||||
0x240| 07 | . | [45]: 7 transition_type 0x245-0x245.7 (1)
|
||||
0x240| 06 | . | [46]: 6 transition_type 0x246-0x246.7 (1)
|
||||
0x240| 07 | . | [47]: 7 transition_type 0x247-0x247.7 (1)
|
||||
0x240| 06 | . | [48]: 6 transition_type 0x248-0x248.7 (1)
|
||||
0x240| 07 | . | [49]: 7 transition_type 0x249-0x249.7 (1)
|
||||
0x240| 06 | . | [50]: 6 transition_type 0x24a-0x24a.7 (1)
|
||||
0x240| 07 | . | [51]: 7 transition_type 0x24b-0x24b.7 (1)
|
||||
0x240| 06 | . | [52]: 6 transition_type 0x24c-0x24c.7 (1)
|
||||
0x240| 07 | . | [53]: 7 transition_type 0x24d-0x24d.7 (1)
|
||||
0x240| 06 | . | [54]: 6 transition_type 0x24e-0x24e.7 (1)
|
||||
0x240| 07| .| [55]: 7 transition_type 0x24f-0x24f.7 (1)
|
||||
0x250|06 |. | [56]: 6 transition_type 0x250-0x250.7 (1)
|
||||
0x250| 07 | . | [57]: 7 transition_type 0x251-0x251.7 (1)
|
||||
0x250| 06 | . | [58]: 6 transition_type 0x252-0x252.7 (1)
|
||||
0x250| 07 | . | [59]: 7 transition_type 0x253-0x253.7 (1)
|
||||
0x250| 06 | . | [60]: 6 transition_type 0x254-0x254.7 (1)
|
||||
0x250| 07 | . | [61]: 7 transition_type 0x255-0x255.7 (1)
|
||||
0x250| 06 | . | [62]: 6 transition_type 0x256-0x256.7 (1)
|
||||
0x250| 07 | . | [63]: 7 transition_type 0x257-0x257.7 (1)
|
||||
0x250| 06 | . | [64]: 6 transition_type 0x258-0x258.7 (1)
|
||||
0x250| 07 | . | [65]: 7 transition_type 0x259-0x259.7 (1)
|
||||
0x250| 06 | . | [66]: 6 transition_type 0x25a-0x25a.7 (1)
|
||||
0x250| 07 | . | [67]: 7 transition_type 0x25b-0x25b.7 (1)
|
||||
0x250| 06 | . | [68]: 6 transition_type 0x25c-0x25c.7 (1)
|
||||
0x250| 07 | . | [69]: 7 transition_type 0x25d-0x25d.7 (1)
|
||||
0x250| 06 | . | [70]: 6 transition_type 0x25e-0x25e.7 (1)
|
||||
0x250| 07| .| [71]: 7 transition_type 0x25f-0x25f.7 (1)
|
||||
0x260|06 |. | [72]: 6 transition_type 0x260-0x260.7 (1)
|
||||
0x260| 07 | . | [73]: 7 transition_type 0x261-0x261.7 (1)
|
||||
0x260| 06 | . | [74]: 6 transition_type 0x262-0x262.7 (1)
|
||||
0x260| 07 | . | [75]: 7 transition_type 0x263-0x263.7 (1)
|
||||
0x260| 06 | . | [76]: 6 transition_type 0x264-0x264.7 (1)
|
||||
0x260| 07 | . | [77]: 7 transition_type 0x265-0x265.7 (1)
|
||||
0x260| 06 | . | [78]: 6 transition_type 0x266-0x266.7 (1)
|
||||
0x260| 07 | . | [79]: 7 transition_type 0x267-0x267.7 (1)
|
||||
0x260| 06 | . | [80]: 6 transition_type 0x268-0x268.7 (1)
|
||||
0x260| 07 | . | [81]: 7 transition_type 0x269-0x269.7 (1)
|
||||
0x260| 06 | . | [82]: 6 transition_type 0x26a-0x26a.7 (1)
|
||||
0x260| 07 | . | [83]: 7 transition_type 0x26b-0x26b.7 (1)
|
||||
0x260| 06 | . | [84]: 6 transition_type 0x26c-0x26c.7 (1)
|
||||
0x260| 07 | . | [85]: 7 transition_type 0x26d-0x26d.7 (1)
|
||||
0x260| 06 | . | [86]: 6 transition_type 0x26e-0x26e.7 (1)
|
||||
0x260| 07| .| [87]: 7 transition_type 0x26f-0x26f.7 (1)
|
||||
0x270|06 |. | [88]: 6 transition_type 0x270-0x270.7 (1)
|
||||
0x270| 07 | . | [89]: 7 transition_type 0x271-0x271.7 (1)
|
||||
0x270| 06 | . | [90]: 6 transition_type 0x272-0x272.7 (1)
|
||||
0x270| 07 | . | [91]: 7 transition_type 0x273-0x273.7 (1)
|
||||
0x270| 06 | . | [92]: 6 transition_type 0x274-0x274.7 (1)
|
||||
0x270| 07 | . | [93]: 7 transition_type 0x275-0x275.7 (1)
|
||||
0x270| 06 | . | [94]: 6 transition_type 0x276-0x276.7 (1)
|
||||
0x270| 07 | . | [95]: 7 transition_type 0x277-0x277.7 (1)
|
||||
0x270| 06 | . | [96]: 6 transition_type 0x278-0x278.7 (1)
|
||||
0x270| 07 | . | [97]: 7 transition_type 0x279-0x279.7 (1)
|
||||
0x270| 06 | . | [98]: 6 transition_type 0x27a-0x27a.7 (1)
|
||||
0x270| 07 | . | [99]: 7 transition_type 0x27b-0x27b.7 (1)
|
||||
0x270| 06 | . | [100]: 6 transition_type 0x27c-0x27c.7 (1)
|
||||
0x270| 07 | . | [101]: 7 transition_type 0x27d-0x27d.7 (1)
|
||||
0x270| 06 | . | [102]: 6 transition_type 0x27e-0x27e.7 (1)
|
||||
0x270| 07| .| [103]: 7 transition_type 0x27f-0x27f.7 (1)
|
||||
0x280|06 |. | [104]: 6 transition_type 0x280-0x280.7 (1)
|
||||
0x280| 07 | . | [105]: 7 transition_type 0x281-0x281.7 (1)
|
||||
0x280| 06 | . | [106]: 6 transition_type 0x282-0x282.7 (1)
|
||||
0x280| 07 | . | [107]: 7 transition_type 0x283-0x283.7 (1)
|
||||
0x280| 06 | . | [108]: 6 transition_type 0x284-0x284.7 (1)
|
||||
0x280| 07 | . | [109]: 7 transition_type 0x285-0x285.7 (1)
|
||||
0x280| 06 | . | [110]: 6 transition_type 0x286-0x286.7 (1)
|
||||
0x280| 07 | . | [111]: 7 transition_type 0x287-0x287.7 (1)
|
||||
0x280| 06 | . | [112]: 6 transition_type 0x288-0x288.7 (1)
|
||||
0x280| 07 | . | [113]: 7 transition_type 0x289-0x289.7 (1)
|
||||
0x280| 06 | . | [114]: 6 transition_type 0x28a-0x28a.7 (1)
|
||||
0x280| 07 | . | [115]: 7 transition_type 0x28b-0x28b.7 (1)
|
||||
0x280| 06 | . | [116]: 6 transition_type 0x28c-0x28c.7 (1)
|
||||
0x280| 07 | . | [117]: 7 transition_type 0x28d-0x28d.7 (1)
|
||||
0x280| 06 | . | [118]: 6 transition_type 0x28e-0x28e.7 (1)
|
||||
0x280| 07| .| [119]: 7 transition_type 0x28f-0x28f.7 (1)
|
||||
0x290|06 |. | [120]: 6 transition_type 0x290-0x290.7 (1)
|
||||
0x290| 07 | . | [121]: 7 transition_type 0x291-0x291.7 (1)
|
||||
0x290| 07 | . | [122]: 7 transition_type 0x292-0x292.7 (1)
|
||||
| | | local_time_type_records[0:8]: 0x293-0x2c2.7 (48)
|
||||
| | | [0]{}: local_time_type 0x293-0x298.7 (6)
|
||||
0x290| ff ff 93 0f | .... | utoff: -27889 (valid) 0x293-0x296.7 (4)
|
||||
0x290| 00 | . | dst: 0 (valid) 0x297-0x297.7 (1)
|
||||
0x290| 00 | . | idx: 0 (valid) 0x298-0x298.7 (1)
|
||||
| | | [1]{}: local_time_type 0x299-0x29e.7 (6)
|
||||
0x290| ff ff 9d 90 | .... | utoff: -25200 (valid) 0x299-0x29c.7 (4)
|
||||
0x290| 01 | . | dst: 1 (valid) 0x29d-0x29d.7 (1)
|
||||
0x290| 04 | . | idx: 4 (valid) 0x29e-0x29e.7 (1)
|
||||
| | | [2]{}: local_time_type 0x29f-0x2a4.7 (6)
|
||||
0x290| ff| .| utoff: -28800 (valid) 0x29f-0x2a2.7 (4)
|
||||
0x2a0|ff 8f 80 |... |
|
||||
0x2a0| 00 | . | dst: 0 (valid) 0x2a3-0x2a3.7 (1)
|
||||
0x2a0| 08 | . | idx: 8 (valid) 0x2a4-0x2a4.7 (1)
|
||||
| | | [3]{}: local_time_type 0x2a5-0x2aa.7 (6)
|
||||
0x2a0| ff ff 8f 80 | .... | utoff: -28800 (valid) 0x2a5-0x2a8.7 (4)
|
||||
0x2a0| 00 | . | dst: 0 (valid) 0x2a9-0x2a9.7 (1)
|
||||
0x2a0| 08 | . | idx: 8 (valid) 0x2aa-0x2aa.7 (1)
|
||||
| | | [4]{}: local_time_type 0x2ab-0x2b0.7 (6)
|
||||
0x2a0| ff ff ab a0 | .... | utoff: -21600 (valid) 0x2ab-0x2ae.7 (4)
|
||||
0x2a0| 01| .| dst: 1 (valid) 0x2af-0x2af.7 (1)
|
||||
0x2b0|0c |. | idx: 12 (valid) 0x2b0-0x2b0.7 (1)
|
||||
| | | [5]{}: local_time_type 0x2b1-0x2b6.7 (6)
|
||||
0x2b0| ff ff ab a0 | .... | utoff: -21600 (valid) 0x2b1-0x2b4.7 (4)
|
||||
0x2b0| 01 | . | dst: 1 (valid) 0x2b5-0x2b5.7 (1)
|
||||
0x2b0| 10 | . | idx: 16 (valid) 0x2b6-0x2b6.7 (1)
|
||||
| | | [6]{}: local_time_type 0x2b7-0x2bc.7 (6)
|
||||
0x2b0| ff ff 9d 90 | .... | utoff: -25200 (valid) 0x2b7-0x2ba.7 (4)
|
||||
0x2b0| 00 | . | dst: 0 (valid) 0x2bb-0x2bb.7 (1)
|
||||
0x2b0| 14 | . | idx: 20 (valid) 0x2bc-0x2bc.7 (1)
|
||||
| | | [7]{}: local_time_type 0x2bd-0x2c2.7 (6)
|
||||
0x2b0| ff ff ab| ...| utoff: -21600 (valid) 0x2bd-0x2c0.7 (4)
|
||||
0x2c0|a0 |. |
|
||||
0x2c0| 01 | . | dst: 1 (valid) 0x2c1-0x2c1.7 (1)
|
||||
0x2c0| 18 | . | idx: 24 (valid) 0x2c2-0x2c2.7 (1)
|
||||
| | | time_zone_designations[0:7]: 0x2c3-0x2de.7 (28)
|
||||
0x2c0| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x2c3-0x2c6.7 (4)
|
||||
0x2c0| 50 44 54 00 | PDT. | [1]: "PDT" time_zone_designation 0x2c7-0x2ca.7 (4)
|
||||
0x2c0| 50 53 54 00 | PST. | [2]: "PST" time_zone_designation 0x2cb-0x2ce.7 (4)
|
||||
0x2c0| 4d| M| [3]: "MWT" time_zone_designation 0x2cf-0x2d2.7 (4)
|
||||
0x2d0|57 54 00 |WT. |
|
||||
0x2d0| 4d 50 54 00 | MPT. | [4]: "MPT" time_zone_designation 0x2d3-0x2d6.7 (4)
|
||||
0x2d0| 4d 53 54 00 | MST. | [5]: "MST" time_zone_designation 0x2d7-0x2da.7 (4)
|
||||
0x2d0| 4d 44 54 00 | MDT. | [6]: "MDT" time_zone_designation 0x2db-0x2de.7 (4)
|
||||
| | | leap_second_records[0:27]: 0x2df-0x3b6.7 (216)
|
||||
| | | [0]{}: leap_second_record 0x2df-0x2e6.7 (8)
|
||||
0x2d0| 04| .| occur: "1972-07-01T00:00:00Z" (78796800) 0x2df-0x2e2.7 (4)
|
||||
0x2e0|b2 58 00 |.X. |
|
||||
0x2e0| 00 00 00 01 | .... | corr: 1 0x2e3-0x2e6.7 (4)
|
||||
| | | [1]{}: leap_second_record 0x2e7-0x2ee.7 (8)
|
||||
0x2e0| 05 a4 ec 01 | .... | occur: "1973-01-01T00:00:01Z" (94694401) 0x2e7-0x2ea.7 (4)
|
||||
0x2e0| 00 00 00 02 | .... | corr: 2 0x2eb-0x2ee.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x2ef-0x2f6.7 (8)
|
||||
0x2e0| 07| .| occur: "1974-01-01T00:00:02Z" (126230402) 0x2ef-0x2f2.7 (4)
|
||||
0x2f0|86 1f 82 |... |
|
||||
0x2f0| 00 00 00 03 | .... | corr: 3 0x2f3-0x2f6.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x2f7-0x2fe.7 (8)
|
||||
0x2f0| 09 67 53 03 | .gS. | occur: "1975-01-01T00:00:03Z" (157766403) 0x2f7-0x2fa.7 (4)
|
||||
0x2f0| 00 00 00 04 | .... | corr: 4 0x2fb-0x2fe.7 (4)
|
||||
| | | [4]{}: leap_second_record 0x2ff-0x306.7 (8)
|
||||
0x2f0| 0b| .| occur: "1976-01-01T00:00:04Z" (189302404) 0x2ff-0x302.7 (4)
|
||||
0x300|48 86 84 |H.. |
|
||||
0x300| 00 00 00 05 | .... | corr: 5 0x303-0x306.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x307-0x30e.7 (8)
|
||||
0x300| 0d 2b 0b 85 | .+.. | occur: "1977-01-01T00:00:05Z" (220924805) 0x307-0x30a.7 (4)
|
||||
0x300| 00 00 00 06 | .... | corr: 6 0x30b-0x30e.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x30f-0x316.7 (8)
|
||||
0x300| 0f| .| occur: "1978-01-01T00:00:06Z" (252460806) 0x30f-0x312.7 (4)
|
||||
0x310|0c 3f 06 |.?. |
|
||||
0x310| 00 00 00 07 | .... | corr: 7 0x313-0x316.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x317-0x31e.7 (8)
|
||||
0x310| 10 ed 72 87 | ..r. | occur: "1979-01-01T00:00:07Z" (283996807) 0x317-0x31a.7 (4)
|
||||
0x310| 00 00 00 08 | .... | corr: 8 0x31b-0x31e.7 (4)
|
||||
| | | [8]{}: leap_second_record 0x31f-0x326.7 (8)
|
||||
0x310| 12| .| occur: "1980-01-01T00:00:08Z" (315532808) 0x31f-0x322.7 (4)
|
||||
0x320|ce a6 08 |... |
|
||||
0x320| 00 00 00 09 | .... | corr: 9 0x323-0x326.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x327-0x32e.7 (8)
|
||||
0x320| 15 9f ca 89 | .... | occur: "1981-07-01T00:00:09Z" (362793609) 0x327-0x32a.7 (4)
|
||||
0x320| 00 00 00 0a | .... | corr: 10 0x32b-0x32e.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x32f-0x336.7 (8)
|
||||
0x320| 17| .| occur: "1982-07-01T00:00:10Z" (394329610) 0x32f-0x332.7 (4)
|
||||
0x330|80 fe 0a |... |
|
||||
0x330| 00 00 00 0b | .... | corr: 11 0x333-0x336.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x337-0x33e.7 (8)
|
||||
0x330| 19 62 31 8b | .b1. | occur: "1983-07-01T00:00:11Z" (425865611) 0x337-0x33a.7 (4)
|
||||
0x330| 00 00 00 0c | .... | corr: 12 0x33b-0x33e.7 (4)
|
||||
| | | [12]{}: leap_second_record 0x33f-0x346.7 (8)
|
||||
0x330| 1d| .| occur: "1985-07-01T00:00:12Z" (489024012) 0x33f-0x342.7 (4)
|
||||
0x340|25 ea 0c |%.. |
|
||||
0x340| 00 00 00 0d | .... | corr: 13 0x343-0x346.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x347-0x34e.7 (8)
|
||||
0x340| 21 da e5 0d | !... | occur: "1988-01-01T00:00:13Z" (567993613) 0x347-0x34a.7 (4)
|
||||
0x340| 00 00 00 0e | .... | corr: 14 0x34b-0x34e.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x34f-0x356.7 (8)
|
||||
0x340| 25| %| occur: "1990-01-01T00:00:14Z" (631152014) 0x34f-0x352.7 (4)
|
||||
0x350|9e 9d 8e |... |
|
||||
0x350| 00 00 00 0f | .... | corr: 15 0x353-0x356.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x357-0x35e.7 (8)
|
||||
0x350| 27 7f d1 0f | '... | occur: "1991-01-01T00:00:15Z" (662688015) 0x357-0x35a.7 (4)
|
||||
0x350| 00 00 00 10 | .... | corr: 16 0x35b-0x35e.7 (4)
|
||||
| | | [16]{}: leap_second_record 0x35f-0x366.7 (8)
|
||||
0x350| 2a| *| occur: "1992-07-01T00:00:16Z" (709948816) 0x35f-0x362.7 (4)
|
||||
0x360|50 f5 90 |P.. |
|
||||
0x360| 00 00 00 11 | .... | corr: 17 0x363-0x366.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x367-0x36e.7 (8)
|
||||
0x360| 2c 32 29 11 | ,2). | occur: "1993-07-01T00:00:17Z" (741484817) 0x367-0x36a.7 (4)
|
||||
0x360| 00 00 00 12 | .... | corr: 18 0x36b-0x36e.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x36f-0x376.7 (8)
|
||||
0x360| 2e| .| occur: "1994-07-01T00:00:18Z" (773020818) 0x36f-0x372.7 (4)
|
||||
0x370|13 5c 92 |.\. |
|
||||
0x370| 00 00 00 13 | .... | corr: 19 0x373-0x376.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x377-0x37e.7 (8)
|
||||
0x370| 30 e7 24 13 | 0.$. | occur: "1996-01-01T00:00:19Z" (820454419) 0x377-0x37a.7 (4)
|
||||
0x370| 00 00 00 14 | .... | corr: 20 0x37b-0x37e.7 (4)
|
||||
| | | [20]{}: leap_second_record 0x37f-0x386.7 (8)
|
||||
0x370| 33| 3| occur: "1997-07-01T00:00:20Z" (867715220) 0x37f-0x382.7 (4)
|
||||
0x380|b8 48 94 |.H. |
|
||||
0x380| 00 00 00 15 | .... | corr: 21 0x383-0x386.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x387-0x38e.7 (8)
|
||||
0x380| 36 8c 10 15 | 6... | occur: "1999-01-01T00:00:21Z" (915148821) 0x387-0x38a.7 (4)
|
||||
0x380| 00 00 00 16 | .... | corr: 22 0x38b-0x38e.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x38f-0x396.7 (8)
|
||||
0x380| 43| C| occur: "2006-01-01T00:00:22Z" (1136073622) 0x38f-0x392.7 (4)
|
||||
0x390|b7 1b 96 |... |
|
||||
0x390| 00 00 00 17 | .... | corr: 23 0x393-0x396.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x397-0x39e.7 (8)
|
||||
0x390| 49 5c 07 97 | I\.. | occur: "2009-01-01T00:00:23Z" (1230768023) 0x397-0x39a.7 (4)
|
||||
0x390| 00 00 00 18 | .... | corr: 24 0x39b-0x39e.7 (4)
|
||||
| | | [24]{}: leap_second_record 0x39f-0x3a6.7 (8)
|
||||
0x390| 4f| O| occur: "2012-07-01T00:00:24Z" (1341100824) 0x39f-0x3a2.7 (4)
|
||||
0x3a0|ef 93 18 |... |
|
||||
0x3a0| 00 00 00 19 | .... | corr: 25 0x3a3-0x3a6.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x3a7-0x3ae.7 (8)
|
||||
0x3a0| 55 93 2d 99 | U.-. | occur: "2015-07-01T00:00:25Z" (1435708825) 0x3a7-0x3aa.7 (4)
|
||||
0x3a0| 00 00 00 1a | .... | corr: 26 0x3ab-0x3ae.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x3af-0x3b6.7 (8)
|
||||
0x3a0| 58| X| occur: "2017-01-01T00:00:26Z" (1483228826) 0x3af-0x3b2.7 (4)
|
||||
0x3b0|68 46 9a |hF. |
|
||||
0x3b0| 00 00 00 1b | .... | corr: 27 0x3b3-0x3b6.7 (4)
|
||||
| | | standard_wall_indicators[0:8]: 0x3b7-0x3be.7 (8)
|
||||
0x3b0| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x3b7-0x3b7.7 (1)
|
||||
0x3b0| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x3b8-0x3b8.7 (1)
|
||||
0x3b0| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x3b9-0x3b9.7 (1)
|
||||
0x3b0| 01 | . | [3]: 1 standard_wall_indicator (valid) 0x3ba-0x3ba.7 (1)
|
||||
0x3b0| 00 | . | [4]: 0 standard_wall_indicator (valid) 0x3bb-0x3bb.7 (1)
|
||||
0x3b0| 01 | . | [5]: 1 standard_wall_indicator (valid) 0x3bc-0x3bc.7 (1)
|
||||
0x3b0| 00 | . | [6]: 0 standard_wall_indicator (valid) 0x3bd-0x3bd.7 (1)
|
||||
0x3b0| 00 | . | [7]: 0 standard_wall_indicator (valid) 0x3be-0x3be.7 (1)
|
||||
| | | ut_local_indicators[0:8]: 0x3bf-0x3c6.7 (8)
|
||||
0x3b0| 00| .| [0]: 0 ut_local_indicator (valid) 0x3bf-0x3bf.7 (1)
|
||||
0x3c0|00 |. | [1]: 0 ut_local_indicator (valid) 0x3c0-0x3c0.7 (1)
|
||||
0x3c0| 00 | . | [2]: 0 ut_local_indicator (valid) 0x3c1-0x3c1.7 (1)
|
||||
0x3c0| 01 | . | [3]: 1 ut_local_indicator (valid) 0x3c2-0x3c2.7 (1)
|
||||
0x3c0| 00 | . | [4]: 0 ut_local_indicator (valid) 0x3c3-0x3c3.7 (1)
|
||||
0x3c0| 01 | . | [5]: 1 ut_local_indicator (valid) 0x3c4-0x3c4.7 (1)
|
||||
0x3c0| 00 | . | [6]: 0 ut_local_indicator (valid) 0x3c5-0x3c5.7 (1)
|
||||
0x3c0| 00 | . | [7]: 0 ut_local_indicator (valid) 0x3c6-0x3c6.7 (1)
|
||||
| | | v2plusheader{}: 0x3c7-0x3f2.7 (44)
|
||||
0x3c0| 54 5a 69 66 | TZif | magic: 0x545a6966 (valid) 0x3c7-0x3ca.7 (4)
|
||||
0x3c0| 32 | 2 | ver: "2" (0x32) (valid) 0x3cb-0x3cb.7 (1)
|
||||
0x3c0| 00 00 00 00| ....| reserved: raw bits 0x3cc-0x3da.7 (15)
|
||||
0x3d0|00 00 00 00 00 00 00 00 00 00 00 |........... |
|
||||
0x3d0| 00 00 00 08 | .... | isutcnt: 8 0x3db-0x3de.7 (4)
|
||||
0x3d0| 00| .| isstdcnt: 8 0x3df-0x3e2.7 (4)
|
||||
0x3e0|00 00 08 |... |
|
||||
0x3e0| 00 00 00 1b | .... | leapcnt: 27 0x3e3-0x3e6.7 (4)
|
||||
0x3e0| 00 00 00 7b | ...{ | timecnt: 123 0x3e7-0x3ea.7 (4)
|
||||
0x3e0| 00 00 00 08 | .... | typecnt: 8 0x3eb-0x3ee.7 (4)
|
||||
0x3e0| 00| .| charcnt: 28 0x3ef-0x3f2.7 (4)
|
||||
0x3f0|00 00 1c |... |
|
||||
| | | v2plusdatablock{}: 0x3f3-0x9e5.7 (1523)
|
||||
| | | transition_times[0:123]: 0x3f3-0x7ca.7 (984)
|
||||
0x3f0| ff ff ff ff 5e 04 1a c0 | ....^... | [0]: "1883-11-18T20:00:00Z" (-2717640000) transition_time 0x3f3-0x3fa.7 (8)
|
||||
0x3f0| ff ff ff ff 9e| .....| [1]: "1918-03-31T10:00:00Z" (-1633269600) transition_time 0x3fb-0x402.7 (8)
|
||||
0x400|a6 48 a0 |.H. |
|
||||
0x400| ff ff ff ff 9f bb 15 90 | ........ | [2]: "1918-10-27T09:00:00Z" (-1615129200) transition_time 0x403-0x40a.7 (8)
|
||||
0x400| ff ff ff ff a0| .....| [3]: "1919-03-30T10:00:00Z" (-1601820000) transition_time 0x40b-0x412.7 (8)
|
||||
0x410|86 2a a0 |.*. |
|
||||
0x410| ff ff ff ff a1 9a f7 90 | ........ | [4]: "1919-10-26T09:00:00Z" (-1583679600) transition_time 0x413-0x41a.7 (8)
|
||||
0x410| ff ff ff ff a8| .....| [5]: "1923-05-13T10:00:00Z" (-1471788000) transition_time 0x41b-0x422.7 (8)
|
||||
0x420|46 4c 20 |FL |
|
||||
0x420| ff ff ff ff cb 89 0c 90 | ........ | [6]: "1942-02-09T09:00:00Z" (-880210800) transition_time 0x423-0x42a.7 (8)
|
||||
0x420| ff ff ff ff d2| .....| [7]: "1945-08-14T23:00:00Z" (-769395600) transition_time 0x42b-0x432.7 (8)
|
||||
0x430|23 f4 70 |#.p |
|
||||
0x430| ff ff ff ff d2 61 18 00 | .....a.. | [8]: "1945-09-30T08:00:00Z" (-765388800) transition_time 0x433-0x43a.7 (8)
|
||||
0x430| ff ff ff ff fa| .....| [9]: "1967-04-30T09:00:00Z" (-84380400) transition_time 0x43b-0x442.7 (8)
|
||||
0x440|f8 75 10 |.u. |
|
||||
0x440| ff ff ff ff fb e8 58 00 | ......X. | [10]: "1967-10-29T08:00:00Z" (-68659200) transition_time 0x443-0x44a.7 (8)
|
||||
0x440| ff ff ff ff fc| .....| [11]: "1968-04-28T09:00:00Z" (-52930800) transition_time 0x44b-0x452.7 (8)
|
||||
0x450|d8 57 10 |.W. |
|
||||
0x450| ff ff ff ff fd c8 3a 00 | ......:. | [12]: "1968-10-27T08:00:00Z" (-37209600) transition_time 0x453-0x45a.7 (8)
|
||||
0x450| ff ff ff ff fe| .....| [13]: "1969-04-27T09:00:00Z" (-21481200) transition_time 0x45b-0x462.7 (8)
|
||||
0x460|b8 39 10 |.9. |
|
||||
0x460| ff ff ff ff ff a8 1c 00 | ........ | [14]: "1969-10-26T08:00:00Z" (-5760000) transition_time 0x463-0x46a.7 (8)
|
||||
0x460| 00 00 00 00 00| .....| [15]: "1970-04-26T09:00:00Z" (9968400) transition_time 0x46b-0x472.7 (8)
|
||||
0x470|98 1b 10 |... |
|
||||
0x470| 00 00 00 00 01 87 fe 00 | ........ | [16]: "1970-10-25T08:00:00Z" (25689600) transition_time 0x473-0x47a.7 (8)
|
||||
0x470| 00 00 00 00 02| .....| [17]: "1971-04-25T09:00:00Z" (41418000) transition_time 0x47b-0x482.7 (8)
|
||||
0x480|77 fd 10 |w.. |
|
||||
0x480| 00 00 00 00 03 71 1a 80 | .....q.. | [18]: "1971-10-31T08:00:00Z" (57744000) transition_time 0x483-0x48a.7 (8)
|
||||
0x480| 00 00 00 00 04| .....| [19]: "1972-04-30T09:00:00Z" (73472400) transition_time 0x48b-0x492.7 (8)
|
||||
0x490|61 19 90 |a.. |
|
||||
0x490| 00 00 00 00 05 50 fc 81 | .....P.. | [20]: "1972-10-29T08:00:01Z" (89193601) transition_time 0x493-0x49a.7 (8)
|
||||
0x490| 00 00 00 00 06| .....| [21]: "1973-04-29T09:00:02Z" (104922002) transition_time 0x49b-0x4a2.7 (8)
|
||||
0x4a0|40 fb 92 |@.. |
|
||||
0x4a0| 00 00 00 00 07 30 de 82 | .....0.. | [22]: "1973-10-28T08:00:02Z" (120643202) transition_time 0x4a3-0x4aa.7 (8)
|
||||
0x4a0| 00 00 00 00 07| .....| [23]: "1974-02-03T09:00:03Z" (129114003) transition_time 0x4ab-0x4b2.7 (8)
|
||||
0x4b0|b2 1f 93 |... |
|
||||
0x4b0| 00 00 00 00 09 10 c0 83 | ........ | [24]: "1974-10-27T08:00:03Z" (152092803) transition_time 0x4b3-0x4ba.7 (8)
|
||||
0x4b0| 00 00 00 00 09| .....| [25]: "1975-02-23T09:00:04Z" (162378004) transition_time 0x4bb-0x4c2.7 (8)
|
||||
0x4c0|ad b1 14 |... |
|
||||
0x4c0| 00 00 00 00 0a f0 a2 84 | ........ | [26]: "1975-10-26T08:00:04Z" (183542404) transition_time 0x4c3-0x4ca.7 (8)
|
||||
0x4c0| 00 00 00 00 0b| .....| [27]: "1976-04-25T09:00:05Z" (199270805) transition_time 0x4cb-0x4d2.7 (8)
|
||||
0x4d0|e0 a1 95 |... |
|
||||
0x4d0| 00 00 00 00 0c d9 bf 05 | ........ | [28]: "1976-10-31T08:00:05Z" (215596805) transition_time 0x4d3-0x4da.7 (8)
|
||||
0x4d0| 00 00 00 00 0d| .....| [29]: "1977-04-24T09:00:06Z" (230720406) transition_time 0x4db-0x4e2.7 (8)
|
||||
0x4e0|c0 83 96 |... |
|
||||
0x4e0| 00 00 00 00 0e b9 a1 06 | ........ | [30]: "1977-10-30T08:00:06Z" (247046406) transition_time 0x4e3-0x4ea.7 (8)
|
||||
0x4e0| 00 00 00 00 0f| .....| [31]: "1978-04-30T09:00:07Z" (262774807) transition_time 0x4eb-0x4f2.7 (8)
|
||||
0x4f0|a9 a0 17 |... |
|
||||
0x4f0| 00 00 00 00 10 99 83 07 | ........ | [32]: "1978-10-29T08:00:07Z" (278496007) transition_time 0x4f3-0x4fa.7 (8)
|
||||
0x4f0| 00 00 00 00 11| .....| [33]: "1979-04-29T09:00:08Z" (294224408) transition_time 0x4fb-0x502.7 (8)
|
||||
0x500|89 82 18 |... |
|
||||
0x500| 00 00 00 00 12 79 65 08 | .....ye. | [34]: "1979-10-28T08:00:08Z" (309945608) transition_time 0x503-0x50a.7 (8)
|
||||
0x500| 00 00 00 00 13| .....| [35]: "1980-04-27T09:00:09Z" (325674009) transition_time 0x50b-0x512.7 (8)
|
||||
0x510|69 64 19 |id. |
|
||||
0x510| 00 00 00 00 14 59 47 09 | .....YG. | [36]: "1980-10-26T08:00:09Z" (341395209) transition_time 0x513-0x51a.7 (8)
|
||||
0x510| 00 00 00 00 15| .....| [37]: "1981-04-26T09:00:09Z" (357123609) transition_time 0x51b-0x522.7 (8)
|
||||
0x520|49 46 19 |IF. |
|
||||
0x520| 00 00 00 00 16 39 29 0a | .....9). | [38]: "1981-10-25T08:00:10Z" (372844810) transition_time 0x523-0x52a.7 (8)
|
||||
0x520| 00 00 00 00 17| .....| [39]: "1982-04-25T09:00:10Z" (388573210) transition_time 0x52b-0x532.7 (8)
|
||||
0x530|29 28 1a |)(. |
|
||||
0x530| 00 00 00 00 18 22 45 8b | ....."E. | [40]: "1982-10-31T08:00:11Z" (404899211) transition_time 0x533-0x53a.7 (8)
|
||||
0x530| 00 00 00 00 19| .....| [41]: "1983-04-24T09:00:11Z" (420022811) transition_time 0x53b-0x542.7 (8)
|
||||
0x540|09 0a 1b |... |
|
||||
0x540| 00 00 00 00 1a 02 27 8c | ......'. | [42]: "1983-10-30T08:00:12Z" (436348812) transition_time 0x543-0x54a.7 (8)
|
||||
0x540| 00 00 00 00 1a| .....| [43]: "1984-04-29T09:00:12Z" (452077212) transition_time 0x54b-0x552.7 (8)
|
||||
0x550|f2 26 9c |.&. |
|
||||
0x550| 00 00 00 00 1b e2 09 8c | ........ | [44]: "1984-10-28T08:00:12Z" (467798412) transition_time 0x553-0x55a.7 (8)
|
||||
0x550| 00 00 00 00 1c| .....| [45]: "1985-04-28T09:00:12Z" (483526812) transition_time 0x55b-0x562.7 (8)
|
||||
0x560|d2 08 9c |... |
|
||||
0x560| 00 00 00 00 1d c1 eb 8d | ........ | [46]: "1985-10-27T08:00:13Z" (499248013) transition_time 0x563-0x56a.7 (8)
|
||||
0x560| 00 00 00 00 1e| .....| [47]: "1986-04-27T09:00:13Z" (514976413) transition_time 0x56b-0x572.7 (8)
|
||||
0x570|b1 ea 9d |... |
|
||||
0x570| 00 00 00 00 1f a1 cd 8d | ........ | [48]: "1986-10-26T08:00:13Z" (530697613) transition_time 0x573-0x57a.7 (8)
|
||||
0x570| 00 00 00 00 20| .... | [49]: "1987-04-05T09:00:13Z" (544611613) transition_time 0x57b-0x582.7 (8)
|
||||
0x580|76 1d 1d |v.. |
|
||||
0x580| 00 00 00 00 21 81 af 8d | ....!... | [50]: "1987-10-25T08:00:13Z" (562147213) transition_time 0x583-0x58a.7 (8)
|
||||
0x580| 00 00 00 00 22| ...."| [51]: "1988-04-03T09:00:14Z" (576061214) transition_time 0x58b-0x592.7 (8)
|
||||
0x590|55 ff 1e |U.. |
|
||||
0x590| 00 00 00 00 23 6a cc 0e | ....#j.. | [52]: "1988-10-30T08:00:14Z" (594201614) transition_time 0x593-0x59a.7 (8)
|
||||
0x590| 00 00 00 00 24| ....$| [53]: "1989-04-02T09:00:14Z" (607510814) transition_time 0x59b-0x5a2.7 (8)
|
||||
0x5a0|35 e1 1e |5.. |
|
||||
0x5a0| 00 00 00 00 25 4a ae 0e | ....%J.. | [54]: "1989-10-29T08:00:14Z" (625651214) transition_time 0x5a3-0x5aa.7 (8)
|
||||
0x5a0| 00 00 00 00 26| ....&| [55]: "1990-04-01T09:00:15Z" (638960415) transition_time 0x5ab-0x5b2.7 (8)
|
||||
0x5b0|15 c3 1f |... |
|
||||
0x5b0| 00 00 00 00 27 2a 90 0f | ....'*.. | [56]: "1990-10-28T08:00:15Z" (657100815) transition_time 0x5b3-0x5ba.7 (8)
|
||||
0x5b0| 00 00 00 00 27| ....'| [57]: "1991-04-07T09:00:16Z" (671014816) transition_time 0x5bb-0x5c2.7 (8)
|
||||
0x5c0|fe df a0 |... |
|
||||
0x5c0| 00 00 00 00 29 0a 72 10 | ....).r. | [58]: "1991-10-27T08:00:16Z" (688550416) transition_time 0x5c3-0x5ca.7 (8)
|
||||
0x5c0| 00 00 00 00 29| ....)| [59]: "1992-04-05T09:00:16Z" (702464416) transition_time 0x5cb-0x5d2.7 (8)
|
||||
0x5d0|de c1 a0 |... |
|
||||
0x5d0| 00 00 00 00 2a ea 54 11 | ....*.T. | [60]: "1992-10-25T08:00:17Z" (720000017) transition_time 0x5d3-0x5da.7 (8)
|
||||
0x5d0| 00 00 00 00 2b| ....+| [61]: "1993-04-04T09:00:17Z" (733914017) transition_time 0x5db-0x5e2.7 (8)
|
||||
0x5e0|be a3 a1 |... |
|
||||
0x5e0| 00 00 00 00 2c d3 70 92 | ....,.p. | [62]: "1993-10-31T08:00:18Z" (752054418) transition_time 0x5e3-0x5ea.7 (8)
|
||||
0x5e0| 00 00 00 00 2d| ....-| [63]: "1994-04-03T09:00:18Z" (765363618) transition_time 0x5eb-0x5f2.7 (8)
|
||||
0x5f0|9e 85 a2 |... |
|
||||
0x5f0| 00 00 00 00 2e b3 52 93 | ......R. | [64]: "1994-10-30T08:00:19Z" (783504019) transition_time 0x5f3-0x5fa.7 (8)
|
||||
0x5f0| 00 00 00 00 2f| ..../| [65]: "1995-04-02T09:00:19Z" (796813219) transition_time 0x5fb-0x602.7 (8)
|
||||
0x600|7e 67 a3 |~g. |
|
||||
0x600| 00 00 00 00 30 93 34 93 | ....0.4. | [66]: "1995-10-29T08:00:19Z" (814953619) transition_time 0x603-0x60a.7 (8)
|
||||
0x600| 00 00 00 00 31| ....1| [67]: "1996-04-07T09:00:20Z" (828867620) transition_time 0x60b-0x612.7 (8)
|
||||
0x610|67 84 24 |g.$ |
|
||||
0x610| 00 00 00 00 32 73 16 94 | ....2s.. | [68]: "1996-10-27T08:00:20Z" (846403220) transition_time 0x613-0x61a.7 (8)
|
||||
0x610| 00 00 00 00 33| ....3| [69]: "1997-04-06T09:00:20Z" (860317220) transition_time 0x61b-0x622.7 (8)
|
||||
0x620|47 66 24 |Gf$ |
|
||||
0x620| 00 00 00 00 34 52 f8 95 | ....4R.. | [70]: "1997-10-26T08:00:21Z" (877852821) transition_time 0x623-0x62a.7 (8)
|
||||
0x620| 00 00 00 00 35| ....5| [71]: "1998-04-05T09:00:21Z" (891766821) transition_time 0x62b-0x632.7 (8)
|
||||
0x630|27 48 25 |'H% |
|
||||
0x630| 00 00 00 00 36 32 da 95 | ....62.. | [72]: "1998-10-25T08:00:21Z" (909302421) transition_time 0x633-0x63a.7 (8)
|
||||
0x630| 00 00 00 00 37| ....7| [73]: "1999-04-04T09:00:22Z" (923216422) transition_time 0x63b-0x642.7 (8)
|
||||
0x640|07 2a 26 |.*& |
|
||||
0x640| 00 00 00 00 38 1b f7 16 | ....8... | [74]: "1999-10-31T08:00:22Z" (941356822) transition_time 0x643-0x64a.7 (8)
|
||||
0x640| 00 00 00 00 38| ....8| [75]: "2000-04-02T09:00:22Z" (954666022) transition_time 0x64b-0x652.7 (8)
|
||||
0x650|e7 0c 26 |..& |
|
||||
0x650| 00 00 00 00 39 fb d9 16 | ....9... | [76]: "2000-10-29T08:00:22Z" (972806422) transition_time 0x653-0x65a.7 (8)
|
||||
0x650| 00 00 00 00 3a| ....:| [77]: "2001-04-01T09:00:22Z" (986115622) transition_time 0x65b-0x662.7 (8)
|
||||
0x660|c6 ee 26 |..& |
|
||||
0x660| 00 00 00 00 3b db bb 16 | ....;... | [78]: "2001-10-28T08:00:22Z" (1004256022) transition_time 0x663-0x66a.7 (8)
|
||||
0x660| 00 00 00 00 3c| ....<| [79]: "2002-04-07T09:00:22Z" (1018170022) transition_time 0x66b-0x672.7 (8)
|
||||
0x670|b0 0a a6 |... |
|
||||
0x670| 00 00 00 00 3d bb 9d 16 | ....=... | [80]: "2002-10-27T08:00:22Z" (1035705622) transition_time 0x673-0x67a.7 (8)
|
||||
0x670| 00 00 00 00 3e| ....>| [81]: "2003-04-06T09:00:22Z" (1049619622) transition_time 0x67b-0x682.7 (8)
|
||||
0x680|8f ec a6 |... |
|
||||
0x680| 00 00 00 00 3f 9b 7f 16 | ....?... | [82]: "2003-10-26T08:00:22Z" (1067155222) transition_time 0x683-0x68a.7 (8)
|
||||
0x680| 00 00 00 00 40| ....@| [83]: "2004-04-04T09:00:22Z" (1081069222) transition_time 0x68b-0x692.7 (8)
|
||||
0x690|6f ce a6 |o.. |
|
||||
0x690| 00 00 00 00 41 84 9b 96 | ....A... | [84]: "2004-10-31T08:00:22Z" (1099209622) transition_time 0x693-0x69a.7 (8)
|
||||
0x690| 00 00 00 00 42| ....B| [85]: "2005-04-03T09:00:22Z" (1112518822) transition_time 0x69b-0x6a2.7 (8)
|
||||
0x6a0|4f b0 a6 |O.. |
|
||||
0x6a0| 00 00 00 00 43 64 7d 96 | ....Cd}. | [86]: "2005-10-30T08:00:22Z" (1130659222) transition_time 0x6a3-0x6aa.7 (8)
|
||||
0x6a0| 00 00 00 00 44| ....D| [87]: "2006-04-02T09:00:23Z" (1143968423) transition_time 0x6ab-0x6b2.7 (8)
|
||||
0x6b0|2f 92 a7 |/.. |
|
||||
0x6b0| 00 00 00 00 45 44 5f 97 | ....ED_. | [88]: "2006-10-29T08:00:23Z" (1162108823) transition_time 0x6b3-0x6ba.7 (8)
|
||||
0x6b0| 00 00 00 00 45| ....E| [89]: "2007-03-11T09:00:23Z" (1173603623) transition_time 0x6bb-0x6c2.7 (8)
|
||||
0x6c0|f3 c5 27 |..' |
|
||||
0x6c0| 00 00 00 00 47 2d 7c 17 | ....G-|. | [90]: "2007-11-04T08:00:23Z" (1194163223) transition_time 0x6c3-0x6ca.7 (8)
|
||||
0x6c0| 00 00 00 00 47| ....G| [91]: "2008-03-09T09:00:23Z" (1205053223) transition_time 0x6cb-0x6d2.7 (8)
|
||||
0x6d0|d3 a7 27 |..' |
|
||||
0x6d0| 00 00 00 00 49 0d 5e 17 | ....I.^. | [92]: "2008-11-02T08:00:23Z" (1225612823) transition_time 0x6d3-0x6da.7 (8)
|
||||
0x6d0| 00 00 00 00 49| ....I| [93]: "2009-03-08T09:00:24Z" (1236502824) transition_time 0x6db-0x6e2.7 (8)
|
||||
0x6e0|b3 89 28 |..( |
|
||||
0x6e0| 00 00 00 00 4a ed 40 18 | ....J.@. | [94]: "2009-11-01T08:00:24Z" (1257062424) transition_time 0x6e3-0x6ea.7 (8)
|
||||
0x6e0| 00 00 00 00 4b| ....K| [95]: "2010-03-14T09:00:24Z" (1268557224) transition_time 0x6eb-0x6f2.7 (8)
|
||||
0x6f0|9c a5 a8 |... |
|
||||
0x6f0| 00 00 00 00 4c d6 5c 98 | ....L.\. | [96]: "2010-11-07T08:00:24Z" (1289116824) transition_time 0x6f3-0x6fa.7 (8)
|
||||
0x6f0| 00 00 00 00 4d| ....M| [97]: "2011-03-13T09:00:24Z" (1300006824) transition_time 0x6fb-0x702.7 (8)
|
||||
0x700|7c 87 a8 ||.. |
|
||||
0x700| 00 00 00 00 4e b6 3e 98 | ....N.>. | [98]: "2011-11-06T08:00:24Z" (1320566424) transition_time 0x703-0x70a.7 (8)
|
||||
0x700| 00 00 00 00 4f| ....O| [99]: "2012-03-11T09:00:24Z" (1331456424) transition_time 0x70b-0x712.7 (8)
|
||||
0x710|5c 69 a8 |\i. |
|
||||
0x710| 00 00 00 00 50 96 20 99 | ....P. . | [100]: "2012-11-04T08:00:25Z" (1352016025) transition_time 0x713-0x71a.7 (8)
|
||||
0x710| 00 00 00 00 51| ....Q| [101]: "2013-03-10T09:00:25Z" (1362906025) transition_time 0x71b-0x722.7 (8)
|
||||
0x720|3c 4b a9 |<K. |
|
||||
0x720| 00 00 00 00 52 76 02 99 | ....Rv.. | [102]: "2013-11-03T08:00:25Z" (1383465625) transition_time 0x723-0x72a.7 (8)
|
||||
0x720| 00 00 00 00 53| ....S| [103]: "2014-03-09T09:00:25Z" (1394355625) transition_time 0x72b-0x732.7 (8)
|
||||
0x730|1c 2d a9 |.-. |
|
||||
0x730| 00 00 00 00 54 55 e4 99 | ....TU.. | [104]: "2014-11-02T08:00:25Z" (1414915225) transition_time 0x733-0x73a.7 (8)
|
||||
0x730| 00 00 00 00 54| ....T| [105]: "2015-03-08T09:00:25Z" (1425805225) transition_time 0x73b-0x742.7 (8)
|
||||
0x740|fc 0f a9 |... |
|
||||
0x740| 00 00 00 00 56 35 c6 9a | ....V5.. | [106]: "2015-11-01T08:00:26Z" (1446364826) transition_time 0x743-0x74a.7 (8)
|
||||
0x740| 00 00 00 00 56| ....V| [107]: "2016-03-13T09:00:26Z" (1457859626) transition_time 0x74b-0x752.7 (8)
|
||||
0x750|e5 2c 2a |.,* |
|
||||
0x750| 00 00 00 00 58 1e e3 1a | ....X... | [108]: "2016-11-06T08:00:26Z" (1478419226) transition_time 0x753-0x75a.7 (8)
|
||||
0x750| 00 00 00 00 58| ....X| [109]: "2017-03-12T09:00:27Z" (1489309227) transition_time 0x75b-0x762.7 (8)
|
||||
0x760|c5 0e 2b |..+ |
|
||||
0x760| 00 00 00 00 59 fe c5 1b | ....Y... | [110]: "2017-11-05T08:00:27Z" (1509868827) transition_time 0x763-0x76a.7 (8)
|
||||
0x760| 00 00 00 00 5a| ....Z| [111]: "2018-03-11T09:00:27Z" (1520758827) transition_time 0x76b-0x772.7 (8)
|
||||
0x770|a4 f0 2b |..+ |
|
||||
0x770| 00 00 00 00 5b de a7 1b | ....[... | [112]: "2018-11-04T08:00:27Z" (1541318427) transition_time 0x773-0x77a.7 (8)
|
||||
0x770| 00 00 00 00 5c| ....\| [113]: "2019-03-10T09:00:27Z" (1552208427) transition_time 0x77b-0x782.7 (8)
|
||||
0x780|84 d2 2b |..+ |
|
||||
0x780| 00 00 00 00 5d be 89 1b | ....]... | [114]: "2019-11-03T08:00:27Z" (1572768027) transition_time 0x783-0x78a.7 (8)
|
||||
0x780| 00 00 00 00 5e| ....^| [115]: "2020-03-08T09:00:27Z" (1583658027) transition_time 0x78b-0x792.7 (8)
|
||||
0x790|64 b4 2b |d.+ |
|
||||
0x790| 00 00 00 00 5f 9e 6b 1b | ...._.k. | [116]: "2020-11-01T08:00:27Z" (1604217627) transition_time 0x793-0x79a.7 (8)
|
||||
0x790| 00 00 00 00 60| ....`| [117]: "2021-03-14T09:00:27Z" (1615712427) transition_time 0x79b-0x7a2.7 (8)
|
||||
0x7a0|4d d0 ab |M.. |
|
||||
0x7a0| 00 00 00 00 61 87 87 9b | ....a... | [118]: "2021-11-07T08:00:27Z" (1636272027) transition_time 0x7a3-0x7aa.7 (8)
|
||||
0x7a0| 00 00 00 00 62| ....b| [119]: "2022-03-13T09:00:27Z" (1647162027) transition_time 0x7ab-0x7b2.7 (8)
|
||||
0x7b0|2d b2 ab |-.. |
|
||||
0x7b0| 00 00 00 00 63 67 69 9b | ....cgi. | [120]: "2022-11-06T08:00:27Z" (1667721627) transition_time 0x7b3-0x7ba.7 (8)
|
||||
0x7b0| 00 00 00 00 64| ....d| [121]: "2023-03-12T09:00:27Z" (1678611627) transition_time 0x7bb-0x7c2.7 (8)
|
||||
0x7c0|0d 94 ab |... |
|
||||
0x7c0| 00 00 00 00 64 9b 78 1b | ....d.x. | [122]: "2023-06-28T00:00:27Z" (1687910427) transition_time 0x7c3-0x7ca.7 (8)
|
||||
| | | transition_types[0:123]: 0x7cb-0x845.7 (123)
|
||||
0x7c0| 03 | . | [0]: 3 transition_type 0x7cb-0x7cb.7 (1)
|
||||
0x7c0| 01 | . | [1]: 1 transition_type 0x7cc-0x7cc.7 (1)
|
||||
0x7c0| 02 | . | [2]: 2 transition_type 0x7cd-0x7cd.7 (1)
|
||||
0x7c0| 01 | . | [3]: 1 transition_type 0x7ce-0x7ce.7 (1)
|
||||
0x7c0| 02| .| [4]: 2 transition_type 0x7cf-0x7cf.7 (1)
|
||||
0x7d0|06 |. | [5]: 6 transition_type 0x7d0-0x7d0.7 (1)
|
||||
0x7d0| 04 | . | [6]: 4 transition_type 0x7d1-0x7d1.7 (1)
|
||||
0x7d0| 05 | . | [7]: 5 transition_type 0x7d2-0x7d2.7 (1)
|
||||
0x7d0| 06 | . | [8]: 6 transition_type 0x7d3-0x7d3.7 (1)
|
||||
0x7d0| 07 | . | [9]: 7 transition_type 0x7d4-0x7d4.7 (1)
|
||||
0x7d0| 06 | . | [10]: 6 transition_type 0x7d5-0x7d5.7 (1)
|
||||
0x7d0| 07 | . | [11]: 7 transition_type 0x7d6-0x7d6.7 (1)
|
||||
0x7d0| 06 | . | [12]: 6 transition_type 0x7d7-0x7d7.7 (1)
|
||||
0x7d0| 07 | . | [13]: 7 transition_type 0x7d8-0x7d8.7 (1)
|
||||
0x7d0| 06 | . | [14]: 6 transition_type 0x7d9-0x7d9.7 (1)
|
||||
0x7d0| 07 | . | [15]: 7 transition_type 0x7da-0x7da.7 (1)
|
||||
0x7d0| 06 | . | [16]: 6 transition_type 0x7db-0x7db.7 (1)
|
||||
0x7d0| 07 | . | [17]: 7 transition_type 0x7dc-0x7dc.7 (1)
|
||||
0x7d0| 06 | . | [18]: 6 transition_type 0x7dd-0x7dd.7 (1)
|
||||
0x7d0| 07 | . | [19]: 7 transition_type 0x7de-0x7de.7 (1)
|
||||
0x7d0| 06| .| [20]: 6 transition_type 0x7df-0x7df.7 (1)
|
||||
0x7e0|07 |. | [21]: 7 transition_type 0x7e0-0x7e0.7 (1)
|
||||
0x7e0| 06 | . | [22]: 6 transition_type 0x7e1-0x7e1.7 (1)
|
||||
0x7e0| 07 | . | [23]: 7 transition_type 0x7e2-0x7e2.7 (1)
|
||||
0x7e0| 06 | . | [24]: 6 transition_type 0x7e3-0x7e3.7 (1)
|
||||
0x7e0| 07 | . | [25]: 7 transition_type 0x7e4-0x7e4.7 (1)
|
||||
0x7e0| 06 | . | [26]: 6 transition_type 0x7e5-0x7e5.7 (1)
|
||||
0x7e0| 07 | . | [27]: 7 transition_type 0x7e6-0x7e6.7 (1)
|
||||
0x7e0| 06 | . | [28]: 6 transition_type 0x7e7-0x7e7.7 (1)
|
||||
0x7e0| 07 | . | [29]: 7 transition_type 0x7e8-0x7e8.7 (1)
|
||||
0x7e0| 06 | . | [30]: 6 transition_type 0x7e9-0x7e9.7 (1)
|
||||
0x7e0| 07 | . | [31]: 7 transition_type 0x7ea-0x7ea.7 (1)
|
||||
0x7e0| 06 | . | [32]: 6 transition_type 0x7eb-0x7eb.7 (1)
|
||||
0x7e0| 07 | . | [33]: 7 transition_type 0x7ec-0x7ec.7 (1)
|
||||
0x7e0| 06 | . | [34]: 6 transition_type 0x7ed-0x7ed.7 (1)
|
||||
0x7e0| 07 | . | [35]: 7 transition_type 0x7ee-0x7ee.7 (1)
|
||||
0x7e0| 06| .| [36]: 6 transition_type 0x7ef-0x7ef.7 (1)
|
||||
0x7f0|07 |. | [37]: 7 transition_type 0x7f0-0x7f0.7 (1)
|
||||
0x7f0| 06 | . | [38]: 6 transition_type 0x7f1-0x7f1.7 (1)
|
||||
0x7f0| 07 | . | [39]: 7 transition_type 0x7f2-0x7f2.7 (1)
|
||||
0x7f0| 06 | . | [40]: 6 transition_type 0x7f3-0x7f3.7 (1)
|
||||
0x7f0| 07 | . | [41]: 7 transition_type 0x7f4-0x7f4.7 (1)
|
||||
0x7f0| 06 | . | [42]: 6 transition_type 0x7f5-0x7f5.7 (1)
|
||||
0x7f0| 07 | . | [43]: 7 transition_type 0x7f6-0x7f6.7 (1)
|
||||
0x7f0| 06 | . | [44]: 6 transition_type 0x7f7-0x7f7.7 (1)
|
||||
0x7f0| 07 | . | [45]: 7 transition_type 0x7f8-0x7f8.7 (1)
|
||||
0x7f0| 06 | . | [46]: 6 transition_type 0x7f9-0x7f9.7 (1)
|
||||
0x7f0| 07 | . | [47]: 7 transition_type 0x7fa-0x7fa.7 (1)
|
||||
0x7f0| 06 | . | [48]: 6 transition_type 0x7fb-0x7fb.7 (1)
|
||||
0x7f0| 07 | . | [49]: 7 transition_type 0x7fc-0x7fc.7 (1)
|
||||
0x7f0| 06 | . | [50]: 6 transition_type 0x7fd-0x7fd.7 (1)
|
||||
0x7f0| 07 | . | [51]: 7 transition_type 0x7fe-0x7fe.7 (1)
|
||||
0x7f0| 06| .| [52]: 6 transition_type 0x7ff-0x7ff.7 (1)
|
||||
0x800|07 |. | [53]: 7 transition_type 0x800-0x800.7 (1)
|
||||
0x800| 06 | . | [54]: 6 transition_type 0x801-0x801.7 (1)
|
||||
0x800| 07 | . | [55]: 7 transition_type 0x802-0x802.7 (1)
|
||||
0x800| 06 | . | [56]: 6 transition_type 0x803-0x803.7 (1)
|
||||
0x800| 07 | . | [57]: 7 transition_type 0x804-0x804.7 (1)
|
||||
0x800| 06 | . | [58]: 6 transition_type 0x805-0x805.7 (1)
|
||||
0x800| 07 | . | [59]: 7 transition_type 0x806-0x806.7 (1)
|
||||
0x800| 06 | . | [60]: 6 transition_type 0x807-0x807.7 (1)
|
||||
0x800| 07 | . | [61]: 7 transition_type 0x808-0x808.7 (1)
|
||||
0x800| 06 | . | [62]: 6 transition_type 0x809-0x809.7 (1)
|
||||
0x800| 07 | . | [63]: 7 transition_type 0x80a-0x80a.7 (1)
|
||||
0x800| 06 | . | [64]: 6 transition_type 0x80b-0x80b.7 (1)
|
||||
0x800| 07 | . | [65]: 7 transition_type 0x80c-0x80c.7 (1)
|
||||
0x800| 06 | . | [66]: 6 transition_type 0x80d-0x80d.7 (1)
|
||||
0x800| 07 | . | [67]: 7 transition_type 0x80e-0x80e.7 (1)
|
||||
0x800| 06| .| [68]: 6 transition_type 0x80f-0x80f.7 (1)
|
||||
0x810|07 |. | [69]: 7 transition_type 0x810-0x810.7 (1)
|
||||
0x810| 06 | . | [70]: 6 transition_type 0x811-0x811.7 (1)
|
||||
0x810| 07 | . | [71]: 7 transition_type 0x812-0x812.7 (1)
|
||||
0x810| 06 | . | [72]: 6 transition_type 0x813-0x813.7 (1)
|
||||
0x810| 07 | . | [73]: 7 transition_type 0x814-0x814.7 (1)
|
||||
0x810| 06 | . | [74]: 6 transition_type 0x815-0x815.7 (1)
|
||||
0x810| 07 | . | [75]: 7 transition_type 0x816-0x816.7 (1)
|
||||
0x810| 06 | . | [76]: 6 transition_type 0x817-0x817.7 (1)
|
||||
0x810| 07 | . | [77]: 7 transition_type 0x818-0x818.7 (1)
|
||||
0x810| 06 | . | [78]: 6 transition_type 0x819-0x819.7 (1)
|
||||
0x810| 07 | . | [79]: 7 transition_type 0x81a-0x81a.7 (1)
|
||||
0x810| 06 | . | [80]: 6 transition_type 0x81b-0x81b.7 (1)
|
||||
0x810| 07 | . | [81]: 7 transition_type 0x81c-0x81c.7 (1)
|
||||
0x810| 06 | . | [82]: 6 transition_type 0x81d-0x81d.7 (1)
|
||||
0x810| 07 | . | [83]: 7 transition_type 0x81e-0x81e.7 (1)
|
||||
0x810| 06| .| [84]: 6 transition_type 0x81f-0x81f.7 (1)
|
||||
0x820|07 |. | [85]: 7 transition_type 0x820-0x820.7 (1)
|
||||
0x820| 06 | . | [86]: 6 transition_type 0x821-0x821.7 (1)
|
||||
0x820| 07 | . | [87]: 7 transition_type 0x822-0x822.7 (1)
|
||||
0x820| 06 | . | [88]: 6 transition_type 0x823-0x823.7 (1)
|
||||
0x820| 07 | . | [89]: 7 transition_type 0x824-0x824.7 (1)
|
||||
0x820| 06 | . | [90]: 6 transition_type 0x825-0x825.7 (1)
|
||||
0x820| 07 | . | [91]: 7 transition_type 0x826-0x826.7 (1)
|
||||
0x820| 06 | . | [92]: 6 transition_type 0x827-0x827.7 (1)
|
||||
0x820| 07 | . | [93]: 7 transition_type 0x828-0x828.7 (1)
|
||||
0x820| 06 | . | [94]: 6 transition_type 0x829-0x829.7 (1)
|
||||
0x820| 07 | . | [95]: 7 transition_type 0x82a-0x82a.7 (1)
|
||||
0x820| 06 | . | [96]: 6 transition_type 0x82b-0x82b.7 (1)
|
||||
0x820| 07 | . | [97]: 7 transition_type 0x82c-0x82c.7 (1)
|
||||
0x820| 06 | . | [98]: 6 transition_type 0x82d-0x82d.7 (1)
|
||||
0x820| 07 | . | [99]: 7 transition_type 0x82e-0x82e.7 (1)
|
||||
0x820| 06| .| [100]: 6 transition_type 0x82f-0x82f.7 (1)
|
||||
0x830|07 |. | [101]: 7 transition_type 0x830-0x830.7 (1)
|
||||
0x830| 06 | . | [102]: 6 transition_type 0x831-0x831.7 (1)
|
||||
0x830| 07 | . | [103]: 7 transition_type 0x832-0x832.7 (1)
|
||||
0x830| 06 | . | [104]: 6 transition_type 0x833-0x833.7 (1)
|
||||
0x830| 07 | . | [105]: 7 transition_type 0x834-0x834.7 (1)
|
||||
0x830| 06 | . | [106]: 6 transition_type 0x835-0x835.7 (1)
|
||||
0x830| 07 | . | [107]: 7 transition_type 0x836-0x836.7 (1)
|
||||
0x830| 06 | . | [108]: 6 transition_type 0x837-0x837.7 (1)
|
||||
0x830| 07 | . | [109]: 7 transition_type 0x838-0x838.7 (1)
|
||||
0x830| 06 | . | [110]: 6 transition_type 0x839-0x839.7 (1)
|
||||
0x830| 07 | . | [111]: 7 transition_type 0x83a-0x83a.7 (1)
|
||||
0x830| 06 | . | [112]: 6 transition_type 0x83b-0x83b.7 (1)
|
||||
0x830| 07 | . | [113]: 7 transition_type 0x83c-0x83c.7 (1)
|
||||
0x830| 06 | . | [114]: 6 transition_type 0x83d-0x83d.7 (1)
|
||||
0x830| 07 | . | [115]: 7 transition_type 0x83e-0x83e.7 (1)
|
||||
0x830| 06| .| [116]: 6 transition_type 0x83f-0x83f.7 (1)
|
||||
0x840|07 |. | [117]: 7 transition_type 0x840-0x840.7 (1)
|
||||
0x840| 06 | . | [118]: 6 transition_type 0x841-0x841.7 (1)
|
||||
0x840| 07 | . | [119]: 7 transition_type 0x842-0x842.7 (1)
|
||||
0x840| 06 | . | [120]: 6 transition_type 0x843-0x843.7 (1)
|
||||
0x840| 07 | . | [121]: 7 transition_type 0x844-0x844.7 (1)
|
||||
0x840| 07 | . | [122]: 7 transition_type 0x845-0x845.7 (1)
|
||||
| | | local_time_type_records[0:8]: 0x846-0x875.7 (48)
|
||||
| | | [0]{}: local_time_type 0x846-0x84b.7 (6)
|
||||
0x840| ff ff 93 0f | .... | utoff: -27889 (valid) 0x846-0x849.7 (4)
|
||||
0x840| 00 | . | dst: 0 (valid) 0x84a-0x84a.7 (1)
|
||||
0x840| 00 | . | idx: 0 (valid) 0x84b-0x84b.7 (1)
|
||||
| | | [1]{}: local_time_type 0x84c-0x851.7 (6)
|
||||
0x840| ff ff 9d 90| ....| utoff: -25200 (valid) 0x84c-0x84f.7 (4)
|
||||
0x850|01 |. | dst: 1 (valid) 0x850-0x850.7 (1)
|
||||
0x850| 04 | . | idx: 4 (valid) 0x851-0x851.7 (1)
|
||||
| | | [2]{}: local_time_type 0x852-0x857.7 (6)
|
||||
0x850| ff ff 8f 80 | .... | utoff: -28800 (valid) 0x852-0x855.7 (4)
|
||||
0x850| 00 | . | dst: 0 (valid) 0x856-0x856.7 (1)
|
||||
0x850| 08 | . | idx: 8 (valid) 0x857-0x857.7 (1)
|
||||
| | | [3]{}: local_time_type 0x858-0x85d.7 (6)
|
||||
0x850| ff ff 8f 80 | .... | utoff: -28800 (valid) 0x858-0x85b.7 (4)
|
||||
0x850| 00 | . | dst: 0 (valid) 0x85c-0x85c.7 (1)
|
||||
0x850| 08 | . | idx: 8 (valid) 0x85d-0x85d.7 (1)
|
||||
| | | [4]{}: local_time_type 0x85e-0x863.7 (6)
|
||||
0x850| ff ff| ..| utoff: -21600 (valid) 0x85e-0x861.7 (4)
|
||||
0x860|ab a0 |.. |
|
||||
0x860| 01 | . | dst: 1 (valid) 0x862-0x862.7 (1)
|
||||
0x860| 0c | . | idx: 12 (valid) 0x863-0x863.7 (1)
|
||||
| | | [5]{}: local_time_type 0x864-0x869.7 (6)
|
||||
0x860| ff ff ab a0 | .... | utoff: -21600 (valid) 0x864-0x867.7 (4)
|
||||
0x860| 01 | . | dst: 1 (valid) 0x868-0x868.7 (1)
|
||||
0x860| 10 | . | idx: 16 (valid) 0x869-0x869.7 (1)
|
||||
| | | [6]{}: local_time_type 0x86a-0x86f.7 (6)
|
||||
0x860| ff ff 9d 90 | .... | utoff: -25200 (valid) 0x86a-0x86d.7 (4)
|
||||
0x860| 00 | . | dst: 0 (valid) 0x86e-0x86e.7 (1)
|
||||
0x860| 14| .| idx: 20 (valid) 0x86f-0x86f.7 (1)
|
||||
| | | [7]{}: local_time_type 0x870-0x875.7 (6)
|
||||
0x870|ff ff ab a0 |.... | utoff: -21600 (valid) 0x870-0x873.7 (4)
|
||||
0x870| 01 | . | dst: 1 (valid) 0x874-0x874.7 (1)
|
||||
0x870| 18 | . | idx: 24 (valid) 0x875-0x875.7 (1)
|
||||
| | | time_zone_designations[0:7]: 0x876-0x891.7 (28)
|
||||
0x870| 4c 4d 54 00 | LMT. | [0]: "LMT" time_zone_designation 0x876-0x879.7 (4)
|
||||
0x870| 50 44 54 00 | PDT. | [1]: "PDT" time_zone_designation 0x87a-0x87d.7 (4)
|
||||
0x870| 50 53| PS| [2]: "PST" time_zone_designation 0x87e-0x881.7 (4)
|
||||
0x880|54 00 |T. |
|
||||
0x880| 4d 57 54 00 | MWT. | [3]: "MWT" time_zone_designation 0x882-0x885.7 (4)
|
||||
0x880| 4d 50 54 00 | MPT. | [4]: "MPT" time_zone_designation 0x886-0x889.7 (4)
|
||||
0x880| 4d 53 54 00 | MST. | [5]: "MST" time_zone_designation 0x88a-0x88d.7 (4)
|
||||
0x880| 4d 44| MD| [6]: "MDT" time_zone_designation 0x88e-0x891.7 (4)
|
||||
0x890|54 00 |T. |
|
||||
| | | leap_second_records[0:27]: 0x892-0x9d5.7 (324)
|
||||
| | | [0]{}: leap_second_record 0x892-0x89d.7 (12)
|
||||
0x890| 00 00 00 00 04 b2 58 00 | ......X. | occur: "1972-07-01T00:00:00Z" (78796800) 0x892-0x899.7 (8)
|
||||
0x890| 00 00 00 01 | .... | corr: 1 0x89a-0x89d.7 (4)
|
||||
| | | [1]{}: leap_second_record 0x89e-0x8a9.7 (12)
|
||||
0x890| 00 00| ..| occur: "1973-01-01T00:00:01Z" (94694401) 0x89e-0x8a5.7 (8)
|
||||
0x8a0|00 00 05 a4 ec 01 |...... |
|
||||
0x8a0| 00 00 00 02 | .... | corr: 2 0x8a6-0x8a9.7 (4)
|
||||
| | | [2]{}: leap_second_record 0x8aa-0x8b5.7 (12)
|
||||
0x8a0| 00 00 00 00 07 86| ......| occur: "1974-01-01T00:00:02Z" (126230402) 0x8aa-0x8b1.7 (8)
|
||||
0x8b0|1f 82 |.. |
|
||||
0x8b0| 00 00 00 03 | .... | corr: 3 0x8b2-0x8b5.7 (4)
|
||||
| | | [3]{}: leap_second_record 0x8b6-0x8c1.7 (12)
|
||||
0x8b0| 00 00 00 00 09 67 53 03 | .....gS. | occur: "1975-01-01T00:00:03Z" (157766403) 0x8b6-0x8bd.7 (8)
|
||||
0x8b0| 00 00| ..| corr: 4 0x8be-0x8c1.7 (4)
|
||||
0x8c0|00 04 |.. |
|
||||
| | | [4]{}: leap_second_record 0x8c2-0x8cd.7 (12)
|
||||
0x8c0| 00 00 00 00 0b 48 86 84 | .....H.. | occur: "1976-01-01T00:00:04Z" (189302404) 0x8c2-0x8c9.7 (8)
|
||||
0x8c0| 00 00 00 05 | .... | corr: 5 0x8ca-0x8cd.7 (4)
|
||||
| | | [5]{}: leap_second_record 0x8ce-0x8d9.7 (12)
|
||||
0x8c0| 00 00| ..| occur: "1977-01-01T00:00:05Z" (220924805) 0x8ce-0x8d5.7 (8)
|
||||
0x8d0|00 00 0d 2b 0b 85 |...+.. |
|
||||
0x8d0| 00 00 00 06 | .... | corr: 6 0x8d6-0x8d9.7 (4)
|
||||
| | | [6]{}: leap_second_record 0x8da-0x8e5.7 (12)
|
||||
0x8d0| 00 00 00 00 0f 0c| ......| occur: "1978-01-01T00:00:06Z" (252460806) 0x8da-0x8e1.7 (8)
|
||||
0x8e0|3f 06 |?. |
|
||||
0x8e0| 00 00 00 07 | .... | corr: 7 0x8e2-0x8e5.7 (4)
|
||||
| | | [7]{}: leap_second_record 0x8e6-0x8f1.7 (12)
|
||||
0x8e0| 00 00 00 00 10 ed 72 87 | ......r. | occur: "1979-01-01T00:00:07Z" (283996807) 0x8e6-0x8ed.7 (8)
|
||||
0x8e0| 00 00| ..| corr: 8 0x8ee-0x8f1.7 (4)
|
||||
0x8f0|00 08 |.. |
|
||||
| | | [8]{}: leap_second_record 0x8f2-0x8fd.7 (12)
|
||||
0x8f0| 00 00 00 00 12 ce a6 08 | ........ | occur: "1980-01-01T00:00:08Z" (315532808) 0x8f2-0x8f9.7 (8)
|
||||
0x8f0| 00 00 00 09 | .... | corr: 9 0x8fa-0x8fd.7 (4)
|
||||
| | | [9]{}: leap_second_record 0x8fe-0x909.7 (12)
|
||||
0x8f0| 00 00| ..| occur: "1981-07-01T00:00:09Z" (362793609) 0x8fe-0x905.7 (8)
|
||||
0x900|00 00 15 9f ca 89 |...... |
|
||||
0x900| 00 00 00 0a | .... | corr: 10 0x906-0x909.7 (4)
|
||||
| | | [10]{}: leap_second_record 0x90a-0x915.7 (12)
|
||||
0x900| 00 00 00 00 17 80| ......| occur: "1982-07-01T00:00:10Z" (394329610) 0x90a-0x911.7 (8)
|
||||
0x910|fe 0a |.. |
|
||||
0x910| 00 00 00 0b | .... | corr: 11 0x912-0x915.7 (4)
|
||||
| | | [11]{}: leap_second_record 0x916-0x921.7 (12)
|
||||
0x910| 00 00 00 00 19 62 31 8b | .....b1. | occur: "1983-07-01T00:00:11Z" (425865611) 0x916-0x91d.7 (8)
|
||||
0x910| 00 00| ..| corr: 12 0x91e-0x921.7 (4)
|
||||
0x920|00 0c |.. |
|
||||
| | | [12]{}: leap_second_record 0x922-0x92d.7 (12)
|
||||
0x920| 00 00 00 00 1d 25 ea 0c | .....%.. | occur: "1985-07-01T00:00:12Z" (489024012) 0x922-0x929.7 (8)
|
||||
0x920| 00 00 00 0d | .... | corr: 13 0x92a-0x92d.7 (4)
|
||||
| | | [13]{}: leap_second_record 0x92e-0x939.7 (12)
|
||||
0x920| 00 00| ..| occur: "1988-01-01T00:00:13Z" (567993613) 0x92e-0x935.7 (8)
|
||||
0x930|00 00 21 da e5 0d |..!... |
|
||||
0x930| 00 00 00 0e | .... | corr: 14 0x936-0x939.7 (4)
|
||||
| | | [14]{}: leap_second_record 0x93a-0x945.7 (12)
|
||||
0x930| 00 00 00 00 25 9e| ....%.| occur: "1990-01-01T00:00:14Z" (631152014) 0x93a-0x941.7 (8)
|
||||
0x940|9d 8e |.. |
|
||||
0x940| 00 00 00 0f | .... | corr: 15 0x942-0x945.7 (4)
|
||||
| | | [15]{}: leap_second_record 0x946-0x951.7 (12)
|
||||
0x940| 00 00 00 00 27 7f d1 0f | ....'... | occur: "1991-01-01T00:00:15Z" (662688015) 0x946-0x94d.7 (8)
|
||||
0x940| 00 00| ..| corr: 16 0x94e-0x951.7 (4)
|
||||
0x950|00 10 |.. |
|
||||
| | | [16]{}: leap_second_record 0x952-0x95d.7 (12)
|
||||
0x950| 00 00 00 00 2a 50 f5 90 | ....*P.. | occur: "1992-07-01T00:00:16Z" (709948816) 0x952-0x959.7 (8)
|
||||
0x950| 00 00 00 11 | .... | corr: 17 0x95a-0x95d.7 (4)
|
||||
| | | [17]{}: leap_second_record 0x95e-0x969.7 (12)
|
||||
0x950| 00 00| ..| occur: "1993-07-01T00:00:17Z" (741484817) 0x95e-0x965.7 (8)
|
||||
0x960|00 00 2c 32 29 11 |..,2). |
|
||||
0x960| 00 00 00 12 | .... | corr: 18 0x966-0x969.7 (4)
|
||||
| | | [18]{}: leap_second_record 0x96a-0x975.7 (12)
|
||||
0x960| 00 00 00 00 2e 13| ......| occur: "1994-07-01T00:00:18Z" (773020818) 0x96a-0x971.7 (8)
|
||||
0x970|5c 92 |\. |
|
||||
0x970| 00 00 00 13 | .... | corr: 19 0x972-0x975.7 (4)
|
||||
| | | [19]{}: leap_second_record 0x976-0x981.7 (12)
|
||||
0x970| 00 00 00 00 30 e7 24 13 | ....0.$. | occur: "1996-01-01T00:00:19Z" (820454419) 0x976-0x97d.7 (8)
|
||||
0x970| 00 00| ..| corr: 20 0x97e-0x981.7 (4)
|
||||
0x980|00 14 |.. |
|
||||
| | | [20]{}: leap_second_record 0x982-0x98d.7 (12)
|
||||
0x980| 00 00 00 00 33 b8 48 94 | ....3.H. | occur: "1997-07-01T00:00:20Z" (867715220) 0x982-0x989.7 (8)
|
||||
0x980| 00 00 00 15 | .... | corr: 21 0x98a-0x98d.7 (4)
|
||||
| | | [21]{}: leap_second_record 0x98e-0x999.7 (12)
|
||||
0x980| 00 00| ..| occur: "1999-01-01T00:00:21Z" (915148821) 0x98e-0x995.7 (8)
|
||||
0x990|00 00 36 8c 10 15 |..6... |
|
||||
0x990| 00 00 00 16 | .... | corr: 22 0x996-0x999.7 (4)
|
||||
| | | [22]{}: leap_second_record 0x99a-0x9a5.7 (12)
|
||||
0x990| 00 00 00 00 43 b7| ....C.| occur: "2006-01-01T00:00:22Z" (1136073622) 0x99a-0x9a1.7 (8)
|
||||
0x9a0|1b 96 |.. |
|
||||
0x9a0| 00 00 00 17 | .... | corr: 23 0x9a2-0x9a5.7 (4)
|
||||
| | | [23]{}: leap_second_record 0x9a6-0x9b1.7 (12)
|
||||
0x9a0| 00 00 00 00 49 5c 07 97 | ....I\.. | occur: "2009-01-01T00:00:23Z" (1230768023) 0x9a6-0x9ad.7 (8)
|
||||
0x9a0| 00 00| ..| corr: 24 0x9ae-0x9b1.7 (4)
|
||||
0x9b0|00 18 |.. |
|
||||
| | | [24]{}: leap_second_record 0x9b2-0x9bd.7 (12)
|
||||
0x9b0| 00 00 00 00 4f ef 93 18 | ....O... | occur: "2012-07-01T00:00:24Z" (1341100824) 0x9b2-0x9b9.7 (8)
|
||||
0x9b0| 00 00 00 19 | .... | corr: 25 0x9ba-0x9bd.7 (4)
|
||||
| | | [25]{}: leap_second_record 0x9be-0x9c9.7 (12)
|
||||
0x9b0| 00 00| ..| occur: "2015-07-01T00:00:25Z" (1435708825) 0x9be-0x9c5.7 (8)
|
||||
0x9c0|00 00 55 93 2d 99 |..U.-. |
|
||||
0x9c0| 00 00 00 1a | .... | corr: 26 0x9c6-0x9c9.7 (4)
|
||||
| | | [26]{}: leap_second_record 0x9ca-0x9d5.7 (12)
|
||||
0x9c0| 00 00 00 00 58 68| ....Xh| occur: "2017-01-01T00:00:26Z" (1483228826) 0x9ca-0x9d1.7 (8)
|
||||
0x9d0|46 9a |F. |
|
||||
0x9d0| 00 00 00 1b | .... | corr: 27 0x9d2-0x9d5.7 (4)
|
||||
| | | standard_wall_indicators[0:8]: 0x9d6-0x9dd.7 (8)
|
||||
0x9d0| 00 | . | [0]: 0 standard_wall_indicator (valid) 0x9d6-0x9d6.7 (1)
|
||||
0x9d0| 00 | . | [1]: 0 standard_wall_indicator (valid) 0x9d7-0x9d7.7 (1)
|
||||
0x9d0| 00 | . | [2]: 0 standard_wall_indicator (valid) 0x9d8-0x9d8.7 (1)
|
||||
0x9d0| 01 | . | [3]: 1 standard_wall_indicator (valid) 0x9d9-0x9d9.7 (1)
|
||||
0x9d0| 00 | . | [4]: 0 standard_wall_indicator (valid) 0x9da-0x9da.7 (1)
|
||||
0x9d0| 01 | . | [5]: 1 standard_wall_indicator (valid) 0x9db-0x9db.7 (1)
|
||||
0x9d0| 00 | . | [6]: 0 standard_wall_indicator (valid) 0x9dc-0x9dc.7 (1)
|
||||
0x9d0| 00 | . | [7]: 0 standard_wall_indicator (valid) 0x9dd-0x9dd.7 (1)
|
||||
| | | ut_local_indicators[0:8]: 0x9de-0x9e5.7 (8)
|
||||
0x9d0| 00 | . | [0]: 0 ut_local_indicator (valid) 0x9de-0x9de.7 (1)
|
||||
0x9d0| 00| .| [1]: 0 ut_local_indicator (valid) 0x9df-0x9df.7 (1)
|
||||
0x9e0|00 |. | [2]: 0 ut_local_indicator (valid) 0x9e0-0x9e0.7 (1)
|
||||
0x9e0| 01 | . | [3]: 1 ut_local_indicator (valid) 0x9e1-0x9e1.7 (1)
|
||||
0x9e0| 00 | . | [4]: 0 ut_local_indicator (valid) 0x9e2-0x9e2.7 (1)
|
||||
0x9e0| 01 | . | [5]: 1 ut_local_indicator (valid) 0x9e3-0x9e3.7 (1)
|
||||
0x9e0| 00 | . | [6]: 0 ut_local_indicator (valid) 0x9e4-0x9e4.7 (1)
|
||||
0x9e0| 00 | . | [7]: 0 ut_local_indicator (valid) 0x9e5-0x9e5.7 (1)
|
||||
| | | footer{}: 0x9e6-0x9e7.7 (2)
|
||||
0x9e0| 0a | . | nl1: 10 (valid) 0x9e6-0x9e6.7 (1)
|
||||
| | | tz_string: "" 0x9e7-NA (0)
|
||||
0x9e0| 0a| | .| | nl2: 10 (valid) 0x9e7-0x9e7.7 (1)
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user